@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: normal;
}

h1 {
  font-size: 54px;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 54px;
  position: relative;
  margin: revert;
  line-height: normal;
}
h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #2CA48D;
  top: calc(50% - 7px);
  left: -25px;
}
h2.text-light::before {
  background-color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  h2 {
    padding-left: 30px;
  }
  h2::before {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
  h2::before {
    top: 10px;
  }
}

.deco-title {
  position: relative;
}
.deco-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #2CA48D;
  top: calc(50% - 7px);
  left: -25px;
}
@media screen and (max-width: 1000px) {
  .deco-title {
    padding-left: 30px !important;
  }
  .deco-title::before {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .deco-title::before {
    top: 50%;
    transform: translateY(-50%);
  }
}

h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 19px;
  }
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

iframe {
  border: 0;
}

.wpcf7-response-output {
  display: none;
}

form .flex.justify-center p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.wpcf7-spinner {
  position: absolute;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
  display: block;
}

figure {
  margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

textarea, input, select {
  outline: none;
  -webkit-appearance: none;
  font-family: "Proxima Nova", sans-serif;
}
textarea:focus, input:focus, select:focus {
  outline: none;
}

textarea {
  resize: none;
  width: 100%;
}

button, input {
  outline: none;
  border: none;
  font-family: "Proxima Nova", sans-serif;
}
button:active, button:focus, input:active, input:focus {
  outline: none;
}

a {
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #2CA48D;
  text-decoration: none;
}
a:hover, a:focus {
  opacity: 1;
}

ul {
  padding-left: 20px;
}

b {
  font-weight: 600;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-shrink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-wrap: nowrap;
}

.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media screen and (max-width: 1200px) {
  .desktop-sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 1000px) {
  .tablet-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .mobile-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 360px) {
  .mobile-xs-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .mobile-reverse {
    flex-direction: column-reverse;
  }
}

.relative {
  position: relative;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-end;
}

.hide {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .hide-desktop-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 360px) {
  .hide-mobile-xs {
    display: none !important;
  }
}

.show {
  display: block !important;
}

@media screen and (min-width: 1200px) {
  .show-desktop {
    display: block !important;
  }
}

@media screen and (max-width: 1200px) {
  .show-desktop-sm {
    display: block !important;
  }
}

@media screen and (max-width: 1000px) {
  .show-tablet {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .show-mobile {
    display: block !important;
  }
}

@media screen and (max-width: 360px) {
  .show-mobile-xs {
    display: block !important;
  }
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.visible {
  visibility: unset;
  opacity: 1;
}

.gap-xxs {
  gap: 5px;
}

.gap-xs {
  gap: 10px;
}

.gap-sm {
  gap: 20px;
}

.gap-md {
  gap: 30px;
}

.gap-lg {
  gap: 40px;
}

.gap-xl {
  gap: 50px;
}

.gap-xxl {
  gap: 70px;
}

.gap-3xl {
  gap: 100px;
}

@media screen and (max-width: 768px) {
  .mobile-gap-0 {
    gap: 0;
  }
}

.text-xs {
  font-size: 14px;
  font-weight: 400;
}

.text-sm {
  font-size: 17px;
  font-weight: 400;
}

.text-md {
  font-size: 22px;
}

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

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

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

.text-light {
  color: #FFFFFF;
}

.text-dark {
  color: #1D1D1D;
}

.text-primary {
  color: #2CA48D;
}

.text-error {
  color: #FF4134;
}

.text-thin {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  font-weight: 900;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

.text-transparent {
  opacity: 0.5;
}

.object-cover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.object-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bg {
  background: no-repeat center/cover;
}
.bg-light {
  background-color: #f9f9f9;
  color: #1D1D1D;
}
.bg-dark {
  background-color: #1F2126;
  color: #FFFFFF;
}
.bg-white {
  background: #FFFFFF;
  color: #1D1D1D;
}

.width-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.width-50 {
  width: 50%;
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .mobile-width-100 {
    width: 100%;
  }
}

.height-100 {
  height: 100%;
}

.padding-0 {
  padding: 0;
}

.padding-xs {
  padding: 10px;
}

.padding-sm {
  padding: 20px;
}

.padding-md {
  padding: 30px;
}

.padding-lg {
  padding: 40px;
}

.padding-xl {
  padding: 50px;
}

.padding-xxl {
  padding: 70px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-xxs {
  padding-left: 5px;
}

.pl-xs {
  padding-left: 10px;
}

.pl-sm {
  padding-left: 20px;
}

.pl-md {
  padding-left: 30px;
}

.pl-lg {
  padding-left: 40px;
}

.pl-xl {
  padding-left: 50px;
}

.pl-xxl {
  padding-left: 70px;
}

.pt-xxs {
  padding-top: 5px;
}

.pt-xs {
  padding-top: 10px;
}

.pt-sm {
  padding-top: 20px;
}

.pt-md {
  padding-top: 30px;
}

.pt-lg {
  padding-top: 40px;
}

.pt-xl {
  padding-top: 50px;
}

.pt-xxl {
  padding-top: 70px;
}

.pb-xxs {
  padding-bottom: 5px;
}

.pb-xs {
  padding-bottom: 10px;
}

.pb-sm {
  padding-bottom: 20px;
}

.pb-md {
  padding-bottom: 30px;
}

.pb-lg {
  padding-bottom: 40px;
}

.pb-xl {
  padding-bottom: 50px;
}

.pb-xxl {
  padding-bottom: 70px;
}

.px-md {
  padding-left: 30px;
  padding-right: 30px;
}

.py-md {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-lg {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-xl {
  padding-top: 50px;
  padding-bottom: 50px;
}

.margin-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-xxs {
  margin-top: 5px;
}

.mt-xs {
  margin-top: 10px;
}

.mt-sm {
  margin-top: 20px;
}

.mt-md {
  margin-top: 30px;
}

.mt-lg {
  margin-top: 40px;
}

.mt-xl {
  margin-top: 50px;
}

.mt-xxl {
  margin-top: 70px;
}

.mt-3xl {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xxs {
  margin-bottom: 5px;
}

.mb-xs {
  margin-bottom: 10px;
}

.mb-sm {
  margin-bottom: 20px;
}

.mb-md {
  margin-bottom: 30px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mb-xl {
  margin-bottom: 50px;
}

.mb-xxl {
  margin-bottom: 70px;
}

.mb-3xl {
  margin-bottom: 100px;
}

.ml-xxs {
  margin-left: 5px;
}

.ml-xs {
  margin-left: 10px;
}

.ml-sm {
  margin-left: 20px;
}

.ml-md {
  margin-left: 30px;
}

.ml-lg {
  margin-left: 40px;
}

.ml-xl {
  margin-left: 50px;
}

.ml-xxl {
  margin-left: 70px;
}

.ml-3xl {
  margin-left: 100px;
}

.ml-auto {
  margin-left: auto;
}

.mr-xxs {
  margin-right: 5px;
}

.mr-xs {
  margin-right: 10px;
}

.mr-sm {
  margin-right: 20px;
}

.mr-md {
  margin-right: 30px;
}

.mr-lg {
  margin-right: 40px;
}

.mr-xl {
  margin-right: 50px;
}

.mr-xxl {
  margin-right: 70px;
}

.mr-3xl {
  margin-right: 100px;
}

.mr-auto {
  margin-right: auto;
}

.no-deco {
  text-decoration: none;
}

.border-radius {
  border-radius: 4px;
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .mob-order-2 {
    order: 2;
  }
}

@media screen and (max-width: 1000px) {
  .tab-order-2 {
    order: 2;
  }
}

@-webkit-keyframes ping {
  70% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes ping {
  70% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes shake {
  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes shake {
  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button),
.btn, .button:not(.cart), input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: inline-flex;
  border: none;
  text-decoration: none;
  position: relative;
  text-align: center;
  font-family: "Mulish", "Proxima Nova", sans-serif;
  transition: 0.3s;
  background-color: #F6F5F2;
  border-radius: 100px;
  color: #1D1D1D;
  font-size: 15px;
  padding: 10px 20px;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button):hover,
.btn:hover, .button:not(.cart):hover, input[type=submit]:hover {
  background-color: #2CA48D;
  color: #FFFFFF;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).outline,
.btn.outline, .button:not(.cart).outline, input[type=submit].outline {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).outline:hover,
.btn.outline:hover, .button:not(.cart).outline:hover, input[type=submit].outline:hover {
  color: #FFFFFF;
  background-color: #2CA48D;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).outline.primary,
.btn.outline.primary, .button:not(.cart).outline.primary, input[type=submit].outline.primary {
  color: #2CA48D;
  border-color: #2CA48D;
  background-color: transparent;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).primary, button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).button-primary,
.btn.primary,
.btn.button-primary, .button:not(.cart).primary, .button:not(.cart).button-primary, input[type=submit].primary, input[type=submit].button-primary {
  color: #FFFFFF;
  background-color: #2CA48D;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).secondary,
.btn.secondary, .button:not(.cart).secondary, input[type=submit].secondary {
  color: #FFFFFF;
  background-color: #FF4134;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).secondary:hover,
.btn.secondary:hover, .button:not(.cart).secondary:hover, input[type=submit].secondary:hover {
  color: #FFFFFF;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).arrow,
.btn.arrow, .button:not(.cart).arrow, input[type=submit].arrow {
  padding-right: 30px;
  position: relative;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).arrow::after,
.btn.arrow::after, .button:not(.cart).arrow::after, input[type=submit].arrow::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background: url("../../icons/chevron-right-dark.svg") no-repeat center center/contain;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).arrow:hover::after,
.btn.arrow:hover::after, .button:not(.cart).arrow:hover::after, input[type=submit].arrow:hover::after {
  background-image: url("../../icons/chevron-right-light.svg");
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).arrow.primary::after,
.btn.arrow.primary::after, .button:not(.cart).arrow.primary::after, input[type=submit].arrow.primary::after {
  background-image: url("../../icons/chevron-right-light.svg");
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).arrow.secondary::after,
.btn.arrow.secondary::after, .button:not(.cart).arrow.secondary::after, input[type=submit].arrow.secondary::after {
  background-image: url("../../icons/chevron-right-light.svg");
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).circled-arrow,
.btn.circled-arrow, .button:not(.cart).circled-arrow, input[type=submit].circled-arrow {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
button:not(.circled-arrow,
.cart,
.ds-category-appearance-btn,
.ds-module-quantity-btn,
.ocf-value,
.fancybox-button,
.ds-search-button).circled-arrow:hover,
.btn.circled-arrow:hover, .button:not(.cart).circled-arrow:hover, input[type=submit].circled-arrow:hover {
  color: inherit;
  background-color: transparent;
}

.btn-icon i {
  margin-right: 15px;
}
.btn-arrow {
  display: block;
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 20px;
  background-color: #FFFFFF;
}
.btn-arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../../icons/chevron-right-primary.svg") no-repeat center center/contain;
}
.btn-arrow.left::after {
  transform: translate(-50%, -50%) rotateY(180deg);
}
.btn-arrow.outline {
  border: 1px solid #2CA48D;
  background-color: transparent;
}
.btn-arrow.outline:hover {
  background-color: #2CA48D;
}
.btn-arrow.outline:hover::after {
  background-image: url("../../icons/chevron-right-light.svg");
}
.btn-arrow.primary {
  background-color: #2CA48D;
}
.btn-arrow.primary::after {
  background-image: url("../../icons/chevron-right-light.svg");
}

i {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: no-repeat center center/contain;
  flex-shrink: 0;
}
i svg {
  width: 100%;
  height: 100%;
}
i.phone {
  background-image: url("../../icons/phone.svg");
}
i.phone-dark {
  background-image: url("../../icons/phone-dark.svg");
}
i.mail {
  background-image: url("../../icons/mail.svg");
}
i.chat {
  background-image: url("../../icons/chat.svg");
}
i.pin {
  background-image: url("../../icons/pin.svg");
}
i.facebook {
  background-image: url("../../icons/facebook.svg");
}
i.facebook.color {
  background-image: url("../../icons/facebook-cl.svg");
}
i.instagram {
  background-image: url("../../icons/instagram.svg");
}
i.tiktok {
  background-image: url("../../icons/tiktok.svg");
}
i.telegram {
  background-image: url("../../icons/telegram.svg");
}
i.menu-dots {
  background-image: url("../../icons/menu.svg");
}
i.person {
  background-image: url("../../icons/person.svg");
}
i.box {
  background-image: url("../../icons/box.svg");
}
i.box-2 {
  background-image: url("../../icons/box_1.svg");
}
i.heart {
  background-image: url("../../icons/heart.svg");
}
i.star-full {
  background-image: url("../../icons/star-full.svg");
}
i.star-empty {
  background-image: url("../../icons/star-empty.svg");
}
i.star-half {
  background-image: url("../../icons/star-half.svg");
}
i.check {
  background-image: url("../../icons/check.svg");
}
i.auth {
  background-image: url("../../icons/user.svg");
}
i.contact-phone {
  background-image: url("../../icons/contact-phone.svg");
}
i.contact-chat {
  background-image: url("../../icons/contact-chat.svg");
}
i.contact-address {
  background-image: url("../../icons/contact-address.svg");
}
i.contact-mail {
  background-image: url("../../icons/contact-mail.svg");
}
i.contact-clock {
  background-image: url("../../icons/contact-clock.svg");
}
i.contact-tg {
  background-image: url("../../icons/social-tg.svg");
}
i.contact-wa {
  background-image: url("../../icons/social-wa.svg");
}
i.contact-vi {
  background-image: url("../../icons/social-vi.svg");
}
i.calendar {
  background-image: url("../../icons/calendar 1.svg");
}
i.mobile-wish {
  background-image: url("../../icons/mobile-wish.svg");
  width: 40px;
  height: 40px;
}
i.mobile-profile {
  background-image: url("../../icons/mobile-profile.svg");
  width: 40px;
  height: 40px;
}
i.mobile-cart {
  background-image: url("../../icons/mobile-cart.svg");
  width: 40px;
  height: 40px;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 7px;
  cursor: pointer;
  border-radius: 10px;
  background-color: #225B5C;
}
@media screen and (max-width: 1200px) {
  .menu-btn {
    display: block;
  }
}
.menu-btn span {
  height: 2px;
  width: 18px;
  background-color: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  top: 13px;
  left: 11px;
  transition: 0.2s;
}
.menu-btn span:nth-child(2) {
  top: calc(50% - 1px);
}
.menu-btn span:nth-child(3) {
  top: auto;
  bottom: 13px;
}
.menu-btn.active span {
  transform: rotate(-45deg);
  top: 19px;
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(45deg);
  bottom: 19px;
}

/*.menu {
  transition: 0.2s;

  + .overlay {
    display: none;
    transition: 0.5s;
  }

  .close {
    display: none;
    width: 22px;
    height: 22px;
    position: relative;
    margin: 30px 30px 30px auto;

    &::before, &::after {
      @include pseudo-absolute;
      width: 100%;
      height: 2px;
      background-color: $color-bg-light;
      transform: rotate(45deg);
      left: 0;
    }

    &::after {
      transform: rotate(-45deg);
    }
  }

  @include tablet {
    position: absolute;
    top: 0;
    flex-direction: column;
    background-color: $color-bg-dark;
    width: 400px;
    right: 0;
    height: 100dvh;
    z-index: 10;
    overflow: auto;
    clip-path: inset(0 0 0 100%);

    .close {
      display: block;
    }

    nav {
      width: 100%;

      ul {
        flex-direction: column;
        gap: $gap-sm;
        align-items: center;

        li {
          text-align: center;
          margin: 0;

          a {
            color: $color-text-light;
          }
        }
      }
    }

    + .overlay {
      display: block;
      clip-path: inset(0 0 0 100%);
    }

    &.active {
      clip-path: inset(0 0 0 0);

      + .overlay {
        clip-path: inset(0 0 0 0);
        position: absolute;
        display: block;
        background-color: rgba(30, 28, 30, 0.8);
        width: 100vw;
        height: 100dvh;
        right: 0;
        top: 0;
        z-index: 9;
      }
    }


  }


  @include mobile-xs {
    width: 100%;

    .close {
      margin-top: 10px;
      width: 30px;
      height: 30px;
    }
  }
}*/
.container {
  max-width: 1500px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.accordion .item {
  padding: 16px 40px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #17494A;
}
@media screen and (max-width: 768px) {
  .accordion .item {
    padding: 15px;
  }
}
.accordion .item:not(:last-child) {
  margin-bottom: 3px;
}
.accordion .item .title {
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  font-weight: 600;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .accordion .item .title {
    font-size: 16px;
  }
}
.accordion .item .title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  width: 1px;
  height: 24px;
  background-color: #1F2126;
  transition: 0.3s;
  transform-origin: center;
}
.accordion .item .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 24px;
  height: 1px;
  background-color: #1F2126;
}
.accordion .item .content {
  display: none;
  margin-top: 10px;
  font-weight: 300;
  font-size: 15px;
}
.accordion .item.active .title::after {
  transform: scale(0);
}

input[type=text], input[type=number], input[type=password], input[type=email], input[type=search], input[type=tel], input[type=url] {
  width: 100%;
  height: 46px;
  background: transparent;
  border-radius: 39px;
  padding: 12px 20px 12px;
  color: #1D1D1D;
  border: 1px solid #D0CABF;
  font-size: 15px;
  font-weight: 300;
}
input[type=text].outline, input[type=number].outline, input[type=password].outline, input[type=email].outline, input[type=search].outline, input[type=tel].outline, input[type=url].outline {
  background-color: transparent;
  border-color: #1F2126;
}
input[type=text].error, input[type=number].error, input[type=password].error, input[type=email].error, input[type=search].error, input[type=tel].error, input[type=url].error {
  border-color: #FF4134;
}
input[type=text].accent, input[type=number].accent, input[type=password].accent, input[type=email].accent, input[type=search].accent, input[type=tel].accent, input[type=url].accent {
  background-color: #f9f9f9;
}

input[type=file] {
  position: relative;
  padding-left: 50px;
  height: 20px;
  width: 200px;
}
input[type=file]::file-selector-button {
  display: none;
}
input[type=file]::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
}

textarea {
  height: 170px;
  background: transparent;
  border-radius: 8px;
  padding: 12px 40px 12px 19px;
  color: #1D1D1D;
  border: 1px solid #D0CABF;
  font-size: 15px;
  font-weight: 300;
}
textarea.outline {
  background-color: transparent;
  border-color: #1F2126;
}
textarea.error {
  border-color: #FF4134;
}

label:not(.form-check-label), .label {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
label:not(.form-check-label) input, label:not(.form-check-label) textarea, .label input, .label textarea {
  margin-top: 10px;
}

.list {
  --gap: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.loader {
  position: relative;
  width: 50px;
  height: 50px;
}
.loader::before, .loader::after {
  box-sizing: border-box;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  border-color: currentColor currentColor transparent transparent;
  animation: spin 1s ease-in-out 0s infinite;
}
.loader::after {
  animation: spin 1s ease-in-out -0.2s infinite;
}

.modal-btn * {
  pointer-events: none;
}

.modal {
  background-color: rgba(31, 33, 38, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 20;
  display: none;
}
.modal.active {
  display: flex;
}
.modal .inner {
  position: relative;
  max-width: 906px;
  width: 100%;
  height: clamp(350px, 730px, 90dvh);
  background-color: #FFFFFF;
  border-radius: 22px;
  padding: 30px;
  color: #1D1D1D;
}
.modal .inner i.question {
  width: 20px;
  height: 20px;
}
.modal .inner h3 {
  margin-top: 0;
  font-size: 30px;
}
.modal .inner input:not([type=submit]) {
  color: #1D1D1D;
}
.modal .inner .body {
  height: 100%;
  overflow: auto;
}
.modal.auth .inner {
  max-width: 420px;
  height: auto;
}
.modal#thanks .inner {
  max-width: 600px;
  height: auto;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.2;
  width: 25px;
  height: 25px;
}

.close {
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
}
.close::before, .close::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #1F2126;
  top: 50%;
  left: 50%;
}
.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

hr {
  margin: 0;
  border-top: 1px solid #E6E6E6;
}

.checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.checkbox span {
  padding-left: 35px;
  width: 100%;
  position: relative;
  display: block;
}
.checkbox span::before, .checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #1F2126;
}
.checkbox span::before {
  border-radius: 4px;
}
.checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: transparent;
  width: 9px;
  height: 4px;
  border-color: #1F2126;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  top: 6px;
  left: 5px;
  opacity: 0;
  color: #FFFFFF;
}
.checkbox.round span::before {
  border-radius: 50%;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox input:checked ~ span::after {
  opacity: 1;
}
.checkbox input:checked ~ span::before {
  background-color: #1F2126;
}
.checkbox input.error ~ span::before {
  border: 1px solid #FF4134;
}
.checkbox.light input:checked ~ span::before {
  background: #FFFFFF;
}
.checkbox.light span::before {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.checkbox.light span::after {
  border-color: #1F2126;
}

.dropdown {
  position: relative;
  z-index: 9;
}
.dropdown .title {
  position: relative;
  padding: 6px 50px 10px 37px;
  /*background-color: $color-primary;
  color: $color-text-light;*/
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
}
.dropdown .title::after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: 23px;
  width: 23px;
  height: 23px;
  -webkit-background-size: contain;
  background-size: contain;
  background: url("../../icons/chevron-down.svg") no-repeat;
  pointer-events: none;
}
.dropdown .content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  border-radius: 13px;
  padding: 30px;
  display: none;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow: auto;
}
.dropdown.active .content {
  display: block;
}
.dropdown.active .title::after {
  transform: rotate(180deg);
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 14px;
  width: 12px;
  height: 12px;
  background: url("../../icons/chevron-down.svg") no-repeat center center/contain;
  pointer-events: none;
}

select {
  width: 100%;
  padding: 10px 50px 10px 25px;
  background-color: transparent;
  border: 1px solid #2CA48D;
  border-radius: 20px;
  font-size: 15px;
}

.radio {
  cursor: pointer;
}
.radio span {
  font-weight: 300;
  font-size: 14px;
  padding: 3px 16px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #f9f9f9;
  white-space: nowrap;
}
.radio input {
  display: none;
}
.radio input:checked + span {
  background-color: #f9f9f9;
}
.radio input.error + span {
  border-color: #FF4134;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    flex-wrap: wrap;
  }
}
.breadcrumb a {
  text-decoration: none;
  color: #2CA48D;
}
.breadcrumb .ds-breadcrumb-item:first-child {
  padding: 0;
  width: auto;
  height: auto;
}
.breadcrumb .ds-breadcrumb-item:first-child > * {
  width: auto;
  height: auto;
}
.breadcrumb .ds-breadcrumb-item + .ds-breadcrumb-item::before {
  content: "|";
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .breadcrumb li {
    padding-left: 10px;
  }
}
.breadcrumb li::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.breadcrumb li:first-child {
  padding-left: 20px;
}
.breadcrumb li:first-child::before {
  display: none;
}
.breadcrumb li:last-child, .breadcrumb li:last-child a {
  color: #1D1D1D;
}
.tabs .buttons {
  display: flex;
  gap: 30px;
  overflow-x: auto;
}
.tabs .buttons [data-tab] {
  cursor: pointer;
  padding: 13px 30px;
  border-radius: 6px;
  background-color: #F2F3F4;
  white-space: nowrap;
}
.tabs .buttons [data-tab].active {
  color: #5EB63C;
  background-color: rgba(44, 164, 141, 0.1254901961);
}
.tabs [data-tab_content] {
  display: none;
}
.tabs [data-tab_content].active {
  display: block;
}

.half {
  display: flex;
  gap: 70px;
}
.half > .left, .half > .right {
  width: calc(50% - 35px);
  flex-shrink: 0;
}
.half.shrink > .left, .half.shrink > .right {
  flex-shrink: 1;
}
@media screen and (max-width: 1000px) {
  .half {
    flex-direction: column;
  }
  .half > .left, .half > .right {
    width: 100%;
  }
}

.bg-light {
  background-color: #f9f9f9;
  color: #1D1D1D;
}

.bg-dark {
  background-color: #1F2126;
  color: #FFFFFF;
}

.bg-stripe {
  background: url("../../images/bg-stripe.svg") no-repeat top right;
}

.lang {
  width: 84px;
  height: 36px;
  padding: 0;
}
.lang select {
  padding: 10px 32px 10px 25px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #f9f9f9;
  border: none;
  border-radius: 20px;
}

.select-wrapper.lang::after {
  top: 12px;
}

.modal.callback .inner {
  max-width: 600px;
  height: auto;
}
.modal.callback .inner input:not([type=submit]), .modal.callback .inner textarea {
  color: #1D1D1D;
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 700px;
}
.search-form .search-input {
  background: #17494A;
  border-radius: 100px;
  padding: 12px 40px 12px 19px;
  color: #fff;
  border: none;
  font-size: 16px;
  height: 50px;
}
.search-form .search-input::placeholder {
  color: #FFFFFF;
}
.search-form button {
  position: absolute;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  right: 20px;
  top: 15px;
}

.wishlist, .cart {
  position: relative;
}
.wishlist i, .cart i {
  width: 30px;
  height: 30px;
}
.wishlist .badge, .cart .badge {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -7px;
  right: -7px;
  border-radius: 50%;
  background-color: #ea2525;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.btn.account {
  font-size: 14px;
  text-transform: uppercase;
  padding-right: 30px;
}

aside.catalog, .aside.catalog {
  width: 345px;
  margin-right: 16px;
  position: relative;
  flex-shrink: 0;
  padding: 36px 13px 26px 14px;
  background-color: rgba(249, 249, 249, 0.5);
  height: fit-content;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
aside.catalog > .item:not(:last-child), .aside.catalog > .item:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}
aside.catalog > .item > a, .aside.catalog > .item > a {
  display: flex;
  align-items: center;
  padding: 10px 27px 10px 0;
  width: 100%;
  position: relative;
  font-size: 16px;
}
aside.catalog > .item > a:hover .name, .aside.catalog > .item > a:hover .name {
  color: #2CA48D;
}
aside.catalog > .item > a::after, .aside.catalog > .item > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 10px;
  background: url("../../icons/chevron-right-dark.svg");
  background-size: contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
aside.catalog > .item > a .icon, .aside.catalog > .item > a .icon {
  margin-right: 20px;
}
aside.catalog > .item > a .name, .aside.catalog > .item > a .name {
  color: #1D1D1D;
}
aside.catalog > .item .sub-menu, .aside.catalog > .item .sub-menu {
  display: none;
  position: absolute;
  left: 300px;
  width: 620px;
  z-index: 12;
  margin-top: -50px;
}
@media screen and (min-width: 1400px) {
  aside.catalog > .item .sub-menu, .aside.catalog > .item .sub-menu {
    width: 59vw;
  }
}
aside.catalog > .item .sub-menu .dropdown-catalog, .aside.catalog > .item .sub-menu .dropdown-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.25);
}
aside.catalog > .item .sub-menu .dropdown-catalog .item, .aside.catalog > .item .sub-menu .dropdown-catalog .item {
  display: flex;
  align-items: center;
  width: calc(50% - 15px);
}
aside.catalog > .item .sub-menu .dropdown-catalog .item:hover h3, .aside.catalog > .item .sub-menu .dropdown-catalog .item:hover h3 {
  color: #2CA48D;
}
@media screen and (min-width: 1400px) {
  aside.catalog > .item .sub-menu .dropdown-catalog .item, .aside.catalog > .item .sub-menu .dropdown-catalog .item {
    width: calc(33% - 20px);
  }
}
aside.catalog > .item .sub-menu .dropdown-catalog .item .image, .aside.catalog > .item .sub-menu .dropdown-catalog .item .image {
  width: 107px;
  height: 107px;
  border-radius: 20px;
  background-color: #d9d9d9;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 24px;
}
aside.catalog > .item .sub-menu .dropdown-catalog .item .image img, .aside.catalog > .item .sub-menu .dropdown-catalog .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
aside.catalog > .item .sub-menu .dropdown-catalog .item h3, .aside.catalog > .item .sub-menu .dropdown-catalog .item h3 {
  font-size: 18px;
  font-weight: 400;
  color: #1D1D1D;
}
aside.catalog > .item:hover .sub-menu, .aside.catalog > .item:hover .sub-menu {
  display: block;
}
@media screen and (max-width: 1000px) {
  aside.catalog > .item:hover .sub-menu, .aside.catalog > .item:hover .sub-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  aside.catalog, .aside.catalog {
    display: none;
    position: absolute;
    z-index: 11;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1254901961);
  }
}

.circled-arrow {
  padding-right: 100px;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  background: transparent;
}
.circled-arrow::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../../icons/arrow-right-circle.svg") no-repeat center center/contain;
  right: 0;
  top: 0;
  width: 95px;
  height: 68px;
}

.products-categories {
  display: flex;
  gap: 14px;
}
.products-categories .item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #1F2126;
  color: #1D1D1D;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}
.products-categories .item svg path {
  transition: 0.3s;
}
.products-categories .item:hover {
  border-color: #2CA48D;
  color: #2CA48D;
}
.products-categories .item:hover svg path:not(#no-fill) {
  fill: #2CA48D;
}
@media screen and (max-width: 1000px) {
  .products-categories {
    flex-wrap: wrap;
  }
}

.product-card {
  height: 100%;
  padding: 10px 10px 20px 10px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.031372549);
}
.product-card .image {
  height: 250px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background-color: #F6F7F6;
}
.product-card .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-card a:hover {
  text-decoration: none;
}
.product-card h3 {
  color: #1D1D1D;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.product-card .total-quantity {
  text-align: center;
  font-size: 16px;
  margin-top: auto;
}
.product-card .price {
  margin: 8px 0 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.product-card .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lab {
  position: absolute;
}
.lab.new {
  width: 50px;
  height: 50px;
  background: url("../../images/label-new.svg") no-repeat center/contain;
  top: 0;
  right: 0;
}
.lab.top {
  width: 50px;
  height: 50px;
  background: url("../../images/label-top.svg") no-repeat center/contain;
  top: -15px;
  right: 15px;
}
.lab.sale {
  width: 50px;
  height: 50px;
  background: url("../../images/label-sale.svg") no-repeat center/contain;
  top: -15px;
  right: 15px;
}

.to-cart_add {
  border-radius: 50%;
  width: 58px;
  height: 58px;
  background-color: #2CA48D;
}
.to-cart_add i {
  width: 30px;
  height: 30px;
}
.to-cart_add:hover i {
  animation: shake 0.3s;
}

.product-slider .swiper-button-next, .product-slider .swiper-button-prev {
  width: 18px;
  height: 33px;
  background: url("../../icons/chevron-right-dark.svg") no-repeat center center/contain;
}
.product-slider .swiper-button-next::after, .product-slider .swiper-button-prev::after {
  display: none;
}
.product-slider .swiper-button-prev {
  transform: rotateY(180deg);
}

.pagination {
  display: flex;
  gap: 20px;
}
.pagination .page {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #17494A;
  color: #17494A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pagination .page.current {
  background-color: #17494A;
  color: #7DE2CF;
}
.pagination .disabled {
  opacity: 0.5;
}

.rating {
  display: flex;
  gap: 2px;
}
.rating i {
  width: 15px;
  height: 15px;
}

.available {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background-color: rgba(44, 164, 141, 0.08);
  font-family: "Mulish", "Proxima Nova", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2CA48D;
  white-space: nowrap;
}
.available i {
  margin-right: 8px;
}

[data-to_favorite] {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEAE5 url("../../icons/heart-empty.svg") no-repeat center center/20px;
}

[data-to_favorite].in_favorite {
  background-image: url("../../icons/heart-full.svg");
}

.products-slider {
  padding-bottom: 100px;
}
.products-slider .swiper-slide {
  height: auto;
}
.products-slider .card-wrap {
  display: flex;
}
.products-slider .swiper-button-next, .products-slider .swiper-button-prev {
  left: 0;
  bottom: 0;
  top: auto;
  width: 100px;
  height: 72px;
  background: none;
}
.products-slider .swiper-button-next::after, .products-slider .swiper-button-prev::after {
  display: none;
}
.products-slider .swiper-button-next {
  left: 118px;
}

.quantity {
  height: 45px;
  border-radius: 100px !important;
  width: 132px;
  border: 1px solid #AAA89E;
  margin-right: 0 !important;
  background: #fff;
}
.quantity input {
  border: none;
  padding: 5px 0;
  text-align: center;
  color: #1D1D1D;
  font-size: 15px;
}
.quantity button {
  background-color: transparent;
  font-size: 20px;
}
.quantity button:hover {
  color: inherit;
}

time {
  padding: 4px 7px;
  border-radius: 4px;
  background-color: #EBEAE5;
  color: #999891;
  font-size: 12px;
  display: flex;
  align-items: center;
}
time.with-calendar {
  padding-left: 25px;
  position: relative;
}
time.with-calendar::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 7px;
  top: 4px;
  background: url("../../icons/calendar.svg") no-repeat center center/contain;
}

.rating-form {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 7px;
}
.rating-form i {
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.rating-form i:hover svg path,
.rating-form i:hover ~ i svg path, .rating-form.selected i.selected svg path {
  fill: #FFBF1C;
  fill-opacity: 1;
}
.rating-form i.selected svg path {
  fill: #FFBF1C;
  fill-opacity: 1;
}

.advantages {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  .advantages {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.advantages .item {
  width: 25%;
}
@media screen and (max-width: 1000px) {
  .advantages .item {
    width: 49%;
  }
}
.advantages .title {
  color: #1D6C5D;
  font-weight: 600;
  font-size: 70px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 1200px) {
  .advantages .title {
    font-size: 50px;
  }
}
.advantages .content {
  font-size: 24px;
  margin-top: 20px;
}

.pages {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .pages {
    flex-direction: column;
    align-items: center;
  }
}
.pages .item {
  position: relative;
  height: 335px;
  width: calc(33% - 13.3333333333px);
}
@media screen and (max-width: 1000px) {
  .pages .item {
    width: 340px;
    height: 215px;
  }
}
.pages .item .bg {
  width: 100%;
  height: 100%;
}
.pages .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.pages .item .inner {
  padding: 40px;
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
.pages .item .inner .title {
  margin-bottom: 20px;
  font-family: "Mulish", "Proxima Nova", sans-serif;
  font-size: 24px;
  color: white;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .pages .item .inner {
    padding: 20px;
    bottom: 0;
  }
}

.insta-btn, .facebook-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: url("../../icons/instagram-button.svg") no-repeat center center/contain;
  width: 277px;
  height: 60px;
  font-size: 20px;
  font-family: "Mulish", "Proxima Nova", sans-serif;
  padding-left: 50px;
}

.facebook-btn {
  background: url("../../icons/facebook-button.svg") no-repeat center center/contain;
}

#map {
  border-radius: 14px;
  overflow: hidden;
}
#map iframe {
  width: 100%;
  height: 500px;
}

ul:not(.list-unstyled, .breadcrumb) li {
  list-style: none;
  position: relative;
}
ul:not(.list-unstyled, .breadcrumb) li::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2CA48D;
  left: -14px;
  top: 7px;
}
ul:not(.list-unstyled, .breadcrumb).no-list-style li::before {
  display: none;
}

.steps {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .steps {
    flex-direction: column;
  }
  .steps + .t-center {
    justify-content: center;
  }
}
.steps .step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: sans-serif;
  max-width: 280px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .steps .step {
    padding-left: 30px;
    position: relative;
    max-width: 100%;
    align-items: center;
    padding-bottom: 30px;
  }
}
.steps .step .num {
  font-size: 100px;
  font-weight: bold;
  color: #2CA48D;
  height: 126px;
}
.steps .step .content {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.steps .step .chevron {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 50px;
}
.steps .step .chevron svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .steps .step .chevron {
    right: auto;
    top: auto;
    left: 50%;
    transform: rotate(90deg);
    bottom: 0;
  }
}

.contact-info i {
  width: 68px;
  height: 68px;
}
.contact-info i.social {
  width: 34px;
  height: 34px;
}
.contact-info a {
  color: #1D1D1D;
}

.social-links a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(29, 29, 29, 0.3);
}
.social-links a i {
  color: #8E8E8E;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .contact-info-wrap {
    flex-wrap: wrap;
  }
  .contact-info-wrap .contact-info {
    width: 49%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .contact-info-wrap .contact-info {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .drop-adv {
    justify-content: center;
    flex-wrap: wrap;
  }
  .drop-adv > div {
    max-width: 340px;
  }
}

.hover-primary {
  transition: 0.1s;
}
.hover-primary:hover {
  color: #2CA48D;
}

.swiper .controls {
  position: relative;
  height: 72px;
  margin-top: 42px;
}
.swiper .controls .swiper-pagination {
  right: 0;
  left: auto;
  width: fit-content;
  top: 50%;
  transform: translateY(-50%);
}
.swiper .controls .swiper-pagination-bullet {
  height: 2px;
  width: 47px;
  border-radius: 0;
}
.swiper .controls .swiper-pagination-bullet-active {
  background: #2CA48D !important;
  height: 3px;
}
.swiper .controls .swiper-button-prev, .swiper .controls .swiper-button-next {
  width: 96px;
  height: 73px;
  top: 0;
  transform: revert;
  margin-top: 0;
}
.swiper .controls .swiper-button-prev::before, .swiper .controls .swiper-button-next::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../icons/arrow-left-circle.svg") no-repeat center center/contain;
}
.swiper .controls .swiper-button-next {
  right: auto;
  left: 120px;
}
.swiper .controls .swiper-button-next::before {
  background: url("../../icons/arrow-right-circle.svg") no-repeat center center/contain;
}

body[data-width=medium] .container, body[data-width=medium] .container-fluid, body[data-width=medium] .container-lg, body[data-width=medium] .container-md, body[data-width=medium] .container-sm, body[data-width=medium] .container-xl {
  max-width: 1500px !important;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 30px !important;
  width: 100%;
}

.hero .main-slider .ds-slideshow-item {
  padding: 0;
}

:root {
  --ds-primary-color: #2CA48D;
  --ds-secondary-color: #FF4134;
}

#back-top {
  width: 48px;
  height: 48px;
}

.ds-cart-item .no-btn {
  background-color: transparent;
}
.ds-cart-item .no-btn:hover {
  background-color: transparent;
}

#button-cart.added svg path, #oct-popup-button-cart.added svg path, .ds-category-cart-btn.added svg path, .ds-module-cart-btn.added svg path, .ds-product-fixed-cart-btn.added svg path {
  fill: none;
}

#button-cart.added:hover:not([disabled]) svg path, #oct-popup-button-cart.added:hover:not([disabled]) svg path, .ds-category-cart-btn.added:hover:not([disabled]) svg path, .ds-module-cart-btn.added:hover:not([disabled]) svg path, .ds-product-fixed-cart-btn.added:hover:not([disabled]) svg path {
  fill: none;
}

