/*
Theme Name: Itfly
Author: Itfly team
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@font-face {
  font-family: "Days One";
  src: url("assets/fonts/days-one/DaysOne-Regular.ttf");
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Days One", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
}

h1, h2 {
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

h1.mainh1, h3 {
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

h4 {
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h5 {
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h6 {
  font-size: 22px;
  line-height: 120%;
  color: #2d8df3;
  text-align: center;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  h1, h2 {
    font-size: 50px;
    letter-spacing: 2.5px;
  }

  h1.mainh1, h3 {
    font-size: 28px;
    letter-spacing: 1.4px;
  }

  h4 {
    font-size: 28px;
    letter-spacing: 1.4px;
  }
}

@media screen and (max-width: 600px) {
  h1, h2 {
    font-size: 28px;
    letter-spacing: 1.4px;
  }

  h1.mainh1, h3 {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  h4 {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  h6 {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}


img {
  display: block;
}


html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

body::-webkit-scrollbar,
.policy__popup::-webkit-scrollbar {
  width: 10px;
  background: #000000;
}

.policy__popup::-webkit-scrollbar {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb,
.policy__popup::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #2d8df3;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

._container {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}


.btn {
  position: relative;
  padding: 15px 30px;
  border-radius: 50px;
  background: #EA0058;
  overflow: hidden;
  cursor: pointer;
}

.btn span:first-child {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.btn__bg {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d8df3;
  transition: all .5s;
}

@media screen and (min-width: 1024px) {
  .btn:hover .btn__bg {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(70);
  }
}


/* --------------- HEADER --------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  /*background: #0e0208;*/
  background: #000000;
}

.header__top {
  width: 100%;
  height: 83px;
}

.header__bottom {
  width: 100%;
  height: 50px;
}

.header__bottom-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__container {
  padding: 0px 100px;
  height: 100%;
}

