/*
Theme Name: Viden
Theme URI: https://viden-theme.com
Author: Viden Team
Author URI: https://viden-theme.com
Description: Современная тема WordPress с красивыми анимациями и кастомным дизайном
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8.3
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: viden
Tags: custom-menu, featured-images, threaded-comments, translation-ready
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: rgba(32, 41, 56, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-dark: #0f172a;
  --header-blue: rgba(74, 104, 252, 1);
  --header-light-blue: #60a5fa;
}

/*.custom__title svg {*/
/*    vertical-align: -5.5px;*/
/*}*/

.custom__title span:nth-child(2) {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: -5.5px;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1 {
  font-weight: 600;
  font-size: 52px;
  line-height: 125%;
  text-transform: uppercase;
}
.custom__title {
}

.link-underline {
  position: relative;
  display: inline-block;

  color: inherit;
  text-decoration: none;

  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;

  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  display: flex;
    align-items: center;
    gap: 10px;
}

/* hover / focus */
.link-underline:hover,
.link-underline:focus-visible {
  animation: underline-linear 1s linear;
}

@keyframes underline-linear {
  0% {
    background-size: 100% 1px;
  }
  50% {
    /* линейно исчезает слева → направо */
    background-size: 0 1px;
  }
  100% {
    /* линейно появляется слева → направо */
    background-size: 100% 1px;
  }
}

.container {
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  top: 30px;
  transition: all 0.3s ease;
}

.site-header.hidden {
  /*transform: translateY(-150%);*/
  top: 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px 0px rgba(32, 41, 56, 0.16);
  background: white;
}

.site-branding {
  display: flex;
  align-items: center;
}

.main-navigation {
  position: relative;
}

.main-navigation .menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 56px;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.has-mega-menu-active svg {
  transform: rotate(180deg);
}

.main-navigation a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: var(--transition);
}

.main-navigation .menu-arrow {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.main-navigation .menu-arrow svg {
  width: 12px;
  height: 7px;
}

.main-navigation .has-mega-menu svg {
  transition: 0.3s;
}

.mega-menus-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 1000px;
  left: calc(50% - 500px);
}

.mega-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-radius: 30px;
  box-shadow: 0px 4px 16px 0px rgba(32, 41, 56, 0.16);
  padding: 40px 60px;
  margin-top: 0.5rem;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mega-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.main-navigation .has-mega-menu.active > a,
.main-navigation a:hover {
  color: var(--header-blue);
}

.main-navigation .has-mega-menu.active > a svg {
  transform: rotate(180deg);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-menu-left {
  border-right: 1px solid rgba(32, 41, 56, 1);
  padding-right: 50px;
}

.mega-menu-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-category {
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 10px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

.mega-menu-category:hover,
.mega-menu-category.active {
  background: rgba(32, 41, 56, 1);
  color: var(--bg-white);
}

.mega-menu-right {
  position: relative;
  padding-left: 50px;
}

.mega-menu-category-content {
  display: none;
  flex-direction: column;
  gap: 60px;
}

.mega-menu-category-content[style*="display: block"] {
  display: flex !important;
}

.mega-menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg-white);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 20px;
  border: 1px solid var(--border-color);
  line-height: 120%;
}

.mega-menu-item:hover {
  background: var(--header-dark);
  color: var(--bg-white);
  border-color: var(--header-dark);
  transform: translateX(4px);
}

.mega-menu-arrow {
  font-size: 1.25rem;
  transition: var(--transition);
}

.mega-menu-item:hover .mega-menu-arrow {
  transform: translateX(4px);
}

.mega-menu-banner {
  position: relative;
  background: var(--header-blue);
  border-radius: 12px;
  padding: 30px;
  color: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.mega-menu-banner-decoration svg {
  position: absolute;
  width: 240px;
  height: 87px;
  top: -10px;
  right: -10px;
}

.mega-menu-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.mega-menu-banner-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  max-width: 280px;
}

.mega-menu-banner-btn {
  background: var(--bg-white);
  color: rgba(32, 41, 56, 1);
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 125%;
  text-align: center;
  flex: 1;
  white-space: nowrap;
  border-radius: 60px;
  padding: 8px 20px;
  max-width: 105px;
}

.mega-menu-banner-btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-contact {
  background: var(--header-blue);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 018px;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: 60px;
  padding: 12px 30px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.site-branding img {
  max-height: 40px;
  width: 100px;
  object-fit: contain;
}

.hero-section .hero-wrapper {
  position: relative;
  padding: 120px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ellipse-gradient {
  top: 0;
  right: 0;
  position: absolute;
}

.hero-content {
  min-width: 100%;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  margin-top: 20px;
}

.hero-caption {
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-top: 60px;
  max-width: 500px;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 362px;
}

.hero-video video {
  width: 120%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 150px 20px;
}

.video-play {
  position: absolute;
  margin: auto;
  left: 10%;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  background: none;
}

.video-play svg {
  width: 51px;
}

.video-wrap {
  position: relative;
  width: 100%;
}

.video {
  width: 100%;
  display: block;
}

.is-playing svg {
  display: none;
}

.circle-btn {
  position: relative;
  width: 158px;
  height: 158px;
  display: block;
  border-radius: 50%;
  background: var(--header-blue);
  color: #111;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  text-transform: uppercase;
}

.circle-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(-100% - 158px);
  width: 120%;
  height: 120%;
  background: #202938;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: bottom 0.4s ease;
  z-index: 0;
}

.circle-btn span {
  z-index: 999;
  position: relative;
}

.circle-btn:hover {
  color: #fff;
}

.circle-btn:hover::before {
  bottom: -10%;
}

.btn-hero {
  position: absolute;
  bottom: 90px;
  z-index: 99;
  text-align: center;
  left: calc(50% - 78px);
}

.hero-wrapper .arrow {
  display: flex;
  justify-content: flex-end;
  padding-right: 80px;
}

.hero-wrapper .arrow svg {
  width: 178px;
  margin-top: 20px;
}

@keyframes marqueeScrolling {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
    /* сдвигаем на половину, т.к. дублируем track */
  }
}

@keyframes marqueeScrolling {
  from {
    transform: translat3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-100% - var(--marquee-gap)), 0, 0);
  }
}

.marquee-container {
  background: rgba(32, 41, 56, 1);
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marquee {
  --marquee-gap: 20px;
  --marquee-direction: normal;
  --marquee-speed: 90s;
  display: flex;
  overflow: hidden;
  gap: var(--marquee-gap);
  max-width: 1200px;
}

.marquee img {
  height: 44px;
}

.marquee-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 30px;
  flex-shrink: 0;
  gap: var(--marquee-gap);
  min-width: 100%;
  white-space: nowrap;
  animation: var(--marquee-speed) linear infinite var(--marquee-direction)
    running marqueeScrolling;
  list-style-type: none;
}

.marquee-content li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 60px;
}

/*.marquee-content li svg {*/
/*  margin-left: 60px;*/
/*}*/

.marquee-content.text {
  gap: 60px;
}

.team {
  display: flex;
  flex-direction: column;
  padding: 150px 0 0 0;
  position: relative;
}

.team-bg {
  position: absolute;
  top: -30%;
  z-index: -1;
  left: 0;
}

.team__title {
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
}

.team__title-text {
  display: flex;
  align-items: center;
  gap: 26px;
}
.our-projects_service .team__title {
  display: block;
}

.our-projects_service .team__title-text {
  justify-content: center;
}
.team__title-text:after {
  content: "";
  width: 90px;
  display: block;
  height: 43px;
  border-radius: 48px;
  background: rgba(59, 99, 246, 1);
}

