@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Rubik", sans-serif;
  font-style: normal;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
  background: #001834;
}

a {
  position: relative;
  text-decoration: none;
}
a::after {
  content: '';
  position: absolute;
  top: 110%;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: all .5s;
}

.body-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.body-bg-inner {
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) translateY(-50%);
  width: 120vw;
  height: 120vh;
  overflow: hidden;
}
.body-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(14vw);
}
.circle-bg {
  position: absolute;
  width: 30vw;
  height: 30vw;
  background: #3793FF;
  border-radius: 50%;
  filter: blur(4vw);
}

.wrapper {
  position: relative;
  z-index: 3;
  padding: 40px 100px 100px;
}
._container {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}


.header {
  width: 100%;
}
.header__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.header__contacts {
  width: 100%;
  max-width: 780px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__phones {
  display: flex;
  gap: 20px;
}
.header__phones a {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn {
  position: relative;
  padding: 15px 20px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.42px;
  cursor: pointer;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.header__anydesk {
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__anydesk img {
  position: relative;
  z-index: 3;
}
.btn-hover-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  z-index: 2;
  width: 25px;
  height: 25px;
  background: #3492FF;
  border-radius: 50%;
  transition: all 1s;
}

.header__phones-mob {
  position: relative;
  display: none;
}
.header__phones__mob {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0px 0px;
  min-width: 187px;
  max-width: 187px;
  display: none;
}
.header__phones__mob.phones-mob-open {
  display: block;
}
.header-phones {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 10px;
  background: #003067;
}
.header-phones a {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-wrap: nowrap;
}


.start {
  padding: 292px 0px 300px;
  display: flex;
}
.start__content {
  margin: 0 auto;
  /* width: 100%;
  max-width: 1095px; */
  height: 42px;
  display: flex;
  gap: 10px;
}
.start__content h2 {
  height: 42px;
  font-size: 32px;
  font-weight: 800;
  line-height: 130%;
}
.start__swiper {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
}
.start__swiper-block {
  position: relative;
  height: 42px;
  animation: verticalSlidingText 8s ease-in-out infinite;
}


@keyframes verticalSlidingText {
  0% {
    top: 0px;
  }
  28% {
    top: 0;
  }
  33% {
    top: -42px;
  }
  58% {
    top: -42px;
  }
  63% {
    top: -84px;
  }
  88% {
    top: -84px;
  }
  93% {
    top: -126px;
  }
  100% {
    top: -126px;
  }
}


.services {
  width: 100%;
}
.services__content {
  width: 100%;
}
.services__cards {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.service {
  position: relative;
  padding: 20px 31px 30px;
  min-width: 253px;
  max-width: 253px;
  height: 280px;
  border-radius: 30px;
  border: 2px solid #ffffff;
  overflow: hidden;
  cursor: default;
}
.service__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.service-hover-bg {
  position: absolute;
  top: 100%;
  right: -100px;
  z-index: 2;
  width: 127px;
  height: 127px;
  background: #003067;
  border-radius: 50%;
  transition: all 1s;
}
.service__image {
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  overflow: hidden;
}
.service__image img {
  width: 100%;
  height: 100%;
}
.service__inner p {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}



.popup__overlay {
  position: fixed;
  bottom: -100%;
  left: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  transition: all .5s;
}
.popup__overlay.popup-open {
  bottom: 0;
}
.popup {
  padding: 0 100px;
}
.popup__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 78px;
  border-radius: 50px 50px 0px 0px;
  background: #3492FF;
}
.popup__content > p {
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
.popup__contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.popup__mail {
  display: flex;
}
.popup__contact {
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 1.44px;
  text-decoration: none;
}
.popup__phones {
  display: flex;
  gap: 20px;
}
.popup__text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.popup__text p {
  max-width: 756px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.popup__text a {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-wrap: nowrap;
}



@media screen and (min-width: 1024px) {
  a:hover::after {
    width: 100%;
  }
  .btn:hover .btn-hover-bg {
    right: 0;
    width: 153px;
    height: 153px;
  }
  .service:hover .service-hover-bg {
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
  }
}



@media screen and (max-width: 1400px) {
  .wrapper {
    padding: 40px 16px 100px;
  }
  .start {
    padding: 230px 0px 230px;
  }
  .start__content h2 {
    font-size: 28px;
  }
  .popup {
    padding: 0 16px;
  }
  .popup__content {
    gap: 50px;
  }
  .popup__contact {
    font-size: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .wrapper {
    padding: 24px 16px 100px;
  }
  .start {
    padding: 150px 0px 150px;
  }
  .start__content h2 {
    font-size: 20px;
  }
  .popup__content {
    padding: 40px;
    gap: 40px;
  }
  .popup__contacts {
    gap: 20px;
  }
  .popup__contact {
    font-size: 26px;
  }
}
@media screen and (max-width: 940px) {
  .header__phones-mob {
    display: block;
  }
  .header__phones {
    display: none;
  }
  .header__contacts {
    width: auto;
  }
  .header__anydesk {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 10px 16px 100px;
  }
  .start {
    padding: 120px 0px 120px;
  }
  .start__content h2 {
    font-size: 16px;
  }
  .popup {
    padding: 0px;
  }
  .popup__content {
    padding: 30px 16px;
    gap: 30px;
  }
  .popup__content > p {
    font-size: 14px;
  }
  .popup__content p {
    text-align: center;
  }
  .popup__contacts {
    gap: 14px;
    align-items: center;
  }
  .popup__phones {
    flex-direction: column;
    gap: 14px;
  }
  .popup__text {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .circle-bg {
    width: 35vw;
    height: 35vw;
    filter: blur(15vw);
  }
  .header__logo {
    min-width: 62px;
    max-width: 62px;
    height: 18px;
  }
  .header__content {
    gap: 20px;
  }
  .start {
    padding: 100px 0px 100px;
  }
  .services__cards {
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
  }
  .service {
    padding: 16px 0px;
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }
  .service__inner {
    gap: 10px;
  }
  .service__image {
    min-width: 75px;
    max-width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 480px) {
  .header__contacts {
    flex-direction: column;
  }
}
@media screen and (max-width: 360px) {
  .popup__contact {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .start__content h2 {
    font-size: 14px;
  }
}