@charset "UTF-8";

/*Обнуление*/

:root {
  --white: #fff;
  --bg-primary: #1d1d1b;
  --bg-secondary: #252523;
  --text-primary: #fff;
  --text-secondary: #8c8c8c;
  --text-dark: #1d1d1b;
  --text-tertiary: #a6a6a6;
  --accent-primary: #e94e1b;
  --accent-hover: #ff5a2a;
  --border-primary: #4d4d4d;
  --border-secondary: #e6e6e6;
  --state-error: #ff3b30;
  --state-success: #34c759;
  --font-family: "Tilda Sans", sans-serif;
  --second-family: "Dela Gothic One", sans-serif;
}
@font-face {
  font-family: "Dela Gothic One";
  src: url('../fonts/DelaGothicOne-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family:  var(--font-family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  background: var(--bg-primary);
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
  background: var(--bg-primary);
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  /*transition: all 300ms ease-in-out;*/
  border-radius: 0 6px 6px 0;
  padding: 15px 23px 15px 9px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  gap: 10px;
}

.buttons:hover  .button{
  background-color: #ffffff;
  box-shadow: 0 0 40px 40px #ffffff inset;
  color: var(--bg-primary);
  border-color: #ffffff;
}

.buttons:hover .button svg path{
  fill:var(--bg-primary);
}
.buttons:hover path{
  fill:#ffffff;
}
.buttons {
  display: flex;
  align-items: flex-start;
  margin-left: -24px;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}


.page {
  padding: 0 0 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 110%;
  color: var(--white);
  padding-bottom: 24px;
}
.banner__title{
  font-size: 56px;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 48px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.container {
  margin: 0 auto;
  padding: 0px 48px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
  padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 24px 0;
  position: absolute;
}

.header__container {
  padding: 0px 24px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  position: relative;
  z-index: 11;
  gap: 24px;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header__link {
  border: 2px solid #5F5B5B;
  padding: 15px 35px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  position: relative;
}
.header__content{
  display: none;
}
.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  background-color: var(--accent-primary);
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 100%;
}

.header__menu-button span {
  top: 50%;
  width: 100%;
  -webkit-transform: scale(1) translate(0px, -50%);
  -ms-transform: scale(1) translate(0px, -50%);
  transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
  -ms-transform: scale(0) translate(0px, -50%);
  transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
  -ms-transform: rotate(-45deg) translate(0px, -50%);
  transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
  -ms-transform: rotate(45deg) translate(0px, 50%);
  transform: rotate(45deg) translate(0px, 50%);
}





.menu._active {
  right: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 540px;
  padding: 48px 48px 24px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  border-radius: 8px;
}

.close-popup {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 24px;
  right: 24px;
  cursor: pointer;
}


@media (max-width: 1439px) {

  .subtitle {
    font-size: 30px;
  }
  .banner__title {
    font-size: 42px;
  }

}



@media (max-width: 767px) {

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
  .subtitle {
    font-size: 20px;
  }
  .banner__title {
    font-size: 28px;
  }
  .section {
    padding: 24px 0px;
  }
  .container{
    padding: 0 24px;
  }
  .buttons {
    margin-left: 0;
  }
  .popup__content {
    padding: 24px;
    max-width: 327px;
  }
}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 0;
}
.header__menu a:hover {
  color: var(--accent-primary);
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 25px;
  font-weight: 600;
  color: #5F5B5B;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__logo img {
  width: 135px;
}
.header__menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--bg-primary);
  border-right: 1px solid var(--border-secondary);
  padding: 0px 16px;
}
.header__button {
  padding: 0;
}
.menu-item--active a,
.current-menu-item a {
  color: var(--accent-primary);
}
.header__nav .banner__btns{
  display: none;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__content{
    display: flex;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
  }
  .header__content._active{
    width: 24px;
    height: 24px;
  }
  .header__nav .banner__btns{
    display: flex;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #fff;
    width: calc(100% - 24px);
    height: 100%;
    z-index: 11;
    overflow: auto;
    padding: 24px;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: flex;
    margin-left: 0;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
  }
  .header__nav .banner__href {
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    padding: 16px;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;
  }
  .header__menu a {
    font-size: 24px;
    padding: 0;
    border: none;
  }
  .menu._active .menu--container{
    padding: 0;
  }
  .header__body._active {
    align-items: baseline;
  }
}
.menu--container {
  border-radius: 10px;
  padding: 16px 0;
  background: var(--white);
}
.banner{
  background-image: url("../img/banner.jpg");
  min-height: 1024px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  position: relative;
  padding: 24px 0;
  background-attachment: fixed;
}
.banner:before {
  content: '';
  background-image: linear-gradient(180deg, #1d1d1b00 0%, #1D1D1B 100%);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.banner__container {
  margin: 0;
  position: relative;
}
.banner__video{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.banner__info {
  max-width: 1264px;
}
.banner__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-tertiary);
  padding-bottom: 32px;
}
.banner__btns {
  display: flex;
  gap: 16px;
}
.banner__href {
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 16px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
  transition: all 300ms ease-in-out;

}
.banner__href:hover{
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
}
.banner__stripe {
  position: absolute;
  right: 0;
  height: 100%;
  top: 24px;
  padding-right: 24px;
}
@media (max-width: 1439px) {
  .banner {
    min-height: 768px;
  }

}
@media (max-width: 960px) {
  .banner__title {
    max-width: 546px;
  }
}
@media (max-width: 767px) {
  .banner__stripe {
    display: none;
  }
  .banner {
    min-height: 600px;
  }
  .header {
    width: 100%;
  }
  .header__body {
    justify-content: space-between;
  }
  .banner__text {
    font-size: 16px;
    padding-bottom: 24px;
  }
  .banner__btns {
    flex-direction: column;
  }
  .buttons>svg {
    display: none;
  }
  .button {
    width: 100%;
    border-radius: 6px;
  }
  .banner__href {
    width: 100%;
    text-align: center;
  }
}

