.section__index {
  position: relative;
  height: 50vh;
  max-height: 905px;
}
.section__index .container {
  position: relative;
  height: 100%;
}

.index__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 170px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.index__title {
  max-width: 730px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: clamp(50px, 6.1vw, 90px);
  line-height: 103%;
  color: #fff;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.index__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.index__adress {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20.35px;
  line-height: normal;
  color: #fff;
  bottom: 30px;
  left: 10px;
}

.index__image {
  position: absolute;
  width: 100%;
  height: calc(100% + 144px);
  top: -144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.index__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: rgba(9, 22, 27, 0.3882352941);
}
.index__image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 440px;
  bottom: -220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(9, 70, 162, 0.561);
  -webkit-filter: blur(205.1px);
          filter: blur(205.1px);
}
.index__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index__arrow-bottom {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0946a2;
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 1;
  -webkit-animation: translateArrow 1.5s 0.5s infinite;
          animation: translateArrow 1.5s 0.5s infinite;
}
.index__arrow-bottom::before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #48638b;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: scaleArrow 1s 0.3s infinite;
          animation: scaleArrow 1s 0.3s infinite;
}
.index__arrow-bottom svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@-webkit-keyframes scaleArrow {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

@keyframes scaleArrow {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes translateArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  80% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes translateArrow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  80% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .index__inner {
    padding: 0 0 100px;
  }
  .index__arrow-bottom {
    width: 60px;
    height: 60px;
  }
  .index__arrow-bottom svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 1000px) {
  .index__adress {
    font-size: 18px;
  }
}
@media (max-width: 850px) {
  .index__inner {
    padding: 0 0 60px;
  }
  .index__title {
    font-size: clamp(26px, 5.9vw, 50px);
  }
  .index__adress {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .index__adress {
    font-size: 14px;
    bottom: 20px;
    padding-right: 65px;
  }
}
.section__about {
  padding: 80px 0 50px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.about__links {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: #535353;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.about__links a {
  color: #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about__links a:hover {
  color: #535353;
}

.about__body {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  color: #535353;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    text-align: justify;
    text-indent: 30px;
}
.about__body h2,
.about__body h3 {
  margin: 20px 0;
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
}
.about__body img {
  margin: 40px 0;
  width: 100%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.about__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.about__body ul li {
  padding-left: 30px;
  position: relative;
}
.about__body ul li svg {
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1200px) {
  .section__about {
    padding: 60px 0 30px;
  }
  .about__inner {
    gap: 40px;
  }
  .about__links {
    font-size: 26px;
  }
  .about__body {
    font-size: 26px;
    gap: 15px;
  }
  .about__body img {
    margin: 30px 0;
  }
  .about__body h2,
  .about__body h3 {
    margin: 10px 0;
  }
  .about__body ul {
    gap: 15px;
  }
}
@media (max-width: 1000px) {
  .about__inner {
    gap: 20px;
  }
  .about__links {
    font-size: 20px;
  }
  .about__body {
    font-size: 20px;
  }
  .about__body img {
    margin: 20px 0;
  }
}
@media (max-width: 850px) {
  .section__about {
    padding: 30px 0;
  }
  .about__links {
    font-size: 18px;
  }
  .about__body {
    font-size: 18px;
  }
  .about__body h2,
  .about__body h3 {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .about__body img {
    min-height: 250px;
  }
}
@media (max-width: 650px) {
  .about__links {
    font-size: 16px;
  }
  .about__body {
    font-size: 16px;
  }
  .about__body img {
    margin: 10px 0;
  }
}
.section__plus {
  padding: 50px 0;
}

.plus__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 110px;
}

.plus__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
}

.plus__title._active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.plus__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px 130px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.plus__elem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.plus__elem:nth-last-child(2) {
  margin-left: auto;
}
.plus__elem:nth-last-child(1) {
  margin-right: auto;
}

.plus__elem._active:nth-child(1) img {
  -webkit-animation: blur-first 0.7s 0.1s;
          animation: blur-first 0.7s 0.1s;
}
.plus__elem._active:nth-child(2) img {
  -webkit-animation: blur-first 0.7s 0.3s;
          animation: blur-first 0.7s 0.3s;
}
.plus__elem._active:nth-child(3) img {
  -webkit-animation: blur-first 0.7s 0.5s;
          animation: blur-first 0.7s 0.5s;
}
.plus__elem._active:nth-child(4) img {
  -webkit-animation: blur-first 0.7s 0.7s;
          animation: blur-first 0.7s 0.7s;
}
.plus__elem._active:nth-child(5) img {
  -webkit-animation: blur-first 0.7s 0.9s;
          animation: blur-first 0.7s 0.9s;
}

@-webkit-keyframes blur-first {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes blur-first {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.plus__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.plus__text {
  text-align: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 138%;
  text-align: center;
  color: #535353;
}

@media (max-width: 1200px) {
  .section__plus {
    padding: 40px 0;
  }
  .plus__inner {
    gap: 80px;
  }
  .plus__body {
    gap: 40px 80px;
  }
  .plus__text {
    font-size: 26px;
  }
  .plus__img img {
    max-width: 80px;
  }
}
@media (max-width: 1000px) {
  .plus__inner {
    gap: 50px;
  }
  .plus__text {
    font-size: 20px;
  }
  .plus__img img {
    max-width: 60px;
  }
  .plus__body {
    gap: 30px 60px;
  }
}
@media (max-width: 850px) {
  .section__plus {
    padding: 30px 0;
  }
  .plus__inner {
    gap: 30px;
  }
  .plus__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .plus__text {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .plus__inner {
    gap: 20px;
  }
  .plus__body {
    gap: 30px;
  }
  .plus__elem {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .plus__elem:nth-last-child(2) {
    margin: 0;
  }
  .plus__elem:nth-last-child(1) {
    margin: 0 auto;
  }
  .plus__text {
    font-size: 16px;
  }
  .plus__img img {
    max-width: 50px;
  }
}
.section__contact {
  padding: 50px 0 60px;
}

@media (max-width: 1200px) {
  .section__contact {
    padding: 40px 0;
  }
}
@media (max-width: 850px) {
  .section__contact {
    padding: 30px 0;
  }
}
.contact__inner {
  background: linear-gradient(131.8deg, #0946a2 0.03%, #5a738e 82.16%);
  border-radius: 15px;
  padding: 75px 130px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46%;
          flex: 0 1 46%;
}

.contact__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(60px, 6.9vw, 114px);
  line-height: 97%;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.contact__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.contact__text {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin: 30px 0 60px;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
.contact__text span {
  font-weight: 600;
}

.contact__text._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.3s;
  transition: all 0.7s 0.3s;
}

.contact__var {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.contact__var p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 12px;
}

.contact__tab p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  font-weight: 500;
  font-size: 16.86px;
  line-height: 190%;
  padding: 20px 30px;
  border-radius: 90px;
  border: 1.69px solid #ffffff;
  cursor: default;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__tab p:hover {
  color: #0946a2;
  background: #ffffff;
}

.contact__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34%;
          flex: 0 1 34%;
}
.contact__right form {
  height: 100%;
}

.contact__role {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  height: 100%;
}

.contact__pole {
  position: relative;
}
.contact__pole:last-child {
  margin-top: auto;
  font-family: "Neuton", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #c3c3c3;
}
.contact__pole:last-child a {
  color: #c3c3c3;
  text-decoration: underline;
}

.contact__arrow {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: #d8d8d8;
  border-radius: 10px;
  cursor: pointer;
}
.contact__arrow svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact__arrow.active svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.contact__input {
  background: #ffffff;
  border: 1px solid #797979;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: #000000;
  padding: 27px 40px 23px 40px;
  border-radius: 36px;
  width: 100%;
}
.contact__input::-webkit-input-placeholder {
  color: #bcbcbc;
}
.contact__input::-moz-placeholder {
  color: #bcbcbc;
}
.contact__input:-ms-input-placeholder {
  color: #bcbcbc;
}
.contact__input::-ms-input-placeholder {
  color: #bcbcbc;
}
.contact__input::placeholder {
  color: #bcbcbc;
}

.contact__input._btn {
  background: linear-gradient(309.26deg, #0d2954 -47.33%, #1c5bba 81.98%);
    border: 1px solid #4570af;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: #ffffff!important;
    padding: 21px 30px 19px 30px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 10px;
    display: block;
	text-decoration: none!important;

}

.contact__sublist {
  position: absolute;
  z-index: 1;
  background: #fff;
  width: 100%;
  border: 1px solid #797979;
  border-radius: 36px;
  padding: 0px 40px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact__sublist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contact__sublist li {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__sublist li:hover {
  color: #bcbcbc;
}

.contact__sublist.active {
  max-height: 500px;
  overflow: visible;
  padding: 20px 40px;
  opacity: 1;
}

@media (max-width: 1650px) {
  .contact__inner {
    padding: 50px 90px;
  }
  .contact__tab p {
    padding: 15px 20px;
  }
  .contact__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
  }
  .contact__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}
@media (max-width: 1200px) {
  .contact__inner {
    padding: 40px 60px;
  }
  .contact__text {
    font-size: 20px;
    margin: 20px 0 40px;
  }
  .contact__var p {
    font-size: 20px;
  }
  .contact__tabs .contact__tab p {
    font-size: 14px;
  }
  .contact__role {
    gap: 20px;
  }
  .contact__pole:last-child {
    font-size: 16px;
  }
  .contact__input {
    font-size: 18px;
    padding: 20px 20px 16px 30px;
    border-radius: 25px;
  }
  .contact__input._btn {
    font-size: 20px;
    padding: 25px 20px 23px 20px;
  }
  .contact__arrow {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .contact__arrow svg {
    width: 15px;
    height: 9px;
  }
  .contact__sublist {
    border-radius: 25px;
    padding: 0px 20px;
    font-size: 18px;
    gap: 5px;
  }
  .contact__sublist.active {
    padding: 20px 20px;
  }
}
@media (max-width: 1000px) {
  .contact__inner {
    padding: 30px;
    gap: 30px;
  }
  .contact__text {
    font-size: 18px;
  }
  .contact__var p {
    font-size: 18px;
  }
  .contact__input {
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 16px;
  }
  .contact__input._btn {
    font-size: 18px;
    padding: 20px 20px 18px 20px;
  }
  .contact__arrow {
    -webkit-transform: translate(-20px, -50%);
            transform: translate(-20px, -50%);
  }
  .contact__sublist {
    font-size: 16px;
    border-radius: 20px;
  }
  .contact__tab p {
    border-radius: 70px;
    padding: 10px 15px;
  }
}
@media (max-width: 850px) {
  .contact__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 40px auto;
    -ms-grid-columns: 1fr 30px 1.2fr;
        grid-template: auto auto/1fr 1.2fr;
    gap: 40px 30px;
  }
  .contact__title {
    font-size: clamp(36px, 7vw, 60px);
  }
  .contact__text {
    font-size: 16px;
    margin: 15px 0 25px;
  }
  .contact__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: contents;
  }
  .contact__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .contact__info {
    width: 100%;
  }
  .contact__var {
    gap: 15px;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .contact__var p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    font-size: 16px;
  }
  .contact__role {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .contact__role {
    gap: 15px;
  }
  .contact__text {
    margin: 15px 0 0 0;
  }
}
.section__services {
  padding: 60px 0 15px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.services__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
}

.services__title._active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.5s 0.1s;
  transition: all 0.5s 0.1s;
}

.services__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.services__elem {
  position: relative;
}
.services__elem::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background: linear-gradient(180.14deg, rgba(0, 0, 0, 0) -7.88%, rgba(9, 70, 162, 0.8) 99.88%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services__elem::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  top: 0;
  left: 0;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.services__elem:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 29%;
          flex: 1 1 29%;
}
.services__elem:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42%;
          flex: 1 1 42%;
}
.services__elem:nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24%;
          flex: 1 1 24%;
}
.services__elem:nth-child(4) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42%;
          flex: 1 1 42%;
}
.services__elem:nth-child(5) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24%;
          flex: 1 1 24%;
}
.services__elem:nth-child(6) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 29%;
          flex: 1 1 29%;
}
.services__elem:nth-child(7) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 29%;
          flex: 1 1 29%;
}
.services__elem:nth-child(8) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24%;
          flex: 1 1 24%;
}
.services__elem:nth-child(9) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42%;
          flex: 1 1 42%;
}
.services__elem:nth-child(10) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24%;
          flex: 1 1 24%;
}
.services__elem:nth-child(11) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42%;
          flex: 1 1 42%;
}
.services__elem:nth-child(12) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 29%;
          flex: 1 1 29%;
}
.services__elem:hover::before {
  opacity: 0;
}
.services__elem:hover::after {
  background: rgba(9, 70, 162, 0.8);
}
.services__elem:hover .services__arrow {
  top: 32px;
  right: 32px;
  opacity: 1;
}

