.site-header {
  width: 100%;
  height: 80px;
  z-index: 2000;
  position: absolute;
  top: 0;
  transition: background-color 0.3s linear;
}

.site-header__container {
  position: relative;
  display: table;
  width: 100%;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header__left {
  display: table-cell;
  vertical-align: middle;
}

.site-header__center {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
}

.site-header__right {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.site-header__pad {
  width: 20px;
}

.site-header__left-container {
  display: inline-block;
}

.site-header__logo-wrap {
  display: inline-block;
}

.site-header__logo {
  margin-right: 30px;
  vertical-align: middle;
}

.site-header__list {
  font-size: 0;
  transition: opacity ease-in-out 0.2s;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.site-header__list_hidden {
  opacity: 0;
}

.site-header__item {
  clear: both;
  font-family: 'Roboto', Arial, sans-serif;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  color: #000000;
  white-space: nowrap;
}

.site-header__item:first-child {
  padding-left: 0;
}

.site-header__item:last-child {
  padding-right: 0;
}

.site-header__link {
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.site-header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 20%;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ffffff;
  box-shadow: inset 0px -1px 0px 0px #ffffff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after {
  opacity: 1;
  bottom: -1px;
}

.site-header__right-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 30px;
  margin-left: 25px;
}

.site-header__phone {
  white-space: nowrap;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  color: #ffffff;
}

.site-header__line-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.site-header__line {
  height: 1px;
  margin: 0 40px;
  background-color: #c2c2c2;
  border: 0;
}

@media screen and (max-width: 1200px) {
  .site-header__logo {
    margin-right: 15px;
  }
}

@media screen and (max-width: 980px) {
  .site-header__list_hidden {
    opacity: 1;
  }

  .site-header {
    position: static;
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
    height: auto !important;
  }

  .site-header__container {
    height: auto !important;
    display: block;
  }

  .site-header__left,
  .site-header__right,
  .site-header__center {
    display: block;
    text-align: center;
    float: none;
  }

  .site-header__left-container,
  .site-header__center-container,
  .site-header__right-container {
    padding: 20px 0;
  }

  .site-header__logo {
    width: auto !important;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
    float: inherit;
  }

  .site-header__pad {
    display: none;
  }

  .site-header__right-container {
    flex-direction: column;
    margin: 0 auto;
  }

  .site-header__phone {
    display: table;
    margin: 0 auto;
    text-align: center;
  }

  .site-header .site-header__item {
    display: block;
    text-align: center;
    padding: 10px !important;
    white-space: normal;
  }

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

  .site-header__line-wrap {
    display: none;
  }
}

.hero {
  text-align: left;
}

.hero__wrapper {
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero__title {
  padding: 24px 0 38px;
  letter-spacing: 1px;
  color: #fff;
}

.hero__button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero .hero__button {
  color: #ffffff;
  background-color: #0379ff;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 60px;
  box-shadow: none !important;
  font-weight: 600;
  white-space: normal;
  transition-duration: 0.2s;
  transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}

@media (hover: hover) {
  .hero .hero__button:hover,
  .hero .hero__button:focus-visible {
    background-color: #00a2ff !important;
  }
}

.section-title {
  overflow-wrap: break-word;
  margin-bottom: 90px;
}

@media screen and (max-width: 960px) {
  .section-title {
    margin-bottom: 45px;
  }
}

.services__list {
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.services__item {
  margin-top: var(--column-margin, 40px);
}

.services__item:nth-child(-n+3) {
  margin-top: 0;
}

.services__card {
  position: relative;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.services__wrap {
  position: relative;
  min-height: 100%;
  padding: 30px 30px 40px;
  box-sizing: border-box;
}

.services__top {
  position: relative;
}

.services__icon {
  display: block;
  padding-bottom: 85px;
  width: 65px;
  height: auto;
  max-width: 100%;
}

.services__title {
  margin-bottom: 15px;
}

@media screen and (max-width: 960px) {
  .services__item {
    margin-top: 0;
    margin-bottom: 20px;
    height: auto !important;
  }

  .services__wrap {
    position: static;
    display: block;
    padding-bottom: 30px;
  }

  .services__icon {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .services__icon {
    padding-bottom: 30px !important;
  }
}

.feature {
  padding-top: 55px;
  padding-bottom: 55px;
}

.feature__wrapper {
  position: relative;
  width: auto;
  min-height: 400px;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.feature__image {
  position: relative;
  width: 100%;
}

.feature__img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.feature__text-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: -50px;
  padding: 60px;
}

.feature__text-wrapper_right {
  right: 135px;
}

.feature__text {
  position: relative;
}

.feature__title {
  margin-bottom: 16px;
}

.feature__descr {
  margin-top: 28px;
}

@media screen and (max-width: 960px) {
  .feature {
    padding-right: 20px;
    padding-bottom: 0;
    padding-left: 20px;
  }

  .feature__wrapper {
    height: auto !important;
  }

  .feature__image,
  .feature__img,
  .feature__text-wrapper {
    position: relative;
  }

  .feature__image {
    bottom: inherit;
  }

  .feature__text-wrapper {
    bottom: 0;
    width: auto !important;
    padding: 30px 20px;
  }

  .feature__text-wrapper_right {
    right: 0;
  }
}

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

.contacts-banner__title {
  margin-bottom: 25px;
}

.contacts-banner__descr {
  max-width: 700px;
}

.cover-second__wrapper {
  padding-top: 42px;
  padding-bottom: 42px;
}

.cover-second__uptitle {
  padding-top: 30px;
  padding-bottom: 60px;
  color: #fff;
}

.cover-second__title {
  padding: 24px 0 38px;
  letter-spacing: .5px;
  color: #fff;
}

.cover-second__descr {
  padding: 0 0 30px;
  color: #fff;
}

.cover-second__descr_center {
  max-width: 700px;
  margin: 0 auto;
}

.align_center .cover-second__title,
.align_center .cover-second__descr,
.align_center .cover-second__uptitle {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .cover-second__title {
    padding-right: 10px;
    padding-left: 10px;
  }

  .cover-second__uptitle {
    padding-right: 10px;
    padding-left: 10px;
  }

  .cover-second__descr {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}

.section-text__title {
  margin-bottom: 40px;
}

.section-text__descr {
  max-width: 760px;
  margin-top: 40px;
}

.advantages__list {
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.advantages__item {
  float: none;
  margin-top: var(--column-margin, 70px);
}

.advantages__item:nth-child(-n+3) {
  margin-top: 0;
}

.advantages__wrapper {
  display: table;
}

.advantages__icon {
  margin-right: 16px;
  width: 35px;
  height: auto;
}

.advantages__title {
  margin-top: 23px;
}

.advantages__icon,
.advantages__title {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 960px) {
  .advantages__item {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .advantages__icon {
    max-width: 100px;
  }
}

.specs__title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 6px;
  margin-right: 20px;
}

.specs__line {
  margin-top: 14px;
  margin-bottom: 14px;
  border: 0;
  border-top: 3px solid #000000;
  margin-right: 20px;
}

.specs__text {
  padding-top: 4px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 25px;
  margin-right: 20px;
}

@media screen and (max-width: 960px) {
  .specs .specs__col {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.section-heading__title {
  margin-bottom: 40px;
}

.about__sizer-wrap {
  width: 0;
  height: 0;
  overflow: hidden;
}

.about__sizer.col_6 {
  width: 560px !important;
  max-width: 560px !important;
}

.about__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__text-wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.about__content {
  display: table-cell;
}

.about__title {
  margin-bottom: 16px;
}

.about__descr {
  margin-top: 28px;
}

.about__line {
  position: relative;
  display: block;
  max-width: 50px;
  width: 100%;
  height: 3px;
  background-color: #666;
}

@media screen and (max-width: 960px) {
  .about__top {
    margin-bottom: 30px;
  }

  .about__text-wrapper {
    height: auto !important;
  }
}

.partners__container::before {
  display: none;
}

.partners__container {
  text-align: center;
  flex-wrap: wrap;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.partners__item {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0;
}

.partners__item_3-in-row {
  width: 33.333%;
}

.partners__img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .partners__item {
    padding: 10px;
  }
}

@media screen and (max-width: 640px) {
  .partners__container {
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 440px) {
  .partners__item_3-in-row {
    width: 50%;
  }
}

.contacts__contentwrapper {
  display: table-cell;
  vertical-align: middle;
}

.contacts__contentbox {
  display: table;
  width: 100%;
  color: #fff;
}

.contacts__info {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .contacts__contentwrapper {
    padding: 0 0 40px;
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  .contacts__contentbox {
    float: none;
    width: 100%;
    height: auto !important;
  }
}

@media screen and (max-width: 480px) {
  .contacts__info {
    font-size: 18px;
  }
}

.site-footer {
  overflow: hidden;
}

.site-footer__container {
  width: 100%;
  height: 80px;
  display: table;
  position: relative;
}

.site-footer__content {
  padding: 2px 40px 0;
  display: table-cell;
  vertical-align: middle;
}

.site-footer__col {
  display: table-cell;
  vertical-align: middle;
}

.site-footer__col_center {
  width: 100%;
  padding: 0 16px;
}

.site-footer__col_mobile {
  display: none;
}

.site-footer__list {
  list-style-type: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.site-footer__item {
  display: inline-block;
  margin: 0 15px;
}

.site-footer__copyright,
.site-footer__scroll {
  width: 250px;
}

.site-footer__typo {
  font-size: 14px;
}

.site-footer__top {
  position: relative;
  padding-right: 12px;
  display: inline-block;
}

.site-footer__icon {
  position: absolute;
  right: 0;
  top: 2px;
}

.site-footer__copyright,
.site-footer__top,
.site-footer__item a {
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .site-footer__content {
    padding: 2px 20px 0;
  }

  .site-footer__col,
  .site-footer__copyright,
  .site-footer__scroll {
    width: 230px;
  }

  .site-footer__col_center {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .site-footer__col,
  .site-footer__copyright,
  .site-footer__scroll {
    width: 100%;
    display: block;
    text-align: center;
  }

  .site-footer__container {
    display: block;
    height: auto !important;
    padding: 40px 0;
  }

  .site-footer__content {
    display: block;
  }

  .site-footer__col_mobile {
    display: block;
  }

  .site-footer__col_hidden-mobile {
    display: none;
  }

  .site-footer__col {
    margin-bottom: 20px;
    padding: 0;
  }

  .site-footer__item {
    margin: 0 10px 4px;
  }

  .site-footer__col:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 670px) {
  .site-footer__typo {
    font-size: 12px;
  }
}

.policy-text {
  padding-top: 8px;
  padding-bottom: 6px;
  position: relative;
}
