html,
body {
  max-height: 999999px;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  font-style: normal;
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  background-color: #F5F5F5;
  color: #1E2023;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.container-2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.responsive-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.responsive-menu {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  user-select: none;
  cursor: pointer;
}

.responsive-menu_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: .3s linear;
  user-select: none;
}

.responsive-menu_inner span {
  width: 30px;
  height: 3px;
  background: #009ed6;
  transition: .15s;
}

.responsive-menu_inner span:nth-child(1) {
  margin-bottom: 7px;
}

.responsive-menu_inner span:nth-child(3) {
  margin-top: -3px;
}

.responsive-menu_inner span:nth-child(4) {
  margin-top: 7px;
}

body.open-menu .responsive-menu span {
  display: none;
}

body.open-menu .responsive-menu span:nth-child(2) {
  display: block;
  transform: rotate(-45deg);
}

body.open-menu .responsive-menu span:nth-child(3) {
  display: block;
  transform: rotate(45deg);
}

body.open-menu .responsive-menu {
  opacity: 1;
  visibility: visible;
}

body.open-menu .responsive-wrap {
  opacity: 1;
  visibility: visible;
}

.title {
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  color: #1E2023;
}

.header {
  display: flex;
  align-items: center;
  min-height: 168px;
  padding-left: 32px;
  padding-right: 40px;
  background: #fff;
}

.header-container {
  display: flex;
  align-items: center;
  max-width: 1512px;
  width: 100%;
  margin: 0 auto;
}

.header__logo {
  flex: none;
  width: 168px;
  margin-right: 25px;
}

.header__logo img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.header__info {
  display: flex;
  width: 100%;
}

.header__nav {
  margin-right: 40px;
}

.header__nav>ul {
  display: flex;
  align-items: center;
  height: 100px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav>ul>li {
  position: relative;
  height: 100%;
  margin-right: 50px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #1E2023;
}

.header__nav>ul>li.active a {
  border-bottom: 2px solid #009ed6;
  color: #575d66;
}

.header__nav>ul>li:hover>a {
  border-bottom: 2px solid #009ed6;
}

.header__nav>ul>li:hover>ul {
  transform: scaleY(1);
}

.header__nav>ul>li>a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  color: #1E2023;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.header__nav>ul>li>a>i {
  width: 10px;
  height: 6px;
  margin-left: 13px;
  background-image: url("../images/menu-icon.svg");
  background-size: 10px 6px;
  background-repeat: no-repeat;
}

.header__nav>ul>li>ul {
  position: absolute;
  top: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 314px;
  margin: 0;
  padding: 0;
  padding: 26px 20px;
  background: #fff;
  list-style: none;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s;
}

.header__nav>ul>li>ul>li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #1E2023;
  border-bottom: 1px solid #EDF2FA;
}

.header__nav>ul>li>ul>li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.header__nav>ul>li>ul>li a {
  color: #1E2023;
  text-decoration: none;
}

.header__nav>ul>li>ul>li a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.header__phones {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: 220px;
  margin-right: 44px;
}

