* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Actay';
  src: url('../fonts/Actay-Regular.eot');
  src: url('../fonts/Actay-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Actay-Regular.woff2') format('woff2'),
      url('../fonts/Actay-Regular.woff') format('woff'),
      url('../fonts/Actay-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Actay Wide';
  src: url('../fonts/ActayWide-Bold.eot');
  src: url('../fonts/ActayWide-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/ActayWide-Bold.woff2') format('woff2'),
      url('../fonts/ActayWide-Bold.woff') format('woff'),
      url('../fonts/ActayWide-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Actay';
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;

}

body.modal {
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  &::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(7, 25, 36, 0.55);
    z-index: 20;

  }
}

body.hidden {
  overflow: hidden;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
  &::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(7, 25, 36, 0.55);
    z-index: 19;
  }
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
}

h1, h2 {
  margin: 0;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 44px;
  }
}

@media (min-width: 1366px) {
  .container {
    padding: 0 112px;
  }
}

@media (min-width: 1920px) {
  .container {
    padding: 0;
    max-width: 1600px;
  }
}

.title {
  font-family: "Actay Wide";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: #071924;
}

@media (min-width: 1024px) {
  .title {
    letter-spacing: -0.44px;
    font-size: 44px;
  }
}

@media (min-width: 1920px) {
  .title {
    letter-spacing: -0.52px;
    font-size: 52px;
  }
}

