@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@700&display=swap");
@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothamLight.eot");
  src: url("../fonts/GothamLight.woff") format("woff"), url("../fonts/GothamLight.ttf") format("truetype"), url("../fonts/GothamLight.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBook";
  src: url("../fonts/GothamBook.eot");
  src: url("../fonts/GothamBook.woff") format("woff"), url("../fonts/GothamBook.ttf") format("truetype"), url("../fonts/GothamBook.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothamBold.eot");
  src: url("../fonts/GothamBold.woff") format("woff"), url("../fonts/GothamBold.ttf") format("truetype"), url("../fonts/GothamBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --FontInria:"Inria Serif", serif;
  --FontBold: "GothamBold";
  --FontBook: "GothamBook";
  --FontLight: "GothamLight";
  --bgGray: #E6E6E6;
  --colorPrimary:#6F4E36;
  --colorPrimaryHover: #452e1e;
  --colorBase: #4D4D4D;
  --colorBlack: #000;
  --colorWhite:#fff;
}

/*Colors*/
.color-white {
  color: var(--colorWhite);
}

.color-dark {
  color: var(--colorBlack);
}

.color-primary {
  color: var(--colorPrimary);
}

.bg-primary {
  background-color: var(--colorPrimary);
}

.bg-gray {
  background-color: var(--bgGray);
}

.light {
  font-family: var(--FontLight);
}

.bold, b {
  font-family: var(--FontBold);
}

.black {
  font-family: var(--FontBlack);
}

/*Text*/
.heading {
  font-family: var(--FontInria);
  font-size: 48px;
  line-height: 1.1;
  font-weight: bold;
  font-style: normal;
  color: var(--colorPrimary);
}
@media (max-width: 767px) {
  .heading {
    font-size: 38px;
  }
}

p {
  color: var(--colorBase);
  font-size: 16px;
}

.font-size-20 {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .font-size-20 {
    font-size: 16px;
    font-weight: 300;
  }
}

.font-size-18 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .font-size-18 {
    font-size: 16px;
    font-weight: 300;
  }
}

.inria {
  font-family: var(--FontInria);
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}

.button {
  border: 1px solid transparent;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  transition: 200ms ease-in-out;
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: #fff;
  display: inline-block;
}
.button:hover {
  background-color: var(--colorPrimaryHover);
  border-color: var(--colorPrimaryHover);
}

.field {
  background-color: var(--colorWhite);
  border: 1px solid #BDBFC1;
}
.field:hover {
  border-color: var(--colorPrimary);
}