.button.button-primary svg path {
  fill: none;
}

#button-cart.added:hover:not([disabled]), #oct-popup-button-cart.added:hover:not([disabled]), .ds-category-cart-btn.added:hover:not([disabled]), .ds-module-cart-btn.added:hover:not([disabled]), .ds-product-fixed-cart-btn.added:hover:not([disabled]) {
  background-color: #2CA48D;
}

a.btn, a.button {
  text-decoration: none;
}
a.btn:hover, a.button:hover {
  color: inherit;
}

.modal-header .btn-close:hover svg path {
  fill: white;
}

.ds-subcategories-item {
  max-width: 100% !important;
  flex: 0 0 auto !important;
}

#column-left, #column-left-grid, #column-right, #column-right-grid {
  z-index: 1;
}

.content-block, .ocf-description {
  color: #1D1D1D;
}

.ocf-content .ocf-close-mobile {
  padding: 10px;
  margin-left: auto;
}
.ocf-content .ocf-checkbox {
  font-size: 15px;
}
.ocf-content .ocf-selected .ocf-value-input::before {
  background-color: #2CA48D;
  border-color: #2CA48D;
}
.ocf-content .ocf-value, .ocf-content .ocf-value:active, .ocf-content .ocf-value:focus, .ocf-content .ocf-value:visited, .ocf-content .ocf-value:hover {
  font-size: 15px;
}
.ocf-content .ocf-btn {
  padding: 10px;
}
.ocf-content .ocf-footer {
  padding: 0 !important;
}
.ocf-content .ocf-form-control:focus, .ocf-content input.ocf-form-control:focus, .ocf-content textarea.ocf-form-control:focus {
  border-color: #2CA48D;
}
.ocf-content .ocf-noUi-handle {
  width: 14px;
  height: 14px;
  right: -5px;
  top: 2px;
}
.ocf-content .ocf-theme-light-block .ocf-search-btn-static, .ocf-content .ocf-theme-light-block .ocf-search-btn-popover, .ocf-content .ocf-theme-light-block .ocf-search-btn-static.ocf-disabled, .ocf-content .ocf-theme-light-block .ocf-search-btn-popover.ocf-disabled, .ocf-content .ocf-noUi-connect:before, .ocf-content .ocf-noUi-handle {
  background-color: #2CA48D !important;
}
.ocf-content .ocf-between {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.ocf-theme-light .ocf-search-btn-static, .ocf-theme-light .ocf-search-btn-popover, .ocf-theme-light .ocf-search-btn-static.ocf-disabled, .ocf-theme-light .ocf-search-btn-popover.ocf-disabled {
  background-color: #2CA48D !important;
  text-decoration: none;
}

.ocf-btn-label {
  margin: 0 5px;
}

.ocf-content, .content-block.recommended {
  padding: 20px;
}

.content-block.recommended h4 {
  padding-bottom: 17px;
  border-bottom: 1px solid #E6E6E6;
}

.product-grid .content-block:before {
  border-radius: 20px;
}

body.active {
  position: fixed;
  overflow: hidden;
}

.ds-category-products .ds-module-cart .button-text {
  display: block !important;
}

.table {
  border: none !important;
}
.table > * {
  border: none !important;
}

.ds-module-rating-star {
  width: 25px;
  height: 25px;
}

.review-form .ds-module-rating-star {
  width: 40px;
  height: 40px;
}

.review-item .ds-module-rating-star {
  width: 15px;
  height: 15px;
}

.ds-information h1, .ds-information h2, .ds-information h3, .ds-information h4, .ds-information h5, .ds-information h6, .ds-information p, .ds-information ul, .ds-information ol, .contacts h1, .contacts h2, .contacts h3, .contacts h4, .contacts h5, .contacts h6, .contacts p, .contacts ul, .contacts ol {
  margin: revert;
  padding: revert;
  line-height: normal;
}

.static {
  padding: 0;
  margin: 0;
}

.sticky-top {
  z-index: 10;
}

.ds-header-user-logged {
  background: #225B5C;
  width: max-content;
  gap: 10px;
  padding: 0;
}

.product-card .button svg {
  margin-right: 0;
}

.not-found h1, .not-found p {
  margin: revert;
}
.not-found h1 img, .not-found p img {
  width: 100%;
}
.not-found .half > .left, .not-found .half > .right {
  flex-shrink: 1;
}

.ocf-filter-description .ocf-icon {
  filter: brightness(0) saturate(100%) invert(50%) sepia(85%) saturate(341%) hue-rotate(119deg) brightness(91%) contrast(89%) !important;
}

.drop-content h1, .drop-content p {
  margin: revert;
}

.revert-margin h1, .revert-margin h2, .revert-margin h3, .revert-margin h4, .revert-margin h5, .revert-margin h6, .revert-margin p, .revert-margin ol, .revert-margin ul {
  margin: revert;
}

#productImages .ds-module-stickers {
  z-index: 2;
}