.breadcrumbs {
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__title {
  max-width: 1344px;
}
.about__infos{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__info, .about__infos p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
}
.hrefs__href {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
}
.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-around;
  align-items: end;
}
.href__a {
  margin-left: auto;
}
.hrefs__href:hover {
  color: var(--accent-primary);
}

.hrefs__href:hover svg {
  transform: translate(4px, 0px);
}
.hrefs__href svg {
  transition: all .5s;
}
@media (max-width: 1429px) {
  .about__row {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .about__info, .about__infos p {
    font-size: 18px;
  }
  .about__title {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
  .about__info, .about__infos p {
    max-width: 473px;
  }
  .about__a {
    min-width: 202px;
  }
}

@media (max-width: 767px) {
  .about__row {
    flex-direction: column;
  }
  .href__a {
    margin: 0;
  }
  .about__row {
    flex-direction: column;
    align-items: baseline;
  }
  .about__info, .about__infos p {
    font-size: 16px;
  }
}

.services__row{
  display: flex;
}
.services__item{
  width: 50%;
}
.services__item-options{
  padding: 48px 48px 24px 48px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services__title{
  padding-bottom: 0;
}
.services__options{
  display: flex;
  gap: 24px;
}
.option__item{
  width: 50%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: 24px;
  background: var(--text-secondary);
}
.option__item--black{
  background: var(--bg-primary);
}
.option__variant{
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.option__name{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
}
.services__title {
  padding-bottom: 0;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--bg-primary);
}
.services-swiper {
  height: 100%;
}
.services-swiper  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 740px;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  border: 2px solid var(--white);
  border-radius: 4px;
  opacity: 1;
  background: #ff000000;
  margin: 0!important;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  gap: 12px;
  right: 0;
  left: auto;
  justify-content: right;
  bottom: 48px;
  padding-right: 48px;
}
.services__slide{
  height: auto!important;
}
.services__swiper-wrapper{
  align-items: stretch;
}
.buttons--white:hover path {
  fill: #5F5B5B;
}
.buttons--white:hover .button {
  background-color: #5F5B5B;
  color: #ffffff;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
  border-color: #5F5B5B;
}
.buttons--white:hover .button svg path{
  fill:#ffffff
}

@media (max-width: 1429px) {
  .services__title {
    font-size: 18px;
  }
  .services__options {
    flex-direction: column;
  }
  .option__item {
    width: 100%;
    aspect-ratio: auto;
    height: 172px;
  }
  .option__name {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .services__row {
    flex-direction: column;
  }
  .services__item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .services__item-options {
    padding: 24px;
  }
  .services__title {
    font-size: 16px;
  }
  .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 24px;
    padding-right: 24px;
  }
}
.advantages__title{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--accent-primary);
}
.advantages_text{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
}
.advantages__item{
  background: var(--white);
  border-right: 1px solid var(--border-secondary);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}
.advantages__item:last-child{
  border-right: none;
}
.advantages__row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1429px) {
  .advantages__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__item {
    border-bottom: 1px solid var(--border-secondary);
  }
}
@media (max-width: 960px) {
  .advantages__title, .advantages_text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .advantages__row {
    grid-template-columns: 1fr;
  }
  .advantages__item {
    padding: 24px;
  }
  .advantages__title, .advantages_text {
    font-size: 16px;
  }
}
.privilege__row {
  display: flex;
  gap: 96px;
}
.privilege__item {
  width: 50%;
}
.privilege__item:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.privilege__ic {
  max-height: 150px;
}
.privilege__advantages {
  border-bottom: 1px solid var(--border-primary);
  padding: 18px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wow__hidden:last-child .privilege__advantages{
  border-bottom:none;
}
.privilege__names {
  display: flex;
  gap: 24px;
  align-items: center;
  cursor: pointer;
}
.privilege__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--white);
}
.privilege_infos {
  padding-left: 53px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.privilege__a {
  margin: 0;
}
.privilege_info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
}
.privilege_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privilege_infos {
  display: none;
}
.privilege__img {
  transition: all 300ms ease-in-out, color 300ms ease-in-out;
}
.advantages__body--active .privilege__img {
  transform: rotate(45deg);
}
.privilege_infos {
  max-height: 0;
  overflow: hidden;
}
.advantages__body--active .privilege_infos {
  display: flex;
  max-height: 100vh;
  transition: 0.5s ease-in;
}
.advantages--fadeIn .privilege_infos {
  -webkit-animation-name: fadeIn !important;
  animation-name: fadeIn !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.advantages--fadeOff .privilege_infos {
  -webkit-animation-name: fadeOff !important;
  animation-name: fadeOff !important;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.privilege__a {
  padding-bottom: 12px;
}
@media (max-width: 1429px) {
  .privilege__row {
    flex-direction: column;
    gap: 0;
  }
  .privilege__item {
    width: 100%;
  }
  .privilege__item:first-child {
    flex-direction: row;
    align-items: start;
  }
  .privilege__name {
    font-size: 18px;
  }
  .privilege_info p {
    font-size: 18px;
  }
}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .privilege__ic {
    display: none;
  }
  .privilege__advantages {
    padding: 12px 0;
  }
}
.application__row{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.application__item{
  height: 288px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.application__img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 1s;
}
.application__text{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  z-index: 1;
}
.breadcrumbs__all {
  display: flex;
  padding-bottom: 48px;
  align-items: center;
}
.application__icon {
  width: 50px;
  z-index: 1;
}
.application__item:hover .application__img{
  transform: scale(1.1);
}
@media (max-width: 1429px) {
  .application__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .application__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer___row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__item:first-child {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__a {
  margin: 0;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__name {
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.footer__info .footer__href {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
}
.footer__href span {
  display: block;
}
.footer__copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--text-secondary);
}
.footer__politic {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--text-secondary);
}
.footer__copys {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1429px) {
  .footer__info .footer__href {
    font-size: 18px;
  }
  .footer__copys {
    flex-direction: column-reverse;
    gap: 24px;
  }

}
@media (max-width: 960px) {
  .footer___row {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer__item iframe {
    min-height: 512px;
  }
}

@media (max-width: 767px) {
  .footer__item iframe {
    min-height: 375px;
  }
  .footer__item:first-child {
    padding: 24px;
  }
  .footer__info .footer__href {
    font-size: 16px;
  }
  .breadcrumbs__all {
    flex-direction: column;
    gap: 24px;
    align-items: baseline;
    padding-bottom: 24px;
  }
}
.feedback__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feedback__img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.feedback__imgs {
  position: relative;
}
.feedback__item {
  padding: 48px 48px 24px;
  background: #ffffff;
}
.feedback__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--bg-primary);
}
.feedback__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feedback__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--bg-primary);
}
.feedback__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CF7 автоматически конвертирует переносы строк в <br> — скрываем их */
.feedback__block br {
  display: none;
}

