@import "define.css";
@import "fonts.css";
main {
  width: 100%;
  min-height: 500px;
}

.contacts-map {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-primary1);
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  .contacts-map {
    flex-direction: column;
  }
}
.contacts-map .map-wrrp {
  width: 50%;
  height: 700px;
}
.contacts-map .map-wrrp .ymaps-2-1-79-copyrights-pane,
.contacts-map .map-wrrp .ymaps-2-1-79-map-copyrights-promo,
.contacts-map .map-wrrp .ymaps-2-1-79-copyright {
  text-indent: -9999px;
  display: none;
}
.contacts-map .map-wrrp .ymaps-2-1-79-ground-pane {
  filter: contrast(0.7) grayscale(50%) invert(1) hue-rotate(135deg) blur(0.5px);
}
.contacts-map .map-wrrp .ymaps-2-1-79-map,
.contacts-map .map-wrrp .ymaps-2-1-79-inner-panes {
  background-color: var(--color-primary1);
}
@media screen and (max-width: 768px) {
  .contacts-map .map-wrrp {
    width: 100%;
    aspect-ratio: 1/1;
    max-height: 400px;
  }
}
.contacts-map .contacts-form-wrrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  padding: 0px var(--padding-base);
}
@media screen and (max-width: 768px) {
  .contacts-map .contacts-form-wrrp {
    width: 100%;
    height: auto;
    padding: var(--padding-base);
    justify-content: center;
  }
  .contacts-map .contacts-form-wrrp h2 {
    text-align: center;
  }
}
.contacts-map .contacts-form-wrrp .contacts-form {
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 464px;
}
.contacts-map .contacts-form-wrrp .contacts-form .form {
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}

.hero-slider {
  position: relative;
}
.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100vh;
}
.hero-slider .hero-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.hero-slider .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(14, 34, 53, 0.6);
  background: -webkit-linear-gradient(90deg, rgba(14, 34, 53, 0.8) 0%, rgba(14, 34, 53, 0.2) 40%, rgba(14, 34, 53, 0.4) 56%, rgba(14, 34, 53, 0.9) 100%);
}
.hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .hero-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .hero-slide .hero-overlay-wrrp {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: calc(var(--padding-base) * 2);
  width: 100%;
  height: auto;
}
.hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay {
  width: 100%;
  height: auto;
  max-width: 1196px;
  color: var(--color-white);
  margin: 0px auto;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: var(--padding-base);
}
@media screen and (max-width: 1196px) {
  .hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay {
    padding: 0px 24px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay {
    align-items: flex-start;
    padding: 0px 12px;
    flex-direction: column;
  }
}
.hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay .emblem img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay .emblem img {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay .emblem img {
    width: 90px;
  }
}
@media screen and (max-width: 375px) {
  .hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay .emblem img {
    width: 60px;
  }
}
.hero-slider .hero-slide .hero-overlay-wrrp .hero-overlay .text {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(var(--padding-base) / 2);
}
.hero-slider .owl-dots {
  position: absolute;
  bottom: var(--padding-base);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  gap: 24px;
  display: flex;
  justify-content: center;
}
.hero-slider .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: transparent;
  border-width: 1px;
  border-color: var(--color-white);
  border-style: solid;
  opacity: 0.5;
  transition: opacity var(--animation-time) ease-in;
}
.hero-slider .owl-dots .owl-dot.active span {
  background-color: var(--color-white);
}
.hero-slider .owl-dots .owl-dot:hover span {
  opacity: 1;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-top: -36px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .hero-slider .owl-nav {
    display: none;
  }
}
.hero-slider .owl-nav button {
  position: absolute;
  width: auto;
  height: 72px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--animation-time) ease-in;
}
.hero-slider .owl-nav button:hover {
  opacity: 1;
}
.hero-slider .owl-nav .owl-prev {
  left: calc(var(--padding-base) / 2);
}
.hero-slider .owl-nav .owl-prev img {
  transform: scaleX(-1);
}
.hero-slider .owl-nav .owl-next {
  right: calc(var(--padding-base) / 2);
}