.team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__subtitle {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

.team__list {
  margin-top: 100px;
  display: flex;
  max-width: 100%;
}

.team__list .team__item {
  position: relative;
  overflow: hidden;
}

.team__list .team__item .line {
  content: "";
  right: 0;
  bottom: 0;
  width: 2px;
  transform: scaleX(0.5);
  background: #2c313a;
  height: 440px;
  display: block;
  position: absolute;
}

.team__list .team__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 480px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.team__list .team__item:nth-child(1) {
  max-width: 324px;
  min-width: 324px;
  overflow: visible;
  z-index: -1;
}

.team__list .team__item:nth-child(1) .team__photo {
  width: 345px;
  height: 345px;
}

.team__list .team__item:nth-child(2) {
  padding-top: 18px;
  max-width: 177px;
  min-width: 177px;
}

.team__list .team__item:nth-child(2) .team__photo {
  width: 250px;
  height: 250px;
}

.team__list .team__item:nth-child(3) {
  max-width: 175px;
  min-width: 175px;
  padding-top: 85px;
}

.team__list .team__item:nth-child(3) .team__photo {
  width: 190px;
  height: 190px;
}

.team__list .team__item:nth-child(4) {
  max-width: 175px;
  min-width: 175px;
  padding-top: 36px;
  left: -1px;
}

.team__list .team__item:nth-child(5) {
  left: -2px;
  z-index: -1;
}

.team__list .team__item:nth-child(4) .team__photo {
  width: 218px;
  height: 218px;
}

.team__list .team__item:nth-child(5) {
  max-width: 175px;
  min-width: 175px;
  padding-top: 120px;
}

.team__list .team__item:nth-child(5) .team__photo {
  width: 192px;
  height: 192px;
}

.team__list .team__item:nth-child(6) {
  max-width: 175px;
  min-width: 175px;
  padding-top: 90px;
  overflow: visible;
  z-index: -1;
}

.team__list .team__item:nth-child(6) .team__photo {
  width: 180px;
  height: 180px;
}

.team__list .team__item:last-child:after {
  display: none;
}

.team__list .team__item .team__name {
  margin-top: 30px;
}

.team__list .team__item:first-child .team__name {
  margin-top: 26px;
}

.team__list .team__item:nth-child(4) {
  z-index: 999;
}

.team__list .team__item:nth-child(5) {
  z-index: 999;
}

.team__list .team__item:nth-child(6) {
  z-index: -1;
  left: -3px;
}

.team__list .team__item:last-child .line {
  display: none;
}

/*.team__list .team__item:after {*/
/*	left: none;*/
/*	right: 0;*/
/*}*/

.team__photo {
  border-radius: 50%;
  object-fit: cover;
}

/*.team__list .team__item:nth-child(2):before {*/
/*    content: "";*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 1px;*/
/*    background: #2C313A;*/
/*    height: 440px;*/
/*    display: block;*/
/*    position: absolute;*/
/*}*/

.team__name {
  width: 100%;
  font-weight: 600;
  font-size: 22.78px;
  line-height: 140%;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
}

.team__position {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
  width: 100%;
  padding: 0 12px;
}

.cta-section {
  position: relative;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 133px 0 149px;
}

.cta-section .section-title-center {
  max-width: 900px;
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
  white-space: break-spaces;
  position: relative;
}

.button {
  text-decoration: none;
  background: rgba(32, 41, 56, 1);
  padding: 12px 30px;
  color: white;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  border: 1px solid rgba(32, 41, 56, 1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-100% - 158px);
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: bottom 0.4s ease;
  z-index: 0;
  transform: scale(1.6);
}

/*.button.btn-light {*/
/*    background: ;*/
/*}*/

.button * {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.button:hover::before {
  bottom: -10%;
}

.button:hover {
  color: rgba(44, 49, 58, 1);
}

.button.btn-border {
  background: none;
  border-color: white;
}

.button.btn-border.light {
  border-color: #202938;
  color: #202938;
  background: #fff;
}
.button.btn-border.light:hover {
  color: #fff;
}
.button.btn-border.light:hover:before {
  background: rgba(32, 41, 56, 1);
}

.button.btn-border.light:hover * {
  color: white;
}

.button.btn-light {
  background: white;
  color: #2c313a;
}

.button.btn-primary {
  background: var(--header-blue);
  border-color: var(--header-blue);
}

.button.btn-light:hover::before {
  background: rgba(32, 41, 56, 1);
}

.button.btn-light:hover::before {
  background: rgba(32, 41, 56, 1);
}

.button.btn-primary:hover {
  border-color: #2c313a;
}

.button.btn-primary:hover * {
  color: #2c313a;
}

.button.btn-light:hover * {
  color: #fff;
}

.button.btn-border:hover {
  color: #2c313a;
  border-color: #2c313a;
}

.button.btn-border:hover * {
  color: #2c313a;
}

.background-img {
  position: absolute;
  top: 0;
  z-index: -1;
  width: calc(100vw + 40px);
  object-fit: cover;
  height: 480px;
}

.title-shadow {
  position: absolute;
  z-index: 0;
}

.team-container {
  position: relative;
}

.team-container .gradient {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.team-photo {
  max-width: 1070px;
  margin: 0 auto;
}

.team-photo .container {
  display: flex;
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 628px 1fr;
  max-width: 100%;
  min-width: 100%;
}

.team-photo .container .team-photo-wrapper {
}

.team-photo .container img {
  max-width: 100%;
}

.team-photo .container .team-photo-wrapper .statistic {
  padding: 0 164px 0 94px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.team-photo .container .team-photo-wrapper .statistic .count {
  font-weight: 500;
  font-size: 45px;
  line-height: 140%;
  letter-spacing: 2%;
  text-transform: uppercase;
}

.team-photo .container .team-photo-wrapper .statistic .count span {
  font-weight: 400;
  font-family: sans-serif;
}

.team-photo .container .team-photo-wrapper .statistic .description {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 0;
}

.team-photo .team-photo-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.team-photo .team-photo-content img.logo-banner {
  position: absolute;
  right: -75px;
  bottom: 136px;
  border: 0;
  min-width: auto;
  width: 150px;
  height: 140px;
}

.team-photo-wrapper img {
  width: 628px;
  height: 362px;
  border: 1px solid rgba(44, 49, 58, 1);
  border-top-left-radius: 100px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 20px;
  object-fit: cover;
}

.team-photo .team-photo-content img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  min-width: 504px;
  max-height: 276px;
  z-index: -1;
  right: 0;
  border: 1px solid rgba(44, 49, 58, 1);
  border-top-left-radius: 80px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 20px;
}

.team-photo .team-photo-content .description {
  padding: 36px 0 36px 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

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

.team-photo .arrow-link {
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.arrow-link svg {
  width: 14px;
}

.clients-testimonials {
  padding: 200px 0 100px;
  position: relative;
}

.clients-testimonials .gradient {
  position: absolute;
  left: 0;
  bottom: 200px;
  z-index: -1;
}

.clients-testimonials .footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.clients-testimonials .footer-info p {
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
}

.clients-testimonials .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.highlight {
  color: #0066ff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 20px;
  border-radius: 10px;
  background: white;
  border: 1px solid #202938;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-card.div-1 .bg-wave {
  position: absolute;
  top: 0;
  z-index: 0;
  right: 0;
}

.big.testimonial-card .review {
  font-size: 22px;
}

.testimonial-card .review {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

.testimonial-card.big {
  min-height: 410px;
}

.testimonial-card.div-1 {
  grid-row: span 2 / span 2;
}

.testimonial-card.div-4 {
  grid-column-start: 2;
}

.testimonial-card.div-5 {
  grid-column-start: 1;
  grid-row-start: 3;
}

.testimonial-card.div-6 {
  grid-column-start: 2;
  grid-row-start: 3;
}

.testimonial-card.div-7 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 2;
}

.testimonial-card .logo {
  max-height: 26px;
  align-self: flex-end;
}

.testimonial-card .photo {
  height: 60px;
  width: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.testimonial-card.big .photo {
  height: 100px;
  width: 100px;
}

.testimonial-card.blue {
  background: #3b63f6;
  color: #fff;
}

.testimonial-card.dark {
  background: #202938;
  color: #fff;
}

.testimonial-card.dark .logo {
  width: 173px;
  height: 40px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.testimonial-card .founder-info {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

.testimonial-card .founder-info .info.right {
  text-align: right;
  flex: 1;
  white-space: nowrap;
}

.testimonial-card.blue .logo {
  display: block;
  margin-bottom: 20px;
  max-height: none;
  width: 173px;
  height: 40px;
  object-fit: contain;
}

.testimonial-card .founder-info .info {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  gap: 4px;
}

.testimonial-card .founder-info strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}

.testimonial-card .founder-info span {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
}

.testimonial-card.blue .logo {
}

.our-projects {
  padding: 100px 0;
  background: #f8f8f8;
}

.our-projects .subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.our-projects .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel {
  display: flex;
  transition: grid-template-columns 0.4s ease;
  flex-wrap: nowrap;
  gap: 26px;
  margin: 60px 0;
}

.carousel__item {
  height: 514px;
  overflow: hidden;
  padding: 20px 20px 26px 20px;
  border-radius: 20px;
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1;
  color: #fff;
  transition: all 0.8s ease;
  text-decoration: none;

  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  transition: flex-grow 0.8s ease;
}

.carousel__item:hover {
  flex: 2;
  /*width: 400px;*/
  /*max-width: 400px;*/
}

.carousel__item *,
.carousel__item:before {
  transition: all 0.8s;
}

.carousel__item .link-arow {
  display: none;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
}

.carousel__item .caption .label {
  margin-right: 60px;
}

.carousel__item .link-arow svg {
  width: 100%;
}

.carousel__item:hover .link-arow {
  display: block;
}

.carousel__item .caption .label {
  transition: all 0.3s;
}

.new-client-timeline .steps .item input {
  display: none;
}

.carousel__item:hover .caption .label {
  mask-image: none;
}

.carousel__item:hover .background-img {
  opacity: 0;
}

.carousel__item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  background: linear-gradient(180deg, rgba(59, 99, 246, 0) 0%, #3b63f6 100%);
}

.carousel__item:hover:before {
  opacity: 1;
}

.carousel__item .background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.carousel__item > *:not(.background-img) {
  position: relative;
  z-index: 2;
}

.carousel__item .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel__item .photo.photo-mobile {
  display: none;
}

.carousel__item .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.carousel__item .content .logo {
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #202938;
  border-radius: 10px;
  padding: 4px 10px;
}

.carousel__item .content .logo img {
  width: 100px;
  display: block;
  object-fit: contain;
  height: 32px;
}

.carousel__item .caption {
  color: #fff;
  max-width: 100%;
  width: 100%;
}

.carousel__item .caption .percent {
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  text-transform: uppercase;
}

.carousel__item .caption .label {
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  white-space: nowrap;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 80%,
    transparent 100%
  );
}

.custom__title {
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.solutions {
  padding: 200px 0 100px;
}

.solutions .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.solutions .container .custom__title {
  max-width: 749px;
  margin-bottom: 60px;
}

.solutions .grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.solutions .grid:first-child {
  margin-top: 0;
}

.solutions .grid__item {
  flex: 1;
  background: #3b63f6;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  flex: 1;
  width: 100%;
}
.solutions .grid__item:nth-child(3) {
  overflow: hidden;
}

.solutions .grid__item.bordered {
  border-bottom-left-radius: 150px;
}

.solutions .grid__item .custom-link {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #2c313a;
  border: 1px solid #2c313a;
  max-width: 100px;
  width: 100px;
  max-height: 100px;
}

.solutions .grid__item .custom-link * {
  transition: all 0.3s;
}

.solutions .grid__item .custom-link:hover * {
  color: #fff;
  z-index: 99;
}

.solutions .grid__item:nth-child(1) .image {
  transform: scale(1.1);
  bottom: -40px;
}

.solutions .grid__item .image {
  position: absolute;
  bottom: -50px;
  right: 10px;
  width: 140px;
}

.solutions .grid__item.performance .image {
  bottom: 0;
  right: 0;
  width: 294px;
}

.solutions .grid__item.analytics .image {
  top: 50px;
  right: 0;
  width: 180px;
}

.solutions .grid__item.analytics {
  border-top-right-radius: 150px;
  border: 1px solid #3b63f6;
  overflow: hidden;
}

.solutions .grid__item.analytics .row {
  display: flex;
  gap: 100px;
  align-items: center;
}

.solutions .grid__item.analytics .row .left {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  max-width: 355px;
}

.solutions .grid__item .line {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 324px;
}

.solutions .grid__item.analytics .row .links {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 445px;
  margin: 0;
}

.solutions .grid__item .button {
  padding: 10px 20px;
  font-weight: 500;
}

.solutions .grid__item.analytics .row .links a {
  width: auto;
}

.solutions .grid__item.bordered .social {
  justify-content: flex-end;
}

.solutions .grid__item .title {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 10px;
  white-space: nowrap;
}

.solutions .grid__item .subtitle {
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 30px;
}

.solutions .grid__item .subtitle {
  text-align: left;
}

.solutions .social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.solutions .grid__wrapper {
  position: relative;
  width: 100%;
}

.solutions .grid__wrapper:before {
  content: "";
  width: 100%;
  height: 528px;
  position: absolute;
  left: 0;
  transform: scale(1.05);
  top: calc(50% - 234px);
  border: 1px solid #202938;
  border-radius: 40px;
}

.solutions .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
}

.solutions .social a img {
  height: 34px;
  width: 34px;
  object-fit: contain;
}

.button span {
  transition: 0.4s;
}

.solutions .grid__item .links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 10px;
}

.subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.our-advantages {
  padding: 100px 0;
  position: relative;
}

.new-client-timeline {
  margin-bottom: 100px;
}

.our-advantages .background-img {
  z-index: 0;
  top: 500px;
}

.our-advantages .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.our-advantages .container .custom__title {
  max-width: 738px;
  margin-bottom: 20px;
}

.our-advantages .content-grid {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  margin-top: 60px;
}

.our-advantages .content-grid .col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 30px;
}

.our-advantages .content-grid .col .item img {
  max-width: 100%;
}

.our-advantages .content-grid .col .item {
  padding: 32px;
  border: 1px solid #202938;
  border-radius: 20px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.our-advantages .content-grid .col.left .item:first-child {
  height: 320px;
}

.our-advantages .content-grid .col.left {
  width: 512px;
}

.our-advantages .content-grid .col.left .item:first-child .subtitle {
  max-width: 400px;
}

.our-advantages .content-grid .col.left .item:last-child .img {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 500px;
  bottom: 0;
  left: inherit;
}

.our-advantages .content-grid .col.left .item:last-child .img.mobile {
    display: none;
}

.our-advantages .content-grid .col.right .item:last-child svg {
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  width: 100%;
}

.our-advantages .content-grid .col.right .item:last-child {
  padding-top: 238px;
}

.our-advantages .content-grid .col.left .item:last-child svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.our-advantages .content-grid .col.left .item:last-child .img {
  z-index: 9;
  left: calc(50% - 229px);
  bottom: 70px;
  width: 458px;
}

.our-advantages .content-grid .col.left .item:last-child {
  padding-bottom: 340px;
}

.our-advantages .content-grid .col.right .item:first-child .subtitle {
  max-width: 530px;
}

.our-advantages .content-grid .col.right .item:first-child .img {
  position: absolute;
  left: 0;
  top: 30px;
  height: 216px;
  width: 100%;
  object-fit: cover;
}

.our-advantages .content-grid .col.right .item:first-child {
  padding-top: 300px;
}

.our-advantages .content-grid .col .item .partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #3b63f6;
  padding: 28px 47px;
  gap: 8px;
  border-top-right-radius: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.our-advantages .content-grid .col .item .partners a {
  width: 142px;
  height: 48px;
}

.our-advantages .content-grid .col .item .partners img {
  width: 100%;
}

.our-advantages .content-grid .col .item .title {
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 8px;
  letter-spacing: 0%;
}

.our-advantages .content-grid .col .item .subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

.growth-principle {
  padding: 254px 0 200px;
  position: relative;
}

.growth-principle .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.growth-principle .custom__title {
  max-width: 585px;
  margin-bottom: 20px;
}

.growth-principle .background-text {
  font-weight: 600;
  font-size: 350px;
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: -1;
  color: #3b63f680;
}

.growth-principle .subtitle {
  max-width: 650px;
}

.growth-principle .ellipce {
  text-align: center;
  position: absolute;
  top: -150px;
  left: calc(50% - 549px);
  width: 1098px;
  text-align: center;
  z-index: 0;
}

.growth-principle .subtitle, .growth-principle .custom__title {
    position: relative;
    z-index: 2;
}

.growth-principle .ellipce svg {
  width: 100%;
}

.gradient-wrapper {
  background: linear-gradient(0deg, rgba(248, 248, 248, 0) 0%, #f8f8f8 100%);
}

.new-client-timeline .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.new-client-timeline .custom__title {
  margin-bottom: 20px;
}

.new-client-timeline .subtitle {
  max-width: 800px;
}

.new-client-timeline .steps {
  margin: 76px 0 60px;
  max-width: 1094px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-height: 1070px;
  overflow: scroll;
  padding-top: 20px;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.new-client-timeline .steps::-webkit-scrollbar {
  display: none;
}

.new-client-timeline .steps .item {
  border-radius: 20px;
  border: 1px solid #2c313a;
  display: flex;
  position: relative;
  gap: 44px;
  overflow: hidden;
  padding: 20px 48px;
  align-items: center;
  min-height: 140px;
}

.new-client-timeline .steps .item-container {
  position: relative;
}

.new-client-timeline .steps .item .bg {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
}

.new-client-timeline .steps .item-container:nth-child(1) .b1 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(2) .b2 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(3) .b3 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(4) .b4 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(5) .b5 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(6) .b6 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(7) .b3 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(8) .b4 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(9) .b5 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(10) .b6 {
  display: block;
}

.new-client-timeline .steps .item-container:nth-child(10) .b6,
.new-client-timeline .steps .item-container:nth-child(6) .b6 {
  width: 130px;
}

/*.new-client-timeline .steps .item:before {*/
/*  content: "";*/
/*  background: #fff;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  border-radius: 20px;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  z-index: 1;*/
/*}*/

.new-client-timeline .steps .item * {
  z-index: 99;
}

.new-client-timeline .steps .item-container .chip {
  position: absolute;
  top: -16px;
  left: 48px;
  border-radius: 50px;
  background: #3b63f6;
  padding: 6px 28px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  z-index: 999;
}

.new-client-timeline .steps .bg {
  position: absolute;
  height: 100%;
  right: -150px;
  z-index: 2;
  width: 290px;
}

.new-client-timeline .steps .item .head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  min-width: 428px;
}

.new-client-timeline .steps .item .head .title {
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
}

.new-client-timeline .steps .item .head .subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
}

.new-client-timeline .steps .item .description,
.new-client-timeline .steps .item .see-more {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  max-width: 450px;
}

.new-client-timeline .steps .item .description {
  max-width: 400px;
}

.new-client-timeline .steps .item .description .see-more {
  display: none;
}

.new-client-timeline .label {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 20px;
}

.new-client-timeline .link-underline {
  text-transform: uppercase;
  font-weight: 700;
}

.marquee-two .marquee-content {
  gap: 60px;
}

.approach {
  padding: 200px 0;
}

.approach .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.approach .container .title {
  max-width: 730px;
  margin-bottom: 20px;
}

.approach .container .subtitle {
  max-width: 710px;
}

.approach .container .links {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

.approach .container .links:before {
  content: "";
  width: 100%;
  height: calc(100% - 115px);
  position: absolute;
  top: 43px;
  left: 0;
  border: 1px solid #1f2835;
  border-radius: 40px;
}

.approach .container .links .item {
  position: relative;
  text-decoration: none;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-areas: "stack";
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.approach .container .links .item .side {
  grid-area: stack;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.front {
  transform: rotateY(0);
}

.approach .container .links .item .flip-card-inner {
  grid-template-areas: "stack";
  display: grid;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.approach .container .links .item .side {
  grid-area: stack;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 12px;
}

.approach .container .links .item .back.side {
  transform: rotateY(180deg);
  border-radius: 22px;
  border: 1px solid #202938;
  background: #fff;
  color: #202938;
  transform: rotateY(180deg);
  text-align: left;
  padding: 57px 60px 57px 30px;
  font-weight: 500;
}

.approach .container .links .item {
  max-height: 180px;
}

.approach .container .links .item .back.side svg {
  position: absolute;
  right: 16px;
  width: 17px;
}

.approach .container .links .item:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.approach .container .links .item .bg1,
.approach .container .links .item .bg2 {
  position: absolute;
  display: none;
}

.approach .container .links .item:nth-child(1) .bg1 {
  display: block;
  top: 0;
  left: 0;
}

.approach .container .links .item:nth-child(3) .bg2 {
  display: block;
  bottom: -10px;
  left: 0;
}

.approach .container .links .item .front,
.approach .container .links .item .back {
  max-width: 360px;
  width: 100%;
  min-width: 360px;
  background: #202938;
  padding: 36px 46px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--Dark-blue, #202938);

  overflow: hidden;
  inset: 0;
  backface-visibility: hidden;

  transform-style: preserve-3d;
  will-change: transform;

  transition: box-shadow 0.35s ease;
}

.approach .custom__title {
  margin-bottom: 20px;
  max-width: 730px;
}

.approach .container .links .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--lx, 50%) var(--ly, 50%),
    rgba(255, 255, 255, 0.22),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.approach .container .links .item:hover::before {
  opacity: 1;
}

.approach .container .links .item .arrow {
  position: absolute;
  top: calc(50% - 5.5px);
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach .container .links .item .caption {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  padding-bottom: 12px;
  text-align: center;
}

.approach .container .links .item .title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
  white-space: break-spaces;
}

.approach .container .links .item .subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

.faq-container {
  position: relative;
  padding-bottom: 200px;
}

.faq-container .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-container .gradient {
  position: absolute;
  left: 0;
  top: 0;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 782px;
  margin-top: 60px;
}

.faqs .faq {
  border: 1px solid #202938;
  padding: 24px 125px 24px 60px;
  border-radius: 20px 70px 20px 20px;
  gap: 40px;
  position: relative;
  transition: all 0.3s;
  background: #fff;
}

.faqs .faq .arrow {
  position: absolute;
  right: 60px;
  top: calc(50% - 12px);
}

.faqs .faq.active {
  background: #202938;
  color: #fff;
}

.faqs .faq .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  letter-spacing: 0%;
}

.faqs .faq .head svg {
  transition: transform 0.25s ease-in;
}

.faqs .faq .pencil {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 999;
  width: 110px;
}

.faqs .faq.active .head .pencil svg {
  transform: none;
}

.faqs .faq.active .pencil {
  opacity: 1;
}

.faqs .faq .content {
  height: 0px;
  overflow-y: hidden;
  transition: height 0.25s ease-in;
  font-weight: 500;
  font-size: 18px;

  line-height: 120%;
}

.faqs .faq.active .content {
  padding-top: 20px;
}

.faqs .faq.active .head svg {
  transform: rotate(180deg);
}

.viden-numbers {
  position: relative;
}

.viden-numbers .gradient {
  position: absolute;
  right: 0;
  top: -200px;
}

.viden-numbers .pencil {
  position: absolute;
  left: 0;
  bottom: -400px;
}

.viden-numbers .custom__title {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
    align-items: flex-start;
}

.viden-numbers .container-block {
  overflow: hidden;
  padding-bottom: 210px;
  position: relative;
}

.viden-numbers .container .content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.viden-numbers .container .numbers {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px 30px;
  justify-content: center;
}

.viden-numbers .container .numbers .item {
  background: #3b63f6;
  padding: 30px 38px;
  border-radius: 84px;
  color: white;
  display: flex;
  align-items: center;
  gap: 18px;
}

.viden-numbers .container .numbers .item .number {
  font-weight: 500;
  font-size: 48px;
  font-family: Montserrat;
  line-height: 115%;
}

.viden-numbers .container .numbers .item .description {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 0;
}

.viden-numbers .container .numbers .item:nth-child(1) .description {
  max-width: 170px;
}

.viden-numbers .container .numbers .item:nth-child(2) .description {
  max-width: 162px;
}

.viden-numbers .container .numbers .item:nth-child(3) .description {
  max-width: 135px;
}

.viden-numbers .container .numbers .item:nth-child(3) {
  margin-left: 100px;
}

.viden-numbers .container .numbers .item:nth-child(4) .description {
  max-width: 182px;
}

.viden-numbers .container .numbers .item:nth-child(5) .description {
  max-width: 230px;
}

.viden-numbers .container .numbers .item:nth-child(5) {
  margin-left: 100px;
}

.awards {
  padding: 50px 0;
  background: #f3f3f3;
}

.awards .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.awards .container .row {
  display: flex;
  align-items: center;
  max-width: 940px;
  width: 100%;
}

.awards .container .row:last-child {
  gap: 26px;
}

.awards .container .row:last-child .item img {
  width: 100%;
}

.awards .container .row .item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.awards .container .row .item img {
  max-width: 100%;
}

.awards .container .row:first-child {
  gap: 34px;
  margin-bottom: 26px;
}

.awards .container .row:last-child {
  gap: 26px;
}

.last-banner {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
}

.last-banner .button {
  border-color: #3b63f6;
}

.last-banner .pencil {
  position: absolute;
  right: 0;
  bottom: -500px;
}

.last-banner .title {
  font-weight: 600;
  font-size: 45px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.last-banner .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.last-banner .description {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  width: 426px;
}

.last-banner .container {
  padding: 36px 106px;
  display: flex;
  align-items: center;
  gap: 240px;
  color: #fff;
  background: #3b63f6;
  border-radius: 20px;
}

.site-footer {
  background: #202938;
  color: #fff;
  padding-top: 122px;
}

.site-footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer .footer-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0 21px;
}

.site-footer .line {
  background: linear-gradient(90deg, #ffffff 0%, #2660ce 74.32%);
  width: 100%;
  height: 1px;
}

.footer-widget {
  flex: 1;
  width: 100%;
}

.site-footer a {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #fff;
  transition: all 0.3s;
}

.footer-widget a:hover {
  color: #3b63f6;
}

.footer-widget h3 {
  padding: 12px 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.site-footer .footer-menu.left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 18px;
  line-height: 120%;
}

.site-footer .description {
  font-size: 18px;
  line-height: 120%;
  padding: 12px 0;
  margin-top: 26px;
  margin-bottom: 20px;
}

.site-footer .menu {
  display: grid;
  align-items: center;
  grid-template-columns: 24px 24px 24px 24px 24px;
  gap: 16px;
}

.site-footer .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .menu a svg {
  height: 24px;
}

.site-footer .phone {
  margin-top: 20px;
}

.site-footer .container {
  padding: 0;
}

.footer-newsletter .newsletter-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 48px 0 78px;
}

.footer-newsletter .newsletter-form input {
  outline: none;
  border: 1px solid white;
  background: none;
  color: white;
  width: 345px;
  padding: 12px 30px;
  border-radius: 60px 0 0 60px;
  font-family: Urbanist;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.footer-newsletter .newsletter-form button {
  padding: 11px 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  width: 98px;
  text-align: center;
  height: 48px;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  color: white;
  border: 0;
  outline: none;
  box-shadow: none;
  background: #3b63f6;
  transition: all 0.3s;
  cursor: pointer;
}

.footer-newsletter .newsletter-form button:hover {
  background: white;
  color: #3b63f6;
}

.footer-newsletter .newsletter-form input::placeholder {
  color: white;
  font-family: Urbanist;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.footer-newsletter .newsletter-form .label {
  margin-right: 25px;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}

.footer-newsletter .newsletter-form .row {
  display: flex;
}
.parallax {
  will-change: transform;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
}

.footer-bottom svg:last-child {
  max-width: 480px;
}

.service-banner {
  position: relative;
  overflow: hidden;
}

.service-banner .image img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: calc(100% - 82px);
  top: 84px;
  width: auto;
    height: 774px;
    object-fit: contain;
     object-position: right bottom;
        z-index: -1;
}

.service-banner .container .content {
  max-width: 820px;
  padding: 100px 0;
}

.service-banner .hero-subtitle {
  width: 568px;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 30px;
}

.service-banner .arrow {
  transform: rotate(25deg);
}

.service-banner .caption {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  margin-top: 24px;
  font-weight: 400;
  max-width: 410px;
  line-height: 130%;
  margin-left: 70px;
}

.service-banner .button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.service-banner .button-container .btn-hero {
  position: relative;
  bottom: auto;
  left: 20px;
}

.cta-section .background-img {
  object-fit: fill;
  transform: scale(1.2);
}

.marquee-wrapper .marquee {
  overflow: hidden;
  min-width: 100%;
  background: #202938;
  padding: 27px 0;
}

.marquee-wrapper .marquee .marquee__track, .marquee__track2 {
  display: flex;
  will-change: transform;
  gap: 60px;
}

.marquee-wrapper .marquee .container {
    overflow: hidden;
}

.marquee-wrapper .marquee .item {
  white-space: nowrap;
  color: #fff;
   flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  gap: 60px;
}

.company-overview {
  position: relative;
  padding: 150px 0 200px;
}

.company-overview .background-img {
  position: absolute;
  left: 0;
  min-width: 100%;
  top: 150px;
}

.company-overview .container {
  display: flex;
  gap: 50px;
  width: 720px;
  position: relative;
}

.company-overview .container:before {
  content: "";
  position: absolute;
  border-radius: 688.093px;
  background: #fff;
  width: 688.093px;
  height: 349.047px;
  z-index: -1;
  filter: blur(90px);
  top: 119px;
  left: -100px;
}

.company-overview .container:after {
  content: "";
  position: absolute;
  border-radius: 688.093px;
  background: #fff;
  width: 688.093px;
  filter: blur(90px);
  height: 349.047px;
  z-index: -1;
  /* bottom: 100px; */
  left: 110px;
}

.company-overview .images {
  position: relative;
}

.company-overview .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-overview .images img {
  position: absolute;
}

.company-overview .images img:first-child {
  width: 278px;
  height: 220px;
  left: 0;
  bottom: 0;
  object-fit: contain;
}

.company-overview .images img:last-child {
  width: 300px;
  object-fit: contain;
  height: 438px;
  left: 128px;
  bottom: 47px;
  top: -30px;
  z-index: -1;
}

.company-overview .content .description {
  width: 670px;
}

.company-overview .title {
  width: 700px;
}

.caption {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
}

h2.title {
  font-size: 35px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.description {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.our-advertising-services .container {
  display: flex;
  align-items: flex-start;
  gap: 210px;
}

.our-advertising-services {
  margin-bottom: 60px;
}
.our-advertising-services .container > div:first-child {
  min-width: 460px;
}

.our-advertising-services .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

.our-advertising-services .custom__title {
  text-align: left;
}

.services-blocks .container {
  display: flex;
}

.services-blocks .container .content {
  max-width: 550px;
  padding: 86px 0;
  height: auto;
}

.services-blocks .container .content .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-blocks .container .content .image-container img {
  height: 100%;
  width: 428px;
}

.services-blocks .container .content .image-container svg {
  position: absolute;
}

.services-blocks .banner-block .container {
  display: grid;
  grid-template-columns: 1fr 428px;
  gap: 222px;
  align-items: center;
  min-height: 380px;
}
.services-blocks .banner-block {
  position: relative;
  transition: all 0.3s;
}
.services-blocks .banner-block:hover {
  background: #3b63f6;
}
.services-blocks .banner-block:hover:before {
    display: none;
}
.services-blocks .banner-block:hover .gradient {
  display: none;
}

.services-blocks .banner-block:hover .title,
.services-blocks .banner-block:hover .description {
  color: #fff;
}
.services-blocks .banner-block:hover .container .image-container .gradient,
.services-blocks .banner-block .container .image-container .line {
  display: none;
}

.services-blocks .banner-block {
    overflow: hidden;
}

.services-blocks .banner-block:last-child .container .image-container .line {
  display: block;
  position: absolute;
  top: 150px;
  z-index: -1;
  left: -120px;
}
.services-blocks .banner-block:hover:before {
  background: none;
}
.services-blocks .banner-block:before {
  content: "";
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #202938;
  background: linear-gradient(180deg, #fff 5.04%, rgba(255, 255, 255, 0) 100%);
  z-index: 9;
}

.services-blocks .banner-block:last-child {
    border-bottom: 1px solid #202938;
}

.services-blocks .banner-block .container .image-container img,
.services-blocks .banner-block .container .image-container svg {
  position: absolute;
}

.services-blocks .banner-block .container .image-container {
  position: relative;
  height: 100%;
}

.services-blocks .banner-block .container .image-container img {
  height: 100%;
  width: 100%;
}

.services-blocks .banner-block .container .image-container .gradient {
  width: 100%;
  height: 100%;
  transform: rotate(171.691deg);
  position: absolute;
  top: 0;
  filter: blur(104.32775115966797px);
  background: linear-gradient(
    89deg,
    #80a2ff 48.11%,
    #90f8ff 75.03%,
    #f5f5f7 95.56%
  );
  z-index: -1;
}

.services-blocks .banner-block .container .image-container  img {
        position: relative;
    z-index: 1;
}
.services-blocks .banner-block .container .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: nowrap;
}

.services-blocks .banner-block .container .head h2.title {
    font-size: 45px;
    font-weight: 600;
    line-height: 140%;
}

.services-blocks .banner-block .container .head  .description {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%; 
    margin-bottom: 0;
}

.services-blocks .banner-block .container .head .circle-btn {
    min-width: 50px;
}

.services-blocks .banner-block .container .links {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
  flex-wrap: wrap;
}

.services-blocks .banner-block:nth-child(2) .container .image-container img {
  width: 505px;
  left: -38px;
}

.services-blocks .banner-block .container .links .button {
  padding: 10px 20px;
}

.circle-btn_outline {
  border: 1px solid #202938;
  color: #202938;
  background: #fff;
}

.circle-btn_outline svg {
  transition: all 0.3s;
}

.circle-btn_outline:hover svg {
  color: #fff;
  z-index: 99;
  fill: #fff;
}

.services-blocks .banner-block .container .description {
  max-width: 460px;
}

.services-blocks .banner-block .container .head .circle-btn_outline {
  width: 50px;
  height: 50px;
}
.circle-btn_outline span {
  color: #202938;
}

.custom-slider .custom-slider {
  position: relative;
}

.custom-slider .slider-controls {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 60px;
}

.slider-controls .circle-btn_outline {
  width: 50px;
  height: 50px;
}

.custom-slider .splide__slide {
  display: flex;
  max-width: 580px;
  width: 580px;
  height: 330px;
  padding: 30px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px 70px 20px 20px;
  border: 1px solid #3b63f6;
  color: #fff;
  position: relative;
  background: #3b63f6;
  overflow: hidden;
  border: 1px solid #3b63f6;
}

.custom-slider .splide__slide svg {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-slider .splide__slide .logo {
  height: 30px;
  width: 130px;
  display: flex;
  align-items: center;
}

.custom-slider .splide__slide .descripton {
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
}

.custom-slider .splide__slide .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-slider .splide__slide .row {
  display: flex;
  gap: 30px;
}
.custom-slider .splide__slide .logo img {
  height: 100%;
}

.custom-slider .splide__slide .photo {
  width: 64px;
  border-radius: 4px;
  overflow: hidden;
  height: 64px;
}

.custom-slider .splide__slide .name {
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 8px;
}

.custom-slider .splide__slide .position {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.custom-slider .splide__slide .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-carousel .decore {
  position: absolute;
  top: -20px;
  left: 0;
}

.reviews-carousel .decore svg {
  width: 126px;
}

.reviews-carousel .container {
  position: relative;
}

.custom-slider .splide__track {
  overflow: visible;
}

.reviews-carousel {
  padding: 200px 0 100px;
  position: relative;
}

.reviews-carousel .custom-slider {
  padding: 80px 60px;
}

.we-specialize-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 100px 0;
}

.we-specialize-in .wrapper {
  margin-top: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.we-specialize-in .wrapper .banner {
  width: 1201px;
  height: 280px;
  border-radius: 20px 20px 20px 100px;
  background: #3b63f6;
  overflow: hidden;
  color: #fff;
  position: relative;
  padding: 42px 150px 42px 580px;
}

.paid-banner .container .image {
    width: 100%;
}

.we-specialize-in .wrapper .banner img,
.we-specialize-in .wrapper .screen {
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  z-index: 0;
}

.we-specialize-in .wrapper:before {
  content: "";
  width: 1260px;
  height: calc(100% - 150px);
  position: absolute;
  top: 128px;
  left: -30px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #202938;
  background: #fff;
}

.we-specialize-in .wrapper .screen {
  width: 256px;
  left: calc(300px - 128px);
  height: auto;
  z-index: 2;
  top: -34px;
  height: 348px;
  object-fit: contain;
}

.we-specialize-in .wrapper .links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1130px;
  margin-bottom: 72px;
  gap: 40px;
  margin-top: 106px;
}
.we-specialize-in .wrapper .links a {
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}

.we-specialize-in .wrapper .banner .screen {
  height: 348px;
}

.we-specialize-in .wrapper .banner .bg {
  width: auto;
}

.we-specialize-in .wrapper .banner .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 8;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.analytics-services {
  padding: 100px 0;
  position: relative;
}

.analytics-services .container {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.analytics-services .custom__title {
  max-width: 730px;
  margin-bottom: 20px;
}

.analytics-services .blocks {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analytics-services .blocks__item {
  border-radius: 20px;
  border: 1px solid #202938;
  background: #fff;
  padding: 45px 50px;
  overflow: hidden;
  display: flex;
  position: relative;
  gap: 50px;
  align-items: center;
}

.analytics-services .blocks__item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.analytics-services .blocks__item .content .title {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}

.analytics-services .blocks__item .content .description {
  font-size: 18px;
  max-width: 430px;
 
}

.links-accordeon .item  .description  {
        height: 0px;
    overflow: hidden;
    transition: height 0.35s;
}

.links-accordeon .item.is-active  .description  {
    padding-top: 10px;
}

.advanced-analytics-platforms .container .links {
        display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.advanced-analytics-platforms .container .links .item {
    border-radius: 10px;
    border: 1px solid #2C313A;
    background: #FFF;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 9;
}

.advanced-analytics-platforms .container .links .item:not(.last) a {
    width: 50px;
    height: 50px;
    align-self: flex-end;
}

.advanced-analytics-platforms .container .links .item .line {
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
}

.advanced-analytics-platforms .container .links .item .title {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
}

.advanced-analytics-platforms .container .links .item .description {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
} 

.advanced-analytics-platforms .container .links .item.last {
    color: #fff;
    background: #2C313A;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.advanced-analytics-platforms .container .links .item.last  a {
    margin-top: 30px;
}

.advanced-analytics-platforms .container .links .item.last a:hover:before {
    background: #3B63F6;
    border-color: #3B63F6;
}

.advanced-analytics-platforms .container .links .item.last a:hover {
      border-color: #3B63F6;
          background: #3B63F6;
}

.links-accordeon .item .link-underline {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
}

.links-accordeon .item .description {
  will-change: height;
  position: relative;
  font-size: 18px;
 
    font-weight: 500;
    line-height: 120%;
}

.links-accordeon .item  .link-underline {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding-bottom: 12px;
}


.links-accordeon .item.is-active .link-underline svg {
  transform: rotate(180deg);
}

.links-accordeon .link-underline svg {
  transition: transform 0.3s ease;
}

.analytics-services .image-wrapper {
  width: 620px;
  height: 290px;
  border-radius: 10.344px;
  border: 0.8px solid #202938;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.analytics-services .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.analytics-services .blocks__item svg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.analytics-services .custom__title + .description {
  max-width: 700px;
  text-align: center;
  font-size: 22px;
}

.analytics-services .description-bottom {
  max-width: 710px;
  width: 100%;
  font-size: 22px;
  text-align: center;
}

.analytics-services .gradient {
  position: absolute;
  z-index: -1;
}

.analytics-services .gradient.g-1 {
  left: 0;
  top: 400px;
}

.analytics-services .gradient.g-2 {
  right: 0;
  bottom: 400px;
}

.button-container .arrow.mobile {
  display: none;
}

.photo-mobile {
  display: none;
}

.blue-service-banner {
  position: relative;
  padding: 100px 0 200px;
}

.blue-service-banner .line {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: -1;
}

.blue-banner .content:first-child {
  max-width: 374px;
}

.blue-banner .button.btn-border.light {
  border-color: #3b63f6;
  font-size: 20px;
}

.blue-banner .content svg {
  max-width: 365px;
}

.content .description {
  width: 500px;
  margin-bottom: 24px;
}

.blue-banner .content:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blue-banner .content .description {
  text-align: center;
}

.blue-banner .subtitle {
  font-weight: 500;
  line-height: 130%;
  margin: 30px 0 6px;
  text-align: left;
  font-style: italic;
  font-size: 22px;
}

.paid-search .blue-banner .content:first-child {
        max-width: 390px;
}

.blue-banner h2.title {
  font-size: 45px;
}

.blue-service-banner .container .blue-banner {
  padding: 90px 100px;
  background: #3b63f6;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #3b63f6;
  display: flex;
  align-items: center;
  gap: 100px;
  color: #fff;
}

.about-us-service {
  position: relative;
  overflow: hidden;
}

.about-us-service .line {
  position: absolute;
  bottom: -500px;
  right: 0;
}

.about-us-service .custom__title {
  max-width: 650px;
}

.advanced-analytics-platforms {
    background: #F8F8F8;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.advanced-analytics-platforms .head-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
        margin-bottom: 60px;
        gap: 68px;
}

.advanced-analytics-platforms  .background-img {
    z-index: 0;
    top: 260px;
    transform: scale(1.3) rotate(355deg);
}

.advanced-analytics-platforms .head-container  .custom__title {
    max-width: 532px;
    text-align: left;
}

.advanced-analytics-platforms .head-container  .description {
    max-width: 600px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}



.advanced-analytics-platforms.approach .container .links .item .front,
.advanced-analytics-platforms.approach .container .links .item .back {
    border-radius: 10px;
    border: 1px solid #2C313A;
    padding: 30px;
    color: #2C313A;
    background: #FFF;
    max-height: 240px;
    height: 240px;
    text-align: left;
}


.advanced-analytics-platforms.approach .container .links .item .front .front-title {
    font-size: 29px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 10px;
}

.advanced-analytics-platforms.approach .container .links .item .front .content {
    justify-content: space-between;
    height: 100%;
}


.advanced-analytics-platforms.approach .container .links .item .front .front-description {
     font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.advanced-analytics-platforms.approach .container .links:before {
    display: none;
}

.advanced-analytics-platforms.approach .container .links .item .front .arrow-button {
    align-self: flex-end;
}

.advanced-analytics-platforms.approach .container .links .item .front .content {
    display: flex;
    flex-direction: column;
}

.advanced-analytics-platforms.approach .container .links div.item {
    max-height: max-content;
}

.advanced-analytics-platforms.approach .container .links .item .back {
    flex-direction: column;
    background: #2C313A;
    color: #fff;
}

.advanced-analytics-platforms.approach .container .links .item .back  .title {
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    white-space: pre;
    margin: 0;
}

.advanced-analytics-platforms.approach .container .links .item .back  .desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 10px 0 30px;
}
.advanced-analytics-platforms.approach .container .links .item .back  .line {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.advanced-analytics-platforms.approach .container .links .item .back  .line svg {
    width: auto;
    position: static;
}

.advertising-analytics-audits.analytics-services .custom__title {
    max-width: 750px;
}

.advertising-analytics-audits.analytics-services {
    padding: 200px 0 100px;
}

.advertising-analytics-audits.analytics-services .blocks__item svg {
    right: calc(50% - 200px);
}

.advertising-analytics-audits.analytics-services .description-bottom {
    max-width: 800px;
}

 .service-banner .mobile-image {
       display: none;
  }
  
  .new-client-timeline .steps .item .see-more {
      display: none;
  }
  
  .paid-banner .container {
      position: relative;
          display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
  }
  
   .paid-banner .container  .image {
    min-width: 740px;
    position: absolute;
    bottom: 80px;
    right: 0;
    max-width: 740px;
    width: 740px;
  }
  
    .paid-banner .container  .line {
        position: absolute;
        z-index: -1;
        height: 382.348px;
        bottom: 100px;
        right: 0;
        height: 382.348px;
        object-fit: contain;
        transform: scale(2);
        object-position: bottom right;
    }
  
  .paid-banner .container  .hero-title {
          max-width: 850px;
  }
  
  .paid-banner .container  .hero-subtitle {
      font-size: 22px;
      max-width: 550px;
          margin-bottom: 40px;
  }
  
    .paid-banner  {
        position: relative;
    }
  
  .paid-banner .container .partners {
      display: flex;
      gap: 10px;
  }
  
  .paid-banner .gradient {
      position: absolute;
      z-index: -1;
  }
    .paid-banner .gradient svg {
        width: 100%;
    }
  .paid-banner .gradient-1 {
      top: -150px;
      right: 0;
  }
  
   .paid-banner .gradient-2 {
      bottom: 0;
      right: 0;
      width: 1059.355px;
height: 320.362px;
  }
  .paid-banner .container .partners .item {
      width: 145px;
      height: 50px;
      border-radius: 5px;
        border: 1px solid #6E7785;
        color: #fff;
        overflow: hidden;
        background: #FFF;
  }
  
  .paid-banner .ellipse {
      position: absolute;
          z-index: -0;
    bottom: 50px;
  }
  
  .paid-banner .container .partners, 
  .paid-banner .container .hero-subtitle,
  .paid-banner .container .hero-title,
  .paid-banner .hero-rating {
      position: relative;
      z-index: 9;
  }
  
 .paid-search .banner-block .container .image-container img {
    width: 505px;
    left: -38px;
}

.why-paid-search {
    padding: 100px 0;
}

.why-paid-search .container {
    display: flex;
    justify-content: space-between;
}


.paid-search-process {
    padding: 100px 0;
    background: #F8F8F8; 
}

.new-client-timeline .steps .item {
    background: #fff;
}

.paid-search-process.new-client-timeline .steps .item .head {
    min-width: 350px;
}

.paid-search-process.new-client-timeline .steps .item .see-more-conatiner {
    max-width: 500px;
}
section.numbers {
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
}

section.numbers  .line,
section.numbers .gradient {
    position: absolute;
     bottom: 0;
     z-index: -1;
}

section.numbers svg {
    width: 100%;
}


.numbers .bubbles {
    padding-left: 302px;
    display: flex;
    gap:  16px 20px;
    flex-wrap: wrap;
}

.numbers .bubbles .number {
    font-size: 44.272px;
    font-family: "Montserrat", sans-serif;
font-weight: 600;
line-height: 115%;
}

.numbers .bubbles .item {
    padding: 30px 37px;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
      border-radius: 84.205px;
    background: #3B63F6;
}

.numbers .bubbles .item .description {
    max-width: 170px;
    font-size: 22px;

font-weight: 500;
line-height: 120%;
}
section.numbers  .line {
    left: 0;
    width: 600px;
    height: 406px;
}

.paid-search .new-client-timeline {
    margin-bottom: 0;
}

section.numbers .gradient {
    right: 0;
    width: 1059.355px;
height: 320.362px;
}
.why-paid-search .container  .title-wrapper  .custom__title {
    text-align: left;
}

.numbers .bubbles .item:nth-child(3) {
    margin-left: 106px;
}

.numbers .bubbles .item:nth-child(5) {
    margin-left: 289px;
}

.why-paid-search .container .description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-paid-search .container .description p {
    font-size: 18px;
font-weight: 500;
line-height: 120%;
}
.why-paid-search .container  .title-wrapper {
    width: 460px;
}

.why-paid-search .container .description{
    width: 600px;
}
 .paid-search .services-blocks .banner-block:hover {
     background: #fff;
 }
 
  .paid-search .services-blocks .banner-block:hover .title,   .paid-search .services-blocks .banner-block:hover .description {
      color: var(--text-dark);
  }
  
  .paid-search .services-blocks .banner-block:hover .container .image-container .gradient, .paid-search .services-blocks .banner-block .container .image-container .line {
      display: block;
  }
  
  .paid-search .services-blocks .banner-block:before {
      display: none;
  }
  
  .paid-search .services-blocks  {
      overflow: hidden;
  }
  
   .paid-banner .container .partners .item img {
       width: 100%;
       height: 100%;
           object-fit: cover;
   }
   .paid-banner .container  .image img {
       width: 100%;
   }
   
   .paid-banner  .button-container {
       margin-top: 30px;
       display: flex;
   }
   
    .paid-banner  .btn-hero {
       position: relative;
     left: auto;
         margin-top: 30px;
    bottom: auto;
   }
   
.grid-table__row {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
}

.grid-table__row .grid-table__cell:first-child {
    background: #202938;
    color: #fff;
    font-weight: 500;
}

.table-block-wrapper {
    padding: 150px 0 100px;
}

.table-block-wrapper .description {
    max-width: 800px;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    margin: 20px auto 60px;
}

.table-block-wrapper  .custom__title {
    max-width: 974px;
        margin: 0 auto;
}
.grid-table__row--head {
  background: #f7f7f7;
  font-weight: 600;
}

.grid-table__cell {
  padding: 35px;
  position: relative;
  font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
        display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.grid-table__cell:before {
    content: "";
    width: 100%;
    left: 10px;
    bottom: 0;
    height: 1px;
    position: absolute;
    background: #202938;
}


.grid-table__row  .grid-table__cell:first-child:before{
    width: calc(100% - 10px);
    left: 10px;
    
}

.grid-table__row  .grid-table__cell:last-child:before{
    width: calc(100% - 10px);
    right: 10px;
    left: auto;
    
}

.grid-table__row:last-child .grid-table__cell:before {
    display: none;
}


.grid-table__row:not(.grid-table__row--head) .grid-table__cell:after {
    content: "";
    height: 100%;
    bottom: 0;
    right: 0;
    width: 0.5px;
    position: absolute;
    background: #202938;
}

.table-block-wrapper {
    position: relative;
}

.table-block-wrapper .gradient {
    position: absolute;
    bottom: 100px;
    z-index: -1;
}

.table-block-wrapper .gradient_1 {
    left: 0;
}


.table-block-wrapper .gradient_2 {
    right: 0;
}


.grid-table__row:not(.grid-table__row--head):last-child .grid-table__cell:after {
    top: 0;
    height: calc(100% - 10px);
}

.grid-table__row:nth-child(2) .grid-table__cell:after {
    top: 10px;
    height: calc(100% - 10px);
    bottom: 0;
}

.grid-table__row .grid-table__cell:last-child:after {
    display: none;
}

.grid-table__table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #202938;
}

.grid-table__row--head .grid-table__cell {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202938;
    overflow: hidden;
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    position: relative;
}

.grid-table__row--head .grid-table__cell:after {
    content: "";
    height: calc(100%  - 20px);
    top: 10px;
    background: #fff;
    width: 1px;
    position: absolute;
    right: 0;
}

.grid-table__row .grid-table__cell:first-child:before {
    content: "";
    height: 1px;
    left: 10px;
    background: #fff;
    width: calc(100%  - 20px);
    position: absolute;
    bottom: 0;
}

.grid-table__row:last-child .grid-table__cell:first-child:before {
    display: none;
}

.grid-table__row--head .grid-table__cell:last-child:after {
    display: none;
}

.grid-table__row--head .grid-table__cell:first-child {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}

.grid-table__cell .icon-container {
    border-radius: 50%;
    background: #fff;
    min-width: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 23px;
    position: relative;
    z-index: 99;
}

.grid-table__cell .icon-container img {
    width: 30.042px;
    height: 28.535px;
    object-fit: contain;
        object-position: center center;
}

.grid-table__row--head .grid-table__cell:last-child .line {
    display: block;
}

.grid-table__cell .line  {
    display: none;
    position: absolute;
        height: 100%;
    z-index: 0;
    top: 0;
    right: 0;
}

.grid-table__cell:last-child {
  border-right: none;
}

.grid-table__description {
  margin-bottom: 20px;
  color: #666;
}

.grid-table__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.real-results .custom__title {
    max-width: 640px;
}

.real-results  .subtitle {
    max-width: 763px;
}

.ecommerce-brands.approach .container .title {
    margin-bottom: 0;
}

.ecommerce-brands.approach .container .links .item .front, .ecommerce-brands.approach .container .links .item .back {
    max-width: 390px;
    min-width: 390px;
}

.ecommerce-brands.approach .container .links:before {
    width: calc(100% + 60px);
    left: -30px;
    background: #fff;
}

.ecommerce-brands.approach {
    position: relative;
    padding: 100px 0;
}
.ecommerce-brands.approach .gradient {
    position: absolute;
    z-index: -1;
}

.paid-search .reviews-carousel {
    padding: 100px 0 0;
}


.ecommerce-brands.approach .gradient-1 {
    left: 0;
    top: 0;
}

.ecommerce-brands.approach .gradient-2 {
    right: 0;
    bottom: 0;
}

.ecommerce-brands.approach .custom__title {
    max-width: 830px;
}

.our-clients .marquee-wrapper .marquee {
    background: none;
}

.paid-search .our-clients .marquee-wrapper .marquee:first-child {
    padding-top: 0;
}

.paid-search .our-clients .marquee-wrapper .marquee:last-child {
    padding-bottom: 0;
}

.paid-search .our-clients .marquee-wrapper .marquee:nth-child(2n) {
    padding: 0;
}

.our-clients .marquee-wrapper .marquee .marquee__track {
    gap: 30px;
}

.our-clients .marquee-wrapper .marquee .item {
    gap: 0;
    width: 145px;
    min-height: 58px;
    justify-content: center;
    align-items: center;
}

.our-clients .head {
    position: relative;
    text-align: center;
    border-bottom: 1px solid #202938;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 70px;
}

.our-clients .head .line {
      position: absolute;
    left: -150px;
    width: 700px;
    height: 463px;
    bottom: -344px;
}

.our-clients .head  .description {
    margin-top: 20px;
}

.our-clients .marquee-wrapper {
    padding: 70px 0;
    border-bottom: 1px solid #202938;
}


.our-clients .marquee-wrapper .marquee {
    padding: 24px 0;
}
.paid-search .blue-banner .subtitle {
    margin: 30px 0 20px;
}

.paid-search .blue-service-banner {
    padding: 150px 0;
    overflow: hidden;
}

.paid-search .blue-service-banner .container .blue-banner {
    padding: 56px 106px;
}

.paid-search .blue-service-banner .line {
    left: auto;
    top: -62px;
    right: 0;
}

.paid-search .blue-service-banner 
.blue-banner .description {
    font-size: 22px;
}

.paid-social .btn-hero {
    padding: 0 10px;
}


.paid-social .paid-banner .container .image img {
    width: 550px;
    height: 550px;
    object-fit: contain;
}

.paid-social .paid-banner .container .image {
    max-width: 550px;
    height: 550px;
    right: 0;
    bottom: calc(50% - 275px);
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
}

.paid-social .grid-table__row--head,
.paid-social .grid-table__row {
        grid-template-columns: 200px 1fr 1fr 1fr;
}

.paid-social .numbers .bubbles .item .description {
    max-width: 230px;
}

.paid-social  .new-client-timeline .steps {
    margin-bottom: 0;
}

.paid-social   .grid-table__cell {
        padding: 35px 26px;
}

.paid-social  .table-block-wrapper .gradient_2 {
    bottom: 0;
}
  
.paid-social   .ecommerce-brands.approach .container .links:before {
    min-height: 140px;
    top: 20px;
}
  @media (max-width: 1440px)  {
      .service-banner .image img {
          transform: translateX(134px);
      }
      
  }
  
@media (min-width: 1200px) {
  .new-client-timeline .steps .item {
    padding-right: 100px;
  }
}

@media (max-width: 1200px) {
    .paid-banner .container {
        padding: 70px 15px;
    }
    .paid-banner .ellipse {
        bottom: 0;
        z-index: 0;
    }
    
    .paid-banner .container .line {
        height: 330px;
    }
    
    .numbers .bubbles {
            padding-left: 202px;
    }
  .container {
    max-width: 100%;
    min-width: 100%;
    padding: 0 15px;
  }
  
  .analytics-services .blocks {
      padding: 0 15px;
  }
  
  .analytics-services .blocks {
      padding: 50px 0;
  }
  
  .analytics-services .image-wrapper {
      width: 100%;
  }
  
  .we-specialize-in .wrapper .banner {
      width: auto;
      max-width: calc(100% - 90px);
      margin: 0 auto;
          padding: 42px 42px 42px 480px;
  }
  .we-specialize-in .wrapper .links {
      width: auto;
          max-width: calc(100% - 90px);
  }
  
  .we-specialize-in .wrapper:before {
      width: calc(100% - 30px);
      left: 15px;
  }
  
  .services-blocks .container .content {
      padding: 25px 0;
  }
  
    .services-blocks .container .content {
        padding: 25px 0;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }
    
    .services-blocks .banner-block .container .head {
        width: 100%;
    }
    
    .services-blocks .banner-block .container .head h2.title {
            white-space: nowrap;
    }
    
    .services-blocks .banner-block {
        overflow: hidden;
    }

  .cta-section .background-img {
    object-fit: contain;
  }

  .cta-section .background-img {
    top: -150px;
  }

  .viden-numbers .pencil {
    bottom: -450px;
  }

  .team__title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }

  .team {
    padding: 100px 0 125px 0;
  }
 

  .team__list {
    margin-top: 50px;
  }

  .cta-section .container {
    padding: 0 0 124px;
  }

  .team-photo {
    max-width: 100%;
  }

  .team-photo .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .team-container .gradient {
    right: -15px;
  }

  .team-photo-wrapper img {
    width: calc(100% - 140px);
    height: 361px;
  }

  .team-photo .team-photo-content img {
    position: relative;
    width: calc(100% - 264px);
  }

  .team-photo .container .team-photo-wrapper,
  .team-photo .container .team-photo-wrapper .team-photo-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
  }

  .team-photo .container .team-photo-wrapper .statistic {
    padding: 30px 180px;
    margin-top: 0;
  }

  .team-photo .team-photo-content {
    justify-content: center;
    align-items: center;
  }

  .team-photo .team-photo-content img.logo-banner {
    display: none;
  }

  .team-photo .team-photo-content .description {
    padding: 0 94px;
  }

  .team-photo .team-photo-content {
    gap: 30px;
  }

  .team-photo .container {
    flex-direction: column-reverse;
  }

  .team-photo .team-photo-content {
    flex-direction: column-reverse;
  }

  .team-photo .container .team-photo-wrapper {
    flex-direction: column-reverse;
  }

  .team-photo .container {
    margin-bottom: 30px;
  }

  .clients-testimonials {
    padding: 106px 0 100px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    margin-top: 30px;
  }

  .testimonial-card.div-1 {
    grid-row: span 2 / span 2;
  }

  .testimonial-card.div-3 {
    grid-column-start: 2;
  }

  .testimonial-card.div-4 {
    grid-column-start: 1;
    grid-row-start: 4;
  }

  .div-5 {
    grid-column-start: 1;
    grid-row-start: 4;
  }

  .testimonial-card.div-6 {
    display: none;
  }

  .testimonial-card.div-7 {
    grid-column-start: 2;
    grid-row-start: 3;
  }

  .testimonial-card {
    box-sizing: border-box;
  }

  .clients-testimonials .team__title {
    display: flex;
    flex: 1;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
  }

  .site-footer {
    padding: 0 15px;
  }

  .last-banner {
    padding: 200px 15px;
  }

  .new-client-timeline .steps .item .see-more-conatiner {
    max-width: 400px;
  }
  
  .service-banner .image img {
    max-height: 500px;
    top: 68px;
  }
  
  .service-banner .container .content {
         max-width: 820px;
        padding: 68px 0;
  }
  
   .service-banner .image {
       display: none;
   }
  
   .service-banner .mobile-image {
       display: block;
  }
  
  .service-banner .mobile-image img {
        height: auto;
        width: 100%;
        object-fit: contain;
  }
  
  .service-banner .container .content, .service-banner .hero-subtitle {
      width: calc(100% - 100px);
  }
  
  .service-banner .container .content {
      max-width: 100%;
  }
  
  .service-banner .button-container {
      justify-content: center;
  }
  
  .service-banner .container .content {
      padding-bottom: 50px;
  }
  
  .service-banner .caption {
      margin: 20px auto 0;
  }
  
  .service-banner .arrow {
    position: absolute;
    margin-left: -300px;
  }
  
  .company-overview .container {
      flex-direction: column;
  }
  
  .company-overview .images img {
      position: relative;
  }
  
  .company-overview .title,
  .content .description {
      width: 100%;
  }
  
  .company-overview .images {
    position: relative;
    justify-content: flex-end;
    display: flex;
    }
    
    .company-overview .images img:last-child {
        bottom: 0;
        top: 0;
        width: 300px;
        height: 370px;
                right: 0;
        left: auto;
        overflow: hidden;
    }
    
    .company-overview .images img:first-child {
        position: absolute;
        right: 264px;
        left: auto;
        bottom: -48px;
    }
    
    .company-overview .background-img {
        top: 48%;
        transform: scale(1.5);
    }
    
    .our-advertising-services .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .our-advertising-services .custom__title {
        text-align: center;
    }
    
    .company-overview {
        padding: 100px 0;
    }
}

@media (max-width: 1024px) {
  .new-client-timeline .steps .item .head {
    min-width: 328px;
    width: 100%;
    max-width: 328px;
  }
  
  .paid-banner .container .line {
              transform: none;
        height: auto;
        width: 70%;
  }
  
  .paid-banner .container .image {
      position: relative;
      min-width: 100%;
      bottom: auto;
      margin-top: 30px;
  }
  
  .paid-banner .ellipse svg {
      width: 100%;
      height: 100%;
  }
  .services-blocks .container .content {
      height: auto;
  }
  
  .why-paid-search .container .title-wrapper .custom__title {
      margin-bottom: 20px;
  }
  
  .why-paid-search .container {
      flex-direction: column;
  }
  
  .why-paid-search .container .title-wrapper {
      width: 100%;
  }
  
  .paid-banner .container .line  {
        top: 337px;
        width: 70%;
        height: auto;
        transform: none;
  }
  
    .paid-banner .container .line {
        height: auto;
        top: 337px;
        transform: none;
        width: 70%;
    }
  
  .paid-banner .gradient-1 {
    top: 0;
    z-index: -1;
    right: -150px;
}

    .numbers .bubbles {
        padding-left: 0;
    }
    
    section.numbers .line {
        bottom: -100px;
    }
  
  .paid-banner .container {
      flex-direction: column;
  }
  
  .paid-banner .button-container {
      flex-direction: row;
    justify-content: flex-start;
            padding-left: 0;
  }
  .advanced-analytics-platforms .head-container {
          flex-direction: column;
    justify-content: center;
    align-items: center;
        text-align: center;
  }
  
  .advanced-analytics-platforms .head-container .custom__title {
      text-align: center;
  }
  
  .advanced-analytics-platforms .head-container {
      gap: 20px;
  }
  
  .advanced-analytics-platforms .head-container{
      margin-bottom: 50px;
  }
  
  
  .we-specialize-in .wrapper .banner {
      height: 600px;
    padding: 65px 50px;
    justify-content: flex-end;
    align-items: flex-end;
            display: flex;
  }
  
  .we-specialize-in .wrapper .links {
      gap: 32px 50px;
      grid-template-columns: 1fr 1fr;
      padding: 0 15px;
      margin-top: 50px;
  }
  
  .we-specialize-in .wrapper .banner .bg {
    width: 700px;
    height: 300px;
  }
  
  .we-specialize-in .wrapper .screen {
      right: 80px;
          left: auto;
              width: 280px;
  }

  .video-play {
    left: 0;
  }

  .new-client-timeline .steps .item .see-more-conatiner {
    max-width: 360px;
  }

  .last-banner .pencil {
    bottom: -600px;
  }
  .new-client-timeline .steps {
    min-height: none;
  }

  .carousel__item {
    position: relative;
  }

  .carousel__item .background-img {
    display: none;
  }

  .carousel__item:before {
    opacity: 1;
  }

  .carousel {
    max-width: 100%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }


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

  .carousel__item {
    position: relative;
    min-width: 250px;
  }

  .carousel__item .link-arow {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .carousel__item .link-arow svg {
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 80px;
    flex-direction: column;
    background: #fff;
    padding: 30px 50px;
    width: calc(100% - 168px);
    left: 84px;
    border-radius: 20px;
  }

  .header-content {
    padding: 12px 30px;
  }

  .site-branding img {
    max-height: 25px;
  }

  .site-header {
    top: 20px;
  }

  .button {
    padding: 12px 30px;
  }

  .main-navigation .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
  }

  .main-navigation .menu li {
    width: 100%;
    padding: 14px 0;
  }

  .mega-menu.active {
    position: relative;
    padding: 10px 20px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
  }

  .mega-menu-left {
    padding-right: 0;
    border: 0;
  }

  .mega-menu-category.active {
    color: rgba(32, 41, 56, 1);
    background: none;
  }

  .site-header.hidden {
    position: fixed;
    width: 100%;
    top: 0;
  }

  .site-header .header-content {
    transition: all 0.3s;
  }
  .site-header.hidden .header-content {
    border-radius: 0;
  }

  .site-header.hidden .container {
    padding: 0;
  }

  .main-navigation .menu li {
    padding: 12px 20px;
  }

  .mega-menu-categories {
  }

  .mega-menu.active {
    padding: 20px 30px;
    border: 1px solid #3b63f6;
    width: 500;
    border-top-left-radius: 10px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-width: 1px;
    box-shadow: none;
  }

  a.mega-menu-banner-btn {
    font-size: 14px;
  }

  .mega-menu-banner {
    margin-top: 20px;
  }

  .mega-menu-category-content .mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(32, 41, 56, 1);
  }

  .main-navigation .menu .mega-menu-category.active {
    padding: 0;
  }

  .main-navigation .menu .mega-menu-category.active > span {
    padding: 12px 20px;
    width: 440;
    border-top-left-radius: 8px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    display: flex;
    width: 100%;

    background: #202938;
    color: white;
  }

  .mega-menu-category-content {
    gap: 0;
  }

  .mega-menu-category-content .mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(32, 41, 56, 1);
  }

  .mega-menu-category {
    transition: none;
  }

  .hero-section .hero-wrapper {
    padding: 70px 15px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    position: relative;
    padding-bottom: 70px;
  }

  .btn-hero {
    bottom: 0;
  }

  .button-container {
    display: flex;
    align-items: center;
  }

  .button-container .btn-hero,
  .button-container .arrow {
    position: relative;
  }

  .hero-section .hero-wrapper {
    padding: 70px 15px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    position: relative;
    padding-bottom: 70px;
  }

  .btn-hero {
    bottom: 0;
  }

  .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding-left: 60px;
  }

  .button-container .btn-hero,
  .button-container .arrow {
    position: relative;
  }

  .button-container .btn-hero,
  .button-container .arrow {
    position: relative;
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
  }

  .button-container .arrow {
    padding: 0 20px 0 0;
  }

  .hero-caption {
    margin-top: 50px;
  }

  .hero-video video {
    width: 100%;
    height: 412px;
  }

  .hero-video {
    height: auto;
  }

  .main-navigation {
    box-shadow: 0px 4px 16px 0px #20293829;
  }

  .team__list {
    max-width: 558px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .team__list .team__item:nth-child(1) {
    max-width: 272px;
    min-width: 272px;
  }

  .team__list .team__item:nth-child(1) .team__photo {
    width: 282px;
    height: 282px;
  }

  .team__list .team__item:nth-child(2) {
    padding-top: 18px;
    max-width: 177px;
    min-width: 177px;
  }

  .team__list .team__item .line {
    height: 358px;
  }

  .team__list .team__item {
    height: 388px;
  }

  .team__list .team__item:nth-child(2) {
    max-width: 144px;
    padding-top: 14px;
    min-width: 144px;
  }

  .team__list .team__item:nth-child(2) .team__photo {
    width: 204px;
    height: 204px;
  }

  .team__list .team__item:nth-child(3) {
    max-width: 142px;
    min-width: 142px;
    padding-top: 102px;
  }

  .team__list .team__item:nth-child(3) .team__photo {
    width: 156px;
    height: 156px;
  }

  .team__name {
    font-size: 19px;
    padding: 0 16px;
  }

  .team__position {
    font-size: 16px;
    padding: 0 6px;
  }

  .team__list .team__item:nth-child(4) .team__photo {
    width: 178px;
    height: 178px;
  }

  .team__list .team__item:nth-child(4) {
    max-width: 144px;
    min-width: 144px;
    padding-top: 30px;
  }

  .team__list .team__item:nth-child(5) {
    max-width: 142px;
    min-width: 142px;
    padding-top: 98px;
  }

  .team__list .team__item:nth-child(5) .team__photo {
    width: 156px;
    height: 156px;
  }

  .team__list .team__item:nth-child(4),
  .team__list .team__item:nth-child(5),
  .team__list .team__item:nth-child(6),
  .team__list .team__item:nth-child(4):after,
  .team__list .team__item:nth-child(5):after,
  .team__list .team__item:nth-child(6):after {
    height: 390px;
  }

  .team__list .team__item:nth-child(6) {
    max-width: 146px;
    min-width: 146px;
    padding-top: 74px;
    margin-left: -2px;
  }

  .team__list .team__item:nth-child(6) .team__photo {
    width: 146px;
    height: 146px;
  }

  .team__list .team__item:nth-child(5) {
    background: white;
    z-index: 9999;
    left: -1px;
  }

  .team__list .team__item:nth-child(4) {
    z-index: 999;
    overflow: visible;
  }

  .footer-bottom svg {
    max-width: 100%;
  }

  .footer-bottom svg:last-child {
    max-width: 30%;
  }

  .footer-newsletter .newsletter-form {
    padding: 50px 0;
  }

  .clients-testimonials .footer-info {
    margin-top: 50px;
  }

  .clients-testimonials .team__title {
    display: inline;
    text-align: center;
  }

  .team__title-text {
    gap: 14px;
  }

  .last-banner {
    padding: 100px 15px;
  }

  .last-banner .container {
    gap: 100px;
  }

  .last-banner .container {
    gap: 50px;
    padding: 50px;
  }

  .solutions {
    padding: 100px 0;
  }

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

  .solutions .grid__item {
    padding: 36px 40px;
  }

  .solutions .grid__item .subtitle {
    max-width: 450px;
  }

  .solutions .grid__item .image {
    position: absolute;
    bottom: -40px;
    right: 10px;
    width: auto;
    height: 110%;
  }

  .solutions .grid__item .links {
    flex-direction: row;
    margin-bottom: 0;
  }

  .solutions .content-row {
    max-width: 420px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .solutions .grid__item:nth-child(2) .links {
  }

  .solutions .grid__item .custom-link {
    width: 60px;
    height: 60px;
  }

  .solutions .grid__item.bordered {
    border-bottom-left-radius: 100px;
  }

  .solutions .grid__item .line {
    position: absolute;
    right: 100px;
    bottom: 20px;
    width: 324px;
  }

  .solutions .grid__item.analytics .row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 35px;
  }

  .solutions .grid__item.analytics .row .links {
    gap: 16px;
  }

  .solutions {
    padding: 100px 0 140px;
  }

  .solutions .grid__item.analytics .image {
    top: 80px;
    right: -30px;
    width: 180px;
    width: 180.218px;
    height: 128.304px;
    object-fit: contain;
  }

  .solutions .grid__item .line {
    position: absolute;
    right: 150px;
    bottom: 0;
    width: 324px;
    z-index: 0;
  }

  .solutions .grid__wrapper:before {
    height: calc(100% - 20px);
    left: 40px;
    top: 10px;
    width: calc(100% - 80px);
    border-radius: 22px;
    border-radius: 40px;
  }

  .solutions .grid {
    margin-top: 0;
  }

  .solutions .grid:last-child {
    margin-top: 16px;
  }

  .solutions .grid__item.analytics {
    border-radius: 20px;
  }

  .solutions .container .custom__title {
    margin-bottom: 110px;
  }

  .our-advantages .content-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .our-advantages .content-grid .col.left {
    width: 100%;
  }

  .team__list .team__item:nth-child(4) {
    overflow: visible;
  }

  .team__list .team__item:nth-child(5) {
    background: #fff;
  }
  
  .services-blocks .banner-block .container {
      gap: 60px;
  }
  
   .services-blocks .container .content {
      padding: 25px 0;
  }
  
  .services-blocks .banner-block .container {
      min-height: 300px;
  }
  
  .services-blocks .banner-block .container .links {
      margin-top: 20px;
  }
  
  .services-blocks .banner-block .container {
      height: 300px;
  }
  
  .services-blocks .container .content {
      z-index: 999;
  }
  
  .services-blocks .banner-block .container {
          grid-template-columns: 1fr 328px;
  }
  
  .services-blocks .banner-block .container .image-container img {
      object-fit: contain;
  }
  
  .services-blocks .container .content {
      height: 300px;
  }
  
  .services-blocks .banner-block .container .image-container {
      height: 300px;
  }
  
  .services-blocks .banner-block:nth-child(2) .container .image-container img {
      left: -84px;
  }
  
  .services-blocks .banner-block .container .image-container img {
     transform: scale(1.05);
  }
  
  .banner-block  .description {
        font-size: 18px;
    }
}

  .about-us-service .line {
        z-index: -1;
    }

@media (max-width: 868px) {
    .advanced-analytics-platforms .container {
        position: relative;
        z-index: 9;
    }
    
    .table-block-wrapper .gradient {
        bottom: -100px;
    }
    .real-results .subtitle {
        margin-top: 20px;
    }
    .carousel {
        margin: 50px 0;
    }
    .paid-search .blue-service-banner .container .blue-banner {
        padding: 50px 70px;
    }
    
    .paid-search .blue-banner .content:first-child {
        max-width: 100%;
    }
    
    .paid-search .blue-banner .subtitle {
        margin: 30px auto 20px;
        max-width: 425px;
    }
    .paid-search .blue-service-banner .line {
        left: auto;
        top: 40px;
        right: 0;
        width: auto;
    }
    .numbers .bubbles .item:nth-child(5),
    .numbers .bubbles .item:nth-child(3),
        .numbers .bubbles .item:first-child{
        margin-left: auto;
    }
    
    .ecommerce-brands.approach {
        padding: 70px 0 0 0;
    }
    
    .our-clients .head {
        padding-top: 100px;
    }
    
    .our-clients .head .description {
  
        max-width: 500px;
        margin: 20px auto 0;
    }
    
    .our-clients .head .line {
        left: -307px;
    }
    
    .our-clients .marquee-wrapper .marquee .item {
        width: 158px;
    }
    
    .paid-search .blue-service-banner {
        padding-bottom: 100px;
    }
    
    .ecommerce-brands.ecommerce-brands.approach {
        width: auto;
    }
    
    .ecommerce-brands.approach .container .links .item .front, .ecommerce-brands.approach .container .links .item .back {
        max-width: 100%;
        min-width: 100%;
    }
    
    .ecommerce-brands.approach .container .links .item {
        max-height: none;
    }
    
    .ecommerce-brands.approach .container .links {
        max-width: 650px;
        padding: 0;
    }
    
    .ecommerce-brands.approach .container .links:before {
        width: calc(100% - 40px);
        left: 20px;
    }
    
    section.numbers .gradient {
        bottom: -50px;
    }
    
    section.numbers .line {
        bottom: -14px;
        left: -50px;
            width: 581px;
    height: 289px;
            z-index: 0;
    }
    .table-block-wrapper .description {
            margin-bottom: 50px;
    }
    
    .grid-table__row, .grid-table__row--head {
            grid-template-columns: 1fr 1fr;
    }
    
    .grid-table__row:not(.grid-table__row--head) .grid-table__cell:first-child {
        background: #F8F8F8;
        color: #2C313A;
    }
    
    .grid-table__row:not(.grid-table__row--head) .grid-table__cell:first-child:after {
        display: none;    
    }
    .grid-table__row:nth-child(2) .grid-table__cell:after {
        top: 5px;
        height: calc(100% - 10px);
        bottom: 5px;
    }
    
    .grid-table__row:not(.grid-table__row--head) .grid-table__cell:after {
        height: calc(100% - 10px);
        bottom: 5px;
        width: 1px;
    }
    
    .grid-table__cell {
        text-align: left;
        padding: 21px 40px;
    }
    
    .grid-table__row:not(.grid-table__row--head):last-child .grid-table__cell:after {
        top: 5px;
    }
    .grid-table__row .grid-table__cell:first-child {
        grid-column: span 2;
        padding: 13px 40px;
        justify-content: flex-start;
    }
    
    .grid-table__row--head .grid-table__cell:first-child:after {
        display: none;
    }
    .why-paid-search .container .description {
        width: 100%;
    }
    
    .why-paid-search {
        padding-bottom: 70px;
    }
    
    .new-client-timeline {
        margin-bottom: 0;
    }
    
    .table-block-wrapper {
        padding-top: 100px;
    }

    
    .numbers .bubbles {
        justify-content: flex-end;
    }
    .blue-service-banner .container .blue-banner {
        flex-direction: column;
        gap: 50px;
        padding: 50px;
        text-align: center;
    }
    
    .blue-banner .content:first-child {
        max-width: 600px;
    }
    
    .blue-banner .subtitle {
        text-align: center;
    }
    
    .blue-service-banner .line {
        top: 200px;
    }
    
    .blue-banner .subtitle {
        margin: 16px 0;
    }
    
    .blue-service-banner {
        padding: 100px 0;
    }
    
  
    
    .advanced-analytics-platforms .container .links {
          grid-template-columns: 1fr 1fr;
  }
  
  .advanced-analytics-platforms .container .links .item {
      padding: 20px;
  }
  
    .solutions .container .custom__title {
        margin-bottom: 60px;
    }
  .new-client-timeline .steps .item .head .title {
    max-width: 70%;
  }
  
  .services-blocks .banner-block .container .image-container {
    
    width: 337.895px;
    height: 300px;
    right: -100px;
  }
  
  .services-blocks .banner-block .container .image-container img {
      object-fit: contain;
  }
  
  .services-blocks .container .content {
     max-width: max-content;
  }
 

  .new-client-timeline .steps .item .see-more-conatiner {
    max-width: 80%;
  }

  .hero-wrapper .button-container {
    padding-left: 0;
  }

  .solutions .grid__item .custom-link svg {
    max-width: 16px;
  }

  .hero-caption {
    max-width: 517px;
    margin-bottom: 30px;
  }

  .hero-wrapper .arrow svg {
    margin-top: 0;
  }
  
  .services-blocks .banner-block .container .links {
      margin-top: 0;
  }
  
   .services-blocks .content .description {
      margin-bottom: 20px;
  }

  .button-container .arrow {
    transform: rotate(25deg);
    top: -20px;
  }
  
  .paid-search .button-container .arrow {
      transform: none;
  }

  .hero-video video {
    border-radius: 24px 24px 92px 24px;
  }

  .carousel__item:hover {
    width: 100%;
    max-width: 100%;
  }

  .solutions .grid {
    margin-top: 0;
  }
  
  .solutions {
      padding-top: 70px;
  }

  .solutions .grid__wrapper:before {
    content: "";
    width: calc(100% - 40px);
    height: calc(100% + 40px);
    left: 20px;
    top: -20px;
    border: 1px solid #202938;
    border-radius: 22px;
  }

  .solutions .grid__item.analytics {
    margin-top: 16px;
    border-top-right-radius: 20px;
  }

  .our-advantages .content-grid .col,
  .our-advantages .content-grid .col.left {
    width: 100%;
    padding: 0 60px;
  }

  .our-advantages {
    background: #f5f5f5;
  }

  .our-advantages .background-img {
    top: 30%;
    transform: scale(1.5);
  }

  .growth-principle {
    padding: 236px 0 200px;
  }

  .our-advantages .content-grid {
    flex-direction: column;
  }

  .new-client-timeline .steps .item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 36px 40px;
    gap: 20px;
  }

  .new-client-timeline .steps .item .description {
    max-width: 560px;
  }

  .new-client-timeline .steps {
    gap: 30px;
  }

  .new-client-timeline .label {
    text-align: center;
  }

  .approach {
    padding: 100px 0;
  }

  .approach .container .links {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .approach .container .links {
    padding: 0 44px;
  }

  .approach .container .links:before {
    width: calc(100% - 120px);
    height: calc(100% + 20px);
    top: -10px;
    left: 60px;
    border-radius: 40px;
  }

  .approach .container .links .item .front,
  .approach .container .links .item .back,
  .approach .container .links .item {
    max-width: 100%;
    min-width: 100%;
  }

  .new-client-timeline .steps .item .head {
    max-width: 560px;
    min-width: 100%;
  }

  .site-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 110px;
  }

  .site-footer .line {
    margin-top: 29px;
  }

  .site-footer {
    position: relative;
    overflow: hidden;
  }

  .team__title-text {
    display: inline-flex;
  }

  .carousel__item {
    height: 472px;
  }

  .new-client-timeline .steps {
    min-height: none;
  }

  .carousel__item {
    position: relative;
  }

  .carousel__item .background-img {
    display: none;
  }

  .carousel__item:before {
    opacity: 1;
  }

  .carousel {
    max-width: 100%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .carousel__item {
    position: relative;
    min-width: 250px;
  }

  .carousel__item .link-arow {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .carousel__item .link-arow svg {
    width: 100%;
  }

  .viden-numbers .custom__title {
    flex-direction: row;
  }

  .viden-numbers .container .content {
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .faq-container {
    padding-bottom: 100px;
  }

  .viden-numbers .container .numbers .item:nth-child(3),
  .viden-numbers .container .numbers .item:nth-child(5) {
    margin-left: 0;
  }

  .viden-numbers .container .numbers {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .viden-numbers .pencil svg {
    max-width: 100%;
  }

  .viden-numbers .pencil {
    width: 50%;
    bottom: 0;
    height: 300px;
  }

  .last-banner .container {
    padding: 50px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .last-banner .description {
    width: 100%;
  }

  .last-banner .pencil svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .faqs .faq {
    paddng: 14px 18px;
  }
  
  .service-banner  .button-container .arrow {
      top: auto;
        position: absolute;
        margin-left: -300px;
  }
  
   .service-banner  .button-container {
      padding-left: 0;
  }
  
  .company-overview .description {
      margin-bottom: 0;
  }
  
  .company-overview {
      padding-bottom: 148px;
  }
  
  .our-advertising-services {
      margin-bottom: 50px;
  }
  
  .services-blocks .banner-block .container .head h2.title {
      font-size: 40px;
  }
  
  .services-blocks .container .content {
      height: auto;
      min-width: 480px;
  }
  
      .services-blocks .banner-block .container .image-container {
        width: 337.895px;
        height: 300px;
        right: 0;
    }
    
    .services-blocks .banner-block .container .description {
               max-width: 400px;
    }
    
    .services-blocks .banner-block:last-child .container .image-container .line {
        top: 100px;
        z-index: -1;
        left: -58px;
        width: 100px;
    }
    
     .services-blocks .banner-block:last-child .container .image-container .line svg {
        width: 200px;
     }
     
     .services-blocks .banner-block:last-child {
          border-bottom: 1px solid #202938;
      }
      
      .reviews-carousel .decore {
          display: none;
      }
      
      .reviews-carousel {
          padding: 100px 0 50px;
      }
      
      .reviews-carousel .custom-slider {
              padding: 50px 0 0;
      }
      
      .we-specialize-in .custom__title {
              max-width: 500px;
      }
      
      .we-specialize-in .wrapper {
          margin-top: 50px;
      }
      
      .viden-numbers .custom__title {
        align-items: center;
    }
 }

@media (max-width: 768px) {
  .site-footer {
    padding: 0 10px;
  }
 
  
  .analytics-services .blocks {
      width: 100%;
  }
  
  .analytics-services .blocks__item {
      flex-direction: column;
      gap: 44px;
  }
  
  .analytics-services .blocks__item .content {
      width: 100%;
      gap: 30px;
  }
  
  .analytics-services .blocks__item .content .description {
      margin-bottom: 0;
  }
  
  .we-specialize-in .wrapper:before {
      
        top: 300px;
        height: calc(100% - 322px);
  }
  
  .we-specialize-in .wrapper .banner {
      padding: 50px 65px;
  }
  .services-blocks .banner-block {
      height: 300px;
  }

  .team__title-text {
    gap: 8px;
  }

  .clients-testimonials {
    padding: 70px 0;
  }

  .testimonial-card .review {
    font-size: 14px;
  }

  .testimonial-card.big {
    min-height: 310px;
  }

  .big.testimonial-card .review {
    font-size: 18px;
  }

  .testimonial-card .photo {
    height: 46px;
    width: 46px;
  }

  .testimonial-card .founder-info {
    gap: 10px;
  }

  .testimonial-card:not(.big) .founder-info {
    display: grid;
    grid-template-columns: 70px 1fr 46px;
    max-width: 100%;
    gap: 10px;
  }

  .testimonial-card {
    max-width: 100%;
    min-height: 170px;
  }

  .clients-testimonials .footer-info p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
  }

  .testimonial-card:not(.big) .logo {
    max-width: 100%;
  }

  .testimonial-card.big .founder-info .info.right {
    text-align: left;
  }

  .testimonial-card .founder-info .info {
    gap: 0;
  }

  .testimonial-card.big .photo {
    height: 60px;
    width: 60px;
  }

  .team__title-text {
    display: inline-flex;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .our-advantages .content-grid .col.left .item:last-child .img {
    position: relative;
    z-index: 99;
  }

  .our-advantages .content-grid .col.left .item:last-child svg {
    z-index: 0;
  }

  .our-advantages .content-grid .col.left .item:last-child {
    padding-bottom: 32px;
  }

  .growth-principle .background-text {
    font-size: 220px;
    top: 100px;
    line-height: 1.4;
    top: -8px;
  }

  .growth-principle {
    padding: 236px 0 200px;
  }

  .growth-principle .ellipce {
          height: 496px;
        top: -180px;
  }

  .growth-principle .subtitle {
    z-index: 999;
  }

  .growth-principle .custom__title {
    max-width: 80%;
    margin-bottom: 20px;
    z-index: 99;
  }

  .new-client-timeline .steps .item-container:nth-child(10) .b6,
  .new-client-timeline .steps .item-container:nth-child(6) .b6 {
    width: 80px;
  }

  .new-client-timeline .steps {
    gap: 30px;
  }

  .new-client-timeline .steps .item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 40px;
  }

  .new-client-timeline .steps .item .description {
    max-width: 80%;
  }

  .new-client-timeline .label {
    text-align: center;
  }

  .approach {
    padding: 100px 0;
  }

  .approach .container .links {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .approach .container .links .item,
  .approach .container .links .item .front,
  .approach .container .links .item .back {
    width: 100%;
    min-width: 100%;
  }

  /*.approach .container .links:before {*/
  /*  width: calc(100% - 40px);*/
  /*  height: calc(100% + 20px);*/
  /*  position: absolute;*/
  /*  top: -20px;*/
  /*  left: 20px;*/
  /*}*/

  .viden-numbers .container .content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .faq-container {
    padding-bottom: 100px;
  }

  .viden-numbers .custom__title {
    flex-direction: row;
  }

  .viden-numbers .container-block .container .numbers .item {
    margin-left: 0;
  }

  .viden-numbers .pencil {
    z-index: -1;
    width: 50%;
  }

  .awards .container .row:first-child {
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 34px;
  }

  .awards .container .row:first-child .item {
    min-width: 160px;
    max-width: 160px;
  }

  .viden-numbers .gradient {
    top: auto;
    bottom: -300px;
    z-index: -1;
  }

  .last-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .last-banner .pencil svg {
    max-width: 100%;
    height: auto;
  }

  .last-banner .pencil {
    display: none;
  }

  .viden-numbers .pencil svg {
    max-width: 100%;
  }

  
  .service-banner .link-underline {
      font-size: 18px;
      font-weight: 600;
        line-height: 120%;
  }
  
  .service-banner .hero-rating {
    justify-content: center;
  }
  
    .service-banner  .hero-title {
      font-size: 32px;
    text-align: center;
    font-weight: 700;
    line-height: 125%; 
  }
  
  .service-banner .container .content, .service-banner .hero-subtitle {
      width: 100%;
      text-align: center;
  }
  
  .service-banner .container .container {
      padding: 0;
  }
  
  .service-banner .container .content, .service-banner .hero-subtitle {
      font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    padding: 10px 0 20px;
  }
  
  .service-banner .button-container .btn-hero {
      width: 114px;
      font-size: 14px;
    font-weight: 700;
    line-height: 125%;
            left: -30px;
      height: 114px;
  }
  
  .service-banner .button-container .arrow {
      position: relative;
      margin: 0;
              left: -30px;
              width: 140px;
  }
  
   .service-banner .button-container .arrow {
      padding: 0;
  }
  
  .service-banner .button-container {
      flex-direction: row;
              align-items: flex-start;
  }
  
  .service-banner .caption {
      font-size: 18px;
    font-weight: 400;
    line-height: 130%;
  }
  
  .service-banner .caption {
      margin: 20px auto 20px;
     width: 280px;
  }
  
  .service-banner {
    padding-top: 40px;
  }
  
  .marquee-wrapper .marquee {
      padding: 16px 0;
  }
  
  .marquee-wrapper .marquee .item {
      font-size: 14px;
    font-weight: 600;
    gap: 20px;
    align-items: center;
    line-height: 120%;
  }
  
  .marquee-wrapper .marquee .item svg {
      width: 30px;
  }
  
  .marquee-wrapper .marquee .marquee__track {
      gap: 20px;
  }
  
  .services-blocks .banner-block .container {
      height: auto;
  }
  

}

@media (min-width: 560px) and (max-width: 868px) {
  .solutions .grid__wrapper {
    padding: 0 44px;
  }

  .solutions .grid__wrapper:before {
    content: "";
    width: calc(100% - 166px);
    height: calc(100% - 20px);
    left: 84px;
    top: 10px;
    border: 1px solid #202938;
    border-radius: 22px;
  }

  .our-advantages .content-grid .col.left .item:last-child .img {
    width: 80%;
    bottom: -24px;
  }

  .our-advantages .content-grid .col.left .item:last-child svg {
    width: 350px;
    bottom: -40px;
  }
 
}

@media (min-width: 560px) and (max-width: 740px)  {
     
  .solutions .grid__item .subtitle {
      max-width: 350px;
  }
  
  .solutions .grid__item .links, .solutions .social {
              flex-direction: column;
  }
  
     .solutions .content-row {
        max-width: 280px;
        align-items: center;
    }
}

.grid-table__cell .link-underline {
    text-transform: uppercase;
}

@media (max-width: 568px) {
    .paid-banner .container {
        padding-bottom: 40px;
    }
    .ecommerce-brands.approach .gradient {
        display: none;
    }
    .ecommerce-brands.approach .container .links {
        margin-top: 20px;
    }
    .reviews-carousel .custom-slider {
        margin: 40px  0 0;
    }
     .paid-search .paid-banner {
        overflow: hidden;
    }
    .our-clients .marquee-wrapper .marquee {
        padding: 8px 0;
    }
    .paid-search .our-clients .marquee-wrapper .marquee:first-child {
        padding-top: 0;
    }
    .blue-banner .content svg {
        max-width: 100%;
    }
    
    .about-us-service .line {
        
    }
    
    .about-us-service .line {
           bottom: -150px;
        right: 0;
        width: 200px;
        height: auto;
        height: 200px;
    }
    
    .about-us-service .line svg{
        width: 100%;
        height: 100%;
        position: relative;
        object-fit: contain;
        object-position: bottom right;
    }
    .paid-search .our-clients .marquee-wrapper .marquee:last-child {
        padding-bottom: 0;
    }
     .paid-search .services-blocks .banner-block .container .image-container {
                right: 105px;
    }
    
     .paid-search .new-client-timeline .steps {
        margin-top: 46px;
    }
    
    .table-block-wrapper .description {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .grid-table__row--head.grid-table__row .grid-table__cell:first-child {
                justify-content: flex-end;
    }
    
    .grid-table__cell .link-underline {
                margin: 10px 0;
        
    }
    .table-block-wrapper .gradient {
        display: none;
    }
         .paid-searc .why-paid-search {
        padding-top: 70px;
    }
    
    .numbers .bubbles {
        justify-content: center;
    }
    .numbers .bubbles .item:nth-child(5), .numbers .bubbles .item:nth-child(3), .numbers .bubbles .item:first-child {
        margin-left: 0;
    }
     .paid-search .services-blocks .banner-block .container {
        min-heigth: auto
    }
    
     .paid-search .services-blocks .banner-block:last-child .container .links {
     flex-direction: row;   
    }
    .paid-search .services-blocks .container .content {
        padding: 0;
    }
     .paid-search .services-blocks .banner-block {
        padding: 60px 0;
    }
    .paid-banner .container .line {
        display: none;
    }
    
    .numbers .bubbles .item {
        padding: 20px 26px;
    }
    
    .grid-table__row--head .grid-table__cell {
        gap: 10px;
    }
    
    .paid-banner .container .image {
        width: 355.001px;
        height: 178.147px;
    }
    
    .paid-banner .btn-hero {
        margin-top: 0;
    }
    
    .paid-search .button-container .arrow {
                width: 144px;
        top: 0;
        transform: rotate(336deg);
    }
    
    .paid-banner .container .image img {
        height: 100%;
    }
    
    .numbers .bubbles .number {
        font-size: 36px;
    }
    .numbers .bubbles .item .description {
         font-size: 18px;
    }
    .paid-banner .container .partners {
            justify-content: center;
    }
    
    .paid-banner .button-container {
        justify-content: center;
    }
    .paid-banner .button-container {
        margin-top: 20px;
    }
    
    section.numbers .line {
        width: 358px;
    }
    .services-blocks .banner-block .container .image-container .gradient {
        bottom: -200px;
        top: auto;
        right: -250px;
    }
    
    .analytics-services .image-wrapper img {
            object-fit: cover;
    }
    .grid-table__row--head .grid-table__cell:last-child .line {
        display: none;
    }
    
    .new-client-timeline.paid-search-process {
        margin-bottom: 0;
    }
    .grid-table__row .grid-table__cell:last-child {
        gap: 10px;
    }
    
    .grid-table__row:last-child .grid-table__cell:not(:first-child){
        align-items: center;
    }
    .ecommerce-brands.approach .container .links {
        margin-top: 40px;
    }
    .approach .container .links .item .back.side {
        font-size: 14px;
    }
    .our-clients .head {
        padding-top: 70px;
        padding-bottom: 40px;
    }
    
    .our-clients .marquee-wrapper {
        padding: 40px 0;
    }
    
    .paid-search .blue-service-banner {
        padding: 70px 0;
    }
    
    .paid-search .blue-service-banner .container .blue-banner {
        padding: 60px 15px;
    }
    
    .paid-search .blue-service-banner .blue-banner .description,
    .paid-search .blue-banner .subtitle {
        font-size: 18px;
    }
    
    .our-clients .marquee-wrapper .marquee .item {
        width: 72px;
    }
    
    .our-clients .marquee-wrapper .marquee {
        padding: 16px 0;
    }
    
    .our-clients .head .line {
        display: none;
    }
    .grid-table__row, .grid-table__row--head .grid-table__cell {
        font-size: 20px;
    }
    .grid-table__cell .icon-container {
        margin-left: 0;
    }
    
    .grid-table__row--head .grid-table__cell {
        flex-direction: row-reverse;
    }
    
    .ecommerce-brands.approach .container .links .item .front, .ecommerce-brands.approach .container .links .item .back {
        max-width: 100%;
        min-width: 100%;
    }
    
    .ecommerce-brands.approach {
        padding: 70px 0 0 0;
    }
    .grid-table__row--head.grid-table__row .grid-table__cell:first-child {
        padding: 16px 20px;
    }
    
    .grid-table__row .grid-table__cell:first-child {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
    }
    
     .grid-table__row  .grid-table__cell:last-child {
        min-height: 87px;
    }
    .table-block-wrapper {
        padding: 40px 0 70px;
    }
    
    .grid-table__cell {
        padding: 10px 20px;
        font-size: 15px;
                align-items: flex-start;
    }
    
    .grid-table__cell .link-underline {
        font-size: 16px;
        font-weight: 700;
line-height: 140%;
    }
    .blue-service-banner {
        padding: 70px 0;
    }
    
    .blue-banner h2.title {
        font-size: 28px;
        font-weight: 600;
        line-height: 120%;
    }
    
    .blue-banner .subtitle {
        margin: 10px 0;
    }
    
    .blue-banner .content .description {
        font-size: 18px;
    }
    
    .blue-banner .button.btn-border.light {
        font-size: 15px;
    }
    
    .blue-service-banner .container .blue-banner {
        gap: 30px;
        padding: 60px 10px;
    }
    
    .blue-service-banner .line {
        display: none;
    }
    
    
    .advanced-analytics-platforms .container .links {
                grid-template-columns: 1fr;
                gap: 16px;
    }
    
    .advanced-analytics-platforms .container .links .item .title {
        font-size: 22px;
        margin-bottom: 10px;
font-weight: 700;
line-height: 120%;
    }
    
    .advanced-analytics-platforms .container .links .item .description {
        font-size: 14px;
        font-weight: 500;
        line-height: 120%;
    }
    
    .advanced-analytics-platforms .container .links .item:not(.last) a {
        width: 40px;
        height: 40px;
    }
    .advanced-analytics-platforms .container .links .item {
        padding: 20px 24px;
    }
    
    .advertising-analytics-audits.analytics-services .blocks__item svg {
            transform: scaleX(-1);
                width: 230px;
    }
    
    .advanced-analytics-platforms,
    .advertising-analytics-audits.analytics-services {
        padding: 70px 0;
    }
    .advanced-analytics-platforms .container .links .item, 
    .company-overview .content .description {
        width: 100%;
    }
    
    .company-overview .content .description {
        font-size: 16px;
    }
    
    .our-advertising-services .container > div:first-child {
            min-width: 100%;
    }
    
    .company-overview .images img:first-child {
        left: 0;
    }
    
    .company-overview .title {
            font-size: 28px;
    }
    .analytics-services .blocks__item {
        padding: 26px 18px;
        border-radius: 12px;
    }
    .services-blocks .banner-block {
        height: auto;
    }
    .analytics-services .blocks__item .content .title {
        margin-bottom: 16px;
        font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    }
    
    .analytics-services .blocks__item .content .description {
        font-size: 14px;
        font-weight: 500;
        line-height: 120%;
    }
    
    .analytics-services .blocks__item .content {
        gap: 20px;
    }
    
    .analytics-services .blocks__item {
        gap: 30px;
    }
    
    .analytics-services .image-wrapper {
        height: 200px;
    }
    
    .analytics-services {
        padding: 70px 0;
    }
    
    .analytics-services .custom__title {
        margin-bottom: 14px;
    }
    .analytics-services .blocks {
        gap: 16px;
    }
    
    .analytics-services .custom__title + .description {
        font-size: 18px;
    }
    
    .analytics-services .description-bottom {
        font-size: 18px;
    }
    
    .analytics-services .blocks {
        padding: 40px 0;
    }
    .reviews-carousel {
        padding: 70px 0;
    }
    
    .we-specialize-in .wrapper .banner {
        height: 460px;
    }
    
    .we-specialize-in .wrapper .links {
                grid-template-columns: 1fr;
                gap: 22px;
    }
    
    .links-accordeon .item .link-underline {
        padding-bottom: 8px;
        font-size: 22px;
        font-weight: 700;
        line-height: 120%;
    }
    
    .we-specialize-in .wrapper .links {
        margin-bottom: 50px;
    }
    
    .we-specialize-in .wrapper:before {
        border-radius: 12px;
    }
    
    .we-specialize-in {
        padding: 70px 0;
    }
    
    .we-specialize-in .button {
        padding: 10px 30px;
    }
    
    .we-specialize-in .wrapper .banner .bg {
                height: 180px;
        object-fit: contain;
        object-position: left;
    }
    
    .we-specialize-in .wrapper .screen {
        height: 200px;
        top: -10px;
        right: 40px;
    }
    
    .we-specialize-in .wrapper .banner .description {
        font-size: 14px;
        font-weight: 500;
        line-height: 120%;
    }
    
    .we-specialize-in .wrapper .banner {
        padding: 47px 25px;
        border-radius: 12px 12px 12px 50px;
    }
    
    .custom-slider .slider-controls {
        margin-top: 20px;
        justify-content: center;
    }
    
    .custom-slider .splide__slide {
        max-width: 100%;
        padding: 20px;
            height: 300px;
    }
      .custom-slider .splide__slide svg {
        bottom: -33px;
        right: -14px;
        width: 76px;
        z-index: 0;
    }
    
    .custom-slider .splide__slide .logo {
        height: auto;
        margin-bottom: 0;
    }
    
    .custom-slider .splide__slide .photo {
        width: 56px;
        height: 56px;
    }
    
    .custom-slider .splide__slide .row {
        gap: 14px;
    }
    
    .custom-slider .splide__slide .name {
        font-size: 18px;
    }
    
    .custom-slider .splide__slide .position {
        font-size: 14px;
    }
    
    .custom-slider .splide__slide .logo img {
        width: 108px;
        height: 28.08px;
            object-fit: contain;
    }
    
    .custom-slider .splide__slide .descripton {
        font-size: 18px;
        font-weight: 500;
        line-height: 120%; 
    }
    .custom-slider .splide__slide {
        gap: 18px;
        border-radius: 12px 50px 12px 12px;

    }
    .slider-controls .circle-btn_outline {
        width: 40px;
        height: 40px;
    }
    .services-blocks .banner-block .container .image-container img {
        display: none;
    }
    
    .services-blocks .banner-block .container {
        min-height: 270px;
    }
    .services-blocks .banner-block .container {
        grid-template-columns: 1fr;
    }
    
    .services-blocks .banner-block .container .image-container {
        position: absolute;
    }
    
    .advanced-analytics-platforms .background-img {
           top: 660px;
            transform: scale(1.4) rotate(331deg);
            z-index: 0;
    }
    
    .we-specialize-in .wrapper .links {
        padding: 0;
    }
    
    .we-specialize-in .wrapper .banner {
                max-width: calc(100% - 45px);
    }
    
    .we-specialize-in .wrapper .screen  {
        right: 0;
    }
    
    .services-blocks .banner-block:last-child .container .image-container .line {
        display: none;
    }
    
    .services-blocks .banner-block:last-child .container .links {
        flex-direction: column;
                justify-content: flex-start;
        align-items: flex-start;
    }
    .about-us-service .line {
        z-index: -1;
    }
    .services-blocks .banner-block .container .head h2.title {
        font-size: 28px;
    }
    .services-blocks .banner-block .container .description {
        max-width: 300px;
        font-size: 14px;
    }
    .services-blocks .container .content {
        min-width: 100%;
    }
    
    .services-blocks .banner-block .container .links {
        gap: 8px;
    }
    
    .services-blocks .banner-block .container .links .button {
        font-size: 15px;
        padding: 10px 30px;
    }
  .footer-newsletter .newsletter-form {
    padding: 50px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-newsletter .newsletter-form input {
    flex: 1;
    width: 100%;
  }

  .footer-newsletter .newsletter-form .row {
    display: flex;
    width: 100%;
  }

  .team__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
  }

  .team__title-text:after {
    width: 50px;
    height: 24px;
  }

  .testimonial-card .founder-info strong {
    font-size: 14px;
  }

  .testimonial-card .founder-info span {
    font-size: 12px;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    max-width: 100%;
  }

  .header-content {
    padding: 8px 20px;
  }

  .button {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 120%;
  }

  .header-actions {
    gap: 30px;
  }

  .site-branding img {
    width: 65px;
    max-height: none;
  }

  .link-underline {
    font-size: 18px;
  }

  .hero-rating {
    gap: 10px;
    margin-bottom: 26px;
    justify-content: center;
  }

  .hero-rating .stars svg {
    width: 106px;
  }

  .hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 125%;
    text-align: center;
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
  }

  .hero-caption {
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
  }

  .hero-wrapper .arrow svg {
    width: 140px;
    margin-top: 20px;
    transform: none;
    position: relative;
    right: -20px;
    height: 70px;
    object-fit: contain;
    top: -20px;
  }

  .button-container .arrow.desctop {
    display: none;
  }

  .button-container .arrow.mobile {
    display: block;
    position: absolute;
    transform: none;
    top: auto;
    left: calc(50% - 140px);
  }

  .hero-wrapper .button-container {
    position: relative;
    padding-left: 140px;
  }

  .button-container .arrow.mobile svg {
    transform: none;
    display: block;
    width: 141.235px;
    height: 74.868px;
    transform: none;
    top: auto;
    margin-top: 0;
    object-fit: contain;
  }

  .button-container {
    padding-left: 0;
  }

  .hero-section.container {
    max-width: 10vw;
    overflow: hidden;
  }

  .circle-btn {
    width: 114px;
    height: 114px;
    font-size: 14px;
    font-weight: 700;
    line-height: 125%;
  }

  .button-container {
    margin-top: 20px;
  }

  .hero-content {
    padding-bottom: 66px;
  }

  .hero-video {
    padding-bottom: 400px;
  }

  .hero-video video {
    width: 756px;
    position: absolute;
    height: 400px;
    left: -373px;
    border-radius: 0;
  }

  .marquee-container {
    padding: 14px 0;
  }

  .team {
    padding: 70px 0;
  }

  .team__subtitle {
    font-size: 18px;
  }

  .team__list .team__item .team__name {
    font-size: 12px;
  }

  .team__position {
    font-size: 11px;
  }

  .team__list .team__item:nth-child(1) {
    max-width: 160px;
    min-width: 160px;
  }

  .team__list .team__item:nth-child(1) .team__photo {
    width: 180px;
    height: 180px;
  }

  .team__list .team__item:first-child .team__name {
    margin-top: 14px;
  }

  .team__list .team__item:nth-child(2) {
    max-width: 94px;
    padding-top: 8px;
    min-width: 94px;
  }

  .team__list .team__item:nth-child(2) .team__photo {
    width: 131.179px;
    height: 131.179px;
  }

  .team__list .team__item {
    height: 242px;
  }

  .team__list .team__item .line {
    height: 230px;
  }

  .team__list .team__item .team__name {
    margin-top: 15px;
  }

  .team__list .team__item:nth-child(3) {
    max-width: 91px;
    min-width: 91px;
    padding-top: 65px;
  }

  .team-bg {
    top: 150px;
    left: 0;
    width: 375px;
  }

  .team-bg svg {
    max-width: 100%;
  }

  .team__list .team__item:nth-child(3) .team__photo {
    width: 100.745px;
    height: 100.745px;
  }

  .team__list {
    max-width: 420px;
  }

  .team__list .team__item:nth-child(4) {
    max-width: 91px;
    min-width: 91px;
    padding-top: 19px;
  }

  .team__list .team__item:nth-child(4) .team__photo {
    width: 114px;
    height: 114px;
  }

  .team__list .team__item:nth-child(5) {
    max-width: 91px;
    min-width: 91px;
    padding-top: 62px;
  }

  .team__list .team__item:nth-child(5) .team__photo {
    width: 100px;
    height: 100px;
  }

  .team__list .team__item:nth-child(6) {
    max-width: 91px;
    min-width: 91px;
    padding-top: 47px;
    z-index: -1;
  }

  .team__list .team__item:nth-child(6) .team__photo {
    width: 94px;
    height: 94px;
  }

  .team__list .team__item:nth-child(4),
  .team__list .team__item:nth-child(5),
  .team__list .team__item:nth-child(6),
  .team__list .team__item:nth-child(4):after,
  .team__list .team__item:nth-child(5):after,
  .team__list .team__item:nth-child(6):after {
    height: 230px;
  }

  .team__list .team__item:nth-child(4) .team__position,
  .team__list .team__item:nth-child(5) .team__position,
  .team__list .team__item:nth-child(6) .team__position,
  .team__list .team__item:nth-child(2) .team__position,
  .team__list .team__item:nth-child(3) .team__position {
    font-size: 10px;
  }

  .cta-section .section-title-center {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 30px;
  }

  .background-img {
    top: -180px;
  }

  .title-shadow {
    height: 300px;
    top: -100px;
    width: 200%;
    z-index: 0;
  }

  .title-shadow svg {
    width: 100%;
    height: 100%;
  }

  .cta-section .section-title-center {
    z-index: 999;
  }

  .cta-section .container {
    padding: 0 0 100px;
  }

  .team-photo .team-photo-content .description {
    display: block;
  }

  .team-photo .container {
    flex-direction: column-reverse;
  }

  .team-photo .team-photo-content img {
    border-radius: 49.307px 9.861px;
  }

  .team-photo .team-photo-content img.logo-banner {
    display: none;
  }

  .container {
    padding: 0 10px;
  }

  .team-photo .team-photo-content {
    flex-direction: column-reverse;
  }

  .team-photo .team-photo-content {
    gap: 30px;
  }

  .team-photo .team-photo-content .description {
    padding: 0;
    font-size: 14px;
  }

  .team-photo .container .team-photo-wrapper {
    flex-direction: column-reverse;
  }

  .team-photo .team-photo-content img {
    min-width: 100%;
    max-height: none;
  }

  .team-photo .container .team-photo-wrapper .statistic .description {
    font-size: 14px;
    max-width: 200px;
  }

  .team-photo .container .team-photo-wrapper .statistic .count {
    font-size: 35px;
  }

  .team-photo .container .team-photo-wrapper .statistic {
    padding: 20px 0;
    gap: 10px;
  }

  .team-photo .container img {
    max-width: 250px;
    border-radius: 47.337px 11.834px;
    height: auto;
    width: 100%;
  }

  .clients-testimonials .footer-info {
    margin-top: 40px;
  }

  .our-projects .team__title {
    margin-bottom: 14px;
    text-align: center;
  }

  .our-projects .subtitle {
    font-size: 18px;
  }

  .our-projects .background-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(59, 99, 246, 0) 20.41%,
      #3b63f6 83.73%
    );
  }

  .solutions {
    padding: 70px 0;
  }

  .cta-section .container {
    padding-bottom: 100px;
  }

  html,
  body {
    max-width: 100vw;
  }

  .carousel__item .content .logo {
    min-width: 90px;
    min-height: 30px;
  }

  .carousel__item {
    min-height: 250px;
    max-height: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
  }

  .carousel__item .content {
    flex: 1;
  }

  .carousel {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 40px 0;
  }

  .marquee-content li {
    font-size: 14px;
    gap: 20px;
  }

  .solutions .grid__wrapper:before {
    height: calc(100% - 30px);
    left: 40px;
    top: 20px;
    width: calc(100% - 80px);
    border-radius: 40px;
  }

  .solutions .grid__item {
    padding: 26px 24px;
    border-radius: 12px;
  }

  .custom__title span svg {
    width: 50px;
    height: 24px;
  }

  .marquee-content li svg {
    margin-left: 20px;
  }

  .solutions .container .custom__title {
    font-size: 28px;
  }

  .solutions .content-row {
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
  }

  .solutions .grid__item.performance .image {
    width: 150px;
  }

  .solutions .grid__item.analytics .image {
    bottom: 0;
    right: -30px;
    width: 180px;
    width: 130px;
    height: 128.304px;
    object-fit: contain;
    position: absolute;
    top: 40%;
  }

  .solutions .social a {
    width: 33px;
    height: 33px;
  }

  .solutions .social a img {
    height: 20px;
    width: 20px;
    object-fit: contain;
  }

  .solutions .grid__item .line {
    display: none;
  }

  .solutions .grid__item .image {
    bottom: -30px;
    right: 0;
    width: 90px;
    height: auto;
  }

  .solutions .grid__item .subtitle {
    margin-bottom: 16px;
  }

  .solutions .grid__item .button {
    padding: 8px;
  }

  .solutions .grid__item .custom-link svg {
    width: 27px;
  }

  .carousel__item .caption .label {
    font-size: 16px;
  }

  .solutions .content-row .social {
    flex-direction: column;
    gap: 10px;
  }

  .solutions .grid__item .links {
    flex-direction: column;
    gap: 12px;
  }

  .carousel__item .caption .percent {
    font-size: 28px;
    line-height: 120%;
  }

  .our-projects {
    padding: 70px 0;
  }

  .solutions .grid__item .subtitle {
    font-size: 14px;
  }

  .solutions .grid__item .title {
    font-size: 22px;
  }

  .solutions .grid__item.performance {
    overflow: hidden;
  }

  .our-advantages .content-grid .col.left .item {
    padding: 20px 32px;
    border-radius: 12px;
  }

  .our-advantages .content-grid {
    gap: 16px;
    margin-top: 40px;
  }

  .our-advantages .content-grid .col.left .item:first-child {
    height: 355px;
    overflow: hidden;
  }

  .our-advantages .content-grid .col .item .title {
    font-size: 22px;
  }

  .our-advantages .content-grid .col.right .item .subtitle {
    font-size: 14px;
  }

  .subtitle {
    font-size: 18px;
  }

  .our-advantages {
    padding: 70px 0;
  }

  .custom__title {
    font-size: 28px;
    line-height: 120%;
  }
  
  .custom__title span:nth-child(2) {
          vertical-align: -1px;
  }

  .our-advantages .content-grid .col.right .item:first-child .img {
    height: 170px;
  }

  .our-advantages .content-grid .col.right .item:first-child {
    padding-top: 260px;
  }

  .our-advantages .content-grid .col.left .item:last-child svg {
    display: none;
  }

  .our-advantages .content-grid .col.right .item:last-child {
    padding-top: 140px;
  }

  .our-advantages .content-grid .col.left .item:first-child .subtitle,
  .our-advantages .content-grid .col .item .subtitle {
    font-size: 14px;
  }

  .our-advantages .content-grid .col.left .item:first-child {
    heigth: 260px;
  }

  .our-advantages .content-grid .col .item .partners a {
    width: 130px;
  }

  .our-advantages .background-img {
    background: none;
    display: none;
  }

  .our-advantages .content-grid .col .item .partners {
    padding: 20px 24px;
  }

  .growth-principle {
    padding: 236px 0 100px;
  }

  .growth-principle .background-text {
    font-size: 120px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 4.8px;
    top: 34px;
  }
  
  .growth-principle .custom__title {
      margin-bottom: 14px;
  }

  .growth-principle {
    padding: 176px 0 70px;
  }

    .growth-principle .ellipce {
        width: 100%;
        width: 646px;
        height: 209.151px;
        left: calc(50% - 313px);
        z-index: 1;
        top: -259px;
    }

  .new-client-timeline {
    padding: 70px 0;
  }

  .new-client-timeline .steps {
    gap: 21px;
    overflow: visible;
    max-height: none;
    margin-bottom: 40px;
  }

  .new-client-timeline .label {
    font-size: 18px;
  }

  .new-client-timeline .steps .item-container .chip {
    font-size: 12px;
    padding: 6px 22px;
    font-weight: 700;
    line-height: 130%;
    left: 20px;
  }

  .new-client-timeline .steps .item .head .title {
    font-size: 20px;
    font-weight: 600;
  }

  .new-client-timeline .steps .item {
    padding: 25px 20px;
  }

  .new-client-timeline .steps .item .head .subtitle {
    font-size: 14px;
  }

  .new-client-timeline .steps .item .description,
  .new-client-timeline .steps .item .see-more {
    font-size: 14px;
  }

  .new-client-timeline .steps .item .see-more {
    text-decoration: underline;
  }

  .new-client-timeline .steps .item .bg {
    width: 100px;
  }

  .approach {
    padding: 70px 0;
  }

  .approach .container .links .item .title {
    font-size: 22px;
  }

  .approach .container .links .item .front,
  .approach .container .links .item .back {
    padding: 18px 12px;
  }

  .approach .container .links .item .subtitle {
    font-size: 14px;
  }

  .approach .container .links:before {
    height: calc(100% + 40px);
  }

  .faqs .faq {
    border-radius: 12px 30px 12px 12px;
    padding: 14px 18px;
  }

  .faqs .faq .head {
    font-size: 20px;
  }

  .faqs .faq.active .content {
    font-size: 14px;
  }

  .faqs .faq .arrow {
    right: 20px;
  }

  .faqs .faq .pencil {
    width: 60px;
    right: -20px;
  }

  .faqs .faq .head .pencil svg {
    max-width: 100%;
  }

  .viden-numbers .container .numbers .item {
    gap: 12px;
  }

  .viden-numbers .container .numbers .item {
    padding: 20px 26px;
  }

  .viden-numbers .container .numbers .item .number {
    font-size: 36px;
  }

  .viden-numbers .container .numbers .item:nth-child(1) .description {
    max-width: auto;
  }

  .viden-numbers .pencil {
    bottom: -300px;
  }

  .awards .container .row:first-child .item {
    min-width: 92px;
    max-width: 92px;
  }

  .awards .container .row:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .viden-numbers .container .numbers .item .description {
    font-size: 18px;
  }

  .last-banner {
    padding: 70px 15px;
  }

  .last-banner .title {
    font-size: 28px;
  }

  .last-banner .description {
    width: auto;
    font-size: 18px;
  }

  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }

  .site-footer a {
    font-size: 14px;
  }

  .footer-widget h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .footer-widget:last-child {
    grid-column: 1 / -1;
  }

  .footer-newsletter .newsletter-form .label {
    min-width: 100%;
    font-size: 14px;
  }

  .main-navigation {
    left: 10px;
    padding: 20px;
    top: 60px;
    width: calc(100% - 20px);
  }

  .mega-menu.active {
    padding: 20px;
  }

  .main-navigation .menu .mega-menu-category.active > span {
    padding: 10px 20px;
    font-size: 16px;
  }

  .main-navigation .menu li {
    font-size: 16px;
  }

  .main-navigation a {
    font-size: 16px;
  }

  .mega-menu-banner-content {
    flex-direction: columm;
    gap: 30px;
  }

  .clients-testimonials .team__title {
    display: inline;
  }

  html {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .approach .container .links .item .title {
    margin-top: 12px;
  }

  .approach .container .links .item .caption {
    margin-bottom: 12px;
  }

  .approach .container .links .item {
    height: 120px;
  }

  .approach .container .links .item .back.side {
    padding: 34px 60px 21px 34px;
  }

  .hero-video {
    max-width: 100vw;
    height: auto;
  }

  .approach .container .links .item .front {
    padding: 18px 40px;
  }

  .hero-video video {
    width: 1000px;
    position: absolute;
    height: 400px;
    left: -500px;
  }

  .solutions .grid__wrapper {
    margin-top: 0;
  }

  .solutions .grid__wrapper:before {
    height: calc(100% + 40px);
    left: 20px;
    top: -20px;
    width: calc(100% - 40px);
    border-radius: 22px;
    transform: none;
  }

  .our-advantages .content-grid .col,
  .our-advantages .content-grid .col.left {
    padding: 0;
  }

  .our-advantages .content-grid .col.left .item:first-child {
    height: 300px;
  }

  .our-advantages .content-grid .col.left .item:last-child .img {
    position: absolute;
    bottom: -20%;
    width: 100%;
    left: -20%;
  }

  .our-advantages .content-grid .col.left .item:last-child svg {
    display: block;
    bottom: -100px;
    left: -20px;
    width: 300px;
    height: 300px;
  }

  .our-advantages .content-grid .col.right .item:first-child {
    padding-top: 220px;
  }

  .our-advantages .content-grid .col.left .item:last-child {
    height: 330px;
  }

  .see-more-toggle {
    display: none;
  }
  .new-client-timeline .steps .item .see-more-toggle:checked ~ .description {
    -webkit-line-clamp: unset;
  }

  .new-client-timeline .steps .item .see-more-toggle:checked ~ .see-more {
    display: none;
  }

  .new-client-timeline .steps .item .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .new-client-timeline .steps .item .see-more {
    display: inline;
    font-weight: 600;
  }

  .approach .container .links {
    padding: 0;
  }

  .approach .container .links .item .front {
    padding: 18px 12px;
  }

  .approach .container .links .item .title {
    margin-top: 0;
  }

  .approach .container .links .item .content {
    max-width: 240px;
  }

  .approach .container .links .item .back.side {
    padding: 20px 60px 21px 20px;
  }

  .faqs .faq {
    border-radius: 12px 30px 12px 12px;
    padding: 14px 40px 14px 18px;
  }

  .viden-numbers .gradient {
    bottom: 200px;
    display: none;
  }

  .viden-numbers .container-block {
    padding-bottom: 130px;
  }

  .footer-newsletter .newsletter-form input {
    grid-row-start: 2;
    width: 241px;
  }

  .new-client-timeline .steps {
    padding-top: 0;
    margin-top: 55px;
  }

  .new-client-timeline {
    padding-bottom: 0;
    margin-bottom: 70px;
  }

  .new-client-timeline .steps .item .see-more-conatiner {
    max-width: 100%;
  }

  .solutions .grid__item.analytics .row .links {
    flex-direction: column;
  }

  .team-bg {
    top: -130px;
  }

  .hero-caption {
    margin-bottom: 20px;
  }

  .solutions .grid__item:nth-child(2) .links {
    flex-direction: row;
    margin-bottom: 50px;
  }

  .solutions .grid__item:nth-child(3) .button {
    margin-bottom: 50px;
  }

  .solutions .grid__item .button {
    padding: 8px 20px;
    white-space: nowrap;
  }
  .our-projects .photo:not(.photo-mobile) {
    display: none;
  }
  .carousel__item .photo.photo-mobile {
    display: flex;
  }
  
  .solutions .grid__item.analytics {
      margin-top: 0;
  }
  
  .viden-numbers .container .numbers .item .description {
      margin-bottom: 0;
      font-size: 18px;
      line-height: 120%;
        font-weight: 500;
      text-align: left;
  }
  
    .viden-numbers .container .numbers .item:nth-child(1) {
      max-width: 278px;
  }
  
    .viden-numbers .container .numbers .item:nth-child(2) {
      max-width: 314px;
  }
  
    .viden-numbers .container .numbers .item:nth-child(3) {
      max-width: 262px;
  }
    .viden-numbers .container .numbers .item:nth-child(4) {
      max-width: 314px;
  }
  
  .viden-numbers .container .numbers .item:nth-child(5) {
      max-width: 272px;
  }
  
  .viden-numbers .container .numbers .item {
      gap: 10px;
  }
  
  .viden-numbers .pencil {
        transform: scale(1.5);
        bottom: 80px;
  }
  
  .approach .container .links:before {
        height: calc(100% + 20px);
        width: calc(100% - 40px);
        top: -10px;
        left: 20px;
        border-radius: 40px;
  }
  
  .growth-principle .custom__title {
      max-width: 580px;
  }
  
  .growth-principle .background-text {
    width: 410px;
    left: calc(50% - 205px);
  }
  
  .our-advantages .content-grid .col.left .item:last-child .img {
      display: none;
  }
  
      .our-advantages .content-grid .col.left .item:last-child .img.mobile {
        display: block;
        bottom: 0;
        left: 0;
        width: 326px;
        height: 200px;
    }
    
    .our-advantages .content-grid .col.left .item:last-child svg {
        display: block;
        bottom: -54px;
        left: -75px;
        width: 300px;
        height: 300px;
    }
    
    .solutions .grid__item:nth-child(1) {
        padding-bottom: 63px;
    }
    
    .solutions .grid__item:nth-child(1) .subtitle {
        max-width: 270px;
    }
    
    .solutions .grid__item:nth-child(1) .image {
        transform: scale(1.1);
        bottom: -36px;
        right: 5px;
        width: 93px;
        height: 217px;
        object-fit: contain;
    }
    
    .solutions .grid__item:nth-child(3) .button {
        margin-bottom: 84px;
    }
    
    .solutions .grid__item .line {
        right: auto;
        left: 50px;
        height: 88px;
        width: 200px;
        object-fit: contain;
    }
    
    .solutions .grid__item .line svg {
        width: 100%;
        object-fit: contain;
    }
    
    .solutions .grid__item.performance .image {
        width: 210px;
        height: 180px;
        object-fit: contain;
        bottom: -2px;
        background-position: bottom;
    }
    
    .awards .container .row:first-child {
        max-width: 100%;
        gap: 0 10px;
    }
    
    .awards .container .row:last-child {
        gap: 10px;
    }
    
    .awards .container .row:last-child {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    .awards .container .row:last-child .item img  {
        object-fit: contain;
    }
    .awards .container .row:last-child .item:nth-child(1),
    .awards .container .row:last-child .item:nth-child(2),
    .awards .container .row:last-child .item:nth-child(1) img,
    .awards .container .row:last-child .item:nth-child(2) img {
        height: 44px;
        min-width: 130px;
         max-width: 130px;
    }
    .awards .container .row:last-child .item:nth-child(3),
    .awards .container .row:last-child .item:nth-child(3) img {
        height: 54px;
        min-width: 123px;
        max-width: 123px;
    }
    .awards .container .row:last-child .item:nth-child(4),
    .awards .container .row:last-child .item:nth-child(4) img {
        height: 44px;
        min-width: 156px;
        max-width: 156px;
    }
    
    .approach .container .links {
        gap: 10px;
    }
    
    
  .carousel {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .carousel__item {
    min-height: 250px;
  }

  .carousel__item .content {
    flex: 1;
  }
  
  .clients-testimonials .team__title {
      max-width: 300px;
  }
  
  .marquee img {
      height: 33px;
  }
  
  .hero-section .hero-wrapper {
      padding-bottom: 45px;
  }
  
  .team__list .team__item:nth-child(1) .team__photo {
      margin-top: -16px;
  }
}