.feedback__block {
  border: 1px solid var(--border-secondary);
  border-radius: 10px;
  padding: 16px 12px 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
}
input, input::placeholder, textarea, textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-secondary);
}
.feedback__text span{
  display: block;
}
.feedback__agree {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-secondary);
  padding: 12px 0;
}
.feedback__agree a{
  display: inline;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.feedback__form--success {
  display: none;
}
@media (max-width: 1429px) {
  .feedback__title {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .feedback__row {
    display: flex;
    flex-direction: column;
  }
  .feedback__img {
    position: relative;
  }
  .feedback__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .feedback__item {
    padding: 24px;
  }
  .feedback__button {
    width: 100%;
  }
}
.banner-contacts{
  background-image: url(../img/banner-contacts.jpg);
  min-height: 682px;
}
.banner-services{
  min-height: 682px;
  background-image: url(../img/banner-service.png);
}
.banner-services .banner__text {
  max-width: 672px;
}
.banner__container .wow__hidden{
  margin-left: -24px;
}
.banner__container .banner__info{
  padding-left: 24px;
}
@media (max-width: 1429px) {

}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .banner-contacts {
    min-height: 332px;
  }
  .banner__container {
    width: 100%;
  }
}
.footer__contacts{
  height: 488px;
}
.footer__item-contacts {
  padding: 48px;
}
.contacts__row{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 48px;
}
.contacts__name{
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.contacts__text{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
}
.contacts__text a{
  color: var(--white);
}
.banner__info{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__text span {
  display: flex;
}
@media (max-width: 1429px) {
  .contacts__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .contacts__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .footer__contacts{
    height: 375px;
  }
  .footer__item-contacts {
    padding: 24px;
  }
  .contacts__text {
    font-size: 16px;
  }
  .contacts__row {
    gap: 24px;
  }
}
.banner-about{
  min-height: 682px;
  background-image: url(../img/banner-about.png);
}
.banner-about .banner__text {
  max-width: 672px;
}
@media (max-width: 1429px) {
  .banner-about .banner__text {
    max-width: 738px;
  }
}
@media (max-width: 960px) {
  .banner-about .banner__text {
    max-width: 527px;
  }
}

@media (max-width: 767px) {
  .banner-about {
    min-height: 600px;
  }
}
.specifications__name{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--accent-primary);
}
.specifications__text{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
}
.specifications__item{
  display: flex;
  flex-direction: column;
  gap: 8px;

  padding: 48px;
}
.specifications__item:first-child{
  border-right: 1px solid var(--border-secondary);
}
.specifications__row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.specifications{
  background-color: #ffffff;
}
.komanda {
  position: relative;
}
.komanda__swiper--pagin {
  position: absolute;
  z-index: 2;
  top: calc(50% - 22px);
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 48px;
}
.komanda__swiper-button-prev, .komanda__swiper-button-next{
  cursor: pointer;
}
.komanda__swiper-wrapper {
  align-items: stretch;
}
.komanda__slide {
  height: auto;
}
@media (max-width: 1429px) {
  .specifications__name, .specifications__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .specifications__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .specifications__item {
    padding: 24px;
  }
  .specifications__item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-secondary);
  }
}
.komanda__slide img {
  max-height: 643px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

@media (max-width: 767px) {
  .komanda__swiper--pagin {
    padding: 0 24px;
  }
}
.certificates__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.certificates__images {
  max-width: 150px;
}
.certificates__item {
  border-bottom: 1px solid var(--border-primary);
  border-right: 1px solid var(--border-primary);
  padding: 24px 48px 48px 24px;
}
.certificates__infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.certificates__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--accent-primary);
  padding-top: 16px;
  padding-bottom: 2px;
}
.certificates__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--text-secondary);
}
.certificates {
  border-top: 1px solid var(--border-primary);
}
.certificates__href img {
  transition: 1s;
}
.certificates__href:hover img {
  transform: scale(1.2);
}
.certificates__info {
  position: relative;
}
.certificates__images--icon {
  position: absolute;
  right: 0;
  background: #1d1d1b;
  border-bottom-left-radius: 9px;
}