@media (min-width: 576px) {
  .ds-product-main-buttons {
    flex-direction: column;
  }
}
@media (min-width: 660px) and (max-width: 767px) {
  .ds-product-main-buttons {
    flex-direction: row;
  }
}
body {
  padding-bottom: 0 !important;
}

@media (min-width: 1200px) {
  .ds-slideshow.menu-active {
    padding-left: 350px;
  }
}
.modal-backdrop {
  zoom: 2;
}

.ds-module-stickers {
  z-index: 1;
}
.ds-module-stickers .ds-module-sticker-image {
  max-width: 50px;
  max-height: 50px;
}
@media (max-width: 575.98px) {
  .ds-module[data-type=split] .content-block {
    padding: 0.5rem;
    flex-direction: column !important;
    position: relative;
  }
  .ds-module[data-type=split] .ds-module-sticker-images {
    position: absolute;
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
  }
  .ds-module-sticker-image img {
    width: 50px !important;
    height: 50px !important;
  }
  .ds-module-item.product-layout {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .ocf-mobile, .ocf-is-mobile {
    display: block !important;
  }
}
.ds-slideshow-items .swiper-button-next, .ds-slideshow-items .swiper-button-prev {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .ds-cart-item .no-btn {
    top: -20px;
    right: -20px;
  }
}
@media (min-width: 1200px) {
  .ds-slideshow.menu-active {
    padding-left: 350px;
  }
}
.modal-backdrop {
  zoom: 2;
}

.ds-module-stickers {
  z-index: 1;
}
.ds-module-stickers .ds-module-sticker-image {
  max-width: 50px;
  max-height: 50px;
}
@media (max-width: 575.98px) {
  .ds-module[data-type=split] .content-block {
    padding: 0.5rem;
    flex-direction: column !important;
    position: relative;
  }
  .ds-module[data-type=split] .ds-module-sticker-images {
    position: absolute;
    bottom: auto;
    left: auto;
    top: 0;
    right: 0;
  }
  .ds-module-sticker-image img {
    width: 50px !important;
    height: 50px !important;
  }
  .ds-module-item.product-layout {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .ocf-mobile, .ocf-is-mobile {
    display: block !important;
  }
}
.ds-slideshow-items .swiper-button-next, .ds-slideshow-items .swiper-button-prev {
  display: none !important;
}

.ds-product-main-content .product-description {
  width: 100%;
}
.ds-product-main-content .ds-product-main-buttons .ds-product-fast-order-button {
  margin-left: 0;
}
.product-wholesale-tooltip {
  left: 50% !important;
  transform: translateX(-50%);
}

.wholesale-row {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: normal;
}

@media screen and (max-width: 430px) {
  body {
    zoom: 0.8;
  }
}
.post, .page {
  margin: 0;
}

body, html {
  margin: 0;
  font-family: "Proxima Nova", sans-serif;
  scroll-behavior: smooth;
  width: 100%;
  background-color: #FFFFFF;
  color: #1D1D1D;
  font-size: 19px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body, html {
    font-size: 17px;
  }
}

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

.catalog-dd {
  height: 100%;
  display: flex;
}
.catalog-dd .title {
  display: flex;
  gap: 18px;
  align-items: center;
  border-radius: 0;
  padding: 10px 30px 10px 10px;
  background-color: #2CA48D;
  color: #FFFFFF;
  cursor: pointer;
  width: 100%;
}
.catalog-dd .title::after {
  display: none;
}
.catalog-dd .title .icon-wrap {
  border-radius: 20px;
  background-color: #4CB29E;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .catalog-dd .title {
    border-radius: 10px;
    gap: 7px;
    padding: 8px;
  }
}
.catalog-dd .dropdown-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  width: 1000px;
}
.catalog-dd .dropdown-catalog .item {
  display: flex;
  align-items: center;
  width: calc(33% - 20px);
}
.catalog-dd .dropdown-catalog .item .image {
  width: 107px;
  height: 107px;
  border-radius: 20px;
  background-color: #d9d9d9;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 24px;
}
.catalog-dd .dropdown-catalog .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-dd .dropdown-catalog .item h3 {
  font-size: 18px;
  font-weight: 400;
  color: #1D1D1D;
}

