@charset "UTF-8";
main {
  padding: 20px 50px;
  background: #f5f6f6;
}
main .fullscreen_popup {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6431372549);
}
main .fullscreen_popup .close {
  width: 30px;
  height: 30px;
  top: 15px;
  right: 15px;
}
main .fullscreen_popup .close::after,
main .fullscreen_popup .close::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #5a5a5a;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  left: calc(50% - 10px);
}
main .fullscreen_popup .close::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
main .fullscreen_popup .popup-fullscreen_content {
  min-width: 560px;
  min-height: 315px;
  width: 50%;
  aspect-ratio: 560/315;
  border-radius: 24px;
  overflow: hidden;
}
main .stars {
  font-size: 1.5em;
  letter-spacing: 6px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ffb904), color-stop(55%, #ffb904), color-stop(0, #e4e4e4), to(#e4e4e4));
  background: linear-gradient(90deg, #ffb904 0, #ffb904 55%, #e4e4e4 0, #e4e4e4 100%);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
main h2 {
  font-weight: 700;
  font-size: 2em;
}
main .slider_cards-button-prev,
main .slider_cards-button-next {
  width: 40px;
  height: 40px;
  top: 50%;
  right: -20px;
  border-radius: 50%;
  background: #e4e4e4 url("../img/svg/arrow-blue.svg");
  background-size: 80%;
  background-position: center;
  z-index: 3;
}
main .slider_cards-button-prev {
  right: auto;
  left: -20px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
main .swiper {
  width: 100%;
}
main .card_wrapper {
  font-size: 16px;
  background: none;
  width: 310px;
}
main .card_wrapper .card {
  background: none;
  border: none;
  overflow: hidden;
}
main .card_wrapper .card .card-top {
  position: relative;
  padding: 15px;
  background: white;
  border-radius: 1.5em 1.5em 1.5em 0;
  position: relative;
  z-index: 2;
}
main .card_wrapper .card .card-top .img_wrapper {
  height: 240px;
}
main .card_wrapper .card .card-top .img_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .card_wrapper .card .card-top a {
  text-decoration: none;
  color: #101a33;
}
main .card_wrapper .card .card-top p {
  height: 4.7em;
  font-size: 1.1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Количество отображаемых строк */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
main .card_wrapper .card .favorite-wrapper {
  width: 30px;
  height: 30px;
  z-index: 2;
  right: 15px;
  top: 15px;
  background: url("../img/svg/heart-dark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
main .card_wrapper .card .favorite-wrapper .favorite {
  cursor: pointer;
}
main .card_wrapper .card .card-bottom .content_wrapper {
  position: relative;
  z-index: 1;
}
main .card_wrapper .card .card-bottom .content_wrapper .bottom-content {
  padding: 15px;
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  z-index: 2;
  border-radius: 0 0 1.5em 1.5em;
}
main .card_wrapper .card .card-bottom .content_wrapper .bottom-content span:nth-child(1) {
  font-size: 1.3em;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}
main .card_wrapper .card .card-bottom .content_wrapper .bottom-content span:nth-child(2) {
  font-size: 0.75em;
  color: #7c7c7c;
}
main .card_wrapper .card .card-bottom .content_wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 40px;
  height: 40px;
  z-index: -1;
  background-color: white;
}
main .card_wrapper .card .card-bottom .card-btn {
  position: relative;
  z-index: 2;
  padding: 20px 10px 20px 20px;
  border-radius: 1.5em;
  background-color: #f5f6f6;
}
main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper {
  background-color: #101a33;
  width: 50px;
  height: 45px;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus {
  display: none;
  position: relative;
  width: 15px;
  height: 15px;
}
main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus::after,
main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: white;
}
main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .card_wrapper .card .card-bottom .card-btn:hover .btn-ico_wrapper {
  width: 100px;
}
main .card_wrapper .card .card-bottom .card-btn:hover .plus {
  display: block;
}
main .card_wrapper .card .card-bottom .card-btn:hover .plus::after,
main .card_wrapper .card .card-bottom .card-btn:hover .plus::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: white;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load:not(.btn-ico_wrapper-added) {
  width: 100px;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load:not(.btn-ico_wrapper-added) .plus {
  display: block;
  border: solid 3px #ddd;
  border-left: solid 3px transparent;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  -webkit-animation-name: spin;
          animation-name: spin; /* Применяем анимацию вращения */
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /* Период вращения */
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* Если не указать, то сделает только одно вращение */
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; /* Для того, чтобы вращение было равномерным */
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load:not(.btn-ico_wrapper-added) .plus::after,
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load:not(.btn-ico_wrapper-added) .plus::before {
  display: none;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added {
  width: 100px;
  background-color: #4dae4b;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus {
  width: 25px;
  height: 25px;
  display: block;
  background: url("../img/svg/check_mark-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation-name: swapIcon;
          animation-name: swapIcon; /* Применяем анимацию вращения */
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /* Период вращения */
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1; /* Если не указать, то сделает только одно вращение */
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus::after,
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus::before {
  display: none;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-error {
  width: 100px;
  background-color: #d8212e;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-error .plus {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-error .plus::after,
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-error .plus::before {
  content: "";
  top: -10%;
  left: 50%;
  position: absolute;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: white;
}
main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-error .plus::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .card_wrapper .card-favorite .card-top .favorite-wrapper {
  background-image: url("../img/svg/heart-favorite.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes swapIcon {
  0% {
    background-image: url("../img/svg/check_mark-white.svg");
  }
  80% {
    background-image: url("../img/svg/check_mark-white.svg");
  }
  100% {
    background-image: url("../img/svg/arrow-back-white.svg");
  }
}
@keyframes swapIcon {
  0% {
    background-image: url("../img/svg/check_mark-white.svg");
  }
  80% {
    background-image: url("../img/svg/check_mark-white.svg");
  }
  100% {
    background-image: url("../img/svg/arrow-back-white.svg");
  }
}
@media (max-width: 992px) {
  main .card_wrapper {
    aspect-ratio: 171/234 !important;
    font-size: 10px;
    width: 100%;
    max-width: 200px;
  }
  main .card_wrapper .card {
    width: 100%;
  }
  main .card_wrapper .card .card-top {
    padding: 10px;
    padding-top: 15px;
  }
  main .card_wrapper .card .card-top .img_wrapper {
    height: 108px;
  }
  main .card_wrapper .card .favorite-wrapper {
    width: 20px;
    height: 20px;
    z-index: 2;
    right: 10px;
    top: 10px;
    background: url("../img/svg/heart-dark.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  main .card_wrapper .card .card-bottom .content_wrapper .content {
    padding: 0;
    padding-left: 15px;
  }
  main .card_wrapper .card .card-bottom .card-btn {
    padding: 8px;
  }
  main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper {
    width: 33px;
    height: 31px;
  }
  main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper img {
    height: 70%;
  }
  main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus {
    width: 10px;
    height: 10px;
  }
  main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus::after,
  main .card_wrapper .card .card-bottom .card-btn .btn-ico_wrapper .plus::before {
    width: 2px;
  }
  main .card_wrapper .card .card-bottom .card-btn:hover .btn-ico_wrapper {
    width: 66px;
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load {
    width: 33px;
    height: 31px;
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load .plus {
    display: block;
    border: solid 3px #ddd;
    border-left: solid 3px transparent;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    -webkit-animation-name: spin;
            animation-name: spin; /* Применяем анимацию вращения */
    -webkit-animation-duration: 1s;
            animation-duration: 1s; /* Период вращения */
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; /* Если не указать, то сделает только одно вращение */
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear; /* Для того, чтобы вращение было равномерным */
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load .plus::after,
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-load .plus::before {
    display: none;
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added {
    width: 33px;
    height: 31px;
    background-color: #4dae4b;
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus {
    width: 17px;
    height: 17px;
    display: block;
    background: url("../img/svg/check_mark-white.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus::after,
  main .card_wrapper .card .card-bottom .card-btn-active .btn-ico_wrapper-added .plus::before {
    display: none;
  }
}
@media (max-width: 770px) {
  main .card_wrapper {
    font-size: 8px;
    width: 100%;
    max-width: 200px;
  }
  main .card_wrapper .card {
    width: 100%;
  }
  main .card_wrapper .card .card-top {
    padding: 10px;
    padding-top: 15px;
  }
  main .card_wrapper .card .card-top .img_wrapper {
    height: 108px;
  }
}
@media (max-width: 576px) {
  main .card_wrapper {
    font-size: 12px;
    aspect-ratio: 171/280 !important;
  }
}
@media (max-width: 370px) {
  main .card_wrapper .card-top {
    padding: 5px !important;
    padding-top: 10px !important;
  }
  main .card_wrapper .card-top p {
    font-size: 0.875em;
  }
  main .card_wrapper .bottom-content {
    padding: 5px !important;
    padding-right: 10px !important;
  }
  main .card_wrapper .bottom-content .stars {
    display: block;
    width: 100% !important;
  }
  main .card_wrapper .bottom-content .price {
    font-size: 0.8em;
  }
}
main .grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  grid-gap: 20px;
}
@media (max-width: 1200px) {
  main .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 992px) {
  main .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(171px, 1fr));
    grid-gap: 10px;
    justify-items: center;
  }
}
@media (max-width: 576px) {
  main .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    justify-items: center;
  }
}
main .nav_bottom-mob {
  z-index: 9999;
  background: white;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 -1px 10px 0px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0 -1px 10px 0px rgba(0, 0, 0, 0.1411764706);
}
main .nav_bottom-mob .sub-nav-block {
  border-bottom: solid #c5c5c5 0.5px;
}
main .nav_bottom-mob .sub-nav-block .standard-blue-btn {
  background: #101a33;
  color: white;
  border-radius: 30px;
  font-size: 1.3em;
  font-weight: 600;
}
main .nav_bottom-mob .sub-nav-block .standard-blue-btn:active {
  -webkit-box-shadow: 0 0 0px 2px #0d6efd, inset 0 0 0 100px rgba(13, 109, 253, 0.1411764706);
          box-shadow: 0 0 0px 2px #0d6efd, inset 0 0 0 100px rgba(13, 109, 253, 0.1411764706);
}
main .nav_bottom-mob .bottom-link {
  font-size: 14px;
  font-weight: 500;
  color: #6d6d6d;
}
main .nav_bottom-mob .bottom-link .img_wrapper {
  height: 30px;
}
main .nav_bottom-mob .bottom-link .img_wrapper .ico {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .nav_bottom-mob .sendOrderBtn {
  color: white;
}
main .nav_bottom-mob .nav-bottom-btn_active {
  font-size: 14px;
  font-weight: 500;
  color: #0d6efd;
}
main .nav_bottom-mob .nav-bottom-btn_active .ico {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .cost {
  color: #7c7c7c;
}
main .cost span {
  color: #101a33;
  font-weight: 600;
  font-size: 1.5em;
}
main .slider-category-btn-wrapper {
  width: auto;
  background: none;
}
main .slider-category-btn-wrapper button {
  border: solid #101a33 1px;
  border-radius: 50px;
}
main .slider-category-btn-wrapper .active {
  background-color: #101a33;
  color: white;
}
main .main-section .main-header a {
  font-size: 1.25em;
  font-weight: 500;
  background: white;
  border-radius: 20px;
  color: #101a33;
}
main .main-section .main-header a img {
  margin-right: 0.5em;
}
main .main-section .main-header a:nth-of-type(1) {
  color: #fa0d05;
}
main .main-section .main_banner {
  height: 425px;
}
main .main-section .main_banner .banner-wrapper {
  background: url("../img/svg/banner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: clamp(24px, 21vw, 450px);
  height: 100%;
}
main .main-section .main_banner .banner-wrapper .main-logo_wrapper {
  width: 100%;
  right: 10px;
  top: 7%;
}
main .main-section .main_banner .banner-wrapper .main-logo_wrapper img {
  width: 20%;
  float: right;
  margin-right: 3%;
}
main .main-section .main_banner .banner-wrapper .inreractive-imgs {
  width: 61%;
  height: 100%;
  right: 0;
  top: 0;
}
main .main-section .main_banner .banner-wrapper .inreractive-imgs .circle {
  width: 100%;
  position: absolute;
  min-width: 22px;
  width: 2vw;
  max-width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 28%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
main .main-section .main_banner .banner-wrapper .inreractive-imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(1) {
  width: 35%;
  left: 10%;
  top: 5%;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(1) .circle {
  top: 13%;
  left: 47%;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(2) {
  width: 45%;
  right: 10%;
  top: 20%;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(2) .circle {
  top: 15%;
  right: 25%;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(3) {
  width: 25%;
  right: 40%;
  top: 40%;
}
main .main-section .main_banner .banner-wrapper .inreractive-img_wrapper:nth-child(3) .circle {
  bottom: 31%;
  left: 25%;
}
main .main-section .main_banner .banner-wrapper .main-content_wrapper {
  color: #101a33;
  top: 39%;
}
main .main-section .main_banner .banner-wrapper .main-content_wrapper h1 {
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(24px, 2.7vw, 54px);
  margin-bottom: 6%;
}
main .main-section .main_banner .banner-wrapper .main-content_wrapper .appliances {
  border: solid #101a33 1px;
  border-radius: 30px;
  padding: 5px 17px;
  font-size: clamp(12px, 1.55vw, 32px);
  margin-bottom: 6%;
  color: #101a33;
}
main .main-section .card_wrapper {
  z-index: 99;
  background: white;
  border: solid #d8d8d8 1px !important;
  border-radius: 24px;
}
main .main-section .card_wrapper .card .card-top {
  border-radius: 24px 24px 0 0 !important;
}
main .main-section .card_wrapper .card .bottom-content {
  border-radius: 0 0 0 24px !important;
}
main .main-section .card_wrapper .card .card-btn {
  background: white !important;
  border-radius: 0 0 24px 0 !important;
}
main .main-section .main-card {
  border-radius: 30px;
}
main .main-section .main-card h3 {
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 28px);
}
main .main-section .main-card p {
  font-size: clamp(14px, 1.3vw, 24px);
}
main .main-section .main-card .swiper-button-next,
main .main-section .main-card .swiper-button-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("../img/svg/arrow-blue.svg") #e4e4e4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  right: 0;
}
main .main-section .main-card .swiper-button-prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  left: auto;
  left: 0;
}
main .main-section .main-card .swiper-button-next::after,
main .main-section .main-card .swiper-button-prev::after {
  display: none;
}
main .main-section .main-card .card-grade_wrapper {
  font-size: 0.8em;
}
main .main-section .main-card .card-grade_wrapper span:nth-child(1) {
  background-image: -webkit-gradient(linear, left top, right top, from(#ffb904), color-stop(80%, #ffb904), color-stop(80%, #e4e4e4), to(#e4e4e4));
  background-image: linear-gradient(to right, #ffb904 0%, #ffb904 80%, #e4e4e4 80%, #e4e4e4 100%);
  color: transparent;
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2em;
}
main .main-section .main-card .card-prices {
  color: #808285;
}
main .main-section .main-card .card-new_price {
  color: #101a33;
  font-size: clamp(1em, 1vw, 1.5em);
  font-weight: 700;
}
main .main-section .main-card .card-old_price {
  font-size: clamp(1em, 10vw, 1.1em);
}
main .main-section .main-card .card-old_price::before {
  content: "";
  position: absolute;
  top: 45%;
  width: 100%;
  height: 1px;
  background-color: #808285;
  -webkit-transform: rotate(-9deg);
      -ms-transform: rotate(-9deg);
          transform: rotate(-9deg);
}
main .main-section .main-card .card-btn {
  width: 90px;
  height: 80px;
  z-index: 2;
  background-color: #f5f6f6;
  border-radius: 30px 0 0 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
main .main-section .main-card .card-btn:hover {
  width: 160px;
  background-color: #f5f6f6;
}
main .main-section .main-card .card-btn:hover {
  width: 160px;
  background-color: #f5f6f6;
}
main .main-section .main-card .card-btn:hover .card-btn-plus {
  display: block;
}
main .main-section .main-card .cart-btn-ico_wrapper {
  width: 80%;
  height: 80%;
  border-radius: 16px;
  background: #101a33;
}
main .main-section .main-card .card-btn-plus {
  display: none;
  width: 20px;
  height: 20px;
}
main .main-section .main-card .card-btn-plus::before,
main .main-section .main-card .card-btn-plus::after {
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background-color: white;
}
main .main-section .main-card .card-btn-plus::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .main-section .main-card .card-top {
  border-radius: 30px 30px 30px 0;
  background-color: white;
  z-index: 2;
}
main .main-section .main-card .card-bottom {
  position: relative;
  border-radius: 0 0 30px 30px;
  background-color: white;
  z-index: 1;
}
main .main-section .main-card .card-bottom * {
  position: relative;
  z-index: 2;
}
main .main-section .main-card .card-bottom::before {
  content: "";
  position: absolute;
  background-color: white;
  height: 80%;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -40%;
  right: -13%;
  z-index: -1;
}
@media (max-width: 1400px) {
  main .main-section {
    /*section main start*/
    /*=====================================*/
    /*section main end*/
  }
  main .main-section .main_banner .banner-wrapper .inreractive-imgs .inreractive-img_wrapper:nth-child(1) {
    width: 40%;
    left: 5%;
    top: 10%;
  }
  main .main-section .main_banner .banner-wrapper .inreractive-imgs .inreractive-img_wrapper:nth-child(2) {
    width: 50%;
    right: 10%;
    top: 25%;
  }
  main .main-section .main_banner .banner-wrapper .inreractive-imgs .inreractive-img_wrapper:nth-child(3) {
    width: 30%;
    right: 40%;
    top: 45%;
  }
  main .main-section .main-content_wrapper {
    color: #101a33;
    top: 38%;
  }
  main .main-section .main-content_wrapper .appliances {
    border: solid #101a33 1px;
    border-radius: 30px;
    padding: 5px 12px;
    font-size: clamp(12px, 1.5vw, 32px);
    margin-bottom: 6%;
  }
  main .main-section .main-content_wrapper h1 {
    font-size: clamp(24px, 2.8vw, 54px);
    margin-bottom: 6%;
  }
}
@media (max-width: 1200px) {
  main .main-section .main_banner {
    height: 30vw;
  }
  main .main-section .main_banner .banner-wrapper .main-content_wrapper {
    color: #101a33;
    top: 43%;
  }
  main .main-section .main_banner .banner-wrapper .main-content_wrapper .appliances {
    border: solid #101a33 1px;
    border-radius: 30px;
    padding: 5px 17px;
    font-size: clamp(12px, 1.7vw, 32px);
    margin-bottom: 6%;
  }
  main .main-section .main_banner .banner-wrapper .main-content_wrapper h1 {
    font-size: clamp(24px, 3.5vw, 54px);
    margin-bottom: 6%;
  }
}
@media (max-width: 540px) {
  main .main-section .main_banner .banner-wrapper .main-content_wrapper {
    top: 32%;
  }
  main .main-section .main_banner .banner-wrapper .main-content_wrapper .appliances {
    border: solid #cbbba1 1px;
    border-radius: 30px;
    padding: 2px 4px;
    font-size: clamp(8px, 2vw, 32px);
    margin-bottom: 6%;
  }
  main .main-section .main_banner .banner-wrapper .main-content_wrapper h1 {
    font-size: clamp(12px, 3.5vw, 54px);
    margin-bottom: 6%;
  }
}
main .stories-section .storiesSlide {
  background: none;
  width: 100px;
}
main .stories-section .story .story-border {
  width: 68px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbbba1, #101a33);
}
main .stories-section .story .story-border .img_wrapper {
  padding: 3px;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
}
main .stories-section .story .story-border .img_wrapper img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
main .categories-section .categoriesSwiper {
  width: 100%;
}
main .categories-section .categoriesSlide {
  width: 255px;
  height: 167px;
  border-radius: 20px;
  border: solid rgba(0, 0, 0, 0) 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none !important;
  cursor: pointer;
}
main .categories-section .categoriesSlide h3 {
  font-size: 1.25em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Количество отображаемых строк */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: #101a33;
}
main .categories-section .categoriesSlide .img-wrapper {
  height: 60%;
}
main .categories-section .categoriesSlide .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .categories-section .categoriesSlide:hover {
  border: solid #0d6efd 2px;
}
@media (max-width: 770px) {
  main .categories-section .categoriesSwiper {
    width: 100%;
  }
  main .categories-section .categoriesSlide {
    width: 145px;
    height: 127px;
    border-radius: 20px;
    border: solid rgba(0, 0, 0, 0) 2px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  main .categories-section .categoriesSlide .img-wrapper {
    height: 60%;
  }
  main .categories-section .categoriesSlide .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  main .categories-section .categoriesSlide:hover {
    border: solid #0d6efd 2px;
  }
}
main .popular-section h2 {
  font-weight: 700;
  font-size: 2em;
}
main .popular-section .popular-swiper-button-prev,
main .popular-section .popular-swiper-button-next {
  width: 40px;
  height: 40px;
  top: 50%;
  right: -20px;
  border-radius: 50%;
  background: #e4e4e4 url('../img/svg/arrow-blue.svg"');
  background-size: 80%;
  background-position: center;
  z-index: 3;
}
main .popular-section .popular-swiper-button-prev {
  right: auto;
  left: -20px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
main .section-advantages h2 {
  font-weight: 700;
}
main .section-advantages .advantages-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
main .section-advantages .advantages-container .advantages-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
main .section-advantages .advantages-container .advantages-col .advantages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 20px;
  border-radius: 24px;
  background: white;
}
main .section-advantages .advantages-container .advantages-col .advantages-item h4 {
  max-width: 170px;
  font-size: 1.7em;
  font-weight: 600;
}
main .section-advantages .advantages-container .advantages-col .advantages-item p {
  font-size: 1.25em;
}
main .section-advantages .advantages-container .advantages-col .advantages-item::before {
  position: absolute;
  content: "";
  top: 20px;
  right: clamp(20px, 4.2%, 41px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f4f4 url("../img/svg/arrow-link.svg");
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) {
  max-width: 310px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) .advantages-item:nth-child(1) {
  min-width: 250px;
  height: 200px;
  background: #cbbba1;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) .advantages-item:nth-child(1) h4 {
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) .advantages-item:nth-child(2) {
  height: 300px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) .advantages-item:nth-child(2) h4 {
  color: #101a33;
}
main .section-advantages .advantages-container .advantages-col:nth-child(1) .advantages-item:nth-child(2) p {
  color: #7c7c7c;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(1) {
  height: 250px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(1) h4 {
  max-width: none;
  color: #101a33;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(1) p {
  color: #7c7c7c;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(2) {
  background: #101a33;
  height: 250px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(2) h4 {
  max-width: none;
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(2) .advantages-item:nth-child(2) p {
  color: #c5c5c5;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) {
  max-width: 310px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-item:nth-child(1) {
  height: 300px;
  background: #cbbba1;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-item:nth-child(1) h4 {
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-item:nth-child(1) p {
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-item:nth-child(2) {
  height: 200px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) {
  max-width: 310px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) .advantages-item:nth-child(1) {
  height: 200px;
  background: #cbbba1;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) .advantages-item:nth-child(1) h4 {
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) .advantages-item:nth-child(2) {
  height: 300px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) .advantages-item:nth-child(2) h4 {
  color: #101a33;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(1) .advantages-item:nth-child(2) p {
  color: #7c7c7c;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(1) {
  height: 250px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(1) h4 {
  max-width: none;
  color: #101a33;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(1) p {
  color: #7c7c7c;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(2) {
  background: #101a33;
  height: 250px;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(2) h4 {
  max-width: none;
  color: white;
}
main .section-advantages .advantages-container .advantages-col:nth-child(3) .advantages-col:nth-child(2) .advantages-item:nth-child(2) p {
  color: #c5c5c5;
}
main .section-advantages .advantages-container-mob .advantages-row {
  gap: 20px;
  margin-bottom: 20px;
}
main .section-advantages .advantages-container-mob .advantages-row .advantages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 20px;
  border-radius: 24px;
  background: white;
}
main .section-advantages .advantages-container-mob .advantages-row .advantages-item h4 {
  max-width: 170px;
  font-size: 1.7em;
  font-weight: 600;
}
main .section-advantages .advantages-container-mob .advantages-row .advantages-item p {
  font-size: 1.25em;
}
main .section-advantages .advantages-container-mob .advantages-row .advantages-item::before {
  position: absolute;
  content: "";
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f4f4f4 url("../img/svg/arrow-link.svg");
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(1) .advantages-item:nth-child(1) {
  background: #cbbba1;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(1) .advantages-item:nth-child(1) h4 {
  max-width: none;
  color: white;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(1) .advantages-item:nth-child(2) h4 {
  max-width: none;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(2) .advantages-item:nth-child(1) {
  background: #101a33;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(2) .advantages-item:nth-child(1) h4 {
  max-width: none;
  color: white;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(2) .advantages-item:nth-child(1) p {
  color: #e4e4e4;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(2) .advantages-item:nth-child(2) {
  background: #cbbba1;
}
main .section-advantages .advantages-container-mob .advantages-row:nth-child(2) .advantages-item:nth-child(2) h4 {
  max-width: 200px;
  color: white;
}
@media (max-width: 1200px) {
  main .section-advantages h2 {
    font-weight: 700;
  }
  main .section-advantages .advantages-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  main .section-advantages .advantages-container .advantages-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  main .section-advantages .advantages-container .advantages-col .advantages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 20px;
    border-radius: 24px;
    background: white;
  }
  main .section-advantages .advantages-container .advantages-col .advantages-item h4 {
    max-width: 170px;
    font-size: 1.7em;
    font-weight: 600;
  }
  main .section-advantages .advantages-container .advantages-col .advantages-item p {
    font-size: 1.25em;
  }
  main .section-advantages .advantages-container .advantages-col .advantages-item::before {
    position: absolute;
    content: "";
    top: 20px;
    right: clamp(20px, 4.2%, 41px);
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 770px) {
  main .section-advantages .advantages-container-mob .advantages-row {
    gap: 20px;
    margin-bottom: 20px;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 20px;
    border-radius: 24px;
    background: white;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item h4 {
    max-width: 170px;
    font-size: 1.2em;
    font-weight: 600;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item p {
    font-size: 0.9em;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f4f4f4 url("../img/svg/arrow-link.svg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 450px) {
  main .section-advantages .advantages-container-mob .advantages-row {
    gap: 20px;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 20px;
    border-radius: 24px;
    background: white;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item h4 {
    max-width: 170px;
    font-size: 1.2em;
    font-weight: 600;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item p {
    font-size: 0.9em;
  }
  main .section-advantages .advantages-container-mob .advantages-row .advantages-item::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f4f4f4 url("../img/svg/arrow-link.svg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }
}
main .event-section {
  background: white;
  border-radius: 30px;
}
main .event-section .event-item {
  width: 22%;
}
main .event-section .event-item .img_wrapper .event-img-wrapper {
  border-radius: 24px;
  aspect-ratio: 300/200;
  overflow: hidden;
}
main .event-section .event-item .img_wrapper .event-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
main .event-section .event-item .content h3 {
  font-size: 1.5em;
  font-weight: 500;
  color: #101a33;
}
main .event-section .event-item .content a {
  padding: 5px 12px;
  border: solid #101a33 1px;
  border-radius: 30px;
  font-size: 1.25em;
  font-weight: 400;
  color: #101a33;
}
main .event-section .event-item:nth-child(1) .hole {
  width: 20%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 50%, #f4f4f4 0, #f4f4f4 22px, #fff 25px, #fff 100%);
  bottom: 0;
  right: 0;
  border-radius: 24px 0 0 0;
}
main .event-section .event-item:nth-child(1) .hole div {
  padding: 4px;
  min-width: 16px;
  width: 50%;
  background: #f4f4f4;
  border-radius: 50%;
}
main .event-section .event-item:nth-child(1) .hole div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .event-section .event-item:nth-child(1) .hole::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 0, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  right: 0;
  top: -24px;
}
main .event-section .event-item:nth-child(1) .hole::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 0, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  left: -24px;
  bottom: 0;
}
main .event-section .event-item:nth-child(2) {
  width: 25%;
  margin-right: 45px;
}
main .event-section .event-item:nth-child(2) .img_wrapper .event-img-wrapper {
  aspect-ratio: 396/386;
  height: 100%;
}
main .event-section .event-item:nth-child(2) .hole {
  width: 33%;
  aspect-ratio: 1/1;
  background: white;
  bottom: 13%;
  right: 0;
  border-radius: 24px 0 0 24px;
}
main .event-section .event-item:nth-child(2) .hole div {
  padding: 4px;
  min-width: 16px;
  width: 50%;
  border-radius: 50%;
}
main .event-section .event-item:nth-child(2) .hole div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .event-section .event-item:nth-child(2) .hole::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 0, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  right: 0;
  top: -24px;
}
main .event-section .event-item:nth-child(2) .hole::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 100%, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  right: 0;
  bottom: -24px;
}
main .event-section .event-item:nth-child(2) .content h3 {
  white-space: nowrap;
}
main .event-section .event-item:nth-child(3) .hole {
  width: 20%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 50%, #f4f4f4 0, #f4f4f4 22px, #fff 25px, #fff 100%);
  top: 0;
  right: 0;
  border-radius: 0 0 0 24px;
}
main .event-section .event-item:nth-child(3) .hole div {
  padding: 4px;
  min-width: 16px;
  width: 50%;
  background: #f4f4f4;
  border-radius: 50%;
}
main .event-section .event-item:nth-child(3) .hole div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .event-section .event-item:nth-child(3) .hole::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 100%, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  left: -24px;
  top: 0;
}
main .event-section .event-item:nth-child(3) .hole::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 100%, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  right: 0;
  bottom: -24px;
}
main .event-section .event-item:nth-child(4) .hole {
  width: 20%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 50%, #f4f4f4 0, #f4f4f4 22px, #fff 25px, #fff 100%);
  bottom: 0;
  right: 0;
  border-radius: 24px 0 0 0;
}
main .event-section .event-item:nth-child(4) .hole div {
  padding: 4px;
  min-width: 16px;
  width: 50%;
  background: #f4f4f4;
  border-radius: 50%;
}
main .event-section .event-item:nth-child(4) .hole div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .event-section .event-item:nth-child(4) .hole::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 0, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  right: 0;
  top: -24px;
}
main .event-section .event-item:nth-child(4) .hole::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 0 0, transparent 0, transparent 24px, #fff 25px, #fff 100%);
  left: -24px;
  bottom: 0;
}
main .reviews-section h2 {
  font-size: 2em;
  font-weight: 700;
  color: #101a33;
}
main .reviews-section h2 span {
  color: #cbbba1;
}
main .reviews-section .reviews-nav_swiper {
  top: 45px;
  right: 15px;
}
main .reviews-section .reviews-nav_swiper button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #101a33 url("../img/svg/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
main .reviews-section .reviews-nav_swiper button:nth-child(1) {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 30px;
}
main .reviews-section .reviews-nav_swiper .btn_is_off {
  background: #e4e4e4 url("../img/svg/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
main .reviews-section .reviews-item {
  width: 400px;
  height: 350px;
  border-radius: 24px;
  background-color: white;
}
main .reviews-section .reviews-item .item-img_wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
main .reviews-section .reviews-item .reviews-user_name {
  font-size: 0.9em;
  font-weight: 300;
  color: #101a33;
}
main .reviews-section .reviews-item .reviews-date {
  font-size: 0.9em;
  font-weight: 300;
  color: #7c7c7c;
}
main .reviews-section .reviews-item .reviews-link_to_product {
  font-size: 1.1em;
  font-weight: 300;
  color: #101a33;
  padding: 8px 12px;
  border: solid #101a33 1px;
  border-radius: 25px;
  line-height: 1;
}
main .reviews-section .reviews-item .reviews-user_comment {
  font-size: 1.25em;
  padding-left: 35px;
  padding-right: 5px;
  line-height: 1.2;
  height: 135px;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .reviews-section .reviews-item .reviews-user_comment-wrapper::before,
main .reviews-section .reviews-item .reviews-user_comment-wrapper::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/svg/quotes.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
main .reviews-section .reviews-item .reviews-user_comment-wrapper::before {
  top: -25px;
  left: 15px;
}
main .reviews-section .reviews-item .reviews-user_comment-wrapper::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: -25px;
  right: 10px;
}
main .reviews-section .reviews-item .item-product-img_wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 4px;
  border: solid 1px #c5c5c5;
  margin-right: 12px;
}
main .reviews-section .reviews-item .item-product-img_wrapper .item-product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .reviews-section .reviews-item .item-product-title {
  max-width: 160px;
  padding-left: 8px;
  border-left: solid #101a33 1px;
  font-weight: 300;
  font-size: 0.9em;
  color: #101a33;
}
@media (max-width: 540px) {
  main .reviews-section .reviews-item .reviews-user_name {
    font-size: 16px;
  }
  main .reviews-section .reviews-item .reviews-date {
    font-size: 16px;
  }
  main .reviews-section .reviews-item .reviews-link_to_product {
    font-size: 18px;
  }
  main .reviews-section .reviews-item .reviews-user_comment {
    font-size: 14px;
  }
  main .reviews-section .reviews-item .reviews-user_comment-wrapper::before,
  main .reviews-section .reviews-item .reviews-user_comment-wrapper::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: url("../img/svg/quotes.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  main .reviews-section .reviews-item .reviews-user_comment-wrapper::before {
    top: -25px;
    left: 15px;
  }
  main .reviews-section .reviews-item .reviews-user_comment-wrapper::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    bottom: -25px;
    right: 10px;
  }
  main .reviews-section .reviews-item .item-product-img_wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 4px;
    border: solid 1px #c5c5c5;
    margin-right: 12px;
  }
  main .reviews-section .reviews-item .item-product-img_wrapper .item-product-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main .reviews-section .reviews-item .item-product-title {
    max-width: 160px;
    padding-left: 8px;
    border-left: solid #101a33 1px;
    font-weight: 300;
    font-size: 0.9em;
    color: #101a33;
  }
}
main .video-section {
  background: white;
  border-radius: 30px;
}
main .video-section .filter-item {
  border: solid #4f576c 1px;
  border-radius: 20px;
}
main .video-section .filter-item-active {
  background: #4f576c;
  color: white;
}
main .video-section h2 {
  font-size: 2em;
  font-weight: 700;
}
main .video-section h2 span {
  color: #cbbba1;
}
main .video-section h3 {
  font-size: 1.2em;
  color: #101a33;
}
main .video-section .video-swiper-button-prev,
main .video-section .video-swiper-button-next {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 0;
  border-radius: 50%;
  background: #e4e4e4 url("../img/svg/arrow-blue.svg");
  background-size: 80%;
  background-position: center;
  z-index: 3;
}
main .video-section .video-swiper-button-prev {
  right: auto;
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
main .video-section .videoSwiper {
  width: 100%;
  height: 100%;
}
main .video-section .videoSwiper .swiper-slide {
  width: 322px;
}
main .video-section .videoSwiper .swiper-slide .h3-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 203px;
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper button {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6431372549);
  top: 0;
  left: 0;
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper button img {
  width: 70px;
  height: 70px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border-radius: 50%;
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper button:hover {
  background: rgba(0, 0, 0, 0);
}
main .video-section .videoSwiper .swiper-slide .preview-wrapper button:hover img {
  border: solid #101a33 2px;
  width: 75px;
  height: 75px;
}