.news-carousel__wrrp {
  padding-top: var(--block-padding-top);
  display: flex;
  flex-direction: column;
  gap: var(--padding-base);
}
.news-carousel__wrrp .news-carousel__title__control {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (max-width: 560px) {
  .news-carousel__wrrp .news-carousel__title__control {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.news-carousel__wrrp .news-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
  margin-left: -360px;
}
@media screen and (max-width: 1440px) {
  .news-carousel__wrrp .news-carousel .owl-stage {
    margin-left: -25vw;
  }
}
@media screen and (max-width: 1024px) {
  .news-carousel__wrrp .news-carousel .owl-stage {
    margin-left: 0;
  }
}
.news-carousel__wrrp .news-carousel .news-card__wrrp {
  width: 50vw;
  max-width: 720px;
  height: auto;
  flex-shrink: 0;
  padding: 0px calc(var(--padding-base) / 4);
}
@media screen and (max-width: 1024px) {
  .news-carousel__wrrp .news-carousel .news-card__wrrp {
    width: 100vw;
    padding: 0px var(--mobile-padding);
  }
}

.news-list__item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-list__item:hover .ns-image__wrrp .ns-image {
  filter: none;
}
@media screen and (max-width: 560px) {
  .news-list__item {
    flex-direction: column;
  }
}
.news-list__item .ns-image__wrrp {
  --image-size: 260px;
  width: var(--image-size);
  min-width: var(--image-size);
  height: var(--image-size);
}
@media screen and (max-width: 1024px) {
  .news-list__item .ns-image__wrrp {
    --image-size: 240px;
    width: var(--image-size);
    min-width: var(--image-size);
    height: var(--image-size);
  }
}
@media screen and (max-width: 768px) {
  .news-list__item .ns-image__wrrp {
    --image-size: 220px;
    width: var(--image-size);
    min-width: var(--image-size);
    height: var(--image-size);
  }
}
.news-list__item .news-list__text-wrrp {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-list__item .news-list__text-wrrp .desc {
  max-height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.news-list__item .news-list__text-wrrp .readmore {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
}

.about__wrrp {
  background-color: var(--color-primary1);
  padding: var(--block-padding-top) 0px;
}
.about__wrrp .container {
  display: flex;
  gap: calc(var(--padding-base) / 2);
}
.about__wrrp .ns-image__wrrp,
.about__wrrp .about-text__wrrp {
  width: 50%;
  min-width: 50%;
}
.about__wrrp .ns-image__wrrp {
  min-height: 460px;
}
.about__wrrp .about-text__wrrp {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: calc(var(--padding-base) / 2);
}
@media screen and (max-width: 768px) {
  .about__wrrp .container {
    flex-direction: column;
    gap: var(--padding-base);
  }
  .about__wrrp .ns-image__wrrp,
  .about__wrrp .about-text__wrrp {
    width: 100%;
    min-width: 100%;
  }
  .about__wrrp .ns-image__wrrp {
    height: 250px;
    min-height: 250px;
  }
  .about__wrrp .ns-image__wrrp .ns-image {
    height: 100%;
  }
  .about__wrrp h2 {
    text-align: center;
  }
}

.about-island__bg {
  background-color: var(--color-primary1);
  border-radius: 36px;
  padding: var(--padding-base);
}
.about-island__wrrp {
  margin-top: var(--block-padding-top);
}
.about-island__wrrp > h2 {
  width: 100%;
  clear: both;
  text-align: center;
  padding-bottom: var(--padding-base);
}
.about-island__wrrp .about-island {
  display: flex;
  align-items: center;
  gap: 24px;
}
.about-island__wrrp .about-island__image-left {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .about-island__wrrp .about-island__image-left {
    flex-direction: column;
  }
}
.about-island__wrrp .about-island__image-right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .about-island__wrrp .about-island__image-right {
    flex-direction: column-reverse;
  }
}
.about-island__wrrp .left__wrrp,
.about-island__wrrp .right__wrrp {
  width: 50%;
  height: 100%;
}
.about-island__wrrp .about-text__wrrp {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: calc(var(--padding-base) / 2);
}
.about-island__wrrp .about-postcard__wrrp {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-island__wrrp .about-postcard__wrrp form {
  max-width: 464px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}
.about-island__wrrp .ns-image__wrrp {
  width: 100%;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 768px) {
  .about-island__wrrp {
    padding: var(--mobile-padding);
    width: 100%;
  }
  .about-island__wrrp .left__wrrp,
  .about-island__wrrp .right__wrrp {
    width: 100%;
    height: auto;
  }
  .about-island__wrrp .about-postcard__wrrp {
    text-align: left;
  }
  .about-island__wrrp h2 {
    text-align: left;
  }
}

.service-list__wrrp {
  display: grid;
  -moz-column-gap: var(--padding-base);
       column-gap: var(--padding-base);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1440px) {
  .service-list__wrrp {
    grid-template-columns: repeat(3, minmax(calc(33.3333333% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 1024px) {
  .service-list__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 768px) {
  .service-list__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}

.service-list__item {
  width: 100%;
  max-width: 342px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0px auto;
}
.service-list__item:hover .ns-image__wrrp .ns-image {
  filter: none;
}
.service-list__item .ns-image__wrrp {
  width: 100%;
  height: 280px;
}
.service-list__item .item-text__wrrp {
  display: flex;
  gap: 24px;
}
.service-list__item .item-text__wrrp .item-text__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list__item .item-text__wrrp .item-text__left .item-text__title {
  line-height: 1.2em;
}
.service-list__item .item-text__wrrp .item-text__right {
  display: block;
  width: 36px;
  height: 36px;
}

.products-list {
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1440px) {
  .products-list {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 1024px) {
  .products-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 768px) {
  .products-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
  }
}
.products-list__wrrp {
  padding-top: var(--padding-base);
}
.products-list__item {
  width: 100%;
  max-width: 264px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products-list__item .ns-image__wrrp {
  width: 100%;
  height: 320px;
}
.products-list__item .ns-image__wrrp .ns-image {
  background-color: var(--color-primary1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.products-list__item .ns-image__wrrp .ns-image img {
  width: auto;
  max-width: 168px;
  height: auto;
  max-height: 224px;
  transition: max-width var(--animation-time) ease-in, max-height var(--animation-time) ease-in;
}
.products-list__item .ns-image__wrrp .product-favorites__switch {
  position: absolute;
  top: 36px;
  right: 36px;
  background-color: transparent;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-secondary1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.products-list__item .ns-image__wrrp .product-favorites__switch svg {
  width: 18px;
  height: 18px;
  margin-bottom: -4px;
  stroke-width: 2px;
  stroke: var(--color-secondary2);
  fill: transparent;
}
.products-list__item .ns-image__wrrp .product-favorites__switch:hover {
  opacity: 0.75;
}
.products-list__item .ns-image__wrrp .product-favorites__isfavorites svg {
  fill: var(--color-secondary2);
}
.products-list__item .item-text__wrrp {
  display: flex;
  gap: 24px;
}
.products-list__item .item-text__wrrp .item-text__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products-list__item .item-text__wrrp .item-text__left .item-text__title {
  line-height: 1.2em;
}
.products-list__item .item-text__wrrp .item-text__right {
  display: block;
  width: 36px;
  height: 36px;
}
.products-list__item:hover .ns-image__wrrp .ns-image img {
  max-width: 180px;
  max-height: 236px;
}

.object-add__wrrp {
  display: flex;
  justify-content: center;
  padding: calc(var(--padding-base) / 2) 0px var(--padding-base);
}

.objects-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.objects-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-primary1);
  border-radius: 24px;
  padding: calc(var(--padding-base) / 2);
  gap: var(--padding-base);
  opacity: 1;
  transition: opacity calc(var(--animation-time) * 2) ease;
}
.objects-list__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .objects-list__item {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .objects-list__item .objects-item__name, .objects-list__item .objects-item__address, .objects-list__item .objects-item__contact, .objects-list__item .objects-item__action {
    text-align: center;
  }
}
.objects-list__item .objects-item__name, .objects-list__item .objects-item__address, .objects-list__item .objects-item__contact, .objects-list__item .objects-item__action {
  width: 100%;
}
.objects-list__item .objects-item__action {
  max-width: 64px;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.objects-list__item button {
  width: 18px;
  height: 18px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}
.objects-list__item button:hover {
  opacity: 0.8;
}
.objects-list__item button svg {
  width: 100%;
  height: 100%;
}

.rating-values__wrrp {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: var(--padding-base);
}
.rating-values__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 130px;
  background-color: var(--color-primary1);
  border-radius: 24px;
  gap: 6px;
}
.rating-values__item .title {
  font-size: 1.5rem;
}
.rating-values__item .status-line {
  display: flex;
  align-items: center;
  font-size: 2.25rem;
  text-transform: uppercase;
  gap: 12px;
}
.rating-values__item .status-line .status-color {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.rating-values__item .status-line .status-platinum {
  background-color: #B2E8FF;
}
.rating-values__item .status-line .status-gold {
  background-color: var(--color-secondary2);
}
.rating-values__item .status-line .status-silver {
  background-color: #858585;
}

.bonus-sign {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  background-color: var(--color-primary2);
  background-image: url("../images/sign-bonus.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  border: 1px solid var(--color-primary1);
}

.features-list__wrrp {
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 768px) {
  .features-list__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
.features-list__wrrp .features-list__item-wrrp .features-list__item {
  max-width: 160px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.features-list__wrrp .features-list__item-wrrp .features-list__item .ns-image__wrrp {
  width: 112px;
  height: 112px;
  margin: 0px auto;
}
.features-list__wrrp .features-list__item-wrrp .features-list__item .features-list__item__title {
  text-align: center;
  font-size: 1.375rem;
}

.service-carousel__wrrp {
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--padding-base);
}
.service-carousel__wrrp .service-carousel__title__control {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (max-width: 560px) {
  .service-carousel__wrrp .service-carousel__title__control {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.service-carousel__wrrp .service-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
  margin-left: -183px;
}
@media screen and (max-width: 1440px) {
  .service-carousel__wrrp .service-carousel .owl-stage {
    margin-left: -12.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .service-carousel__wrrp .service-carousel .owl-stage {
    margin-left: 0;
  }
}
.service-carousel__wrrp .service-carousel .service-card__wrrp {
  width: 25vw;
  max-width: 366px;
  min-width: 342px;
  height: auto;
  flex-shrink: 0;
  padding: 0px calc(var(--padding-base) / 4);
}
@media screen and (max-width: 1024px) {
  .service-carousel__wrrp .service-carousel .service-card__wrrp {
    width: 90vw;
  }
}

.products-carousel__wrrp {
  padding-top: var(--block-padding-top);
  display: flex;
  flex-direction: column;
  gap: var(--padding-base);
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .products-carousel__wrrp {
    padding-top: calc(var(--block-padding-top) * 2);
  }
}
.products-carousel__wrrp .products-carousel__title__control {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (max-width: 560px) {
  .products-carousel__wrrp .products-carousel__title__control {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .products-carousel__wrrp .products-carousel__title__control h2 {
    text-align: center;
  }
}
.products-carousel__wrrp .products-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
  margin-left: -183px;
}
@media screen and (max-width: 1440px) {
  .products-carousel__wrrp .products-carousel .owl-stage {
    margin-left: -12.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .products-carousel__wrrp .products-carousel .owl-stage {
    margin-left: 0;
  }
}
.products-carousel__wrrp .products-carousel .product-card__wrrp {
  width: 25vw;
  max-width: 366px;
  min-width: 342px;
  height: auto;
  flex-shrink: 0;
  padding: 0px calc(var(--padding-base) / 4);
}
@media screen and (max-width: 1024px) {
  .products-carousel__wrrp .products-carousel .product-card__wrrp {
    width: 90vw;
  }
}

.carousel__control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel__control .carousel__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel__control .carousel__nav button {
  display: inline-flex;
  color: var(--color-white);
  background-color: var(--color-secondary1);
  border-color: var(--color-secondary1);
  border-width: 2px;
  border-style: solid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: background-color var(--animation-time) ease-in;
  cursor: pointer;
}
.carousel__control .carousel__nav button:hover {
  background-color: transparent;
}
.carousel__control .carousel__nav button.owl-prev img {
  transform: scaleX(-1);
  margin-left: -3px;
}
.carousel__control .carousel__nav button.owl-next img {
  margin-right: -3px;
}
.carousel__control .carousel__nav button img {
  width: auto;
  height: 12px;
}

.partners-list__wrrp {
  padding-top: var(--block-padding-top);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.partners-list__wrrp .partners-list {
  width: 100%;
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 768px) {
  .partners-list__wrrp .partners-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 375px) {
  .partners-list__wrrp .partners-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
  }
}
.partners-list__wrrp .partners-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 342px;
  height: 100px;
  background-color: var(--color-primary1);
  border-radius: 12px;
  padding: 25px;
}
.partners-list__wrrp .partners-list__item img {
  width: 100%;
  max-width: 230px;
  height: 100%;
  max-height: 50px;
}

.article__one-column {
  max-width: 1024px;
}

.article__delivery-payment h2 {
  text-align: center;
}

.childs-list__wrrp {
  padding-top: var(--block-padding-top);
}
.childs-list__wrrp ul.childs-list {
  width: 100%;
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1024px) {
  .childs-list__wrrp ul.childs-list {
    grid-template-columns: repeat(3, minmax(calc(33.333333% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .childs-list__wrrp ul.childs-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 500px) {
  .childs-list__wrrp ul.childs-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
  }
}
.childs-list__wrrp ul.childs-list li.ns-image__wrrp {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
.childs-list__wrrp ul.childs-list li.ns-image__wrrp a:link, .childs-list__wrrp ul.childs-list li.ns-image__wrrp a:visited {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.375rem;
  background-size: 100%;
  transition: background-size var(--animation-time) ease-in;
}
.childs-list__wrrp ul.childs-list li.ns-image__wrrp a:hover {
  background-size: 105%;
}
.childs-list__wrrp ul.childs-list li.ns-image__wrrp a .sign-line {
  width: 100%;
  max-width: 50px;
  border-top: 1px solid var(--color-white);
}

.staff-list__wrrp .staff-list {
  width: 100%;
  display: grid;
  -moz-column-gap: var(--padding-base);
       column-gap: var(--padding-base);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 768px) {
  .staff-list__wrrp .staff-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
.staff-list__wrrp .staff-list .staff-list__item {
  display: flex;
  flex-direction: row;
  gap: calc(var(--padding-base) / 2);
}
.staff-list__wrrp .staff-list .staff-list__item:hover .ns-image__wrrp .ns-image {
  filter: none;
}
@media screen and (max-width: 480px) {
  .staff-list__wrrp .staff-list .staff-list__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.staff-list__wrrp .staff-list .staff-list__item .ns-image__wrrp {
  --ns-image-size: 260px;
  width: var(--ns-image-size);
  min-width: var(--ns-image-size);
  height: var(--ns-image-size);
  min-height: var(--ns-image-size);
}
@media screen and (max-width: 1440px) {
  .staff-list__wrrp .staff-list .staff-list__item .ns-image__wrrp {
    --ns-image-size: 200px;
    width: var(--ns-image-size);
    min-width: var(--ns-image-size);
    height: var(--ns-image-size);
    min-height: var(--ns-image-size);
  }
}
@media screen and (max-width: 1024px) {
  .staff-list__wrrp .staff-list .staff-list__item .ns-image__wrrp {
    --ns-image-size: 160px;
    width: var(--ns-image-size);
    min-width: var(--ns-image-size);
    height: var(--ns-image-size);
    min-height: var(--ns-image-size);
  }
}
.staff-list__wrrp .staff-list .staff-list__item .staff-info__wrrp {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .staff-list__wrrp .staff-list .staff-list__item .staff-info__wrrp .staff-title h3 {
    text-align: center;
  }
  .staff-list__wrrp .staff-list .staff-list__item .staff-info__wrrp .staff-about {
    text-align: center;
  }
}

.news-list__wrrp .news-list {
  width: 100%;
  display: grid;
  -moz-column-gap: var(--padding-base);
       column-gap: var(--padding-base);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1024px) {
  .news-list__wrrp .news-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 1440px) {
  .news-list__wrrp .news-list .news-list__item .ns-image__wrrp {
    width: 240px;
    min-width: 240px;
    height: 240px;
  }
}

.pagination__wrrp {
  padding-top: 48px;
}
.pagination__wrrp .pagination {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .pagination__wrrp .pagination {
    gap: 12px;
  }
}
.pagination__wrrp .pagination .pagination__item {
  display: block;
}
.pagination__wrrp .pagination .pagination__item a:link, .pagination__wrrp .pagination .pagination__item a:visited {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 100%;
  color: var(--color-white);
  background-color: transparent;
  border-color: var(--color-primary1);
  border-width: 2px;
  border-style: solid;
  transition: background-color var(--animation-time) ease-in, border-color var(--animation-time) ease-in;
}
.pagination__wrrp .pagination .pagination__item a:hover {
  background-color: var(--color-secondary2);
  border-color: var(--color-secondary2);
}
.pagination__wrrp .pagination .pagination__item a.active {
  background-color: var(--color-primary1);
  border-color: var(--color-primary1);
}
.pagination__wrrp .pagination .pagination__item a.active:hover {
  background-color: var(--color-secondary2);
  border-color: var(--color-secondary2);
}

.cert-list__wrrp .cert-list {
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(4, minmax(calc(25% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1440px) {
  .cert-list__wrrp .cert-list {
    grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .cert-list__wrrp .cert-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .cert-list__wrrp .cert-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: var(--padding-base);
  }
}
.cert-list__wrrp .cert-list .cert-list__item {
  height: 440px;
}
.cert-list__wrrp .cert-list .cert-list__item .ns-image__wrrp {
  height: 100%;
  width: 100%;
  min-width: 330px;
  max-width: 342px;
  margin: 0px auto;
}

.docs-list__wrrp {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.docs-list__wrrp .docs-list__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.docs-list__wrrp .docs-list__section .docs-list {
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(3, minmax(calc(33.3333333333% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1024px) {
  .docs-list__wrrp .docs-list__section .docs-list {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
  }
}
@media screen and (max-width: 768px) {
  .docs-list__wrrp .docs-list__section .docs-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: var(--padding-base);
  }
}
.docs-list__wrrp .docs-list__section .docs-list .docs-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.docs-list__wrrp .docs-list__section .docs-list .docs-list__item .readmore svg {
  transform: rotate(90deg);
}

.review-list__wrrp .review-list {
  width: 100%;
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 768px) {
  .review-list__wrrp .review-list {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}

.review-list__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.review-list__item .ns-image__wrrp {
  --ns-image-size: 200px;
  width: var(--ns-image-size);
  min-width: var(--ns-image-size);
  height: var(--ns-image-size);
  min-height: var(--ns-image-size);
}
@media screen and (max-width: 1440px) {
  .review-list__item .ns-image__wrrp {
    --ns-image-size: 170px;
    width: var(--ns-image-size);
    min-width: var(--ns-image-size);
    height: var(--ns-image-size);
    min-height: var(--ns-image-size);
  }
}
@media screen and (max-width: 1024px) {
  .review-list__item .ns-image__wrrp {
    --ns-image-size: 150px;
    width: var(--ns-image-size);
    min-width: var(--ns-image-size);
    height: var(--ns-image-size);
    min-height: var(--ns-image-size);
  }
}
@media screen and (max-width: 500px) {
  .review-list__item .ns-image__wrrp {
    --ns-image-size: 200px;
    width: var(--ns-image-size);
    min-width: var(--ns-image-size);
    height: var(--ns-image-size);
    min-height: var(--ns-image-size);
  }
}
.review-list__item .review-info__wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-list__item .review-info__wrrp .review-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}
.review-list__item .review-info__wrrp .review-rating-stars1 .star1 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars1 .star2 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars1 .star3 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars1 .star4 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars1 .star5 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars2 .star1 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars2 .star2 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars2 .star3 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars2 .star4 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars2 .star5 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars3 .star1 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars3 .star2 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars3 .star3 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars3 .star4 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars3 .star5 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars4 .star1 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars4 .star2 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars4 .star3 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars4 .star4 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars4 .star5 {
  background-image: url("../images/star-empty.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars5 .star1 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars5 .star2 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars5 .star3 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars5 .star4 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating-stars5 .star5 {
  background-image: url("../images/star-fill.svg");
}
.review-list__item .review-info__wrrp .review-rating .review-star {
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .review-list__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .review-list__item .review-info__wrrp {
    justify-content: center;
    align-items: center;
  }
}

.account-nav__wrrp {
  padding-bottom: 48px;
}
.account-nav__wrrp .account-nav {
  text-align: center;
  line-height: 48px;
}
.account-nav__wrrp .account-nav__item {
  display: inline-block;
  padding: 0px 12px;
}
.account-nav__wrrp .account-nav__item:hover a {
  border-bottom: 2px solid var(--color-secondary2);
}
.account-nav__wrrp .account-nav__item a {
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--animation-time) ease-in;
}
.account-nav__wrrp .account-nav__active a, .account-nav__wrrp .account-nav__active:hover a {
  border-bottom: 2px solid var(--color-secondary1);
}

.account-form__wrrp {
  width: 100%;
  max-width: 560px;
  padding: var(--padding-base);
  margin: 24px auto 0px;
  background-color: var(--color-primary1);
  border-radius: 24px;
}
@media screen and (max-width: 560px) {
  .account-form__wrrp {
    max-width: calc(100% - var(--mobile-padding));
  }
}
.account-form__wrrp .form-section {
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}
.account-form__wrrp .account-enter-recovery {
  width: 100%;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-orders__wrrp {
  display: flex;
  flex-direction: column;
  gap: calc(var(--padding-base) / 2);
}
.account-orders__item {
  background-color: var(--color-primary1);
  border-radius: 24px;
  padding: var(--padding-base);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account-orders__item hr {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--color-secondary1);
  width: 100%;
  clear: both;
}
.account-orders__heading-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.account-orders__heading-row h3 {
  line-height: 1.2em;
}
.account-orders__heading-row > button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--animation-time) ease;
}
.account-orders__heading-row > button:hover {
  opacity: 1;
}
.account-orders__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .account-orders__list {
    gap: 24px;
  }
}
.account-orders__wrrp-left, .account-orders__wrrp-right {
  display: flex;
  align-items: center;
  gap: calc(var(--padding-base) / 2);
  width: 100%;
}
.account-orders__wrrp-right {
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .account-orders__wrrp-right {
    max-width: none;
  }
}
@media screen and (max-width: 500px) {
  .account-orders__wrrp-right {
    flex-direction: column;
  }
}
.account-orders__product {
  display: flex;
  justify-content: space-between;
  gap: calc(var(--padding-base) / 2);
}
@media screen and (max-width: 768px) {
  .account-orders__product {
    flex-direction: column;
  }
}
.account-orders__product-image {
  width: 130px;
  min-width: 130px;
  height: 130px;
}
.account-orders__product-image .ns-image__wrrp {
  width: 100%;
  height: 100%;
  padding: 12px;
}
.account-orders__product-name {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.account-orders__product-delivery, .account-orders__product-payment {
  width: 100%;
  max-width: 250px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .account-orders__product-delivery, .account-orders__product-payment {
    width: 100%;
    max-width: none;
    min-width: none;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.account-orders__product-delivery .desc, .account-orders__product-payment .desc {
  font-size: var(--font-size-small);
}
.account-orders__product-delivery > div, .account-orders__product-payment > div {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .account-orders__product-delivery > div, .account-orders__product-payment > div {
    text-align: left;
  }
}
.account-orders__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-end;
  gap: 6px;
}
.account-orders__info p {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .account-orders__info {
    text-align: left;
    justify-content: flex-start;
  }
  .account-orders__info p {
    text-align: left;
  }
}

.courses-list__wrrp {
  display: grid;
  -moz-column-gap: var(--padding-base);
       column-gap: var(--padding-base);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 768px) {
  .courses-list__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
.courses-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.error-page__wrrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.error-page__wrrp > div {
  text-align: center;
}
.error-page__num, .error-page__desc {
  color: var(--color-primary1);
}
.error-page__num {
  font-size: 16rem;
  height: 200px;
}
.error-page__desc {
  font-size: 3.25rem;
}
.error-page__text {
  font-size: 1.33rem;
  line-height: 1.3em;
}
.error-page__text a:link,
.error-page__text a:visited {
  color: var(--color-secondary2);
}

.catalog-sections__wrrp {
  display: grid;
  -moz-column-gap: var(--padding-base);
       column-gap: var(--padding-base);
  row-gap: var(--padding-base);
  grid-template-columns: repeat(3, minmax(calc(33.3333333% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1024px) {
  .catalog-sections__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
@media screen and (max-width: 768px) {
  .catalog-sections__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
    row-gap: calc(var(--padding-base) * 2);
  }
}
.catalog-sections__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.catalog-sections__item .ns-image__wrrp {
  width: 100%;
  max-width: 464px;
  aspect-ratio: 464/340;
}
.catalog-sections__item .catalog-list__name {
  width: 100%;
  text-align: center;
}

.checkout-list__wrrp {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .checkout-list__wrrp {
    gap: 36px;
  }
}
.checkout-list__item {
  width: 100%;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.checkout-list__item .ns-image__wrrp {
  width: 130px;
  min-width: 130px;
  height: 130px;
  min-height: 130px;
  padding: 12px;
}
.checkout-list__item .ns-image__wrrp .ns-image {
  padding: 12px;
  background-color: var(--color-primary1);
}
.checkout-list__item .ns-image__wrrp .ns-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
@media screen and (max-width: 500px) {
  .checkout-list__item {
    flex-direction: column;
  }
}
.checkout-list__info {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .checkout-list__info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
.checkout-list__right {
  width: 100%;
  max-width: 320px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .checkout-list__right {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) {
  .checkout-list__right {
    justify-content: center;
    max-width: none;
  }
}
.checkout-list__name {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .checkout-list__name {
    text-align: center;
  }
}
.checkout-list__price {
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .checkout-list__price {
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .checkout-list__price {
    text-align: center;
    width: auto;
  }
}
.checkout-list__clear button {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity var(--animation-time) ease;
}
.checkout-list__clear button:hover {
  opacity: 0.6;
}

.checkout-hr {
  margin-top: 48px;
  margin-bottom: 48px;
}

.checkout-inputs__wrrp {
  width: 100%;
  display: grid;
  -moz-column-gap: calc(var(--padding-base) / 2);
       column-gap: calc(var(--padding-base) / 2);
  row-gap: calc(var(--padding-base) / 2);
  grid-template-columns: repeat(3, minmax(calc(33.3333333% - var(--padding-base)), 1fr));
}
@media screen and (max-width: 1024px) {
  .checkout-inputs__wrrp {
    grid-template-columns: repeat(2, minmax(calc(50% - var(--padding-base)), 1fr));
    row-gap: var(--padding-base);
  }
}
@media screen and (max-width: 550px) {
  .checkout-inputs__wrrp {
    grid-template-columns: repeat(1, minmax(calc(100% - var(--padding-base)), 1fr));
  }
}
.checkout-inputs__col-wrrp {
  border: 1px solid red;
}
.checkout-inputs__col {
  display: inline-flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.checkout-promo__wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - var(--padding-base));
  max-width: 380px;
  margin: 0 auto 24px;
}
.checkout-promo__wrrp .checkout-code,
.checkout-promo__wrrp .checkout-bonus {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.checkout-promo__wrrp .checkout-code__text,
.checkout-promo__wrrp .checkout-bonus__text {
  white-space: nowrap;
}
.checkout-promo__wrrp .checkout-code__input,
.checkout-promo__wrrp .checkout-bonus__input {
  width: 100%;
}

.checkout-submit__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: calc(100% - var(--padding-base));
  margin: 0px auto;
  text-align: center;
}
.checkout-submit__button {
  max-width: 200px;
  margin: 0 auto;
}

.checkout-summ__wrrp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.checkout-summ__title, .checkout-summ__total {
  font-size: 2rem;
}
.checkout-summ__vat {
  color: var(--color-secondary1);
}

.checkout-getbonus__wrrp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}
.checkout-getbonus__text {
  text-align: left;
}

.item-page {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .item-page {
    flex-direction: column;
    align-items: center;
  }
}

.item-gallery {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1440px) {
  .item-gallery {
    flex-direction: column-reverse;
  }
}
.item-gallery__wrrp {
  width: 100%;
  max-width: 586px;
}
@media screen and (max-width: 1440px) {
  .item-gallery__wrrp {
    max-width: 464px;
  }
}
.item-gallery .ns-image__wrrp {
  width: 100%;
  aspect-ratio: 1/1;
}

.item-gallery-thumbs {
  width: 98px;
  min-width: 98px;
  height: 464px;
}
@media screen and (max-width: 1440px) {
  .item-gallery-thumbs {
    width: 100%;
    max-width: 464px;
    height: 98px;
  }
}
.item-gallery-thumbs .swiper-slide {
  width: 98px;
  min-width: 98px;
  height: 98px;
  min-height: 98px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  background: #243f5f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.item-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-gallery-thumbs.item-gallery-product .swiper-slide img {
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 85%;
}

.item-gallery-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: #243f5f;
}
.item-gallery-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.item-gallery-main .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-gallery-main.item-gallery-product .swiper-slide img {
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 85%;
}

.item-main__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.item-main__wrrp .page-heading__wrrp {
  padding-bottom: 0;
}
.item-main__wrrp .page-heading__wrrp h1,
.item-main__wrrp .page-heading__wrrp .breadcrumbs__wrrp {
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .item-main__wrrp .page-heading__wrrp h1,
  .item-main__wrrp .page-heading__wrrp .breadcrumbs__wrrp {
    text-align: center;
  }
}

.item-order-quick {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .item-order-quick {
    justify-content: center;
  }
}
.item-order-quick__price {
  font-size: 1.67rem;
}

.item-service-order__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 464px;
}
@media screen and (max-width: 1024px) {
  .item-service-order__wrrp {
    margin: 0 auto;
  }
  .item-service-order__wrrp h3 {
    text-align: center;
  }
}
.item-service-order__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 1024px) {
  .item-service-order__form button[type=submit] {
    margin: 0 auto;
  }
}
.item-service-order__price {
  font-size: 1.67rem;
}
@media screen and (max-width: 1024px) {
  .item-service-order__price {
    text-align: center;
  }
}

.service-beforeafter-list__wrrp {
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-beforeafter-list__item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-primary1);
  border-radius: 24px;
  padding: 48px 0px 24px;
  gap: 24px;
}
.service-beforeafter-list__item h3 {
  text-align: center;
  padding: 0 24px;
}

.service-beforeafter-item__gallery {
  padding: 0px 24px;
}
@media screen and (max-width: 768px) {
  .service-beforeafter-item__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.service-beforeafter-item__gallery-wrrp {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .service-beforeafter-item__gallery-wrrp {
    flex-direction: column;
    gap: 48px;
  }
}
.service-beforeafter-item__gallery-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 720px;
}
.service-beforeafter-item__gallery-section:first-child .service-beforeafter-item__gallery {
  border-right: 1px solid var(--color-secondary1);
}
.service-beforeafter-item__gallery-heading {
  width: 100%;
  text-align: center;
  font-size: 1.67rem;
  text-transform: uppercase;
}
.service-beforeafter-item__gallery .ns-image__wrrp {
  width: 100%;
  aspect-ratio: 672/416;
}
@media screen and (max-width: 1024px) {
  .service-beforeafter-item__gallery .ns-image__wrrp {
    padding: 12px;
  }
}

.item-product-buy__price {
  font-size: 1.67rem;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .item-product-buy__price {
    text-align: center;
  }
}
.item-product-buy__button-row1 {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .item-product-buy__button-row1 {
    justify-content: center;
  }
}
.item-product-buy__button-row1 .btn-cartadd {
  width: 240px;
}
.item-product-buy__button-row2 {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .item-product-buy__button-row2 {
    justify-content: center;
  }
}
.item-product-buy__button-row2 .btn-oneclick {
  width: 300px;
}
.item-product-buy__wrrp {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.item-product-buy__wrrp .product-favorites__switch {
  padding: 0;
  width: 48px;
  min-width: 48px;
}
.item-product-buy__wrrp .product-favorites__switch svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  stroke: var(--color-white);
  stroke-width: 2px;
  fill: transparent;
  padding-top: 2px;
}
.item-product-buy__wrrp .product-favorites__switch.product-favorites__isfavorites svg {
  stroke: var(--color-secondary2);
  stroke-width: 2px;
  fill: var(--color-secondary2);
}

.item-product-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.item-product-specs__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.item-product-specs__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.item-product-specs__param {
  text-align: left;
  width: auto;
  max-width: 50%;
}
.item-product-specs__value {
  text-align: right;
  width: auto;
  max-width: 50%;
}

.item-product-info__wrrp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
}
.item-product-info__wrrp .item-product-tabs-ctrl__wrrp {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}
.item-product-info__wrrp .item-product-tabs-ctrl__item {
  font-family: inherit;
  border: 0;
  background-color: transparent;
  padding: 0 0 12px 0;
  margin: 0;
  color: var(--color-white);
  cursor: pointer;
  border-bottom: 4px solid transparent;
  font-size: 1.2rem;
}
.item-product-info__wrrp .item-product-tabs-ctrl__item:hover, .item-product-info__wrrp .item-product-tabs-ctrl__item-active {
  border-bottom: 4px solid var(--color-secondary1);
}

.item-product-tabs-content__item {
  display: none;
}

.item-product-tabs-content__item-active {
  display: flex;
}

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

.pswp-video-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pswp-video-container iframe,
.pswp-video-container video {
  width: min(88vw, 1100px);
  aspect-ratio: 16/9;
  max-height: 85vh;
  border: none;
  background: #000;
}

.modal__wrrp {
  width: min(640px, 100vw - 12px);
  max-height: calc(100dvh - 48px);
  border: 1px solid var(--color-secondary1);
  border-radius: 24px;
  background-color: var(--color-primary2);
  color: var(--color-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  padding: 0px;
  position: fixed;
  overflow: hidden;
}
.modal__wrrp[open] {
  display: flex;
  flex-direction: column;
}
.modal__wrrp::backdrop {
  background: rgba(10, 20, 35, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal__inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  width: 100%;
  text-align: center;
}
.modal__header {
  height: auto;
  margin: 48px auto 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal__desc {
  margin-top: 12px;
}
.modal__body {
  padding: 0px 48px 48px 48px;
}
@media screen and (max-width: 1024px) {
  .modal__body {
    padding: 0 24px 24px 24px;
  }
}
@media screen and (max-width: 768px) {
  .modal__body {
    padding: 0 12px 12px 12px;
  }
}
.modal__body .form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--form-gap);
}
.modal__body .form .input-wrrp {
  width: 100%;
  text-align: left;
}
.modal__body .confirm-text {
  padding-bottom: 24px;
}
.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px 48px 48px;
  color: var(--color-white);
}
.modal__success p {
  font-size: 1.2rem;
  line-height: 1.5em;
  color: var(--color-white);
}
.modal-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background var(--animation-time), border-color var(--animation-time);
  position: absolute;
  top: 6px;
  right: 6px;
}
.modal-close:hover {
  background: var(--color-primary1);
  border-color: var(--color-white);
}
.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}/*# sourceMappingURL=styles.css.map */