#header {
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 13;
}
#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header ul li::before {
  display: none;
}
#header a:not(.btn) {
  color: #1D1D1D;
}
#header a:not(.btn):hover {
  color: #2CA48D;
}
#header .desktop .top {
  height: 115px;
}
#header .desktop .bottom {
  height: 72px;
  background-color: #225B5C;
}
#header .desktop .bottom .container {
  height: 100%;
}
#header .desktop.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}
#header .desktop .logo {
  max-height: 67px;
}
#header .desktop nav ul {
  display: flex;
}
#header .desktop nav ul li {
  position: relative;
  white-space: nowrap;
  list-style: none;
}
#header .desktop nav ul li a {
  padding: 0 10px;
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}
#header .desktop nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 8px;
  background-color: rgba(46, 104, 93, 0.4);
  right: 0;
}
#header .desktop nav ul li:first-child a {
  padding-left: 0;
}
#header .desktop nav ul li:last-child a {
  padding-right: 0;
}
#header .desktop nav ul li:last-child a::after {
  display: none;
}
@media screen and (max-width: 1000px) {
  #header .desktop nav a {
    color: #FFFFFF;
  }
}
#header .desktop .header-contact > div:first-child {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
#header .desktop .header-contact > div:first-child a {
  font-size: 18px;
}
#header .desktop .header-contact > div:first-child i {
  margin-right: 10px;
}
#header .desktop .header-contact .social-icons {
  display: flex;
  gap: 7px;
}
#header .desktop .header-contact .social-icons a {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .desktop .header-contact .social-icons i {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1200px) {
  #header .desktop {
    display: none;
  }
}
#header .mobile {
  display: none;
}
#header .mobile .top {
  padding-top: 10px;
  padding-bottom: 10px;
}
#header .mobile .top .cart i {
  width: 40px;
  height: 40px;
}
#header .mobile .bottom {
  padding-bottom: 10px;
}
#header .mobile .bottom .catalog-dd {
  width: 165px;
}
#header .mobile .bottom .catalog-dd .title {
  font-size: 12px;
  padding-right: 8px;
  text-transform: uppercase;
}
#header .mobile .bottom .catalog-dd .icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
#header .mobile .bottom .catalog-dd .icon-wrap i {
  width: 19px;
  height: 19px;
}
#header .mobile .bottom input {
  background-color: #E7ECEC;
  color: #1D1D1D;
}
#header .mobile .bottom input::placeholder {
  color: #1D1D1D;
}
@media screen and (max-width: 1200px) {
  #header .mobile {
    display: block;
  }
}
#header .mobile nav {
  position: absolute;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  z-index: 12;
  left: 0;
  border-bottom: 2px ridge rgba(0, 0, 0, 0.1254901961);
  transition: 0.2s;
  clip-path: inset(0 0 100% 0);
}
#header .mobile nav li {
  margin-bottom: 20px;
  text-align: center;
}
#header .mobile nav.active {
  clip-path: inset(0 0 0 0);
}
#header aside.catalog, #header .aside.catalog {
  display: none;
}
#header aside.catalog.active, #header .aside.catalog.active {
  display: block;
}

