@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  list-style: none;
  color: var(--text-color);
}

* img {
  max-width: 100%;
}

:root {
  --bg-color: linear-gradient(360deg, rgb(4 43 65) 20%, rgb(1 9 10) 69%, rgb(4 43 65 / 110%) 96%);
  --bg-color-about: linear-gradient(360deg, rgb(4 43 65) 20%, rgb(1 9 10) 69%, rgb(1 28 43) 96%);
  --accent-color: #1D8574;
  --text-color: #d6d6d6;
  --burger-color: linear-gradient(360deg, rgb(5 9 11) 20%, rgb(17 78 112) 69%);
  --card-color: linear-gradient(360deg, rgb(5 9 11 / 97%) 20%, rgb(9 46 33 / 42%) 69%);
  --btn-color: #ffffff;
  --btn-color-hover: #94c3d7;
  --bg-color-partners: linear-gradient(360deg, rgb(91 117 133 / 57%) 20%, rgb(0 54 84) 69%, rgb(9 10 10 / 75%) 96%);
}

body {
  font-family: "Saira Condensed", sans-serif;
  color: white;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  background: var(--bg-color);
  height: 100vh;
  padding-bottom: 80px;
}

[class*=__container] {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;
}

/* General */
.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color);
}

.fa-solid {
  font-size: 55px;
  color: #ffeb7e;
}

p {
  padding-top: 10px;
}

.title {
  font-size: 46px;
  font-weight: 600;
}

.btn-up {
  position: fixed;
  background-color: rgba(8, 120, 75, 0.8117647059);
  right: 20px;
  bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  z-index: 1;
  opacity: 0.6;
}

.btn-up::before {
  content: "";
  width: 40px;
  height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn-up:hover {
    background-color: var(--accent-color);
  }
}
/* /General */
/* header */
.header {
  padding: clamp(0.938rem, 0.665rem + 1.36vw, 1.875rem) 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__logo {
  max-width: 100px;
  align-items: center;
}
.header__navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -2.799rem + 8.44vw, 4.688rem);
}
.header__button {
  display: flex;
}
@media (max-width: 992px) {
  .header__button {
    margin-right: 15px;
  }
}
.header__btn {
  font-family: inherit;
  font-size: 16px;
  padding: 10px 18px;
  color: #d6d6d6;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  background-color: transparent;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .header__btn {
    padding: 7px 15px;
  }
}

@media (max-width: 992px) {
  .menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: 82vh;
    width: 82%;
    display: flex;
    overflow: auto;
    padding: 20px 0;
    background: var(--burger-color);
    transition: left 0.2s;
  }
  .menu._active {
    left: 0;
  }
}
.menu-icon {
  display: none;
}
.menu-icon:hover .line {
  transform: translateX(0);
  background-color: var(--accent-color);
}
@media (max-width: 992px) {
  .menu-icon {
    display: block;
    height: 18px;
    width: 30px;
    position: relative;
    cursor: pointer;
    z-index: 5;
  }
  .menu-icon .line {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
  }
  .menu-icon .line:first-child {
    top: 0;
  }
  .menu-icon .line:last-child {
    top: auto;
    bottom: 0;
  }
  .menu-icon._active .line {
    transform: scale(0);
  }
  .menu-icon._active .line:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu-icon._active .line:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .menu__body {
    flex-direction: column;
    margin: auto;
  }
}
.menu__link {
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.menu__link:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  height: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: white;
  }
  .menu__link:hover:before {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .menu__link {
    line-height: 50px;
    font-size: 30px;
  }
}

@media (any-hover: hover) {
  .contact__us:hover {
    background-color: var(--accent-color);
  }
}