.header__phones_icon {
  margin-right: 15px;
  width: 24px;
  height: 24px;
  background-image: url("../images/header-phone.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.header__phones_phone {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 20px;
  color: #34383D;
  line-height: 140%;
}

.header__phones_phone a {
  color: #34383D;
  margin-bottom: 5px;
  text-decoration: none;
}

.header__phones_phone a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.header__mail {
  display: flex;
  align-items: center;
  width: 175px;
}

.header__mail_icon {
  margin-right: 15px;
  width: 28px;
  height: 22px;
  background-image: url("../images/header-mail.svg");
  background-size: 28px 22px;
  background-repeat: no-repeat;
}

.header__mail_mail {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 20px;
  color: #34383D;
  line-height: 140%;
}

.header__mail_mail:last-child {
  margin-bottom: 0;
}

.header__mail_mail a {
  color: #34383D;
  margin-bottom: 5px;
  text-decoration: none;
}

.header__mail_mail a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.header-slider {
  background: #F7F9FC;
}

.header-slider-slide {
  padding-top: 42.5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-slider-slide__inner {
  position: absolute;
  bottom: 140px;
}

.header-slider-slide__title {
  display: flex;
  align-items: center;
  width: 768px;
  min-height: 168px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-top: 20px;
  background: rgba(30, 32, 35, 0.5);
  backdrop-filter: blur(2px);
  font-weight: 700;
  font-size: 46px;
  line-height: 140%;
  color: #fff;
}

.header-slider-nav {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}

.header-slider-nav__inner {
  display: flex;
  align-items: center;
}

.header-slider-nav__pag {
  display: flex;
  align-items: center;
}

.header-slider-nav .swiper-pagination-bullet {
  width: 64px;
  height: 4px;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 0;
  border: 0;
}

.header-slider-nav .swiper-pagination-bullet-active {
  background: #5BBFE3;
}

.header-slider-nav__num {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

.header-slider-nav__num span {
  margin-left: 7px;
  margin-right: 7px;
}

.header-slider-nav__num_all {
  color: #EDF2FA;
  font-size: 16px;
}

.about {
  padding-top: 100px;
  background: #F7F9FC;
}

.about-slider {
  position: relative;
  margin-top: 30px;
}

.about-slider-slide {
  position: relative;
  max-width: 1180px;
  width: 100px;
  padding-top: 36%;
  opacity: 0.35;
  transition: 1s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-slider-slide.swiper-slide-active {
  opacity: 1;
}

.about-slider-nav {
  display: flex;
  align-items: center;
  top: calc(50% - 26px);
  right: 0;
  display: flex;
  position: absolute;
  max-width: 1180px;
  width: 100%;
  z-index: 2;
  max-width: 1180px;
  left: 50%;
  transform: translateX(-50%);
}

.about-slider-nav__prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  
  margin-right: 20px;
  cursor: pointer;
  /* background: #009ED6; */
  border-radius: 4px;
  transition: 0.2s;
}

.about-slider-nav__prev:hover {
  /* background: #5BBFE3; */
}

.about-slider-nav__next {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  width: 100px;
  height: 100px;
  cursor: pointer;
  /* background: #009ED6; */
  border-radius: 4px;
  transition: 0.2s;
}

.about-slider-nav__next:hover {
  /* background: #5BBFE3; */
}

.about-slider-nav__num {
  display: flex;
  align-items: center;
  margin-top: -10px;
}

.about-slider-nav__num span {
  margin-left: 8px;
  margin-right: 8px;
}

.about-slider-nav__num_all {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #575D66;
}

.about-slider-nav__num_current {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #1E2023;
}

.about-text {
  padding-top: 75px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.about-text p {
  margin: 0;
  margin-bottom: 20px;
}

.about-text p.about-text-center {
  text-align: center;
  margin-top: 30px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 20px;
}

.about-advantages {
  display: flex;
  margin-top: 70px;
}

.about-advantages-block {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.about-advantages-item {
  width: 20%;
  padding-left: 10px;
  padding-right: 10px;
}

.about-advantages-item__inner {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 24px;
  padding-right: 24px;
  background: #EDF2FA;
}

.about-advantages-item__num {
  font-weight: 700;
  font-size: 80px;
  line-height: 140%;
  text-align: center;
  color: #009ED6;
}

.about-advantages-item__text {
  margin-top: 35px;
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  overflow-wrap: break-word;
}

.about-link {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #009ED6;
}

.about-link-block a {
  display: inline-flex;
  align-items: center;
  color: #009ED6;
  text-decoration: none;
}

.about-link-block a span {
  background-image: linear-gradient(to bottom, #97e2fc, #97e2fc);
  background-position: 0 1.3em;
  background-repeat: repeat-x;
  background-size: 1px 1px;
}

.about-link-block a:hover span {
  background-image: none;
}

.about-link-block a i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  width: 14px;
  height: 14px;
  background: url("../images/about-link.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.services {
  padding-top: 165px;
  padding-bottom: 70px;
  background: #F7F9FC;
}

.services-block {
  display: flex;
  flex-direction: column;
}

.services-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 72px;
  gap: 20px 20px;
  grid-template-areas: "services-1 services-2 services-3""services-1 services-4 services-5";
}

.services-items .services-1 {
  grid-area: services-1;
}

.services-items .services-2 {
  grid-area: services-2;
}

.services-items .services-3 {
  grid-area: services-3;
}

.services-items .services-4 {
  grid-area: services-4;
}

.services-items .services-5 {
  grid-area: services-5;
}

.services-items__item_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  height: 100%;
  padding: 40px;
  text-decoration: none;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.services-items__item_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  /* opacity: 0.5; */
  transition: 0.5s;
}

.services-items__item_title {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #1E2023;
}

.services-items__item_link {
  position: relative;
  font-weight: 400;
  margin-top: auto;
  font-size: 20px;
  line-height: 140%;
  color: #009ED6;
}

.services-items__item_link span {
  background-image: linear-gradient(to bottom, #97e2fc, #97e2fc);
  background-position: 0 1.05em;
  background-repeat: repeat-x;
  background-size: 1px 1px;
}

.services-items__item:hover .services-items__item_bg {
  opacity: 1;
  box-shadow: 0px 0px 0px 1px #adadad;
}

.services-items__item:hover .services-items__item_link span {
  background-image: none;
}

.projects {
  position: relative;
  overflow: hidden;
  /* margin-top: -95px; */
  /* margin-top: 70px; */
  /* padding-top: 70px; */
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: -500px;
  right: 0;
  bottom: 0;
  width: 1000%;
  height: 100%;
  background: #EDF2FA;
}

.projects-container {
  position: relative;
  display: flex;
  margin-top: 145px;
  max-width: 1565px;
  width: 100%;
  margin-left: auto;
}

.projects-left {
  display: flex;
  margin-left: auto;
  padding-left: 20px;
}

.projects-left-block {
  max-width: 384px;
  width: 100%;
  margin-left: auto;
}

.projects-left-nav {
  display: flex;
  margin-top: 45px;
  padding-left: 15px;
  padding-right: 15px;
}

.projects-left-nav .swiper-button-disabled {
  opacity: 0.2;
}

.projects-left-nav__prev {
  display: flex;
  align-items: center;
  width: 11px;
  height: 20px;
  margin-right: 45px;
  cursor: pointer;
}

.projects-left-nav__prev img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.projects-left-nav__next {
  display: flex;
  align-items: center;
  width: 11px;
  height: 20px;
  margin-left: 45px;
  cursor: pointer;
}

.projects-left-nav__next img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.projects-left-nav__num {
  display: flex;
  align-items: center;
}

.projects-left-nav__num span {
  margin-left: 8px;
  margin-right: 8px;
}

.projects-left-nav__num_all {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #575D66;
}

.projects-left-nav__num_current {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #1E2023;
}

.projects-left-slider {
  position: relative;
  margin-top: 45px;
  background: #1a5bda;
  padding: 40px !important;
  border-radius: 0px 0px 40px 0px;
}

.projects-left-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/projects-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.15;
}

.projects-left-slider__slide_block {
  margin-bottom: 35px;
}

.projects-left-slider__slide_label {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

.projects-left-slider__slide_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

.projects-left-slider__slide_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

.projects-left-slider__slide_link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #EDF2FA;
}

.projects-left-slider__slide_link a {
  display: inline-flex;
  align-items: center;
  color: #EDF2FA;
  text-decoration: none;
}

.projects-left-slider__slide_link a span {
  border-bottom: 1px solid #5BBFE3;
}

.projects-left-slider__slide_link a:hover span {
  border-bottom: 1px solid transparent;
}

.projects-left-slider__slide_link a i {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-image: url("../images/projects-arrow.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
}

.projects-right {
  width: 100%;
  height: 725px;
  margin-left: -30px;
}

.partners {
  padding-top: 112px;
  background: #EDF2FA;
}

.partners-block {
  display: flex;
  flex-direction: column;
}

.partners-header {
  display: flex;
  width: 100%;
}

.partners-header__title {
  max-width: 385px;
  margin-right: 115px;
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  color: #1E2023;
}

.partners-header__text {
  max-width: 280px;
  margin-right: 40px;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #575D66;
}

.partners-header__nav {
  display: flex;
  align-items: center;
  margin-top: 60px;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.partners-header__nav .swiper-button-disabled {
  opacity: 0;
}

.partners-header__nav_prev {
  display: flex;
  align-items: center;
  width: 11px;
  height: 20px;
  margin-right: 45px;
  cursor: pointer;
}

.partners-header__nav_prev img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.partners-header__nav_next {
  display: flex;
  align-items: center;
  width: 11px;
  height: 20px;
  margin-left: 45px;
  cursor: pointer;
}

.partners-header__nav_next img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.partners-header__nav_num {
  display: flex;
  align-items: center;
}

.partners-header__nav_num span {
  margin-left: 8px;
  margin-right: 8px;
}

.partners-header__nav_num_all {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #575D66;
}

.partners-header__nav_num_current {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #1E2023;
}

.partners-slider {
  display: flex;
  width: 100%;
  margin-top: 72px;
}

.partners-slider-slide {
  position: relative;
  padding-top: 8.5%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  /* background-size: contain; */
}

.partners-slider-slide a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.sert {
  background: #EDF2FA;
  padding-top: 72px;
  padding-bottom: 152px;
}

.sert-block {
  display: flex;
  flex-direction: column;
}

.sert-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-left: -10px;
  margin-right: -10px;
}

.sert-items__item {
  display: flex;
  flex-direction: column;
  width: 25%;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

.sert-items__item_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sert-items__item_photo {
  height: 100%;
  padding-top: 99%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.sert-items__item_title {
  position: relative;
  padding: 16px 65px 16px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #009ED6;
  background: #F7F9FC;
}

.sert-items__item_title::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 11px;
  background-image: url("../images/sert-arrow.svg");
  background-size: 12px 11px;
  bottom: 23px;
  right: 27px;
}

.sert-items__item_title a {
  text-decoration: none;
  color: #009ED6;
}

.job {
  padding-top: 85px;
  padding-bottom: 145px;
  background: #F7F9FC;
}

.job-content {
  display: flex;
  margin-top: 92px;
}

.job-left {
  display: flex;
  flex-direction: column;
}

.job-left__title {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #575D66;
}

.job-left_icon img {
  max-width: 100%;
  height: auto;
}

.job-right {
  margin-left: auto;
  max-width: 780px;
  width: 100%;
}

.job-right__block {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 250px;
  padding: 55px;
  border: 8px solid #EDF2FA;
}

.job-right__block_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #1E2023;
}

.job-right__block_link {
  margin-top: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #009ED6;
}

.job-right__block_link a {
  display: inline-block;
  align-items: center;
  text-decoration: none;
  color: #009ED6;
}

.job-right__block_link a span {
  border-bottom: 1px solid #97e2fc;
}

.job-right__block_link a:hover span {
  border-bottom: 1px solid transparent;
}

.job-right__block_link a i {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 13px;
  background-image: url("../images/job-arrow.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.feedback {
  padding-top: 85px;
  padding-bottom: 100px;
  background: #EDF2FA;
}

.feedback-block {
  display: flex;
  flex-direction: column;
}

.feedback-header {
  display: flex;
}

.feedback-header__title {
  max-width: 380px;
  width: 100%;
  margin-right: 20px;
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  color: #1E2023;
}

.feedback-header__text {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
  margin-top: 10px;
}

.feedback-header__text_top {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1E2023;
}

.feedback-header__text_bot {
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #575D66;
}

.feedback-form {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.feedback-form__label {
  position: relative;
  margin-right: 20px;
  width: 238px;
  height: 55px;
}

.feedback-form__label .feedback-descr {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  color: #7F8EA4;
  transition: 0.5s;
  top: -4px;
  left: 8px;
}

.feedback-form__label:nth-child(1) {
  width: 495px;
}

.feedback-form__label input {
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #5BBFE3;
  background: transparent;
  padding: 4px 24px 4px 8px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  color: #1E2023;
}

.feedback-form__label input::placeholder {
  color: #7F8EA4;
}

.feedback-form__label input:focus::placeholder {
  color: transparent;
}

.feedback-form__label input:focus~.feedback-descr {
  opacity: 1;
  visibility: visible;
}

.feedback-form__label input:not(:placeholder-shown)~.feedback-descr {
  opacity: 1;
  visibility: visible;
}

.feedback-form__label.error input {
  border-bottom: 2px solid #EB534B;
  color: #EB534B;
}

.feedback-form__label.error input::placeholder {
  color: #EB534B;
}

.feedback-form__button button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  width: 144px;
  height: 56px;
  background: #009ED6;
  border-radius: 2px;
  flex: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.feedback-form__button button:hover {
  background: #5BBFE3;
}

.feedback-personal {
  margin-top: 20px;
  margin-left: auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #7F8EA4;
  text-align: center;
}

.feedback-personal a {
  color: #7f8ea4;
}

.contacts {
  position: relative;
  display: flex;
  align-items: center;
  height: 735px;
}

.contacts-map {
  width: 100%;
  height: 100%;
}

.contacts-content {
  position: absolute;
  left: 19.2%;
  z-index: 9999;
}

.contacts-block {
  background: #fff;
  padding: 40px;
  max-width: 580px;
  margin-bottom: 20px;
}

.contacts-block__title {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1E2023;
}

.contacts-block__text1 {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #1E2023;
}

.contacts-block__text2 {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1E2023;
}

.contacts-block__header {
  display: flex;
  margin-bottom: 32px;
}

.contacts-block__header_item {
  width: 50%;
  margin-right: 32px;
}

.contacts-block__header_item:last-child {
  margin-right: 0;
}

.contacts-block__phones {
  display: flex;
  flex-direction: column;
}

.contacts-block__phones_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contacts-block__phones_item:last-child {
  margin-bottom: 0;
}

.contacts-block__phones_item_prof {
  margin-right: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #7F8EA4;
}

.contacts-block__phones_item_phone {
  margin-left: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #1E2023;
}

.contacts-block a {
  text-decoration: none;
  color: #1E2023;
}

.footer {
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  background: #f7f9fc;
}

.footer::before {
  content: '';
  position: absolute;
  width: 697px;
  height: 424px;
  right: 0;
  bottom: 0;
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 697px 424px;
  mix-blend-mode: darken;
}

.footer-top {
  position: relative;
  display: flex;
  padding-bottom: 100px;
  border-bottom: 1px solid #EDF2FA;
}

.footer-left {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  margin-right: 180px;
}

.footer-left__logo {
  margin-bottom: 37px;
  max-width: 140px;
}

.footer-left__logo img {
  max-width: 100%;
  height: auto;
}

.footer-left__copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #34383D;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
  max-width: 272px;
  width: 100%;
}

.footer-nav__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #34383D;
}

.footer-nav__nav {
  margin-top: 32px;
}

.footer-nav__nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__nav ul li {
  width: 50%;
  margin-bottom: 15px;
}

.footer-nav__nav ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #34383D;
  text-decoration: none;
}

.footer-nav__nav ul li a:hover {
  opacity: 0.8;
}

.footer-contacts {
  margin-left: auto;
  max-width: 320px;
  width: 100%;
}

.footer-contacts__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #34383D;
}

.footer-contacts__block {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.footer-contacts__adress {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #34383D;
}

.footer-contacts__phone {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #34383D;
}

.footer-contacts__phone a {
  text-decoration: none;
  color: #34383d;
}

.footer-contacts__mail {
  margin-top: 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #34383D;
}

.footer-contacts__mail a {
  text-decoration: none;
  color: #34383d;
}

.footer-bot {
  position: relative;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-conf {
  margin-right: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5BBFE3;
}

.footer-conf a {
  color: #5BBFE3;
}

.footer-conf a:hover {
  text-decoration: none;
}

.footer-velvet {
  margin-left: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5BBFE3;
}

.footer-velvet a {
  color: #E345E7;
  text-decoration: none;
}

.footer-velvet a:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0px 7px 27px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
}

.modal-inner {
  display: table;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.modal-content {
  display: table-cell;
  vertical-align: middle;
  margin-left: auto;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.modal-block {
  width: 985px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}

.modal-slider {
  position: relative;
}

.modal-slider__slide {
  display: flex;
  height: auto !important;
}

.modal-slider__left {
  max-width: 555px;
  width: 100%;
  margin-right: 24px;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
}

.modal-slider__title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #1E2023;
}

.modal-slider__descr {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #7F8EA4;
}

.modal-slider__list ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-slider__list ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  min-height: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #34383D;
}

.modal-slider__list ul li:last-child {
  margin-bottom: 0;
}

.modal-slider__list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  background-image: url("../images/modal-icon.png");
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.modal-slider__photo {
  width: 330px;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.modal-slider__controls {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 76px;
  height: auto;
  padding: 33px 16px 42px 16px;
  background: #F4F4F4;
  z-index: 2;
}

.modal-slider__close {
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url("../images/modal-close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.modal-slider__nav {
  position: absolute;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
}

.modal-slider__nav_prev {
  width: 8px;
  height: 14px;
  margin: 32px;
  background-image: url("../images/modal-prev.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.modal-slider__nav_prev.swiper-button-disabled {
  opacity: 0.3;
}

.modal-slider__nav_prev:hover {
  opacity: 0.7;
}

.modal-slider__nav_next {
  width: 8px;
  height: 14px;
  background-image: url("../images/modal-next.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.modal-slider__nav_next.swiper-button-disabled {
  opacity: 0.3;
}

.modal-slider__nav_next:hover {
  opacity: 0.7;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 15px;
}

body.modal-open .modal {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

/*# sourceMappingURL=style.css.map */