/* ALL  */
.wrapper::before {
  content: none;
}

.footer {
  background: none;
}

.container {
  max-width: 1680px !important;
}

p > a {
  color: #1f58e9;
}

.btn-new {
  border: none;
  border-radius: 29px;
  padding: 15px 30px;
  background: #fff;
  font-size: clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem);
  color: #000b24;
  transition: background-color 0.3s, color 0, 3s;
}

.btn-new:hover {
  background-color: #1f58e9;
  color: #fff;
}

@media (max-width: 586px) {
  .btn-new {
    padding: 10px 20px;
  }
}

.btn-new--small {
  padding: 10px 25px;
  font-size: clamp(0.875rem, 0.8269rem + 0.1923vw, 1rem);
}

.section-new {
  margin-top: clamp(3.75rem, 1.5865rem + 8.6538vw, 9.375rem);
  margin-bottom: clamp(3.75rem, 1.5865rem + 8.6538vw, 9.375rem);
}

.section-new + .section-new {
  margin-top: 0;
}

.section-new__title {
  font-weight: 400;
  font-size: clamp(1.625rem, 1.0962rem + 2.1154vw, 3rem);
  line-height: 120%;
  text-align: center;
  background: linear-gradient(90deg, #fff 0%, #6e6f74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1.5625rem, 0.9615rem + 2.4038vw, 3.125rem);
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.section-new__title--left {
  text-align: left;
  margin-left: unset;
  margin-right: unset;
}

.new-design__border {
  position: relative;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  );
  overflow: hidden;
}

.new-design__border:after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 1) 0%,
    rgba(5, 5, 5, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* SOLUTIONS  */

.solutions__hero {
  position: relative;
  aspect-ratio: 18 / 7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.solutions__hero::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 5, 5, 0.4) 0%,
    rgba(5, 5, 5, 0.4) 100%
  );
  z-index: 0;
}

.solutions__hero-container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  justify-content: center;
}

.solutions__hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.solutions__hero-content {
  position: relative;
  display: flex;
  justify-content: center;
}

.page-id-3703 .solutions__hero-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 871px;
}

.solutions__hero-title {
  font-weight: 400;
  font-size: clamp(2rem, 1.0385rem + 3.8462vw, 4.5rem);
  line-height: 110%;
  text-align: center;
}

.solutions__hero-note {
  font-size: clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem);
  position: absolute;
  right: -51px;
  bottom: 0;
}

.solutions__hero-btn {
  margin: 35px auto;
}

.solutions-descr {
  font-size: clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem);
  text-align: justify;
}

.solutions-descr__grid {
  column-count: 2;
  column-gap: clamp(1.5625rem, 0.9615rem + 2.4038vw, 3.125rem);
}

@media (min-width: 768px) {
  .solutions-descr__grid p + p {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .solutions-descr__grid {
    column-count: 1;
  }
}
@media (max-width: 1365px) {
  .solutions__hero {
    aspect-ratio: unset;
    min-height: 560px;
  }
}

@media (max-width: 1024px) {
  .solutions__hero-note {
    right: 0;
  }
}

@media (max-width: 580px) {
  .solutions__hero {
    min-height: 50vh;
    aspect-ratio: unset;
  }

  .solutions__hero-note {
    position: relative;
  }

  .solutions__hero-content {
    flex-direction: column;
    align-items: center;
  }
}

/* DEVELOPMENT LINE  */

.development-services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.development-services__list-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16/10;
}

.development-services__list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.development-services__list-link {
  position: relative;
}

.development-services__list-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.6) 50.17%,
    rgba(0, 0, 0, 0.55)
  );
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.development-services__list-item h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: clamp(1.25rem, 1.0577rem + 0.7692vw, 1.75rem);
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}

.development-services__list-item:hover img {
  transform: scale(1.05);
}