/* /header */
/* hero */
.hero {
  margin-top: clamp(1.875rem, 1.057rem + 4.09vw, 4.688rem);
}
.hero__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__container {
    flex-direction: column;
    align-items: center;
    padding-top: clamp(1.875rem, 1.28rem + 2.98vw, 3.125rem);
    box-sizing: border-box;
  }
}
.hero__container .hero__content {
  flex: 0 0 49.2957746479%;
}
.hero__container .hero__title {
  font-size: clamp(2.5rem, 1.991rem + 2.55vw, 4.25rem);
  font-weight: 600;
  line-height: 1.26;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .hero__container .hero__title {
    width: 100%;
    text-align: center;
  }
}
.hero__container .hero__text {
  max-width: clamp(18.75rem, 11.477rem + 36.36vw, 43.75rem);
  margin-top: 18px;
  color: var(--text-color);
}
@media (max-width: 992px) {
  .hero__container .hero__text {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}
.hero__container .hero__button {
  display: flex;
}
@media (max-width: 992px) {
  .hero__container .hero__button {
    justify-content: center;
  }
}
.hero__container .hero__button .hero__btn {
  margin-top: clamp(0.938rem, 0.574rem + 1.82vw, 2.188rem);
  font-family: inherit;
  font-size: 16px;
  padding: 10px 18px;
  color: #d6d6d6;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  background-color: transparent;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .hero__container .hero__button .hero__btn {
    padding: 7px 15px;
  }
}
@media (any-hover: hover) {
  .hero__container .hero__button .find__more:hover {
    background-color: var(--accent-color);
  }
}
.hero__container .hero__img {
  flex: 0 0 37.037037037%;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .hero__container .hero__img {
    display: none;
  }
}

/* /hero */
.whyis {
  padding: clamp(1.875rem, -0.489rem + 11.82vw, 10rem) 0;
  background-image: linear-gradient(rgb(4, 43, 65), rgba(10, 51, 74, 0.86)), url(../img/isdigital.jpg);
  background-position: center;
  background-size: cover;
  height: 100%;
  padding-bottom: 150px;
}
.whyis__slider {
  margin: 40px 80px 0 80px;
  position: relative;
}
@media (max-width: 500px) {
  .whyis__slider {
    margin: 80px 0 0 0;
  }
}

.whyis-slide {
  display: flex;
  flex-direction: column;
  gap: 27px;
  background: var(--card-color);
  border-radius: 10px;
}
.whyis-slide__thumb {
  display: flex;
  justify-content: center;
  padding: 20px 0 0 0;
}
.whyis-slide__text {
  padding: 0 20px 20px 20px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.26;
}
.whyis-slide__title {
  font-weight: 600;
  font-size: clamp(1.125rem, 0.982rem + 0.71vw, 1.625rem);
  line-height: 1.26;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  padding: 0 0 10px 0;
}
.swiper {
  overflow: hidden;
}

.ul-slide {
  padding-top: 30px;
}

.text__slide {
  list-style-type: circle;
  margin: 0 20px;
}

.swiper-wrapper {
  display: inline-flex;
}

.slider-buttons {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1400px) {
  .slider-buttons {
    top: 103%;
    right: 50%;
    width: auto;
  }
}

.whyis-slider-btn {
  cursor: pointer;
}
@media (max-width: 1400px) {
  .whyis-slider-btn {
    position: static;
  }
}

.swiper-button-prev {
  position: absolute;
  left: -52px;
}
.swiper-button-prev .fa-circle-left {
  color: var(--btn-color);
  font-size: 36px;
}
.swiper-button-prev .fa-circle-left:hover {
  color: var(--btn-color-hover);
}

.swiper-button-next {
  position: absolute;
  right: -52px;
}
.swiper-button-next .fa-circle-right {
  color: var(--btn-color);
  font-size: 36px;
}
.swiper-button-next .fa-circle-right:hover {
  color: #ccc;
}

.service {
  background-image: linear-gradient(rgba(0, 44, 68, 0.94), rgb(1, 27, 42)), url(../img/sevice.jpg);
  background-position: center;
  background-size: cover;
  padding-top: clamp(2.188rem, 1.642rem + 2.73vw, 4.063rem);
  padding-bottom: clamp(2.188rem, 1.642rem + 2.73vw, 4.063rem);
  height: 100%;
}
.service__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  gap: clamp(1.25rem, 0.705rem + 10vw, 3.125rem);
}
@media (max-width: 706px) {
  .service__body {
    flex-direction: column;
    justify-content: center;
  }
}
.service-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 0 0 28.1690140845%;
}

.square {
  opacity: 0;
  transform: scale(0.2) translate(0%, -80%);
}

@media (prefers-reduced-motion: no-preference) {
  .square {
    transition: opacity 2s ease, transform 2s ease;
  }
}
.square-transition {
  opacity: 1;
  transform: scale(1);
}

.item-secvice {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex: 0 0 28.1690140845%;
}
.item-secvice__img .item-secvice__img {
  width: clamp(6.25rem, 5.614rem + 3.18vw, 8.438rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: clamp(1.25rem, 0.959rem + 1.45vw, 2.25rem);
}
.item-secvice__img .item-secvice__img:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  position: absolute;
  background-color: var(--accent-color);
  opacity: 0.12;
}
.item-secvice__title {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}
.item-secvice__text {
  margin-top: 10px;
}

