* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: gray;
  font-size: 14px;
  background: #fff2e9;
}

.cake-box {
  width: 800px;
  margin: 50px auto;
  background: #fafafa;
  padding: 100px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cake-box h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 3em;
  margin-bottom: 50px;
  color: #BD9D51;
  text-align: center;
}
.cake-box h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  color: #BD9D51;
  margin: 20px 0;
}
.cake-box p {
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 300;
}
.cake-box ul {
  padding-left: 30px;
  letter-spacing: 1px;
}
.cake-box ul li {
  margin-bottom: 20px;
}
.cake-box ul li p {
  margin: 5px 0 5px 10px;
}
.cake-box .decor-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
}
.cake-box .decor-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
}
.cake-box .decor-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
.cake-box .decor-logo {
  width: 100%;
  display: block;
  margin-top: 50px;
}

.cake-images {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  margin-top: 100px;
}
.cake-images .cake-images-placeholder {
  padding: 100px;
}
.cake-images .cake-images-placeholder span {
  width: 1px;
  height: 100%;
  background: #BD9D51;
  display: block;
  margin: 0 auto;
}
.cake-images .cake-image {
  display: flex;
  align-items: center;
}
.cake-images .cake-image-left img {
  width: 100%;
}
.cake-images .cake-image-left img:nth-child(2) {
  transform: translateX(150px) translateY(-50px);
  border: 10px solid #fff2e9;
}
.cake-images .cake-image-right img:nth-child(1) {
  width: 400px;
  transform: translateY(-200px);
}
.cake-images .cake-image-right img:nth-child(2) {
  width: 400px;
  transform: translateX(-150px) translateY(-300px);
  border: 10px solid #fff2e9;
}

/* HEADER
------------------------------------------------ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  transition: 0.5s;
  z-index: 10;
}

header {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  text-align: center;
}
.header-logo img {
  width: 200px;
}

nav {
  display: flex;
  align-items: center;
}
nav img {
  display: none;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  position: relative;
  color: #BD9D51;
  margin-right: 40px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}
nav ul li ul {
  flex-direction: column;
  position: absolute;
  top: 40px;
  left: 0;
  background: #311c0f;
  display: none;
}
nav ul li ul li a {
  padding: 20px;
  display: block;
}
nav ul li a {
  text-decoration: none;
  color: #BD9D51;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
}
nav ul li i {
  transform: translateY(-3px);
}

.nav-btn {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  display: none;
  z-index: 100;
}
.nav-btn span {
  width: 100%;
  height: 2px;
  background: #BD9D51;
}

/* SLIDER
------------------------------------------------ */
.slider {
  height: 100vh;
  width: 100%;
  position: relative;
}

.slider-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: 1s;
}
.slider-page h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 6em;
  color: white;
}
.slider-page h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 3em;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}
.slider-page .slider-placeholder {
  width: 200px;
  height: 1px;
  background: #BD9D51;
  margin: 30px auto;
}
.slider-page p {
  width: 600px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: white;
  text-align: center;
}
.slider-page a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background: #030303;
  padding: 10px 30px;
  font-size: 14px;
  transition: 0.5s;
  letter-spacing: 2px;
}
.slider-page a:hover {
  background: #BD9D51;
  padding: 10px 40px;
}

.slider-cake {
  background: url("../../img/classic-cake.webp") no-repeat center center;
  background-size: cover;
}

.slider-chocolate {
  background: url("../../img/chocolate.webp") no-repeat center center;
  background-size: cover;
}

.slider-mousse {
  background: url("../../img/mousse-cake.webp") no-repeat center center;
  background-size: cover;
}

.slider-fade {
  -webkit-animation-name: slider-fade;
  -webkit-animation-duration: 1.5s;
  animation-name: slider-fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes slider-fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
@keyframes slider-fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
.dots {
  position: absolute;
  width: 100%;
  bottom: 100px;
  display: flex;
  justify-content: center;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-dot {
  background-color: #BD9D51;
}

/* SAID ABOUT US
------------------------------------------------ */
.said-about-us {
  width: 100%;
  text-align: center;
  margin: 50px 0;
}
.said-about-us p {
  width: 800px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 50px;
}
.said-about-us a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background: #030303;
  padding: 10px 30px;
  font-size: 14px;
  transition: 0.5s;
  letter-spacing: 2px;
}
.said-about-us a:hover {
  background: #BD9D51;
  padding: 10px 40px;
}

.said-about-us-header {
  margin-bottom: 50px;
}
.said-about-us-header h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 2.5em;
  color: #030303;
  text-align: center;
  margin-bottom: 20px;
}
.said-about-us-header .decor-line {
  width: 100px;
  height: 1px;
  background: #BD9D51;
  margin: 0 auto;
}

