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

@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #FF0000;
  --white: #fff;
  --black: #000;
  --gilroy: "Gilroy";
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--gilroy);
  line-height: 1.2;
  max-width: 1920px;
  margin: 0 auto;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

/* start style  */
.title {
  color: #202020;
  letter-spacing: 1px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
}

.title span {
  color: var(--primary-color);
}

.title.white {
  color: #fff;
}

section {
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  section {
    padding-inline: 0;
  }
}

.slider-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
}
.slider-pagination-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
}
.slider-pagination-dots span.swiper-pagination-bullet-active, .slider-pagination-dots span.active {
  background-color: #202020;
}

/* image with text style start */
.image-with-text {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
@media screen and (max-width: 991.98px) {
  .image-with-text {
    margin-bottom: 50px;
  }
}

.text-video {
  padding: 24px 0px;
}

.text-video video {
  width: 100%;
  aspect-ratio: 410/464;
  object-fit: cover;
  border-radius: 20px;
}

.image-with-content {
  align-items: center;
  height: 100%;
  padding: 20px 120px;
  display: flex;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  max-width: 880px;
}

@media screen and (max-width: 991px) {
  .image-with-content {
    border-left: none;
    padding: 0;
    padding-bottom: 50px;
  }
}
.image-with-content h2 {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
}

.image-with-content p {
  color: #000;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 400;
}

/* image with text style close */
/* how-we-build style start */
.how-we-build {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}

.how-we-build .col-lg-4 {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.build-box {
  position: sticky;
  top: 105px;
  background: #000;
  color: #fff;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 280px;
  margin: 20px 20px;
  overflow: hidden;
}
.build-box::after {
  content: "";
  background-color: #fff;
  width: 50px;
  height: 100px;
  position: absolute;
  bottom: -40px;
  right: -20px;
  transform: rotate(40deg);
}

.build-box h2 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 40px);
  text-transform: uppercase;
}

.build-box h2 span {
  font-size: clamp(30px, 3vw, 40px);
  color: var(--primary-color);
}

.build-box span {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  text-transform: uppercase;
}

.how-we-service {
  position: relative;
  margin-top: 100px;
}

.how-we-service-item {
  display: flex;
  margin: 80px 0px;
  align-items: center;
  gap: 20px;
}

.how-we-service-item-icon {
  width: 50%;
}

.how-we-service-item-content h3 {
  font-weight: 500;
  font-size: 24px;
}

.how-we-service-item-content p {
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: 16px;
}

.how-we-service-item-content {
  max-width: 450px;
}

@media screen and (max-width: 991px) {
  .how-we-service-item {
    margin: 50px 0px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .how-we-service {
    margin-top: 50px;
  }
  .how-we-service-item img {
    width: 100%;
  }
  .how-we-service-item-icon {
    width: 100%;
  }
  .build-box {
    margin: 0;
    gap: 200px;
    padding: 24px 20px;
  }
}
/* how-we-build style close */
/* web development services style start */
.web-development-services-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
}

.web-development__tab {
  position: relative;
  padding: 12px 40px;
  border-radius: 16px;
  transition: 0.8s;
}

.web-development__tab.active {
  position: relative;
  background: #F4F4F4;
  transition: all 0.3s ease-in-out;
}

.web-development__question {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  gap: 20px;
  cursor: pointer;
}

.web-development__question img {
  max-width: 30px;
  max-height: 30px;
  transition: all 0.5s ease-in-out;
}

.web-development__question .rotate {
  transform: rotate(45deg);
}

.web-development__question > div {
  display: flex;
  gap: 10px;
}

.web-development__question > div span {
  margin-top: 5px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: clamp(14px, 3vw, 24px);
}

