/* TRANSITIONS */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Light.woff);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Light.woff2);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Regular.woff);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Regular.woff2);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Medium.woff);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Medium.woff2);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-SemiBold.woff);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-SemiBold.woff2);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Bold.woff);
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-Bold.woff2);
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-ExtraBold.woff);
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(/wp-content/themes/motores/assets/webfonts/OpenSans-ExtraBold.woff2);
  font-weight: 800;
  font-display: swap;
}
/* COLORS */
.btn {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.179rem;
  display: flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.btn svg {
  transition: transform 0.3s;
}
.btn:hover svg {
  transform: translateX(0.5rem);
}
.btn--white {
  color: #fff;
}
.btn--fw400 {
  font-weight: 400;
}
.btn--brown {
  padding: 14px 42px;
  background-color: #C0A678;
  border: solid 2px #C0A678;
  color: #fff;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
}
.btn--brown:hover {
  background-color: #6C6342;
  border: solid 2px #6C6342;
  color: #fff;
}
.btn--transparent {
  padding: 14px 42px;
  border: solid 2px #fff;
  color: #fff;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
}
.btn--transparent:hover {
  background-color: #C0A678;
  border: solid 2px #C0A678;
  color: #fff;
}
.btn--transparent-brown {
  padding: 14px 42px;
  background-color: transparent;
  border: solid 2px #C0A678;
  color: #fff;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
}
.btn--transparent-brown:hover {
  background-color: #6C6342;
  border: solid 2px #6C6342;
  color: #fff;
}
.btn--download {
  position: relative;
  padding-right: 31px;
}
.btn--download::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.625 12.375V15.5417C16.625 15.9616 16.4582 16.3643 16.1613 16.6613C15.8643 16.9582 15.4616 17.125 15.0417 17.125H3.95833C3.53841 17.125 3.13568 16.9582 2.83875 16.6613C2.54181 16.3643 2.375 15.9616 2.375 15.5417V12.375' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.54175 8.41669L9.50008 12.375L13.4584 8.41669' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 12.375V2.875' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.btn-clear-brown {
  padding: 14px 42px;
  border: 2px solid #C0A678;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.179rem;
  background: transparent;
  transition: all 0.25s ease-in-out;
}
.btn-clear-brown--white {
  color: #fff;
}
.btn-clear-brown path {
  transition: all 0.25s ease-in-out;
}
.btn-clear-brown:hover {
  background: #C0A678;
  color: #ffffff;
  transition: all 0.25s ease-in-out;
}
.btn-clear-brown:hover path {
  stroke: #ffffff;
  transition: all 0.25s ease-in-out;
}

.btn-brown-clear {
  padding: 14px 42px;
  border: 2px solid #C0A678;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.179rem;
  background: #C0A678;
  transition: all 0.25s ease-in-out;
}
.btn-brown-clear path {
  transition: all 0.25s ease-in-out;
}
.btn-brown-clear:hover {
  background: transparent;
  color: #ffffff;
  transition: all 0.25s ease-in-out;
}
.btn-brown-clear:hover path {
  stroke: #ffffff;
  transition: all 0.25s ease-in-out;
}

.navigation {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 4;
  min-width: 320px;
}
.navigation__logo img {
  max-width: 100%;
}
@media (max-width: 576px) {
  .navigation__logo {
    max-width: 120px;
    margin-left: -21px;
  }
}
.navigation__top {
  padding: 0.6rem 0px;
  background-color: #B7A27D;
  width: 100%;
  color: #fff;
}
.navigation__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__top-wrapper {
    gap: 2px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.navigation__top-left {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__top-left {
    align-items: center;
    justify-content: space-between;
    gap: unset;
    width: 100%;
    gap: unset;
  }
}
.navigation__top-number {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.navigation__top-number span {
  font-weight: 600;
}
.navigation__top-number .btn {
  line-height: 100%;
}
.navigation__top-socials {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navigation__top-socials a {
  display: flex;
}
@media (max-width: 768px) {
  .navigation__top-socials {
    gap: 12px;
    margin-bottom: -10px;
  }
}
.navigation__bottom {
  background-color: transparent;
  margin-top: 30px;
  margin-right: calc((100% - 1484px) / 2 + 15px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1480px) {
  .navigation__bottom {
    margin-right: 15px;
  }
}
.navigation__bottom-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.navigation__links {
  display: flex;
  align-items: center;
  gap: 66px;
}
@media (max-width: 991px) {
  .navigation__links {
    display: none;
  }
}
.navigation__links a {
  font-size: 1.8rem;
}

#top-line,
#bottom-line,
#middle-line {
  transform-box: fill-box;
  transform-origin: center;
}

svg:hover #top-line {
  animation: down-rotate 0.6s ease-out both;
}
svg:hover #bottom-line {
  animation: up-rotate 0.6s ease-out both;
}
svg:hover #middle-line {
  animation: hide 0.6s ease-out forwards;
}

