/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
@font-face {
  font-family: "LarkenLight";
  src: url("../fonts/LarkenLight.woff2");
  font-style: normal;
}
@font-face {
  font-family: "LarkenLightItalic";
  src: url("../fonts/LarkenLightItalic.woff2");
  font-style: normal;
}
@font-face {
  font-family: "AktivGroteskRegular";
  src: url("../fonts/AktivGroteskRegular.woff2");
  font-style: normal;
}
@font-face {
  font-family: "AktivGroteskMedium";
  src: url("../fonts/AktivGroteskMedium.woff2");
  font-style: normal;
}
@font-face {
  font-family: "AktivGroteskMediumItalic";
  src: url("../fonts/AktivGroteskMediumItalic.woff2");
  font-style: normal;
}
@font-face {
  font-family: "AktivGroteskSemiBold";
  src: url("../fonts/AktivGroteskSemiBold.woff2");
  font-style: normal;
}
@font-face {
  font-family: "HamburgHandLight";
  src: url("../fonts/HamburgHandLight.woff2");
  font-style: normal;
}
@font-face {
  font-family: "HamburgHandBold";
  src: url("../fonts/HamburgHandBold.woff2");
  font-style: normal;
}
html {
  font-size: 62.5%;
}

@media (max-width: 1380px) {
  html {
    font-size: 56%;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 58%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "AktivGroteskMedium";
}

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

html {
  scroll-behavior: smooth;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "AktivGroteskMedium";
  font-size: 1.8rem;
  line-height: 144.444%;
  overflow-x: hidden;
  color: #3B442E;
  background-color: #F8F5EE;
}

.clear-all {
  all: unset !important;
  position: relative;
}
.clear-all::before {
  all: unset !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LarkenLight";
  line-height: 119.048%;
  font-weight: 300;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "LarkenLight";
  line-height: 119.048%;
  font-weight: 300;
}
h1 i, h1 em,
h2 i,
h2 em,
h3 i,
h3 em,
h4 i,
h4 em,
h5 i,
h5 em,
h6 i,
h6 em {
  font-family: "LarkenLightItalic";
  font-size: inherit;
  line-height: inherit;
  font-style: normal;
}

h1 {
  font-size: 6.4rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 3.2rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 1.8rem;
}

p,
em,
strong,
span,
a {
  font-family: "AktivGroteskMedium";
  font-size: 1.8rem;
  line-height: 144.444%;
  color: rgba(59, 68, 46, 0.9);
}

b,
strong {
  font-weight: bolder !important;
}

ul,
ol {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

i, em {
  font-family: "AktivGroteskMediumItalic";
  font-size: inherit;
  line-height: inherit;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.site-title {
  font-family: "LarkenLight";
  font-size: 4.2rem;
  line-height: 1.3;
  color: #273F3A;
}
.site-title.white_text {
  color: #F8F5EE;
}
.site-title span {
  font-family: "LarkenLightItalic";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.site-title span.text-offgreen {
  color: #607F74;
}

.site-desc {
  font-family: "AktivGroteskMedium";
  color: rgba(59, 68, 46, 0.9);
  font-size: 1.9rem;
  line-height: 1.5;
}
.site-desc p {
  font-family: "AktivGroteskMedium";
  color: rgba(59, 68, 46, 0.9);
  font-size: 1.9rem;
  line-height: 1.5;
}
.site-desc.white_text {
  color: #F8F5EE;
}
.site-desc.white_text p {
  color: #F8F5EE;
}

.site-button {
  background-color: #273F3A;
  padding: 15px 32px;
  color: #F8F5EE;
  font-size: 1.6rem;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  display: inline-block;
  font-family: "AktivGroteskSemiBold";
  cursor: pointer;
}
.site-button:hover {
  background-color: transparent;
  border: 1px solid #273F3A;
  color: #273F3A;
}
.site-button.bg_white {
  background-color: #F8F5EE;
  color: #273F3A;
}
.site-button.bg_white:hover {
  background-color: transparent;
  color: #F8F5EE;
  border: 1px solid #F8F5EE;
}
.site-button.border {
  background-color: transparent;
  border: 1px solid rgba(16, 65, 58, 0.25);
  color: #273F3A;
}
.site-button.border:hover {
  background-color: #273F3A;
  color: #F8F5EE;
  border-color: transparent;
}
.site-button.loader_active {
  pointer-events: none;
  display: inline-block;
  position: relative;
  color: transparent;
}
.site-button.loader_active::before, .site-button.loader_active::after {
  content: "";
  box-sizing: border-box;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #273F3A;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
  inset: 0;
  margin: auto;
}
.site-button.loader_active::after {
  animation-delay: 1s;
  opacity: 0;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.white_text {
  color: #F8F5EE !important;
}

.border-radius {
  border-radius: 16px;
}

.container {
  width: min(100% - 60px, 1350px);
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.cta-section__wrapper___row {
  padding: 40px;
  background-color: #273F3A;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-gap: 81px;
  align-items: center;
}
.cta-section__wrapper___row--column.cta_image-column {
  position: relative;
  width: 100%;
  padding-bottom: 65.2103559871%;
}
.cta-section__wrapper___row--column.cta_image-column img {
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-section__wrapper___row--column_inner {
  max-width: 466px;
}
.cta-section__wrapper___row--column_inner .site-title {
  margin-bottom: 11px;
}
.cta-section__wrapper___row--column_inner .site-desc {
  margin-bottom: 22px;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 10px;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input {
  border-radius: 100px;
  background-color: transparent;
  padding: 16px 21px;
  border: 1px solid rgba(248, 245, 238, 0.5);
  color: #F8F5EE;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  width: 100%;
  font-family: "AktivGroteskSemiBold";
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input:focus {
  outline: none;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input::-webkit-input-placeholder {
  color: rgba(248, 245, 238, 0.5);
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input::-moz-placeholder {
  color: rgba(248, 245, 238, 0.5);
  opacity: 1;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #F8F5EE !important;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #F8F5EE !important;
}
.cta-section__wrapper___row--column_inner .cta_email_wrapper input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #F8F5EE !important;
}
.cta-section__wrapper___row--column_inner .success {
  color: #F8F5EE !important;
}

.newsletter_popup_init .newsletter_popup {
  opacity: 1;
  transform: translateY(0);
}

.newsletter_popup {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.25s;
  z-index: 10;
  left: auto;
  max-width: 510px;
  width: 100%;
  background-color: #E6E5D9;
  padding: 25px;
  border-radius: 16px;
  transform: translateY(100%);
  opacity: 0;
}
.newsletter_popup .st_close_ic {
  position: absolute;
  right: 22px;
  top: 20px;
  max-width: 20px;
  cursor: pointer;
}
.newsletter_popup__body .site-title {
  font-size: 30px;
  max-width: 353px;
  margin-bottom: 7px;
}
.newsletter_popup__body .site-title span {
  font-size: inherit;
}
.newsletter_popup__body .site-desc {
  margin-bottom: 16px;
  max-width: 430px;
}
.newsletter_popup__body .cta_email_wrapper {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 10px;
}
.newsletter_popup__body .cta_email_wrapper input {
  border-radius: 100px;
  background-color: transparent;
  padding: 16px 21px;
  border: 1px solid rgba(160, 156, 149, 0.5);
  color: #3B442E;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  font-family: "AktivGroteskSemiBold";
}
.newsletter_popup__body .cta_email_wrapper input:focus {
  outline: none;
}
.newsletter_popup__body .cta_email_wrapper input::-webkit-input-placeholder {
  color: #3B442E;
}
.newsletter_popup__body .cta_email_wrapper input::-moz-placeholder {
  color: #3B442E;
  opacity: 1;
}
.newsletter_popup__body .cta_email_wrapper input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #3B442E !important;
}
.newsletter_popup__body .cta_email_wrapper input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #3B442E !important;
}
.newsletter_popup__body .cta_email_wrapper input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #3B442E !important;
}
.newsletter_popup__body .cta_email_wrapper .loader_active::before, .newsletter_popup__body .cta_email_wrapper .loader_active::after {
  border: 2px solid #F8F5EE;
}

.drawer-cart__wrapper__drawer__content {
  max-width: 464px;
  border-radius: 32px 0px 0px 32px;
  background: #F8F5EE;
  position: fixed;
  visibility: hidden;
  content-visibility: hidden;
  z-index: 20050;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease, visibility 0s linear 1s;
  display: flex;
  flex-direction: column;
  padding: 22px 30px;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 300;
  padding: 0px 0px 20px;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_header__item {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_header__title .site-title {
  font-size: 3.2rem;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_header__close img {
  width: 18px;
  cursor: pointer;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_body {
  position: relative;
  overflow-y: auto;
  flex: 1;
  width: 100%;
  min-height: 1px;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer {
  padding-top: 23px;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(39, 63, 58, 0.25);
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .sub_totla_row {
  display: flex;
  justify-content: space-between;
  grid-gap: 15px;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .sub_totla_row span {
  font-size: 20px;
  line-height: normal;
  display: block;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .checkout_button_wrapper {
  margin-top: 17px;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .checkout_button_wrapper .site-button {
  width: 100%;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .cart_Shipping_note {
  padding-top: 14px;
  text-align: center;
}
.drawer-cart__wrapper__drawer__content .drawer__cart_footer .cart_Shipping_note .site-desc p {
  font-size: 12px;
  color: #273F3A;
  line-height: normal;
}
.drawer-cart__wrapper__drawer__underlay {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.drawer-cart.drawer--visible .drawer-cart__wrapper__drawer__underlay {
  z-index: 20000;
  visibility: visible;
  transition: visibility 0.3s ease;
}
.drawer-cart.drawer--visible .drawer-cart__wrapper__drawer__underlay .drawer__underlay__fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #000;
  opacity: 0.25;
}
.drawer-cart.drawer--visible .drawer-cart__wrapper__drawer__content {
  visibility: visible;
  content-visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
}

.no-scroll {
  overflow: hidden;
}

body.page-template-default .page_content_wrapper {
  padding: 20px 0px;
  max-width: 1120px;
  margin: 0 auto;
}
body.page-template-default .page_content_wrapper .article_desc {
  width: 100%;
  max-width: 100%;
}
body.page-template-default .page_content_wrapper .page-title {
  margin-bottom: 20px;
}

.form_error {
  margin-bottom: 5px;
}
.form_error .email_field_error {
  color: #dc3545;
  font-family: "AktivGroteskSemiBold";
}

.success {
  color: #273F3A !important;
  font-family: "AktivGroteskSemiBold";
}

@media (max-width: 991px) {
  .cta-section__wrapper___row {
    grid-template-columns: 1fr;
    padding: 30px;
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .container {
    width: min(100% - 10px, 1350px);
  }
  .cta-section__wrapper___row {
    padding: 20px;
  }
  .cta-section__wrapper___row--column_inner .cta_email_wrapper {
    grid-template-columns: 1fr;
  }
  body {
    font-size: 16px;
  }
  .site-desc p {
    font-size: 16px;
  }
  p, em, strong, span, a {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.6rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  h6 {
    font-size: 1.6rem;
  }
  .site-title {
    font-size: 3.2rem;
  }
  .newsletter_popup {
    max-width: 100%;
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 20px;
  }
  .newsletter_popup .st_close_ic {
    right: 14px;
    top: 14px;
    max-width: 14px;
  }
  .newsletter_popup__body .site-title {
    max-width: 340px;
  }
  .newsletter_popup__body .cta_email_wrapper {
    grid-template-columns: 1fr;
  }
}
/* login
--------------------------------------------- */
body.login .main_content_wrapper,
.page-template-wc-login .main_content_wrapper,
.page-template-wc-register .main_content_wrapper,
.woocommerce-lost-password .main_content_wrapper {
  padding: 200px 0px 110px 0px;
}
body.login .main_content_wrapper .privacy-policy-page-link,
.page-template-wc-login .main_content_wrapper .privacy-policy-page-link,
.page-template-wc-register .main_content_wrapper .privacy-policy-page-link,
.woocommerce-lost-password .main_content_wrapper .privacy-policy-page-link {
  display: none;
}
body.login .main_content_wrapper form p.forgetmenot,
.page-template-wc-login .main_content_wrapper form p.forgetmenot,
.page-template-wc-register .main_content_wrapper form p.forgetmenot,
.woocommerce-lost-password .main_content_wrapper form p.forgetmenot {
  margin-left: 15px;
}
body.login .main_content_wrapper input[type=checkbox], body.login .main_content_wrapper input[type=radio],
.page-template-wc-login .main_content_wrapper input[type=checkbox],
.page-template-wc-login .main_content_wrapper input[type=radio],
.page-template-wc-register .main_content_wrapper input[type=checkbox],
.page-template-wc-register .main_content_wrapper input[type=radio],
.woocommerce-lost-password .main_content_wrapper input[type=checkbox],
.woocommerce-lost-password .main_content_wrapper input[type=radio] {
  border-radius: unset;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 1px solid #273F3A;
}
body.login .main_content_wrapper input[type=checkbox]:checked::before,
.page-template-wc-login .main_content_wrapper input[type=checkbox]:checked::before,
.page-template-wc-register .main_content_wrapper input[type=checkbox]:checked::before,
.woocommerce-lost-password .main_content_wrapper input[type=checkbox]:checked::before {
  height: 15px;
  width: 15px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(20%) saturate(561%) hue-rotate(117deg) brightness(94%) contrast(100%);
}

.woocommerce-lost-password .woocommerce .lost_reset_password {
  display: flex;
  flex-direction: column;
}
.woocommerce-lost-password .woocommerce .lost_reset_password p:first-of-type {
  order: 1;
  margin-bottom: 0;
  margin-top: 15px;
}
.woocommerce-lost-password .woocommerce .lost_reset_password .woocommerce-form-row {
  width: 100%;
  padding: 0;
  margin: 0;
}
.woocommerce-lost-password .woocommerce .lost_reset_password label {
  display: none;
}
.woocommerce-lost-password .woocommerce .lost_reset_password .woocommerce-Button {
  background-color: #273F3A;
  padding: 15px 32px;
  color: #F8F5EE;
  font-size: 1.6rem;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  display: inline-block;
  font-family: "AktivGroteskSemiBold";
  margin-top: 20px;
  width: 100%;
}
.woocommerce-lost-password .woocommerce .lost_reset_password .woocommerce-Button:hover {
  background-color: #607F74;
}
.woocommerce-lost-password .woocommerce .lost_reset_password input {
  border-radius: 100px;
  background-color: transparent;
  padding: 16px 21px;
  border: 1px solid rgba(160, 156, 149, 0.5);
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  width: 100%;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}
.woocommerce-lost-password .woocommerce .lost_reset_password input:focus {
  outline: none;
}
.woocommerce-lost-password .woocommerce .lost_reset_password input::-webkit-input-placeholder {
  color: rgba(160, 156, 149, 0.5);
}
.woocommerce-lost-password .woocommerce .lost_reset_password input::-moz-placeholder {
  color: rgba(160, 156, 149, 0.5);
  opacity: 1;
}
.woocommerce-lost-password .woocommerce .lost_reset_password input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}
.woocommerce-lost-password .woocommerce .lost_reset_password input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}

.wc-siteform-wrraper {
  max-width: 373px;
  margin: 0 auto;
}
.wc-siteform-wrraper .site_reg_account a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}
.wc-siteform-wrraper .site_reg_account a .link_arrow {
  width: 8px;
  margin-top: 2px;
}
.wc-siteform-wrraper h1 {
  text-align: center;
  margin-bottom: 24px;
}
.wc-siteform-wrraper .wc-lostpassword-link,
.wc-siteform-wrraper p {
  margin-bottom: 24px;
  display: block;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}

.woocommerce-form .form-row {
  margin-bottom: 20px;
}
.woocommerce-form .form-row.form-row-last {
  margin-bottom: 14px;
}
.woocommerce-form .lost_password {
  display: none;
}
.woocommerce-form label {
  display: none;
}
.woocommerce-form input {
  border-radius: 100px;
  background-color: transparent;
  padding: 16px 21px;
  border: 1px solid rgba(160, 156, 149, 0.5);
  color: #F8F5EE;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  width: 100%;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}
.woocommerce-form input:focus {
  outline: none;
}
.woocommerce-form input::-webkit-input-placeholder {
  color: rgba(160, 156, 149, 0.5);
}
.woocommerce-form input::-moz-placeholder {
  color: rgba(160, 156, 149, 0.5);
  opacity: 1;
}
.woocommerce-form input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}
.woocommerce-form input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}

.woocommerce-button {
  background-color: #273F3A;
  padding: 15px 32px;
  color: #F8F5EE;
  font-size: 1.6rem;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  display: inline-block;
  font-family: "AktivGroteskSemiBold";
  width: 100%;
  cursor: pointer;
}
.woocommerce-button:hover {
  background-color: #607F74;
}

body.login header {
  padding: 30px 0;
}
body.login h1 a {
  width: auto;
  height: auto;
  background-image: none;
  text-indent: unset;
  font-family: "LarkenLight";
  font-size: 4.2rem;
  line-height: 119.048%;
  color: #273F3A;
}
body.login h1 a:hover {
  color: unset;
}
body.login form {
  margin: 0;
  padding: 0;
  font-weight: 400;
  overflow: hidden;
  background: transparent;
  border: unset;
  box-shadow: none;
}
body.login form label:not([for=rememberme]) {
  display: none;
}
body.login form input:not(#rememberme, #wp-submit) {
  border-radius: 100px;
  background-color: transparent !important;
  padding: 16px 21px !important;
  border: 1px solid rgba(160, 156, 149, 0.5);
  font-size: 16px !important;
  font-style: normal !important;
  line-height: normal;
  width: 100% !important;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
  margin: 0px;
  margin-bottom: 20px;
}
body.login form input:not(#rememberme, #wp-submit):focus {
  outline: none;
  box-shadow: none;
}
body.login form input:not(#rememberme, #wp-submit)::-webkit-input-placeholder {
  color: rgba(160, 156, 149, 0.5);
}
body.login form input:not(#rememberme, #wp-submit)::-moz-placeholder {
  color: rgba(160, 156, 149, 0.5);
  opacity: 1;
}
body.login form input:not(#rememberme, #wp-submit):-webkit-autofill {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}
body.login form input:not(#rememberme, #wp-submit):-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #F8F5EE inset !important;
  -webkit-text-fill-color: #3B442E !important;
}
body.login form .user-pass-wrap .wp-pwd #user_pass {
  margin-bottom: 14px;
  padding: 16px 43px 16px 21px !important;
}
body.login form .user-pass-wrap .wp-pwd .button.wp-hide-pw {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
}
body.login form .user-pass-wrap .wp-pwd .button.wp-hide-pw:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
body.login form p.forgetmenot {
  margin-bottom: 24px !important;
  line-height: 1;
  width: 100%;
}
body.login form p.forgetmenot label {
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
  margin: 0;
  cursor: pointer;
}
body.login form p.forgetmenot input[type=checkbox]:focus {
  border: 1px solid #8c8f94;
  box-shadow: none;
  outline: none;
}
body.login form .submit #wp-submit {
  background-color: #273F3A;
  padding: 15px 32px;
  color: #F8F5EE;
  font-size: 1.6rem;
  text-align: center;
  line-height: normal;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  display: inline-block;
  font-family: "AktivGroteskSemiBold";
  width: 100%;
  cursor: pointer;
}
body.login form .submit #wp-submit:hover {
  border: 1px solid #273F3A;
  background-color: transparent;
  color: #273F3A;
}
body.login form .submit #wp-submit:focus {
  outline: none;
  box-shadow: none;
}
body.login form #reg_passmail {
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}
body.login #login {
  width: 100%;
  max-width: 373px;
  margin: 0 auto;
  padding: 0;
}
body.login #nav, body.login #backtoblog {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
body.login #nav a, body.login #backtoblog a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}
body.login #nav a:hover, body.login #backtoblog a:hover {
  text-decoration: underline;
  color: #3B442E;
}
body.login #nav a:focus, body.login #backtoblog a:focus {
  outline: none;
  color: unset;
  box-shadow: none;
  outline: none;
}
body.login .message, body.login .notice, body.login .success {
  border-left: 4px solid #273F3A;
}
body.login .message p, body.login .notice p, body.login .success p {
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  color: #3B442E;
  font-family: "AktivGroteskSemiBold";
}

@media (max-width: 767px) {
  body.login .main_content_wrapper,
  .page-template-wc-login .main_content_wrapper,
  .page-template-wc-register .main_content_wrapper,
  .woocommerce-lost-password .main_content_wrapper {
    padding: 200px 0px 100px 0px;
  }
}
/* 404
--------------------------------------------- */
.error404 footer {
  margin-top: 0;
}

.section_404 {
  position: relative;
  text-align: center;
  color: #273F3A;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0;
}
.section_404 .error_content .error_404 {
  font-size: 10em;
  line-height: 1;
}
.section_404 .error_content .page_404 {
  margin: 10px 0 25px;
}
.section_404 .error_content .arrow_btn {
  max-width: 210px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section_404 {
    padding: 0px 15px;
  }
  .section_404 .error_content .error_404 {
    font-size: 8em;
  }
}
@media (max-width: 575px) {
  .section_404 .error_content .error_404 {
    font-size: 6em;
  }
}
/* Home
--------------------------------------------- */
.haskill_hero-section {
  margin-top: 30px;
}
.haskill_hero-section__wrapper___row {
  display: grid;
  grid-template-columns: 410px 1fr;
  grid-gap: 50px;
  align-items: center;
  position: relative;
}
.haskill_hero-section__wrapper___row--column_data .site-title {
  font-size: 6.4rem;
  line-height: 106.25%;
}
.haskill_hero-section__wrapper___row--column_data .site-title span {
  font-size: inherit;
  font-weight: inherit;
  font-family: "LarkenLightItalic";
}
.haskill_hero-section__wrapper___row--column_data .site-desc {
  margin-top: 10px;
}
.haskill_hero-section__wrapper___row--column_data .haskill_hero_btn_group {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  margin-top: 20px;
}
.haskill_hero-section__wrapper___row--column_image {
  position: relative;
  width: 100%;
  padding-bottom: 83.1880448319%;
}
.haskill_hero-section__wrapper___row--column_image img {
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.haskill_hero-section__wrapper___row--column_image__flower-img {
  position: absolute;
  right: -60px;
  bottom: -20px;
}
.haskill_hero-section__wrapper___row--column_image__flower-img img {
  max-width: 170px;
  position: unset;
}

.marquee_slider {
  padding: 80px 0 0;
  overflow: hidden;
}
.marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  pointer-events: none;
}
.marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .slick-list {
  padding: 0;
  overflow: visible;
}
.marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .cm_item img {
  width: auto;
  margin: 0 auto;
  max-width: 146px;
  max-height: 51px;
}

.product_slider-section {
  padding-top: 132px;
  overflow: hidden;
}
.product_slider-section__wrapper__row .product_slide {
  background-color: rgba(195, 186, 166, 0.5);
  height: 387px !important;
  border-radius: 16px;
  overflow: hidden;
}
.product_slider-section__wrapper__row .product_slide.first_slide .product_slide_title {
  display: flex;
  align-items: flex-end;
  background-color: #273F3A;
  padding: 30px 40px;
  height: 100%;
}
.product_slider-section .slick-list {
  padding: 0 10% 0 0 !important;
}
.product_slider-section .slick-track {
  display: flex;
  grid-gap: 20px;
}
.product_slider-section .product_slider_progress {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(160, 156, 149, 0.25);
  background-image: linear-gradient(to right, #273F3A, #273F3A);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
  max-width: 465px;
  margin: 50px auto 0px auto;
}
.product_slider-section .product_slider_progress .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.product_slider-section.new_arrivals {
  padding-top: 97px;
}
.product_slider-section.new_arrivals .product_slide_title {
  background-color: #FBE2A7 !important;
  color: #273F3A;
}

.page-template-home .cta-section {
  padding-top: 90px;
}

.shop_collection {
  padding-top: 101px;
}
.shop_collection .site-title {
  font-size: 4.2rem;
  line-height: 119.048%;
}
.shop_collection .site-desc {
  max-width: 421px;
}

.page-template-home .featured_stories-section__wrapper .blog_listing__row {
  display: block;
}

.featured_stories-section {
  padding-top: 70px;
  padding-bottom: 57px;
  background-color: #D4D4C3;
  border-radius: 32px;
  position: relative;
  margin-top: 118px;
}
.featured_stories-section__flower-img {
  position: absolute;
  right: 0px;
  top: -50px;
}
.featured_stories-section__flower-img img {
  max-width: 165px;
}
.featured_stories-section__wrapper__title {
  margin-bottom: 56px;
  text-align: center;
}
.featured_stories-section__wrapper .blog_listing__row {
  margin-top: 50px;
  position: relative;
}
.featured_stories-section__wrapper .blog_listing__row .slick-list {
  padding: 0 5% 0 0 !important;
}
.featured_stories-section__wrapper .blog_listing__row .slick-track {
  display: flex;
}
.featured_stories-section__wrapper .blog_listing__row .slick-next,
.featured_stories-section__wrapper .blog_listing__row .slick-prev {
  top: 40%;
  width: 43px;
  height: 43px;
}
.featured_stories-section__wrapper .blog_listing__row .slick-next::before,
.featured_stories-section__wrapper .blog_listing__row .slick-prev::before {
  display: none;
}
.featured_stories-section__wrapper .blog_listing__row .slick-next.slick-disabled,
.featured_stories-section__wrapper .blog_listing__row .slick-prev.slick-disabled {
  display: none !important;
}
.featured_stories-section__wrapper .blog_listing__row .slick-prev {
  transform: translateY(-50%) rotate(180deg);
  left: 0;
  z-index: 1;
}
.featured_stories-section__wrapper .blog_listing__row .slick-next {
  transform: translateY(-50%);
  right: 4%;
}
.featured_stories-section__wrapper .blog_listing__row--column {
  padding: 0px 10px;
}
.featured_stories-section__wrapper .readmore_blog_button {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.location_block-section {
  padding-top: 114px;
}
.location_block-section__wrapper__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  position: relative;
}
.location_block-section__wrapper__row--image img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location_block-section__wrapper__row--data {
  padding: 35px;
  background-color: #AFCBCE;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
}
.location_block-section__wrapper__row--data a {
  display: inline-block;
}
.location_block-section__wrapper__row--data a .site-title {
  font-size: 3.2rem;
  line-height: normal;
}
.location_block-section__wrapper__row--data .site-desc {
  margin-top: 7px;
}
.location_block-section__wrapper__row--data .site-button {
  margin-top: 24px;
}
.location_block-section__wrapper__row--data--flower {
  position: absolute;
  right: -25px;
  top: -65px;
}
.location_block-section__wrapper__row--data--flower img {
  max-width: 173px;
}

.reviews-section {
  padding-top: 130px;
  --pause-on-hover: paused;
  --pause-on-click: paused;
  --width: 100%;
  --transform: none;
  --play: running;
  --direction: normal;
  --duration: 68.71428571428571s;
  --delay: 0s;
  --iteration-count: infinite;
  --min-width: auto;
}
.reviews-section__wrapper__title {
  position: relative;
  max-width: 770px;
  margin: 0 auto;
}
.reviews-section__wrapper__title .title-label {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
  position: relative;
  margin-bottom: 16px;
}
.reviews-section__wrapper__title .flower_title_img {
  position: absolute;
  right: 0;
  top: -35px;
}
.reviews-section__wrapper__title .flower_title_img img {
  max-width: 184px;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel {
  margin-top: 51px;
  margin-bottom: 118px;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .left_direction {
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: var(--width);
  transform: var(--transform);
  margin-bottom: 24px;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .left_direction:hover .reviews-section_row {
  animation-play-state: var(--pause-on-hover) !important;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .right_direction {
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: var(--width);
  transform: var(--transform);
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .right_direction:hover .reviews-section_row {
  animation-play-state: var(--pause-on-hover) !important;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .right_direction .reviews-section_row {
  animation: scroll-right var(--duration) linear var(--delay) var(--iteration-count);
}
.reviews-section__wrapper .reviews-section__wrapper__carousel .reviews-section_row {
  flex: 0 0 auto;
  min-width: var(--min-width);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider {
  list-style: none;
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card {
  background-color: #E6E5D9;
  border-radius: 21px;
  padding: 32px 36px;
  max-width: 650px;
  width: 100%;
  transform: var(--transform);
  height: auto;
  text-align: left;
  position: relative;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .review_star {
  display: inline-block;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .review_star img {
  max-width: 87px;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .review_text {
  margin-top: 12px;
  margin-bottom: 22px;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .review_text p {
  font-family: "LarkenLight";
  font-size: 2rem;
  line-height: 150%;
}
.reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .reviewer_name {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.819px;
  text-transform: uppercase;
  color: #3B442E;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.instagram_section {
  padding-bottom: 90px;
}
.instagram_section__wrapper___row--title {
  text-align: center;
  margin-bottom: 50px;
}
.instagram_section__wrapper___row--title .instagram_heading .catagory_date {
  display: inline-block;
}
.instagram_section__wrapper___row--title .instagram_heading .catagory_date span {
  font-size: 14px;
}
.instagram_section__wrapper___row .instagram_wrapper .instagram-gallery-feed .instagram-gallery__actions {
  display: none;
}
.instagram_section__wrapper___row .instagram_wrapper .instagram-gallery-list::after {
  display: none;
}
.instagram_section__wrapper___row .instagram_wrapper .instagram-gallery-item__media-wrap {
  border-radius: 16px;
}

@media (max-width: 1400px) {
  .haskill_hero-section__wrapper___row--column_image__flower-img {
    right: -40px;
    bottom: -35px;
  }
}
@media (max-width: 1199px) {
  .haskill_hero-section__wrapper___row--column_image__flower-img img {
    max-width: 120px;
  }
  .product_slider-section {
    padding-top: 80px;
  }
  .product_slider-section.new_arrivals {
    padding-top: 80px;
  }
  .page-template-home .cta-section {
    padding-top: 80px;
  }
  .shop_collection {
    padding-top: 80px;
  }
  .featured_stories-section {
    margin-top: 80px;
  }
  .location_block-section {
    padding-top: 80px;
  }
  .location_block-section__wrapper__row--data--flower img {
    max-width: 115px;
  }
  .reviews-section {
    padding-top: 80px;
  }
  .reviews-section__wrapper__title .flower_title_img img {
    max-width: 150px;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel {
    margin-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .haskill_hero-section__wrapper___row {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .haskill_hero-section__wrapper___row--column_data {
    max-width: 480px;
    order: 2;
    margin: 0 auto;
    text-align: center;
  }
  .haskill_hero-section__wrapper___row--column_data .haskill_hero_btn_group {
    justify-content: center;
  }
  .haskill_hero-section.shop_collection .haskill_hero-section__wrapper___row--column_data {
    max-width: 100%;
    margin: unset;
    text-align: left;
  }
  .haskill_hero-section.shop_collection .site-desc {
    max-width: 100%;
  }
  .haskill_hero-section.shop_collection .haskill_hero_btn_group {
    justify-content: left;
  }
  .marquee_slider {
    padding: 60px 0 0;
  }
  .marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .slick-track {
    gap: 60px;
  }
  .marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .cm_item img {
    max-width: 130px;
    max-height: 51px;
  }
  .featured_stories-section {
    padding-top: 50px;
  }
  .featured_stories-section__flower-img img {
    max-width: 120px;
  }
  .featured_stories-section__wrapper__title {
    margin-bottom: 30px;
  }
  .featured_stories-section__wrapper .blog_listing__row {
    margin-top: 20px;
  }
  .location_block-section__wrapper__row {
    grid-template-columns: 1fr;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .haskill_hero-section__wrapper___row--column_data .site-title {
    font-size: 5rem;
  }
  .haskill_hero-section__wrapper___row--column_data .site-desc {
    margin-top: 10px;
  }
  .haskill_hero-section__wrapper___row--column_data .haskill_hero_btn_group {
    justify-content: center;
    flex-direction: column;
  }
  .haskill_hero-section__wrapper___row--column_image__flower-img {
    right: -30px;
    bottom: -20px;
  }
  .haskill_hero-section__wrapper___row--column_image__flower-img img {
    max-width: 100px;
  }
  .haskill_hero-section.shop_collection .haskill_hero_btn_group {
    flex-direction: row;
  }
  .marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .slick-track {
    gap: 50px;
  }
  .marquee_slider__wrapper .nst_bt__slider_block .nst_bt__slider .cm_item img {
    max-width: 100px;
    max-height: 30px;
  }
  .product_slider-section {
    padding-top: 60px;
  }
  .product_slider-section .slick-list {
    padding: 0 15% 0 0 !important;
  }
  .product_slider-section .product_slider_progress {
    width: 70%;
  }
  .product_slider-section.new_arrivals {
    padding-top: 50px;
  }
  .page-template-home .cta-section {
    padding-top: 50px;
  }
  .shop_collection {
    padding-top: 30px;
  }
  .shop_collection .site-title {
    font-size: 3.2rem;
    line-height: 119.048%;
  }
  .featured_stories-section__wrapper .blog_listing__row .slick-list {
    padding: 0 15% 0 0 !important;
  }
  .featured_stories-section__wrapper .blog_listing__row .slick-next {
    top: 30%;
    right: 10px;
  }
  .featured_stories-section__wrapper .blog_listing__row .slick-prev {
    top: 30%;
    left: 25px;
  }
  .location_block-section__wrapper__row--data--flower {
    right: -15px;
    top: -50px;
  }
  .location_block-section__wrapper__row--data--flower img {
    max-width: 100px;
  }
  .reviews-section__wrapper__title .flower_title_img {
    right: -10px;
    top: -60px;
  }
  .reviews-section__wrapper__title .flower_title_img img {
    max-width: 100px;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card {
    max-width: 400px;
    margin: 0 6px;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel .left_direction {
    margin-bottom: 12px;
  }
  .instagram_section {
    padding-bottom: 60px;
  }
  .instagram_section__wrapper___row--title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .haskill_hero-section__wrapper___row--column_image__flower-img {
    right: -20px;
    bottom: -20px;
  }
  .reviews-section__wrapper__title .flower_title_img {
    right: 0px;
    top: -15px;
  }
  .reviews-section__wrapper__title .flower_title_img img {
    max-width: 100px;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card .review_text p {
    font-size: 1.8rem;
  }
  .reviews-section__wrapper .reviews-section__wrapper__carousel__slider_card {
    max-width: 350px;
  }
  .featured_stories-section__wrapper .blog_listing__row .slick-prev {
    left: 22px;
  }
}
/* SearchResults
--------------------------------------------- */
body.search .search-page {
  padding-top: 10px;
}
body.search .search_title_wrraper h1 {
  text-align: center;
  margin-bottom: 30px;
}
body.search .search_title_wrraper h2 {
  font-size: 3rem;
}
body.search .blog_listing-section {
  border-radius: 0;
  background: transparent;
  padding-top: 20px;
}
body.search .blog_listing-section .blog_listing__row {
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin-bottom: 0;
}
body.search .blog_listing-section .blog_listing__row--column {
  grid-column: unset;
  display: flex;
  grid-gap: 30px;
  align-items: center;
}
body.search .blog_listing-section .blog_listing__row--column_image {
  min-width: 418px;
  min-height: 280px;
  max-width: 418px;
  max-height: 280px;
  padding: 0px;
  height: 100%;
  margin-bottom: 0px;
}
body.search .blog_listing-section .blog_listing__row--column_image img {
  position: unset;
}
body.search .search_no_result_found p {
  margin-bottom: 10px;
}
body.search .search-form.custom_form .articles_filtter_item .seacrch_header {
  width: 100%;
  border: 1px solid rgba(160, 156, 149, 0.5);
  padding: 15px 22px 15px 55px;
  border-radius: 100px;
  background-color: transparent;
  color: #3B442E;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  background: url("../images/search_icon.svg") no-repeat 20px;
  background-size: 18px;
  line-height: 1;
}
body.search .search-form.custom_form .articles_filtter_item .seacrch_header:focus {
  outline: none;
}
body.search .search-form.custom_form .articles_filtter_item .seacrch_header::-webkit-input-placeholder {
  color: #3B442E;
}
body.search .search-form.custom_form .articles_filtter_item .seacrch_header::-moz-placeholder {
  color: #3B442E;
  opacity: 1;
}
body.search .search-form.custom_form .articles_filtter_item .search-submit {
  display: none;
}
body.search .cta-section {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  body.search .search-page {
    padding-top: 30px;
  }
  body.search .blog_listing-section .blog_listing__row--column {
    flex-direction: column;
    align-items: flex-start;
  }
  body.search .blog_listing-section .blog_listing__row--column_image {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
  }
}
/* blog
--------------------------------------------- */
.featured_blog-section {
  padding: 35px 0px 70px;
}

.blog .blog_listing-section {
  padding-bottom: 90px;
  border-radius: 32px 32px 0px 0px;
  margin-bottom: -30px;
}

.featured_blog__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.featured_blog__row--image img {
  border-radius: 16px;
}
.featured_blog__row--data {
  padding: 20px 20px 20px 47px;
}
.featured_blog__row--data .site-title {
  font-size: 3rem;
  line-height: normal;
}
.featured_blog__row--data .site-title a {
  font-size: 3rem;
  font-family: "LarkenLight";
  line-height: normal;
  color: #273F3A;
  word-break: break-word;
}
.featured_blog__row--data .site-desc {
  margin-top: 10px;
}
.featured_blog__row--data .site-button {
  display: inline-block;
  margin-top: 17px;
}

.catagory_date {
  margin-bottom: 10px;
  display: flex;
  grid-gap: 10px;
}
.catagory_date span {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
  position: relative;
}
.catagory_date span a {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
  cursor: pointer;
}
.catagory_date span.dot {
  font-size: 12px;
  color: #3B442E;
  margin-top: -2px;
}

.blog_listing-section {
  padding-top: 65px;
  padding-bottom: 57px;
  background-color: #D4D4C3;
  border-radius: 32px;
}
.blog_listing-section__wrapper .cta-section {
  margin: 65px 0px;
}
.blog_listing-section__wrapper__filtter {
  margin-bottom: 54px;
}
.blog_listing-section__wrapper__filtter ul {
  display: flex;
  grid-gap: 16px 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog_listing-section__wrapper__filtter ul li a {
  font-family: "HamburgHandLight";
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  color: rgba(59, 68, 46, 0.75);
}
.blog_listing-section__wrapper__filtter ul li a.active {
  text-decoration: underline;
  color: #3B442E;
  text-underline-offset: 8px;
  text-decoration-color: #273F3A;
  text-decoration-thickness: 1px;
}

.blog_listing_wrraper.blog_loading .blog_listing__row {
  position: relative;
}
.blog_listing_wrraper.blog_loading .blog_listing__row:before {
  content: "";
  position: absolute;
  background: rgba(212, 212, 195, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 15px;
}
.blog_listing_wrraper.blog_loading .blog_listing__row:after {
  content: "";
  width: 48px;
  height: 48px;
  border: 5px dotted #273F3A;
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
  z-index: 10;
  inset: 0;
  margin: auto;
}

.blog_listing__row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 21px;
  grid-row-gap: 54px;
  margin-bottom: 54px;
}
.blog_listing__row--column {
  grid-column: span 4;
}
.blog_listing__row--column_image {
  position: relative;
  width: 100%;
  padding-bottom: 72.7699530516%;
  margin-bottom: 27px;
}
.blog_listing__row--column_image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  border-radius: 16px;
}
.blog_listing__row--column_data .site-title {
  margin-top: 10px;
  font-size: 2.6rem;
  line-height: normal;
}
.blog_listing__row--column_data .site-title a {
  font-family: "LarkenLight";
  font-size: 2.6rem;
  line-height: normal;
  color: #273F3A;
  word-break: break-word;
}
.blog_listing__row--column_data .site-title a b {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.blog_listing__row--column_data .site-title a b sup {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.blog_listing__row--column_data .site-title a em {
  color: inherit;
  font-size: inherit;
  font-family: "LarkenLightItalic";
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pagination_block {
  padding: 38px 0 0;
  text-align: center;
}
.pagination_block .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_block .pagination span {
  cursor: pointer;
  font-family: "AktivGroteskMedium";
  margin-right: 15px;
  font-size: 1.6rem;
}
.pagination_block .pagination span.cm_disable {
  opacity: 0.3;
}
.pagination_block .pagination span.current {
  color: #273F3A;
}
.pagination_block .pagination a {
  font-size: 1.6rem;
  color: rgba(6, 7, 11, 0.3);
  font-family: "AktivGroteskMedium";
  transition: all 0.25s ease 0s;
  line-height: 1;
  margin-right: 15px;
}
.pagination_block .pagination a:hover {
  color: #273F3A;
}
.pagination_block .pagination a:last-child {
  margin-right: 0;
}
.pagination_block .loader_active::before, .pagination_block .loader_active::after {
  border: 2px solid #F8F5EE;
}

@media (max-width: 991px) {
  .featured_blog-section {
    padding: 37px 0px 30px;
  }
  .featured_blog__row {
    grid-template-columns: 1fr;
  }
  .featured_blog__row--data {
    padding: 20px 0px;
  }
  .blog_listing__row {
    grid-row-gap: 25px;
    margin-bottom: 0;
  }
  .blog_listing__row--column {
    grid-column: span 6;
  }
  .blog_listing-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .blog_listing-section__wrapper__filtter ul {
    grid-gap: 25px;
  }
  .blog_listing-section__wrapper__filtter ul li a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .featured_blog__row--data .site-title {
    font-size: 2.6rem;
    line-height: normal;
  }
  .catagory_date span {
    font-size: 12px;
    letter-spacing: 0.25px;
  }
  .blog_listing-section__wrapper .cta-section {
    margin: 30px 0px;
  }
  .blog_listing-section__wrapper__filtter {
    margin-bottom: 30px;
  }
  .blog_listing-section__wrapper__filtter ul {
    flex-wrap: wrap;
    grid-gap: 20px;
  }
  .blog_listing__row--column {
    grid-column: span 12;
  }
  .blog_listing__row--column_image {
    margin-bottom: 20px;
  }
}
/* SingleBlog
--------------------------------------------- */
.single_blog_hero_section {
  padding-top: 20px;
}
.single_blog_hero_section__wrapper___row {
  max-width: 800px;
  margin: 0 auto;
}
.single_blog_hero_section__wrapper___row--column .catagory_date {
  margin-bottom: 10px;
}
.single_blog_hero_section__wrapper___row--column .blog_author_wrraper {
  margin-top: 16px;
  margin-bottom: 0;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social {
  display: flex;
  align-items: center;
  padding: 16px 0 0;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social p {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
  margin-right: 16px;
  margin-top: 2px;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 3px;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul {
  display: flex;
  align-items: center;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul li {
  line-height: 1;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul li a {
  display: block;
  line-height: 1;
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul li a img {
  transition: all 0.25s ease 0s;
  width: 15px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(16%) saturate(746%) hue-rotate(43deg) brightness(94%) contrast(93%);
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul li a:hover img {
  transform: translateY(-6px);
}
.single_blog_hero_section__wrapper___row--column .ad_info_social ul li:not(:last-child) {
  margin-right: 15px;
}
.single_blog_hero_section__wrapper___row--column .single_blog_thumbnail__image {
  position: relative;
  margin-top: 35px;
  width: 100%;
  padding-bottom: 69.625%;
}
.single_blog_hero_section__wrapper___row--column .single_blog_thumbnail__image img {
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_blog_content_section {
  padding-top: 40px;
}

.single .site-title {
  word-break: break-word;
}
.single .cta-section {
  margin-top: 66px;
  margin-bottom: 66px;
  clear: both;
}
.single .featured_stories-section {
  margin-top: 66px;
  border-radius: 32px 32px 0px 0px;
  margin-bottom: -30px;
}

body.single-post #copy_link {
  position: relative;
  box-sizing: border-box;
}
body.single-post #copy_link::before {
  content: "";
  width: 8px;
  height: 8px;
  bottom: -10px;
  left: 6px;
  -webkit-clip-path: polygon(50% 40%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 40%, 0% 100%, 100% 100%);
}
body.single-post #copy_link:after {
  content: attr(tooltip);
  width: 70px;
  bottom: -33px;
  left: -25px;
  padding: 5px;
  border-radius: 4px;
  font-size: 1.3rem;
}
body.single-post #copy_link:hover::before, body.single-post #copy_link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

body.single-post #copy_link:before,
#copy_link:after {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  background-color: #3B442E;
  color: #ffffff;
  transform: translateY(-10px);
  transition: all 300ms ease;
  text-align: center;
}

/* Visit
--------------------------------------------- */
.visit_hero-section {
  padding: 40px 0px 70px;
}
.visit_hero-section__wrapper__title {
  max-width: 675px;
  margin: 0 auto;
  text-align: center;
}

.location_block-section.visit_location {
  padding: 0px;
}
.location_block-section.visit_location .location_block-section__wrapper__row--data_wrap {
  padding-top: 196px;
}
.location_block-section.visit_location .location_block-section__wrapper__row--data_wrap ul {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}
.location_block-section.visit_location .location_block-section__wrapper__row--data_wrap ul li label {
  font-family: "HamburgHandLight";
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  color: #3B442E;
  position: relative;
  margin-bottom: 12px;
  display: block;
}
.location_block-section.visit_location .location_block-section__wrapper__row--data_wrap ul li h3 {
  font-size: 3.2rem;
}

.visit_image_block-section {
  margin-top: 24px;
}
.visit_image_block-section__wrapper___row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 24px;
}
.visit_image_block-section__wrapper___row--column {
  grid-column: span 4;
  position: relative;
  width: 100%;
  padding-bottom: 125.0591016548%;
}
.visit_image_block-section__wrapper___row--column img {
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.visit_single_image-section {
  margin-top: 24px;
  margin-bottom: 24px;
}
.visit_single_image-section__wrapper__image {
  position: relative;
  width: 100%;
  padding-bottom: 50.6060606061%;
}
.visit_single_image-section__wrapper__image img {
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .visit_hero-section {
    padding: 34px 0px;
  }
  .visit_image_block-section__wrapper___row--column {
    grid-column: span 6;
  }
}
@media (max-width: 575px) {
  .location_block-section.visit_location .location_block-section__wrapper__row--data_wrap {
    padding-top: 100px;
  }
  .location_block-section.visit_location .location_block-section__wrapper__row--data_wrap ul li .site-title {
    font-size: 2.6rem;
  }
  .visit_image_block-section__wrapper___row--column {
    grid-column: span 12;
  }
}
/* Header
-------------------------------------------- */
.announcement_bar {
  padding-top: 24px;
  transition: all 0.3s linear;
  height: auto;
}
.announcement_bar_slider {
  background-color: #FBE2A7;
  border-radius: 12px;
  padding: 15px 20px;
}
.announcement_bar_slider_data {
  text-align: center;
}
.announcement_bar_slider_data p {
  font-size: 14px;
  color: #3B442E;
  line-height: normal;
  font-family: "AktivGroteskSemiBold";
}
.announcement_bar_slider .slick-next,
.announcement_bar_slider .slick-prev {
  width: 9px;
  height: 14px;
  cursor: pointer;
  z-index: 10;
}
.announcement_bar_slider .slick-next::before,
.announcement_bar_slider .slick-prev::before {
  display: none;
}
.announcement_bar_slider .slick-prev {
  left: 20px;
}
.announcement_bar_slider .slick-next {
  right: 20px;
}

.scrolled .announcement_bar {
  height: 0;
  overflow: hidden;
  transition: all 0.5s linear;
  padding: 0;
}

header {
  padding: 30px 0;
  background: #F8F5EE;
  position: relative;
  border-radius: 0px 0px 32px 32px;
  z-index: 10;
}
header .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_logo {
  flex: 1;
}
header .header_logo img {
  max-width: 168px;
}
header .header_menu {
  flex: 1;
}
header .header_menu ul {
  display: flex;
  gap: 24px;
  justify-content: center;
}
header .header_menu ul li a {
  font-size: 15px;
  color: #3B442E;
  line-height: normal;
  font-family: "AktivGroteskSemiBold";
}
header .header_menu ul li a:hover {
  color: rgba(59, 68, 46, 0.9);
}
header .header_menu ul li.current-menu-item a {
  text-decoration: underline;
  text-decoration-color: #273F3A;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
header .header_icon_holder {
  flex: 1;
}
header .header_icon_holder ul {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: right;
}
header .header_icon_holder ul li a {
  font-size: 15px;
  color: #3B442E;
  line-height: normal;
  font-family: "AktivGroteskSemiBold";
}
header .header_icon_holder ul li a:hover {
  color: rgba(59, 68, 46, 0.9);
}
header .header_icon_holder ul li img {
  width: 18px;
  cursor: pointer;
}
header .menu_toggle_trigger {
  display: none;
}
header .menu_toggle_trigger span {
  width: 100%;
  height: 2px;
  background-color: #3B442E;
  transition: all 0.25s ease 0s;
}

.header_data_wrapper {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: 80;
}
.header_data_wrapper_inner {
  position: relative;
  z-index: 99;
  border-radius: 0px 0px 32px 32px;
  background: #F8F5EE;
}
.header_data_wrapper .header_searchbar {
  padding-bottom: 0px;
  transform: translateY(-70px);
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  height: 0px;
}
.header_data_wrapper .header_searchbar_inner .seacrch_header {
  width: 100%;
  border: 1px solid rgba(160, 156, 149, 0.5);
  padding: 15px 22px 15px 55px;
  border-radius: 100px;
  background-color: transparent;
  color: #3B442E;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  background: url("../images/search_icon.svg") no-repeat 20px;
  background-size: 18px;
  line-height: 1;
}
.header_data_wrapper .header_searchbar_inner .seacrch_header:focus {
  outline: none;
}
.header_data_wrapper .header_searchbar_inner .seacrch_header::-webkit-input-placeholder {
  color: #3B442E;
}
.header_data_wrapper .header_searchbar_inner .seacrch_header::-moz-placeholder {
  color: #3B442E;
  opacity: 1;
}
.header_data_wrapper .header_searchbar_inner .search-submit {
  display: none;
}
.header_data_wrapper .header_search__underlay {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.header_data_wrapper.searchbar_active .header_searchbar {
  transform: translateY(0px);
  transition: all 0.3s linear;
  opacity: 1;
  visibility: visible;
  height: auto;
  padding-bottom: 47px;
}
.header_data_wrapper.searchbar_active .header_search__underlay {
  z-index: 50;
  visibility: visible;
  transition: visibility 0.3s ease;
}
.header_data_wrapper.searchbar_active .header_search__underlay__fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #000;
  opacity: 0.25;
}

.announcement_bar_enable .main_content_wrapper {
  padding-top: 160px;
}

.main_content_wrapper {
  padding-top: 88px;
}

@media (max-width: 991px) {
  .announcement_bar_enable .main_content_wrapper {
    padding-top: 129px;
  }
  .main_content_wrapper {
    padding-top: 60px;
  }
  header {
    padding: 20px 0;
  }
  header .header_block {
    position: relative;
  }
  header .menu_toggle_trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 20px;
    height: 16px;
    position: relative;
    z-index: 111;
  }
  header .header_logo {
    position: relative;
    z-index: 201;
  }
  header .header_logo img {
    max-width: 120px;
  }
  header .header_icon_holder {
    margin-left: auto;
  }
  header .header_icon_holder ul {
    grid-gap: 15px;
    margin-right: 15px;
  }
  header .header_menu {
    position: absolute;
    top: -20px;
    left: -10px;
    width: calc(100% + 20px);
    transition: all 0.5s ease-in-out;
    z-index: 10;
    padding: 80px 20px 26px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-radius: 12px;
    margin: 0 auto;
    right: 0;
    display: none;
  }
  header .header_menu ul {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  header .header_menu ul li a {
    font-size: 18px;
  }
  header .header_btn {
    min-width: auto;
    margin-left: auto;
    margin-right: 15px;
    position: relative;
    z-index: 120;
  }
  header .cm_overlay {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
  }
  .open_menu {
    overflow: hidden;
    touch-action: none;
  }
  .open_menu .scrolled header {
    position: fixed;
    top: 0px;
    width: 100%;
  }
  .open_menu header .menu_toggle_trigger span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .open_menu header .menu_toggle_trigger span:nth-child(2) {
    opacity: 0;
  }
  .open_menu header .menu_toggle_trigger span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .open_menu header .header_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    display: block;
  }
  .open_menu .header_data_wrapper_inner .announcement_bar {
    padding: 0px;
    height: 0;
    transition: all 0.3s linear;
  }
  .open_menu .cm_overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .announcement_bar_slider_data p {
    font-size: 12px;
  }
}
/* footer
-------------------------------------------- */
footer {
  position: relative;
}
footer .footer-section {
  background-color: #273F3A;
  border-radius: 32px 32px 0px 0px;
  padding-top: 63px;
}
footer .footer-section__wrapper__row {
  display: flex;
  justify-content: flex-start;
  grid-gap: 150px;
}
footer .footer-section__wrapper__row--logo {
  max-width: 171px;
}
footer .footer-section__wrapper__row--menu {
  max-width: 155px;
}
footer .footer-section__wrapper__row--menu .footer_menu_label {
  font-family: "HamburgHandLight";
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #D4D4C3;
  margin-bottom: 16px;
}
footer .footer-section__wrapper__row--menu ul li {
  margin-bottom: 4px;
}
footer .footer-section__wrapper__row--menu ul li:last-of-type {
  margin-bottom: 0px;
}
footer .footer-section__wrapper__row--menu ul li a, footer .footer-section__wrapper__row--menu ul li p {
  font-family: "AktivGroteskSemiBold";
  color: #F8F5EE;
  font-size: 15px;
  line-height: 1.5;
}
footer .footer-section__wrapper__row--secound {
  display: flex;
  align-items: center;
  margin-top: 51px;
  padding-bottom: 30px;
}
footer .footer-section__wrapper__row--secound--notis {
  flex: 2;
  max-width: 660px;
}
footer .footer-section__wrapper__row--secound--notis .site-desc p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(248, 245, 238, 0.75);
}
footer .footer-section__wrapper__row--secound-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 30px;
}
footer .footer-section__wrapper__row--secound-logo img {
  width: auto;
  max-height: 67px;
}
footer .footer-section__wrapper__row--third {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(248, 245, 238, 0.25);
  padding-top: 30px;
  padding-bottom: 24px;
}
footer .footer-section__wrapper__row--third p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(248, 245, 238, 0.75);
}
footer .footer-section__wrapper__row--third p a {
  font-size: 14px;
  line-height: 20px;
  color: rgba(248, 245, 238, 0.75);
  text-decoration: underline;
}
footer .footer-section__wrapper .footer_background_image {
  max-width: 841px;
  margin: 0 auto;
  max-height: 296px;
}

@media (max-width: 991px) {
  footer .footer-section__wrapper__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
  }
  footer .footer-section__wrapper__row__logo {
    width: 100%;
    grid-column: 1/-1;
  }
  footer .footer-section__wrapper__row__logo img {
    max-width: 175px;
  }
}
@media (max-width: 767px) {
  footer .footer-section__wrapper__row {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer-section__wrapper__row__logo img {
    max-width: 150px;
  }
  footer .footer-section__wrapper__row--secound {
    margin-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    grid-gap: 30px;
  }
  footer .footer-section__wrapper__row--third {
    flex-direction: column-reverse;
    gap: 10px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  footer .footer-section__wrapper__row__logo img {
    max-width: 120px;
  }
  footer .footer-section__wrapper__row--menu .footer_menu_label {
    font-size: 12px;
    letter-spacing: 0.25px;
  }
}/*# sourceMappingURL=style.css.map */