.web-development__question > div h2 {
  color: #000;
  font-size: clamp(22px, 3vw, 52px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.web-development__answer {
  position: relative;
  margin: 0 30px;
  transition: all 0.3s ease-in-out;
}

.web-development__answer img {
  width: 100%;
}

.web-development__answer p {
  color: #393939;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .web-development__question img {
    max-width: 20px;
    max-height: 20px;
  }
  .web-development__tab {
    position: relative;
    padding: 12px 10px;
    border-radius: 6px;
  }
  .web-development__question {
    margin-bottom: 0px;
  }
  .web-development__answer {
    margin: 0 10px;
  }
  .web-development__answer p {
    margin: 10px 0px;
  }
  .web-development__answer img {
    margin-top: 20px;
  }
}
/* web development services style close */
/* digital products start style */
.digital-products {
  margin-bottom: 100px;
}
@media screen and (max-width: 991.98px) {
  .digital-products {
    margin-bottom: 50px;
  }
}

.digital-product-box {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: unset;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.digital-product-box:hover {
  background: #000;
}

.col-lg-3:last-child .digital-product-box > div {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.digital-product-box > div:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  padding-bottom: 120px;
}

.digital-product-box:hover > div:first-child {
  border-bottom: 1px solid #fff;
}

.digital-product-box > div p {
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.digital-product-box:hover > div p {
  opacity: 1;
}

.digital-product-box:hover p {
  color: #fff;
}

.digital-product-bottom {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.digital-product-bottom h2 {
  font-weight: 600;
  font-size: clamp(24px, 4vw, 60px);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.digital-product-box:hover h2 {
  color: #fff;
}

.digital-product-bottom span {
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.digital-product-box:hover span {
  color: #fff;
}

@media screen and (max-width: 992px) {
  .digital-product-box {
    background-color: #000;
  }
  .digital-product-box > div:first-child {
    border-bottom: 1px solid #fff;
  }
  .digital-product-box > div p {
    opacity: 1;
  }
  .digital-product-box p {
    color: #fff;
  }
  .digital-product-box h2 {
    color: #fff;
  }
  .digital-product-box span {
    color: #fff;
  }
}
/* digital products close style */
/* Awards section style start */
.award-section {
  background-color: #000;
  padding: 50px 0;
  position: relative;
}

.award-section.award-section-1 {
  max-width: 1700px;
  margin: 0 auto 100px auto;
}

.award-section.new {
  padding: 0;
  margin-bottom: 50px;
}

.award-section .section-title-wrapper {
  text-align: start;
  margin: 0;
  padding: 0;
}

.award-section.new .section-title-wrapper {
  padding-inline-start: 15%;
  padding-inline-end: 10%;
}

.award-section-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.award-section.new .award-section-img {
  position: relative;
  left: unset;
  bottom: unset;
  width: 80%;
}

#award-tab {
  margin-bottom: 50px;
}
@media screen and (max-width: 991.98px) {
  #award-tab {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

#award-tab button {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 30px;
}

#award-tab button.active {
  background-color: #fff;
  color: #000;
}

.award-section.new .award-box {
  display: flex;
  flex-wrap: wrap;
}

.award-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6px;
}

.award-box .award-item {
  border: 1px solid rgba(245, 245, 245, 0.166);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.award-box .award-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  opacity: 0.7;
  transition: 0.4s;
}
@media screen and (max-width: 991.98px) {
  .award-box .award-item img {
    height: 70px;
    width: 70px;
  }
}

.award-box .award-item img:hover {
  opacity: 1;
}

@media screen and (max-width: 991.98px) {
  .award-section.new .section-title-wrapper {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}
.logo-horizontal-marquee {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  padding: 30px 0px;
}
.logo-horizontal-marquee.signature {
  padding-bottom: 0;
}
.logo-horizontal-marquee.signature .logo-main {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.logo-horizontal-marquee.signature .logo-main span {
  font-weight: 500;
  font-size: clamp(16px, 3vw, 24px);
  color: #000;
  padding: 20px 35px;
  text-transform: capitalize;
  display: block;
}
@media screen and (max-width: 991.98px) {
  .logo-horizontal-marquee.signature .logo-main span {
    padding: 13px 25px;
  }
}

.logo-horizontal-marquee .horizontal-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: Logomarquee 50s linear infinite;
}
.logo-horizontal-marquee .horizontal-flex.right {
  animation: LogomarqueeRight 50s linear infinite;
}

@keyframes Logomarquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes LogomarqueeRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.logo-horizontal-marquee span {
  font-weight: 600;
  font-size: clamp(26px, 4vw, 52px);
  color: #7c7878;
  display: flex;
  text-transform: uppercase;
  gap: 20px;
  align-items: center;
  width: max-content;
}
@media screen and (max-width: 991.98px) {
  .logo-horizontal-marquee span img {
    width: 30px;
  }
}

/* Awards section style close */
.our-signature {
  padding-top: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 991.98px) {
  .our-signature {
    margin-bottom: 50px;
  }
}

.faq-section .title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
}

.faq-parent {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-question {
  display: flex;
  gap: 20px;
  color: #202020;
  font-size: clamp(16px, 4vw, 18px);
  text-transform: capitalize;
  align-items: center;
  cursor: pointer;
}
.faq-question img {
  width: 20px;
  transition: 0.3s linear;
}
.faq-question img.rotate {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 20px 0;
  margin-left: 42px;
  max-width: 660px;
  margin-bottom: 0;
  color: #393939;
  font-size: 16px;
  font-weight: 400;
}

.text-with-video {
  margin: 50px 0px;
}
@media screen and (max-width: 991.98px) {
  .text-with-video {
    margin: 30px 0px;
  }
}
.text-with-video h4 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  row-gap: 0px;
}
@media screen and (max-width: 991.98px) {
  .text-with-video h4 {
    row-gap: 15px;
    text-align: center;
  }
}
.text-with-video h4 video {
  width: 270px;
  height: 118px;
  object-fit: cover;
}

.website-redesign-main {
  padding: 70px 0;
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main {
  position: relative;
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main .badge-absalute {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main .badge-absalute span {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  border-radius: 4px;
  padding: 3px 12px;
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main .badge-absalute span.before {
  border: solid 1px var(--black);
  color: var(--black);
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main .badge-absalute span.after {
  border: solid 1px var(--black);
  background: var(--black);
  color: var(--white);
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: unset;
}
.website-redesign-main.logo-design .tab-content-main .tab-img-main .project-img .before-after-slide .logo-design-img-main .img-1 {
  position: unset;
  width: 100%;
}
.website-redesign-main .heading-main {
  max-width: 450px;
  margin: 0 auto 40px;
  text-align: center;
}
.website-redesign-main .tab-main {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
.website-redesign-main .tab-main ul {
  display: flex;
  align-items: center;
  padding: 0 20px;
  overflow: auto;
  padding-bottom: 20px;
}
.website-redesign-main .tab-main ul li {
  position: relative;
  cursor: pointer;
  padding-bottom: 20px;
  min-width: 100px;
}
.website-redesign-main .tab-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  transition: 0.5s all;
}
.website-redesign-main .tab-main ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.5px;
  width: 5px;
  height: 5px;
  transition: 0.5s all;
  transform: translateX(-50%) rotate(-45deg);
  border-left: 5px solid transparent;
}
.website-redesign-main .tab-main ul li.active::before {
  width: 100%;
  background: var(--primary-color);
}
.website-redesign-main .tab-main ul li.active::after {
  border-color: var(--primary-color);
}
.website-redesign-main .tab-main ul li:last-child img {
  border-right: 0;
}
.website-redesign-main .tab-main ul li img {
  width: 100%;
  height: auto;
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}
.website-redesign-main .tab-content-main .tab-img-main:not(:nth-child(1)) {
  display: none;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img {
  position: relative;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide {
  width: 100%;
  aspect-ratio: 1108/554;
  background-color: #ddd;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .img-1 {
  position: absolute;
  inset: 0;
  width: var(--position);
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .before-after-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .before-after-slider-line {
  position: absolute;
  inset: 0;
  width: 0.1rem;
  height: 100%;
  background-color: var(--white);
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .before-after-slider-button {
  position: absolute;
  border: solid 2px var(--white);
  background-color: transparent;
  backdrop-filter: blur(10.3960285187px);
  color: black;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5);
}
@media screen and (max-width: 500px) {
  .website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .before-after-slider-button {
    width: 40px;
    height: 40px;
  }
}
.website-redesign-main .tab-content-main .tab-img-main .project-img .before-after-slide .before-after-slider-button img {
  width: 46px;
  object-fit: contain;
}

@property --gradient-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.flexible-stack-main {
  background: var(--black);
  padding: 70px 0 100px;
  overflow: hidden;
  margin-bottom: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.flexible-stack-main .heading-main {
  max-width: 450px;
  margin: 0 auto 100px;
  text-align: center;
}
.flexible-stack-main .flexible-marquee-main {
  position: relative;
}
.flexible-stack-main .flexible-marquee-main .marquee-left-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  gap: 40px;
}
.flexible-stack-main .flexible-marquee-main .marquee-left-main.right .marquee-left {
  animation: RightStackLogomarquee 50s linear infinite;
}
.flexible-stack-main .flexible-marquee-main .marquee-left-main .marquee-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: LeftStackLogomarquee 50s linear infinite;
}
.flexible-stack-main .flexible-marquee-main .marquee-left-main .marquee-left .stack-img-main .img-main {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0px 0px 12px 1px rgb(0, 0, 0) inset;
  background: linear-gradient(129.3deg, rgba(180, 180, 180, 0.1904) 0%, rgba(0, 0, 0, 0.34) 36.49%, rgba(0, 0, 0, 0.34) 62.15%, rgba(180, 180, 180, 0.1904) 98.78%);
}
.flexible-stack-main .flexible-marquee-main .marquee-left-main .marquee-left .stack-img-main .img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--gradient-angle), rgba(0, 0, 0, 0) 0deg, rgba(180, 180, 180, 0.56) 15deg, rgba(180, 180, 180, 0.56) 30deg, rgba(180, 180, 180, 0.56) 45deg, rgba(180, 180, 180, 0.56) 60deg, rgba(180, 180, 180, 0.56) 75deg, rgba(180, 180, 180, 0.56) 90deg, rgba(0, 0, 0, 0) 110deg, rgba(0, 0, 0, 0) 360deg);
  animation: rotateBorder 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.flexible-stack-main .flexible-marquee-main .stack-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flexible-stack-main .flexible-marquee-main .stack-center-img img {
  min-width: 283px;
  height: 220px;
}
@media screen and (max-width: 500px) {
  .flexible-stack-main .flexible-marquee-main .stack-center-img img {
    width: 180px;
  }
}
@media screen and (max-width: 991.98px) {
  .flexible-stack-main {
    margin-bottom: 50px;
  }
}

@keyframes LeftStackLogomarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes RightStackLogomarquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotateBorder {
  from {
    --gradient-angle: 0deg;
  }
  to {
    --gradient-angle: 360deg;
  }
}
.get-growth-main {
  overflow: hidden;
}
.get-growth-main .heading-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.get-growth-main .heading-main .title {
  font-size: clamp(42px, 7vw, 80px);
}
.get-growth-main .heading-main .instagram-main {
  border: 1px solid rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  border-radius: 10px;
  height: 80px;
}
.get-growth-main .get-growth-marquee-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.get-growth-main .get-growth-marquee-main .get-growth-marquee {
  display: flex;
  gap: 12px;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: Socialmarquee 60s linear infinite;
}
.get-growth-main .get-growth-marquee-main .get-growth-marquee .growth-marquee-img {
  min-width: 218px;
}
.get-growth-main .get-growth-marquee-main .get-growth-marquee .growth-marquee-img img,
.get-growth-main .get-growth-marquee-main .get-growth-marquee .growth-marquee-img video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 218/260;
  border-radius: 8px;
}

@keyframes Socialmarquee {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.turning-plans {
  padding-block: 50px;
}
.turning-plans .animated-btn .icon-txt {
  filter: brightness(0) invert(0);
}
.turning-plans .turning-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}
.turning-plans .turning-plan-card {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  transition: 0.5s ease-in-out;
}
.turning-plans .turning-plan-card img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.turning-plans .turning-plan-card .turning-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 32px 20px;
  height: 361px;
  width: 100%;
}
.turning-plans .turning-plan-card .turning-card span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #202020;
  z-index: 2;
}
.turning-plans .turning-plan-card .turning-card .content-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.turning-plans .turning-plan-card .turning-card .content-bottom span {
  font-weight: 500;
  font-size: clamp(20px, 3vw, 32px);
  color: #202020;
  line-height: 1.2;
  margin-bottom: 10px;
}
.turning-plans .turning-plan-card .turning-card .content-bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #959595;
}
.turning-plans .turning-plan-card:hover img {
  z-index: 1;
  opacity: 1;
}
.turning-plans .turning-plan-card:hover span {
  color: #fff;
}
.turning-plans .turning-plan-card:hover .content-bottom span {
  color: #fff;
}
.turning-plans .turning-plan-card:hover .content-bottom p {
  color: #fff;
}
.turning-plans .slider-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}
.turning-plans .slider-pagination .OurClientsSayPrev,
.turning-plans .slider-pagination .OurClientsSayNext {
  cursor: pointer;
}

.dg-world-card-section {
  padding: 100px 0;
}
.dg-world-card-section .primary-title {
  font-weight: 500;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 1px;
}
.dg-world-card-section .primary-title span {
  color: #e80a0a;
}
.dg-world-card-section .dg-world-card {
  border: 1px;
  border-top: 0px;
  border-color: rgba(0, 0, 0, 0.1019607843);
  border-style: solid;
  padding: 20px 10px;
}
.dg-world-card-section .dg-world-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dg-world-card-section .dg-world-card .top span {
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--black);
}
.dg-world-card-section .dg-world-card .image-box {
  border-radius: 12px;
  overflow: hidden;
}
.dg-world-card-section .dg-world-card .image-box img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.dg-world-card-section .dg-world-card .bottom {
  margin-top: 30px;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.2;
  letter-spacing: 0px;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dg-world-card-section .dg-world-card:hover img {
  scale: 1.1;
}
.dg-world-card-section .dg-world-card:first-child {
  border-left: 0px;
}
.dg-world-card-section .slider-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}
.dg-world-card-section .slider-pagination .OurClientsSayPrev,
.dg-world-card-section .slider-pagination .OurClientsSayNext {
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