.opinion-boxes {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.opinion-box {
  flex: 1;
}
.opinion-box h4 {
  font-family: "Quicksand", sans-serif;
  color: #030303;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}
.opinion-box p {
  width: initial;
  font-style: italic;
}

/* COOKIE SELECTION
------------------------------------------------ */
.cookie-selection-wrapper {
  width: 100%;
  background: url("../../img/flour.webp") no-repeat center center;
  background-size: cover;
  padding: 50px 0;
  color: white;
}

.cookie-selection-header {
  margin-bottom: 50px;
}
.cookie-selection-header h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 2.5em;
  color: #030303;
  text-align: center;
  margin-bottom: 20px;
}
.cookie-selection-header .decor-line {
  width: 100px;
  height: 1px;
  background: #BD9D51;
  margin: 0 auto;
}
.cookie-selection-header h2 {
  color: white;
}
.cookie-selection-header .decor-line {
  margin-bottom: 50px;
}
.cookie-selection-header p {
  width: 800px;
  margin: 0 auto;
  line-height: 2;
  margin-bottom: 50px;
  text-align: center;
}

.cookie-selection {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.cookie-selection-box {
  display: flex;
  align-items: center;
}
.cookie-selection-box .selection-img img {
  margin: 0 30px;
  border-radius: 5px;
}
.cookie-selection-box h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
}
.cookie-selection-box a {
  text-decoration: none;
  color: #BD9D51;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.cookie-selection-box a img {
  margin-left: 10px;
}

/* INTRODUCTION
------------------------------------------------ */
.introduction-box {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}

.introduction-img {
  display: flex;
  align-items: center;
  flex: 1;
}
.introduction-img img {
  width: 100%;
}

.introduction-header {
  margin-bottom: 50px;
}
.introduction-header h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 2.5em;
  color: #030303;
  text-align: center;
  margin-bottom: 20px;
}
.introduction-header .decor-line {
  width: 100px;
  height: 1px;
  background: #BD9D51;
  margin: 0 auto;
}
.introduction-header h2 {
  text-align: left;
}
.introduction-header .decor-line {
  margin: 0;
}

.introduction-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 50px;
}
.introduction-data p {
  width: 70%;
  line-height: 1.5;
  margin-bottom: 10px;
}
.introduction-data a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background: #030303;
  padding: 10px 30px;
  font-size: 14px;
  transition: 0.5s;
  letter-spacing: 2px;
  display: inline-block;
  margin: 30px 0;
}
.introduction-data a:hover {
  background: #BD9D51;
  padding: 10px 40px;
}
.introduction-data h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  margin: 20px 0;
  color: #BD9D51;
}

.right-align-data {
  align-items: flex-end;
}

.right-align-box {
  width: 70%;
}
.right-align-box p {
  width: 100%;
}

/* CLASSIC CAKE
------------------------------------------------ */
.classic-cake-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/classic-cake-4.webp") no-repeat center top;
  background-size: cover;
}
.classic-cake-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.classic-cake-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.classic-cake-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* MOUSSE CAKE
------------------------------------------------ */
.mousse-cake-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/mousse-cake.webp") no-repeat center center;
  background-size: cover;
}
.mousse-cake-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.mousse-cake-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.mousse-cake-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* TART LATTE
------------------------------------------------ */
.tart-latte-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/tart-latte-cake.webp") no-repeat center center;
  background-size: cover;
}
.tart-latte-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.tart-latte-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.tart-latte-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* BONBON
------------------------------------------------ */
.bonbon-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/bonbon.webp") no-repeat center center;
  background-size: cover;
}
.bonbon-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.bonbon-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.bonbon-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* CHOCOLATE
------------------------------------------------ */
.chocolate-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/chocolate.webp") no-repeat center center;
  background-size: cover;
}
.chocolate-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.chocolate-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.chocolate-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* MACARON
------------------------------------------------ */
.macaron-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/macaron.webp") no-repeat center center;
  background-size: cover;
}
.macaron-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.macaron-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.macaron-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

/* ABOUT US
------------------------------------------------ */
.about-us-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/pink-cake.webp") no-repeat center center;
  background-size: cover;
}
.about-us-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.about-us-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.about-us-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

.about-us-boxes {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}

.about-us-box {
  flex-grow: 1;
  flex-basis: 0;
  padding: 100px 0 100px 50px;
}
.about-us-box h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 2.5em;
  color: #030303;
}
.about-us-box h2::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #BD9D51;
  display: block;
  margin: 40px 0;
}
.about-us-box p {
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 14px;
}
.about-us-box a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background: #030303;
  padding: 10px 30px;
  font-size: 14px;
  transition: 0.5s;
  letter-spacing: 2px;
}
.about-us-box a:hover {
  background: #BD9D51;
  padding: 10px 40px;
}
.about-us-box img {
  width: 100%;
}

.article-link {
  background: none !important;
  color: black !important;
  padding: 0 !important;
  text-transform: initial !important;
  color: blue !important;
  display: block;
  text-decoration: underline !important;
}

/* CONTACT
------------------------------------------------ */
.contact-header {
  padding: 250px 0;
  text-align: center;
  color: white;
  background: url("../../img/contact.webp") no-repeat center top;
  background-size: cover;
}
.contact-header h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 5em;
  letter-spacing: 2px;
}
.contact-header h1::after {
  content: "";
  width: 200px;
  height: 1px;
  margin: 30px auto;
  background: #BD9D51;
  display: block;
}
.contact-header p {
  width: 50%;
  margin: 0 auto;
  letter-spacing: 1.5px;
}