.development-services__list-item:hover .development-services__list-link::after {
  opacity: 0.5;
}
.development-services__list-item:hover h3 {
  transform: translateY(-50px);
}
@media (max-width: 1024px) {
  .development-services__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

/* SOLUTIONS VIDEO  */

.solutions-video {
  text-align: justify;
}

.solutions-video__grid {
  display: grid;
  grid-template-columns: 6.5fr 5fr;
  gap: 50px;
}

.solutions-video__bg {
  object-fit: cover !important;
  border-radius: 30px;
}

@media (max-width: 980px) {
  .solutions-video__grid {
    grid-template-columns: 1fr;
  }
}

/* HOW TO START  */

.how-to-start__grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.how-to-start__grid--first {
  grid-template-columns: 4fr 7.8fr;
  margin-bottom: 60px;
}

.how-to-start__grid--second {
  grid-template-columns: 7.8fr 4fr;
}

.how-to-start__col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.how-to-start__col p,
.how-to-start__col h3 {
  margin: 0;
}

.how-to-start__col h3 {
  font-size: clamp(1.5rem, 1.4038rem + 0.3846vw, 1.75rem);
  font-weight: 700;
}

.how-to-start__col {
  text-align: justify;
}

.how-to-start__btn {
}

.how-to-start__col img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .how-to-start__grid {
    grid-template-columns: 1fr;
  }

  .how-to-start__col img {
    /* max-width: 400px; */
  }

  .how-to-start__grid--second .how-to-start__col img {
    /* margin-left: auto; */
  }

  .how-to-start__grid--second {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* FRAMED BOX  */
.framed-box__wrapper {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 20px;
  padding: clamp(1.5625rem, 0.9615rem + 2.4038vw, 3.125rem);
  text-align: justify;
  align-items: center;
}

.framed-box__btn {
  margin-top: 30px;
}

.framed-box__img {
  display: flex;
  justify-content: center;
  /* max-width: 488px; */
  /* margin-left: auto; */
}

@media (max-width: 980px) {
  .framed-box__wrapper {
    grid-template-columns: 1fr;
  }
}

/* DEV PROCESS */
.dev-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dev-process__item {
  position: relative;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  );
  border-radius: 30px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.dev-process__title {
  font-size: clamp(1.25rem, 1.1538rem + 0.3846vw, 1.5rem);
  text-align: center;
  font-weight: 400;
}

.dev-process__item-list {
  padding: 0;
  margin: 0 0 0 26px;
  font-size: 16px;
}

.dev-process__item__descr p {
  font-size: 16px !important;
  line-height: 120%;
}

.dev-process__label {
  min-height: 38px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
}

.dev-process__duration {
  font-size: 16px;
  text-align: center;
}

.dev-process__item-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 1366px) {
  .dev-process__title {
    height: 20px;
  }
}

@media (max-width: 1024px) {
  .dev-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .dev-process__grid {
    grid-template-columns: 1fr;
  }
}

/* 10 yest excellence  */

.excellence {
  text-align: justify;
}

.excellence__2col {
  margin-top: 36px;
  column-count: 2;
  column-gap: clamp(1.5625rem, 0.9615rem + 2.4038vw, 3.125rem);
}

@media (max-width: 767px) {
  .excellence__2col {
    column-count: 1;
  }
}

/* FAQ  */

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

.faq__item {
  position: relative;
  background: linear-gradient(
      135deg,
      #111 0%,
      #0a0a0a 29.79%,
      #0a0a0a 70.24%,
      #111 100%
    ),
    rgba(255, 255, 255, 0.5);
  padding: 20px 30px;
  color: #fff;
  border-radius: 30px;
}

.faq__question {
  color: #fff;
  width: 100%;
  text-align: left;
  font-size: clamp(1.25rem, 1.0577rem + 0.7692vw, 1.75rem);
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.3s;
  padding-right: 40px;
  position: relative;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 160%;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: clamp(1.875rem, 1.1538rem + 2.8846vw, 3.75rem);
  transition: transform 0.3s, content 0.3s, color 0.3s;
  height: 33px;
}

.faq__item.active .faq__question::after {
  content: "–";
  color: #1f58e9;
}

.faq__question:hover {
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  line-height: 150%;
  max-width: 90%;
}

.faq__item.active .faq__answer {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .faq__item {
    padding: 15px 20px;
  }
  .faq__question {
    line-height: auto;
  }
}

/* HEADER */
.header,
.header.is-sticky,
.dropdown-menu {
  background-color: #000;
}

/* POPUP */

#popup-form {
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  );
  border-radius: 30px;
  border: none;
  max-width: 426px !important;
}