.wow__hidden{
  overflow: clip;
}

.fadeInNew{
  transition: transform 1s cubic-bezier(0.45, 0.19, 0.75, 0.72);
  -webkit-animation-name:fadeInNew;
  animation-name:fadeInNew
}

@keyframes fadeInNew {
  0% {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInNew{
  0%{
    transform: translateY(100%);
  }
  to{
    transform: translateY(0);
  }
}
.fadeInNewX{
  transition: transform 0.1s linear;
  -webkit-animation-name:fadeInNewX;
  animation-name:fadeInNewX;
}

@keyframes fadeInNewX {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInNewX{
  0%{
    transform: translateX(100%);
  }
  to{
    transform: translateX(0);
  }
}



.stripe {
  stroke-width: 3;
  stroke-miterlimit: 10;
}

.stripe * {
  fill: #E94E1B;
  stroke: #E94E1B;
  fill-opacity: 0;
}

.stripe.finished * {
  fill-opacity: 1;
  transition: all 1000ms ease-in;
}
.stripe--table{
  display: none;
}
@keyframes dash {
  from {
    stroke-dashoffset: 2000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 1439px) {
  .stripe-3{height: 450px}
  .stripe--table{
    display: block;
  }
  .stripe--desctop{
    display: none;
  }
}

.property__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.property__item{
  border-radius: 8px;
  padding: 24px;
  height: 288px;
  max-height: 288px;
  position: relative;
  overflow: hidden;
}
.property__img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 1s;
}
.property__item:hover .property__img{
  transform: scale(1.1);
}
.property__name{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
}
.property__text{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-tertiary);
}
.property__item p {
  position: relative;
  z-index: 2;
}
.property__item:before {
  content: '';
  background-image: linear-gradient(180deg, #1d1d1bed 0%, #d1d1b001 100%);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1439px) {
  .property__item p{
    font-size: 18px;
  }
  .about__row--ab{
    justify-content: normal;
  }
  .about__row--ab .about__info {
    max-width: 672px;
  }
  .certificates__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .certificates__images {
    max-width: 227px;
  }
}
@media (max-width: 960px) {
  .property__row {
    grid-template-columns: 1fr;
  }
  .certificates__images {
    max-width: 159px;
  }
}

@media (max-width: 767px) {
  .certificates__row {
    grid-template-columns: 1fr;
  }
}
.history__body {
  display: flex;
}
.history__left, .history__right {
  width: 50%;
}
.history__left {
  background: #ffffff;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.history__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--bg-primary);
  padding-bottom: 8px;
}
.history__text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
}
.swiper-container-wrapper--timeline {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 48px;
}
.history__year {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--text-secondary);
}
.swiper-pagination-switch.active .history__year, .swiper-pagination-switch.swiper-slide-active .history__year {
  color: var(--accent-primary);
  font-size: 56px;
  line-height: 110%;
}
.history__pagination-hidden:after {
  content: '';
  border-bottom: 1px solid #E6E6E6;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 14px;
}
.history__pagination-hidden {
  position: relative;
  padding: 0 48px;
}
.history-humbsSlider {
  position: relative;
  height: 109px;
  display: flex;
  align-items: end;
  padding-bottom: 48px;
}
.swiper-pagination-switch.active .history-humbsSlider:before, .swiper-pagination-switch.swiper-slide-active .history-humbsSlider:before {
  content: '';
  border: 2px solid var(--accent-primary);
  border-radius: 4px;
  width: 16px;
  height: 16px;
  position: absolute;
  background: var(--accent-primary);
  bottom: 0;
}
.swiper-slide.swiper-pagination-switch.swiper-slide-next .history-humbsSlider {
  justify-content: right;
}
.hisore__navigations .swiper-button-next:after{
  content: '';
  background-image: url("../img/next.svg");
  width: 42px;
  height: 42px;
}
.hisore__navigations .swiper-button-prev:after{
  content: '';
  background-image: url("../img/prev.svg");
  width: 42px;
  height: 42px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  filter: brightness(0) saturate(100%) invert(4%) sepia(2%) saturate(3663%) hue-rotate(22deg) brightness(101%) contrast(78%);
}

.hisore__prev.swiper-button-prev, .hisore__next.swiper-button-next {
  width: 42px;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  margin-top: 0;
}
.hisore__navigations {
  position: relative;
  height: 42px;
  display: flex;
  gap: 24px;
}
.history__timeline{
  width: 100%;
}
.history__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history__slide  {
  height: auto!important;
}
.history__swiper-wrapper {
  align-items: stretch;
}

.swiper-pagination-custom.swiper-wrapper {
  display: flex;
  left: 0;
}
.swiper-pagination-switch.swiper-slide{
  /*width: 50%;*/
}
.swiper-slide-prev-e.swiper-pagination-switch .history__year {
  font-size: 24px;
  line-height: 130%;
  color: var(--text-secondary);
}
.swiper-slide-next-e.swiper-pagination-switch .history__year {
  color: var(--accent-primary);
  font-size: 56px;
  line-height: 110%;
}
.swiper-slide-next-e.swiper-pagination-switch .history-humbsSlider:before {
  content: '';
  border: 2px solid var(--accent-primary);
  border-radius: 4px;
  width: 16px;
  height: 16px;
  position: absolute;
  background: var(--accent-primary);
  bottom: 0;
}
.swiper-slide-prev-e.swiper-pagination-switch .history-humbsSlider:before {
  display: none;
}
.history__timeline .swiper-wrapper{
  align-items: stretch;
}
.history__timeline .swiper-slide{
  height: auto!important;
}
.history-swiper {
  height: 100%;
}
@media (max-width: 1429px) {
  .swiper-pagination-switch.active .history__year, .swiper-pagination-switch.swiper-slide-active .history__year,.swiper-slide-next-e.swiper-pagination-switch .history__year{
    font-size: 42px;
  }
  .history__year, .swiper-slide-prev-e.swiper-pagination-switch .history__year, .history__title, .history__text p{
    font-size: 18px;
  }
}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .history__body {
    flex-direction: column;
  }
  .history__left, .history__right {
    width: 100%;
  }
  .swiper-pagination-switch.active .history__year, .swiper-pagination-switch.swiper-slide-active .history__year, .swiper-slide-next-e.swiper-pagination-switch .history__year {
    font-size: 28px;
  }
  .history__left {
    padding: 24px 0;
    gap: 24px;
  }
  .history__year, .swiper-slide-prev-e.swiper-pagination-switch .history__year, .history__title, .history__text p {
    font-size: 16px;
  }
  .history__pagination-hidden {
    position: relative;
    padding: 0 24px;
  }
  .swiper-container-wrapper--timeline {
    padding: 0 24px;
    gap: 24px;
  }
  .hisore__navigations {
    justify-content: space-between;
  }
}
.advantages-coating__row{
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.advantages-coating__item {
  height: 288px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.advantages-coating__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: 1s;
}
.advantages-coating__icon {
  width: 48px;
  z-index: 1;
}
.advantages-coating__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  z-index: 1;
}
.advantages-coating__item:hover .advantages-coating__img {
  transform: scale(1.1);
}
.advantages-coating__item:before {
  content: '';
  background-image: linear-gradient(94deg, #1d1d1b7a 0%, #d1d1b001 100%);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1429px) {
  .advantages-coating__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .advantages-coating__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .advantages-coating__text {
    font-size: 16px;
  }
}
.sizes{
  background-color: #ffffff;
}
.sizes__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0;
}
.sizes__item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  height: 288px;
  background: var(--text-secondary);
}
.sizes__item:last-child{
  background: var(--bg-primary);
}
.sizes__color{
  font-weight: 600;
  font-size: 12px;
  line-height: 110%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.sizes__name{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
  padding-bottom: 8px;
}
.sizes__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}
.sizes__texts{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
  max-width: 672px;
}
.sizes__title{
  max-width: 876px;
  color: var(--bg-primary);
}
.sizes__btns {
  padding-top: 48px;
  display: flex;
  gap: 24px;
}
.sizes__href {
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  padding: 16px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  transition: all 300ms ease-in-out;
  color: var(--bg-primary);
}
.sizes__href:hover{
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--white);
}
.sizes__btns .buttons:hover path {
  fill: var(--bg-primary);
}
.sizes__btns .buttons:hover .button {
  background-color: var(--bg-primary);
  box-shadow: 0 0 40px 40px var(--bg-primary) inset;
  color: #ffffff;
  border-color: var(--bg-primary);
}
.sizes__btns .buttons:hover .button svg path {
  fill: #ffffff;
}
.sizes .wow {
  padding-left: 24px;
}
.sizes .wow__hidden {
  margin-left: -24px;
}
@media (max-width: 1429px) {
  .sizes__name {
    font-size: 18px;
  }
  .sizes__text{
    font-size: 16px;
  }
  .sizes__texts {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .sizes__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sizes__row {
    padding: 24px 0;
  }
  .sizes__texts {
    font-size: 16px;
  }
  .sizes__btns {
    padding-top: 24px;
    flex-direction: column;
  }
  .sizes__href {
    text-align: center;
  }
}
.dimension{
  height: 682px;
  background-image: url("../img/dimension-bg.webp");
  background-size: cover;
  padding-bottom: 24px;
}
.dimension__buttons{
  margin-top: auto;
}
.dimension__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.dimension__container {
  height: 100%;
}
.dimension__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
  max-width: 672px;
}
@media (max-width: 1429px) {
  .dimension {
    height: 640px;
    background-position: center;
  }
  .dimension__text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .dimension {
    height: 100%;
  }
  .dimension__text {
    font-size: 16px;
  }
}
.process__info{
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--text-secondary);
  max-width: 672px;
  padding-bottom: 48px;
}
.process__title {
  padding-top: 24px;
}
.process {
  padding-bottom: 24px;
}
@media (max-width: 1429px) {
  .process__info {
    font-size: 18px;
  }
}
@media (max-width: 960px) {

}

