@import url(normalize.css);
@import url(fonts.css);
@import url(variables.css);
@import url(typograpy.css);
@import url(btn.css);

/* body {
  background: red;
  min-height: 200vh;
} */
body {
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

.d-f {
  display: flex;
}

.xs {
  display: none;
}

.content {
  max-width: 1216px;
  margin: auto;
}

.main {
  position: relative;
  padding: 100px 16px 0;

  background-color: #F5F8FF;
  z-index: 1;
}

.main::after,
.main::before {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-repeat: no-repeat;
  z-index: -1;
}

.main::before {
  top: 0;
  background-position: top center;
  background-image: url(../img/top.png);

}

.main::after {
  bottom: 0;
  background-image: url(../img/bottom.png);
  background-position: bottom center;
}

@media (min-width:1921px) {
  .main::after {
    min-height: 2000px;
    background-size: 100%;
    z-index: -2;
  }
}

.header {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.header__content {
  padding: 16px;
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.header .logo-wrap {
  top: 34px;
  position: absolute;
}

.nav__wrap {
  padding: 22px 46px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  outline: 1px solid #FFFFFF;
  background-color: #FFFFFF99;
  border-radius: 20px;
  backdrop-filter: blur(24px)
}

.nav__item {
  font-family: 'Mulish';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
  text-decoration: none;
}

.nav__item.active {
  font-weight: 700;
  color: var(--DarkBlue);
}

.hero__title {
  max-width: 952px;
  text-align: center;
  margin-bottom: 56px;
}

.hero__content {
  padding: 88px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__content .btn {
  width: 210px;
}

.our-work__content {
  padding: 64px 0 100px;
}

.our-work__title {
  margin-bottom: 16px;
}

.our-work__grid {
  padding-top: 16px;
  display: grid;
  grid-template-areas:
    "item-1 item-3 item-4 item-5"
    "item-2 item-3 item-6 item-6";
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
}

.item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: var(--White);
  padding: 24px;
  border-radius: 10px;
}

.item__title {
  font-family: Inter;
  font-size: clamp(18px, 5vw, 20px);
  font-weight: 600;
  line-height: clamp(21.6px, 5vw, 24px);
  color: var(--Black);
}

.item__text {
  max-width: 231px;
  font-family: Inter;
  font-size: 16px;

  font-weight: 400;

  line-height: 24px;
  text-align: left;
  color: var(--GrayText);

}

.item__img_wrap {
  border-radius: 4px;
}

.item-1 {
  grid-area: item-1;
}

.item-2 {
  grid-area: item-2;
}

.item-3 {
  grid-area: item-3;
}

.item-3 .item__img_wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Violet);
  max-height: 264px;
  height: 100%;
  justify-self: flex-end;
}

.item-4 {
  grid-area: item-4;
}

.item-5 {
  grid-area: item-5;
}

.item-6 {
  grid-area: item-6;
}

.item-6.horizontal {
  display: grid;
  grid-template-areas: "item-icon item-img"
    "item-title item-img"
    "item-text item-img";
  grid-template-rows: min-content;
}

.item-6 .item__icon-wrap {
  grid-area: item-icon;
}

.item-6 .item__title {
  grid-area: item-title;
}

.item-6 .item__text {
  grid-area: item-text;
}

.item-6 .item__img_wrap {
  grid-area: item-img;
  justify-self: end;
  background: var(--DarkBlue);
  max-width: 252px;
}

.item-6 .item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 44px;
  max-height: 44px;
  background: #F5F8FF;
  padding: 10px;
  border-radius: 10px;
}

.our-projects {
  position: relative;
  z-index: 1;
}

.our-projects::after {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/spark.png);
  background-color: #F5F8FF;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: color-burn;
  z-index: -1;
}

.our-projects__content {
  position: relative;
  max-width: 100%;
  padding: 64px 0 32px;
}

.our-projects__title {
  text-align: center;
}

