* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
html {
  scroll-behavior: smooth;
}
body,
html {
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a,
button,
input,
textarea {
  background: 0 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
input[readonly],
textarea[readonly] {
  cursor: default;
}
textarea {
  resize: none;
}
img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@-webkit-keyframes underline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes underline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeIn {
  -webkit-animation: 0.4s ease-in-out fadeIn;
  animation: 0.4s ease-in-out fadeIn;
}
.fadeOut {
  -webkit-animation: 0.4s ease-in-out fadeOut;
  animation: 0.4s ease-in-out fadeOut;
}
html.fixed {
  overflow-y: hidden;
}
body {
  font-family: Montserrat, sans-serif;
  color: #556260;
  font-size: 17px;
  line-height: 1.5;
  padding: 0 !important;
}
.container {
  max-width: 1380px;
}
.container--narrow {
  max-width: 895px;
}
h1 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
}
h2 {
  font-size: 30px;
  line-height: 1.3;
}
h3 {
  font-size: 24px;
  line-height: 1.1;
}
h4 {
  font-size: 20px;
  line-height: 1.3;
}
h5 {
  font-size: 17px;
  line-height: 1.3;
}
h2,
h3 {
  font-weight: 800;
}
h4,
h5 {
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: NunitoSans, sans-serif;
  color: #214842;
}
.field {
  border: 1px solid transparent;
}
.field.error {
  border-color: red !important;
}
.field::-webkit-input-placeholder {
  font-size: 14px;
}
.field::-moz-placeholder {
  font-size: 14px;
}
.field:-ms-input-placeholder {
  font-size: 14px;
}
.field::-ms-input-placeholder {
  font-size: 14px;
}
.field::placeholder {
  font-size: 14px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.section {
  padding: 60px 0;
}
.section--nopb {
  padding: 60px 0 0;
}
.accent {
  color: #efc368;
}
.secondary {
  color: #258f67;
}
.brand {
  font-family: NunitoSans, sans-serif;
  font-weight: 900;
  color: #258f67;
  font-size: 28px;
  line-height: 20px;
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: #efc368;
  color: #214842;
  border-radius: 24px;
  padding: 0 25px;
  font-family: NunitoSans, sans-serif;
  font-weight: 700;
  font-size: 17px;
  height: 48px;
}
.btn:focus,
.btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.btn--green {
  background: 0 0;
  color: #258f67;
  border: 1px solid #258f67;
}
.btn--green:focus,
.btn--green:hover {
  background: #258f67;
  color: #fff;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.btn--underline {
  color: #258f67;
  font-family: NunitoSans, sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 5px;
}
.btn--underline:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #258f67;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.btn--underline:focus:after,
.btn--underline:hover:after {
  -webkit-animation: 0.5s ease-in-out underline;
  animation: 0.5s ease-in-out underline;
}
.icon-heart {
  position: relative;
  top: 1px;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}
.swiper-pagination--dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.swiper-pagination--dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #9ebca6;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
.swiper-pagination--dots .swiper-pagination-bullet-active,
.swiper-pagination--dots .swiper-pagination-bullet:hover {
  background: #258f67;
}
.swiper-pagination--dots .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.qty {
  background: #fff;
  -webkit-box-shadow: 1px 2px 15px rgba(33, 72, 66, 0.07);
  box-shadow: 1px 2px 15px rgba(33, 72, 66, 0.07);
  border-radius: 24px;
  padding: 13px 15px;
  width: 110px;
  height: 48px;
  font-family: NunitoSans, sans-serif;
  color: #214842;
  margin-top: 10px;
}
.qty_amount {
  max-width: 22px;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.qty .control {
  cursor: pointer;
}
.qty .control.disabled {
  color: #c6c6c6;
  cursor: default;
}
.main_title {
  cursor: pointer;
}
.main_rating {
  line-height: 1;
}
.main_rating-stars_star {
  margin-right: 10px;
  font-size: 20px;
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 20000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.offcanvas-end {
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19000;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 72, 66, 0.5);
}
.offcanvas.show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (min-width: 767.98px) {
  h1 {
    font-size: 40px;
  }
  .section {
    padding: 90px 0;
  }
  .section--nopb {
    padding: 90px 0 0;
  }
}
@media screen and (min-width: 991.98px) {
  .section {
    padding: 160px 0;
  }
  .section--nopb {
    padding: 160px 0 0;
  }
  .swiper-pagination--dots {
    margin-top: 60px;
  }
  h1 {
    font-size: 56px;
    line-height: 1.2;
  }
  h2 {
    font-size: 36px;
    line-height: 1.2;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
    line-height: 1.1;
  }
}
a[href^="http://maps.google.com/maps"],
a[href^="https://maps.google.com/maps"] {
  display: none !important;
}
.gm-style-cc,
.gmnoprint a,
.gmnoprint span {
  display: none;
}
.gmnoprint div {
  background: 0 0 !important;
}
.header {
  height: 60px;
  z-index: 10000;
  will-change: transform;
  -webkit-transition:
    position 0.5s ease-in-out,
    background-color 0.3s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  transition:
    position 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    background-color 0.3s ease-in-out,
    -webkit-transform 0.5s ease-in-out;
  -o-transition:
    position 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    background-color 0.3s ease-in-out;
}
.header.sticky {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
}
.header.opened {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header--pinned {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header--unpinned {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header_logo {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.header_logo span:not(.logo) {
  display: none;
}
.header_nav {
  width: 100%;
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  height: 0;
  overflow: hidden;
  -webkit-transition:
    height 0.5s,
    padding-top 0.5s;
  -o-transition:
    height 0.5s,
    padding-top 0.5s;
  transition:
    height 0.5s,
    padding-top 0.5s;
  font-family: NunitoSans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #214842;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
}
.header_nav.active {
  height: 100vh;
  padding-top: 30px;
  overflow-y: scroll;
  -webkit-box-shadow: 0 30px 15px rgba(37, 143, 103, 0.07);
  box-shadow: 0 30px 15px rgba(37, 143, 103, 0.07);
}
.header_nav .nav-item {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 17px;
  line-height: 1.3;
}
.header_nav .nav-item.active,
.header_nav .nav-item:hover {
  color: #258f67;
}
.header_nav .dropdown-toggle {
  margin-bottom: 20px;
}
.header_nav .dropdown-toggle .icon {
  font-size: 14px;
  margin-left: 5px;
}
.header_nav .dropdown-menu {
  padding-bottom: 15px;
}
.header_nav .dropdown .nav-item {
  margin-bottom: 20px;
}
.header_nav .dropdown .nav-item:last-of-type {
  margin-bottom: 0;
}
.header_user {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header_user-action {
  border-radius: 50%;
  background: #efc368;
  color: #214842;
  width: 40px;
  height: 40px;
  font-size: 16px;
}
.header_user-action:first-of-type {
  margin-right: 15px;
}
.header_user-search_field {
  display: none;
}
.header_trigger {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 30px;
  height: 28px;
  margin-right: 15px;
}
.header_trigger .line {
  border-radius: 2px;
  background: #214842;
  height: 4px;
  width: 100%;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header_trigger .line--short {
  width: 75%;
}
.header_trigger.active .line--short {
  width: 100%;
}
@media screen and (min-width: 767.98px) {
  .header_logo span:not(.logo) {
    display: inline;
  }
  .header_logo .accent {
    color: #214842;
  }
  .header_logo .logo {
    margin-right: 10px;
  }
  .header_nav.active {
    height: 50vh;
  }
  .header_user-searchs{
    position: relative;
    margin-right: 15px;
  }
  .header_user-search_field {
    display: inline;
    padding: 0 20px;
    height: 40px;
    border: 1px solid #c6c6c6;
    border-radius: 20px;
    background: #fff;
  }
  .header_user-search_field::-webkit-input-placeholder {
    color: #214842;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  }
  .header_user-search_field::-moz-placeholder {
    color: #214842;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  }
  .header_user-search_field:-ms-input-placeholder {
    color: #214842;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  }
  .header_user-search_field::-ms-input-placeholder {
    color: #214842;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  }
  .header_user-search_field::placeholder {
    color: #214842;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  }
  .header_user-search_field:focus::-webkit-input-placeholder {
    opacity: 0;
  }
  .header_user-search_field:focus::-moz-placeholder {
    opacity: 0;
  }
  .header_user-search_field:focus:-ms-input-placeholder {
    opacity: 0;
  }
  .header_user-search_field:focus::-ms-input-placeholder {
    opacity: 0;
  }
  .header_user-search_field:focus::placeholder {
    opacity: 0;
  }
  .header_user-search_btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 !important;
  }
}
@media screen and (min-width: 1199.98px) {
  .header {
    height: 140px;
    -webkit-transition:
      height 0.3s ease-in,
      background-color 0.2s,
      -webkit-transform 0.5s ease-in-out;
    transition:
      transform 0.5s ease-in-out,
      height 0.3s ease-in,
      background-color 0.2s,
      -webkit-transform 0.5s ease-in-out;
    -o-transition:
      transform 0.5s ease-in-out,
      height 0.3s ease-in,
      background-color 0.2s;
  }
  .header.sticky {
    height: 90px;
  }
  .header_user-searchs{
    margin-right: 150px;
  }
  .header_user-action:first-of-type {
    margin-right: 30px;
  }
  .header_nav {
    position: static;
    background: 0 0;
    padding: 0 !important;
    height: unset;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 60px;
    font-size: 17px;
  }
  .header_nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_nav-list_item {
    margin-right: 40px;
  }
  .header_nav-list_item:last-of-type {
    margin-right: 0;
  }
  .header_nav-list_item .nav-link {
    margin-bottom: 0;
  }
  .header_nav .dropdown-menu {
    position: absolute;
    opacity: 0;
    max-height: unset;
    text-align: left;
    visibility: hidden;
    padding-top: 15px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header_nav .dropdown-menu .dropdown-list {
    background: #fff;
    -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, 0.07);
    box-shadow: 0 0 15px rgba(37, 143, 103, 0.07);
    border-radius: 8px;
    padding: 30px;
  }
  .header_nav .dropdown-menu .dropdown-list .nav-item {
    margin-bottom: 30px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header_nav .dropdown-menu .dropdown-list .nav-item:last-of-type {
    margin-bottom: 0;
  }
  .header_nav .dropdown-menu .dropdown-list .nav-item.active:before,
  .header_nav .dropdown-menu .dropdown-list .nav-item:hover:before {
    display: none;
  }
  .header_nav .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
  }
}
/* ================= HERO ================= */
.hero {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 120px;
}
@media screen and (min-width: 575.98px) {
  .hero {
    text-align: left;
  }
}
@media screen and (min-width: 767.98px) {
  .hero {
    /* padding-top: 150px; */
  }
}
@media screen and (min-width: 1199.98px) {
  .hero {
    /* padding-top: 220px; */
  }
}

.hero_promo {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (min-width: 767.98px) {
  .hero_promo {
    padding-bottom: 90px;
  }
}

/* soft ambient glow behind the slider, echoes the brand green */
.hero_promo::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -15%;
  top: -10%;
  background: radial-gradient(
    circle,
    rgba(37, 143, 103, 0.16),
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.logo img{
  width: 120px;
}
/* ================= SLIDER ================= */
.hero_slider {
  position: relative;
  width: 100%;
  margin-top: 60px;
  color: white
}
@media screen and (min-width: 767.98px) {
  .hero_slider {
    padding-top: 80px;
  }
}
@media screen and (min-width: 991.98px) {
  .hero_slider {
    padding-top: 140px;
  }
}
@media screen and (min-width: 1199.98px) {
  .hero_slider {
    overflow: visible;
    padding-top: 0;
    margin-top: 0;
  }
}

.hero_slider-slide {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  overflow: hidden;
  filter: brightness(0.8);
}
@media screen and (min-width: 767.98px) {
  .hero_slider-slide {
    min-height: 620px;
    
  }
}
@media screen and (min-width: 1199.98px) {
  .hero_slider-slide {
    border-radius: 0;
    overflow: visible;
  }
  .hero_slider-slide:not(.swiper-slide-visible) {
    opacity: 0;
  }
}

/* dark overlay for legibility, tinted with brand green instead of flat black */
.hero_slider-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 26, 22, 0.82) 10%,
    rgba(15, 26, 22, 0.45) 55%,
    rgba(15, 26, 22, 0.15) 85%
  );
}

.hero_slider-slide_content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 48px 40px;
}

/* ===== product media (jar / bottle / pack) ===== */
.hero_slider-slide_media {
  display: none;
  height: 350px;
  margin-right: 40px;
  flex-shrink: 0;
}
.hero_slider-slide_media img {
  width: auto;
  height: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  border-radius: 12px;
}
@media screen and (min-width: 767.98px) {
  .hero_slider-slide_media {
    display: block;
    width: 193px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 991.98px) {
  .hero_slider-slide_media {
    width: 250px;
    height: unset;
  }
  .hero_slider-slide_media img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1199.98px) {
  .hero_slider-slide_media {
    position: absolute;

    right: -30px;
    bottom: -10%;

    width: 600px;
    height: 100%;
    margin-right: 0;
  }
  .hero_slider-slide_media img {
    width: 100%;
    height: auto;
  }
}

.hero_slider-slide_main {
  max-width: 600px;
  color: white
}
@media screen and (min-width: 1199.98px) {
  .hero_slider-slide_main {
    margin-left: 180px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.title {
  color: inherit;
  font-weight: 800;
  /* font-size: clamp(30px, 4vw, 46px); */
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.15;
  margin: 0 0 15px;
}

.text {
  color: inherit;
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}
@media screen and (min-width: 575.98px) {
  .text {
    max-width: 300px;
  }
}
@media screen and (min-width: 991.98px) {
  .text {
    /* margin: 15px 0 30px; */
  }
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}
.list-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 991.98px) {
  .list-item {
    margin-bottom: 15px;
  }
}

.list-item .icon {
  /* background: white; */
  border-radius: 50%;
  color:#efc368;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 11px;
  transition: transform 0.25s ease;
}
.list-item:hover .icon {
  transform: scale(1.15);
}

.btn--underline {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 4px;
}
.btn--underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: white;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn--underline:hover::after {
  transform: scaleX(1.15);
}
@media screen and (min-width: 991.98px) {
  .btn--underline {
    margin-top: 40px;
  }
}

/* ================= PAGINATION — numbered, like the original ================= */
.hero-pagination {
  /* margin-top: 30px; */
  position: relative;
  z-index: 10;
}
.hero-pagination .swiper-pagination-bullet {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(33, 72, 66, 0.4);
  margin-right: 20px;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  transition:
    transform 0.3s,
    color 0.3s;
  cursor: pointer;
}
.hero-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}
.hero-pagination .swiper-pagination-bullet-active {
  font-weight: 700;
  transform: scale(1.5);
  color: var(--dark-green);
}

@media screen and (min-width: 575.98px) {
  .hero-pagination {
    position: absolute;
    right: 0;
    top: 60%;
    margin-top: 0;
    margin-right: 10px;
  }
  .hero-pagination .swiper-pagination-bullet {
    margin-right: 0;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
  }
  .hero-pagination .swiper-pagination-bullet:last-of-type {
    margin-bottom: 0;
  }
  .hero-pagination .swiper-pagination-bullet-active {
    color: white;
  }
}
@media screen and (min-width: 767.98px) {
  .hero-pagination {
    top: 50%;
  }
}
@media screen and (min-width: 1199.98px) {
  .hero-pagination {
    top: 50%;
    transform: translateY(-50%);
  }
}
.products_list-item:last-of-type {
  margin-bottom: 0;
}
.products_list-item_wrapper {
  -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #fff;
}
.products_list-item_wrapper:hover {
  -webkit-box-shadow: 0 0 20px rgba(37, 143, 103, 0.15);
  box-shadow: 0 0 20px rgba(37, 143, 103, 0.15);
}
.products_list-item_wrapper .media {
  margin-bottom: 10px;
  overflow: hidden;
  min-width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.products_list-item_wrapper .media img {
  position: relative;
  max-height: 90%;
  width: 90%;
  margin: auto;
}
.products_list-item_wrapper .media .label {
  background: #258f67;
  color: #fff;
  border-radius: 16px;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  margin: 30px 0 0 30px;
}
.products_list-item_wrapper .media .overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 30px;
}
.products_list-item_wrapper .media .overlay .action {
  margin-left: auto;
}
.products_list-item_wrapper .media .overlay .action_link {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #efc368;
  color: #efc368;
  font-size: 19px;
}
.products_list-item_wrapper .media .overlay .action_link:first-of-type {
  margin-bottom: 20px;
}
.products_list-item_wrapper .media .overlay .action_link.active,
.products_list-item_wrapper .media .overlay .action_link:hover {
  background: #efc368;
  color: #fff;
}
.products_list-item_wrapper .main {
  padding: 0 30px 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #fff;
}
.products_list-item_wrapper .main_title {
  margin: 10px 0;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: NunitoSans, sans-serif;
  color: #214842;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.products_list-item_wrapper .main_title:focus,
.products_list-item_wrapper .main_title:hover {
  color: #258f67 !important;
}
.products_list-item_wrapper .main_table {
  font-size: 14px;
}
.products_list-item_wrapper .main_table .list-item .property {
  font-weight: 600;
  color: #214842;
}
.products_list-item_wrapper .main_price {
  margin: 15px 0 20px;
}
.products_list-item_wrapper .main_price .price {
  color: #214842;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  font-family: NunitoSans, sans-serif;
}
.products_list-item_wrapper .main_price .price--old {
  color: #c6c6c6;
  text-decoration: line-through;
  margin-right: 15px;
  font-weight: 700;
}
@media screen and (min-width: 575.99px) {
  .products_list {
    margin: 0 -15px;
  }
  .products_list-item {
    padding: 0 15px;
  }
  .products_list-item[data-order="3"] {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 991.99px) {
  .products_list {
    margin: 0 -20px;
  }
  .products_list-item {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .products_list-item .main_title {
    margin: 15px 0 10px;
    font-size: 22px;
  }
  .products_list-item[data-order="3"] {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1199.99px) {
  .products_list-item,
  .products_list-item[data-order="3"] {
    margin-bottom: 0;
  }
}
.featured_header {
  text-align: center;
  margin-bottom: 30px;
}
.featured_header-title {
  margin-bottom: 15px;
}
.featured_header-text {
  max-width: 500px;
  margin: 0 auto;
}
.featured_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
.products_list {
  grid-gap: 30px;
}
.products_list-item {
  margin: 0;
}
.products_list-promo {
  background: #fafaf5;
  padding: 30px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}
.products_list-promo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fafaf5;
  mix-blend-mode: darken;
  z-index: 1;
}
.products_list-promo .content {
  position: relative;
  z-index: 2;
}
.products_list-promo_text {
  margin: 15px 0 30px;
}
.products_list-promo .timer_block {
  margin-right: 5px;
  border-radius: 8px;
  min-width: 60px;
  height: 60px;
  background: #258f67;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  text-transform: capitalize;
}
.products_list-promo .timer_block:last-of-type {
  margin-right: 0;
}
.products_list-promo .timer_block-number {
  font-size: 24px;
  line-height: 1.1;
  font-family: NunitoSans, sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 575.98px) {
  .products_list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }
  .products_list-item {
    padding: 0;
  }
  .products_list-promo {
    grid-area: 4/1/5/3;
    padding: 30px;
    background: url(../img/index/offer.jpg) center/cover no-repeat;
    text-align: left;
  }
  .products_list-promo_text {
    max-width: 426px;
  }
  .products_list-promo .timer_block {
    margin-right: 15px;
    width: 80px;
    height: 72px;
  }
}
@media screen and (min-width: 991.98px) {
  .featured_header {
    margin-bottom: 40px;
  }
  .products_list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }
  .products_list-promo {
    grid-area: 3/1/4/3;
    padding: 40px;
  }
}
.about_main-content_header {
  margin-bottom: 15px;
}
.about_main-media {
  border-radius: 16px;
  overflow: hidden;
  margin: 30px 0;
  height: 250px;
}
.about_main-media img {
  height: 100%;
}
.about_numbers-group {
  max-width: 320px;
  margin: 0 auto 20px;
}
.about_numbers-group:last-of-type {
  margin-bottom: 0;
}
.about_numbers-group .number {
  font-family: NunitoSans, sans-serif;
  font-weight: 900;
  font-size: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.about_numbers-group .number-label {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 575.98px) {
  .about_numbers {
    margin: 0 -20px;
  }
  .about_numbers-group {
    max-width: unset;
    padding: 0 20px;
  }
  .about_numbers-group[data-order="3"] {
    margin-bottom: 0;
  }
  .about_numbers-group .number-label {
    text-align: left;
  }
}
@media screen and (min-width: 767.98px) {
  .about_main-media {
    height: 308px;
  }
  .about_numbers-group .number {
    font-size: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 991.98px) {
  .about_main {
    margin-bottom: 60px;
  }
  .about_main-media {
    margin: 0 0 0 40px;
  }
  .about_main-media img {
    height: 100%;
  }
  .about_numbers-group {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1199.98px) {
  .about_main-media {
    margin: 0;
  }
  .about_main-content,
  .about_main-media {
    width: calc(50% - 30px);
  }
  .about_numbers-group .number {
    font-size: 70px;
    height: 58px;
  }
}
.product_media {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  max-height: 580px;
}
.product_media::before {
  float: left;
  padding-top: 93.5483870967742%;
  content: "";
}
.product_media::after {
  display: block;
  content: "";
  clear: both;
}
.product_media img {
  height: 100%;
}
.product_main-title {
  font-size: 30px;
  line-height: 1.3;
  font-family: NunitoSans, sans-serif;
  font-weight: 800;
  color: #214842;
}
.product_main-rating {
  margin: 15px 0 10px;
}
.product_main-rating_stars .star {
  margin-right: 10px;
  font-size: 18px;
}
.product_main-rating_amount {
  font-size: 16px;
}
.product_main-list {
  margin: 20px 0 30px;
  font-size: 16px;
  font-weight: 600;
}
.product_main-list .list-item {
  margin-bottom: 15px;
}
.product_main-list .list-item:last-of-type {
  margin-bottom: 0;
}
.product_main-list .icon {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #258f67;
  color: #fff;
  font-size: 12px;
  margin-right: 10px;
}
.product_main-action .price {
  font-size: 30px;
  font-family: NunitoSans, sans-serif;
  font-weight: 800;
  color: #214842;
  margin-right: 25px;
  margin-bottom: -6px;
}
@media screen and (min-width: 991.98px) {
  .product_media {
    margin-bottom: 0;
    margin-right: 40px;
    width: calc(50% - 40px);
  }
  .product_media img {
    height: 100%;
  }
  .product_main-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .product_main-rating {
    margin: 30px 0 20px;
  }
  .product_main-list {
    margin: 20px 0 40px;
  }
  .product_main-action .price {
    font-size: 36px;
  }
}
@media screen and (min-width: 1199.98px) {
  .product_media {
    margin-right: 80px;
    width: calc(50% - 80px);
  }
  .product_main {
    padding: 40px 0;
  }
  .product_main-title {
    max-width: 595px;
  }
  .product_main-text {
    max-width: 635px;
  }
}
.info {
  background:
    url(../img/banners/noise.png) center,
    0 0 / cover #214842;
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}
.info_deco-wrapper {
  display: none;
}
.info_content {
  position: relative;
  z-index: 10;
}
.info_content-header {
  color: #fff;
  text-align: center;
  max-width: 1033px;
  margin: 15px auto 0;
  font-size: 24px;
  line-height: 1.1;
}
@media screen and (min-width: 575.98px) {
  .info_deco {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .info_deco-wrapper {
    display: block;
    width: 582px;
    height: 664px;
    position: absolute;
    z-index: 2;
    mix-blend-mode: darken;
    bottom: 0;
  }
  .info_deco-wrapper:first-of-type {
    left: 0;
  }
  .info_deco-wrapper:last-of-type {
    right: 0;
  }
  .info_deco-wrapper .leaf {
    position: absolute;
    bottom: 0;
  }
  .info_deco-wrapper .leaf--left {
    left: -50%;
  }
  .info_deco-wrapper .leaf--right {
    right: -60%;
    bottom: -35%;
  }
  .info_highlight {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
  }
  .info_highlight .underlay {
    position: absolute;
    display: block;
    height: 100%;
    top: 0;
  }
  .info_highlight .underlay--right {
    right: 0;
  }
  .info_highlight .underlay--left {
    left: 0;
  }
  .info_highlight .underlay_circle {
    -webkit-filter: blur(136px);
    filter: blur(136px);
    position: absolute;
  }
  .info_highlight .underlay_circle--accent {
    background: rgba(239, 195, 104, 0.1);
    width: 548px;
    height: 548px;
    left: -18%;
    top: 34%;
  }
  .info_highlight .underlay_circle--green {
    background: rgba(158, 188, 166, 0.2);
  }
  .info_highlight .underlay_circle--small {
    width: 372px;
    height: 372px;
    bottom: 0;
  }
  .info_highlight .underlay_circle--big {
    width: 597px;
    height: 597px;
  }
  .info_content-header {
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 767.98px) {
  .info_deco-wrapper .leaf {
    position: absolute;
    bottom: 0;
  }
  .info_deco-wrapper .leaf--left {
    left: -30%;
  }
  .info_deco-wrapper .leaf--right {
    right: -43%;
    bottom: -5%;
  }
  .info_highlight {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .info_highlight .underlay_circle {
    -webkit-filter: blur(136px);
    filter: blur(136px);
    position: absolute;
  }
  .info_highlight .underlay_circle--accent {
    background: rgba(239, 195, 104, 0.1);
    width: 388px;
    height: 337px;
    left: -18%;
    top: 56%;
  }
  .info_highlight .underlay_circle--green {
    background: rgba(158, 188, 166, 0.2);
  }
  .info_highlight .underlay_circle--small {
    width: 372px;
    height: 372px;
    bottom: 0;
  }
  .info_highlight .underlay_circle--big {
    width: 597px;
    height: 597px;
  }
  .info_content-header {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1399.98px) {
  .products_list {
    grid-template-columns: repeat(4, 1fr);
  }
  .products_list-promo {
    grid-area: 2/3/3/5;
  }
  .info_deco-wrapper .leaf--left {
    left: 0;
  }
  .info_deco-wrapper .leaf--right {
    right: 0;
  }
}
@media screen and (min-width: 2199.98px) {
  .info_highlight .underlay {
    width: 50%;
  }
  .info_highlight .underlay_circle--small {
    right: -10%;
  }
  .info_highlight .underlay_circle--big {
    right: -20%;
  }
}
.effects {
  text-align: center;
  position: relative;
}
.effects .container {
  position: relative;
  z-index: 10;
}
.effects_underlay {
  display: block;
  position: absolute;
  width: 470px;
  height: 450px;
  left: 37%;
  bottom: 0;
  z-index: 1;
}
.effects_underlay-circle {
  display: block;
  width: 384px;
  height: 384px;
  -webkit-filter: blur(136px);
  filter: blur(136px);
  position: absolute;
}
.effects_underlay-circle--green {
  background: rgba(158, 188, 166, 0.2);
  top: 0;
  right: 0;
}
.effects_underlay-circle--accent {
  background: rgba(239, 195, 104, 0.1);
  bottom: 0;
  left: 0;
}
.effects_header {
  margin-bottom: -25px;
}
.effects_header .main {
  position: relative;
  z-index: 100;
}
.effects_header-title {
  margin-bottom: 15px;
}
.effects_header-btn {
  margin-top: 30px;
}
.effects_header-formula {
  visibility: hidden;
  height: 0;
  color: #9ebca6;
  display: inline-block;
  margin: 0 auto;
}
.effects_header-formula svg {
  margin: 0 auto;
  display: block;
  height: 0;
}
.effects_media {
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
  max-height: 400px;
}
.effects_list-item {
  text-align: center;
  margin-bottom: 30px;
}
.effects_list-item:last-of-type {
  margin-bottom: 0;
}
.effects_list-item .icon {
  border-radius: 50%;
  color: #214842;
  background: #efc368;
  width: 60px;
  height: 60px;
  font-size: 26px;
}
.effects_list-item_header {
  margin: 10px 0 5px;
}
@media screen and (min-width: 575.98px) {
  .effects,
  .effects_list-item {
    text-align: left;
  }
  .effects_list-item .icon {
    margin-right: 20px;
  }
  .effects_list-item_header {
    margin: 0 0 10px;
  }
  .effects_list-item .wrapper {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 767.98px) {
  .effects_header .main {
    margin-bottom: 60px;
  }
  .effects_list,
  .effects_media {
    width: calc(50% - 15px);
  }
  .effects_media {
    margin: 0;
  }
}
@media screen and (min-width: 991.98px) {
  .info_content-header {
    font-size: 36px;
    line-height: 1.2;
  }
  .effects_header {
    margin-bottom: 60px;
  }
  .effects_header .main {
    margin-bottom: 0;
  }
  .effects_header-text,
  .effects_header-title {
    max-width: 500px;
  }
  .effects_header-formula {
    visibility: visible;
    width: unset;
    height: unset;
    margin-top: 0;
  }
  .effects_header-formula svg {
    height: unset;
    margin-left: auto;
    margin-top: 10px;
  }
  .effects_list,
  .effects_media {
    width: calc(50% - 20px);
  }
  .effects_media {
    margin: 0;
  }
}
@media screen and (min-width: 1399.98px) {
  .effects_header {
    max-width: 367px;
    margin-bottom: 0;
    position: relative;
    height: 100%;
    margin-right: 90px;
  }
  .effects_header-formula {
    position: absolute;
    top: 90%;
    right: -20%;
  }
  .effects_list,
  .effects_media {
    width: unset;
  }
  .effects_list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
    margin-left: 60px;
  }
  .effects_media {
    margin: 0;
    min-height: 540px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .effects_media::before {
    float: left;
    padding-top: 131.70731707317074%;
    content: "";
  }
  .effects_media::after {
    display: block;
    content: "";
    clear: both;
  }
  .effects_media img {
    min-height: 540px;
    width: auto;
  }
}
.latest_header,
.latest_list .list-item {
  margin-bottom: 30px;
}
.latest_list .list-item:hover .preview-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.latest_list-preview {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 15px;
}
.latest_list-preview .preview-img {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.latest_list-main .metadata {
  display: block;
}
.latest_list-main .metadata_item {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}
.latest_list-main .metadata_item:first-of-type {
  margin-right: 15px;
}
.latest_list-main .metadata_item .icon {
  margin-right: 5px;
}
.latest_list-main .title {
  display: inline-block;
  margin: 15px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: NunitoSans, sans-serif;
  font-weight: 700;
  color: #214842;
}
.latest_promo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.latest_promo .overlay {
  position: absolute;
  color: #fff;
  background: rgba(33, 72, 66, 0.7);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 30px;
}
.latest_promo .overlay_header {
  margin-bottom: 15px;
  color: inherit;
}
@media screen and (min-width: 575.98px) {
  .latest_promo {
    max-height: 300px;
  }
  .latest_promo .overlay {
    top: unset;
  }
  .latest_list-preview {
    margin-bottom: 0;
    margin-right: 15px;
    min-width: 193px;
  }
  .latest_list-preview .preview-img {
    height: 100%;
  }
  .latest_list-main .title {
    max-width: 315px;
  }
  .latest_list-main .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media screen and (min-width: 767.98px) {
  .latest_promo {
    max-height: 350px;
    margin-right: -50px;
  }
  .latest_promo .overlay_header,
  .latest_promo .overlay_text {
    max-width: 295px;
    padding-right: 30px;
  }
  .latest_list-preview {
    max-width: 193px;
  }
  .latest_list-main .text {
    max-width: 315px;
  }
}
@media screen and (min-width: 991.98px) {
  .latest_header {
    margin-bottom: 40px;
    text-align: center;
  }
  .latest_promo {
    max-height: unset;
    margin-right: 40px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .latest_promo-bg {
    height: 100%;
  }
  .latest_promo .overlay_header,
  .latest_promo .overlay_text {
    max-width: 265px;
    padding-right: 0;
  }
  .latest_list .list-item:last-of-type {
    margin-bottom: 0;
  }
  .latest_list-preview {
    margin-right: 30px;
  }
  .latest_list-main .title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1199.98px) {
  .latest_promo {
    margin-right: 80px;
  }
  .latest_promo .overlay {
    max-width: 394px;
    margin-left: auto;
  }
  .latest_list-main .title {
    margin: 20px 0;
  }
}
.instagram_header {
  text-align: center;
  margin-bottom: 30px;
}
.instagram_header-title {
  margin-bottom: 15px;
}
.instagram_header-text {
  max-width: 500px;
  margin: 0 auto;
}
.instagram_slider-slide .link {
  position: relative;
  display: block;
}
.instagram_slider-slide .link .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 72, 66, 0.6);
  color: #fff;
  font-size: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.instagram_slider-slide .link:focus .overlay,
.instagram_slider-slide .link:hover .overlay {
  opacity: 1;
}
@media screen and (min-width: 991.98px) {
  .instagram_header {
    margin-bottom: 40px;
  }
}
.footer_main {
  background: #214842;
  color: #fff;
}
.footer_main-header {
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.footer_main-block {
  margin-bottom: 30px;
}
.footer_main-block:last-of-type {
  margin-bottom: 0;
}
.footer_main-about_brand {
  margin-bottom: 10px;
}
.footer_main-about_brand svg {
  margin-right: 10px;
}
.footer_main-about_wrapper .text {
  margin: 5px 0 20px;
}
.footer_main-about_wrapper .socials {
  font-size: 22px;
}
.footer_main-about_wrapper .socials .list-item {
  margin-right: 25px;
}
.footer_main-about_wrapper .socials .list-item:last-of-type {
  margin-right: 0;
}
.footer_main-about_wrapper .socials .list-item .link .icon {
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.footer_main-about_wrapper .socials .list-item .link .icon:focus,
.footer_main-about_wrapper .socials .list-item .link .icon:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.footer_main-contacts_list .list-item {
  margin-bottom: 15px;
}
.footer_main-contacts_list .list-item:last-of-type {
  margin-bottom: 0;
}
.footer_main-contacts_list .list-item .icon {
  border-radius: 50%;
  background: #efc368;
  width: 35px;
  height: 35px;
  margin-right: 20px;
  color: #214842;
  font-size: 16px;
}
.footer_main-contacts_list .list-item .link:focus,
.footer_main-contacts_list .list-item .link:hover {
  color: #efc368;
}
.footer_main-nav_list .list-item {
  margin-bottom: 15px;
  width: 50%;
  padding-right: 10px;
}
.footer_main-nav_list .list-item:last-of-type {
  margin-bottom: 0;
}
.footer_main-nav_list .list-item .icon {
  font-size: 16px;
  margin-right: 5px;
}
.footer_main-nav_list .list-item .link:focus,
.footer_main-nav_list .list-item .link:hover {
  color: #efc368;
}
.footer_main-instagram_list {
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer_main-instagram_list .link {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  height: 115px;
  width: 100%;
}
.footer_main-instagram_list .link .preview {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  height: 100%;
}
.footer_main-instagram_list .link:focus .preview,
.footer_main-instagram_list .link:hover .preview {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.footer_secondary {
  padding: 30px 0;
  background-color: #fafaf5;
}
.footer_secondary-copyright {
  text-align: center;
}
.footer_secondary-list {
  margin-bottom: 20px;
}
.footer_secondary-list .list-item {
  margin-right: 20px;
}
.footer_secondary-list .list-item:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 575.98px) {
  .footer_main-instagram_list {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
  .footer_main-instagram_list .link {
    height: 140px;
  }
}
@media screen and (min-width: 767.98px) {
  .footer_main-instagram_list .link {
    height: 93px;
  }
  .footer_main-about {
    margin-top: -18px;
  }
  .footer_main-about_brand {
    margin-left: -10px;
  }
  .footer_main-about_wrapper .text {
    max-width: 260px;
  }
  .footer_main-nav_list .list-item {
    width: unset;
  }
  .footer_secondary-copyright {
    text-align: left;
  }
  .footer_secondary-copyright .linebreak {
    display: block;
  }
  .footer_secondary-list {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 991.98px) {
  .footer_main-about_wrapper .text {
    margin: 5px 0 50px;
  }
  .footer_main-instagram_list {
    grid-gap: 20px;
  }
  .footer_main-instagram_list .link {
    height: 120px;
  }
  .footer_secondary {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1199.98px) {
  .footer_main-instagram {
    max-width: 312px;
  }
  .footer_main-instagram_list .list-item {
    height: 100px;
  }
  .footer_main-instagram_list .list-item .link {
    height: 100%;
  }
  .footer_secondary-copyright .linebreak {
    display: inline;
  }
}
.modal.swal2-backdrop-show {
  background: rgba(33, 72, 66, 0.5);
}
.modal_popup {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
}
.modal_popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #c6c6c6;
  font-size: 22px;
  line-height: 1;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.modal_popup-close:hover {
  color: #258f67;
}
.modal_popup--view {
  max-width: 1130px;
  overflow: hidden;
}
.modal_popup--view .about_main .underlay {
  z-index: 1;
  position: absolute;
  width: 416px;
  height: 431px;
  display: block;
  bottom: -10%;
  right: -20%;
}
.modal_popup--view .about_main .underlay_circle {
  position: absolute;
  width: 296px;
  height: 296px;
  -webkit-filter: blur(136px);
  filter: blur(136px);
  display: block;
}
.modal_popup--view .about_main .underlay_circle--accent {
  left: 0;
  bottom: 0;
  background: rgba(239, 195, 104, 0.1);
}
.modal_popup--view .about_main .underlay_circle--green {
  top: 0;
  right: 0;
  background: -o-radial-gradient(
    57.89% 44.57%,
    42.37% 42.37%,
    rgba(255, 255, 255, 0.8) 0,
    rgba(37, 143, 103, 0.01) 100%
  );
  background: radial-gradient(
    42.37% 42.37% at 57.89% 44.57%,
    rgba(255, 255, 255, 0.8) 0,
    rgba(37, 143, 103, 0.01) 100%
  );
}
.modal_popup--view .about_main-slider {
  margin-bottom: 20px;
  overflow: hidden;
}
.modal_popup--view .about_main-slider--single .swiper-slide,
.modal_popup--view .about_main-slider--thumbs .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
}
.modal_popup--view .about_main-slider--single {
  margin-bottom: 15px;
  position: relative;
}
.modal_popup--view .about_main-slider--single .swiper-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 50;
  padding: 0 15px;
}
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-next,
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  font-size: 30px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-next:hover,
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-prev:hover {
  opacity: 0.7;
}
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-next
  .icon,
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-prev
  .icon {
  position: relative;
}
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-next
  .icon {
  right: -2px;
}
.modal_popup--view
  .about_main-slider--single
  .swiper-controls
  .swiper-button-prev
  .icon {
  left: -2px;
}
.modal_popup--view .about_main-slider--thumbs .swiper-slide {
  cursor: pointer;
}
.modal_popup--view .about_main-info {
  position: relative;
  z-index: 50;
}
.modal_popup--view .about_main-info_product .title {
  margin-bottom: 15px;
}
.modal_popup--view .about_main-info_rating {
  margin-bottom: 20px;
  line-height: 1;
}
.modal_popup--view .about_main-info_rating .stars {
  height: 20px;
  margin-right: 15px;
}
.modal_popup--view .about_main-info_rating .stars_star {
  margin-right: 10px;
  font-size: 20px;
}
.modal_popup--view .about_main-info_rating .stars_star:last-of-type {
  margin-right: 0;
}
.modal_popup--view .about_main-info_rating .reviews-amount {
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}
.modal_popup--view .about_main-info_buy .qty {
  margin-top: 0;
}
.modal_popup--view .about_main-info_buy .btn {
  margin-left: 30px;
}
.modal_popup--view .about_main-info_description {
  margin-bottom: 30px;
  color: #214842;
}
.modal_popup--view .about_main-info_price {
  display: inline-block;
  color: #214842;
  font-family: NunitoSans, sans-serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 20px;
}
.modal_popup--view .about_main-info_action .action_link {
  background: #fff;
  -webkit-box-shadow: 1px 2px 15px rgba(33, 72, 66, 0.07);
  box-shadow: 1px 2px 15px rgba(33, 72, 66, 0.07);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #efc368;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 15px;
}
.modal_popup--view .about_main-info_action .action_link:last-of-type {
  margin-right: 0;
}
.modal_popup--view .about_main-info_action .action_link.active,
.modal_popup--view .about_main-info_action .action_link:hover {
  background: #efc368;
  color: #fff;
}
.modal_popup--view .about_main-info_action .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.modal_popup--view .about_main-info_block .title {
  margin-bottom: 15px;
}
.modal_popup--view .about_main-info_block .qty {
  margin-top: 0;
  margin-bottom: 30px;
}
.modal_popup--view .about_main-info_block .weight-list {
  margin-top: -10px;
  margin-bottom: 20px;
}
.modal_popup--view .about_main-info_block .weight-list .list-item {
  margin: 10px 10px 0 0;
}
.modal_popup--view .about_main-info_block .weight-list .list-item:last-of-type {
  margin: 10px 0 0;
}
.modal_popup--view .about_main-info_block [type="radio"] {
  position: absolute;
  left: -9999px;
}
.modal_popup--view .about_main-info_block [type="radio"] + label {
  border: 1px solid #9ebca6;
  border-radius: 100px;
  padding: 10px 15px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.modal_popup--view .about_main-info_block [type="radio"]:checked + label {
  border-color: #258f67;
  background: #258f67;
  color: #fff;
}
.modal_popup--view .about_main .btn--underline {
  margin-top: 30px;
  display: inline-block;
}
.modal_popup--search .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal_popup--search .form .btn,
.modal_popup--search .form .field {
  width: 100%;
  height: 48px;
}
.modal_popup--search .form .field {
  border: 1px solid #c8c8c8;
  border-radius: 24px;
  padding: 10px 120px 10px 20px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}
.modal_popup--search .form .field::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--search .form .field::-moz-placeholder {
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--search .form .field:-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--search .form .field::-ms-input-placeholder {
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--search .form .field::placeholder {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal_popup--search .form .field:focus {
  border-color: #214842;
}
.modal_popup--search .form .field:focus::-webkit-input-placeholder {
  opacity: 0;
}
.modal_popup--search .form .field:focus::-moz-placeholder {
  opacity: 0;
}
.modal_popup--search .form .field:focus:-ms-input-placeholder {
  opacity: 0;
}
.modal_popup--search .form .field:focus::-ms-input-placeholder {
  opacity: 0;
}
.modal_popup--search .form .field:focus::placeholder {
  opacity: 0;
}
.modal_popup--compare {
  text-align: center;
}
.modal_popup--compare .title {
  margin-bottom: 15px;
}
.modal_popup--compare .content_media {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 146px;
}
.modal_popup--compare .content_main-price {
  margin: 15px 0;
  color: #214842;
  font-size: 20px;
  line-height: 1.3;
  font-family: NunitoSans, sans-serif;
  font-weight: 800;
}
.alert_popup {
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  box-shadow: 0 0 15px rgba(37, 143, 103, 0.1);
  border-radius: 16px;
  min-width: 280px;
  max-width: 360px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  position: relative;
}
.alert_popup-close {
  font-size: 18px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  position: absolute;
  top: 15px;
  right: 15px;
}
.alert_popup-close:focus,
.alert_popup-close:hover {
  color: #258f67;
}
@media screen and (min-width: 575.98px) {
  .modal_popup--view .about_main-info_block {
    margin-bottom: 30px;
  }
  .modal_popup--view .about_main-info_block .title {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .modal_popup--view .about_main-info_block .weight-list {
    margin: 0;
  }
  .modal_popup--view .about_main-info_block .weight-list .list-item {
    margin: 0 20px 0 0;
  }
  .modal_popup--view
    .about_main-info_block
    .weight-list
    .list-item:last-of-type {
    margin-top: 0;
  }
  .modal_popup--view .about_main-info_block .qty {
    margin: 0;
  }
  .modal_popup--view .about_main-info_rating .reviews-amount {
    margin-top: 0;
    margin-left: 20px;
  }
  .modal_popup--view .about_main-info_price {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .modal_popup--view .about_main-info_action {
    margin-top: 40px;
  }
  .modal_popup--view .about_main-info_action .action_link {
    margin-top: 0;
    margin-right: 30px;
  }
  .modal_popup--view .about_main-info_action .btn {
    margin-right: 30px;
  }
  .modal_popup--search .form {
    position: relative;
  }
  .modal_popup--search .form .field {
    padding: 10px 120px 10px 20px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin-bottom: 0;
  }
  .modal_popup--search .form .btn {
    width: unset !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .modal_popup--compare {
    text-align: left;
  }
  .modal_popup--compare .content_media {
    margin-bottom: 0;
  }
  .modal_popup--compare .content_main {
    margin-left: 15px;
  }
}
@media screen and (min-width: 767.98px) {
  .modal_popup--view .about_main-slider--single {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 991.98px) {
  .modal_popup {
    padding: 40px;
  }
  .modal_popup-close {
    top: 30px;
    right: 30px;
    font-size: 30px;
  }
  .modal_popup--view .about_main-slider {
    max-width: 430px;
    margin-right: 40px;
    margin-bottom: 0;
  }
  .modal_popup--view .about_main-slider--single {
    margin-bottom: 30px;
  }
  .modal_popup--view .about_main-info_rating .reviews-amount {
    margin-top: 0;
    margin-left: 20px;
  }
  .modal_popup--view .about_main-info_price {
    margin-bottom: 0;
  }
  .modal_popup--view .about_main-info_action .action_link {
    margin-top: 0;
  }
  .modal_popup--view .about_main-info_action .btn {
    margin-right: 30px;
  }
  .modal_popup--view .about_main-info .btn--underline {
    margin-top: 40px;
  }
  .modal_popup--compare {
    min-width: 660px;
  }
  .modal_popup--compare .content_main {
    margin-left: 30px;
  }
  .modal_popup--compare .content_main-price {
    margin: 30px 0;
    font-size: 22px;
    line-height: 1.1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.cartOffcanvas {
  min-width: 320px;
  max-width: 890px;
  padding: 30px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #258f67 #fff;
}
.cartOffcanvas::-webkit-scrollbar {
  width: 5px;
}
.cartOffcanvas::-webkit-scrollbar-track {
  background: #fff;
}
.cartOffcanvas::-webkit-scrollbar-thumb {
  background-color: #258f67;
  border-radius: 20px;
  border: 0 solid #fff;
}
.cartOffcanvas_header {
  margin-bottom: 30px;
}
.cartOffcanvas_header-close {
  color: #c6c6c6;
  font-size: 30px;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.cartOffcanvas_header-close:focus,
.cartOffcanvas_header-close:hover {
  color: #214842;
}
.cartOffcanvas_body-list_item {
  margin-bottom: 20px;
}
.cartOffcanvas_body-list_item:last-of-type {
  margin-bottom: 0;
}
.cartOffcanvas_body-list_item .media {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
}
.cartOffcanvas_body-list_item .main_price,
.cartOffcanvas_body-list_item .main_title {
  font-family: NunitoSans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  width: 100%;
}
.cartOffcanvas_body-list_item .main_title {
  color: #214842;
}
.cartOffcanvas_body-list_item .main_price {
  color: #258f67;
  margin-top: 5px;
}
.cartOffcanvas_body-list_item .main .btn--underline {
  color: #9ebca6;
}
.cartOffcanvas_body-list_item .main .btn--underline:after {
  background: #9ebca6;
}
.cartOffcanvas_body-total {
  font-family: NunitoSans, sans-serif;
  font-weight: 800;
  color: #214842;
  margin-top: 40px;
  font-size: 24px;
  line-height: 1.1;
}
.cartOffcanvas_body-btn {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 575.98px) {
  .cartOffcanvas_body-list_item .media {
    margin-bottom: 0;
    margin-right: 30px;
    width: 100px;
    height: 100px;
  }
  .cartOffcanvas_body-list_item .media img {
    height: 100%;
  }
  .cartOffcanvas_body-list_item .main {
    width: calc(100% - 130px);
  }
  .cartOffcanvas_body-list_item .main_price,
  .cartOffcanvas_body-list_item .main_title {
    width: unset;
  }
  .cartOffcanvas_body-list_item .main_title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .cartOffcanvas_body-list_item .main_title-product {
    display: inline-block;
    max-width: 170px;
  }
  .cartOffcanvas_body-list_item .main_price {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 50%;
  }
  .cartOffcanvas_body-list_item .main .qty {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0;
  }
  .cartOffcanvas_body-list_item .main .btn--underline {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 10px;
  }
  .cartOffcanvas_body-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 991.98px) {
  .cartOffcanvas {
    padding: 40px;
    width: 100%;
  }
  .cartOffcanvas_header {
    margin-bottom: 40px;
  }
  .cartOffcanvas_body-list_item .media {
    width: 115px;
    height: 115px;
  }
  .cartOffcanvas_body-list_item .main {
    width: calc(100% - 145px);
  }
  .cartOffcanvas_body-list_item .main_price,
  .cartOffcanvas_body-list_item .main_title {
    font-size: 22px;
    line-height: 1.1;
  }
  .cartOffcanvas_body-list_item .main_title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
  }
  .cartOffcanvas_body-list_item .main_title-product {
    max-width: 200px;
  }
  .cartOffcanvas_body-list_item .main_price {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: unset;
  }
  .cartOffcanvas_body-list_item .main .qty {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .cartOffcanvas_body-list_item .main .btn--underline {
    margin-top: 0;
  }
  .cartOffcanvas_body-total {
    font-size: 28px;
    margin-top: 60px;
  }
}
.header {
  background-color: transparent;
  position: absolute;
  width: 100%;
}
/*# sourceMappingURL=../sourcemaps/index.css.map */
.page{
  margin-top: 100px;
}

/*==============================
    Services
==============================*/

.services {
    padding: 100px 0;
}

.services .container {
    display: flex;
    flex-direction: column;
}

.services .row {
    row-gap: 30px;
}

.services_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.services_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.services_card-img {
    overflow: hidden;
}

.services_card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.services_card:hover .services_card-img img {
    transform: scale(1.08);
}

.services_card-content {
    padding: 25px;
}

.services_card-title {
    margin: 0 0 15px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.services_card-title a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.services_card-title a:hover {
    /* color: #c59d5f; */
}

.services_card-text {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/*==============================
    Pagination
==============================*/

.pagination {
    margin-top: 60px;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

.pagination-page {
    list-style: none;
}

.pagination-page_link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.pagination-page_link:hover,
.pagination-page_link[data-current="true"] {
    background: #c59d5f;
    /* color: #fff; */
}

/*==============================
    Responsive
==============================*/

@media (max-width: 991px) {
    .services_card-img img {
        height: 240px;
    }

    .services_card-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .services {
        padding: 70px 0;
    }

    .services_card-img img {
        height: 220px;
    }

    .pagination {
        margin-top: 40px;
    }
}

  /*=========================
    services PAGE
==========================*/

.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services_cover {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.services_cover img {
    width: 100%;
    display: block;
    height: 550px;
    object-fit: cover;
}

.container--narrow {
    max-width: 900px;
}

/*=========================
    Meta
==========================*/

.services_info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.metadata {
    gap: 25px;
}

.metadata_item {
    color: #777;
    font-size: 15px;
    text-decoration: none;
}

.metadata_item i {
    margin-right: 8px;
    color: #c59d5f;
}

/*=========================
    Social
==========================*/

.socials {
    gap: 12px;
    padding: 0;
    margin: 0;
}

.socials .list-item {
    list-style: none;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.socials a:hover {
    /* background: #c59d5f; */
    color: #fff;
}

/*=========================
    Typography
==========================*/

.services_header {
    font-size: 34px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #222;
}

.services_text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/*=========================
    Lists
==========================*/

.services_list {
    margin: 25px 0;
    padding-left: 20px;
}

.services_list-item {
    margin-bottom: 12px;
    color: #555;
}

/*=========================
    Quote
==========================*/

.services_quote {
    background: #fff;
    border-left: 5px solid #c59d5f;
    padding: 35px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.services_quote-text {
    font-size: 22px;
    font-style: italic;
    color: #333;
    display: block;
    line-height: 1.8;
}

.services_quote-author {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: #c59d5f;
}

/*=========================
    Highlight
==========================*/

.services_highlight {
    margin: 50px 0;
}

.services_highlight-wrapper {
    gap: 35px;
}

.services_highlight-media {
    max-width: 350px;
}

.services_highlight-media_img {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.services_highlight-media img {
    width: 100%;
    transition: .4s;
}

.services_highlight-media img:hover {
    transform: scale(1.05);
}

.services_highlight-media_capture {
    color: #777;
    font-size: 14px;
    text-align: center;
}

/*=========================
    Tags
==========================*/

.services_tags {
    margin-top: 50px;
    gap: 20px;
}

.services_tags-list {
    gap: 10px;
    padding: 0;
    margin: 0;
}

.services_tags .list-item {
    list-style: none;
}

.services_tags a {
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff;
    color: #444;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: .3s;
}

.services_tags a:hover {
    /* background: #c59d5f; */
    color: #fff;
}

/*=========================
    Author
==========================*/

.services_footer-author {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    gap: 25px;
    margin: 70px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.services_footer-author_avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.bio {
    color: #666;
    line-height: 1.8;
}

/*=========================
    services Navigation
==========================*/

.services_footer-nav {
    margin-bottom: 70px;
}

.services-title {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}



/*=========================
    Comments
==========================*/

.comments {
    padding: 80px 0;
}

.comments_item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.comments .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.panel_name {
    font-weight: 700;
}

.panel_timestamp {
    color: #888;
    font-size: 14px;
}

.panel_btn {
    /* color: #c59d5f; */
    text-decoration: none;
}

.comments .text {
    margin-top: 15px;
    color: #666;
    line-height: 1.8;
}

/*=========================
    Reply Form
==========================*/

.reply {
    padding: 80px 0;
}

.reply_form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.field-wrapper {
    width: 48%;
    margin-bottom: 25px;
}

.field-wrapper.fluid {
    width: 100%;
}

.label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.field {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    outline: none;
    transition: .3s;
}

.field:focus {
    /* border-color: #c59d5f; */
}

.field--message {
    min-height: 180px;
    resize: vertical;
}

.reply .btn {
    /* background: #c59d5f; */
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    transition: .3s;
}

.reply .btn:hover {
    background: #222;
}

/*=========================
    Responsive
==========================*/

@media (max-width:991px){

    .services_cover img{
        height:350px;
    }

    .services_header{
        font-size:28px;
    }

    .services_highlight-wrapper{
        flex-direction:column;
    }

    .services_highlight-media{
        max-width:100%;
    }
}

@media (max-width:768px){

    .field-wrapper{
        width:100%;
    }

    .services_footer-author{
        text-align:center;
    }

    .comments_item{
        flex-direction:column;
        text-align:center;
    }

    .services_cover img{
        height:250px;
    }

    .services_header{
        font-size:24px;
    }
}

.header_user-search {
    position: relative;
}
.header_user-search_results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 999;
    display: none;
}
.header_user-search_results:not(:empty) {
    display: block;
}
.ehl-social-list {
    list-style: none;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.ehl-social-item {
    display: flex;
}

.ehl-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: #d4a24e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s ease;
}

.ehl-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a24e, #b8842f);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.35s ease;
    z-index: 1;
}

.ehl-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 162, 78, 0.45);
}

.ehl-social-link:hover::before {
    transform: scale(1);
}

.ehl-social-icon {
    position: relative;
    z-index: 2;
    font-size: 17px;
    color: inherit;
    transition: color 0.3s ease;
}

.ehl-social-link:hover .ehl-social-icon {
    color: #fff;
}/* الزرار الرئيسي */
.ehl-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    transition: all 0.25s ease;
}

.ehl-lang-btn:hover,
.ehl-lang-btn.show {
    border-color: #1d8b8a;
    color: #1d8b8a;
}

.ehl-lang-btn::after {
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.ehl-lang-btn.show::after,
.ehl-lang-btn[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.ehl-lang-code {
    letter-spacing: 0.5px;
}

/* العلم */
.ehl-flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* القائمة المنسدلة */
.ehl-lang-menu {
    min-width: 160px;
    border: none;
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: ehlFadeIn 0.2s ease;
}

@keyframes ehlFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ehl-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.ehl-lang-item:hover {
    background: #f0f8f8;
    color: #1d8b8a;
}

/* Responsive: على الموبايل يبقى العرض أضيق */
@media (max-width: 768px) {
    .ehl-lang-btn {
        padding: 6px 10px;
    }
    .ehl-lang-menu {
        min-width: 140px;
    }
    
}