#popup-form .h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  background: linear-gradient(90deg, #fff 0%, #6e6f74 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.callback-form .form-control {
  border: 1px solid #2a2a2a;
  border-radius: 30px;
  background: #000;
}

.fancybox-slide .callback-form__field-wrap {
  margin-bottom: 10px;
}

.callback-form__agree-checkbox .checkbox input:checked + i {
  background: url('data:image/svg+xml,<svg width="20" height="15" viewBox="0 0 20 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 5.77207L7.2187 12L19 2" stroke="%23E6E6E6" stroke-width="3" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.callback-form__agree-checkbox .checkbox i {
  background-color: #000;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.callback-form__actions .link-circle::before {
  content: none;
}

.callback-form__actions .link-circle {
  border-radius: 29px;
  padding: 15px 30px;
  background: #fff;
  width: 100%;
  font-size: clamp(1rem, 0.9038rem + 0.3846vw, 1.25rem);
  font-weight: 400;
  color: #000b24;
  display: flex;
  justify-content: center;
}

.callback-form__actions .link-circle__inner::after {
  content: none;
}

.callback-form__agree-checkbox {
  padding-bottom: 30px;
}

/* CONTACT-US */
.contact-us-new__header {
  margin-bottom: 50px;
  font-size: clamp(1.375rem, 1.2308rem + 0.5769vw, 1.75rem);
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-us-new__header a {
  display: flex;
  gap: 10px;
}
.contact-us-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.contact-us-new__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.contact-us-new__item-country {
  font-size: clamp(1.375rem, 1.2308rem + 0.5769vw, 1.75rem);
}
.contact-us-new__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-us-new__grid {
    grid-template-columns: 1fr;
  }
}

/* FORM HORIZON  */

.callback-form-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.callback-form-new__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form-new__col-2 {
  grid-column: span 2;
}

.callback-form-new__col-3 {
  grid-column: span 3;
}

.callback-form-new__textarea {
  height: 138px;
}

.callback-form-new input,
.callback-form-new textarea {
  width: 100%;
  border: 1px solid #2a2a2a;
  border-radius: 30px;
  padding: 20px;
  background: #111;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.callback-form-new input:focus,
.callback-form-new textarea:focus {
  background: #111;
  color: #fff;
}

.callback-form-new input::placeholder,
.callback-form-new textarea::placeholder {
  color: #fff;
}

.callback-form-new .checkbox i {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #111;
}

.callback-form-new .checkbox input:checked + i {
  background: url('data:image/svg+xml,<svg width="20" height="15" viewBox="0 0 20 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 5.77207L7.2187 12L19 2" stroke="%23E6E6E6" stroke-width="3" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.callback-form-new__attachment {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
}

.callback-form-new .fancy-file-upload > input[type="text"] {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .callback-form-new__textarea--big {
    height: 186px;
  }
}

@media (max-width: 767px) {
  .callback-form-new {
    display: flex;
    flex-direction: column;
  }
}

/* LATEST NEWS  */
.latest-news-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 20px;
}

.latest-news__list .swiper-slide {
  height: auto;
}

/* NEWS CARD  */
.latest-news__card {
  height: 100%;
}

.latest-news__card-cat {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  background: #050505;
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  margin: auto;
  width: fit-content;
}

.latest-news__card-img-wrap {
  /* height: 190px; */
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.latest-news__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.latest-news__card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 250px;
}

.latest-news__card-more {
  margin-top: auto;
  font-weight: 400;
  font-size: 18px;
}

.latest-news__card-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.latest-news__card-meta .rmp-icon--full-highlight {
  color: #ffc300;
}

/* OUR CASE STUDIES  */
.our-case-studies-new {
  background: none;
  padding: 0;
}

.our-case-studies-card-new {
  padding: 30px;
  min-height: 533px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
}

.our-case-studies-card-new__title {
  font-size: clamp(1.25rem, 1.1538rem + 0.3846vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 10px;
}

.our-case-studies-card-new__descr {
  margin-bottom: 30px;
  font-size: clamp(0.875rem, 0.7788rem + 0.3846vw, 1.125rem);
}

.our-case-studies-card-new__read-more {
  font-size: clamp(0.875rem, 0.7788rem + 0.3846vw, 1.125rem);
}

.our-case-studies-card-new__img-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.our-case-studies-card-new__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-case-studies-card-new__body {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.section-new .swiper-button-prev:hover,
.section-new .swiper-button-next:hover {
  background-image: url('data:image/svg+xml,<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="27" cy="27" r="27" fill="white" /><path d="M31 36L22 27L31 18" stroke="%23000B24" stroke-width="2.2" /></svg>');
}

/* REVIEWS NEW  */

.clutch-new {
  margin-bottom: 60px;
  text-align: center;
}

.clutch-reviews-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 586px) {
  .clutch-reviews-nav {
    margin-top: 30px;
  }
}

.swiper-navigation-next,
.swiper-navigation-prev {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background: url('data:image/svg+xml,<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="27" cy="27" r="27" fill="white" /><path d="M31 36L22 27L31 18" stroke="%23000B24" stroke-width="2.2" /></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.swiper-navigation-next {
  transform: rotate(180deg);
}

.card-reviews {
  position: relative;
}

.person-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 45%;
  width: 100%;
}

.person-reviews {
  max-width: 90%;
}

.person-reviews .swiper-slide {
  height: auto;
}

.person {
  border-radius: 30px;
  padding: 28px 30px;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  );
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  height: 100%;
}

.person__header {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 20px;
}

@media (max-width: 1024px) {
  .person__header {
    flex-wrap: wrap;
  }
}

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

.person__name {
  font-size: clamp(1rem, 0.9671rem + 0.1316vw, 1.125rem);
  margin-bottom: 0;
}
.person__post {
  font-size: clamp(0.875rem, 0.8421rem + 0.1316vw, 1rem);
}
.person__project-name {
  font-size: clamp(0.875rem, 0.8421rem + 0.1316vw, 1rem);
  color: #808287;
}

.person__header-photo {
  width: 101px;
  height: 101px;
}

.person__project {
  max-height: 90px;
  max-width: 145px;
  margin-left: auto;
}

.person__project img {
  height: 100%;
  width: auto;
  border-radius: 20px;
}

.person__company {
  font-size: clamp(0.875rem, 0.7788rem + 0.3846vw, 1.125rem);
}

.person__company-img {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.person__project-page {
  margin-top: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 767px) {
  .person-nav {
    position: relative;
    top: unset;
    max-width: 130px;
    margin: auto;
    margin-top: 30px;
  }

  .person-reviews {
    max-width: 100%;
  }
}

@media (max-width: 586px) {
  .clutch-reviews__btn {
    display: flex;
    align-items: center;
    font-size: 12px !important;
  }

  .swiper-navigation-next,
  .swiper-navigation-prev {
    height: 40px;
    width: 40px;
  }

  .person-nav {
    max-width: 100px;
  }
  .person__header {
    justify-content: center;
    text-align: center;
  }
  .person__project {
    margin-left: unset;
  }
  .person__project {
    text-align: center;
  }
  .person__company-img {
    justify-content: center;
  }
  .person__review {
    text-align: center;
  }
}

/* SELECTED WORKS */
.solutions__hero-text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.selected-work-new__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .selected-work-new__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.selected-work--new .tabs__buttons::before {
  right: 0;
}
.selected-work--new .tabs__btn {
  font-size: clamp(0.875rem, 0.7188rem + 0.625vw, 1.375rem);
}

.selected-work-new__item--last .section-title {
  text-align: center;
  font-size: clamp(2rem, 1.793rem + 0.8282vw, 2.5rem);
}

/* SELECTED WORK CARD */
.sw-card {
  position: relative;
  aspect-ratio: 7 / 8;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  ) !important;
}

.sw-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sw-card__award-wrapper {
  position: absolute;
  top: 26px;
  left: 26px;
  max-height: 100px;
  display: flex;
  align-items: stretch;
  z-index: 1;
}

.sw-card__award-wrapper img {
  width: auto;
  height: 100px;
}

.sw-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sw-card__content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
  left: 30px;
  bottom: 48px;
  max-width: 90%;
}

.sw-card__title {
  font-size: clamp(1.25rem, 1.1719rem + 0.3125vw, 1.5rem);
  margin: 0;
}

.sw-card__descr {
  margin: 0;
  font-size: clamp(0.875rem, 0.7715rem + 0.4141vw, 1.125rem);
}

.sw-card:hover .sw-card__img {
  transform: scale(1.05);
  filter: brightness(1.3);
}

.sw-card:hover .sw-card__content {
  transform: translateY(-50px);
}

/* AWARDS */

.awards__wrapper--new a {
  display: block;
}

.awards__wrapper--new img {
  margin-right: 0;
}

@media (min-width: 972px) and (orientation: landscape) {
  .awards__wrapper--new img {
    height: 15vh;
  }
}

@media (max-width: 980px) {
  .awards__wrapper--new a:last-child img {
    height: 80px;
  }
}

.awards--solutions {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 70px;
  margin-bottom: 50px;
}

/* GALLERY-GRID  */
.gallery-grid--solutions {
  grid-template-rows: unset;
}
@media (max-width: 991px) {
  .gallery-grid--gap {
    gap: 20px;
  }
}

/* MAIN PAGE */

.hero-screen {
  position: relative;
}

.hero-screen::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    #050505 6.3%,
    rgba(5, 5, 5, 0.14) 54.62%,
    rgba(0, 0, 0, 0.96) 97.06%
  );
}