.our-projects__subtitle {
  text-align: center;
  margin: 32px 0 16px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.swiper {
  padding-top: 32px;
}

.swiper-nav__wrap {
  position: absolute;
  left: 50%;
  max-width: 1010px;
  width: 100%;
  height: 78px;
  top: 68.5px;
  transform: translateX(-50%);
}

.swiper-button-next,
.swiper-button-prev {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  width: 78px;
  background: var(--White);
  border-radius: 39px;
  transition: all .3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  filter: opacity(.7);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-button-next {
  transform: rotate(180deg);
}

.swiper-icon {
  width: 24px;
  height: 24px;
}

.slide-wrap {
  width: 800px;
  height: 618px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: plus-lighter;
  background: #ffffff90;
  outline: 1px solid #fff;
  border-radius: 10px;
}

.swiper-slide {
  width: 800px !important;
  height: 618px !important;
}

.slide-wrap,
.swiper__img {

  width: 100%;
  height: 100%;
}

.our-projects__btn_wrap {
  padding: 64px 0;
}

.our-projects__btn_wrap .btn {
  max-width: 210px;
  margin: auto;
}

.we-develop__content {
  padding: 64px 0 100px;
}

.we-develop__title {
  margin-bottom: 16px;
}

.cards__wrap {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card {
  display: flex;
  justify-content: space-between;
  padding: 48px;
  background: var(--White);
  border-radius: 10px;
}

.card__col {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card__col:last-child {
  max-width: 500px;
}

.card__icon_wrap {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  background: var(--Violet);
}

.card__title {
  font-family: Mulish;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--DarkBlue);
}

.card__li {
  max-width: 479px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 8px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--Black);
}

.card__li:last-child {
  margin-bottom: 0;
}

.card__li::before {
  position: absolute;
  top: 3px;
  left: 2px;
  content: url(../img/icons/li.svg);
}

.card__ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card__img_wrap {
  max-width: 500px;
  max-height: 480px;
  width: 100%;
  height: 100%;

}

.card__img {
  display: block;
  width: 100%;
}

.tec {
  position: relative;
  z-index: 1;
}

.tec::after {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/spring.png);
  background-color: #F5F8FF;
  background-repeat: no-repeat;
  /* background-position: left center; */
  background-blend-mode: color-burn;
  z-index: -1;
}

.tec__content {
  padding: 64px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tec__title {
  margin-bottom: 32px;
}

.tec__subtitle {
  max-width: 367px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.tec__col.left {
  max-width: 431px;
}

.tec__col.right {
  max-width: 666px;
}

.tec__card {
  margin-bottom: 16px;
  padding: 24px 30px;
  border-radius: 10px;
  background: var(--White);
}

.tec__card:last-child {
  margin-bottom: 0;
}

.tec__card__title {
  margin-bottom: 16px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--DarkBlue);
}

.tec__card__row {
  display: flex;
  margin-bottom: 4px;
  gap: 32px;
}

.tec__card__row:last-child {
  margin-bottom: 0;
}

.tec__card__row__title {
  min-width: 90px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--Black);
}

.tec__card__row__text {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.clients__content {
  padding: 64px 0 120px;
}

.clients__title {
  text-align: center;
  padding-bottom: 16px;
}

.clients__wrap {
  margin-top: 32px;
  background-color: var(--White);
  padding: 70px 107px;
  border-radius: 20px;
}

.clients__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12.93px 53.33px;
  justify-content: space-between;
}

.client__item {
  object-fit: scale-down;
}

.h-95 {
  height: 95.35px;
}

.h-68 {
  height: 68.69px;
}

.h-77 {
  height: 77.57px;
}

.contact__content {
  padding: 120px 0;
}

.contact__title,
.contact__subtitle {
  text-align: center;
  margin-bottom: 16px;
}

.contact__subtitle {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.form__wrap {
  padding-top: 32px;
  max-width: 696px;
  margin: auto;
}

.form__contorl {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form__input_name {
  padding: 0px 8px 10px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--DarkBlue);
}

.input {
  width: 100%;
  height: 68px;
  padding: 0 32px;
  border: none;
  outline: 1px solid var(--GraySeparator);
  border-radius: 10px;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--Black);
  background-color: transparent;
}

.textarea {
  padding: 24px 32px;
  resize: none;
  min-height: 222px;
}

.form__contorl .btn {
  margin-top: 8px;
  height: 60px;
}



.contact {
  position: relative;
  z-index: 1;
}

.contact::after {
  pointer-events: none;
  position: absolute;
  top: 25px;
  right: 47px;
  content: '';
  width: 50%;
  height: 30%;
  z-index: -1;
  background-image: url(../img/spring-2.png);
  background-blend-mode: color-burn;
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #F5F8FF;
  z-index: -1;
}

@media (min-width:1921px) {
  .contact::after {
    right: 25%;
    width: 15%;
  }
}

.footer {
  padding-bottom: 120px;
}

.footer .logo-wrap {
  position: relative;
  margin-bottom: 38px;
  max-width: 223px;
  width: 100%;
}

.footer .logo-img {
  width: 100%;
}

.footer__content {
  padding: 78px 70px;
  display: flex;
  justify-content: space-between;
  outline: 1px solid var(--GraySeparator);
  background: linear-gradient(121.9deg, #FFFFFF 0%, #F7F9FF 96.81%);
  border-radius: 40px;
}

.footer__col.left {
  max-width: 359px;
  width: 100%;
}

.footer__col.right {
  max-width: 486px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer__subtitle {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.footer__copyright {
  margin-top: 91px;
  display: flex;
flex-direction: column;
  gap:5px;
}
.copyrigt-icon{
  max-width:24px ;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 52px;
}

.footer__link {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
  text-decoration: none;
}

.footer__contacts {
  margin-top: auto;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer__contact:last-child {
  margin: 0;
}

.footer__contact__text {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--GrayText);
}

.footer__contact_icon {
  height: 44px;
  width: 44px;
  padding: 10px;
  border-radius: 4px;
  background-color: var(--GrayBG);
}

.hd {
  display: none;
}

.footer__copyright.mobile {
  display: none;
}

.contact__wrap {
  max-width: 649px;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(121.9deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 249, 255, 0.9) 96.81%);
  border: 1px solid var(--GraySeparator, rgba(214, 221, 237, 1));
  backdrop-filter: blur(4px);
  border-radius: 20px;
}

.contact__wrap .contact__title {
  font-family: Mulish;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--DarkBlue);
  margin-bottom: 8px;
}

.contact__wrap .contact__title.last {
  margin-bottom: 40px;
}

.contact__subtitle.black {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--Black);
  margin-bottom: 8px;
}

.contact__subtitle:last-child {
  margin-bottom: 0;
}

@media (max-width:1100px) {
  .content {
    max-width: 1024px;
  }

  .hm {
    display: none;
  }

  .hd {
    display: block;
  }

  .header {
    position: sticky;
    top: 0;
  }

  .mobile__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-width: 340px;
    width: 100%;
    top: 7px;
    right: 16px;
    padding: 72px 16px 48px 24px;
    background-color: rgba(255, 255, 255, 0.6);
    outline: 1px solid #FFFFFF;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .mobile__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .header__content.mobile {
    max-width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background-color: #F5F8FFB2;
    backdrop-filter: blur(14px)
  }

  .header__content.mobile .logo-wrap {
    position: relative;
    height: 32px;
    top: 0;
  }

  .menu__btn {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #FFFFFF99;
    outline: 1px solid var(--White)
  }

  .mobile__nav .nav__item {
    display: block;
  }

  .mobile__nav .nav__item {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--Black);
    margin-bottom: 32px;
  }

  .mobile__nav .nav__item:last-child {
    margin-bottom: 0;
  }

  .close {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
}