.blue__btn {
  padding: 18px 24px;
  background: #34B1FE;
  border-radius: 8px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.8s;
  border: 1px solid transparent;
  &:hover {
    border: 1px solid var(--Blue-100, #34B1FE);
    background: var(--White-100, #FFF);
    color: var(--Dark-Blue-100, #071924);
  }
  &:active {
    border: 1px solid transparent;
    background: var(--Blue-60, #64C4FF);
    color: var(--White-100, #FFF);
  }
}

.success {
  background: #34CC67!important;
  color: var(--White-100, #FFF)!important;
}

.header {
  background: #071924;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
}

.hidden .header {
  &::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 101%;
    top: 0;
    left: 0;
    background: rgba(7, 25, 36, 0.55);
  }
}

.header.light {
  border-bottom: 1px solid #E5E5E5;
  background: #FFFFFF;
  position: fixed;
  transition: all 0.8s;
}

@media (min-width: 768px) {
  .header {
    padding: 16px 32px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 16px 44px;
  }
}

@media (min-width: 1366px) {
  .header {
    padding: 16px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1366px) {
  .home .header {
    top: 16px;
  }
}

@media (min-width: 1366px) {
  .home .header.light {
    top: 0;
  }
}


.header.hidden {
  transform: translateY(-120%);
  position: fixed;
}

.header__logo {
  display: block;
}

.header__logo--light {
  display: none;
}

.header.light .header__logo {
  display: none;
}

.header.light .header__logo--light {
  display: block;
}


.header__nav {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  padding: 28px 16px 24px 16px;
  position: fixed;
  top: calc(100dvh - 406px);
  right: 0;
  width: 100%;
  min-height: 406px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.8s;
  z-index: 30;
}

.header__nav.active {
  transform: translateY(0);
   opacity: 1;
 }

 @media (min-width: 768px) {
  .header__nav {
    transform: translateX(100%);
      width: 374px;
      height: 100vh;
      border-top-right-radius: 0;
      border-bottom-left-radius: 20px;
      padding: 32px;
      bottom: auto;
      top: 0;
  }
}

@media (min-width: 768px) {
  .header__nav.active {
      transform: translateX(0);
    }
}

@media (min-width: 1366px) {
  .header__nav {
    position: static;
    transform: translateY(-50%);
    transform: translateX(0%);
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    gap: 45px;
    background-color: transparent;
    border-radius: 0;
    min-height: auto;
    opacity: 1;
    z-index: 10;
  }
}

.header__btn--mobile {
  width: 100%;
  background-color: #34B1FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding: 18px 0;
  border-radius: 8px;
  margin-top: auto;
  cursor: pointer;
}

@media (min-width: 1366px) {
  .header__btn--mobile {
    display: none;
  }
}

.header__burger--close {
  background-image: url(../img/burger-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
  transition: all 0.8s;
  &:hover {
    opacity: 0.7;
  }
  &:active {
    opacity: 0.5;
  }
}

.header__nav.active .header__burger--close {
  display: block;
}

.header__burger {
  cursor: pointer;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  width: 60px;
  height: 60px;
  background-image: url(../img/burger-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.8s;
  &:active {
    border: 1px solid var(--White-100, #FFF);
  }
}

.header.light .header__burger {
  background-image: url(../img/burger-icon-light.svg);
  border: 1px solid #E5E5E5;
  &:active {
    border: 1px solid var(--Dark-Blue-100, #071924);
  }
}

@media (min-width: 1366px) {
  .header__burger {
    display: none;
  }
}

.header__btn {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 24px;
  height: 60px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  display: none;
  z-index: 11;
  transition: all 0.8s;
  &:hover {
    border: 1px solid transparent;
    background: var(--White-100, #FFF);
    color: var(--Dark-Blue-100, #071924);
  }
  &:active {
    border: 1px solid transparent;
    background: var(--White-100, #FFF);
    color: var(--Dark-Blue-100, #071924);
  }
}

@media (min-width: 768px) {
  .header__btn {
    display: flex;
    margin-left: auto;
    margin-right: 12px;
  }
}

@media (min-width: 1366px) {
  .header__btn {
    margin-left: 0;
    margin-right: 0;
  }
}

.header.light .header__btn {
  transition: all 0.8s;
  border: 1px solid transparent;
  background-color: #34B1FE;
  &:hover {
    border: 1px solid var(--Blue-100, #34B1FE);
    background: var(--White-100, #FFF);
    color: var(--Dark-Blue-100, #071924);
  }
  &:active {
    border: 1px solid transparent;
    background: var(--Blue-60, #64C4FF);
    color: var(--White-100, #FFF);
  }
}

.header__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .header__list {
    gap: 32px;
  }
}

@media (min-width: 1366px) {
  .header__list {
    flex-direction: row;
    gap: 16px;
  }
}

@media (min-width: 2560px) {
  .header__list {
    gap: 22px;
  }
}


.header__list a {
  color: #071924;
  text-transform: uppercase;
  font-family: 'Actay Wide';
  font-size: 24px;
  transition: all 0.8s;
  display: inline-block;
  &:hover {
    color: #6A757C;
  }
  &:active {
    color: #34B1FE;
  }
}

@media (min-width: 1366px) {
  .header__list li {
    overflow-y: hidden;
  }

  .header__list a {
    color: #838C91;
    font-size: 16px;
    font-family: 'Actay';
    text-transform: none;
    position: relative;
    transition: color 0.8s;
    &:hover {
      color: #FFFFFF;
      transform: translateY(-100%);
      transition: transform 0.5s ease-out; 
    }

    &::before {
      position: absolute;
      content: attr(data-text);
      top: 0;
      left: 0;
      transform: translateY(100%);
    }
  }
  

  .header__list a:hover::before {
    webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
}

@media (min-width: 1366px) {
  .header.light .header__list a {
    &:hover {
      color: #6A757C;
    }
    &:active {
      color: #34B1FE;
    }
  }
}

@media (min-width: 2560px) {
  .header__list a {
    font-size: 18px;
  }
}

.footer {
  background: #071924;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

@media (min-width: 1366px) {
  .footer {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

.footer__hr {
  width: 100%;
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  margin: 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

@media (min-width: 768px) {
  .footer__wrapper {
    padding-top: 44px;
  }
}

@media (min-width: 1024px) {
  .footer__wrapper {
    padding-top: 80px;
  }
}

@media (min-width: 1366px) {
  .footer__wrapper {
    padding-top: 64px;
  }
}

@media (min-width: 1920px) {
  .footer__wrapper {
    padding-top: 100px;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 44px;
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 381px 1fr;
    gap: 95px;
  }
}

@media (min-width: 1366px) {
  .footer__top {
    gap: 209px;
    margin-bottom: 56px;
  }
}

@media (min-width: 1920px) {
  .footer__top {
    grid-template-columns: 657px 1fr;
    gap: 151px;
  }
}

@media (min-width: 2560px) {
  .footer__top {
    margin-bottom: 64px;
  }
}

.footer__bottom {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .footer__bottom {
    margin-top: 55px;
  }
}

@media (min-width: 1024px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 381px 1fr;
    gap: 95px;
  }
}

@media (min-width: 1366px) {
  .footer__bottom {
    gap: 209px;
    margin-top: 56px;
  }
}

@media (min-width: 1920px) {
  .footer__bottom {
    gap: 398px;
    grid-template-columns: 410px 1fr;
    margin-top: 70px;
  }
}

@media (min-width: 1024px) {
  .footer__bottom .footer__block {
    gap: 12px; 
    margin-bottom: 64px;
  }
}

@media (min-width: 1366px) {
  .footer__bottom .footer__block {
    margin-bottom: 100px;
  }
}

@media (min-width: 2560px) {
  .footer__bottom .footer__block {
    gap: 20px;
  }
}

.footer_links {
  display: flex;
  flex-direction: column;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__inner {
    gap: 20px;
  }
}

.footer__inner--email {
  margin-top: 32px;
}

@media (min-width: 1920px) {
  .footer__inner--email {
    margin-top: 70px;
  }
}

@media (min-width: 768px) {
  .footer__block {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

@media (min-width: 768px) {
  .footer__block {
    gap: 0;
  }
}

.footer__description {
  color: #838C91;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

@media (min-width: 1920px) {
  .footer__description {
    font-size: 16px;
  }
}

.footer__contacts {
  font-size: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 26px;
  font-family: 'Actay Wide';
}

@media (min-width: 1024px) {
  .footer__contacts {
    font-size: 32px;
  }
}

@media (min-width: 1920px) {
  .footer__contacts {
    font-size: 40px;
  }
}

.footer__address {
  font-size: 20px;
  color: #FFFFFF;
  font-style: normal;
  line-height: 24px;
  font-family: 'Actay Wide';
}

@media (min-width: 1024px) {
  .footer__address {
    font-size: 24px;
    line-height: normal;
  }
}

@media (min-width: 1920px) {
  .footer__address {
    font-size: 28px;
  }
}

.footer_link {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #838C91;
  margin-bottom: 4px;
  &:last-of-type {
    margin-bottom: 36px;
  }
}

@media (min-width: 768px) {
  .footer_link:last-of-type {
    margin-bottom: 44px;
  }
}

@media (min-width: 1920px) {
  .footer_link {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

.footer__responsible {
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__responsible {
    margin-bottom: 44px;
  }
}

@media (min-width: 1024px) {
  .footer__responsible {
    margin-top: 0;
  }
}

@media (min-width: 1920px) {
  .footer__responsible {
    font-size: 18px;
  }
}

.footer__date-foundation {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 44px;
}

@media (min-width: 1024px) {
  .footer__date-foundation {
    margin: 0;
  }
}

@media (min-width: 1920px) {
  .footer__date-foundation {
    font-size: 16px;
  }
}

.footer__date-foundation span {
  color: #838C91;
}

.footer__logo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.hero {
  background: #071924;
  margin-top: 92px;
  padding: 0 16px 32px 16px;
  height: calc(100dvh - 76px);
  min-height: 786px;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
}

@media (min-width: 414px) {
  .hero {
    min-height: 739px;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 0 32px 32px 32px;
    height: calc(100dvh - 92px);
    min-height: 694px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 1105px;
    padding: 0 44px 44px 44px;
  }
}

@media (min-width: 1366px) {
  .hero {
    min-height: 680px;
    padding: 0 16px 16px 16px;
    border-radius: 0;
    &::before {
      content: '';
      position: absolute;
      top: -92px;
      left: 0;
      width: 100%;
      height: 108px;
      background-color: #071924;
    }
  }
}

@media (min-width: 1920px) {
  .hero {
    min-height: 877px;
  }
}

.hero__bottom {
  margin-top: auto;
}

@media (min-width: 1366px) {
  .hero__bottom {
    width: calc(100% - 428px);
    margin-left: auto;
  }
}

@media (min-width: 1920px) {
  .hero__bottom {
    width: calc(100% - 610px);
  }
}

@media (min-width: 1366px) {
  .hero__bottom .blue__btn {
    margin-bottom: 64px;
  }
}

.hero__bottom .blue__btn {
  width: fit-content;
}

.hero__lottie {
  width: 209px;
  height: 209px;
}

@media (min-width: 768px) {
  .hero__lottie {
    width: 290px;
    height: 290px;
  }
}

@media (min-width: 1024px) {
  .hero__lottie {
    width: 361px;
    height: 361px;
  }
}

@media (min-width: 1366px) {
  .hero__lottie {
    width: 370px;
    height: 370px;
  }
}

@media (min-width: 1920px) {
  .hero__lottie {
    width: 532px;
    height: 532px;
  }
}

.hero__wrapper {
  background-color: #34B1FE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero__wrapper {
    border-radius: 20px;
  }
}

@media (min-width: 1366px) {
  .hero__wrapper {
    margin-bottom: 0;
    height: calc(100% + 58px);
    position: absolute;
    left: 16px;
    top: -75px;
    z-index: 21;
    border-radius: 24px;
    &::before {
      content: url(../img/logo-768.svg);
      position: absolute;
      top: 33px;
      left: 38px;
    }
  }
}

@media (min-width: 1920px) {
  .hero__wrapper {
    height: calc(100% + 58px);
  }
}

@media (min-width: 1366px) {
  .hero__top {
    display: flex;
    flex-direction: column;
  }
}

.hero__title-anim {
  font-family: "Actay Wide";
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  height: 0;
}

@media (min-width: 1024px) {
  .hero__title-anim {
    font-size: 52px;
    letter-spacing: -0.52px;
  }
}

@media (min-width: 1366px) {
  .hero__title-anim {
    margin-top: 99px;
    margin-left: auto;
    width: calc(100% - 428px);
  }
}

@media (min-width: 1920px) {
  .hero__title-anim {
    font-size: 64px;
    width: calc(100% - 610px);
  }
}

@media (min-width: 2560px) {
  .hero__title-anim {
    margin-top: 89px;
  }
}

.hero__title-box {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease-in-out;
}

.hero__title-box span {
  display: block;
  white-space: nowrap;
}

.hero__title {
  font-family: "Actay Wide";
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: #6A757C;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero__title br {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 52px;
    letter-spacing: -0.52px;
  }
}

@media (min-width: 1366px) {
  .hero__title {
    width: calc(100% - 428px);
    margin-left: auto;
    margin-bottom: 0;
  }
}

@media (min-width: 1920px) {
  .hero__title {
    font-size: 64px;
    width: calc(100% - 610px);
  }
}

.hero__description {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero__description {
    margin-bottom: 24px;
    max-width: 75%;
  }
}

@media (min-width: 1024px) {
  .hero__description {
    margin-bottom: 32px;
    max-width: 49%;
  }
}

@media (min-width: 1366px) {
  .hero__description {
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 62%;
  }
}

@media (min-width: 1920px) {
  .hero__description {
    font-size: 20px;
    max-width: 587px;
  }
}

.about-us .title {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .about-us .title {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .about-us .title {
    margin-bottom: 44px;
  }
}

@media (min-width: 1920px) {
  .about-us .title {
    margin-bottom: 56px;
  }
}

.about-us {
 padding: 72px 0;
}

@media (min-width: 1024px) {
  .about-us {
    padding: 80px 0;
  }
}

@media (min-width: 1366px) {
  .about-us {
    padding: 112px 0;
  }
}

@media (min-width: 1920px) {
  .about-us {
    padding: 160px 0;
  }
}

.about-us__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  color: #34B1FE;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .about-us__title {
    margin-bottom: 24px;
  }
}

@media (min-width: 1920px) {
  .about-us__title {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.about-us__subtitle {
  font-family: "Actay Wide";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #071924;
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .about-us__subtitle {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.24px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1920px) {
  .about-us__subtitle {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.28px;
  }
}

.about-us__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #6A757C;
}

@media (min-width: 1920px) {
  .about-us__description {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-us__inner {
    display: grid;
    grid-template-columns: 1fr 397px;
  }
}

.about-us__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .about-us__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
  }
}

.about-us__card {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-us__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.technologies {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 72px 16px;
}

@media (min-width: 768px) {
  .technologies {
    padding: 72px 32px;
  }
}

@media (min-width: 1024px) {
  .technologies {
    padding: 80px 44px;
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

@media (min-width: 1366px) {
  .technologies {
    padding: 112px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-top: -20px;
  }
}

@media (min-width: 1920px) {
  .technologies {
    padding: 160px;
  }
}

.technologies .title {
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .technologies .title {
    margin-bottom: 24px;
  }
}

@media (min-width: 1920px) {
  .technologies .title {
    margin-bottom: 30px;
  }
}

.technologies__top {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.technologies__top.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .technologies__top {
    margin-bottom: 0;
  }
}

.technologies__bottom {
  padding-top: 24px;
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  &::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
  }
}

.technologies__bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .technologies__bottom {
    padding-top: 32px;
  }
}

@media (min-width: 1024px) {
  .technologies__bottom {
    padding-top: 0;
    padding-left: 44px;
    &::before {
      content:'';
      width: 1px;
      height: 100%;
    }
  }
}

@media (min-width: 1920px) {
  .technologies__bottom {
    padding-left: 56px;
  }
}

.technologies__container {
  padding: 32px 24px;
  background: #FFF;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .technologies__container {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .technologies__container {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 56px;
    padding: 44px;
  }
}

@media (min-width: 1366px) {
  .technologies__container {
    grid-template-columns: 479px 1fr;
  }
}

@media (min-width: 1920px) {
  .technologies__container {
    grid-template-columns: 601px 722px;
    padding: 56px;
    gap: 50px;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
  }
}

.technologies__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-right: -24px;
  margin-left: -24px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .technologies__list {
    margin-right: -32px;
    margin-left: -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .technologies__list {
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
}

.technologies__list::-webkit-scrollbar {
  display: none;
}

.technologies__card {
  padding: 12px 19px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  cursor: pointer;
  color: #6A757C;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media (min-width: 1920px) {
  .technologies__card {
    padding: 18px 24px;
  }
}

.technologies__card.active {
  border: 1px solid #071924;
  color: #071924;
}

.technologies__tab {
  display: none;
}

.technologies__tab.active {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.technologies__tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  background-color: #F7F7F7;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 1920px) {
  .technologies__tab-item {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 12px;
  }
}

.consultation__card {
  width: calc(100% + 32px);
  margin-left: -16px;
  background: #071924;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .consultation__card {
    width: 100%;
    margin-left: 0;
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .consultation__card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 44px;
  }
}

@media (min-width: 1366px) {
  .consultation__card {
    border-radius: 24px;
  }
}

@media (min-width: 1920px) {
  .consultation__card {
    padding: 56px;
  }
}

.consultation__title {
  font-family: "Actay Wide";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: #FFF;
}

@media (min-width: 1920px) {
  .consultation__title {
    font-size: 40px;
  }
}

.services {
  position: relative;
  padding-bottom: 72px;
}

@media (min-width: 1366px) {
  .services {
    padding-bottom: 0;
    height: 100vh;
  }

  .swiper-services {
    height: 100%;
  }
}

@media (min-width: 1366px) {
  .services .title {
    font-size: 14px;
    position: absolute;
    top: 56px;
    left: 112px;
    font-weight: 400;
    z-index: 2;
    &:after {
      position: absolute;
      content: '/';
      right: -14px;
      top: 0;
      color: #34B1FE;
    }
  }
}

@media (min-width: 1920px) {
  .services .title {
    top: 84px;
    left: 152px;
    font-size: 16px;
  }
}

@media (min-width: 2560px) {
  .services .title {
    left: 493px;
  }
}

.services__popup {
  top: calc(100dvh - 340px);
  right: 0;
  min-height: 340px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.8s;
  position: fixed;
  bottom: 0;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
  background: #FFF;
  padding: 32px 16px 24px 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.services__popup.active {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .services__popup {
    transform: translateY(0);
    opacity: 1;
    display: none;
  }
}

@media (min-width: 768px) {
  .services__popup.active {
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    max-width: 416px;
    padding: 32px 24px;
    height: fit-content;
  }
}

@media (min-width: 1024px) {
  .services__popup.active {
    max-width: 618px;
    padding: 32px;
  }
}

.services__close, .career__close {
  background-image: url(../img/burger-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  &:hover {
    opacity: 0.7;
  }
  &:active {
    opacity: 0.5;
  }
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .services__header {
    margin-bottom: 32px;
  }
}

@media (min-width: 1366px) {
  .services__header {
    margin-bottom: 0;
  }
}

.swiper-services {
  padding-left: 16px!important;
  padding-right: 16px!important;
}

@media (min-width: 768px) {
  .swiper-services {
    padding-left: 32px!important;
    padding-right: 32px!important;
  }
}

@media (min-width: 1024px) {
  .swiper-services {
    padding-left: 44px!important;
    padding-right: 44px!important;
  }
}

@media (min-width: 1366px) {
  .swiper-services {
    padding-left: 0!important;
    padding-right: 0!important;
  }
}

.swiper-services .swiper-wrapper {
  align-items: stretch;
}

.swiper-services .swiper-slide {
  height: auto;
}

.services__card {
  border-radius: 16px;
  background: #F7F7F7;
  padding: 8px 8px 24px 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 1024px) {
  .services__card {
    padding: 12px 12px 32px 12px;
    border-radius: 20px;
  }
}

@media (min-width: 1366px) {
  .services__card {
    padding: 0;
    border-radius: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;

  }
}

.services__inner {
  padding: 0 16px;
}

@media (min-width: 1366px) {
  .services__inner {
    padding: 56px 112px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}

@media (min-width: 1920px) {
  .services__inner {
    padding: 80px 160px;
  }
}

@media (min-width: 2560px) {
  .services__inner {
    padding: 80px 160px 80px 493px;
  }
}

.services__img {
  border-radius: 12px;
  max-width: 100%;
  margin-bottom: 24px;
  max-height: 220px;
  object-fit: cover;
  z-index: 3;
}

@media (min-width: 1024px) {
  .services__img {
    max-height: 250px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1366px) {
  .services__img {
    min-height: 100%;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    order: 1;
  }
}

.services__title {
  color: #071924;
  font-family: "Actay Wide";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .services__title {
    font-size: 32px;
  }
}

@media (min-width: 1366px) {
  .services__title {
    font-size: 44px;
    margin-bottom: 0;
  }
}

@media (min-width: 1920px) {
  .services__title {
    font-size: 52px;
    letter-spacing: -0.52px;
  }
}

.services__description {
  color: #6A757C;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
}

.services__details {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  color: #34B1FE;
}

@media (min-width: 1366px) {
  .services__details {
    display: none;
  }
}

@media (min-width: 1366px) {
  .services__description {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    order: 1;
    margin-bottom: 60px;
    margin-top: 36px;
  }
}

@media (min-width: 1920px) {
  .services__description {
    margin-bottom: 87px;
  }
}

@media (max-width: 767px) {
  .services__popup .services__description {
    overflow: visible;
    -webkit-line-clamp: unset;
    max-height: 120px;
    overflow: scroll;
  }
}

@media (min-width: 768px) {
  .services__popup .services__description {
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}

.services__popup .services__industry {
  background: #F7F7F7;
}

.services__popup .services__wrapper {
  padding-top: 0;
}

@media (min-width: 768px) {
  .services__popup .services__wrapper {
    padding-top: 20px;
  }
}

.services__wrapper {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 1366px) {
  .services__wrapper {
    margin-top: 16px;
    padding-top: 0;
    gap: 12px;
  }
}

.services__industry {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 6px;
  font-size: 14px;
}

@media (min-width: 1920px) {
  .services__industry {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.autoplay-progress {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
  display: none;
}

@media (min-width: 1366px) {
  .autoplay-progress {
    display: flex;
  }
}

.swiper-services-pagination {
  display: none;
}

@media (min-width: 1366px) {
  .swiper-services-pagination {
    display: inline-block!important;
    top: 53px!important;
    left: 185px!important;
    width: auto!important;
  }
}

@media (min-width: 1920px) {
  .swiper-services-pagination {
    top: 82px!important;
    left: 233px!important;
  }
}

@media (min-width: 2560px) {
  .swiper-services-pagination {
    left: 575px!important;
  }
}

@media (min-width: 1366px) {
  .swiper-services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    margin: 0;
    display: inline-block;
    color: #34B1FE;
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  .swiper-services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 16px;
  }
}

@media (min-width: 1366px) {
  .swiper-services-pagination .swiper-pagination-bullet {
    display: none;
  }
}

.autoplay-bars {
  display: none;
}

@media (min-width: 1366px) {
  .autoplay-bars {
    display: inline-flex;
    gap: 8px;
    position: relative;
    left: 112px;
    top: -60px;
    z-index: 2;
    max-width: calc(50% - 390px);
  }
}

@media (min-width: 1920px) {
  .autoplay-bars {
    left: 160px;
    top: -97px;
    z-index: 2;
    max-width: 520px;
  }
}

@media (min-width: 2560px) {
  .autoplay-bars {
    left: 495px;
    top: -97px;
    z-index: 2;
    max-width: 500px;
  }
}

.progress-bar {
  position: absolute;
  background-color: #071924;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 999px;
  max-width: 100%;
}

.autoplay-bar {
  width: 83px;
  position: relative;
  height: 2px;
  background-color: #E5E5E5;
  transition: background-color 0.3s ease, width 0.3s ease;
  border-radius: 999px;
}

.swiper-button-prev, .swiper-button-next {
  transition: all 0.8s;
  &:hover {
    opacity: 0.5;
  }
  &:active {
    opacity: 1;
  }
}

.swiper-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  background: #F7F7F7;
  border-radius: 8px;
  position: relative;
  &::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 32px;
    background-color: #E5E5E5;
    left: 50%;
    top: 14px;
  }
}

@media (min-width: 1366px) {
  .services .swiper-button-container {
    position: absolute;
    bottom: 20px;
    right: calc(50% + 114px);
    background: #FFFFFF;
    z-index: 2;
  }
}

@media (min-width: 1920px) {
  .services .swiper-button-container {
    bottom: 56px;
  }
}

.swiper-services-prev, .swiper-career-prev {
  width: 60px!important;
  height: 60px!important;
  right: 0!important;
  left: 0!important;
  top: 0!important;
  position: relative!important;
  margin: 0!important;
  z-index: 9!important;
  &::after {
    content: url(../img/button-left.svg)!important;
    height: 50px;
    top: 0!important;
  }
}

.swiper-services-next, .swiper-career-next {
  width: 60px!important;
  height: 60px!important;
  right: 0!important;
  left: 0!important;
  top: 0!important;
  position: relative!important;
  margin: 0!important;
  z-index: 9!important;
  &::after {
    content: url(../img/button-right.svg)!important;
    height: 50px;
    top: 0!important;
  }
}

.advantages {
  padding: 72px 0;
}

@media (min-width: 1024px) {
  .advantages {
    padding: 80px 0;
  }
}

@media (min-width: 1366px) {
  .advantages {
    padding-top: 112px;
    padding-bottom: 75px;
  }
}

@media (min-width: 1920px) {
  .advantages {
    padding-top: 160px;
    padding-bottom: 119px;
  }
}

@media (min-width: 768px) {
  .advantages .title {
    max-width: 66%;
  }
}

@media (min-width: 1366px) {
  .advantages .title {
    max-width: 100%;
  }
}

.advantages__hr {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  border: none;
  margin: 0;
}

.advantages__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1366px) {
  .advantages__row {
    display: grid;
    gap: 0;
    grid-template-columns: 563px 466px;
    justify-content: space-between;
  }
}

@media (min-width: 1920px) {
  .advantages__row {
    grid-template-columns: 657px 657px;
    justify-content: space-between;
  }
}

.advantages__description {
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .advantages__description {
    max-width: 66%;
    margin-bottom: 32px;
  }
}

@media (min-width: 1366px) {
  .advantages__description {
    max-width: 100%;
    margin-bottom: 44px;
  }
}

@media (min-width: 1920px) {
  .advantages__description {
    font-size: 20px;
    margin-bottom: 56px;
    line-height: 26px;
  }
}

.advantages__lottie {
  width: 382px;
  height: 382px;
  margin: 0 auto;
  margin-top: 32px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .advantages__lottie {
    width: 322px;
    height: 322px;
  }
}

@media (min-width: 1024px) {
  .advantages__lottie {
    width: 360px;
    height: 360px;
  }
}

@media (min-width: 1366px) {
  .advantages__lottie {
    width: 557px;
    height: 557px;
  }
}

@media (min-width: 1920px) {
  .advantages__lottie {
    width: 524px;
    height: 524px;
  }
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .advantages__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 65px;
  }
}

@media (min-width: 1024px) {
  .advantages__wrapper {
    gap: 44px;
  } 
}

@media (min-width: 1366px) {
  .advantages__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  } 
}

@media (min-width: 1366px) {
  .advantages__block {
    display: grid;
    grid-template-columns: auto 466px;
    justify-content: space-between;
    margin-top: 44px;
  }
}

@media (min-width: 1920px) {
  .advantages__block {
    grid-template-columns: auto 657px;
    margin-top: 56px;
  }
}

.advantages__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.advantages__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantages__number {
  color: var(--Blue-100, #34B1FE);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.advantages__title {
  color: var(--Dark-Blue-100, #071924);
  font-family: "Actay Wide";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .advantages__title {
    font-size: 32px;
    letter-spacing: -0.32px;
  }
}

@media (min-width: 1920px) {
  .advantages__title {
    font-size: 40px;
    letter-spacing: -0.4px;
  }
}

.advantages__card-description {
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 1920px) {
  .advantages__card-description {
    font-size: 18px;
  }
}

.career {
  padding-top: 72px;
}

@media (min-width: 1024px) {
  .career {
    padding-top: 80px;
  }
}

@media (min-width: 1366px) {
  .career {
    padding-top: 112px;
  }
}

@media (min-width: 1920px) {
  .career {
    padding-top: 160px;
  }
}

@media (min-width: 1366px) {
  .career .swiper-button-container {
    display: flex;
  }
}

@media (min-width: 768px) {
  .career .title {
    font-size: 44px;
  }
}

@media (min-width: 1920px) {
  .career .title {
    font-size: 52px;
  }
}

.career__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.career__description {
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; 
}

@media (min-width: 768px) {
  .career__description {
    max-width: 75%;
  }
}

@media (min-width: 1024px) {
  .career__description {
    max-width: 59%;
  }
}

@media (min-width: 1366px) {
  .career__description {
    max-width: 50%;
  }
}

@media (min-width: 1920px) {
  .career__description {
    font-size: 20px;
  }
}

.career__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .career__bottom {
    margin-bottom: 44px;
  }
}

@media (min-width: 1366px) {
  .career__bottom {
    justify-content: flex-end;
    gap: 12px;
    margin-top: -90px;
  }
}

@media (min-width: 1920px) {
  .career__bottom {
    margin-top: -77px;
  }
}

.career__card {
  border-radius: 16px;
  background: #F7F7F7;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.career__card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .career__card {
    padding: 32px;
  }
}

@media (min-width: 1920px) {
  .career__card {
    padding: 36px;
  }
}

.career__card-title {
  color: var(--Dark-Blue-100, #071924);
  font-family: "Actay Wide";
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .career__card-title {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 16px;
  }
}

@media (min-width: 1920px) {
  .career__card-title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}

.career__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career__technologies {
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  font-size: 14px;
}

@media (min-width: 1920px) {
  .career__technologies {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.career__popup .career__technologies {
background: #F7F7F7;
}

.career__card-hr {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  border: none;
  margin: 16px 0;
}

@media (min-width: 1024px) {
  .career__card-hr {
    margin: 20px 0;
  }
}

@media (min-width: 1920px) {
  .career__card-hr {
    margin: 24px 0;
  }
}

.career__card-description {
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 1920px) {
  .career__card-description {
    font-size: 18px;
    margin-bottom: 36px;
  }
}

.career__popup-text {
  color: var(--Dark-Blue-100, #071924);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; 
  margin-bottom: 12px;
}

@media (min-width: 2560px) {
  .career__popup-text {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.card__list {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.career__popup-wrapper {
  max-height: 500px;
  overflow-y: scroll;
  margin-bottom: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 768px) {
  .career__popup-wrapper {
    max-height: 630px;
  }
}

@media (min-width: 1024px) {
  .career__popup-wrapper {
    max-height: 556px;
  }
}

@media (min-width: 1920px) {
  .career__popup-wrapper {
    max-height: 650px;
  }
}

.career__popup .card__list {
  display: flex;
}

@media (min-width: 2560px) {
  .card__list {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.card__list li {
  position: relative;
  color: var(--Dark-Blue-100, #071924);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 24px;
  &::before {
    position: absolute;
    left: -8px;
    content: url(../img/bullet-list.svg);
  }
}

@media (min-width: 2560px) {
  .card__list li {
    font-size: 18px;
  }
}

.career__popup {
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.8s;
  position: fixed;
  bottom: 0;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
  background: #FFF;
  padding: 32px 16px 24px 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .career__popup {
    transform: translateY(0);
    opacity: 1;
    display: none;
  }
}

.career__popup.active {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .career__popup.active {
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    max-width: 584px;
    padding: 24px;
    height: 710px;
  }
}

@media (min-width: 1024px) {
  .career__popup.active {
    max-width: 788px;
    padding: 32px;
    height: 700px;
  }
}

@media (min-width: 1920px) {
  .career__popup.active {
    max-width: 792px;
    height: 814px;
    padding: 36px;
  }
}

.swiper-career {
  padding-left: 16px!important;
  padding-right: 16px!important;
}

@media (min-width: 768px) {
  .swiper-career {
    padding-left: 32px!important;
    padding-right: 32px!important;
  }
}

@media (min-width: 1024px) {
  .swiper-career {
    padding-left: 44px!important;
    padding-right: 44px!important;
  }
}

@media (min-width: 1366px) {
  .swiper-career {
    padding-left: 112px!important;
    padding-right: 112px!important;
  }
}

@media (min-width: 1920px) {
  .swiper-career {
    padding-left: calc((100% - 1600px) / 2) !important;
    padding-right: calc((100% - 1600px) / 2) !important;
  }
}

.swiper-career .swiper-wrapper {
  align-items: stretch;
}

.swiper-career .swiper-slide {
  height: auto;
}

.career__card .blue__btn {
  margin-top: auto;
}

.career__popup .blue__btn {
  margin-top: auto;
}

@media (min-width: 1024px) {
  .career__popup .blue__btn {
    margin-right: auto;
  }
}

.career__card .career__card-description {
  margin-bottom: 20px;
}

@media (min-width: 1920px) {
  .career__card .career__card-description {
    margin-bottom: 36px;
  }
}

.contacts {
  padding: 72px 0;
}

@media (min-width: 1024px) {
  .contacts {
    padding: 80px 0;
  }
}

@media (min-width: 1366px) {
  .contacts {
    padding: 112px 0;
  }
}

@media (min-width: 1920px) {
  .contacts {
    padding: 160px 0;
  }
}

@media (min-width: 768px) {
  .contacts .title {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .contacts .title {
    max-width: 90%;
  }
}

@media (min-width: 1366px) {
  .contacts .title {
    max-width: 75%;
  }
}

@media (min-width: 1920px) {
  .contacts .title {
    max-width: 100%;
    font-size: 52px;
  }
}

.contacts__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contacts__description {
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (min-width: 768px) {
  .contacts__description {
    max-width: 69%;
  }
}

@media (min-width: 1024px) {
  .contacts__description {
    max-width: 100%;
  }
}

@media (min-width: 1920px) {
  .contacts__description {
    max-width: 81%;
    font-size: 20px;
  }
}

.contacts__form {
  display: flex;
  flex-direction: column;
}

.contacts__form .contacts__description {
  font-size: 16px;
}

.contacts__submit:disabled {
  cursor: not-allowed;
  background-color: rgba(52, 177, 254, 0.5);
}

.contacts__input {
  font-family: Actay;
  padding: 18px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--Grey-Lines, #E5E5E5);
  background: var(--Grey-Light-Grey, #FCFCFC);
  resize: none;
  color: var(--Grey-Text, #6A757C);
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  &::placeholder {
    color: var(--Grey-Text, #6A757C);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}

.contacts__input-box {
  position: relative;
}

@media (min-width: 768px) {
  .contacts__input-box:last-of-type {
    grid-column: 1 / -1;
  }
}

.contacts__input.error {
  border: 1px solid #D5401F;
}

.contacts__input-error-text {
  color: #D5401F;
  font-size: 14px;
  position: absolute;
  left: 16px;
  bottom: -25px;
  display: none;
}

.contacts__input-box .contacts__input.error + .contacts__input-error-text {
  display: inline;
}

.contacts__input-box-area .contacts__input-error-text {
  bottom: 5px;
}

textarea {
  max-width: 100%;
  width: 100%;
  margin-bottom: 32px;
  max-height: 108px;
}

.contacts__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
  }
}

.contacts__btn {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--Grey-Lines, #E5E5E5);
  background: var(--White-100, #FFF);
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; 
  cursor: pointer;
  transition: all 0.8s;
  &:hover {
    border: 1px solid #BEBEBE;
  }
}

.contacts__btn.active {
  border: 1px solid var(--Dark-Blue-100, #071924);
}

.contacts__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .contacts__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contacts__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1366px) {
  .contacts__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.contacts__btn:first-child {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .contacts__btn:first-child {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .contacts__btn:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1366px) {
  .contacts__btn:first-child {
    grid-column: auto;
  }
}

.contacts__btn:nth-child(2),
.contacts__btn:nth-child(3) {
  grid-column: span 1;
}

.contacts__checkbox-label {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  padding-left: 35px;
  margin-top: 16px;
  color: var(--Grey-Text, #6A757C);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  &:hover {
    &::before {
      border: 1px solid var(--Dark-Blue-100, #071924);
    }
  }
  &::before {
    position: absolute;
        left: 0;
        top: 0;
        content: '';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        min-width: 24px;
        height: 24px;
        border: 1px solid var(--Grey-Lines, #E5E5E5);
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
  }
}

.contacts__checkbox-label a {
  color: var(--Dark-Blue-100, #071924);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.5s ease-in-out;
  &:hover {
    color: #838C91;
  }
  &:active {
    color: #34B1FE;
  }
}

.contacts__checkbox:checked + .contacts__checkbox-label::before {
  content: url(../img/checkbox.svg);
}

.contacts__checkbox {
  width: 0;
  height: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 1024px) {
  .contacts__container {
    display: grid;
    grid-template-columns: 381px 460px;
    justify-content: space-between;
  }
}

@media (min-width: 1366px) {
  .contacts__container {
    grid-template-columns: 467px 563px;
  }
}

@media (min-width: 1920px) {
  .contacts__container {
    grid-template-columns: 657px 657px;
  }
}

.text-page {
  margin-top: 92px;
  margin-bottom: 72px;
}

@media (min-width: 1024px) {
  .text-page {
    margin-bottom: 80px;
  }
}

@media (min-width: 1366px) {
  .text-page {
    margin-bottom: 112px;
  }
}

@media (min-width: 1920px) {
  .text-page {
    margin-bottom: 160px;
  }
}

.text-page__title {
  margin-top: 72px;
  margin-bottom: 44px;
  font-size: 32px;
  line-height: 35px;
  color: #071924;
  font-weight: 700;
  font-family: "Actay Wide";
  text-transform: uppercase;
  max-width: 644px;
}

@media (min-width: 1024px) {
  .text-page__title {
    margin-top: 80px;
    font-size: 44px;
    line-height: 48px;
    max-width: 776px;
  }
}

@media (min-width: 1366px) {
  .text-page__title {
    margin-top: 112px;
    max-width: 854px;
  }
}

@media (min-width: 1920px) {
  .text-page__title {
    margin-top: 160px;
    font-size: 52px;
    line-height: 57px;
    max-width: 1196px;
  }
}

.text-page__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 644px;
}

@media (min-width: 1024px) {
  .text-page__block {
    max-width: 776px;
  }
}

@media (min-width: 1366px) {
  .text-page__block {
    max-width: 854px;
  }
}

@media (min-width: 1920px) {
  .text-page__block {
    max-width: 1196px;
  }
}

.text-page__block h2 {
  font-size: 20px;
  line-height: 24px;
  color: #071924;
  font-weight: 700;
  font-family: "Actay Wide";
}

@media (min-width: 1024px) {
  .text-page__block h2 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (min-width: 1920px) {
  .text-page__block h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

.text-page__block p {
  color: #071924;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.text-page__block a {
  color: #071924;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.5s ease-in-out;
  &:hover {
    color: #64C4FF;
  }
}

.text-page__block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.text-page__block ul li {
  position: relative;
  padding-left: 24px;
  color: #071924;
  font-size: 16px;
  line-height: 24px;
  &::before {
    position: absolute;
    left: -8px;
    content: url(../img/bullet-list.svg);
  }
}

.text-page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px;
}