@charset "UTF-8";
.btn {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
  align-self: flex-start;
}

.btn-ic {
  width: 12px;
  height: 15px;
  fill: #fff;
}

.btn-blue {
  background: linear-gradient(180deg, #86DEFD 0%, #46BAE2 100%);
  box-shadow: 0px 2px 0px 0px #216982;
}
.btn-blue:hover {
  background: linear-gradient(90deg, #86DEFD 0%, #46BAE2 100%);
}

.btn-transparent {
  border: 1px solid gold;
  background: transparent;
  color: fontd;
}
.btn-transparent:hover {
  background: gold;
  color: #fff;
}

.header__wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__desc {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.8;
  line-height: 1.3;
  max-width: 234px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__btn {
  padding: 13px 20px;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}
.header__phone {
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.header__email {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
  opacity: 0.7;
}
.header__email:hover {
  opacity: 1;
}
.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__langs {
  display: flex;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2980392157);
  border-radius: 80px;
}
.header__langs .active a{
  font-weight: 700;
}
.header__lang {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 300;
}
.header hr {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .header hr {
    display: none;
  }
  .header__wrp {
    flex-direction: row;
    align-items: center;
    padding: 5px 0;
  }
  .header__btn {
    display: none;
  }
  .header__bottom {
    justify-content: end;
    gap: 10px;
  }
  .header__desc {
    display: none;
  }
  .header__email {
    display: none;
  }
  .header__phone {
    font-size: 14px;
    font-weight: 400;
  }
  .header__top {
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
  }
  .header__fb80 {
    flex-basis: 80%;
  }
  .header__fb20 {
    flex-basis: 20%;
  }
}
.header {
  position: absolute;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.menu-fixed .stepform-btn_default {
  margin-bottom: 3px;
}
.menu-fixed .header__desc {
  font-size: 15px;
}
.menu-fixed .header__wrp {
  gap: 0;
}
.menu-fixed .header__logo img {
  max-width: 30%;
}
.menu-fixed .header__nav {
  padding: 0;
  margin: 0;
}
.menu-fixed .nav__item {
  padding: 7px 0;
}
.menu-fixed .header__bottom {
  padding: 4px 0;
}
.menu-fixed .header__lang {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

@media only screen and (max-width: 576px) {
  .menu-fixed .header__logo img {
    max-width: 70%;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bgmain__decor {
  position: absolute;
  bottom: -40%;
  z-index: -1;
  right: 40%;
}

.bgmain__decor2 {
  position: absolute;
  bottom: -15%;
  z-index: -1;
  right: 40%;
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.nav__link:hover {
  color: #46BAE2;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}
.dropdown-list__link:hover {
  color: #46BAE2;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }
  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}
.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #fff;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid #ececec;
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__title {
    padding: 0 30px;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
.open .nav__link {
  color: #0B1F33;
}

.nav__contacts {
  display: none;
}

@media only screen and (max-width: 946px) {
  .header .nav__contacts {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
  }
  .header .nav__contact {
    display: flex;
    align-items: center;
    color: #66727F;
    font-size: 14px;
  }
  .header .nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #46BAE2;
    flex-shrink: 0;
  }
  .header .nav__phone a {
    font-weight: 700;
    font-size: 18px;
    color: #0B1F33;
    line-height: 1.3;
  }
  .header .nav__email a {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .nav__adress p {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .search-mobile {
    display: flex;
    margin: 20px 0 10px 15px;
  }
  .header .search-mobile form {
    display: flex;
  }
  .header .search-mobile input {
    width: 90%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #66727F;
    font-size: 14px;
  }
  .header .search-mobile .search__icon {
    width: 20px;
    height: 20px;
  }
  .header .search-mobile .header__social-link {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.bgmain {
  padding: 60px 0;
}
.bgmain__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bgmain__h1 {
  font-family: "RoadRadio";
  line-height: 1.4;
  font-size: clamp(1.5625rem, 1.125rem + 2.1875vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #B2C4D3 4.33%, #D8E2ED 48.08%, #7D96AF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.bgmain__subtitle {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-family: "RoadRadio";
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #B2C4D3 4.33%, #D8E2ED 48.08%, #7D96AF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.bgmain__tizers ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.bgmain__tizers li {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: #fff;
  position: relative;
  padding-left: 40px;
  line-height: 1.3;
}
.bgmain__tizers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background: url("../img/check.svg");
  display: block;
  width: 22px;
  height: 22px;
}
.bgmain__wrp {
  display: flex;
  gap: 30px;
}
.bgmain__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-basis: 40%;
}
.bgmain__text-top {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bgmain__text-bottom {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.6;
  color: #66727F;
}
.bgmain__text-bottom strong {
  font-weight: 700;
}
.bgmain__banner {
  flex-basis: 60%;
}
.bgmain__banner video {
  border-radius: 25px;
}
.bgmain__btn {
  padding: 30px 50px;
  align-self: flex-start;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}

.inner {
  position: absolute;
  left: -10%;
  bottom: -10%;
  z-index: 100;
}
.inner__text-wrp {
  width: 237px;
  height: 237px;
}
.inner__text {
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.inner__main {
  width: 237px;
  height: 237px;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  animation: 15s linear infinite rot;
}
.inner__info {
  font-weight: 400;
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
  line-height: 1.3;
}
.inner__info2 {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  line-height: 1.3;
  max-width: 120px;
}
.inner__count {
  font-weight: 700;
  color: #fff;
  font-size: 55px;
}

@keyframes rot {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1400px) {
  .bgmain__wrp {
    gap: 60px;
  }
  .inner {
    bottom: -8%;
  }
}
@media only screen and (max-width: 1200px) {
  .bgmain__wrp {
    flex-wrap: wrap;
  }
  .bgmain__text {
    flex-basis: 100%;
  }
  .bgmain__banner {
    flex-basis: 100%;
  }
  .bgmain__figure1 {
    display: none;
  }
  .inner {
    bottom: auto;
    left: auto;
    top: -10%;
    right: 5%;
  }
}
@media only screen and (max-width: 576px) {
  .bgmain__h1 {
    text-align: center;
  }
  .bgmain__tizers ul {
    gap: 15px;
    margin: 20px;
    justify-content: start;
  }
  .bgmain__text {
    gap: 0;
  }
  .bgmain__text-top {
    font-weight: 700;
  }
  .bgmain__wrp {
    gap: 30px;
  }
  .bgmain__text-bottom {
    margin-bottom: 20px;
  }
  .bgmain__tizers ul {
    gap: 2px;
  }
  .bgmain__tizers li {
    line-height: 1.8;
  }
  .inner {
    display: none;
  }
}
.servs {
  padding: 60px 0;
}

.serv-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.serv {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(34, 39, 60, 0.67);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.serv h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.serv p {
  line-height: 1.6;
  opacity: 0.8;
}
.serv__image {
  border-radius: 24px;
  background: linear-gradient(180deg, #86DEFD 0%, #46BAE2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 98px;
  height: 98px;
  flex-shrink: 0;
}
.serv__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}
.serv__info2 {
  height: auto;
}
.serv__btn {
  padding: 30px 50px;
}

@media only screen and (max-width: 576px) {
  .serv {
    flex-direction: column;
    padding: 15px;
  }
  .serv__image {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    padding: 10px;
  }
}
.projects {
  padding: 60px 0;
}

.project {
  display: block;
  width: 100%;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
}
.project:hover .project__overlay {
  opacity: 0.9;
}
.project img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 40;
}
.project__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4.7%, #000 100%);
  position: absolute;
  z-index: 60;
  bottom: 0;
  width: 100%;
  height: 40%;
  transition: all 0.3s;
}
.project__title {
  position: absolute;
  padding: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  z-index: 100;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 576px) {
  .project {
    height: 250px;
  }
  .project__title {
    padding: 20px;
  }
}
.partners {
  --partners-gap: 32px;
  --partners-logo-width: 264px;
  --partners-logo-height: 145px;
  padding: 60px 0;
  overflow-x: hidden;
}

.partners-title {
  margin-bottom: 15px;
}

.partners-subtitle {
  margin-bottom: 30px;
  line-height: 1.3;
}

.partners__items {
  justify-items: center;
  align-items: center;
}

.partners__text-before {
  width: 256px;
  padding-right: 32px;
  flex-shrink: 0;
}

.partners__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.partners__image {
  transition: all ease-out 0.2s;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  max-width: 210px;
  max-height: 70px;
}

.partners__link:hover ~ .partners__image-wrap .partners__image {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.partners__image-wrap {
  transition: all ease-out 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.partners__link:hover ~ .partners__image-wrap {
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.partners__item {
  position: relative;
}

.partners__slider-first {
  margin-bottom: var(--partners-gap);
}

.carousel-wrapper {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-rows: var(--partners-logo-height);
  grid-template-columns: repeat(var(--partners-columns-count), var(--partners-logo-width));
}

.partners__item {
  background: #fff;
}

.carousel-container.partners__slider-first {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel;
}

.carousel-container.partners__slider-second {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel-reverse;
}

.carousel-container {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: calc(var(--partners-logo-width) * var(--partners-columns-count) + var(--partners-gap) * (var(--partners-columns-count) - 1));
}

@keyframes carousel {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }
}
@keyframes carousel-reverse {
  0% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }
  100% {
    transform: translateX(0px);
  }
}
.partners__topic {
  justify-content: space-between;
  cursor: default;
  padding: 0px 0px 68px;
}

.partners__topic-left,
.partners__topic-right {
  max-width: 50%;
}

.partners__topic-left {
  padding-right: 32px;
  font-size: 3.3333em;
  font-size: clamp(1.4rem, 1.009rem + 1.84vw, 3.3333rem);
  line-height: 1.2;
}

.partners__topic-right {
  padding-left: 20px;
  padding-top: 5px;
}

.partners__subtitle {
  font-size: clamp(1.1333rem, 1.0847rem + 0.2027vw, 1.3333rem);
  line-height: 1.5;
  padding-bottom: 20px;
}

.partners__link-all .svg-arrow-right-xxs {
  display: inline-block;
  margin-left: 14px;
}

.partners__link-all:hover .svg-arrow-right-xxs use {
  stroke: var(--dark);
}

@media (max-width: 991px) {
  .partners {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .partners__text-before {
    width: 100%;
    padding-bottom: 32px;
  }
  .partners .partners__items {
    --gr-4: 3;
    gap: 30px 20px;
  }
  .partners-topic__inner {
    flex-direction: column;
  }
  .partners__topic-left,
  .partners__topic-right {
    max-width: 100%;
  }
  .partners__topic-right {
    padding-left: 0;
    padding-top: 15px;
  }
  .partners__topic {
    /* padding-top: 60px; */
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .carousel-container {
    --partners-gap: 16px;
  }
}
.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.partners-wrp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.partners-wrp p {
  line-height: 1.7;
  color: #000;
  padding-left: 40px;
}

.partners__title {
  font-size: 28px;
  color: #000;
  line-height: 1.4;
  max-width: 50%;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .partners-wrp {
    flex-wrap: wrap;
  }
  .partners-wrp p {
    padding-left: 0;
  }
  .partners__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .partners {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

.mc-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}
#watchme .btn-close {
  right: -30px;
}
#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}
.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}
.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}
.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}
.modal-contacts__bottom span {
  margin-left: 10px;
}
.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #f15a25;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}
.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal:focus {
  border-bottom: 2px solid #46BAE2;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #f15a25;
  color: #fff;
  border: 1px solid #f15a25;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}
.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #f15a25;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}
.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}
.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}
#success h3 {
  font-size: clamp(1.375rem, 1.275rem + 0.5vw, 1.875rem);
  margin-bottom: 20px;
  line-height: 1.3;
}
#success p {
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
  line-height: 1.3;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}
.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }
  .modal-header {
    padding-top: 60px;
  }
  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }
  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}
.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
  font-size: 14px;
}
.checkbox-text span {
  color: #f15a25;
  text-decoration: underline;
  cursor: pointer;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}
.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.modal__privacy {
  font-size: 14px;
  line-height: 1.3;
  margin: 15px 0;
  color: #0B1F33;
}
.modal__privacy a {
  color: #46BAE2;
  text-decoration: underline;
}

.panel {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  flex-direction: column;
  right: 10px !important;
  border-radius: 80px;
  background: #E5D7C4;
  padding: 4px;
  z-index: 100;
}
.panel__ic {
  width: 60px;
  height: 60px;
}
.panel__ic:not(:last-child) {
  margin-bottom: 15px;
}
.panel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 40px;
    height: 40px;
  }
}
.heading {
  background: rgba(32, 36, 58, 0.4196078431);
  padding: 30px 0px 30px 0;
  color: #fff;
}
.heading h1 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
}

.breadcrumbs li {
  display: inline-block;
  font-size: 15px;
  color: #fff;
}
.breadcrumbs li a {
  color: #66727F;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  color: #fff;
}
.breadcrumbs li + li::before {
  color: #fff;
  content: "—";
  padding: 0 5px;
}

@media only screen and (max-width: 945px) {
  .heading {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 546px) {
  .heading {
    padding: 20px 0;
  }
  .heading h1 {
    font-size: 22px;
  }
}
.gallery {
  margin: 30px 0;
  -moz-column-width: 20em;
  column-width: 20em;
  will-change: transform;
  transition: transform 1s cubic-bezier(0.075, 1, 0.25, 1), opacity 1s;
}

.gallery__item {
  display: block;
  margin-bottom: 15px;
  transform: scale(1.001);
  will-change: transform;
  transition: 0.3s;
}

.gallery__item:hover {
  transform: scale(1.03);
}

.gallery__item img {
  width: 100%;
  display: block;
}

.loaded .gallery {
  opacity: 1;
}

.loaded .header span {
  opacity: 0;
}

.contacts {
  margin: 30px 0;
}

.contacts-card {
  border: 1px solid rgba(236, 236, 236, 0.1960784314);
  padding: 20px;
  border-radius: 10px;
}
.contacts-card__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.contacts-card__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.contacts-card__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}
.contacts-card__subtitle {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #fff;
  margin-bottom: 10px;
}
.contacts-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.contacts-card__group {
  margin: 20px 0;
}
.contacts-card__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2509803922);
  margin-bottom: 10px;
}
.contacts-card__input {
  margin-bottom: 10px;
}
.contacts-card__input a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts-card__time {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}
.contacts-card__btn {
  padding: 20px 30px;
}

.content-contacts {
  margin: 20px 0;
}

.rekv-btn {
  display: inline-block;
  width: auto;
}

@media only screen and (max-width: 578px) {
  .contacts {
    padding: 30px 0;
  }
}
.content {
  margin-bottom: 40px;
}
.content article {
  max-width: 980px;
  margin: 0 auto;
}
.content img {
  border-radius: 10px;
  margin-bottom: 20px;
}
.content h2 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  font-weight: 600;
  margin: 20px 0 10px 0;
  line-height: 1.3;
}
.content h3 {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 600;
  margin: 20px 0 10px 0;
  line-height: 1.3;
}
.content p {
  line-height: 1.5;
  margin: 7px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.content ul {
  list-style-type: disc;
  padding-left: 30px;
  line-height: 1.3;
}
.content li {
  line-height: 1.5;
  padding: 7px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.content table td {
  padding: 17px;
  line-height: 1.3;
}

.main-text {
  background: rgba(255, 255, 255, 0.0666666667);
  margin: 15px 0;
  padding: 20px 15px 20px 40px;
  border-left: 3px solid #46BAE2;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.4;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 768px) {
  .content {
    margin-top: 0;
    background: transparent;
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  .content ul {
    padding-left: 30px;
  }
  .content .picture {
    margin-top: 20px;
  }
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  color: #fff;
}
.footer__wrp {
  background: #20243A;
  padding: 30px;
  border-radius: 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer__desc {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
  max-width: 250px;
}
.footer__privacy {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.5;
  text-decoration: underline;
  margin-top: 40px;
  cursor: pointer;
  color: #fff;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.footer__menu {
  display: flex;
  gap: 15px;
}
.footer__menu a {
  color: #fff;
  opacity: 0.7;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.footer__menu a:hover {
  opacity: 1;
}
.footer__menu-privacy {
  color: #fff;
  opacity: 0.7;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.footer__socials {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.footer__social {
  width: 46px;
  height: 46px;
  padding: 12px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2862745098);
}
.footer__social img {
  opacity: 0.6;
}
.footer__social:hover {
  background: #46BAE2;
}
.footer__social:hover img {
  opacity: 1;
}
.footer__btn {
  align-self: flex-end;
  padding: 20px 40px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.footer__bottom-l {
  font-size: 14px;
  line-height: 1.3;
}
.footer__bottom-r {
  font-size: 14px;
  line-height: 1.3;
}
.footer__bottom-r a {
  color: #fff;
  text-decoration: underline;
}
.footer__heart {
  width: 12px;
  height: 12px;
  fill: rgb(182, 8, 8);
  margin: 0 5px;
}
.footer__contact {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.footer__icon {
  width: 17px;
  height: 17px;
  fill: #D7C874;
}
.footer .adress--icon {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    margin: 20px 0;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__btn {
    align-self: flex-start;
  }
}
@media only screen and (max-width: 578px) {
  .footer {
    padding: 20px;
  }
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bgmain__decor {
    display: none;
    }

  .bgmain__decor2 {
    display: none;
    }
    .header{
        padding-left: 0;
        padding-right: 0;
    }
}