@media (max-width:1024px) {
  .footer__content {
    flex-direction: column;
    padding: 48px 32px;
  }

  .footer__contacts {
    margin-top: 32px;
  }

  .footer {
    padding-bottom: 64px;
  }

  .footer .logo-wrap {
    margin-bottom: 8px;
  }

  .footer__copyright {
    display: none;
  }

  .footer__copyright.mobile {
    margin-top: 32px;
    display: flex;
  }

  .footer__nav {
    margin-top: 32px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 16px;
  }

  .footer__link {
    color: var(--Black);
  }
}

@media (max-width:768px) {
  .contact::after {
    display: none;
  }
}

@media (max-width:512px) {

  .hero__title,
  .our-projects__title,
  .our-projects__subtitle,
  .clients__title,
  .contact__title,
  .contact__subtitle {
    text-align: left;
  }

  .xs {
    display: block;
  }

  .main {
    padding-top: 32px;
  }

  .hero__content {
    padding: 0;
    align-items: start;
  }

  .main::before {
    background-size: 230%;
  }

  .contact__content {
    padding: 64px 0 16px;
  }

}

.contact::before {
  content: "";
  left: -16px;
  height: 1px;
  width: calc(100% + 32px);
  position: absolute;
  background-color: #D6DDED;
}
@media (max-width:768px) {
  .contact::before {
    display: none;
  }
}