.hero-screen__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 8%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-screen__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  /* max-width: 750px; */
}

.hero-screen__subtitle {
  margin: 0;
  margin-bottom: 10px;
  font-size: clamp(1.375rem, 1.0789rem + 1.1842vw, 2.5rem);
  position: relative;
  left: 5px;
}

@media (max-width: 980px) {
  .hero-screen__subtitle {
    left: 0;
  }
}

.hero-screen__title {
  font-weight: 400;
  font-size: clamp(2rem, 0.8816rem + 4.4737vw, 6.25rem);
  line-height: 110%;
}

.scroll {
  position: absolute;
  bottom: 0%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #5d5e61;
  font-size: 20px;
  z-index: 1;
}

@media (max-width: 586px) {
  .scroll {
    display: none;
  }
}

.awards__wrapper--new a {
  display: block;
}

.awards__wrapper--new img {
  margin-right: 0;
}

@media (min-width: 1441px) {
  .hero-screen__content {
    /* max-width: 50vw; */
  }
}

@media (min-width: 972px) and (orientation: landscape) {
  .awards__wrapper--new img {
    height: 12vh;
  }
}

@media (max-width: 980px) {
  .awards__wrapper--new a:last-child img {
    height: 80px;
  }
}

.solutions-new__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.solutions-new__item {
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  position: relative;
  max-height: 270px;
}