.fa-user-plus {
  font-size: clamp(2.188rem, 1.915rem + 1.36vw, 3.125rem);
}

.fa-mobile-screen-button {
  font-size: clamp(2.188rem, 1.915rem + 1.36vw, 3.125rem);
}

.fa-brush {
  font-size: clamp(2.188rem, 1.915rem + 1.36vw, 3.125rem);
}

.review {
  padding: 50px 15px 30px 15px;
}
.review__containe {
  max-width: clamp(37.5rem, 30.227rem + 36.36vw, 62.5rem);
  margin: 0 auto;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 1px -11px 10px -4px;
  padding: 15px;
}
.slider-review__text {
  font-size: 20px;
  line-height: 1.57;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0 10px;
}
.slider-review__title {
  padding-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.57;
}

.review-slider__buttons {
  display: flex;
  justify-content: center;
  gap: 35px;
  width: 100%;
  position: relative;
}
.review-slider__buttons:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background: rgba(233, 233, 233, 0.4078431373);
  width: 1px;
}

.slider-review-btn {
  cursor: pointer;
}

.fa-angle-right {
  color: var(--btn-color);
}
.fa-angle-right:hover {
  color: var(--btn-color-hover);
}

.fa-angle-left {
  color: var(--btn-color);
}
.fa-angle-left:hover {
  color: var(--btn-color-hover);
}

.about {
  background-image: linear-gradient(266deg, rgb(4, 43, 65) 20%, rgba(0, 16, 26, 0.95) 69%, rgba(1, 28, 43, 0.96) 96%), url(https://static.tildacdn.com/tild3039-3163-4530-a364-373831313161/Dots.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-top: clamp(3.125rem, 2.216rem + 4.55vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 2.216rem + 4.55vw, 6.25rem);
  height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 806px) {
  .about {
    height: 100%;
  }
}
.about__container {
  display: flex;
  align-items: center;
  gap: 63px;
  justify-content: center;
}
@media (max-width: 806px) {
  .about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.about__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}
@media (max-width: 806px) {
  .about__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: row;
  }
}
.about__item {
  width: clamp(12.5rem, 9.227rem + 16.36vw, 23.75rem);
  border-radius: 10% 0 20% 0;
}
.about__item .swiper-wrapper {
  position: relative;
}
.about__item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.about__info {
  width: clamp(18.75rem, 13.295rem + 27.27vw, 37.5rem);
}
.about__title {
  color: #ffffff;
}
.about h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
}
.about__text {
  margin-top: 22px;
  line-height: 1.76em;
}