.services__elem._active:nth-child(3n+1) {
  -webkit-animation: blur-first 0.5s 0.1s;
          animation: blur-first 0.5s 0.1s;
}
.services__elem._active:nth-child(3n+2) {
  -webkit-animation: blur-first 0.5s 0.3s;
          animation: blur-first 0.5s 0.3s;
}
.services__elem._active:nth-child(3n+3) {
  -webkit-animation: blur-first 0.5s 0.5s;
          animation: blur-first 0.5s 0.5s;
}

@keyframes blur-first {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.services__arrow {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  right: 0;
  z-index: 1;
}

.services__img {
  width: 100%;
  height: 100%;
  max-height: 350px;
}
.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.services__subtitle {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  color: #fff;
  width: 50%;
  z-index: 1;
}

@media (max-width: 1200px) {
  .section__services {
    padding: 40px 0 10px;
  }
  .services__inner {
    gap: 30px;
  }
  .services__subtitle {
    font-size: 30px;
    width: 80%;
    left: 20px;
    bottom: 20px;
  }
  .services__elem:hover .services__arrow {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 1000px) {
  .services__elem:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42%;
            flex: 1 1 42%;
  }
  .services__elem:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 54%;
            flex: 1 1 54%;
  }
  .services__elem:nth-child(3) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 38%;
            flex: 1 1 38%;
  }
  .services__elem:nth-child(4) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 54%;
            flex: 1 1 54%;
  }
  .services__elem:nth-child(5) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 38%;
            flex: 1 1 38%;
  }
  .services__elem:nth-child(6) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42%;
            flex: 1 1 42%;
  }
  .services__elem:nth-child(7) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42%;
            flex: 1 1 42%;
  }
  .services__elem:nth-child(8) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 38%;
            flex: 1 1 38%;
  }
  .services__elem:nth-child(9) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 54%;
            flex: 1 1 54%;
  }
  .services__elem:nth-child(10) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 38%;
            flex: 1 1 38%;
  }
  .services__elem:nth-child(11) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 54%;
            flex: 1 1 54%;
  }
  .services__elem:nth-child(12) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42%;
            flex: 1 1 42%;
  }
  .services__img {
    max-height: 250px;
  }
}
@media (max-width: 850px) {
  .section__services {
    padding: 30px 0 10px;
  }
  .services__inner {
    gap: 20px;
  }
  .services__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .services__body {
    gap: 15px;
  }
  .services__subtitle {
    font-size: 24px;
  }
  .services__arrow svg {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 650px) {
  .services__body {
    gap: 10px;
  }
  .services__subtitle {
    font-size: 18px;
    left: 15px;
    bottom: 15px;
  }
  .services__elem {
    min-width: 280px;
  }
  .services__elem:hover .services__arrow {
    top: 15px;
    right: 15px;
  }
  .services__img {
    max-height: 200px;
  }
}
.section__how {
  padding: 70px 0 130px;
}

.how__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.how__title {
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: normal;
  color: #000;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.how__title._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.7s 0.1s;
  transition: all 0.7s 0.1s;
}

.how__body {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 32px;
  line-height: 138%;
  color: #535353;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.how__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: 40px;
  margin-bottom: 100px;
}
.how__body ul li {
  list-style: auto;
}
.how__body p {
  margin-bottom: 40px;
}
.how__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .section__how {
    padding: 50px 0 90px;
  }
  .how__inner {
    gap: 20px;
  }
  .how__body {
    font-size: 26px;
  }
  .how__body ul {
    gap: 15px;
    margin-bottom: 70px;
  }
  .how__body p {
    margin-bottom: 20px;
  }
}
@media (max-width: 1000px) {
  .how__body {
    font-size: 20px;
  }
  .how__body ul {
    margin-bottom: 40px;
  }
  .how__body p {
    margin-bottom: 15px;
  }
}
@media (max-width: 850px) {
  .section__how {
    padding: 30px 0 60px;
  }
  .how__title {
    font-size: clamp(24px, 3.9vw, 32px);
  }
  .how__body {
    font-size: 18px;
  }
  .how__body ul {
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .how__body {
    font-size: 16px;
  }
  .how__body ul {
    gap: 10px;
    margin-left: 20px;
  }
  .how__body p {
    margin-bottom: 10px;
  }
}

.font-40{font-size: 40px;font-weight: 500;}

@media (max-width: 1050px) {
	.font-40{font-size: 20px;font-weight: 500;}
	.about__body ul li svg {top: 10px;}
	.about__body ul li {padding-left: 0px;}
}

@media (max-width: 650px) {
	.font-40{font-size: 20px;font-weight: 500;}
	.about__body ul li svg {top: 10px;left: 0;}
	.about__body ul li {padding-left: 0px;}
}