@keyframes up-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg) scale(0.9);
  }
}
@keyframes down-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg) scale(0.9);
  }
}
@keyframes hide {
  29% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#hamburger {
  display: none;
}
@media (max-width: 991px) {
  #hamburger {
    display: flex;
  }
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s;
  position: absolute;
  top: 34px;
  left: 0px;
  height: 100vh;
  background: #131F18;
  right: 0px;
  padding: 32px;
}
@media (max-width: 768px) {
  .mobile-menu {
    top: 55px;
  }
}
.mobile-menu--active {
  transform: translateX(0%);
}
.mobile-menu a {
  color: #fff;
}

.mobile-link {
  width: 100%;
  color: #fff;
  width: 100%;
  font-size: 26px;
  line-height: 39px;
  margin-bottom: 16px;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 26px;
}

footer {
  background: #131F18;
  padding: 32px 0;
}
footer .container h2, footer .container h3, footer .container h4, footer .container h5, footer .container p {
  color: #fff;
}
footer .container .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 47px;
}
footer .container .content .logo {
  display: flex;
  justify-content: center;
}
footer .container .content .logo a {
  font-size: 0;
}
footer .container .content .logo a img {
  transition: all 0.25s ease-in-out;
}
footer .container .content .logo a img:hover {
  scale: 1.05;
  transition: all 0.25s ease-in-out;
}
footer .container .content .box {
  display: flex;
  gap: 59px;
}
@media (max-width: 991px) {
  footer .container .content .box {
    flex-direction: column;
  }
}
footer .container .content .box .info {
  display: flex;
  flex-direction: column;
  gap: 67px;
  max-width: 1004px;
  width: 100%;
}
footer .container .content .box .info .about-us {
  color: #ffffff;
  max-width: 856px;
}
footer .container .content .box .info .about-us h2 {
  margin-bottom: 2.4rem;
}
footer .container .content .box .info .about-us p:last-child {
  margin-bottom: 0;
}
footer .container .content .box .info .box-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1320px) {
  footer .container .content .box .info .box-info {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  footer .container .content .box .info .box-info {
    flex-direction: column;
    justify-content: center;
    flex-wrap: unset;
  }
}
footer .container .content .box .info .box-info .contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .container .content .box .info .box-info .contact .icon-wrap {
  display: flex;
  gap: 12px;
}
footer .container .content .box .info .box-info .contact .icon-wrap .text {
  color: #ffffff;
  font-weight: 600;
}
footer .container .content .box .info .box-info .contact .icon-wrap .text h5 {
  margin-bottom: 3px;
}
footer .container .content .box .info .box-info .contact .icon-wrap .text p {
  margin-bottom: 0;
}
footer .container .content .box .info .box-info .contact .icon-wrap .text a {
  margin-bottom: 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}
footer .container .content .box .info .box-info .contact .icons {
  display: flex;
  gap: 24px;
}
footer .container .content .box .info .box-info .open-hours {
  color: #ffffff;
}
@media (max-width: 1050px) {
  footer .container .content .box .info .box-info .open-hours {
    max-width: 220px;
  }
}
@media (max-width: 860px) {
  footer .container .content .box .info .box-info .open-hours {
    max-width: unset;
  }
}
footer .container .content .box .info .box-info .open-hours h5 {
  margin-bottom: 1.2rem;
}
footer .container .content .box .info .box-info .open-hours p {
  line-height: 2.9rem;
}
footer .container .content .box .info .box-info .open-hours strong {
  font-weight: 600;
}
@media (max-width: 1320px) {
  footer .container .content .box .info .box-info .map {
    width: 100%;
  }
}
@media (max-width: 991px) {
  footer .container .content .box .info .box-info .map {
    width: unset;
  }
}
@media (max-width: 860px) {
  footer .container .content .box .info .box-info .map {
    width: 100%;
  }
}
footer .container .content .box .info .box-info .map iframe {
  max-width: 326px;
  max-height: 247px;
}
@media (max-width: 1320px) {
  footer .container .content .box .info .box-info .map iframe {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 991px) {
  footer .container .content .box .info .box-info .map iframe {
    max-width: 326px;
  }
}
@media (max-width: 860px) {
  footer .container .content .box .info .box-info .map iframe {
    max-width: unset;
    width: 100%;
  }
}
footer .container .content .box .form {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1100px) {
  footer .container .content .box .form {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  footer .container .content .box .form {
    max-width: 500px;
    margin: 0 auto;
  }
}
footer .container .content .box .form h3 {
  color: #ffffff;
  margin-bottom: 2.4rem;
}
footer .container .content .box .form .fluentform .ff-el-group {
  margin-bottom: 6px;
}
footer .container .content .box .form .fluentform form fieldset select {
  max-width: 420px;
  width: 100%;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #ffffff;
  border: 1px solid #18271E;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 991px) {
  footer .container .content .box .form .fluentform form fieldset select {
    max-width: 500px;
  }
}
footer .container .content .box .form .fluentform form fieldset select:focus {
  outline: none;
  border: 1px solid #18271E;
  box-shadow: none;
}
footer .container .content .box .form .fluentform form fieldset select option {
  color: #000000;
}
footer .container .content .box .form .fluentform form fieldset select.ff-el-form-control:not([size]):not([multiple]) {
  height: 49px;
}
footer .container .content .box .form .fluentform form fieldset .rox-select-wrapper .ff-el-input--content {
  position: relative;
}
footer .container .content .box .form .fluentform form fieldset .rox-select-wrapper .ff-el-input--content::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  right: 2px;
  top: 13px;
  height: 24px;
  width: 24px;
}
footer .container .content .box .form .fluentform form fieldset label {
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 2.048rem;
  font-weight: 500;
  margin-bottom: 2px;
}
footer .container .content .box .form .fluentform form fieldset label::after {
  content: "";
  display: none;
}
footer .container .content .box .form .fluentform form fieldset input {
  max-width: 420px;
  height: 49px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  border: 1px solid #18271E;
}
@media (max-width: 991px) {
  footer .container .content .box .form .fluentform form fieldset input {
    max-width: 500px;
  }
}
footer .container .content .box .form .fluentform form fieldset input:focus {
  outline: none;
  border: 1px solid #18271E;
  box-shadow: none;
  color: #ffffff;
}
footer .container .content .box .form .fluentform form fieldset textarea {
  max-width: 420px;
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  border: 1px solid #18271E;
  resize: none;
}
@media (max-width: 991px) {
  footer .container .content .box .form .fluentform form fieldset textarea {
    max-width: 500px;
  }
}
footer .container .content .box .form .fluentform form fieldset textarea:focus {
  outline: none;
  border: 1px solid #18271E;
  box-shadow: none;
  color: #ffffff;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label {
  display: flex;
  margin-bottom: 10px;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label input {
  display: none;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label span {
  display: flex;
  gap: 6px;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label span::before {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8333 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V4.16667C17.5 3.24619 16.7538 2.5 15.8333 2.5Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  margin-top: 3px;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label span p {
  font-size: 1.024rem;
  font-weight: 400;
  line-height: 1.64rem;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check .ff-el-form-check-label span p a {
  font-weight: 700;
  color: #C0A678;
  text-decoration: none;
}
footer .container .content .box .form .fluentform form fieldset .ff-el-form-check.ff_item_selected span::before {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 9.16683L10 11.6668L18.3333 3.3335' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.5 10V15.8333C17.5 16.2754 17.3244 16.6993 17.0118 17.0118C16.6993 17.3244 16.2754 17.5 15.8333 17.5H4.16667C3.72464 17.5 3.30072 17.3244 2.98816 17.0118C2.67559 16.6993 2.5 16.2754 2.5 15.8333V4.16667C2.5 3.72464 2.67559 3.30072 2.98816 2.98816C3.30072 2.67559 3.72464 2.5 4.16667 2.5H13.3333' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: 3px;
}
footer .container .content .box .form .fluentform form fieldset .ff_submit_btn_wrapper {
  width: 100%;
}
footer .container .content .box .form .fluentform form fieldset .ff_submit_btn_wrapper button {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.907rem;
  padding: 10px 42px;
  float: right;
}
footer .container .content .box .form .fluentform form fieldset .ff_submit_btn_wrapper button::after {
  content: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.95825 9.5H15.0416' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3.9585L15.0417 9.50016L9.5 15.0418' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  height: 19px;
}
footer .container .content .box .form .fluentform form fieldset .ff_submit_btn_wrapper button:hover {
  cursor: pointer;
}
footer .container .copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  footer .container .copy {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
footer .container .copy p {
  color: #ffffff;
  margin: 0;
  font-size: 1.28rem;
  line-height: 2.048rem;
}
footer .container .copy p:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .container .copy p:last-child a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease-in-out;
}
footer .container .copy p:last-child a svg path {
  transition: all 0.25s ease-in-out;
}
footer .container .copy p:last-child a:hover {
  color: #ff5900;
}
footer .container .copy p:last-child a:hover svg path {
  fill: #ff5900;
  transition: all 0.25s ease-in-out;
}

.flavors_and_menu .background {
  padding: 48px 0 62.5px 0;
  background-position: 0% 80%;
  background-size: cover;
  background-repeat: no-repeat;
}
.flavors_and_menu .background .container .wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  max-width: calc(100% - 214px);
  margin-left: auto;
  margin-right: auto;
}
.flavors_and_menu .background .container .wrapper h2, .flavors_and_menu .background .container .wrapper p {
  color: #fff;
}
@media (max-width: 1400px) {
  .flavors_and_menu .background .container .wrapper {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .flavors_and_menu .background .container .wrapper {
    flex-direction: column;
  }
}
.flavors_and_menu .background .container .wrapper .box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.flavors_and_menu .background .container .wrapper .box .text {
  color: #ffffff;
}
.flavors_and_menu .background .container .wrapper .box .text p {
  max-width: 627px;
}
.flavors_and_menu .background .container .wrapper .box .btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}
@media (max-width: 576px) {
  .flavors_and_menu .background .container .wrapper .box .btn {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
}
.flavors_and_menu .background .container .wrapper .menu {
  font-size: 0;
}
.flavors_and_menu .background .container .wrapper .menu a {
  position: relative;
  display: block;
}
.flavors_and_menu .background .container .wrapper .menu a::after {
  content: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 6H42V18' stroke='%236C6342' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 42H6V30' stroke='%236C6342' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M42 6L28 20' stroke='%236C6342' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 42L20 28' stroke='%236C6342' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  position: absolute;
  left: calc(50% - 36px);
  top: calc(50% - 36px);
  transform: translate(50%, 50%);
  scale: 0.5;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.flavors_and_menu .background .container .wrapper .menu a img {
  max-width: 275px;
  height: auto;
  transition: all 0.3s ease-in-out;
  filter: brightness(100%);
}
@media (max-width: 576px) {
  .flavors_and_menu .background .container .wrapper .menu a img {
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.flavors_and_menu .background .container .wrapper .menu a:hover img {
  opacity: 1;
  filter: brightness(70%);
  transition: all 0.3s ease-in-out;
}
.flavors_and_menu .background .container .wrapper .menu a:hover::after {
  left: calc(50% - 54px);
  top: calc(50% - 54px);
  opacity: 1;
  scale: 1.3;
  transition: all 0.5s ease-in-out;
}

.regionally_locally {
  background: #F9F6F2;
  padding: 140px 0;
}
@media (max-width: 991px) {
  .regionally_locally {
    padding: 80px 0;
  }
}
.regionally_locally .container .wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper {
    gap: 90px;
  }
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper {
    gap: 60px;
  }
}
.regionally_locally .container .wrapper .box {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 1400px) {
  .regionally_locally .container .wrapper .box {
    gap: 30px;
  }
}
.regionally_locally .container .wrapper .box .txt-wrap p {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box {
    gap: 45px;
  }
}
.regionally_locally .container .wrapper .box.right {
  flex-direction: row;
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box.right {
    flex-direction: column-reverse;
  }
}
.regionally_locally .container .wrapper .box.left {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box.left {
    flex-direction: column-reverse;
  }
}
.regionally_locally .container .wrapper .box.left .photos .photo:first-child {
  margin-top: 105px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box.left .photos .photo:first-child {
    margin-top: 0;
  }
}
.regionally_locally .container .wrapper .box.left .photos .photo:last-child {
  margin-bottom: 105px;
  margin-top: 0;
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box.left .photos .photo:last-child {
    margin-bottom: 0;
    margin-top: -105px;
  }
}
.regionally_locally .container .wrapper .box .text {
  max-width: 628px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 1200px) {
  .regionally_locally .container .wrapper .box .text {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box .text {
    max-width: unset;
  }
}
.regionally_locally .container .wrapper .box .text .btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 12px;
}
.regionally_locally .container .wrapper .box .text .btn:hover {
  color: #ffffff;
  transition: all 0.25s ease-in-out;
}
.regionally_locally .container .wrapper .box .text .btn:hover svg path {
  stroke: #ffffff;
  transition: all 0.25s ease-in-out;
}
.regionally_locally .container .wrapper .box .text .btn svg path {
  transition: all 0.25s ease-in-out;
}
.regionally_locally .container .wrapper .box .photos {
  max-width: 754px;
  width: 100%;
  display: flex;
  gap: 34px;
}
@media (max-width: 1200px) {
  .regionally_locally .container .wrapper .box .photos {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box .photos {
    max-width: unset;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box .photos {
    flex-direction: column;
  }
}
.regionally_locally .container .wrapper .box .photos .photo {
  width: 360px;
  height: 500px;
}
@media (max-width: 1200px) {
  .regionally_locally .container .wrapper .box .photos .photo {
    max-width: 50%;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 991px) {
  .regionally_locally .container .wrapper .box .photos .photo {
    width: 360px;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .regionally_locally .container .wrapper .box .photos .photo {
    width: 300px;
    height: 400px;
  }
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box .photos .photo {
    max-width: 360px;
    height: 500px;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .regionally_locally .container .wrapper .box .photos .photo {
    max-width: 280px;
    height: 380px;
    width: 100%;
  }
}
.regionally_locally .container .wrapper .box .photos .photo:first-child {
  margin-bottom: 105px;
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box .photos .photo:first-child {
    margin-bottom: 0;
  }
}
.regionally_locally .container .wrapper .box .photos .photo:last-child {
  margin-top: 105px;
}
@media (max-width: 576px) {
  .regionally_locally .container .wrapper .box .photos .photo:last-child {
    margin-top: -105px;
    margin-left: auto;
  }
}
.regionally_locally .container .wrapper .box .photos .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 100px 1px 100px 1px;
}

.vouchers {
  margin-top: -200px;
  position: relative;
}
.vouchers .wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 100px 0px 100px 0px;
  max-width: 1484px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vouchers .wrapper::before {
  border-radius: 100px 0px 100px 0px;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(24, 39, 30, 0.9) 0%, rgba(24, 39, 30, 0.96) 49.68%, rgba(24, 39, 30, 0.9) 100%);
}
.vouchers .wrapper .container .content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 767px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.vouchers .wrapper .container .content .text {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vouchers .wrapper .container .content .text h1, .vouchers .wrapper .container .content .text h2, .vouchers .wrapper .container .content .text h3, .vouchers .wrapper .container .content .text h4, .vouchers .wrapper .container .content .text h5, .vouchers .wrapper .container .content .text h6, .vouchers .wrapper .container .content .text p {
  margin: 0;
  color: #fff;
}

.hero {
  position: relative;
}
@media (max-width: 576px) {
  .hero {
    overflow: hidden;
  }
}
.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.hero__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(19, 31, 24, 0) 0%, rgba(19, 31, 24, 0.8) 45.63%, #131F18 82.2%);
  z-index: 1;
}
.hero__wrapper {
  padding-top: 27.3rem;
  padding-bottom: 16rem;
  max-width: 855px;
}
@media (max-width: 576px) {
  .hero__wrapper {
    max-width: 100%;
    padding-top: 22rem;
    padding-bottom: 8rem;
  }
}
.hero__container {
  z-index: 2;
  position: relative;
}
.hero__top {
  position: relative;
}
.hero__top h1 {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 6.6rem;
  line-height: 8.316rem;
  margin-bottom: 12.6rem;
}
@media (max-width: 991px) {
  .hero__top h1 {
    font-size: 6.1rem;
    line-height: 6.516rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .hero__top h1 {
    font-size: 5.1rem;
    line-height: 5.516rem;
    margin-bottom: 2.6rem;
  }
}
@media (max-width: 576px) {
  .hero__top h1 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
.hero__yellow-text {
  transform: rotate(355deg);
  position: absolute;
  right: 114px;
  bottom: -88px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__yellow-text {
    transform: rotate(0deg);
    position: relative;
    bottom: unset;
    right: unset;
    margin-bottom: 60px;
  }
}
.hero__yellow-text h2 {
  font-family: "Nothing You Could Do", cursive;
  color: #FECF35;
  font-size: 5.9rem;
  line-height: 5.2rem;
  font-weight: 600;
  margin-bottom: 0px;
}
.hero__yellow-text h2:nth-child(2) {
  transform: translateX(100px);
}
@media (max-width: 768px) {
  .hero__yellow-text h2:nth-child(2) {
    transform: translateX(20px);
  }
}
@media (max-width: 768px) {
  .hero__yellow-text h2 {
    font-size: 4.9rem;
    line-height: 5.2rem;
  }
}
@media (max-width: 576px) {
  .hero__yellow-text h2 {
    font-size: 3.4rem;
    line-height: 3.2rem;
  }
}
.hero__bottom {
  max-width: 600px;
}
.hero__description {
  font-family: "Outfit", sans-serif;
  color: #fff;
  margin-bottom: 6rem;
  font-size: 2rem;
  line-height: 2.9rem;
}
.hero__description p {
  color: #fff;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 576px) {
  .hero__buttons {
    flex-direction: column;
    gap: 20px;
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.glass_fog {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .glass_fog {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.glass_fog h2 {
  margin-bottom: 2.4rem;
}
.glass_fog h2 strong {
  color: #6C6342;
}
.glass_fog__top {
  max-width: 981px;
  margin: 0px auto;
  margin-bottom: 60px;
  text-align: center;
}
.glass_fog__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}
@media (max-width: 1400px) {
  .glass_fog__bottom {
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 1200px) {
  .glass_fog__bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .glass_fog__bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.glass_fog__tile {
  display: flex;
  gap: 16px;
  align-items: center;
}
.glass_fog__tile img {
  max-width: 44px;
  max-height: 44px;
  width: 100%;
}
.glass_fog__description-2 p {
  margin-bottom: 0px;
}

.opinions .container {
  padding: 0;
  max-width: 1600px;
}
.opinions .container .wrapper .text {
  padding: 0 1.5rem;
  text-align: center;
  margin-bottom: 17px;
}
.opinions .container .wrapper .text h2 {
  margin-bottom: 30px;
}
.opinions .container .wrapper .text .rate {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.opinions .container .wrapper .text .rate p {
  margin-bottom: 0;
}
.opinions .container .wrapper .text .rate .stars {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.opinions .container .wrapper .swiperOpinions {
  padding: 60px;
}
@media (max-width: 1100px) {
  .opinions .container .wrapper .swiperOpinions {
    padding: 60px 30px;
  }
}
.opinions .container .wrapper .swiperOpinions .swiper-wrapper {
  align-items: flex-end;
}
.opinions .container .wrapper .swiperOpinions .swiper-wrapper .swiper-slide .opinion {
  position: relative;
  padding: 30px;
}
.opinions .container .wrapper .swiperOpinions .swiper-wrapper .swiper-slide .opinion::after {
  content: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.866 18.5C11.4811 19.1667 10.5189 19.1667 10.134 18.5L0.607694 2C0.222795 1.33333 0.70392 0.5 1.47372 0.5L20.5263 0.500002C21.2961 0.500002 21.7772 1.33334 21.3923 2L11.866 18.5Z' fill='white'/%3E%3C/svg%3E");
  position: absolute;
  left: 30px;
  bottom: -20px;
}
.opinions .container .wrapper .swiperOpinions .swiper-wrapper .swiper-slide img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 11px;
}
.opinions .container .wrapper .swiperOpinions .swiper-wrapper .swiper-slide .name {
  max-width: 82px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
.opinions .container .wrapper .swiperOpinions .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  height: 19px;
}
.opinions .container .wrapper .swiperOpinions .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #B7A27D;
  opacity: 1;
  margin: 0;
  transition: all 0.25s ease-in-out;
  border: 1px solid #B7A27D;
}
.opinions .container .wrapper .swiperOpinions .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 19px;
  height: 19px;
  border: 4px solid #EAE4D8;
  transition: all 0.25s ease-in-out;
}

.menu_breakfast {
  padding-top: 60px;
  padding-bottom: 300px;
  width: 100%;
  background-color: rgba(194, 168, 120, 0.1019607843);
}
.menu_breakfast__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .menu_breakfast__container {
    flex-direction: column;
  }
}
.menu_breakfast__left, .menu_breakfast__right {
  width: 100%;
  max-width: 691px;
}
@media (max-width: 991px) {
  .menu_breakfast__left, .menu_breakfast__right {
    max-width: 100%;
  }
}
.menu_breakfast h3 {
  margin-bottom: 24px;
}
.menu_breakfast__left a {
  margin-top: 66px;
  color: #111111;
}
@media (max-width: 991px) {
  .menu_breakfast__left a {
    margin-top: 20px;
  }
}
.menu_breakfast__prices {
  display: flex;
  align-items: center;
  gap: 12px 55px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.menu_breakfast__price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu_breakfast__price span {
  display: block;
}
.menu_breakfast__price_heading {
  display: block;
  margin-bottom: 8px;
}

.events {
  margin-bottom: 14rem;
}
@media (max-width: 991px) {
  .events {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 1920px) {
  .events .container-fluid {
    padding-right: 0px;
  }
}
@media (max-width: 1200px) {
  .events .container-fluid {
    padding-right: 0px;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .events .container-fluid {
    padding-left: 1.5rem;
  }
}
.events__after-swiper {
  position: absolute;
  right: -5px;
  top: 0px;
  height: 100%;
  width: 60px;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
@media screen and (max-width: 1920px) {
  .events__after-swiper {
    display: none;
  }
}
.events__nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .events__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.events__swiper-wrapper {
  position: relative;
  margin-left: calc((100% - 1484px) / 2);
  margin-top: 40px;
}
@media screen and (max-width: 1484px) {
  .events__swiper-wrapper {
    margin-left: unset;
  }
}
.events__nav-arrow {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.events__nav-arrow .swiper-button-disabled svg {
  opacity: 0.7;
}
@media (max-width: 576px) {
  .events__nav-arrow {
    width: 100%;
    justify-content: space-between;
  }
}
.events__heading {
  max-width: 730px;
}
.events__heading h3 {
  margin-bottom: 2.4rem;
}
.events__item {
  padding: 2.8rem 2.4rem;
  background-color: #F8F8F8;
  border: solid 1px rgba(110, 99, 61, 0.2);
  border-radius: 50px 0px 50px 0px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .events__item:hover {
    background-color: #6C6342;
  }
  .events__item:hover .events__title {
    color: #fff;
  }
  .events__item:hover .events__date, .events__item:hover .events__price {
    color: #FECF35;
  }
  .events__item:hover .events__date svg path, .events__item:hover .events__price svg path {
    stroke: #FECF35;
  }
  .events__item:hover .events__description p {
    color: #fff;
  }
}
.events__title {
  color: #18271E;
  font-size: 2rem;
  line-height: 3.2rem;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
  transition: color 0.3s;
}
@media (max-width: 991px) {
  .events__description {
    margin-bottom: 24px;
  }
}
.events__description p {
  transition: color 0.3s;
  margin-bottom: 0rem;
}
.events__info {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}
.events__date, .events__price {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6C6342;
  transition: color 0.3s;
}
.events__date svg path, .events__price svg path {
  transition: stroke 0.3s;
}
.events__nav-prev, .events__nav-next {
  cursor: pointer;
}
@media (max-width: 768px) {
  .events .swiper-slide-active .events__item {
    background-color: #6C6342;
  }
  .events .swiper-slide-active .events__item .events__title {
    color: #fff;
  }
  .events .swiper-slide-active .events__item .events__date, .events .swiper-slide-active .events__item .events__price {
    color: #FECF35;
  }
  .events .swiper-slide-active .events__item .events__date svg path, .events .swiper-slide-active .events__item .events__price svg path {
    stroke: #FECF35;
  }
  .events .swiper-slide-active .events__item .events__description p {
    color: #fff;
  }
}

.offert {
  margin: 140px 0px;
}
@media (max-width: 991px) {
  .offert {
    margin: 80px 0px;
  }
}
.offert__description {
  text-align: center;
  max-width: 982px;
  margin-left: auto;
  margin-right: auto;
}
.offert__description h5 {
  margin-bottom: 12px;
}
.offert__title {
  text-align: center;
  margin-bottom: 60px;
}
.offert__tiles {
  display: flex;
  align-items: flex-start;
  gap: 52px;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .offert__tiles {
    flex-direction: column;
  }
}
.offert__tile {
  max-width: 716px;
  width: 100%;
  border-radius: 100px 0px 100px 0px;
  padding: 24px;
  padding-bottom: 40px;
  box-shadow: 0px 0px 6.3px 0px rgba(0, 0, 0, 0.0156862745), 0px 0px 13.04px 0px rgba(0, 0, 0, 0.0235294118), 0px 0px 26px 0px rgba(0, 0, 0, 0.031372549), 0px 0px 50.96px 0px rgba(0, 0, 0, 0.0352941176), 0px 0px 93.7px 0px rgba(0, 0, 0, 0.0470588235), 0px 0px 160px 0px rgba(0, 0, 0, 0.0588235294);
}
@media (max-width: 991px) {
  .offert__tile {
    max-width: 100%;
  }
}
.offert__tile img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 32px;
  border-radius: 76px 0px 0px 0px;
  height: auto;
}
.offert__tile h3 {
  margin-bottom: 2.4rem;
}
.offert__tile-description {
  margin-bottom: 24px;
}
.offert__tile-description p {
  margin-bottom: 0px;
}
.offert .btn--download {
  color: #18271E;
}
@media (max-width: 576px) {
  .offert .btn--download {
    display: flex;
    max-width: 96px;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
  scroll-padding-top: 80px;
  min-width: 320px;
}

body {
  font-size: 1.6rem;
  line-height: normal;
  margin: 0;
  min-width: 320px;
}

.stop-scroll {
  overflow: hidden;
}

.container-fluid {
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1920px) {
  .container-fluid {
    padding: 0 1.5rem;
  }
}

.container {
  max-width: 1484px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 1.5rem;
  }
}

.vertical-mobile-padding {
  margin-bottom: 10rem;
}
.vertical-mobile-padding--14rem {
  margin-bottom: 14rem;
}
@media (max-width: 991px) {
  .vertical-mobile-padding--14rem {
    margin-bottom: 6rem;
  }
}

.text-page {
  margin-top: 50px;
  margin-bottom: 50px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

ul, ol {
  margin: 0;
  padding: 0;
  padding-left: 1.6rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  color: #18271E;
}

p {
  margin-bottom: 1.2rem;
  line-height: 2.56rem;
  font-weight: 400;
  color: #18271E;
}

h1, .heading-1 {
  margin-bottom: 3.2rem;
  font-size: 4.8rem;
  line-height: 1.2em;
  font-weight: 500;
}

h2, .heading-2 {
  margin-bottom: 3.2rem;
  font-size: 3.91rem;
  line-height: 5.325rem;
  font-weight: 600;
}

h3, .heading-3 {
  margin-bottom: 3.2rem;
  font-size: 3.1rem;
  line-height: 1.2em;
  font-weight: 600;
}

h4, .heading-4 {
  margin-bottom: 2.4rem;
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 500;
}

h5, .heading-5 {
  margin-bottom: 2.4rem;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 600;
}

h6, .heading-6 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: 700;
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
  }
  .vertical-mobile-padding {
    margin-bottom: 6rem;
  }
}/*# sourceMappingURL=main.css.map */