.contact {
  background: url("../../img/gold-2.webp") no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}

.contact-boxes {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.contact-box {
  flex: 1;
  padding: 50px;
  font-size: 15px;
}
.contact-box .contact-email, .contact-box .contact-phone {
  margin-bottom: 30px;
}
.contact-box .contact-email p ~ p, .contact-box .contact-phone p ~ p {
  margin-left: 20px;
  margin-top: 5px;
}
.contact-box .contact-address {
  margin: 40px 0;
}
.contact-box p {
  margin-bottom: 10px;
}

.contact-box-header {
  margin-bottom: 30px;
}
.contact-box-header h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 2px;
  color: #030303;
}
.contact-box-header h3::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #BD9D51;
  margin: 30px 0;
  display: block;
}
.contact-box-header p {
  letter-spacing: 1px;
  line-height: 1.5;
}

.map iframe {
  width: 100%;
}

/* FOOTER
------------------------------------------------ */
footer {
  background: #311c0f;
}

.footer-boxes {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
}

.footer-box {
  width: 33.33%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-box h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  color: white;
}
.footer-box .footer-placeholder {
  width: 100px;
  height: 1px;
  background: #BD9D51;
  margin: 20px 0;
}
.footer-box p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 600;
  color: #c4c4c4;
}

.footer-box:nth-child(2) {
  border-width: 0 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-about-us {
  position: relative;
}
.footer-about-us img {
  width: 100px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 300px;
}

.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -30px;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  fill: #BD9D51;
  transition: 1s;
}
.footer-social svg:hover {
  transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fdf9f2;
    overflow: scroll;
  }
  nav img {
    display: block;
    width: 300px;
    margin: 50px auto;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 10px 0;
  }
  nav ul li a {
    margin: 0;
  }
  nav ul li ul {
    position: initial;
    background: transparent;
    display: none;
  }
  nav ul li ul li {
    text-align: center;
  }
  nav ul li ul li a {
    padding: 10px 0;
    color: black;
  }

  .nav-btn {
    display: flex;
  }

  .introduction-data p {
    width: 100%;
  }

  .right-align-box {
    width: 100%;
  }

  .classic-cake-images {
    display: flex;
    justify-content: center;
  }
  .classic-cake-images .cake-image-right img {
    transform: translateY(-150px);
  }

  .cake-image-left img {
    display: none;
  }

  .cake-image-right img:nth-child(1) {
    transform: translateY(-150px) translateX(100px) !important;
  }
  .cake-image-right img:nth-child(2) {
    width: 400px;
    transform: translateX(-50px) translateY(0) !important;
    border: 10px solid #fff2e9;
  }

  .cake-images-placeholder {
    display: none;
  }

  .footer-social {
    bottom: -50px;
  }
}
@media screen and (max-width: 992px) {
  .said-about-us p {
    width: 700px;
  }

  .opinion-box p {
    width: initial;
  }

  .cookie-selection-header p {
    width: 700px;
  }

  .cookie-selection {
    grid-template-columns: 1fr;
  }

  .cookie-selection-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0 20px;
  }
  .cookie-selection-box .selection-img img {
    margin: 30px 0;
  }
  .cookie-selection-box .selection-data {
    text-align: center;
  }
  .cookie-selection-box a {
    text-decoration: none;
    color: #BD9D51;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
  }
  .cookie-selection-box a img {
    margin-left: 10px;
  }

  .introduction-box {
    flex-direction: column;
  }

  .cake-box {
    width: 700px;
  }

  .about-us {
    background-position: center left;
  }

  .about-us-boxes {
    flex-direction: column;
  }

  .about-us-box {
    padding: 100px 50px;
  }

  .footer-boxes {
    flex-direction: column;
    padding: 0;
  }

  .footer-box {
    width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper {
    height: 90px;
  }

  header {
    padding: 0 20px;
  }

  .header-logo img {
    width: 120px;
  }

  .slider-page h1 {
    text-align: center;
    font-size: 3em;
  }
  .slider-page p {
    width: 100%;
    padding: 0 20px;
  }

  .dots {
    display: none;
  }

  .said-about-us p {
    width: 100%;
    padding: 0 20px;
  }

  .opinion-boxes {
    flex-direction: column;
  }

  .opinion-box p {
    width: initial;
  }

  .cookie-selection-header p {
    width: 100%;
    padding: 0 20px;
  }

  .subpage-header h1 {
    font-size: 3em;
  }
  .subpage-header p {
    width: 90%;
  }

  .cake-box {
    width: 100%;
    padding: 40px;
  }
  .cake-box .decor-3 {
    width: 120px;
  }

  .cake-images {
    display: flex;
  }

  .cake-image-right {
    width: 100%;
  }
  .cake-image-right img:nth-child(1) {
    width: 100% !important;
    transform: translateY(0) !important;
  }
  .cake-image-right img:nth-child(2) {
    width: 100% !important;
    transform: translateY(0) !important;
    border: none !important;
  }

  .contact-boxes {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