#footer {
  margin-top: 70px;
  padding: 60px 0 50px;
  background-color: #1F2126;
  color: #FFFFFF;
}
#footer .social-icons {
  display: flex;
  gap: 10px;
}
#footer .social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
#footer .social-icons a i {
  width: 17px;
  height: 17px;
}
#footer .social-icons a[data-social="fab fa-facebook-f"]:hover {
  background: #0866FF !important;
}
#footer .social-icons a[data-social="fab fa-viber"]:hover {
  background: #583FBB !important;
}
#footer .social-icons a[data-social="fab fa-telegram"]:hover {
  background: #3390EC !important;
}
#footer .social-icons a[data-social="fab fa-instagram"]:hover {
  background: #833ab4 !important;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045) !important;
}
#footer .copy {
  border-top: 1px solid #3B3B3B;
  padding: 22px 0 51px;
  font-size: 15px;
  margin-top: 40px;
  color: #fff;
}
#footer a {
  color: #FFFFFF;
}
#footer ul {
  padding: 0;
  margin: 0;
}
#footer ul li {
  list-style: none;
}
#footer ul li:before {
  display: none;
}
#footer .inner > div:first-child {
  max-width: 227px;
}
#footer .inner > div:first-child p {
  margin: 24px 0 65px;
}
#footer .inner > div:nth-child(3) ul {
  max-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
