html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
}

input[type=submit],
button {
  cursor: pointer;
}
input[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

ul, ol {
  list-style-type: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * Tooltip v1.0.16
 * https://sa-si-dev.github.io/tooltip
 * Licensed under MIT (https://github.com/sa-si-dev/tooltip/blob/master/LICENSE)
 */
.tooltip-comp{font-family:sans-serif;font-size:14px;line-height:20px;color:#fff;background-color:#212121;position:absolute;top:0;left:0;max-width:300px;padding:5px 10px;opacity:0;pointer-events:none;word-break:break-word;text-align:left;border-radius:2px}.tooltip-comp-arrow{position:absolute;z-index:1;width:16px;height:16px;overflow:hidden}.tooltip-comp-arrow::before{content:'';position:absolute;top:8px;left:8px;width:16px;height:16px;background-color:#212121;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.tooltip-comp-content{position:relative;z-index:2}.tooltip-comp.hide-arrow-icon .tooltip-comp-arrow{display:none}.tooltip-comp.position-bottom .tooltip-comp-arrow{margin-left:-8px;left:0;top:-15px}.tooltip-comp.position-top .tooltip-comp-arrow{margin-left:-8px;left:0;bottom:-15px}.tooltip-comp.position-right .tooltip-comp-arrow{margin-top:-8px;top:0;left:-15px}.tooltip-comp.position-left .tooltip-comp-arrow{margin-top:-8px;top:0;right:-15px}



body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #0D1B1E;
  line-height: 1.2;
}

button,
select,
input,
textarea {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
}

a {
  color: #0D1B1E;
  text-decoration: none;
}

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

button {
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.container {
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 24px;
  border: 1px solid #0D1B1E;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
@media only screen and (max-width: 767px) {
  .btn {
    min-height: 48px;
  }
}
.btn:hover {
  background: #41B6E6;
  border-color: #41B6E6;
  color: white;
}
.btn--black {
  background: #0D1B1E;
  color: white;
}

.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 38px;
}
.link:hover:before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.link:before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  width: 26px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='8' fill='%230D1B1E'%3E%3Cpath d='M1 3.5a.5.5 0 1 0 0 1v-1zm24.354.854a.5.5 0 0 0 0-.707L22.172.464a.5.5 0 0 0-.707.707L24.293 4l-2.828 2.828a.5.5 0 0 0 .707.707l3.182-3.182zM1 4.5h24v-1H1v1z'/%3E%3C/svg%3E");
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link--white {
  color: white;
}
.link--white:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='8' fill='%23fff'%3E%3Cpath d='M1 3.5a.5.5 0 1 0 0 1v-1zm24.354.854a.5.5 0 0 0 0-.707L22.172.464a.5.5 0 0 0-.707.707L24.293 4l-2.828 2.828a.5.5 0 0 0 .707.707l3.182-3.182zM1 4.5h24v-1H1v1z'/%3E%3C/svg%3E");
}

.title {
  font-size: 40px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .title {
    font-size: 24px;
  }
}
.title--large {
  font-size: 64px;
}
@media only screen and (max-width: 767px) {
  .title--large {
    font-size: 40px;
  }
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .subtitle {
    font-size: 16px;
  }
}

.search {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  padding: 24px;
  background: rgba(13, 27, 30, 0.95);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.search.visible {
  opacity: 1;
  pointer-events: all;
}
.search__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  font-size: 0;
  transition: opacity 0.2s;
}
.search__close:hover {
  opacity: 0.7;
}
.search__close svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.search__form {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: auto;
}
.search__form input {
  width: 100%;
  height: 72px;
  padding: 0 16px;
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
  color: white;
}
.search__form input::-webkit-input-placeholder {
  color: white;
}
.search__form input::-moz-placeholder {
  color: white;
}
.search__form input:-ms-input-placeholder {
  color: white;
}
.search__form input::-ms-input-placeholder {
  color: white;
}
.search__form input::placeholder {
  color: white;
}
.search__form svg {
  position: absolute;
  top: calc(50% - 12px);
  right: 16px;
  stroke: white;
}

.header {
  position: relative;
  z-index: 50;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .header {
    background: white;
    border-radius: 0 0 8px 8px;
  }
  .white-header .header {
    background: none;
  }
}
.header .container {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
}
.header .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 370px;
  height: 100%;
  background: white;
  border-radius: 0 0 8px 8px;
}
@media only screen and (max-width: 1259px) {
  .header .container:before {
    width: 338px;
  }
}
@media only screen and (max-width: 1023px) {
  .header .container:before {
    display: none;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
  margin: 0 80px 0 24px;
}
@media only screen and (max-width: 1259px) {
  .header__logo {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__logo {
    margin-left: 0;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media only screen and (max-width: 1023px) {
  .header__inner {
    position: absolute;
    top: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 100px 40px 80px;
    background: #0D1B1E;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .header__inner {
    padding: 100px 20px 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__inner.visible {
    opacity: 1;
    pointer-events: all;
  }
}
.header__inner.visible .header__catalog {
  pointer-events: all;
}
.header .subtitle {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header .subtitle {
    display: block;
    order: 1;
    margin-bottom: 24px;
    color: white;
  }
}
@media only screen and (max-width: 767px) {
  .header .subtitle {
    font-size: 24px;
  }
}
.header__group {
  margin-right: 72px;
}
@media only screen and (max-width: 1259px) {
  .header__group {
    margin-right: 56px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__group {
    order: 2;
    margin: 0 0 40px;
  }
}
.header__group:hover .header__toggle {
  background: #f9f9f9;
  color: #41B6E6;
}
.header__group:hover .header__toggle svg {
  stroke: #41B6E6;
}
.header__group:hover .header__catalog {
  opacity: 1;
  pointer-events: all;
}
.header__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 119px;
  height: 32px;
  padding: 0 16px;
  background: #0D1B1E;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
@media only screen and (max-width: 1023px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle svg {
  margin-right: 8px;
  stroke: white;
  transition: stroke 0.2s;
}
.header__catalog {
  position: relative;
  display: grid;
  /*grid-template-columns: 278px repeat(2, 1fr);*/
  grid-template-columns: 20% repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  grid-column-gap: 54px;
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  padding: 32px 40px 40px;
  background: white;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  /*border-radius: 8px;*/
  font-weight: 600;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 1023px) {
  .header__catalog {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    background: none;
    border: none;
    opacity: 1;
  }
}
.header__catalog:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 28px;
}
@media only screen and (max-width: 1023px) {
  .header__cell {
    border-bottom: 1px solid #132326;
  }
}
/*
.header__cell:nth-child(1) {
  grid-area: 1/1/3/2;
}
.header__cell:nth-child(2) {
  grid-area: 1/2/3/3;
}
.header__cell:nth-child(3) {
  grid-area: 1/3/2/4;
  margin-bottom: 58px;
}
 */
@media only screen and (max-width: 1023px) {
  .header__cell:nth-child(3) {
    margin: 0;
  }
}
/*
.header__cell:nth-child(4) {
  grid-area: 2/3/3/4;
}
 */
.header__cell li:not(:last-child) {
  margin-bottom: 24px;
}
.header__cell a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .header__cell a {
    color: white;
  }
}
.header__cell a:hover {
  border-color: #0D1B1E;
}
.header__category {
  margin-bottom: 24px;
  font-size: 16px;
}
@media only screen and (max-width: 1023px) {
  .header__category {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
  }
}
.header__collapse {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__collapse {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
  }
  .header__collapse.active:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .header__collapse:before, .header__collapse:after {
    content: "";
    position: absolute;
    top: 19px;
    left: 12px;
    width: 16px;
    height: 2px;
    background: white;
  }
  .header__collapse:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}
@media only screen and (max-width: 1023px) {
  .header__preview {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .header__list {
    display: none;
    padding: 12px 0 24px;
  }
  .header__list.visible {
    display: block;
  }
}
.header__lang a, .header__nav a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .header__lang a, .header__nav a {
    color: white;
  }
}
.white-header .header__lang a, .white-header .header__nav a {
  color: white;
}
.header__lang a:hover, .header__nav a:hover {
  border-color: #0D1B1E;
}
.white-header .header__lang a:hover, .white-header .header__nav a:hover {
  border-color: white;
}
.header__lang a.active, .header__nav a.active {
  border-color: transparent;
  color: #8A8B8E;
}
.header__lang a.active:hover, .header__nav a.active:hover {
  border-color: transparent;
}
.header__lang {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .header__lang {
    order: 4;
    justify-content: center;
  }
}
.header__lang li:not(:first-child) {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #8A8B8E;
}
.header__nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .header__nav {
    order: 3;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav {
    flex-direction: column;
  }
}
.header__nav a:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (max-width: 1259px) {
  .header__nav a:not(:last-child) {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__nav a:not(:last-child) {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav a:not(:last-child) {
    margin: 0 0 24px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .header__nav a:first-child {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav a {
    justify-content: center;
  }
}
.header__search {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0;
  transition: background 0.2s;
}
@media only screen and (max-width: 1023px) {
  .header__search {
    display: none;
  }
}
.header__search:hover {
  background: #f9f9f9;
}
.header__search:hover svg {
  stroke: #41B6E6;
}
.white-header .header__search:hover svg {
  stroke: #41B6E6;
}
.header__search svg {
  stroke: #0D1B1E;
  transition: stroke 0.2s;
}
.white-header .header__search svg {
  stroke: white;
}
.header__socials {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__socials {
    display: flex;
    justify-content: center;
    order: 5;
    margin-top: 40px;
  }
  .header__socials li {
    margin: 0 12px;
  }
  .header__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .header__socials a:hover svg {
    fill: #41B6E6;
  }
  .header__socials svg {
    fill: white;
    transition: fill 0.2s;
  }
}
.header__burger {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__burger {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-left: auto;
  }
  .header__burger.active span {
    background: white;
  }
  .header__burger.active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  .header__burger.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header__burger.active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__burger span {
    position: absolute;
    left: 4px;
    width: 32px;
    height: 4px;
    background: #0D1B1E;
    border-radius: 2px;
    transition: background 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, transform 0.2s;
    transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
  }
  .header__burger span:nth-child(1) {
    top: 10px;
  }
  .header__burger span:nth-child(2) {
    top: 18px;
  }
  .header__burger span:nth-child(3) {
    top: 26px;
  }
  .white-header .header__burger span {
    background: white;
  }
}

.owl-dots {
  display: flex;
}
.owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  background: #CECECE;
  border-radius: 3px;
  transition: width 0.2s, background 0.2s;
}
@media only screen and (max-width: 767px) {
  .owl-dots button.owl-dot {
    width: 8px;
    height: 8px;
  }
}
.owl-dots button.owl-dot:not(:last-child) {
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .owl-dots button.owl-dot:not(:last-child) {
    margin-right: 8px;
  }
}
.owl-dots button.owl-dot:hover {
  background: #41B6E6;
}
.owl-dots button.owl-dot.active {
  width: 24px;
  background: #0D1B1E;
}

.hero {
  position: relative;
  margin-top: -88px;
}
@media only screen and (max-width: 767px) {
  .hero {
    margin-top: -28px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__carousel {
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.hero__slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height:100vh;
}
.hero__slide .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 720px;
  padding-top: 192px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .hero__slide .container {
    justify-content: center;
    height: 500px;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__slide {
    height:auto;
  }
  .hero__slide .container {
    display: none;
  }
}
.hero__image {
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 767px) {
  .hero__image {
    position: static;
    aspect-ratio: 1;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .hero__image img {
    -o-object-position: 66% 50%;
    object-position: 66% 50%;
  }
}
.hero__main {
  max-width: 480px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1023px) {
  .hero__main {
    max-width: 320px;
    margin: 0;
  }
}
.hero .title {
  margin-bottom: 8px;
}
.hero__text {
  margin-bottom: 32px;
  font-size: 24px;
}
.hero__btns {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hero__btns {
    flex-direction: column;
  }
}
.hero__btns .btn {
  margin-right: 32px;
}
@media only screen and (max-width: 1023px) {
  .hero__btns .btn {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__btns .btn {
    width: 100%;
    margin: 0 0 24px;
    background: #0D1B1E;
    color: white;
  }
  .hero__btns .btn:hover {
    background: #41B6E6;
  }
}
.hero__about {
  max-width: 356px;
  margin-top: auto;
}
@media only screen and (max-width: 1023px) {
  .hero__about {
    display: none;
  }
}
.hero__caption {
  margin-bottom: 16px;
  font-weight: 600;
}
.hero .owl-dots {
  position: absolute;
  right: calc(50vw - 648px);
  bottom: 64px;
}
@media only screen and (max-width: 1376px) {
  .hero .owl-dots {
    right: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .owl-dots {
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero .owl-dots {
    position: absolute;
    top: calc(100vw - 40px);
    left: 0;
    right: 0;
    bottom: auto;
    justify-content: center;
    padding-top: 32px;
    background: linear-gradient(transparent, white);
  }
}
.hero__mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hero__mobile {
    display: block;
  }
}
.hero__section {
  margin-top: 32px;
  padding-bottom: 4px;
  background: white;
}
.hero .owl-carousel .animated {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.about {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding-top: 56px;
  background: white;
  border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 767px) {
  .about {
    padding-top: 80px;
  }
}
.about .container {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .about .container {
    display: block;
  }
}
.about__col:first-child {
  max-width: 32%;
  flex: 0 0 32%;
  margin-right: 10%;
}
@media only screen and (max-width: 767px) {
  .about__col:first-child {
    max-width: 100%;
    margin: 0;
  }
}
.about__col:last-child {
  flex: 0 0 58%;
}
.about__founded {
  max-width: 250px;
  margin-bottom: 110px;
  font-size: 24px;
  color: #8A8B8E;
}
@media only screen and (max-width: 767px) {
  .about__founded {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.about__images {
  position: relative;
  aspect-ratio: 0.75/1;
  background: black;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .about__images {
    display: none;
  }
}
.about__group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__group img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.about__group img.active {
  opacity: 1;
}
.about .title {
  margin-bottom: 16px;
}
.about__text {
  max-width: 416px;
  margin-bottom: 84px;
}
@media only screen and (max-width: 1023px) {
  .about__text {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .about__text {
    margin-bottom: 24px;
  }
}
.about__catalog {
  counter-reset: numbers;
}
.about__catalog li {
  position: relative;
  border-bottom: 1px solid #CECECE;
  transition: border-color 0.2s;
}
.about__catalog li:before {
  counter-increment: numbers;
  content: "0" counter(numbers);
  position: absolute;
  top: 24px;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: #8A8B8E;
  transition: color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .about__catalog li:before {
    color: #0D1B1E;
  }
}
@media only screen and (max-width: 767px) {
  .about__catalog li:before {
    top: 19px;
  }
}
.about__catalog li.active {
  border-color: #0D1B1E;
}
.about__catalog li.active:before {
  color: #0D1B1E;
}
.about__catalog li.active:hover .line {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.about__catalog li.active .subtitle {
  color: #0D1B1E;
}
.about__catalog li.active .link {
  opacity: 1;
}
.about__catalog li.active .line {
  -webkit-animation: progress 5s linear;
  animation: progress 5s linear;
}
.about__catalog li:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .about__catalog li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.about__catalog a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 0 12px 80px;
}
@media only screen and (max-width: 767px) {
  .about__catalog a {
    min-height: 56px;
    padding-left: 48px;
  }
}
.about__catalog .subtitle {
  color: #8A8B8E;
  transition: color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .about__catalog .subtitle {
    color: #0D1B1E;
  }
}
.about__catalog .link {
  opacity: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 1023px) {
  .about__catalog .link {
    display: none;
  }
}
.about__catalog .line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #0D1B1E;
}
@media only screen and (max-width: 1023px) {
  .about__catalog .line {
    display: none;
  }
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .head {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .head .link {
    display: none;
  }
}

.card {
  position: relative;
}
.card__inner {
  display: block;
}
.card__inner:hover .subtitle {
  border-color: #0D1B1E;
}
.card__inner:hover .card__preview img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card__types {
  display: flex;
  align-items: center;
  max-width: calc(100% - 40px);
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
}
.card__type {
  margin-right: 10px;
}
.card__counter {
  padding: 2px 8px;
  background: #0D1B1E;
  border-radius: 4px;
  color: white;
}
.card__preview {
  margin-bottom: 32px;
}
.card__preview img {
  width: 100%;
  max-width: 216px;
  margin: 0 auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.card .subtitle {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #CECECE;
  transition: border-color 0.2s;
}
.card__category {
  font-size: 14px;
  font-weight: 600;
  color: #8A8B8E;
}
.card__view {
  position: absolute;
  top: -4px;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0;
  transition: background 0.2s;
}
.card__view:hover {
  background: #f9f9f9;
}
.card__view:hover svg {
  fill: #41B6E6;
}
.card__view svg {
  width: 24px;
  height: 24px;
  transition: fill 0.2s;
}

.section {
  margin-bottom: 128px;
}
@media only screen and (max-width: 767px) {
  .section {
    margin-bottom: 80px;
  }
}
.section--cards {
  overflow: hidden;
}
.section--cards .owl-stage-outer {
  overflow: visible;
}

@media only screen and (max-width: 767px) {
  .popular .card {
    width: 70vw;
  }
}

.media {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 630px;
}
@media only screen and (max-width: 1023px) {
  .media {
    height: 520px;
  }
}
@media only screen and (max-width: 767px) {
  .media {
    height: 400px;
  }
}
.media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.media .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 56px;
}
.media .title {
  max-width: 380px;
  color: white;
}

.more {
  margin-top: 80px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .more {
    margin-top: 40px;
  }
}
.more--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .more--mobile {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .more .btn {
    width: 100%;
  }
}

.shops__head {
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .shops__head {
    margin-bottom: 40px;
  }
}
.shops__label {
  margin-bottom: 24px;
  font-size: 24px;
  color: #8A8B8E;
}
@media only screen and (max-width: 767px) {
  .shops__label {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.shops__text {
  position: relative;
  top: -3px;
  max-width: 400px;
  font-size: 24px;
  color: #8A8B8E;
}
@media only screen and (max-width: 1023px) {
  .shops__text {
    max-width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .shops__text {
    top: 0;
    font-size: 16px;
  }
}
.shops__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px -64px;
}
@media only screen and (max-width: 767px) {
  .shops__list {
    margin: 0 -10px -40px;
  }
}
.shops__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(20% - 80px);
  margin: 0 40px 64px;
}
@media only screen and (max-width: 1023px) {
  .shops__list li {
    flex: 0 0 calc(33.33% - 80px);
  }
  .shops__list li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .shops__list li {
    flex: 0 0 calc(33.33% - 20px);
    margin: 0 10px 40px;
  }
}
.shops__list a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.shops__list img {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.shops--all .shops__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .shops--all .shops__head {
    display: block;
  }
}
.shops--all .shops__head .title {
  max-width: 380px;
  margin-right: 80px;
}
@media only screen and (max-width: 767px) {
  .shops--all .shops__head .title {
    margin-bottom: 16px;
  }
}
.shops--all .shops__head .title--large {
  max-width: 636px;
}
.shops--all .shops__head .title--large + .shops__text {
  top: -8px;
}
@media only screen and (max-width: 767px) {
  .shops--all .shops__head .title--large + .shops__text {
    top: 0;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -64px;
  counter-reset: numbers;
}
@media only screen and (max-width: 767px) {
  .features {
    display: block;
    margin: 0;
  }
}
.features__item {
  flex: calc(33.33% - 24px);
  margin: 0 12px 64px;
}
@media only screen and (max-width: 767px) {
  .features__item {
    margin: 0 0 40px;
  }
}
.features__item:before {
  counter-increment: numbers;
  content: "0" counter(numbers);
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #CECECE;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .features__item:before {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.features .subtitle {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .features .subtitle {
    margin-bottom: 16px;
  }
}
.features__text {
  color: #8A8B8E;
}

.badge {
  padding: 6px 16px;
  background: #41B6E6;
  border-radius: 8px;
  font-weight: 600;
  color: white;
}

.date {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #8A8B8E;
}

.posts {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -40px;
}
@media only screen and (max-width: 767px) {
  .posts {
    display: block;
    margin: 0 0 40px;
  }
}
.posts__item {
  flex: 0 0 calc(50% - 24px);
  margin: 0 12px 40px;
}
@media only screen and (max-width: 767px) {
  .posts__item {
    margin: 0 0 40px;
  }
}
.posts__link {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #CECECE;
  transition: border-color 0.2s;
}
@media only screen and (max-width: 1023px) {
  .posts__link {
    display: block;
  }
}
.posts__link:hover {
  border-color: #0D1B1E;
}
.posts__link:hover .posts__preview img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.posts__preview {
  position: relative;
  flex: 0 0 196px;
  margin-right: 40px;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .posts__preview {
    display: block;
    width: 196px;
    margin: 0 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .posts__preview {
    width: 100%;
  }
}
.posts__preview img {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media only screen and (max-width: 767px) {
  .posts__preview img {
    width: 100%;
    aspect-ratio: 370/240;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.posts .badge {
  position: absolute;
  top: 8px;
  left: 8px;
}
.posts .subtitle {
  margin-bottom: 16px;
}
.posts .subtitle a {
  transition: color 0.2s;
}
.posts .subtitle a:hover {
  color: #41B6E6;
}
.posts__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #8A8B8E;
  overflow: hidden;
}

.footer {
  color: white;
}
.footer__inner {
  padding: 50px 0 56px;
  background: #0D1B1E;
}
.footer__inner .container {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer__inner .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__cell {
  flex: 0 0 20%;
  margin-right: 5%;
}
@media only screen and (max-width: 1259px) {
  .footer__cell {
    flex: 0 0 25%;
  }
}
@media only screen and (max-width: 767px) {
  .footer__cell {
    flex: 0 0 100%;
    margin: 0 0 56px;
  }
}
.footer__cell:nth-child(1) {
  margin-bottom: 56px;
}
@media only screen and (max-width: 1023px) {
  .footer__cell:nth-child(1) {
    flex: 0 0 100%;
    margin: 0 0 56px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(1) {
    order: 1;
  }
}
.footer__cell:nth-child(2) {
  flex: 0 0 50%;
}
@media only screen and (max-width: 1259px) {
  .footer__cell:nth-child(2) {
    flex: 0 0 55%;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__cell:nth-child(2) {
    flex: 0 0 80%;
    align-self: center;
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(2) {
    order: 2;
  }
}
.footer__cell:nth-child(3) {
  margin: 0;
}
@media only screen and (max-width: 1259px) {
  .footer__cell:nth-child(3) {
    flex: 0 0 10%;
  }
}
@media only screen and (max-width: 1023px) {
  .footer__cell:nth-child(3) {
    flex: 0 0 15%;
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(3) {
    order: 4;
  }
}
.footer__cell:nth-child(4), .footer__cell:nth-child(5), .footer__cell:nth-child(6) {
  flex: 0 0 30%;
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(4) {
    order: 3;
  }
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(5) {
    order: 5;
  }
}
.footer__cell:nth-child(6) {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__cell:nth-child(6) {
    order: 6;
  }
}
.footer__logo {
  display: inline-flex;
}
.footer__nav a, .footer__contacts a, .footer__catalog a, .footer__links a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.footer__nav a:hover, .footer__contacts a:hover, .footer__catalog a:hover, .footer__links a:hover {
  border-color: inherit;
}
.footer__nav {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer__nav a {
  color: white;
}
.footer__nav a:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (max-width: 767px) {
  .footer__nav a:not(:last-child) {
    margin: 0 0 40px;
  }
}
.footer__socials {
  display: flex;
  justify-content: flex-end;
}
.footer__socials li:not(:last-child) {
  margin-right: 24px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.footer__socials a:hover svg {
  fill: #41B6E6;
}
.footer__socials svg {
  fill: white;
  transition: fill 0.2s;
}
.footer__contacts li:not(:last-child) {
  margin-bottom: 48px;
}
.footer__contacts p:first-child {
  font-size: 14px;
}
.footer__contacts a {
  color: white;
}
.footer__catalog:not(.footer__catalog:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .footer__catalog:not(.footer__catalog:last-child) {
    margin-bottom: 56px;
  }
}
.footer__catalog li:not(:last-child) {
  margin-bottom: 22px;
}
.footer__catalog li:first-child a {
  color: white;
}
.footer__catalog a {
  color: #8A8B8E;
  transition: color 0.2s;
}
.footer__bottom {
  padding: 16px 0;
  background: #132326;
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    padding: 32px 0;
  }
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer__bottom .container {
    flex-direction: column;
    align-items: center;
  }
}
.footer__links {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
}
.footer__links li:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .footer__links li:not(:last-child) {
    margin: 0 0 32px;
  }
}
.footer__links a {
  color: #8A8B8E;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs {
  position: relative;
  z-index: 4;
  min-height: 20px;
  margin-bottom: 80px;
  color: #8A8B8E;
}
@media only screen and (max-width: 1023px) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs li:not(:last-child) {
    margin-right: 10px;
  }
}
.breadcrumbs li:not(:last-child):after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 8px;
  margin-left: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8'%3E%3Cpath fill='%238a8b8e' d='M4.446 4.356a.5.5 0 0 0 0-.707L1.264.466a.5.5 0 0 0-.707.707l2.828 2.828L.556 6.83a.5.5 0 0 0 .707.707l3.182-3.182zm-.854.146h.5v-1h-.5v1z'/%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .breadcrumbs li:not(:last-child):after {
    margin-left: 10px;
  }
}
.breadcrumbs a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.white-header .breadcrumbs a {
  color: white;
}
.breadcrumbs a:hover {
  border-color: #0D1B1E;
}
.white-header .breadcrumbs a:hover {
  border-color: white;
}

.catalog .container {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1023px) {
  .catalog .container {
    display: block;
  }
}
.catalog__col:first-child {
  position: sticky;
  top: 80px;
  width: 25%;
  margin-right: 10%;
}
.category--title {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1023px) {
  .catalog__col:first-child {
    position: static;
    margin: 0 0 80px;
    display: none;
  }
}
.catalog__col:first-child .title {
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .catalog__col:first-child .title {
    margin-bottom: 40px;
  }
}
.catalog__col:last-child {
  width: 65%;
}
@media only screen and (max-width: 1023px) {
  .catalog__col:last-child {
    width: 100%;
  }
}
.catalog__col:last-child .title {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CECECE;
}
.catalog__list, .catalog__sub {
  counter-reset: numbers;
}
.catalog__section {
  position: relative;
  margin-bottom: 32px;
  border-bottom: 1px solid #CECECE;
  transition: border-color 0.2s;
}
.catalog__section:hover {
  border-color: #0D1B1E;
}
@media only screen and (max-width: 767px) {
  .catalog__section {
    margin-bottom: 24px;
  }
}
.catalog__section.active {
  border-color: #0D1B1E;
}
.catalog__section.active .catalog__category {
  color: #0D1B1E;
}
.catalog__section.active .catalog__toggle:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.catalog__category {
  position: relative;
  display: block;
  padding: 6px 40px 18px 84px;
  font-size: 24px;
  font-weight: 600;
  color: #8A8B8E;
  transition: color 0.2s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .catalog__category {
    padding-left: 40px;
    font-size: 16px;
  }
}
.catalog__category:hover {
  color: #0D1B1E;
}
.catalog__category:before {
  counter-increment: numbers;
  content: "0" counter(numbers);
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .catalog__category:before {
    top: 6px;
  }
}
.catalog__toggle {
  position: absolute;
  top: 10px;
  right: 0;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .catalog__toggle {
    top: 8px;
    width: 16px;
    height: 16px;
  }
}
.catalog__toggle:before, .catalog__toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #0D1B1E;
}
.catalog__toggle:before {
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.catalog__sub {
  display: none;
  padding-bottom: 24px;
}
.catalog__sub li:not(:last-child) {
  margin-bottom: 8px;
}
.catalog__sub a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 38px 10px 84px;
  border-bottom: 1px solid #CECECE;
  color: #8A8B8E;
  transition: border-color 0.2s, color 0.2s;
}
.catalog__sub a:hover, .catalog__sub a.active {
  border-color: #0D1B1E;
  color: #0D1B1E;
}
.catalog__sub a:hover:after, .catalog__sub a.active:after {
  opacity: 1;
}
.catalog__sub a:before, .catalog__sub a:after {
  position: absolute;
  pointer-events: none;
}
.catalog__sub a:before {
  counter-increment: numbers;
  content: counters(numbers, ".", decimal) " ";
  top: 10px;
  left: 28px;
}
.catalog__sub a:after {
  content: "";
  top: 16px;
  right: 0;
  width: 26px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='8' fill='%230D1B1E'%3E%3Cpath d='M1 3.5a.5.5 0 1 0 0 1v-1zm24.354.854a.5.5 0 0 0 0-.707L22.172.464a.5.5 0 0 0-.707.707L24.293 4l-2.828 2.828a.5.5 0 0 0 .707.707l3.182-3.182zM1 4.5h24v-1H1v1z'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 0.2s;
}
.catalog__cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media only screen and (max-width: 767px) {
  .catalog__cards {
    margin: 0 -8px;
  }
}
.catalog__cards li {
  flex: 0 0 calc(33.333% - 24px);
  margin: 0 12px 80px;
}
@media only screen and (max-width: 1023px) {
  .catalog__cards li {
    flex: 0 0 calc(33.33% - 24px);
  }
}
@media only screen and (max-width: 767px) {
  .catalog__cards li {
    flex: 0 0 calc(50% - 16px);
    margin: 0 8px 40px;
  }
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager__link {
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  border: solid transparent;
  border-width: 0 1px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.pager__link:hover {
  color: #8A8B8E;
}
.pager__link:hover svg {
  fill: #8A8B8E;
}
.pager__link.active {
  border-color: #8A8B8E;
  color: #8A8B8E;
}
.pager__link svg {
  width: 26px;
  height: 8px;
  transition: fill 0.2s;
}
.pager__link--prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.details__item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CECECE;
}
.details__label {
  margin-bottom: 12px;
  color: #8A8B8E;
}
.details__options {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px -8px 0;
}
.details__options li {
  margin: 0 8px 8px 0;
}
.details__options a {
  display: block;
  padding: 6px 16px;
  background: white;
  border: 1px solid #CECECE;
  border-radius: 8px;
  font-weight: 600;
  transition: border-color 0.2s;
}
.details__options a:hover, .details__options li.selected a {
  border-color: #41B6E6;
}
.details__options a[style] {
  color: white;
}

.product .container {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1023px) {
  .product .container {
    flex-direction: column-reverse;
  }
}
.product__gallery {
  margin-right: 10%;
}
.product__sidebar {
  flex: 0 0 40%;
  padding-top: 28px;
}
@media only screen and (max-width: 1023px) {
  .product__sidebar {
    margin: 0;
    padding: 0;
  }
  .product__gallery {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .product__section:first-child {
    padding: 40px;
    background: #f9f9f9;
  }
}
@media only screen and (max-width: 767px) {
  .product__section:first-child {
    margin: 0 -10px;
    padding: 24px;
  }
}
.product__section:not(:last-child) {
  margin-bottom: 128px;
}
@media only screen and (max-width: 1023px) {
  .product__section:not(:last-child) {
    margin-bottom: 80px;
  }
}
.product__section .title {
  margin-bottom: 56px;
}
@media only screen and (max-width: 767px) {
  .product__section .title {
    margin-bottom: 24px;
  }
}
.product__section .title--large {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1259px) {
  .product__section .title--large {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .product__section .title--large {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.product__text {
  margin-bottom: 64px;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .product__text {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.product__param {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #CECECE;
}
.product__param:not(:last-child) {
  margin-bottom: 32px;
}
.product__about p:not(:last-child) {
  margin-bottom: 20px;
}
.product__cell:first-child {
  flex-shrink: 0;
  margin-right: 40px;
  color: #8A8B8E;
}
.product__cell:last-child {
  text-align: right;
}
.product__cell ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -16px -8px 0;
}
.product__cell li {
  margin: 0 16px 8px 0;
}
.product__gallery {
  position: sticky;
  top: 88px;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 40px 128px;
  background: #f9f9f9;
}
@media only screen and (max-height: 840px) {
  .product__gallery {
    top: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .product__gallery {
    position: static;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product__gallery {
    max-width: calc(100vw - 20px);
    width: calc(100vw - 20px);
    margin: 0 -10px;
    padding: 24px 24px 56px;
    border-radius: 8px;
  }
}
.product__id {
  margin-bottom: 32px;
  font-size: 14px;
  color: #8A8B8E;
}
.product__id strong {
  color: #0D1B1E;
}
.product__image {
  max-height: calc(100vh - 216px);
}
.product__image img {
  margin: 0 auto;
  width: auto !important;
  max-height: calc(100vh - 216px);
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product .owl-nav {
  position: absolute;
  right: 0;
  bottom: -88px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .product .owl-nav {
    display: none;
  }
}
.product .owl-nav button.owl-prev,
.product .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  font-size: 0;
  transition: background 0.2s;
}
.product .owl-nav button.owl-prev:hover,
.product .owl-nav button.owl-next:hover {
  background: #0D1B1E;
}
.product .owl-nav button.owl-prev:hover svg,
.product .owl-nav button.owl-next:hover svg {
  fill: white;
}
.product .owl-nav button.owl-prev svg,
.product .owl-nav button.owl-next svg {
  width: 12px;
  height: 20px;
  transition: fill 0.2s;
}
.product .owl-nav button.owl-prev {
  margin-right: 16px;
}
.product .owl-nav button.owl-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product .owl-dots {
  position: absolute;
  left: 0;
  bottom: -88px;
}
@media only screen and (max-width: 767px) {
  .product .owl-dots {
    bottom: -32px;
    right: 0;
    justify-content: center;
  }
}

.articles {
  padding: 32px 40px;
  background: #f9f9f9;
  border-radius: 8px;
}
.articles li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #8A8B8E;
}
.articles .subtitle {
  margin-bottom: 16px;
}
.articles .subtitle a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.articles .subtitle a:hover {
  border-color: #0D1B1E;
}
.articles__text {
  max-width: 306px;
  margin-bottom: 24px;
  color: #8A8B8E;
}
.articles--main {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.articles--main .subtitle a {
  border-bottom: 1px solid transparent;
  color: white;
}
.articles--main .subtitle a:hover {
  border-color: white;
}
.articles--main .articles__text {
  color: white;
}

.main {
  position: relative;
  z-index: 2;
  margin: -188px 0 96px;
  padding: 74px 0 32px;
  background-position: center;
  background-size: cover;
  color: white;
}
@media only screen and (max-width: 1023px) {
  .main {
    margin-top: -148px;
  }
}
@media only screen and (max-width: 767px) {
  .main {
    margin-bottom: 64px;
    padding-bottom: 64px;
  }
}
.main:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 30, 0.5);
}
.main .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.main__col:first-child {
  display: flex;
  flex-direction: column;
  max-width: 636px;
  margin-right: 80px;
  padding-top: 104px;
}
@media only screen and (max-width: 1023px) {
  .main__col:first-child {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .main__col:first-child {
    margin: 0;
  }
}
.main__col:first-child .title--large {
  margin-bottom: 64px;
}
.main__col:last-child {
  max-width: 416px;
}
@media only screen and (max-width: 767px) {
  .main__col:last-child {
    display: none;
  }
}
.main__attention {
  max-width: 416px;
  margin-top: auto;
}
.main__attention .subtitle {
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #8A8B8E;
}
.main__attention .title {
  margin-bottom: 20px;
}
.main__attention .title a {
  border-bottom: 1px solid transparent;
  color: white;
  transition: border-color 0.2s;
}
.main__attention .title a:hover {
  border-color: white;
}
.main__attention .btn {
  border-color: white;
  color: white;
}
.main__attention .btn:hover {
  border-color: #41B6E6;
}
.main__text {
  max-width: 306px;
  margin-bottom: 24px;
}

.categories {
  margin-bottom: 80px;
}
.categories .subtitle {
  margin-bottom: 16px;
}
.categories__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px -8px 0;
}
.categories__list li {
  margin: 0 8px 8px 0;
}
.categories__list a {
  display: block;
  padding: 6px 16px;
  border: 1px solid #CECECE;
  border-radius: 8px;
  font-weight: 600;
  transition: border-color 0.2s;
}
.categories__list a:hover,.categories__list a.active {
  border-color: #41B6E6;
}

.assortment {
  display: flex;
  margin: 0 -12px -24px;
}
@media only screen and (max-width: 767px) {
  .assortment {
    display: block;
  }
}
.assortment__item {
  flex: 0 0 calc(50% - 24px);
  margin: 0 12px 24px;
}
.assortment__link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 400px;
  padding: 40px;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .assortment__link {
    padding: 24px;
  }
}
.assortment__link:hover .assortment__image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.assortment__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.assortment__image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #0D1B1E);
}
.assortment__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.assortment .badge {
  margin-bottom: 40px;
}
.assortment .date {
  margin: auto 0 8px;
}
.assortment .title {
  margin-bottom: 24px;
  color: white;
}

.share {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  background: #1877F2;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.share:hover {
  background: #0b5fcc;
}
.share svg {
  margin-right: 10px;
}

.article .container {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .article .container {
    display: block;
  }
}
.article__col:first-child {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 1259px) {
  .article__col:first-child {
    padding: 0 80px 0 0;
  }
}
@media only screen and (max-width: 1023px) {
  .article__col:first-child {
    max-width: 640px;
    padding: 0;
  }
}
.article__col:last-child {
  flex: 0 0 416px;
}
@media only screen and (max-width: 767px) {
  .article__col:last-child {
    margin-top: 80px;
  }
}
.article .title {
  margin-bottom: 24px;
}
.article__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.article__meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #B6B6B6;
}
.article__meta li {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.article__meta svg {
  margin-right: 4px;
}
.article__content {
  line-height: 1.6;
}
.article__content p,
.article__content h2,
.article__content h3,
.article__content figure,
.article__content blockquote,
.article__content ul,
.article__content li {
  margin-bottom: 24px;
}
.article__content h2 {
  font-size: 24px;
}
.article__content h3 {
  font-size: 16px;
}
.article__content blockquote {
  font-style: italic;
}
.article__content li {
  position: relative;
  padding-left: 36px;
}
.article__content li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 16px;
  width: 4px;
  height: 4px;
  background: #0D1B1E;
  border-radius: 50%;
}
.article__content strong,
.article__content b {
  font-weight: 600;
}
.article__content img {
  border-radius: 8px;
}
.article__content a {
  border-bottom: 1px solid #0D1B1E;
  transition: border-width 0.2s;
}
.article__content a:hover {
  border-bottom: 2px solid #0D1B1E;
}

.proove .container {
  max-width: 1160px;
}
.proove__title {
  margin-bottom: 64px;
  font-size: 80px;
  text-align: center;
}
.proove__title span {
  color: #41B6E6;
}
.proove__description {
  max-width: 720px;
  margin: 0 auto 128px;
  font-size: 24px;
  color: #8A8B8E;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .proove__description {
    margin-bottom: 80px;
  }
}
.proove__main {
  display: flex;
  align-items: center;
  margin-bottom: 128px;
}
@media only screen and (max-width: 767px) {
  .proove__main {
    display: block;
    margin-bottom: 80px;
  }
}
.proove__col {
  flex: 1;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .proove__col:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.proove__col img {
  width: 100%;
  max-width: 248px;
}
.proove .title {
  margin-bottom: 64px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .proove .title {
    margin-bottom: 40px;
  }
}
.proove__section {
  position: relative;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .proove__section {
    display: block;
  }
}
.proove__section:before {
  content: "";
  position: absolute;
  background: #41B6E6;
  top: 4px;
  left: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .proove__section:before {
    top: -2px;
    left: 0;
  }
}
.proove__section:not(:last-child) {
  padding-bottom: 128px;
}
@media only screen and (max-width: 767px) {
  .proove__section:not(:last-child) {
    padding-bottom: 80px;
  }
}
.proove__section:not(:last-child):after {
  content: "";
  position: absolute;
  background: #41B6E6;
  top: 16px;
  left: calc(50% - 2px);
  width: 4px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .proove__section:not(:last-child):after {
    left: 10px;
  }
}
.proove__cell {
  flex: 1;
}
.proove__cell:first-child {
  padding-right: 70px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .proove__cell:first-child {
    padding: 0 0 24px 70px;
    -moz-text-align-last: left;
    text-align-last: left;
  }
}
.proove__cell:last-child {
  padding-left: 70px;
}
.proove__label {
  margin-top: 4px;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .proove__label {
    display: none;
  }
}
.proove__text {
  margin-top: 24px;
}

.field.error .field__label {
  color: #E53030;
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #E53030;
}
.field.error .field__error {
  display: block;
}
.field__label {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.field__inner {
  position: relative;
}
.field__inner input,
.field__inner select,
.field__inner textarea {
  width: 100%;
  height: 40px;
  border: solid #CECECE;
  border-width: 0 0 1px;
  transition: border-color 0.2s;
}
.field__inner input:hover, .field__inner input:focus,
.field__inner select:hover,
.field__inner select:focus,
.field__inner textarea:hover,
.field__inner textarea:focus {
  border-color: #0D1B1E;
}
.field__inner input::-webkit-input-placeholder, .field__inner textarea::-webkit-input-placeholder {
  color: #8A8B8E;
}
.field__inner input::-moz-placeholder, .field__inner textarea::-moz-placeholder {
  color: #8A8B8E;
}
.field__inner input:-ms-input-placeholder, .field__inner textarea:-ms-input-placeholder {
  color: #8A8B8E;
}
.field__inner input::-ms-input-placeholder, .field__inner textarea::-ms-input-placeholder {
  color: #8A8B8E;
}
.field__inner input::placeholder,
.field__inner textarea::placeholder {
  color: #8A8B8E;
}
.field__inner input {
  padding: 0 8px;
}
.field__inner select {
  padding: 0 40px 0 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M12 12.71L8.46 9.17a1 1 0 0 0-1.41 0 1 1 0 0 0-.296.71 1 1 0 0 0 .296.71l4.24 4.24a1 1 0 0 0 .71.296 1 1 0 0 0 .71-.296L17 10.59a1 1 0 0 0 .29-.71 1 1 0 0 0-.29-.71 1 1 0 0 0-1.41 0L12 12.71z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: calc(100% - 8px) 50%;
}
.field__inner select:invalid {
  color: #8A8B8E;
}
.field__inner textarea {
  padding: 9px 8px;
  resize: none;
}
.field__error {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 12px;
  color: #E53030;
}

.partner .container {
  max-width: 1160px;
}
.partner__head {
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .partner__head {
    margin-bottom: 40px;
  }
}
.partner .title {
  margin-bottom: 16px;
}
.partner__row {
  display: flex;
  margin-bottom: 96px;
}
@media only screen and (max-width: 767px) {
  .partner__row {
    display: block;
    margin-bottom: 40px;
  }
}
.partner__col {
  flex: 1;
}
.partner__col:first-child {
  padding-right: 120px;
  border-right: 1px solid #CECECE;
}
@media only screen and (max-width: 1259px) {
  .partner__col:first-child {
    padding-right: 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .partner__col:first-child {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .partner__col:first-child {
    margin-bottom: 40px;
    padding-right: 0;
    border: none;
  }
}
.partner__col:last-child {
  padding-left: 120px;
}
@media only screen and (max-width: 1259px) {
  .partner__col:last-child {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 1023px) {
  .partner__col:last-child {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .partner__col:last-child {
    padding-left: 0;
  }
}
.partner .field:not(:last-child) {
  margin-bottom: 40px;
}
.partner__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner__foot .btn {
  min-width: 230px;
  min-height: 56px;
}
@media only screen and (max-width: 767px) {
  .partner__foot .btn {
    min-width: 100%;
  }
}
.partner__hint {
  max-width: 380px;
  margin-top: 24px;
  color: #8A8B8E;
  text-align: center;
}
.partner__hint a {
  border-bottom: 1px solid;
  color: #0D1B1E;
}

.buy {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .buy {
    flex-direction: column-reverse;
  }
}
.buy__col:first-child {
  flex: 0 0 320px;
  margin-right: 80px;
}
@media only screen and (max-width: 1023px) {
  .buy__col:first-child {
    margin: 40px 0 0;
  }
}
.buy__col:first-child .btn {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .buy__col:first-child .btn {
    display: inline-flex;
    width: 100%;
    margin-top: 40px;
    background: #0D1B1E;
    color: white;
  }
  .buy__col:first-child .btn:hover {
    background: #41B6E6;
  }
}
.buy__col:last-child {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: -32px -40px -32px 0;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 8px;
}
@media only screen and (max-width: 1023px) {
  .buy__col:last-child {
    margin: 0;
    padding: 0;
    background: none;
  }
}
.buy__col:last-child .btn {
  margin: 32px 0 0 auto;
}
@media only screen and (max-width: 1023px) {
  .buy__col:last-child .btn {
    display: none;
  }
}
.buy .subtitle {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .buy .subtitle {
    font-size: 24px;
  }
}
.buy__text {
  margin-bottom: 32px;
}
.buy__id {
  margin-bottom: 32px;
  font-size: 14px;
  color: #8A8B8E;
}
.buy__id strong {
  color: #0D1B1E;
}
.buy__preview {
  margin: auto;
}
.buy__preview img {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  padding: 24px;
  background: rgba(13, 27, 30, 0.95);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .modal {
    padding: 12px;
  }
}
.modal.visible {
  opacity: 1;
  pointer-events: all;
}
.modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  font-size: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 767px) {
  .modal__close {
    top: 16px;
    right: 16px;
  }
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close svg {
  width: 20px;
  height: 20px;
  fill: #0D1B1E;
}
.modal__container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 48px 56px;
  background: white;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .modal__container {
    padding: 24px;
  }
}
.details__options li.disabled a {
  opacity: 0.5;
}
.field__label.required:after {
  content: "*";
  margin-left: 5px;
  color: red;
  display: inline-block;
}
.without__social .footer__cell:nth-child(3) {
  flex: 0 0 0;
}
.without__social .footer__cell:nth-child(2) {
  margin-left: 10%;
}
@media only screen and (max-width: 1023px) {
  .without__social .footer__cell:nth-child(2) {
    margin-left: 0;
  }
}