.cases {
  height: 100%;
  background-image: linear-gradient(266deg, rgb(4, 43, 65) 20%, rgba(0, 16, 26, 0.95) 69%, rgba(1, 28, 43, 0.96) 96%), url(https://static.tildacdn.com/tild3039-3163-4530-a364-373831313161/Dots.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0 160px 0;
  justify-content: center;
}
.cases .cases__wrapper-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.cases__container {
  display: flex;
  justify-content: center;
}
.cases__title-title {
  text-align: center;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 60px;
}
.cases__box {
  width: clamp(20rem, 7.455rem + 52.73vw, 56.25rem);
  /* border: 1px solid; */
  background-color: rgba(1, 28, 43, 0.96);
  border-radius: 30px;
  padding: clamp(0.938rem, 0.119rem + 4.09vw, 3.75rem);
  background-image: url(../img/cases/joom_up.png), url(../img/cases/joom_down.png);
  background-position: 87% center, 73% bottom;
  background-repeat: no-repeat;
  background-size: 20%;
  box-shadow: 10px 6px 11px 6px rgba(29, 133, 116, 0.51), 1em 0 2.3em rgb(17, 78, 112);
}
@media (max-width: 768px) {
  .cases__box {
    background-position: 99% 63%, 89% bottom;
    background-size: 24%;
  }
}
@media (max-width: 425px) {
  .cases__box {
    box-shadow: none;
    border: 1px solid #1D8574;
  }
}
@media (max-width: 750px) {
  .cases__box {
    background-image: none;
  }
}
.cases__item-logo {
  width: 70px;
}
.cases__item-hdr {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.cases__results-ftr {
  display: flex;
  gap: 30px;
}
.cases__results-ftr-left {
  width: 180px;
}
.cases__results-ftr-right {
  width: clamp(10rem, 9.273rem + 3.64vw, 12.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cases__results-check {
  gap: 20px;
}
.cases__results-text {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.25rem);
  color: var(--text-color);
}
.cases__results-title {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.875rem);
  color: #ffffff;
  font-weight: 600;
  padding-top: 20px;
}
.alibaba {
  background-image: url(../img/cases/alibaba1.png), url(../img/cases/alibaba2.png);
  background-position: 87% center, 73% bottom;
  background-repeat: no-repeat;
  background-size: 20%;
}
@media (max-width: 768px) {
  .alibaba {
    background-position: 99% 63%, 89% bottom;
    background-size: 24%;
  }
}
@media (max-width: 750px) {
  .alibaba {
    background-image: none;
  }
}

.tiktok {
  background-image: url(../img/cases/TikTok_up.png), url(../img/cases/TikTok_down.png);
  background-position: 87% center, 73% bottom;
  background-repeat: no-repeat;
  background-size: 20%;
}
@media (max-width: 768px) {
  .tiktok {
    background-position: 99% 63%, 89% bottom;
    background-size: 24%;
  }
}
@media (max-width: 750px) {
  .tiktok {
    background-image: none;
  }
}

.bigo {
  background-image: url(../img/cases/Bigo_up.png), url(../img/cases/Bigo_down.png);
  background-position: 87% center, 73% bottom;
  background-repeat: no-repeat;
  background-size: 20%;
}
@media (max-width: 768px) {
  .bigo {
    background-position: 99% 63%, 89% bottom;
    background-size: 24%;
  }
}
@media (max-width: 750px) {
  .bigo {
    background-image: none;
  }
}

.partners__title {
  padding: 50px 15px;
}
.partners__boxlogo {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 12px;
  justify-content: center;
  background: var(--bg-color-partners);
}
.partners__cardlogo {
  width: 150px;
  display: flex;
  align-items: center;
}

.contact {
  height: 100%;
  background-color: rgb(1, 23, 35);
}
.contact__box {
  display: flex;
  justify-content: space-around;
  padding-bottom: 50px;
}
@media (max-width: 845px) {
  .contact__box {
    gap: 30px;
    flex-direction: column;
  }
}
@media (max-width: 845px) {
  .contact__social {
    justify-content: center;
  }
}
.contact__logo {
  max-width: 100px;
  align-items: center;
}
.contact__social-text {
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 15px;
}
.contact__icons {
  display: flex;
  gap: 10px;
}
@media (max-width: 845px) {
  .contact__menu {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

.contact__hdr {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  align-items: center;
  padding-bottom: 50px;
}

.contact__menu-title {
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 15px;
}
@media (max-width: 845px) {
  .contact__menu-title {
    display: flex;
    justify-content: center;
  }
}

.mail__item {
  padding-bottom: 15px;
}
.mail__link {
  text-decoration: none;
  list-style: none;
  color: var(--text-color);
  font-size: 20px;
}
.mail__link:hover {
  color: #ffffff;
}

.adress {
  padding-bottom: 15px;
}

.fa-envelope,
.fa-map {
  font-size: 20px;
  padding-right: 5px;
}

.fa-brands {
  font-size: 26px;
  color: #ffeb7e;
}
.fa-brands:hover {
  color: rgba(255, 236, 126, 0.6941176471);
}

.contact__item {
  padding-bottom: 15px;
}
@media (max-width: 845px) {
  .contact__item {
    display: flex;
    justify-content: center;
  }
}
.contact__link {
  font-size: 20px;
  color: var(--text-color);
}
.contact__link:hover {
  color: #ffffff;
}

.map__google {
  width: clamp(16.875rem, 13.92rem + 14.77vw, 25rem);
  height: 250px;
}
@media (max-width: 845px) {
  .map {
    display: flex;
    justify-content: center;
  }
}

.footer {
  height: 100%;
  background-color: black;
}
.footer__box {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
.footer__text {
  font-size: 14px;
  color: var(--text-color);
}
.fa-paper-plane {
  font-size: 10px;
  padding-right: 5px;
}
.fa-paper-plane:hover {
  color: rgba(255, 236, 126, 0.4980392157);
}/*# sourceMappingURL=main.css.map */