.header__content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo__lang {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo {
  min-width: 100px;
  max-width: 100px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
}

.header__logo img {
  width: 100%;
}

.langs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.langs li a {
  text-transform: uppercase;
}

.langs li.current-lang a {
  color: #2d8df3;
  cursor: default;
}

.header__nav,
.header__menu,
.header__contacts {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__nav {
  width: fit-content;
}

.header__menu {
  max-width: 1146px;
  list-style: none;
}

.header__menu li a,
.header__contacts a {
  font-size: 16px;
  line-height: 120%;
  text-wrap: nowrap;
  transition: all .3s;
}

.header__contacts {
  max-width: 445px;
}

.header__phone-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  position: relative;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

.burger::before,
.burger::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
  transition: all .3s;
}

.burger::before {
  top: 12px;
}

.burger::after {
  bottom: 12px;
}

.burger.active::before {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.burger.active::after {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header__menu-mobile {
  position: fixed;
  top: 90px;
  right: -100%;
  z-index: 200;
  padding: 80px 40px;
  width: 100%;
  max-width: 360px;
  height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  gap: 50px;
  background: #0d73e0;
  transition: all .3s;
}

.header__menu-mobile.active {
  right: 0;
}

.header__menu-mobile a {
  font-size: 16px;
  line-height: 120%;
}

.header__menu-mobile .header__phone-socials {
  display: none;
  gap: 7px;
}

.header__menu-mobile > a:last-child {
    display: none;
}


/* -------------------- MAIN -------------------- */

.main {
  margin-top: 133px;
  flex: 1 0 auto;
  background: #000000;
}

/* -------------------- WELCOME -------------------- */

canvas {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.welcome {
  position: relative;
  width: 100vw;
  height: calc(100vh + 110px);
}

.welcome__dark {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.welcome__container {
  padding: 0px 16px;
  height: 80%;
  display: flex;
  align-items: center;
}

.welcome__content {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 100%;
  max-width: 1510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  user-select: none;
  pointer-events: none;
}

.welcome__content h3 span {
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 1.1px;
  pointer-events: none;
}

.welcome__content p {
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  pointer-events: none;
}

.welcome__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: all;
}


/* -------------------- SERVICES -------------------- */

.services {
  width: 100vw;
}

.services__container {
  padding: 0px 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.services__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.services__item {
  position: relative;
  border-radius: 50px;
  border: 2px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.service__info {
  position: relative;
  z-index: 3;
  padding: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service__info p {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.service__info span {
  position: relative;
  width: 140px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.services__item span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  transition: all .5s;
}

.service-bg {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d8df3;
  transition: all .8s;
}


/* ------------------- WORKS ------------------- */

.works {
  width: 100vw;
}

.works__container {
  padding: 150px 0px 150px 100px;
}

.works__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.works__box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.works__tabs {
  padding-right: 16px;
  display: flex;
  gap: 40px;
  overflow-x: auto;
}

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

.works__tab {
  position: relative;
  padding: 15px 20px;
  flex: 0 0 auto;
  border-radius: 50px;
  border: 2px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
}

.works__tab span {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.works__tab.active {
  background: #ea0058;
  cursor: default;
}

.tab-bg {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d8df3;
  transition: all .8s;
}

.works__block {
  overflow: hidden;
}

.works__cards {
  padding-right: 16px;
  display: none;
  gap: 40px;
  overflow-x: auto;
}


.works__cards.active {
  display: flex;
}

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

.works__item {
  position: relative;
  flex: 0 0 547px;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  display: none;
}

.works__item.active {
  display: block;
}

.works__item a {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.works__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
  user-select: none;
  -webkit-user-select: none;
}

.works__item>p {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) -23.26%, #000 100%);
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.work__btn-wrapper {
  position: absolute;
  top: 0;
  padding: 13px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.work__type {
  padding: 10px;
  height: 32px;
  border-radius: 30px;
  background: #ffffff;
  font-family: "Inter";
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
  color: #04213f;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all .5s;
}

.work__btn {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}

.work__btn svg {
  position: relative;
  z-index: 3;
  width: 18px;
  height: 18px;
}

.work__btn svg path {
  transition: all 1s;
}

.work__btn-bg {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2d8df3;
  transition: all 1s;
}


/* ------------------- DEVELOPING ------------------- */

.developing {
  width: 100vw;
}

.developing__container {
  padding: 0px 100px 0px;
}

.developing__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.developing__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.developing__title h4 {
  color: #2d8df3;
  line-height: 100%;
  text-align: right;
}

.developing__title h4>span {
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 1.1px;
  color: #2d8df3;
}

.developing__parts {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.developing__left {
  padding-bottom: 180px;
  width: 100%;
  max-width: 1133px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#support .developing__left {
  padding-bottom: 0;
}

.developing__cards {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.developing__item {
  position: relative;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
}

#ad .developing__item,
#support .developing__item {
  padding: 80px;
  gap: 40px;
}

.developing__item>p {
  position: relative;
  z-index: 3;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.developing__item-sale {
  background: #2d8df3;
}

.developing__item-title {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

#ad .developing__item-title,
#support .developing__item-title {
  padding: 4px 0px;
}

.developing__item-title-name {
  width: 100%;
}

.developing__item-title-name>h6 {
  color: #ea0058;
  text-align: left;
  transition: all .3s;
}

.developing__item-title-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.developing__item-title-price.developing-price-blue {
  padding: 20px;
  border-radius: 20px;
  background: #2d8df3;
}

.developing__item-title-price>span {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.developing__item-title-price>h6 {
  line-height: 100%;
  color: #ffffff;
  text-wrap: nowrap;
}

.developing__item-title-price>h6>span {
  font-size: 16px;
  letter-spacing: 0.9px;
}

.sale__mobile {
  display: none;
  background: #2d8df3
}

.developing__right {
  width: 100%;
  max-width: 547px;
}

.developing__sale {
  position: sticky;
  top: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}

#support .developing__sale {
  gap: 130px;
}

.developing__sale-block {
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  background: #2d8df3;
}

.developing__sale-block>p {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.developing__sale-block h4 {
  color: #ffffff;
}

.developing__sale-block h5>span {
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.9px;
}

.developing__sale-application {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.developing__sale-application>p {
  font-size: 16px;
  line-height: 120%;
  text-align: right;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.developing__btn {
  display: flex;
  justify-content: flex-end;
}


/* ------------------- AD ------------------- */

.banner {
  position: relative;
  padding: 150px 0px;
  width: 100vw;
  overflow: hidden;
}

.banner-1 .banner__container {
  background: linear-gradient(180deg, #13030B 0%, rgba(19, 3, 11, 0.00) 50.33%, #13030B 100%), url(assets/images/banner-1.webp) lightgray 50% / cover no-repeat;
}

.banner-2 .banner__container {
  background: linear-gradient(180deg, #13030B 0%, rgba(19, 3, 11, 0.00) 50.33%, #13030B 100%), url(assets/images/banner-2.webp) lightgray 50% / cover no-repeat;
}

.banner-3 .banner__container {
  background: linear-gradient(180deg, #13030B 0%, rgba(19, 3, 11, 0.00) 50.33%, #13030B 100%), url(assets/images/why-us.webp) lightgray 50% / cover no-repeat;
}

.banner__container {
  padding: 44px 100px;
}

.banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.banner__content h3 {
  max-width: 610px;
  text-align: left;
}

.banner-2 h3 {
  max-width: 470px;
}

.banner-3 h3 {
  max-width: 450px;
}

.banner__block {
  padding: 60px 80px;
  width: 100%;
  max-width: 661px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  background: rgba(4, 33, 63, 0.30);
  backdrop-filter: blur(10px);
}
.banner__block.reasons {
  max-width: 1080px;
}
.banner__block.reasons .banner__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.banner__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner__card span {
  font-size: 24px;
}

.banner__block p {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.banner__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner__checkbox {
  position: relative;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #e9ecef;
}

.banner__item.active .banner__checkbox {
  background: #2d8df3;
}

.banner__item.active .banner__checkbox::after {
  content: '';
  position: absolute;
  top: 0;
  left: 5px;
  width: 4px;
  height: 10px;
  border: 2px solid #ffffff;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
}


/* ------------------- FAQ ------------------- */

.faq {
  width: 100vw;
}

.faq__container {
  padding: 150px 16px;
}

.faq__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.faq__content h2 {
  text-align: center;
}

.faq__accordeon {
  width: 100%;
  max-width: 1133px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__item {
  padding: 40px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.faq__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq__header h6 {
  color: #ffffff;
  text-align: left;
}

.faq__header svg {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  transition: all .4s;
}

.faq__header svg circle,
.faq__header svg path {
  transition-delay: 0.15s;
}

.faq__item.active .faq__header svg {
  transform: rotateX(-180deg);
}

.faq__item.active .faq__header svg circle {
  fill: #2d8df3;
}

.faq__item.active .faq__header svg path {
  fill: #ffffff;
}

.faq__body {
  display: none;
}

.faq__body p {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}


/* ------------------- CONTACT ------------------- */

.contact {
  width: 100vw;
}

.contact__container {
  padding: 150px 100px;
}

.contact__content {
  margin: 0 auto;
  width: 100%;
  max-width: 1430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.contact__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact__title h3,
.contact__title p {
  text-align: center;
}

.contact__title p {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.contact__block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.contact__image {
  width: 100%;
  max-width: 690px;
  max-height: 620px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
}
.contact__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  object-fit: cover;
}
.contact__form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact__form p {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.form {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.form__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__field {
  position: relative;
}

.form__field input,
.form__field textarea,
.form__field input::placeholder,
.form__field textarea::placeholder {
  font-family: "Inter";
  font-size: 14px;
  line-height: 150%;
  color: #5a626b;
}

.form__field input,
.form__field textarea {
  padding: 15px 20px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #f9f9f9;
  background: #ffffff;
  color: #04213f;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border: 1px solid #0d73e0;
}

.form__field input:focus::placeholder,
.form__field textarea:focus::placeholder {
  color: #04213f;
}

.form__field textarea {
  height: 140px;
  resize: none;
}

.form__field span {
  position: absolute;
  top: 100%;
  right: 0;
  font-family: "Inter";
  font-size: 12px;
  font-weight: 700;
  color: #EA0058;
  text-align: right;
}

.form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.form__submit p {
  font-family: "Inter";
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

.form__submit p a {
  position: relative;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  color: #2d8df3;
}

.form__submit p a::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2d8df3;
}

.form__btn {
  display: flex;
  justify-content: center;
}


/* ------------------- FOOTER ------------------- */

.footer {
  width: 100vw;
  background: #000000;
}

.footer__container {
  padding: 20px 100px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__copyright {
  font-family: "Inter";
  font-size: 16px;
  line-height: 170%;
}

.footer__email,
.footer__contacts a {
  font-size: 16px;
  line-height: 120%;
  transition: all .3s;
}

.footer__contacts {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer__social {
  width: 30px;
  height: 30px;
  transition: all .5s;
}

.footer__social img {
  width: 100%;
  height: 100%;
}

.btn-to-top {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.btn-to-top svg {
  position: relative;
  z-index: 3;
}

.btn-to-top svg path {
  transition: .3s;
}


.developer {
  padding: 10px;
  width: 100vw;
  display: flex;
  justify-content: center;
  background: #1a0d12;
}

.developer__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.developer__content span {
  font-family: "Inter";
  font-size: 14px;
  line-height: 150%;
}

.developer__content a {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  transition: all .3s;
}



.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 11, 22, 0.7);
}

.popup__overlay.active {
  display: flex;
}

.popup {
  position: relative;
  margin: 0px 16px;
  padding: 80px;
  width: 100%;
  max-width: 730px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 50px;
  background: #000000;
}

.popup h4 {
  text-align: center;
}

.popup p {
  font-family: "Inter";
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}

.popup__close {
  position: relative;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #000000;
  cursor: pointer;
  transition: all .3s;
}

.popup__close::before,
.popup__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
}

.popup__close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.popup__close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}


#thanks .popup {
  border: 2px solid #FFFFFF;
}


/* Политика конфиденциальности */

.policy__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.policy__overlay.open {
  opacity: 1;
  visibility: visible;
}

.policy__popup {
  position: relative;
  padding: 50px 150px;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.policy__popup * {
  font-family: "Inter";
}

.policy__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy__content h2 {
  font-weight: 700;
  color: #121212;
}

.policy__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #313131;
  transition: all .3s;
  cursor: pointer;
}

.policy__close svg,
.policy__close svg path {
  transition: all .3s;
}

@media (max-width: 1650px) {
  .policy__popup {
    padding: 50px 120px 50px 16px;
  }
}

@media (max-width: 1240px) {
  .policy__popup {
    padding: 50px 120px 50px 16px;
  }

  .policy__content h2 {
    font-size: 48px;
    letter-spacing: 1.28px;
  }
}

@media (max-width: 1100px) {
  .policy__popup {
    padding: 60px 16px;
  }

  .policy__close {
    width: 48px;
    height: 48px;
  }

  .policy__close svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767px) {
  .policy__content {
    gap: 24px;
  }

  .policy__content h2 {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
}


.policy__block,
.policy__text {
  width: 100%;
  max-width: 1080px;
}

.policy__block h4 {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 700;
  color: #C8004B;
  text-transform: none;
  letter-spacing: 0;
}

.policy__text p,
.policy__text ul li,
.policy__text ol li,
.policy__text strong,
.policy__block a,
.unique__block>p,
.unique__block a {
  color: #606060;
}
.policy__text strong {
  font-weight: 700;
}

.policy__block a {
  position: relative;
  font-weight: 600;
  color: #C8004B;
}

.policy__block a::after {
  background: #C8004B;
}

.policy__text>ul>li,
.policy__text>ol>li {
  margin-left: 24px;
}

.policy__text li ul li,
.policy__text li ol li {
  margin-left: 12px;
}

.policy__text li ul {
  list-style: disc;
}

.policy__text p {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .policy__content {
    gap: 20px;
  }

  .policy__block h4 {
    font-size: 18px;
    line-height: 130%;
  }

  .policy__text p {
    margin-top: 12px;
  }
}

.bread__container {
	padding: 50px 100px;
}
.bread__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.about__container {
    padding: 0px 100px 100px;
}
.about__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.about__left {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.about__text {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about__text p {
    font-family: "Inter";
    font-weight: 700;
    line-height: 150%;
}

.whyus__container {
    padding: 100px 100px 200px;
}
.whyus__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.whyus__cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.whyus__item {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.whyus__item p {
    font-family: "Inter";
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}


.review__item {
    padding: 40px;
    min-width: 500px;
    max-width: 500px;
    border-radius: 40px;
    border: 2px solid #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review__item h6 {
    text-align: left;
    color: #fff;
}
.review__item p {
    font-family: "Inter";
    font-weight: 600;
    line-height: 150%;
}


@media screen and (min-width: 1024px) {

  .header__menu li a:hover,
  .header__contacts a:hover,
  .footer__email:hover,
  .footer__contacts a:hover,
  .langs li:not(.current-lang) a:hover {
    color: #c5e1ff;
  }

  .footer__social:hover,
  .header__social:hover {
    transform: scale(1.25);
  }

  .services__item:hover span::after {
    opacity: 1;
  }

  .services__item:hover .service-bg,
  .developing__item:hover .service-bg,
  .developing__item:hover .service-bg {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100vw;
    height: 100vw;
  }

  .developing__item:hover h6 {
    color: #ffffff;
  }

  .works__tab:not(.active):hover .tab-bg {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 30vw;
    height: 30vw;
  }

  .works__item:hover .work__type,
  .developer__content a:hover {
    color: #ea0058;
  }

  .works__item:hover .work__btn-bg,
  .btn-to-top:hover .btn__bg {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80px;
    height: 80px;
  }

  /* .works__item:hover img {
    transform: scale(1.06);
  } */

  .works__item:hover .work__btn svg path {
    fill: #ffffff;
  }

  .btn-to-top:hover svg path {
    fill: #ffffff;
  }

  .popup__close:hover {
    background: #2d8df3;
  }

  .policy__close:hover {
    transform: scale(0.8);
    border: 2px solid #C8004B;
    background: #FFFFFF;
  }

  .policy__close:hover svg path {
    fill: #C8004B;
  }
}



@media screen and (max-width: 1650px) {
  .bread__container {
    padding: 50px 16px;
  }
  .header__container,
  .services__container {
    padding: 0px 16px;
  }
  
  .about__container {
    padding: 0px 16px 100px;
  }

  .whyus__container {
    padding: 100px 16px 100px;
  }

  .works__container {
    padding: 150px 0px 150px 16px;
  }

  .developing__container {
    padding: 0px 16px 0px;
  }

  .banner__container {
    padding: 44px 16px;
  }

  .contact__container {
    padding: 150px 16px;
  }

  .footer__container {
    padding: 20px 16px;
  }
}

@media screen and (max-width: 1500px) {
  .header__content {
    gap: 20px;
  }

  .header__nav {
    gap: 24px;
  }

  .header__menu {
    gap: 12px;
  }

  .header__contacts {
    max-width: 410px;
    gap: 12px;
  }

  .sale__mobile {
    display: flex;
  }

  .developing__sale-block {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  .header__content {
    gap: 40px;
  }
  .header__bottom {
    display: none;
  }
  .main {
    margin-top: 83px;
  }
  .header__nav {
    max-width: 443px;
  }

  .header__menu {
    display: none;
  }

  .header__contacts {
    width: 100%;
    max-width: 443px;
  }

  .burger {
    display: block;
  }
}

@media screen and (max-width: 1320px) {
  .developing__parts {
    flex-direction: column;
    justify-content: flex-start;
  }

  .developing__left,
  .developing__right {
    padding: 0;
    max-width: 100%;
  }

  .developing__item {
    padding: 80px 40px;
  }

  #ad .developing__item,
  #support .developing__item {
    padding: 80px 40px;
  }

  .developing__sale {
    align-items: center;
  }

  .developing__sale-application {
    max-width: 100%;
    align-items: center;
  }

  .developing__sale-application p {
    text-align: center;
  }

  .banner__content {
    flex-direction: column;
    gap: 50px;
  }

  .banner__content>h3 {
    text-align: center;
    max-width: 910px;
  }

  .banner__block {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 1280px) {
  .services__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .service__info {
    padding: 80px 40px;
  }
}

@media screen and (max-width: 1023px) {
  .whyus__cards,
  .about__content {
    flex-direction: column;
  }
  #reviews .works__container {
    padding: 50px 16px;
  }
  .whyus__item {
    max-width: 650px;
  }
  .works__container {
    padding: 150px 0px 75px 16px;
  }
  .bread__container {
    padding: 30px 16px;
  }
  .about__container {
    padding: 0px 16px 50px;
  }
  .whyus__container {
    padding: 50px 16px 100px;
  }
  .developing__container {
    padding: 0px 16px;
  }

  .banner {
    padding: 75px 0px;
  }

  .banner__container {
    padding: 40px 16px;
  }

  .contact__container {
    padding: 75px 16px;
  }

  .faq__container {
    padding: 75px 16px;
  }

  .contact__container {
    padding: 75px 16px 130px;
  }

  .welcome {
    height: 100vh;
  }

  .welcome__dark {
    height: 100px;
  }

  .services__content {
    gap: 20px;
  }

  .service__info {
    padding: 60px 40px;
  }

  .service__info span {
    font-size: 16px;
  }

  .works__tabs {
    gap: 20px;
  }

  .developing__content,
  .developing__cards,
  .developing__parts {
    gap: 20px;
  }

  .developing__title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .developing__item-title-name>h6 {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .developing__item {
    padding: 60px 40px;
  }

  #ad .developing__item,
  #support .developing__item {
    padding: 60px 40px;
    gap: 20px;
  }

  .banner__content {
    gap: 30px;
  }

  .faq__content {
    gap: 20px;
  }

  .faq__accordeon {
    gap: 20px;
  }

  .faq__header h6 {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .contact__content {
    gap: 20px;
  }

  .contact__title h3 {
    font-size: 40px;
    letter-spacing: 2px;
  }
  .contact__block {
    flex-direction: column;
    align-items: center;
  }
  .form {
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .header__contacts {
    display: none;
  }

  .header__menu-mobile .header__phone-socials {
    display: flex;
  }

  .header__menu-mobile a:last-child {
    display: block;
  }
  .popup {
    padding: 60px 40px;
    max-width: 450px;
    border-radius: 40px;
  }

  .popup h4 {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  .popup p {
    font-size: 16px;
  }
}

@media screen and (max-width: 730px) {
  .footer__content {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 670px) {
  .banner__block.reasons .banner__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .developing__item-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .developing__item-title-price {
    width: 100%;
    align-items: flex-start;
  }
  .developing__title h4 {
    text-align: left;
  }
}

@media screen and (max-width: 600px) {

  .header__logo {
    min-width: 72px;
    max-width: 72px;
    height: 36px;
  }

  .header__contacts {
    display: none;
  }

  .header__menu-mobile {
    top: 83px;
    height: calc(100vh - 83px);
  }

  .header__menu-mobile .header__phone-socials {
    display: flex;
  }

  .header__menu-mobile a:last-child {
    display: block;
  }

  .welcome {
    height: calc(100vh - 100px);
  }

  .welcome__container {
    height: 95%;
  }

  .welcome__content h3 span {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .welcome__content p {
    font-size: 16px;
  }

  .service__info,
  .developing__item,
  #ad .developing__item,
  #support .developing__item {
    padding: 40px 20px;
  }

  .service__info p {
    font-size: 14px;
  }

  .works__content,
  .works__box,
  .works__cards {
    gap: 20px;
  }

  .works__item {
    flex: 0 0 320px;
    height: 205px;
  }

  .developing__item>p {
    font-size: 14px;
    line-height: 150%;
  }

  .developing__item-title-price>h6 {
    font-size: 22px;
  }

  #developing .developing__item:not(:first-child) .developing__item-title {
    gap: 0px;
  }

  .developing__item-title-name h4 {
    word-break: break-word;
  }

  .banner__block {
    padding: 40px 20px;
  }

  .banner__block p {
    font-size: 14px;
    line-height: 150%;
  }

  .faq__item {
    padding: 40px 18px;
    border-radius: 40px;
  }

  .faq__header {
    gap: 10px;
  }

  .faq__body p {
    font-size: 14px;
    line-height: 150%;
  }

  .contact__title h3 {
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}

@media screen and (max-width: 768px) {
  canvas {
    background: url(assets/images/smoke.webp) 100% / cover no-repeat;
  }
}