@media (max-width: 767px) {
  .process__info {
    font-size: 16px;
    padding-bottom: 24px;
  }
}

.counter-animation {
  animation: countUp 0.8s ease-out;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.fadeInHeater{
  -webkit-animation-name: fadeInHeater;
  animation-name: fadeInHeater;
  overflow: hidden;
}
@-webkit-keyframes fadeInHeater {
  0% {
    opacity: 0;
    height:0
  }

  to {
    opacity: 1;
    height: 100%
  }
}

@keyframes fadeInHeater {
  0% {
    opacity: 0;
    height:0
  }

  to {
    opacity: 1;
    height: 100%
  }
}

.wpcf7 form .wpcf7-response-output {
  color: #1d1d1b;
}


.history__pagination-all-e.history__pagination-all-3 .swiper-pagination-custom{
  transform: translate3d(0px, 0px, 0px)!important;
}
.history__pagination-all-e.history__pagination-all-3 .swiper-pagination-custom .swiper-pagination-switch-3{
  transform: translate3d(0px, 0px, 0px)!important;
}
.history__pagination-all-first .swiper-pagination-custom{
  transform: translate3d(0px, 0px, 0px)!important;
}
.history__pagination-all-first .swiper-slide-next.swiper-slide .history-humbsSlider, .history__pagination-all .swiper-slide-active .history-humbsSlider{
  justify-content: center!important;
}
.history__pagination-all-first .swiper-slide .history-humbsSlider{
  justify-content: right!important;
}
.history__pagination-all-e .swiper-slide-active .history-humbsSlider{
  justify-content: right!important;
}
.history__pagination-all-first .swiper-slide-active .history-humbsSlider{
  justify-content: left!important;
}
.history__pagination-all-e .swiper-slide-prev .history-humbsSlider {
  justify-content: center;
}
.swiper-slide-next-eeee, .history__pagination-all-3 .swiper-pagination-switch-1, .history__pagination-all-3 .swiper-pagination-switch-2 {
  transform:translate3d(0px, 0px, 0px)!important;
}