.solutions-new__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.solutions-new__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.solutions-new__title {
  font-size: clamp(1.25rem, 1.0577rem + 0.7692vw, 1.75rem);
  position: relative;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.solutions-new__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.3);
}

.solutions-new__item:hover h3 {
  transform: translateY(-50px) scale(1.2);
}

.solutions-new__item:first-child {
  flex: 1 1 40%;
}

.solutions-new__item:nth-child(2) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(3) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(4) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(5) {
  flex: 1 1 40%;
}

.solutions-new__item:nth-child(6) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(7) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(8) {
  flex: 1 1 27%;
}

.solutions-new__item:nth-child(9) {
  flex: 1 1 40%;
}

@media (max-width: 486px) {
  .solutions-new__item {
    flex-basis: 100% !important;
  }
}

.about-us-new__header {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.about-us-new__header h2 {
  flex: 1 0 315px;
}

.about-us-new__header p {
  flex: 1 1 auto;
}

.play-video--new::after {
  background: center / contain no-repeat
    url("/wp-content/uploads/2025/09/Play.png");
  width: clamp(4.375rem, 2.2011rem + 8.6957vw, 9.625rem);
  height: clamp(4.375rem, 2.2011rem + 8.6957vw, 9.625rem);
}

.about-us-new__grid {
  display: flex;
  gap: 20px;
}

.about-us-new__list {
  flex: 1 0 315px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-us-new__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-new__num {
  font-size: clamp(1.875rem, 1.4092rem + 1.8634vw, 3rem);
  line-height: 1;
  margin: 0;
}

.about-us-new__text {
  font-size: clamp(0.875rem, 0.8232rem + 0.207vw, 1rem);
  margin: 0;
}

.about-us-new__video {
  flex: 1 1 100%;
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-us-new__header {
    flex-direction: column;
    gap: 0;
  }

  .about-us-new__header h2 {
    flex-basis: auto;
  }

  .about-us-new__grid {
    flex-direction: column;
  }

  .about-us-new__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-basis: auto;
    margin-bottom: 30px;
  }
}

.trusted-swiper {
  position: relative;
}

.trusted-swiper::before,
.trusted-swiper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
  z-index: 2;
}