body {
  font-family: var(--FontBook);
  color: var(--colorBase);
  font-size: 16px;
  line-height: 26px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.container {
  transition: all 200ms ease-in-out;
}
@media (min-width: 1279px) {
  .container {
    max-width: 1200px !important;
  }
}

/*Animaciones*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-fade {
  opacity: 0;
  transform: none;
  transition: opacity 0.6s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.show-bg {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show-bg.active {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.active.show-1 {
  transition-delay: 0.2s;
}

.animate-on-scroll.active.show-2 {
  transition-delay: 0.4s;
}

.animate-on-scroll.active.show-3 {
  transition-delay: 0.6s;
}

.animate-on-scroll.active.show-4 {
  transition-delay: 0.8s;
}

.animate-on-scroll.active.show-5 {
  transition-delay: 1s;
}

.animate-on-scroll.active.show-6 {
  transition-delay: 1.2s;
}

.animate-on-scroll.active.show-7 {
  transition-delay: 1.4s;
}

.animate-on-scroll.active.show-8 {
  transition-delay: 1.6s;
}

.animate-on-scroll.active.show-9 {
  transition-delay: 1.8s;
}

.animate-on-scroll.active.show-10 {
  transition-delay: 2s;
}

/*Header*/
header {
  width: 100%;
  top: 0;
  transition: 200ms ease-in-out;
}
header .header-inner {
  margin: auto;
  transition: 200ms ease-in-out;
}
header .header-inner .brand {
  width: 240px;
  transition: 200ms ease-in-out;
}
@media (max-width: 767px) {
  header .header-inner .brand {
    width: 140px;
  }
}
header .header-inner .brand img {
  width: 100%;
}

.section-hero {
  height: 100vh;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center bottom;
}
.section-hero::after {
  content: "";
  position: absolute;
  bottom: -220px;
  width: 100%;
  height: 220px;
  background-image: url(../images/chocolat-hero.svg);
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 1023px) {
  .section-hero::after {
    bottom: -110px;
    height: 110px;
  }
}
.section-hero .hero-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: calc(100vh + 220px);
}
.section-hero .float {
  pointer-events: none;
  z-index: 1;
  position: absolute;
  width: 100px;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
  /*filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));*/
}
.section-hero .float.float-element-1 {
  width: 200px;
  height: auto;
  left: 5%;
  top: 5%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-1 {
    width: 140px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-1 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-1 {
    width: 80px;
  }
}
.section-hero .float.float-element-2 {
  width: 154px;
  height: auto;
  right: 5%;
  top: 9%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-2 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-2 {
    width: 80px;
  }
}
.section-hero .float.float-element-3 {
  width: 154px;
  height: auto;
  left: 29%;
  top: 12%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-3 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-3 {
    width: 80px;
    left: 8%;
    top: 21%;
  }
}
.section-hero .float.float-element-4 {
  width: 160px;
  height: auto;
  right: 25%;
  top: 21%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-4 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-4 {
    width: 80px;
    right: 10%;
    top: 25%;
  }
}
.section-hero .float.float-element-5 {
  width: 160px;
  height: auto;
  left: 17%;
  top: 37%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-5 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-5 {
    width: 80px;
    left: 11%;
  }
}
.section-hero .float.float-element-6 {
  width: 200px;
  height: auto;
  right: -1%;
  top: 38%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-6 {
    width: 140px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-6 {
    width: 120px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-6 {
    width: 80px;
  }
}
.section-hero .float.float-element-7 {
  width: 200px;
  height: auto;
  left: 4%;
  top: 62%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-7 {
    width: 140px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-7 {
    width: 100px;
    top: 71%;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-7 {
    width: 80px;
    top: 74%;
    left: 20%;
  }
}
.section-hero .float.float-element-8 {
  width: 190px;
  height: auto;
  right: 5%;
  top: 62%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-8 {
    width: 130px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-8 {
    width: 100px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-8 {
    width: 80px;
  }
}
.section-hero .float.float-element-9 {
  width: 300px;
  height: auto;
  left: 24%;
  top: 53%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-9 {
    width: 240px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-9 {
    width: 160px;
    left: 20%;
  }
}
@media (max-width: 767px) {
  .section-hero .float.float-element-9 {
    width: 130px;
    left: 10%;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-9 {
    width: 110px;
    left: 0;
  }
}
.section-hero .float.float-element-10 {
  width: 170px;
  height: auto;
  right: 20%;
  top: 50%;
}
@media (max-width: 1199px) {
  .section-hero .float.float-element-10 {
    width: 110px;
  }
}
@media (max-width: 1023px) {
  .section-hero .float.float-element-10 {
    width: 90px;
  }
}
@media (max-width: 540px) {
  .section-hero .float.float-element-10 {
    width: 70px;
  }
}
.section-hero .badge {
  position: absolute;
  bottom: -7%;
  left: 65%;
  width: 130px;
  z-index: 1;
  transition: all 200ms ease-in-out;
  /*filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));*/
}
@media (max-width: 1023px) {
  .section-hero .badge {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .section-hero .badge {
    left: 50%;
    margin-left: -45px;
  }
}
.section-hero .dulce {
  width: 280px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -190px;
  transition: all 200ms ease-in-out;
  /* filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));*/
}
@media (max-width: 1023px) {
  .section-hero .dulce {
    width: 200px;
    margin-left: -130px;
  }
}
@media (max-width: 767px) {
  .section-hero .dulce {
    left: 50%;
    margin-left: -140px;
  }
}

.section-index {
  padding-top: 300px !important;
}

.section-dd .present img {
  width: 650px;
  margin: auto;
  max-width: 100%;
  transition: all 200ms ease-in-out;
}

.section-presentation {
  padding-bottom: 300px !important;
}
.section-presentation .present img {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  transition: all 200ms ease-in-out;
}

.section-form::after {
  content: "";
  position: absolute;
  top: -220px;
  width: 100%;
  height: 220px;
  background-image: url(../images/chocolat-white.svg);
  background-size: cover;
  background-position: center bottom;
}
@media (max-width: 1023px) {
  .section-form::after {
    top: -110px;
    height: 110px;
  }
}

.section-contact {
  padding-bottom: 300px !important;
}

.section-footer .container {
  position: relative;
  margin-top: -100px;
}
.section-footer::after {
  content: "";
  position: absolute;
  top: -180px;
  width: 100%;
  height: 180px;
  background-image: url(../images/chocolat-footer.svg);
  background-size: cover;
  background-position: center top;
}
@media (max-width: 1023px) {
  .section-footer::after {
    top: -110px;
    height: 110px;
  }
}
.section-footer .social a {
  border: 2px solid #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  padding: 8px;
  text-align: center;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.section-footer .social a img {
  margin: auto;
  height: 100%;
}
.section-footer .social a:hover {
  opacity: 1;
}

p.thanks {
  font-size: 18px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: 600;
  background-color: #89C04A;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
}

p.form-error {
  font-size: 14px;
  padding: 6px;
  line-height: 120%;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: 700;
  background-color: #C35F63;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
}/*# sourceMappingURL=style.css.map */