#footer .inner > div:nth-child(3) ul li {
  margin: 0 20px 0 0;
}
#footer .inner > div:last-child > div {
  margin-bottom: 20px;
}
#footer .inner > div:last-child > div.flex i {
  margin-right: 10px;
}
#footer .inner > div:last-child .social-icons {
  margin-top: 50px;
}
#footer .inner > div:last-child .social-icons i {
  filter: invert(1);
}
#footer .inner ul li {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 1000px) {
  #footer .inner > div:nth-child(2), #footer .inner > div:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #footer .inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  #footer .inner {
    flex-wrap: wrap;
  }
  #footer .inner > div:nth-child(3) ul {
    max-height: unset;
  }
}

@media screen and (max-width: 1200px) {
  .hero .main-slider {
    width: 100%;
  }
}
.hero .main-slider .inner {
  min-height: 534px;
  width: 100%;
}
.hero .main-slider .inner .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  overflow: hidden;
  border-radius: 7px;
}
.hero .main-slider .inner .bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: right;
}
.hero .main-slider .inner .content {
  position: relative;
  z-index: 1;
  padding: 90px 0 115px 60px;
  color: #FFFFFF;
  max-width: 540px;
}
.hero .main-slider .inner .content .top-title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero .main-slider .inner .content .top-title {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.hero .main-slider .inner .content .main-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 63px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero .main-slider .inner .content .main-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
  }
}
.hero .main-slider .inner .content .text {
  font-size: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .hero .main-slider .inner .content .text {
    font-size: 16px;
  }
}
.hero .main-slider .inner .content .link .btn {
  height: 50px;
  border-radius: 30px;
  padding-right: 50px;
}
.hero .main-slider .inner .content .link .btn::after {
  right: 25px;
  width: 10px;
  height: 15px;
}
.hero .main-slider .swiper-pagination {
  position: absolute;
  bottom: 45px;
  left: 60px !important;
  text-align: left;
  padding: 0;
  background: none;
  transform: unset;
}
.hero .main-slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background: transparent !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 1;
}
.hero .main-slider .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .main-slider .swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid #fff;
}
.hero .main-slider .swiper-pagination .swiper-pagination-bullet-active::before {
  background-color: #fff;
}
.hero .main-slider .cats .item {
  background-color: #F6F5F2;
  padding: 35px 20px 35px 35px;
  border-radius: 10px;
}
.hero .main-slider .cats .item .image {
  background-color: #2CA48D;
  border-radius: 10px;
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.hero .main-slider .cats .item .image img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.hero .main-slider .cats .item .title {
  font-size: 20px;
  color: #1D1D1D;
}
.hero .main-slider .cats .item:hover .image {
  background-color: #FF4134;
}
@media screen and (max-width: 1000px) {
  .hero .main-slider .inner {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
  }
  .hero .main-slider .inner .content .top-title, .hero .main-slider .inner .content .main-title, .hero .main-slider .inner .content .text {
    text-shadow: 0 0 10px black;
  }
  .hero .main-slider .cats {
    flex-direction: column;
  }
}

.categories {
  padding-bottom: 63px;
  padding-top: 30px;
}
.categories .item {
  position: relative;
  height: 228px;
  border-radius: 20px;
  overflow: hidden;
  width: calc(25% - 15px);
}
@media screen and (max-width: 1200px) {
  .categories .item {
    width: calc(50% - 10px);
  }
}
.categories .item .image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.categories .item .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.categories .item .name {
  position: absolute;
  top: 145px;
  left: 28px;
  color: #FFFFFF;
  font-size: 22px;
  padding-right: 28px;
  transition: 0.3s;
  z-index: 3;
}
.categories .item::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
}
.categories .item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, #2CA48D 0%, transparent 100%);
  z-index: 2;
  transition: 0.3s;
  opacity: 0;
}
.categories .item .btn-arrow {
  z-index: 3;
  top: 100%;
  left: 28px;
  transition: 0.3s;
}
.categories .item:hover .name {
  text-decoration: none;
}
.categories .item:hover .btn-arrow {
  top: 165px;
}
.categories .item:hover .name {
  top: 40px;
}
@media screen and (max-width: 768px) {
  .categories .item:hover .name {
    top: 115px;
  }
}
.categories .item:hover::after {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .categories {
    margin-bottom: 0;
  }
  .categories .item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .categories .item {
    width: 100%;
  }
}