.trusted-swiper::after {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

.trusted-swiper img {
  height: 54px;
  width: auto;
}

.trusted-swiper a {
  max-width: fit-content;
  display: flex;
  justify-content: center;
  min-width: 150px;
}

.trusted-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.why-work__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .why-work__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 586px) {
  .why-work__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.why-work__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 40px 20px !important;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  ) !important;
}

.why-work__title {
  font-size: clamp(1.25rem, 1.1465rem + 0.4141vw, 1.5rem);
  max-width: 220px;
  margin: 0;
}

.why-work__descr {
  margin: 0;
  font-size: clamp(0.875rem, 0.8232rem + 0.207vw, 1rem);
  line-height: 1.4;
  max-width: 280px;
}

.awards-new__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .awards-new__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.awards-new__item {
  position: relative;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  ) !important;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
}

.awards-new__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.awards-new__content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
  left: 30px;
  bottom: 48px;
}

.awards-new__title {
  font-size: clamp(1.25rem, 1.1465rem + 0.4141vw, 1.5rem);
  margin: 0;
}

.awards-new__descr {
  margin: 0;
  font-size: clamp(0.875rem, 0.7715rem + 0.4141vw, 1.125rem);
}

.awards-new__item:hover .awards-new__img {
  transform: scale(1.05);
  filter: brightness(1.3);
}

.awards-new__item:hover .awards-new__content {
  transform: translateY(-50px);
}

.awards-new__link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.partnerships__list {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(1.25rem, 0.4736rem + 3.1056vw, 3.125rem);
}

.partnerships__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .partnerships__list {
    flex-wrap: wrap;
  }

  .partnerships__item {
    flex-basis: 40%;
  }
}

.in-news__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .in-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 586px) {
  .in-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.in-news__item {
  position: relative;
  aspect-ratio: 6 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  ) !important;
}

@media (max-width: 586px) {
  .in-news__item {
    aspect-ratio: 16 / 10;
  }
}

.in-news__link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.in-news__img {
  width: 80%;
  transition: transform 0.3s ease;
}

.in-news__item:hover .in-news__img {
  transform: translateY(-25px);
}

.one-click__title {
  margin-bottom: 20px;
}

.one-click__subtitle {
  font-size: clamp(1.375rem, 1.2197rem + 0.6211vw, 1.75rem);
  text-align: center;
}

.partners-new__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .partners-new__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partners-new__item {
  position: relative;
  background: linear-gradient(
    135deg,
    #111 0%,
    #0a0a0a 29.79%,
    #0a0a0a 70.24%,
    #111 100%
  ) !important;
  aspect-ratio: 4 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-new__img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partners-new__item:hover .partners-new__img {
  transform: scale(1.05);
  filter: brightness(2);
}