.products {
  padding-bottom: 85px;
}
.products .products {
  gap: 20px;
}
.products .products .card-wrap {
  width: 272px;
}
@media screen and (max-width: 768px) {
  .products .products {
    gap: 10px;
  }
  .products .products .card-wrap {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 360px) {
  .products .products .card-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .products .tablet-column {
    gap: 30px;
  }
}
.products .filters {
  align-items: start;
}

.card-wrap {
  height: 100%;
  padding-top: 15px;
}

.dropshipping {
  padding-bottom: 60px;
}
.dropshipping .bg {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.dropshipping .bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: left;
}
.dropshipping h2 {
  margin-top: 0;
  margin-bottom: 28px;
}
.dropshipping .content {
  padding-top: 98px;
  padding-left: 96px;
  max-width: 710px;
  width: 100%;
  height: 540px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .dropshipping .content {
    padding-left: 30px;
  }
}
.dropshipping .content p {
  color: #FFFFFF;
}
.dropshipping .content .btn {
  margin-top: 60px;
  height: 50px;
  border-radius: 30px;
  padding-left: 30px;
  padding-right: 50px;
  color: #2CA48D;
}
.dropshipping .content .btn::after {
  right: 25px;
  width: 10px;
  height: 15px;
  background-image: url("../../icons/chevron-right-primary.svg");
}
.dropshipping .content .btn:hover {
  color: #FFFFFF;
}
.dropshipping .content .btn:hover::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(212deg) brightness(117%) contrast(101%);
}

.thematic .item {
  height: 100%;
}
.thematic .item:hover .title {
  transform: translateY(-10px);
}
.thematic .inner {
  position: relative;
  height: 100%;
}
.thematic .title {
  position: absolute;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 20px;
  background-color: rgba(44, 50, 50, 0.67);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 20px;
  color: #FFFFFF;
  font-size: 24px;
}
.thematic .image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.thematic .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .thematic .image {
    height: 340px;
  }
  .thematic .image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top right;
  }
}

.about {
  padding-top: 75px;
  padding-bottom: 105px;
}

section.catalog {
  padding-bottom: 200px;
}

.catalog-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.catalog-list .catalog-item {
  width: calc(25% - 22.5px);
}
@media screen and (max-width: 1200px) {
  .catalog-list .catalog-item {
    width: calc(33% - 20px);
  }
}
@media screen and (max-width: 1000px) {
  .catalog-list .catalog-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .catalog-list .catalog-item {
    width: 100%;
  }
}

.catalog-item .title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1D1D1D;
  transition: color 0s;
  width: fit-content;
}
.catalog-item .title:hover {
  color: #2CA48D;
}
.catalog-item .name {
  font-size: 24px;
  font-weight: 600;
}
.catalog-item .image {
  flex-shrink: 0;
  width: 73px;
  height: 73px;
}
.catalog-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-item .blank {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background-color: #428679;
}
.catalog-item .desc {
  font-size: 16px;
  margin: 20px 0;
}
.catalog-item ul {
  margin: 0;
  padding: 0;
}
.catalog-item ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.catalog-item ul li a {
  color: #1D1D1D;
  transition: color 0s;
}
.catalog-item ul li a:hover {
  color: #2CA48D;
}
.catalog-item ul li:last-child {
  margin-bottom: 0;
}
.catalog-item ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #2CA48D;
  border-radius: 50%;
  top: 6px;
  left: 0;
}

.products aside {
  width: 330px;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .products aside {
    display: none;
  }
}
.products aside .ocf-content {
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
}
.products aside .recommended {
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
}
@media screen and (max-width: 1000px) {
  .products aside .recommended {
    display: none;
  }
}
.products aside .recommended h3 {
  margin-top: 0;
}
.products aside .recommended .list {
  flex-direction: column;
  gap: 0;
}
.products aside .recommended .item {
  margin-bottom: 10px;
  color: #1D1D1D;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #F5F5F5;
  display: flex;
  gap: 10px;
}
.products aside .recommended .item span {
  display: block;
}
.products aside .recommended .item .image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.products aside .recommended .item .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.products aside .recommended .item .title {
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.products aside .recommended .item .price {
  font-size: 16px;
  font-weight: 600;
}

.products-list .filters span {
  font-size: 15px;
  font-weight: 600;
}
.products-list .filters select {
  width: 210px;
}
.products-list .filters select[name=limit] {
  width: 110px;
}

#product-page .card-wrap {
  width: calc(25% - 15px);
}
@media screen and (max-width: 1200px) {
  #product-page .card-wrap {
    width: calc(50% - 10px);
  }
}

.se0 {
  padding: 80px 0;
}
.se0 .image {
  border-radius: 20px;
  overflow: hidden;
}
.se0 .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.se0 p {
  font-size: 20px;
  font-weight: 300;
}

.product-slider {
  position: relative;
  display: flex;
  width: 100%;
}
.product-slider .thumbs {
  width: 80px;
  margin: 0 35px 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .product-slider .thumbs {
    display: none;
  }
}
.product-slider .main {
  height: 600px;
}
@media screen and (max-width: 768px) {
  .product-slider .main {
    height: auto;
  }
}

section.product {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.product {
    padding-bottom: 0;
  }
}
section.product .table {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
}
section.product .table .th {
  flex-shrink: 0;
}
section.product .table .td {
  flex-shrink: 0;
  width: 36%;
}
section.product .table .line {
  width: 100%;
  border-bottom: 1px dashed #E3E3E4;
}
section.product h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  section.product h1 {
    font-size: 24px;
    line-height: unset;
    display: none;
  }
}
section.product .product-slider {
  width: 50%;
  margin-right: 50px;
  position: relative;
  height: 600px;
}
@media screen and (max-width: 1000px) {
  section.product .product-slider {
    width: 100%;
    margin: 0 0 30px;
  }
}
section.product .product-slider .lab {
  width: 75px;
  height: 75px;
  right: 30px;
  top: -11px;
  z-index: 2;
}
section.product .product-slider .main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.product .product-slider .main .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
section.product .product-slider .thumbs .swiper-slide {
  height: 80px;
}
section.product .product-slider .thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  section.product .product-slider {
    margin-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  section.product .product-slider {
    width: 100%;
  }
}
section.product .product-description {
  position: relative;
}
section.product .product-description .rating + span {
  font-size: 14px;
  color: rgba(56, 59, 75, 0.7);
  text-decoration: underline;
  margin-left: 5px;
}
section.product .product-description .code {
  color: rgba(56, 59, 75, 0.7);
  padding: 8px 20px;
  background-color: #F6F5F2;
  border-radius: 100px;
  font-size: 12px;
}
section.product .product-description .prices .old {
  font-size: 15px;
  color: #1D1D1D;
  text-decoration: line-through;
}
section.product .product-description .prices .new {
  color: #FF4134;
  font-size: 30px;
  font-weight: 700;
}
section.product .product-description .opt {
  padding-left: 30px;
  position: relative;
  color: #345952;
  font-size: 15px;
}
section.product .product-description .opt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 17px;
  background: url("../../icons/box_1.svg") no-repeat center/contain;
}
section.product .product-description .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #F4F4F4;
  border-radius: 10px;
}
section.product .product-description .description {
  border-radius: 20px;
  background-color: #F6F5F2;
  padding: 20px 35px;
  max-width: 515px;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  section.product .product-description .description {
    max-width: 100%;
  }
}
section.product .product-description .description .td {
  width: 50px;
  font-weight: 600;
}

.swiper-slide-thumb-active {
  border: 1px solid #2CA48D;
  border-radius: 21px;
  overflow: hidden;
}

section.product-info {
  padding: 50px 0 50px;
}
@media screen and (max-width: 1000px) {
  section.product-info .half {
    gap: 30px;
  }
  section.product-info .half .review-form {
    padding: 0;
  }
}
section.product-info h3 {
  font-size: 40px;
  margin: revert;
}
@media screen and (max-width: 768px) {
  section.product-info h3 {
    font-size: 24px;
  }
}
section.product-info p {
  margin: revert;
}
section.product-info .table {
  font-size: 16px;
}
section.product-info .table .left {
  width: 35%;
  background-color: #EBEAE5;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 25px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  section.product-info .table .left {
    width: 50%;
  }
}
section.product-info .table .left .td {
  border-bottom: 1px dashed #fff;
}
section.product-info .table .right {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  padding: 25px;
}
section.product-info .table .right .td {
  border-bottom: 1px dashed #D8D8D8;
}
section.product-info .table .td {
  padding: 15px;
}
section.product-info .table .td:last-child {
  border-bottom: none;
}
section.product-info .rating-wrap .value {
  font-size: 24px;
  font-weight: 700;
  color: #428679;
}
section.product-info .rating-wrap .rating {
  gap: 3px;
}
section.product-info .rating-wrap .rating i {
  width: 25px;
  height: 25px;
}
section.product-info .review-item {
  padding: 23px;
  border-radius: 20px;
  border: 1px solid #EBEAE5;
}
section.product-info .reviews-count {
  font-size: 20px;
  font-weight: 300;
}
section.product-info .reviews-slider {
  width: 100%;
}
@media screen and (max-width: 360px) {
  section.product-info .reviews-slider {
    margin-top: 40px;
  }
}
section.product-info .review-form-preview {
  align-items: center;
  margin-bottom: 10px;
}
section.product-info .review-form-preview .image {
  border-radius: 21px;
  overflow: hidden;
  background-color: #fff;
  width: 83px;
  height: 83px;
  flex-shrink: 0;
}
section.product-info .review-form-preview .image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
section.product-info .fieldset {
  display: flex;
  margin-bottom: 25px;
}
section.product-info .fieldset .l {
  width: 100px;
  margin-top: 10px;
  flex-shrink: 0;
}
section.product-info .fieldset .r {
  width: 100%;
}
@media screen and (max-width: 360px) {
  section.product-info .fieldset {
    flex-direction: column;
    gap: 10px;
  }
}
section.product-info .review-form {
  padding: 40px 50px 50px;
}
@media screen and (max-width: 768px) {
  section.product-info .review-form {
    padding: 40px 24px;
  }
}
section.product-info .review-form h3 {
  font-weight: 600;
  margin: 0 0 20px;
}
section.product-info .review-form #button-review {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
section.product-info .review-form #button-review:hover {
  color: inherit;
  background-color: transparent;
}

.auth {
  display: flex;
  align-items: center;
  gap: 20px;
}
.auth .login {
  border: 1px solid #005DE4;
  border-radius: 4px;
  color: #428679;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 20px;
  background-color: transparent;
}
.auth .login:hover {
  background-color: transparent;
}
.auth .login i {
  width: 12px;
  height: 14px;
  margin-right: 5px;
}
.auth-google {
  width: 40px;
  height: 40px;
  background: url("../../icons/google.svg") no-repeat center/contain;
}
.auth-facebook {
  width: 40px;
  height: 40px;
  background: url("../../icons/facebook_3.svg") no-repeat center/contain;
}

section.instagram {
  margin: 70px 0;
}
section.instagram .inner {
  height: 222px;
  background: url("../../images/instagram-bg.png") no-repeat center/cover;
  border-radius: 20px;
  overflow: hidden;
  padding-right: 50px;
}
section.instagram .inner h2 {
  color: white;
  font-size: 50px;
  margin: 0;
}
section.instagram .inner p {
  color: white;
  font-size: 30px;
  margin: 10px 0 0;
}
@media screen and (max-width: 1000px) {
  section.instagram .inner {
    flex-direction: column;
    align-items: start;
    padding: 70px 40px;
    height: auto;
  }
  section.instagram .inner .btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  section.instagram .inner h2 {
    font-size: 28px;
    padding-left: 0 !important;
  }
  section.instagram .inner h2::before {
    display: none;
  }
  section.instagram .inner p {
    font-size: 16px;
  }
  section.instagram .inner .pl-xxl {
    padding-left: 0;
  }
}
@media screen and (max-width: 360px) {
  section.instagram .inner .btns {
    width: 100%;
  }
  section.instagram .inner .btns a {
    width: 100%;
  }
}

section.contacts .form-wrapper {
  border-radius: 30px;
  background-color: rgba(235, 234, 229, 0.4);
  padding: 60px;
}
@media screen and (max-width: 768px) {
  section.contacts .form-wrapper {
    padding: 40px 25px;
  }
}
section.contacts .form-wrapper h3 {
  margin: 0 0 10px;
}

.reviews-item {
  position: relative;
  margin-bottom: 100px;
}
.reviews-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  background: url("../../icons/quote 1.svg") no-repeat center/contain;
}
.reviews-item p {
  font-size: 20px;
  font-weight: 300;
}
.reviews-item cite {
  font-style: normal;
  color: #225B5C;
  font-size: 20px;
}

.wishlist .card-wrap {
  width: calc(20% - 16px);
}
@media screen and (max-width: 1200px) {
  .wishlist .card-wrap {
    width: calc(25% - 15px);
  }
}
@media screen and (max-width: 1000px) {
  .wishlist .card-wrap {
    width: calc(33% - 13.3333333333px);
  }
}
@media screen and (max-width: 768px) {
  .wishlist .card-wrap {
    width: calc(50% - 10px);
  }
}

.blog-list .item {
  width: calc(33% - 13.3333333333px);
}
.blog-list .item article {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .blog-list .item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .blog-list .item {
    width: 100%;
  }
}
.blog header figure {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  max-height: 600px;
}
.blog header figure img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.blog header figure .time {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #225B5C;
  position: absolute;
  top: 14px;
  right: 14px;
}
.blog header figure time {
  background-color: transparent;
  font-size: 14px;
  font-weight: 300;
  color: white;
  text-align: center;
}
.blog header h3 {
  margin: 25px 0 15px;
  color: #1D1D1D;
  font-size: 24px;
  font-weight: 600;
}
.blog p {
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
}
.blog img {
  width: 100%;
}
.blog footer {
  color: #1D1D1D;
}

.blog-item aside {
  width: 250px;
  margin-top: 50px;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .blog-item aside {
    width: 350px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-item aside {
    width: 460px;
  }
}
@media screen and (max-width: 1000px) {
  .blog-item aside {
    display: none;
  }
}
.blog-item aside .item {
  display: block;
  margin-bottom: 30px;
}
.blog-item ul {
  margin: 30px 0;
}
.blog-item ul li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}
.blog-item p {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 300;
}

.advs .item {
  width: calc(50% - 20px);
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .advs .item {
    width: 100%;
  }
}

.drop-form {
  color: #FFFFFF;
  padding: 60px 100px;
  background: #2CA48D url("../../images/drop-form-bg.jpg") no-repeat left center/cover;
  border-radius: 30px;
  overflow: hidden;
}
.drop-form input, .drop-form select {
  background-color: #fff;
  border-color: #fff;
}
@media screen and (max-width: 768px) {
  .drop-form {
    padding: 40px 24px;
  }
}

.cart .table .thead {
  display: flex;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  align-items: end;
}
.cart .table .thead > div {
  flex-shrink: 0;
}
.cart .table .thead > div:not(:first-child) {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 1200px) {
  .cart .table .thead > div:not(:first-child) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cart .table .thead .image {
  width: 101px;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .cart .table .thead {
    display: none;
  }
}
.cart .table .item {
  background-color: #F6F5F3;
  border-radius: 14px;
  padding: 17px;
  display: flex;
  margin-bottom: 3px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cart .table .item {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .cart .table .item {
    font-size: 15px;
    flex-wrap: wrap;
  }
}
.cart .table .item > div {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .cart .table .item > div {
    border: none !important;
  }
}
.cart .table .item > div:not(:first-child) {
  padding-left: 24px;
  padding-right: 24px;
  border-left: 1px solid rgba(31, 33, 38, 0.1);
}
@media screen and (max-width: 1200px) {
  .cart .table .item > div:not(:first-child) {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cart .table .item .image {
  width: 84px;
  height: 84px;
  margin-right: 17px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}
.cart .table .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .cart .table .item .image {
    width: 70px;
    height: 70px;
  }
}
.cart .table .name {
  width: 100%;
  flex-shrink: 1 !important;
}
.cart .table .name a {
  color: #1D1D1D;
}
@media screen and (max-width: 1000px) {
  .cart .table .name {
    width: 70%;
    font-weight: 600;
  }
}
.cart .table .price {
  width: 190px;
}
@media screen and (max-width: 1200px) {
  .cart .table .price {
    width: 150px;
  }
}
@media screen and (max-width: 1000px) {
  .cart .table .price {
    display: none !important;
  }
}
.cart .table .amounts {
  width: 181px;
}
.cart .table .total {
  width: 181px;
}
@media screen and (max-width: 1200px) {
  .cart .table .total {
    width: 150px;
  }
}
.cart .table .remove {
  width: 69px;
}
@media screen and (max-width: 1200px) {
  .cart .table .remove {
    width: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .cart .table .remove {
    position: absolute;
    top: 9px;
    right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .cart .table .image, .cart .table .name {
    margin-bottom: 20px;
  }
  .cart .table .total {
    font-weight: 600;
    font-size: 16px;
    color: #FF4134;
  }
}
.cart [name=coupon] {
  width: 260px;
}
.cart .cart-total {
  padding: 50px;
  background-color: rgba(246, 245, 243, 0.6);
  border-radius: 14px;
}
@media screen and (max-width: 1000px) {
  .cart .cart-total {
    padding: 0;
    background-color: unset;
  }
}
.cart .cart-total .line {
  width: 100%;
  border-bottom: 1px dashed #E1E0E5;
}
.cart .cart-total .cart-text {
  flex-shrink: 0;
}
.cart .cart-total .sum {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
}
.cart .table + .tablet-column {
  align-items: start;
}

section.checkout .content-block {
  padding: 0;
  border-radius: 15px;
  background-color: #FDFCFC;
  overflow: hidden;
  margin-bottom: 30px;
}
section.checkout .content-block .heading {
  padding: 30px 40px 20px;
  background-color: #F5F4F1;
  margin-bottom: 0;
}
section.checkout .content-block h3 {
  margin: 0;
}
section.checkout .content-block .content {
  padding: 35px;
}
section.checkout .ds-cart-column {
  border-radius: 15px;
  background-color: #faf9f8;
  overflow: hidden;
  width: 560px;
  padding: 40px;
}

.home-html h3 {
  font-size: 30px;
}
.home-html .icon {
  flex-shrink: 0;
}

@media screen and (max-width: 1000px) {
  section.about {
    padding-top: 0;
  }
}
section.about .img-with-logo {
  position: relative;
}
section.about .img-with-logo > img {
  border-radius: 30px;
  max-width: 80%;
}
section.about .img-with-logo .logo {
  width: 58%;
  height: 51%;
  border-radius: 20px;
  background-color: #2CA48D;
  position: absolute;
  right: 0;
  top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.about .img-with-logo .logo img {
  width: 150px;
  height: 150px;
}

.hero .main-slider .pages .item {
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}
.hero .main-slider .pages .item .bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.hero .main-slider .pages .item .inner {
  min-height: auto;
  bottom: 0;
}

.drop-hero {
  background: url("../../images/drop-img-1.svg") no-repeat right center/contain;
  min-height: 400px;
  background-size: 50%;
}

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