/* ../../images/img/Bg_back.webp will be converted to ../images/img/Bg_back.png */



/* ------ Contents of styles.css ------ */

@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-RegularDEMO.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --timeline-gap: 1.6rem;
  --common-spacing: 4rem;
  --get-bg-color: #8100d1;
  --bg-transition-value: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --color-transition-value: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 16px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: auto !important;
}

/* Loader Background */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #045458;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

/* Fade out class */
#loader.fade-out {
  opacity: 0;
}

/* Spinner */
.spinner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-inner{
  border-radius: 50%;
  box-shadow: 0 0 1px rgba(37, 37, 37, 0.3);
}

.loader-image {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 5px 2px #2699fb;
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 1px 5px 2px #2699fb;
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 1px 5px 2px #0456c8;
  }
}


body {
  /* background: #121921; */
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

body.is-modal-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

@property --p-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --p-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

.gradient-bg {
  background-image:
    radial-gradient(at var(--p-1) var(--p-2), var(--color-1) 0px, transparent 55%),
    radial-gradient(at var(--p-2) var(--p-1), var(--color-2) 0px, transparent 55%), radial-gradient(at 100% var(--p-2), var(--color-3) 0px, transparent 55%);

  background-color: var(--bg-color);
  animation: rotateColors 12s linear infinite;
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.06); */
  transition: transform 0.3s ease;
  height: auto;
}

@keyframes rotateColors {
  0% {
    --p-1: 0%;
    --p-2: 50%;
    filter: hue-rotate(0deg);
  }
  25% {
    --p-1: 50%;
    --p-2: 100%;
  }
  50% {
    --p-1: 100%;
    --p-2: 50%;
    filter: hue-rotate(20deg);
  }
  75% {
    --p-1: 50%;
    --p-2: 0%;
  }
  100% {
    --p-1: 0%;
    --p-2: 50%;
    filter: hue-rotate(0deg);
  }
}

.box-1 {
  --bg-color: #c183e7;
  --color-1: #df66dd;
  --color-2: #d5719e;
  --color-3: #edb299;
}

/* .box-1 {
    --bg-color: var(--get-bg-color);
    --color-1: #B500B2; 
    --color-2: #FF52A0;
    --color-3: #FFA47F;
} */

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

p {
  font-family: "Poppins";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Recoleta", serif;
}

.common-spacing {
  padding: var(--common-spacing) 0;
}
.common-spacing-top {
  padding-top: var(--common-spacing);
}

.common-spacing-bottom {
  padding-bottom: calc(var(--common-spacing) / 2.5);
}

.common-spacing-bottom2 {
  padding-bottom: var(--common-spacing);
}

.common-spacing-extra,
.common-spacing-min-extra {
  padding-top: calc(var(--common-spacing) + 4rem);
}

.common-spacing-extra2 {
  padding-top: calc(var(--common-spacing) + 1.5rem);
}

.common-spacing-extra-for-amazon-ppc {
  padding-top: calc(var(--common-spacing) + 1rem);
}

main {
  /* margin-top: 5rem; */
  background: #121921;
  transition: var(--bg-transition-value);
}

main.bg-color-active {
  background: #ffffff;
}

.container {
  max-width: 90rem;
  width: 90%;
  margin: 0 auto;
}

.first-bg {
  background: #045458;
  transition: var(--bg-transition-value);
}

.first-bg.bg-color-active {
  background-color: #121921;
}

#back {
  position: relative;
  height: auto;
  z-index: 1;
}

#back::before {
  content: "";
  position: absolute;
  left: var(--x, 5%);
  top: var(--y, 5%);
  background: #28abb2;
  filter: blur(130px);
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
}

#back.bg-color-active::before {
  background: transparent;
}

#bg-color-change-tigger {
  height: 1px;
  background: transparent;
}

.hero-container {
  width: 100%;
  /* background: linear-gradient(to bottom, #1f3c5a 0%, #224f79 25%, #215a95 40%, #295789 55%, #121921 85%, #121921 100%); */
}

.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0 0 0;
  gap: 3.2rem;
}

.hero-1 {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  font-family: "Recoleta", serif;
  gap: 18px;
  width: 100%;
}

.launch-dominate-btn {
  background: #d3ffd0;
  color: #000000;
  opacity: 0.9;
  border: none;
  width: auto;
  padding: 4px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Recoleta";
  font-size: clamp(15px, 2.5vw, 23px);
  font-weight: 300;
  margin-bottom: 7px;
  width: max-content;
}

.hero-1 h1 {
  font-family: "Recoleta", serif;
}

.scalable-amazon {
  color: #fefeff;
  opacity: 0.9;
  font-size: clamp(1.3rem, 3vw, 34px);
  font-weight: 400;
  font-family: "Recoleta";
}

.scalable-amazon span {
  font-size: clamp(2.9rem, 5vw, 5.8125rem);
  font-weight: normal;
  /* background: linear-gradient(to bottom, white 0%, white 25%, #61FFE6 50%, #008871 100%); */
  background: linear-gradient(180deg, #61ffe6 24.94%, #008871 86.73%);

  line-height: 0.9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-1 p {
  color: #ffffff;
  opacity: 0.9;
  /* font-size: clamp(15px, 3vw, 1.45rem); */
  font-size: clamp(0.875rem, 2vw, 1.46dvw);
  font-weight: 400;
  font-family: "Poppins";
  line-height: 1.5;
  /* text-align: justify; */
}

.get-started-btn {
  background: #ffffff;
  color: #000;
  font-family: sans-serif;
  font-size: clamp(13px, 2.5vw, 1rem);
  font-weight: 700;
  border: none;
  padding: 4px 0px 4px 15px;
  border-radius: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.animation-btn {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.btn-arrow {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 700;
  color: transparent;
  border-radius: 50%;
  background: black;
  padding: 5px;
  z-index: 3;
  overflow: hidden;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  margin-left: 8px;
}

.btn-arrow::before {
  content: "→";
  position: absolute;
  color: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.btn-arrow::after {
  content: "→";
  position: absolute;
  color: #fff;
  transform: translateX(-150%);
  opacity: 0;
  transition:
    transform 0.3s ease 0.3s,
    opacity 0.3s ease 0.3s;
}

.animation-btn:hover .btn-arrow::before {
  transform: translateX(150%);
  opacity: 0;
}

.animation-btn:hover .btn-arrow::after {
  transform: translateX(0);
  opacity: 1;
}

.btn-arrow::before {
  transition:
    transform 0.3s ease 0.1s,
    opacity 0.1s ease 0.1s;
}

.animation-btn:hover .btn-arrow::before {
  transition:
    transform 0.1s ease,
    opacity 0.1s ease;
}

.btn-arrow::after {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.animation-btn:hover .btn-arrow::after {
  transition:
    transform 0.5s ease 0.1s,
    opacity 0.3s ease 0.1s;
}
.animation-btn:hover .btn-arrow::after {
  transform: translateX(0);
  opacity: 1;
  color: #fff;
}
.animation-btn::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 28px;
  height: 28px;
  background: black;
  border-radius: 50%;
  transition: transform 0.8s ease;
  z-index: 1;
}

.animation-btn:hover .btn-text {
  color: #fff;
}
.animation-btn:hover i {
  color: #fff;
  z-index: 2;
}

.animation-btn:hover::before {
  transform: translateY(-50%) scale(20);
  border-color: #ffdc00;
}

.hero-2 {
  max-width: 100%;
}

.img-cover {
  display: none;
}

/* Revenue Section */
.reveneue-section {
  color: #fefeff;
}

.item-list {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.item-list-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.revenue-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.revenue-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.item-list-content .revenue-icon h2 {
  font-size: clamp(1.9rem, 4vw, 70px);
  font-weight: 700;
  font-family: "Recoleta", serif;
  background: linear-gradient(180deg, #60ffe6 0%, #048d76 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.item-list-content p {
  font-size: clamp(12px, 1vw, 1rem);
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: white;
  opacity: 0.9;
  margin-bottom: 0;
}

/* New Timeline Section  */
#tergeting-section {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

#tergeting-section__container {
  position: relative;
  width: 100%;
}

.timeline-section-header{
  margin-bottom: 5vw;
}

.timeline-section-header h2 {
  font-family: "Recoleta", serif;
  font-size: clamp(1.25rem, 4vw, 4rem);
  font-weight: 400;
  background: linear-gradient(180deg, #61ffe6 14.94%, #038c75 85.06%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  transition: var(--bg-transition-value);
}

#tergeting-section.bg-color-active .timeline-section-header h2 {
  background: linear-gradient(to bottom, #a0b6fd 0%, #7aa9fd 40%, #559dfd 60%, #1f8afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-section .new-timeline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7dvw;
  align-items: center;
}

.timeline-section .new-timeline .timeline-image-wrapper {
    height: 35dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-section .new-timeline .timeline-image-wrapper .timeline-images {
    position: relative;
    width: 100%;
    height: 100% !important;
}

.timeline-section .new-timeline .timeline-image-wrapper .timeline-images img {
  position: absolute !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-section .new-timeline .timeline-content-wrapper {
  width: 100%;
  height: 50%;
}

.timeline-section .new-timeline .timeline-content-wrapper .timeline-content {
  height: 30dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-bottom: 0;
}


.timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item:nth-child(1) {
  margin-top: 0;
}

.timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item h4 {
  font-family: "Recoleta", serif;
  font-size: clamp(18px, 3.4vw, 2.3dvw);
  font-weight: 400;
  background: linear-gradient(180deg, #61ffe6 14.94%, #038c75 85.06%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* #tergeting-section.bg-color-active .timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item h4 {
  background: linear-gradient(to bottom, #a0b6fd 0%, #7aa9fd 40%, #559dfd 60%, #1f8afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item p {
  color: #ffffff;
  /* font-size: clamp(0.8rem, 2vw, 1.45rem); */
  font-size: clamp(0.8rem, 2vw, 1.46dvw);
}

.timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item h4::before {
  content: none;
}

.timeline-section .new-timeline .timeline-line {
  position: relative;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.2);
  height: 2px;
  margin: auto 0;
}

.timeline-section .new-timeline .timeline-line .timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 0%;
  height: 100%;
  transition: width 0.3s ease;
}

.timeline-section .new-timeline .timeline-line .dot {
  width: 12px;
  height: 12px;
  background-color: #555555;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  cursor: pointer;
}

.timeline-section .new-timeline .timeline-line .dot.active {
  background: linear-gradient(180deg, #61ffe6 14.94%, #038c75 85.06%);
  box-shadow: 0 0 0 10px rgba(97, 255, 230, 0.2);
  border: none; 
}

.timeline-section .new-timeline .timeline-line .dot.isFinished {
  background-color: #ffffff;
}

.timeline-section .new-timeline .timeline-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 80px;
  z-index: 0;
}

.timeline-section .new-timeline .timeline-line::before {
  content: none;
}

/* New Timeline Section end  */

/* Optimization Section */

.horizontal-scroll-bg {
  /* background: linear-gradient(to bottom, var(--get-bg-color), #121921); */
  background: #121921;
  position: relative;
  z-index: 1;
  /* padding-top: 3.5%; */
}

/* .horizontal-scroll-bg {
  background: linear-gradient(to bottom, #0F051D, #000000);
} */

.optimization-container {
  height: 100dvh;
  width: 100%;
}

.optimization-container-title {
  font-family: "Recoleta", serif;
  font-size: clamp(1.1rem, 4vw, 4rem);
  font-weight: 400;
  background: linear-gradient(to bottom, #a0b6fd 0%, #7aa9fd 40%, #559dfd 60%, #1f8afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.panel__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  height: 95%;
  color: #fefeff;
  position: relative;
}

.panel__card--one {
  background: #f3ffde;
}
.panel__card--two {
  background: #ffb8b0;
}
.panel__card--three {
  background: #ffedac;
}
.panel__card--four {
  background: #bdf7ff;
}
.panel__card--five {
  background: #c9fff7;
}
.panel__card--six {
  background: #d6dcfd;
}

.panel__stack .panel__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  border-radius: 30px;
  /* padding: 17% 5% 10%; */
  padding: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3dvw;
  will-change: transform;
}

.listing-optimization-desc {
  width: 100%;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 0.5rem;
  /* container-type: size; */
  /* justify-content: space-between; */
}

.listing-title-div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.listing-title-div img {
  width: 6.5%;
}

.listing-optimization-desc h2 {
  font-family: "Recoleta", serif;
  font-size: clamp(22px, 3.4vw, 2.3dvw);
  font-weight: 300;
  color: #000000;
  opacity: 0.9;
}

.listing-optimization-desc-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.listing-optimization-desc h3 {
  font-family: "Recoleta", serif;
  font-size: clamp(22px, 3.4vw, 2.3dvw);
  /* font-size: 2.3dvw; */
  font-weight: 700;
  color: #000000;
  text-transform: capitalize;
}

.spacial_fi_letters_space{
  margin-left: -7px;
  text-transform: lowercase;
}

.spacial_fi_letters_space2{
  margin-left: -4px;
  text-transform: lowercase;
}

.listing-optimization-desc-content p {
  font-family: Poppins, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1.46dvw);
  /* font-size: 1.46dvw; */
  font-weight: 300;
  color: #000000;
}

.lets-talk-btn-desktop {
  display: none;
}

.lets-talk-btn-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
}

.lets-talk-btn {
  /* background: #ffdc00; */
  color: #000;
  width: 100%;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-family: "Poppins";
  font-weight: 800;
  border: none;
  padding: 5% 7.3%;
  /* border: 2px solid #ffdc00; */
  border-radius: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}

.panel__card--one .lets-talk-btn {
  background: #a1d744;
  color: #467e1a !important;
}
.panel__card--two .lets-talk-btn {
  background: #ff8458;
  color: #862328 !important;
}
.panel__card--three .lets-talk-btn {
  background: #facc15;
  color: #865123 !important;
}
.panel__card--four .lets-talk-btn {
  background: #76ebfb;
  color: #236586 !important;
}
.panel__card--five .lets-talk-btn {
  background: #57e6d8;
  color: #1a7e53 !important;
}
.panel__card--six .lets-talk-btn {
  background: #9aabff;
  color: #233386 !important;
}

.panel__card-image {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel__card-image .panel__card-image_container {
  width: 100%;
  height: 100%;
  padding: 3%;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 2rem;
  overflow: hidden;
}

.panel__card--one .panel__card-image .panel__card-image_container {
  background: linear-gradient(128.13deg, #8fc235 0%, #c8eb8a 50.48%, #8fc235 100%);
}
.panel__card--two .panel__card-image .panel__card-image_container {
  background: linear-gradient(127.98deg, #eb6040 1.28%, #f0a286 50.64%, #e26636 100%);
}
.panel__card--three .panel__card-image .panel__card-image_container {
  background: linear-gradient(128.35deg, #ecb910 0%, #f9e766 48.38%, #ecb910 97.69%);
}
.panel__card--four .panel__card-image .panel__card-image_container {
  background: linear-gradient(127.73deg, #25bfd5 0.62%, #98d4dd 50.31%, rgba(37, 191, 213, 0.858824) 100%);
}
.panel__card--five .panel__card-image .panel__card-image_container {
  background: linear-gradient(128.13deg, #19c7ab 0%, #7deedd 50%, #19c7ab 100%);
}
.panel__card--six .panel__card-image .panel__card-image_container {
  background: linear-gradient(127.94deg, #6982de 3.52%, #a5b9e6 50.05%, #6982de 98.57%);
}

.panel__card-image .panel__card-image_container img {
  height: 100%;
  object-fit: contain;
}

/* Case Study Titles Section */

.sticky-parent {
  position: relative;
}

.case-study-titles {
  padding: 0px 0 4% 0;
  width: 100%;
}

.case-study-title h2 {
  font-family: "Recoleta", serif;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 300;
  background: linear-gradient(to bottom, #a0b6fd 0%, #7aa9fd 40%, #559dfd 60%, #1f8afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.case-study-title p {
  font-family: "Poppins";
  font-size: clamp(0.85rem, 3vw, 1.5rem);
  font-weight: 300;
  color: white;
  margin-top: 0;
  opacity: 0.9;
}

.horizontal {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.case-study-container {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #05214b 0%, #133c9f 40%, #194cc4 70%, #36abdb 100%);
  padding: 20px;
  border-radius: 10px;
}

.case-study-container-1 {
  /* background: linear-gradient(104.41deg, #cba57d 0%, #e4d5c0 27.26%, #ae875b 74.48%, #b79a72 98.68%); */
  background: linear-gradient(104.41deg, #7FB0B8 0%, #D4E3E5 33%, #3F7F89 69.38%, #6599A1 98.68%);
}

.case-study-container-2 {
  /* background: linear-gradient(103.64deg, #88a382 0%, #b1d177 28.18%, #8da981 76.53%, #8ba681 96.06%); */
  background: linear-gradient(103.64deg, #715691 0%, #C6B8E0 30.99%, #6B4991 75.27%, #6C4E8E 96.06%);
}

.case-study-container-3 {
  /* background: linear-gradient(104.41deg, #9b8a76 2.59%, #d3cbc4 28.24%, #d3cbc4 60.05%, #9b8a76 86.67%); */
  background: linear-gradient(104.41deg, #999383 2.59%, #D2CBB7 28.24%, #867E73 51.91%, #554A3C 92.84%);
}

/* .case-study-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 55%;
  pointer-events: none;
  border-radius: 10px 0 0 0;

  border-top: 3px solid #526685;
  border-left: 3px solid #526685;

  mask: linear-gradient(to right, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to bottom, #fff 0%, #fff 80%, transparent 100%);
  mask-composite: intersect;
  mask: linear-gradient(to right, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to bottom, #fff 0%, #fff 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask: linear-gradient(to right, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to bottom, #fff 0%, #fff 80%, transparent 100%);
  -webkit-mask-composite: source-in;
} */

.case-study-container-text {
  width: 100%;
}

.case-study-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(to bottom, #fafbff 0%, #d8fcff 40%, #c3fdff 60%, #8affff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 3%;
  font-family: "Recoleta";
  font-weight: 300;
}

.case-study-header h2,
.case-study-header h3 {
  font-family: "Recoleta", serif;
  font-size: clamp(0.85rem, 2vw, 1.4375rem);
  font-weight: 400;
}

.case-study-container-1 h2,
.case-study-container-1 h3 {
  color:#0D6370 !important;
}

.case-study-container-2 h2,
.case-study-container-2 h3 {
  color: #1B0832 !important;
}

.case-study-container-3 h2,
.case-study-container-3 h3 {
  color: #5E4B36 !important;
}

.case-study-header div img {
  width: 100%;
  height: 25px;
}

.case-study-growth-image-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.case-study-growth-left-side {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.case-study-desc h2,
.case-study-desc h3 {
  /* color: #fafbff; */
  opacity: 0.9;
  font-family: "Recoleta", serif;
  font-size: clamp(1.3rem, 5vw, 2.7vw);
  font-weight: 300;
  margin: 0;
  width: 100%;
  letter-spacing: 0px;
}

.case-study-desc h3 .percentage,
.case-study-desc h3 .percentage {
  font-family: "Poppins";
}

.case-study-line {
  width: 100%;
  height: 2px;
  /* background: #d9d9d9; */
  opacity: 49%;
  margin: 10px 0px;
}

.case-study-container-1 .case-study-line {
  background: #0D6370;
}

.case-study-container-2 .case-study-line {
  background: #1B0832;
}

.case-study-container-3 .case-study-line {
  background: #5E4B36;
}

.growth-percentage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.growth-percentage div {
  display: flex;
  flex-direction: column;
}

.growth-percentage h3 {
  /* background: linear-gradient(to bottom, #41d3d9 0%, #38bfe3 40%, #2da9ee 60%, #1f8afd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-family: "Recoleta", serif;
  font-size: clamp(1.5rem, 5vw, 3.6vw);
  font-weight: 200;
  margin-bottom: 0px;
  line-height: 100%;
}

.case-study-container-1 .growth-percentage h3 {
  background: linear-gradient(180deg, #49D4E9 0%, #0D6270 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-study-container-2 .growth-percentage h3 {
  background: linear-gradient(180deg, #884DF8 0%, #1B0832 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-study-container-3 .growth-percentage h3 {
  background: linear-gradient(180deg, #77624b 0%, #5e4b36 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-percentage h3 span {
  font-family: "Poppins";
  font-weight: 400;
}

.growth-percentage p {
  margin: 0;
  color: #fff;
  font-family: "Recoleta-bold";
  font-size: clamp(1rem, 2.5vw, 1vw);
  font-weight: 100;
}

.case-study-container-1 .growth-percentage p {
  color: #0D6370;
}

.case-study-container-2 .growth-percentage p {
  color: #1B0832;
}

.case-study-container-3 .growth-percentage p {
  color: #433321;
}

.growth-desc p {
  color: #fff;
  opacity: 0.9;
  font-family: Poppins;
  font-size: clamp(0.90rem, 1.5vw, 1rem);
  font-weight: 300;
}

.case-study-container-1 .growth-desc p {
  color: #06444D;
}

.case-study-container-2 .growth-desc p {
  color: #04280C;
}

.case-study-container-3 .growth-desc p {
  color: #3D3327;
}

.our-impact-btn button {
  /* background: #ffdc00; */
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-family: "Poppins";
  font-weight: 700;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.case-study-container-1 .our-impact-btn button,
.case-study-container-1 .fake-review-inner {
  /* background: #73543a; */
  background: #288D9C;
}

.case-study-container-2 .our-impact-btn button,
.case-study-container-2 .fake-review-inner {
  background: #522089;
}

.case-study-container-3 .our-impact-btn button,
.case-study-container-3 .fake-review-inner {
  background: #5E4938;
}

.our-impact-btn button span {
  margin-left: 10px;
}

.our-impact-btn button span img {
  width: 22px;
  height: auto;
  /* margin-top: 6px; */
}

.case-study-container-img-body {
  position: relative;
  width: 100%;
}

.case-study-container-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.case-study-container-img .case-study-img {
  width: 65%;
  height: 236px;
  object-fit: fill;
  border-radius: 10px;
  display: none;
}

.fake-review {
  border-radius: 10px;
  padding: 2px;
}

.case-study-container-1 .fake-review {
  /* background: linear-gradient(95.78deg, #e1d0ba 0%, #6c4b32 50.08%, #e1d1bb 100%); */
  background: linear-gradient(95.78deg, #A8ECF7 0%, #098294 50.08%, #B4EFF7 100%);
}
.case-study-container-2 .fake-review {
  background: linear-gradient(95.78deg, #6908D8 0%, #1B0832 50.08%, #884DF8 100%);
}
.case-study-container-3 .fake-review {
  background: linear-gradient(95.78deg, #E1D0BA 0%, #6C4B32 50.08%, #E1D1BB 100%);
}

.fake-review-inner {
  position: relative;
  border-radius: 10px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .fake-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 55%;
  pointer-events: none;
  border-radius: 10px 0 0 0;
  border-top: 2px solid #2f9094;
  border-left: 2px solid #2f9094;
  mask: linear-gradient(to right, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to bottom, #fff 0%, #fff 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask: linear-gradient(to right, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to bottom, #fff 0%, #fff 80%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.fake-review::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  pointer-events: none;
  border-radius: 0 0 10px 0;
  border-bottom: 2px solid #2f9094;
  border-right: 2px solid #2f9094;
  mask: linear-gradient(to left, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to top, #fff 0%, #fff 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask: linear-gradient(to left, #fff 0%, #fff 80%, transparent 100%), linear-gradient(to top, #fff 0%, #fff 80%, transparent 100%);
  -webkit-mask-composite: source-in;
} */

.review-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fake-review-img {
  height: 40px;
  width: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}

.fake-review-img img {
  height: 100%;
}

.review-card-top div h3 {
  color: #fff !important;
  padding: 0;
  font-size: clamp(15px, 2.5vw, 1.7rem);
  text-align: left;
  font-family: "Recoleta", serif;
}

.review-card-rating {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 2px;
}

.review-card-top p,
.review-card-content p {
  color: #ffffffde;
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-align: left;
  font-family: "Poppins";
}

.review-card-rating p {
  color: #fff;
  opacity: 0.8;
  margin: 0;
  font-size: 12px;
}

.review-card-rating-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-card-rating-img {
  width: 10px;
  height: 10px;
}

/* Amazon PPC Section Top */
.amazon-ppc-card-body {
  position: relative;
}

.amazon-ppc-card {
  padding: 30px 20px;
  background: linear-gradient(to right, #05214b 0%, #133c9f 40%, #194cc4 70%, #1c55c6 100%);
  border-radius: 20px;
  margin: 0 auto;
}

.amazon-ppc-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.amazon-ppc-card-header span {
  color: #0fecee;
}

.amazon-ppc-card h3 {
  position: relative;
  color: white;
  font-family: "Recoleta", serif;
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 400;
  z-index: 20;
  text-align: center;
}

.amazon-ppc-card-stat {
  display: flex;
  justify-content: space-between;
  color: white;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
  text-align: center;
}

.amazon-ppc-card-stat div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.amazon-ppc-card-stat div h3 {
  font-size: 70px;
  font-family: "Recoleta", serif;
  font-weight: normal;
}
.amazon-ppc-card-stat div h3 .percentage {
  font-family: "Poppins";
}

.amazon-ppc-card-stat div p {
  font-size: 16px;
  font-family: "Poppins";
  margin: 0;
  color: #adb6c1;
}

.amazon-ppc-card-stat-line {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  opacity: 49%;
}

.amazon-ppc-card-ratings {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

.amazon-ppc-card-ratings-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
  gap: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(80px);
  text-decoration: none;
  cursor: pointer;
}

.amazon-ppc-card-ratings-img {
  width: 100px;
  height: 40px;
}

.amazon-ppc-card-ratings-img img {
  width: 100px;
  height: 100%;
  object-fit: contain;
}

.amazon-ppc-card-ratings-stars {
  display: flex;
  gap: 6px;
  align-items: center;
}

.amazon-ppc-card-star-img {
  height: 16px;
  width: 16px;
}

.amazon-ppc-card-ratings div p {
  font-size: 12px;
  font-family: "Poppins";
  color: #fff;
  opacity: 0.9;
  margin: 0;
}

.amazon-ppc-card-ratings-description {
  display: flex;
  gap: 2px;
}

/* will remove later */

/* .amazon-ppc-card-bg {
  width: 100%;
  height: 50%;
  background: #121921;
  position: absolute;
  bottom: -1px;
  z-index: -1;
  transition: var(--bg-transition-value);
}

.amazon-ppc-card-bg.bg-color-active {
  background: white;
} */

/* will remove later end */

/* Amazon PPC Section Middle */

.amazon-section {
  /* background: #121921; */
  /* transition: var(--bg-transition-value); */
}

/* .amazon-section.bg-color-active {
  background: white;
} */

.amazon-container {
}

.amazon-container-header h2 {
  font-family: "Recoleta", serif;
  font-weight: 300;
  color: #082c6b;
  font-size: clamp(36px, 5vw, 50px);
  margin-bottom: 10px;
}

.amazon-container-header h3 {
  font-family: "Recoleta", serif;
  font-weight: 400;
  font-size: 24px;
  color: #131921;
  opacity: 0.8;
}

.amazon-content-img {
  display: none;
}


/* Common css for fade section */
.fade-top,
.fade-bottom,
.fade-bottom-removeable {
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
}

.fade-top {
  background: linear-gradient(to bottom, #fff 35%, rgba(255, 255, 255, 0) 100%);
}

.fade-bottom,
.fade-bottom-removeable {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.remove-fade-bottom {
  display: none;
}

/* Common css for fade section end*/

/* Amazon PPC Section Middle amazon keyword*/
.amazon-keyword {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.amazon-keyword header h2,
.amazon-keyword2 header h2 {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: normal;
  font-family: "Recoleta", serif;
  font-weight: 300;
  color: #082c6b;
  margin-bottom: 10px;
}

.amazon-keyword header p,
.amazon-keyword2 header p {
  font-family: "Poppins";
  font-size: clamp(0.90rem, 2vw, 1rem);
  line-height: 1.5;
  margin-top: 10px;
  color: #131921;
  opacity: 0.9;
}

.timeline {
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10rem;
}

.timeline-main-image-wrapper {
  display: none;
}

.timeline-item {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: var(--timeline-gap);
  z-index: 10;
}

.timeline-line {
  position: relative;
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  border-left: 2px dotted #d2d2d2;
  margin-top: 2px;
}

.timeline-content .timeline-content-item {
  margin-bottom: 20px;
}

.timeline-content .timeline-content-item > div {
  position: relative;
  transition: all 0.9s ease;
  z-index: 11;
}

.timeline-label {
  font-family: "Rocoleta";
  color: #777;
  margin-bottom: 12px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}

.timeline-label-active {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 0 0;
  text-align: left;
  color: #000;
  cursor: text;
}

.timeline-label::before {
  content: "";
  height: 10px;
  width: 10px;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: calc(-1 * var(--timeline-gap) - 6px);
  transform: translateY(-50%);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.timeline-label-active::before {
  box-shadow: 0 0 16px 10px rgba(0, 100, 255, 1);
}

.timeline-text {
  font-family: "Poppins";
  margin: 12px 0 20px;
  color: #000;
  line-height: 1.5;
  text-align: left;
  font-size: clamp(10px, 2vw, 14px);
  opacity: 0.7;
  max-height: fit-content;
  transition:
    -webkit-clip-path 0.6s ease,
    clip-path 0.6s ease,
    opacity 0.5s ease;
}

.timeline-text-visible {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0) !important;
  clip-path: inset(0 0 0 0) !important;
}

.timeline-image-mobile {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: scale(0.98);
  transition:
    -webkit-clip-path 0.7s ease,
    clip-path 0.7s ease,
    opacity 0.6s ease,
    transform 0.7s ease;
}
.timeline-image-mobile.active {
  display: block;
  max-height: 500px;
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* Amazon PPC Section Middle amazon-advertising */
.amazon-advertising {
  position: relative;
}

.amazon-advertising header {
  /* margin-top: clamp(10px, 5vw, 40px); */
  font-family: "Recoleta", serif;
  font-size: clamp(14px, 5vw, 36px);
  font-weight: 400;
  color: #082c6b;
  text-align: center;
}

.amazon-advertising header h3 {
  font-family: "Recoleta", serif;
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: normal;
  color: white;
  display: inline;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: black;
  line-height: 1.8;
  margin-top: 10px;
  text-align: center;
}

.amazon-advertising header h2 {
  font-family: "Recoleta", serif;
  color: #082c6b;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 70px);
  margin-top: 20px;
  line-height: 1.14;
}

.amazon-advertising header p {
  font-family: "Poppins";
  font-size: clamp(16px, 2vw, 18px);
  font-weight: normal;
  line-height: 1.2;
  margin-top: 10px;
  padding: 0 0;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}

.advertising-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5.5%;
  align-items: center;
  justify-content: space-between;
}

.advertising-card-right {
  flex-direction: column-reverse;
}

.advertising-card-text {
  width: 100%;
  text-align: center;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 10px;
}

.advertising-card-text h2 {
  font-family: "Recoleta", serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  transition: var(--color-transition-value);
}

main.bg-color-active .advertising-card-text h2 {
  color: #082c6b;
}

main .advertising-card-text h2{
  color: #ffffff;
}

.advertising-card-text p {
  font-family: "Poppins";
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.7;
  transition: var(--color-transition-value);
}

main .advertising-card-text p {
  color: #ffffff;
}

main.bg-color-active .advertising-card-text p {
  color: #000000;
}

.advertising-card-image {
  width: 100%;
}

.advertising-card-image img {
  width: 95%;
  margin: 0 auto;
}

/* Amazon PCC Section Bottom */
.amazon-ppc-strategy-container {
  position: relative;
  /* z-index: -2; */
  /* background: #ffffff; */
  /* transition: var(--bg-transition-value); */
}

.amazon-ppc-strategy-container.bg-color-active {
  /* background: #121921; */
}

.question-pricing-section{
  /* background: #ffffff; */
  /* transition: var(--bg-transition-value); */
}
.question-pricing-section.bg-color-active{
  /* background: #121921; */
}

/* .amazon-ppc-strategy-container::before {
  content: "";
  position: absolute;
  top: 0;
  height: calc(4rem + 28%);
  width: 100%;
  z-index: -1;
  background: #ffffff;
} */

/* .amazon-ppc-strategy-container.bg-color-active {
  background: #121921;
} */

.amazon-ppc-strategy {
  background: linear-gradient(to right, #05214b 0%, #133c9f 40%, #194cc4 70%, #36abdb 100%);
  border-radius: 20px;
  margin: 0 auto;
}

.amazon-ppc-strategy .amazon-ppc-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-top: 30px;
}

.amazon-ppc-strategy h2 {
  position: relative;
  color: white;
  font-family: "Recoleta", serif;
  font-size: clamp(18px, 5vw, 58px);
  font-weight: 400;
  padding: 0px 10px;
  z-index: 20;
  text-align: center;
}

.amazon-ppc-card-header span {
  color: #0fecee;
}

.ppc-strategy-lets-talk-btn{
  display: flex;
  justify-content: center;
  margin-bottom: var(--common-spacing);
}

.ppc-strategy-lets-talk-btn button {
  width: 60%;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-family: "Poppins";
  font-weight: 800;
  border: none;
  padding: 1.7% 2.5%;
  border-radius: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}

main.bg-color-active .ppc-strategy-lets-talk-btn button {
  background: #000000;
  color: #ffffff;
}

main.bg-color-active .ppc-strategy-lets-talk-btn button {
  background: #000000;
  color: #ffffff;
}

.amazon-ppc-strategy-img {
  width: 100%;
  height: 100%;
}

.amazon-ppc-strategy-img .img-wrapper {
  width: 100%;
  /* margin: 0 auto; */
}

.amazon-ppc-strategy-img .img-wrapper img {
  width: 100%;
}

.ppc-question-header h3 {
  font-size: clamp(26px, 5vw, 64px);
  opacity: 0.9;
  font-weight: normal;
  font-family: "Recoleta", serif;
  margin: 0;
  padding-bottom: clamp(10px, 4vw, 59px);
  text-align: center;
  transition: var(--color-transition-value);
}

main.bg-color-active .ppc-question-header h3 {
  color: #000000;
}

main .ppc-question-header h3 {
  color: #ffffff;
}

/* Amazon Advertising Pricing */
.amazon-advertising-pricing-section {
  position: relative;
}

/* .amazon-advertising-pricing-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: #121921;
  transition: var(--bg-transition-value);
} */

/* .amazon-advertising-pricing-section.bg-color-active::before {
  background: #ffffff;
} */

.amazon-advertising-pricing {
  position: relative;
  margin-bottom: 50px;
}

.amazon-advertising-pricing-text {
  position: absolute;
  top: 10%;
  left: 7%;
}

.amazon-advertising-pricing-header h2 {
  font-size: clamp(24px, 5vw, 75px);
  color: #00fffc;
  font-weight: normal;
  font-family: "Recoleta", serif;
  margin: 0;
  text-align: left;
}

.amazon-advertising-pricing-header p {
  font-size: clamp(12px, 3vw, 37px);
  color: #fff;
  font-weight: normal;
  font-family: "Recoleta", serif;
  margin: 0;
  text-align: left;
}

.amazon-advertising-pricing-content {
  margin-top: clamp(4px, 10px, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: clamp(2px, 4px, 10px);
}

.amazon-advertising-pricing-content h3 {
  color: #00fffc;
  font-size: clamp(16px, 3vw, 61px);
  font-family: "Recoleta", serif;
  font-weight: normal;
}

.amazon-advertising-pricing-content h4 {
  color: white;
  font-size: clamp(24px, 5vw, 76px);
  font-family: "Recoleta", serif;
  font-weight: normal;
}

.amazon-advertising-pricing-content p {
  color: white;
  font-size: clamp(12px, 2.5vw, 24px);
  font-family: "Poppins", serif;
  font-weight: normal;
}

.amazon-advertising-pricing-content button {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: clamp(10px, 2vw, 20px);
  font-weight: 600;
  background-color: #ffdc00;
  border-radius: 12px;
  border: none;
  padding: clamp(2px, 1vw, 10px) clamp(4px, 2vw, 20px);
  cursor: pointer;
  margin-top: 10px;
}

.amazon-advertising-pricing-img img {
  width: 100%;
  object-fit: fill;
  border-radius: 40px;
}

.teams-logo-img{
  width: 44px;
  height: 44px;
}

@media (min-width: 480px) {
  .lets-talk-btn {
    width: 50%;
    padding: 3.1% 4.3%;
  }

  .amazon-ppc-strategy-container::before {
    height: calc(4rem + 32%);
  }

  .timeline-section .new-timeline .timeline-content-wrapper .timeline-content {
    height: 25dvh;
  }
}

/* Small devices (large phones) */
@media (min-width: 580px) {
  .item-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .revenue-icon img {
    height: 30px;
    width: 30px;
  }

  .timeline-section .new-timeline .timeline-content-wrapper {
    width: 84%;
  }

  .timeline-section .new-timeline .timeline-line {
    width: 70%;
  }

  .timeline-section .new-timeline .timeline-content-wrapper .timeline-content {
    height: 20dvh;
  }

  .timeline {
    flex-direction: row;
    gap: 5.5rem;
    align-items: center;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    margin-top: 2px;
    z-index: 3;
  }

  .timeline-main-image-wrapper {
    display: block;
    width: 50%;
    overflow: hidden;
  }

  .timeline-image-desktop {
    width: 100%;
    border-radius: 16px;
    margin-top: 20px;
  }

  .timeline-item {
    width: 50%;
    position: relative;
  }

  .timeline-image-mobile,
  .timeline-image-mobile.active {
    display: none;
  }

  .advertising-card {
    flex-direction: row;
  }

  .advertising-card-text {
    width: 45%;
    text-align: left;
  }

  .advertising-card-image {
    width: 55%;
  }

  .advertising-card-image img {
    margin: 0;
    margin-left: auto;
  }

  .advertising-card-right .advertising-card-image img {
    margin: 0;
    margin-right: auto;
  }

  .advertising-card-text-right {
    text-align: right;
  }
  .ppc-strategy-lets-talk-btn button {
    width: 40%;
  }
}

@media (min-width: 680px) {
  .panel__stack {
    height: 92%;
  }

  .amazon-ppc-strategy-container::before {
    height: calc(4rem + 36%);
  }
}

/* Tablets */
@media (min-width: 768px) {
  #back{
    height: 100vh;
  }

  .common-spacing-extra-for-amazon-ppc {
    padding-top: calc(var(--common-spacing) + 4rem);
  }
  .hero-body {
    flex-direction: row;
    gap: 4rem;
  }

  .hero-1 {
    max-width: 40%;
    gap: 24px;
  }

  .hero-2 {
    max-width: 60%;
  }

  .btn-arrow {
    width: 38px;
    height: 38px;
  }

  .img-cover {
    display: block;
  }

  .img-cover-mobile {
    display: none;
  }

  .revenue-icon img {
    height: 30px;
    width: 30px;
  }

  /* #tergeting-section {
    height: 100vh;
  } */

  .timeline-section .new-timeline {
    flex-direction: row;
    gap: 0;
    align-items: unset;
  }

  .timeline-section .new-timeline .timeline-image-wrapper {
    height: auto;
    width: 44%;
  }

  .timeline-section .new-timeline .timeline-content-wrapper {
    width: 44%;
    height: max-content;
  }

  .timeline-section .new-timeline .timeline-image-wrapper .timeline-images img {
    height: auto;
  }

  .timeline-section .new-timeline .timeline-content-wrapper .timeline-content {
    height: 350px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  .timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .timeline-section .new-timeline .timeline-line {
    width: 2px;
    flex-direction: column;
    gap: 4dvw;
    height: max-content;
  }

  .timeline-section .new-timeline .timeline-line .timeline-line-progress {
    width: 100%;
    height: 0%;
    transition: height 0.3s ease;
  }

  .case-study-titles {
    padding: 0px 0 1% 0;
  }

  .case-study-container {
    padding: 40px;
  }

  .case-study-header {
    margin-bottom: 1%;
  }

  .case-study-header div img {
    height: 50px;
  }

  .case-study-growth-image-container {
    flex-direction: row;
  }

  .case-study-growth-left-side {
    width: 40%;
  }

  .case-study-container-img-body {
    width: 55%;
  }

  /* .case-study-container-img {
    position: absolute;
    bottom: -15%;
    left: 3.5%;
    width: 95%;
  } */

  .case-study-container-img .case-study-img {
    display: block;
    height: auto;
  }

  .fake-review {
    width: 95%;
  }

  .fake-review-img {
    height: 60px;
    width: 60px;
  }

  .review-card-rating {
    gap: 18px;
    flex-direction: row;
    margin-top: 2px;
  }

  .our-impact-btn {
    margin-top: 1%;
  }

  .amazon-ppc-card {
    height: 630px;
  }

  .amazon-ppc-card-header {
    padding: 30px 0 0 0;
  }

  .amazon-ppc-card-stat {
    flex-direction: row;
    padding: 40px 35px;
    gap: 0;
  }

  .amazon-ppc-card-stat div {
    width: 200px;
  }

  .amazon-ppc-card-stat-line {
    height: 120px;
    width: 2px;
  }

  .amazon-ppc-card-ratings {
    flex-direction: row;
    gap: 10px;
    padding: 0px 90px;
  }

  .amazon-ppc-card-ratings-img {
    width: 80px;
    height: auto;
  }

  .amazon-ppc-strategy-container::before {
    height: calc(4rem + 38%);
  }
}

@media (min-width: 850px) {
  .ppc-strategy-lets-talk-btn button {
    width: 20%;
  }
  .common-spacing-min-extra {
    padding-top: 0;
  }

  .panel__stack {
    height: 88%;
  }

  .panel__stack .panel__card {
    flex-direction: row;
    padding: 4% 4%;
    justify-content: space-between;
  }

  .listing-optimization-desc {
    width: 45%;
    height: 100%;
    justify-content: space-around;
  }

  .panel__card-image {
    width: 50%;
    height: 100%;
    overflow: unset;
  }

  .lets-talk-btn-desktop {
    display: block;
  }

  .lets-talk-btn-mobile {
    display: none;
  }

  .amazon-ppc-section {
    height: 91.5dvh;
  }

  .amazon-keyword2-section {
    height: 93dvh;
  }

  .amazon-content-img {
    display: flex;
    width: 100%;
    gap: 3rem;
  }

  .amazon-keyword2 .amazon-content-img {
    margin-top: 2.5rem;
  }

  .amazon-ppc-wrapper,
  .amazon-keyword2-wrapper {
    position: relative;
    width: 50%;
  }

  .amazon-ppc-content,
  .amazon-keyword2-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    scrollbar-width: none;
    padding-bottom: 300px;
    will-change: transform;
  }

  .amazon-ppc-content-text,
  .amazon-keyword2-content-text {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 30px;
    padding-right: 10px;
  }
  .amazon-ppc-content-text:first-child,
  .amazon-keyword2-content-text:first-child {
    margin-top: 130px;
  }

  .amazon-ppc-content h3,
  .amazon-keyword2-content h3 {
    font-family: "Recoleta", serif;
    font-size: 30px;
    font-weight: 400;
    color: #082c6b;
    margin-bottom: 10px;
  }

  .amazon-ppc-content p,
  .amazon-keyword2-content p {
    font-size: 16px;
    font-family: "Poppins";
    line-height: 1.9;
    margin-right: 13%;
  }

  .amazon-ppc-img,
  .amazon-keyword2-img {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 50%;
    align-items: center;
  }

  .amazon-ppc-img img,
  .amazon-keyword2-img img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
  }

  #ppcImage0,
  #keyImage0 {
    opacity: 1;
  }

  .radial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 131, 254, 0.8) 0%, rgba(11, 131, 254, 0) 70%);
    position: absolute;
    left: -60px;
    z-index: -1;
    filter: blur(40px);
  }

  .ppcImage,
  .keyImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Small laptops */
@media (min-width: 1024px) {
  .gradient-bg {
    height: 100dvh;
  }
  .revenue-icon img {
    width: 40px;
    height: 40px;
  }

  .timeline-section .new-timeline .timeline-content-wrapper {
    height: 400px;
  }

  .timeline-section .new-timeline .timeline-content-wrapper .timeline-content .timeline-content-item:nth-child(1) {
    margin-top: 4%;
  }

  .amazon-ppc-strategy-container::before {
    height: calc(4rem + 40%);
  }
}

/* Desktops */
@media (min-width: 1280px) {
  .revenue-icon img {
    width: 50px;
    height: 50px;
  }
}

/* Large / wide screens */
@media (min-width: 1536px) {
  .common-spacing-bottom {
    padding-bottom: calc(var(--common-spacing) / 1.4);
  }
  .revenue-icon img {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1881px) {
  .amazon-ppc-section {
    height: 85.5dvh;
  }

  .amazon-keyword2-section {
    height: 87dvh;
  }
}


/* ------ Contents of styles.css end ------ */



/* ------ Contents of extra/style.css ------ */

/* @font-face {
  font-family: Raleway;
  src: url(../Font/Raleway-Font/Raleway-Regular.ttf);
}

@font-face {
  font-family: RalewayMedium;
  src: url(../Font/Raleway-Font/Raleway-Medium.ttf);
}

@font-face {
  font-family: RalewayBlod;
  src: url(../Font/Raleway-Font/Raleway-ExtraBold.ttf);
}

@font-face {
  font-family: RalewayBold;
  src: url(../Font/Raleway-Font/Raleway-Bold.ttf);
}

@font-face {
  font-family: RalewayRegular;
  src: url(../Font/Raleway-Font/Raleway-Regular.ttf);
}

@font-face {
  font-family: Aceh;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Regular.ttf);
}

@font-face {
  font-family: AcehBold;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Bold.ttf);
}

@font-face {
  font-family: AcehMedium;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Medium.ttf);
}

@font-face {
  font-family: AcehLight;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Light.ttf);
}

@font-face {
  font-family: AcehSemiBold;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-SemiBold.ttf);
}

@font-face {
  font-family: RalewayBlack;
  src: url(../Font/Raleway-Font/Raleway-Black.ttf);
}

@font-face {
  font-family: AcehRegular;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Regular.ttf);
}

@font-face {
  font-family: AcehThin;
  src: url(../Font/aceh-www.Dfonts.org/Aceh/WEB/Aceh-Thin.ttf);
}

@font-face {
  font-family: InterLight;
  src: url(../Font/Inter/static/Inter-Light.ttf);
} */

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

body {
  overflow-x: hidden;
}

p {
  margin: 0;
} */

.bg {
  background-image: linear-gradient(0deg,
      rgba(10, 10, 10, 0.962),
      rgba(10, 10, 10, 0.977)),
    url(../images/bg.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-attachment: fixed;
}

/* Navigation Start */
.content {
  width: 100%;
  margin: auto;
  padding: 0px 30px;
}

.navber {
  position: sticky;
  z-index: 5;
  width: 100%;
  top: 0;
  padding: 28px 0;
  background-color: rgb(0, 0, 0);
}

.navber .content {
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0vw 5vw;
  justify-content: space-between;
}

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

.navber .logo img {
  padding-right: 7px;
  width: 35px;
}

.navber .logo a {
  font-family: 'Poppins';
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.navber .menu-list {
  display: inline-flex;
  margin-bottom: 0px;
}

.menu-list li {
  list-style: none;
  cursor: pointer;
}

.drawer-layer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 172vh;
  z-index: 2;
}

.drawer-width-add {
  transform: translateX(0vw) !important;
}

.drawer-width-remove {
  transform: translateX(-24vw) !important;
}

.menu-list li a {
  color: rgb(194, 194, 194);
  font-size: 14px;
  font-family: 'Poppins';
  margin-left: 25px;
  line-height: 19px;
  text-decoration: none;
  transition: all 0.5s ease;
}

.menu-list li a:hover {
  color: rgb(255, 255, 255);
}

.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.icon.cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}

/* Navigation End */
/* Scroll Progress */
.scroll-progress {
  width: 0%;
  background-color: #0b83fe;
  height: 5px;
  z-index: 1 !important;
  position: fixed;
  top: 76px;
  left: 0;
}

/* Drawer Start */
menu menu span {
  display: block;
}

.text-logo {
  display: flex;
  width: fit-content;

  flex-direction: column;
  align-content: flex-start;
  justify-content: space-between;
}

.text-logo img {
  width: 1.5vw;
  margin: 1vw 0.6vw;
}

.text-logo p {
  font-size: 16px !important;
  transform: rotate(270deg);
  width: 12vh !important;
  height: 8.5vh;
  font-family: 'Poppins' !important;
  text-align: center;
}

.menuTitel {
  display: flex;
  height: 7vh;
  gap: 4px;
  top: -31px;
  border: #252525 1px solid;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #2d2d2d;
  border-radius: 0px 12px 0px 0px;
}

.menuitem {
  display: flex;
  width: 100%;
  padding: 0px 20px;
  margin-bottom: 20px;
  height: 6vh;
  background-color: #2d2d2d;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
}

.menuitem i {
  font-size: 1.7vh;
}

.menu {
  /* max-height: 70vh; */
  overflow: auto;
}

.left-menu-item {
  padding-left: 20px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-family: Geometria;
  font-size: 1.7vh;
}

.menuTitel img {
  padding: 5px;
  width: 40px;
  height: 40px;
}

p.heading {
  text-align: center;
  text-align: center;
  font-size: 20px;
  line-height: 27px;
  font-family: RalewayBlod;
}

#left-menu,
#left-menu-reset {
  display: none !important;
}

.nav span {
  cursor: default;
}

::-webkit-scrollbar {
  width: 8px;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  height: 100%;
  width: 10px;
  position: relative;
  top: 0;
  right: 100px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: #0b83fe;
  border-radius: 10px;
}

.nav,
.nav .nav {
  min-height: 67vh;
  padding-top: 30px;
  position: fixed;
  top: 120px;
  transition: transform 0.8s ease-in-out;
  width: 24vw;
  z-index: 9;
  border-radius: 12px 12px 12px 0px;
}

.nav.left-navigation,
.nav.left-navigation nav {
  background: #252525;
  color: white;
  left: 0;
  transform: translateX(-24vw);
}

.nav label {
  font-weight: normal;
  margin: 0;
}

.nav label:focus {
  outline: none;
}

.nav label.menu-toggle {
  display: block;
  height: 5vh;
  line-height: 0;
  padding: 0;
  top: 33vh;
  position: absolute;
  text-indent: -99vh;
  width: 2.6vw;
  border-radius: 0 0 15px;
}

.menu-toggle {
  cursor: pointer;
}

.nav label.menu-text {
  display: block;
  height: 25vh;
  line-height: 0;
  padding: 0;
  top: 10vh;
  position: absolute;
  width: 2.6vw;
  border-radius: 0 15px 0 0;
}

.nav.left-navigation label.menu-toggle {
  background: #2D2D2D;
  right: -2.5vw;
}

.nav.left-navigation label.menu-toggle:hover {
  background: #4ea9f6;
}

.nav.left-navigation label.menu-text {
  height: 18vh;
  background: #0b84fe;
  right: -2.5vw;
}

nav.left-navigation label.menu-text>h1 {
  height: 20px;
  color: #f7f7f7;
}

.nav label.menu-toggle>span:after,
.nav label.menu-toggle>span:before {
  background: #e2e2e2;
  display: block;
  height: 3px;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out 0s;
  width: 1.2vh;
  border-radius: 1.2vh;
}

.nav label.menu-toggle>span {
  display: block;
  margin-left: 1.5vh;
  margin-top: 50%;
  position: relative;
}

.nav label.menu-toggle>span:after,
.nav label.menu-toggle>span:before {
  content: "";
  position: absolute;
  transform: rotate(0) translateY(0);
}

.nav label.menu-toggle>span:after {
  transform: rotate(-45deg) translateY(-3px) translateX(6px);
}

.nav label.menu-toggle>span:before {
  transform: rotate(45deg) translateY(0px) translateX(2px);
}

.nav label.menu-toggle {
  margin-top: -5vh;
}

.nav menu {
  margin: 0;
  padding-bottom: 2.5vh;
}

.nav nav label.menu-toggle,
.nav nav label.menu-toggle>span,
.nav nav label.menu-toggle>span:after,
.nav nav label.menu-toggle>span:before {
  background: none !important;
}

input[type="checkbox"]:checked~.nav {
  /* transform: translateX(0); */
}

input[type="checkbox"]:checked~.nav label.menu-toggle>span:after,
input[type="checkbox"]:checked~.nav label.menu-toggle>span:before {
  width: 10px;
  margin-left: 5px;
}

input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:after {
  transform: rotate(45deg) translateY(-6px) translateX(-2px);
}

input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:before {
  transform: rotate(-45deg) translateY(2px) translateX(2px);
}

/* main {
  margin: 0 1.4vw;
} */

.introduction {
  background: #f7f7f7;
  border-radius: 0.5em;
  box-shadow: 0 0.5em 0.5em 0 rgba(153, 153, 153, 1);
  padding: 2em;
}

.nav {
  display: block !important;
}

.drawer-form {
  display: flex;
  align-items: center;
  color: #a1a1a1;
}

.drawer-label {
  flex: 10%;
  padding-bottom: 20px;
  font-size: 16px;
  font-family: Aceh;
}

.drawer-form-body {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
}

.drawer-form-body .iti {
  width: 52%;
  margin-bottom: 20px;
}

.drawer-input {
  width: 100%;
  background: transparent;
  flex: 15%;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 6px 15px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
  color: #afafaf;
}

.drawer-select {
  width: 100%;
  background: #252525;
  color: #a1a1a1;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 10px 15px;
  font-size: 14px;
  font-family: Aceh;
  margin-bottom: 20px;
}

.drawer-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 20px 20px 70px 20px;
  font-size: 14px;
  font-family: Aceh;
  margin-bottom: 20px;
  color: #afafaf;
}

.drawer-btn {
  width: 100%;
  background: #2D2D2D;
  color: white;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 9px 15px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
}

.drawer-input:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.drawer-select:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.drawer-textarea:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.drawer-textarea::-webkit-scrollbar {
  display: none;
}

.nav menu::-webkit-scrollbar {
  display: none;
}

select.select-icon {
  -webkit-appearance: none;
}

.drawer-width-add label.menu-text {
  background: #252525 !important;
}

.drawer-btn:hover {
  background: #0B83FE;
  color: #fff;
}

/* Drawer End */


/* Hero start */

#hero {
  margin-bottom: 150px;
  margin-left: 9vw;
  margin-right: 9vw;
}

.hero-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-section {
  display: flex;
  gap: 10vw;
  justify-content: center;
  align-items: center;
}

.hero-video {
  flex: 50%;
  padding-top: 10vh;
  opacity: 0.8;
}

.hero-video video {
  width: 40vw;
}

.hero-text {
  text-align: end;
  flex: 50%;
  padding-top: 70px;
}

.hero-text p {
  color: #a1a1a1;
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 26px;
  line-height: 40px;
  margin: 0;
}

.hero-text h1 {
  color: #a1a1a1;
  font-size: 40px;
  line-height: 48px;
  font-family: "Recoleta", serif;
  margin: 0;
}

.lineUp h1 span {
  color: #0b83fe;
}

.hero-text .number {
  color: #a1a1a1;
  font-weight: 300;
}

.hero-text-line {
  text-decoration: underline;
}

/* crops animations that exceeds one line area */

/* lineup class and keyframes */

.lineUp {
  animation: 3.8s anim-lineUp ease-out;
  transform: translateY(0%);
}

@keyframes anim-lineUp {
  0% {
    opacity: 0;
    position: relative;
    z-index: -1;
    transform: translateY(40%);
  }

  25% {
    opacity: 1;
    position: relative;

    transform: translateY(10%);
  }

  100% {
    opacity: 1;

    transform: translateY(0%);
  }
}

.hero-button {
  display: flex;
  gap: 2vw;
  justify-content: right;
}

.hero-middle-button {
  margin-top: 40px;
  background: #25272d;
  padding: 10px 20px;
  width: 270px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.hero-middle-button-home:hover {
  background: #0B83FE;
  color: #fff;
}

.hero-middle-button-mobile {
  background: #0B83FE !important;
}

.hero-middle-button .hero-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 32px;
  transition: 0.3s;
  font-family: "AcehRegular";
}

.hero-middle-button .hero-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 0px;
  line-height: 29px;
  color: white;
  font-family: "AcehRegular";
}

.hero-middle-button:hover .hero-middle-btnTwo {
  left: -21px;
}

.hero-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.hero-middle-btnTwo {
  position: relative;
  width: 271px;
  height: 50px;
  margin-top: -42px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  left: -580px;
  transition: 0.7s;
}

.hero-middle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 749px;
  height: 50px;
  position: relative;
}

circle progress bar Start .peogessBarSection {
  width: 20%;
  display: flex;
  text-align: center;
  font-size: 1.1vw;
  color: white;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  font-family: Geometria;
}

@keyframes growProgressBar {

  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.hero-bottom {
  width: 100%;
  display: flex;
  padding-top: 8vh;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.hero-bottom p {
  color: #8e8e8e;
  font-size: 20px;
  font-family: RalewayMedium;
  line-height: 27px;
}

.peogessBarSection {
  text-align: -webkit-center;
}

.circle-progress-bar[role="progressbar"] {
  --size: 5vw;
  --fg: #5aaaff;
  --bg: #0d3e73cd;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side,
      #121212 93%,
      transparent 0 99.99%,
      rgb(0, 0, 0) 0),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 4);
  color: white;
  margin-bottom: 2vw;
}

/* circle progress bar End */
/* Hero End */

/* Sticky Section Start  */

#stickySection {
  width: 100%;
  margin-top: 0vw;
}

.sticky {
  top: 0;
  display: flex;
  margin-top: 0vw;
  padding: 0px 10vw;
  flex-direction: row;
  align-content: center;
  align-items: flex-start;
  justify-content: center;
}

.sticky-right {
  display: flex;
  flex-direction: row;
  margin-top: 0vw;
}

/* PREMIER BLOC */

.container-1 {
  display: flex;
  top: 10vw;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  left: 9vw;
  position: relative;
  bottom: 0;
  height: 100%;
  padding-bottom: 0vw;
  opacity: 0.5;
}

/* DEUXIEME BLOC */

.container-2 {
  top: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  left: 5vw;
  bottom: 0;
  height: 100%;
  padding-bottom: 5vw;
}

/* TROISIEME BLOC */

.container-3 {
  z-index: -1;
  top: 0vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  bottom: 0;
  position: relative;
  padding-bottom: 0vw;
  opacity: 0.5;
}

/* IMAGES */

.image {
  min-width: 120%;
  height: 100%;
  overflow: hidden;
  padding: 1vw 0;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s ease;
}

.laptop {
  margin: 0.67vw 0vw 0vw 0.5vw;
  max-width: 29vw;
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  max-height: 16.5vw;
  max-height: 16.5vw;
}

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

.sticky-left {
  color: white;
  margin: 0;
  width: 50%;
  justify-content: center;
  top: 15vh;
  position: sticky;
}

.mouse-img {
  margin-top: -4vw;
  padding: 0.2vw 11vw 0vw 1vw;
  width: 2vw;
  float: right;
  height: 4.7vw;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
}

img#mouse-img {
  padding: 1.5vw;
  max-width: 6.7vw !important;
  min-width: 6.7vw !important;
}

.mouse-text {
  position: relative;
  bottom: 4.7vw;
  left: 1.8vw;
  z-index: -1;
  transition: all 0.3s ease-out;
}

.mouse-text p {
  font-size: 0.9vw !important;
}

.mouse-img:hover .mouse-text {
  bottom: 3vw;
  left: 2vw;
  transform: scale(0.8, 0.8);
}

img#mouse-img:hover {
  transform: rotate(-5deg);
}

.mouse-img:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.sticky-left p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 40px;
  color: #afafaf;
  margin: 0;
}

.sticky-left h1 {
  font-size: 42px;
  font-family: RalewayBlod;
  line-height: 44px;
  margin-bottom: 70px;
  color: #afafaf;
}

.sticky-left h1 span {
  color: #0b84fe;
}

.sticky-left img {
  min-width: 30vw;
}

/* ----------------------- FAQ ------------------ */

.faq-container {
  padding-left: 9vw;
  padding-right: 9vw;
  margin-top: 80px;
  margin-bottom: 30px;
}

.faq-row {
  display: flex;
  gap: 100px;
}

.faq-left {
  flex: 30%;
}

.faq-right {
  flex: 65%;
}

.faq-left-header h1 {
  font-size: 40px;
  line-height: 44px;
  font-family: RalewayBlod;
  color: #cdd1d9;
  margin-bottom: 40px;
}

.faq-left-header h1 span {
  color: #0b83fe;
}

.faq-left-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #afafaf;
}

/* ---------------- */

.faq-middle-button {
  margin-top: 40px;
  background: #25272d;
  padding: 10px 20px;
  width: 287px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.faq-middle-button .faq-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 29px;
  transition: 0.3s;
  font-family: "Aceh";
}

.faq-middle-button .faq-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 0px;
  line-height: 29px;
  color: white;
  font-family: "Aceh";
}

.faq-middle-button:hover .faq-middle-btnTwo {
  left: -21px;
}

.faq-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.faq-middle-btnTwo {
  position: relative;
  width: 287px;
  height: 50px;
  margin-top: -40px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  left: -580px;
  transition: 0.7s;
}

.faq-middle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 749px;
  height: 50px;
  position: relative;
}

/* ----------------- */

.faq-right-position {
  position: relative;
  height: 690px;
  padding-top: 90px;
  padding-bottom: 70px;
  background-color: #208dfd;
  border-radius: 30px;
  margin-right: 120px;
  transition: margin-right 1s;
}

.faq-question {
  position: absolute;
  right: -71px;
  transition: right 1s;
}

.faq-question-2 {
  position: absolute;
  right: -71px;
  top: 170px;
  transition: right 1s, top 1s;
}

.faq-question-3 {
  position: absolute;
  right: -71px;
  top: 277px;
  transition: right 1s, top 1s;
}

.faq-question-4 {
  position: absolute;
  right: -71px;
  top: 384px;
  transition: right 1s, top 1s;
}

.faq-question-5 {
  position: absolute;
  right: -71px;
  top: 490px;
  transition: right 1s, top 1s;
}

.faq-question-6 {
  position: absolute;
  right: -71px;
  top: 590px;
  transition: right 1s, top 1s;
}

.question {
  background-color: white;
  position: relative;
  padding: 2px 0;
  margin-left: 70px;
  border-radius: 25px;
  margin-bottom: 30px;
  width: 41vw;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.question p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #707070;
  padding: 12px 55px 12px 30px;
}

.btn-image {
  position: absolute;
  top: 14px;
  right: 19px;
  border: none;
  background: white;
  background-image: url("../images/icon/plus-icon.png");
  width: 31px;
  height: 31px;
  background-repeat: no-repeat;
  transition: background-image 0.5s;
}

.btn-image.minus {
  position: absolute;
  top: 14px;
  right: 19px;
  border: none;
  background: white;
  background-image: url("../images/icon/minus-icon.png");
  width: 31px;
  height: 31px;
  background-repeat: no-repeat;
}

.faq-expand {
  margin-right: 80px;
}

.button-position {
  right: 62px;
  top: 85px;
}

.answer1 {
  padding-top: 1px;
  margin-bottom: 16px;
  display: none;
  border-top: 1px solid rgba(17, 17, 26, 0.1);
}

/* -------------- A+ designer ---------- */

.designer-container {
  margin-left: 9vw;
  margin-right: 9vw;
}

.designer-row {
  display: flex;
  gap: 8vw;
}

.designer-left {
  flex: 60%;
  margin-top: 200px;
  margin-bottom: 125px;
}

.designer-left img {
  height: 100%;
  width: 100%;
}

.designer-right {
  flex: 40%;
  margin-top: 250px;
  margin-bottom: 125px;
  color: #afafaf;
}

.designer-top-p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 40px;
  color: #afafaf;
  margin: 0px;
}

.designer-h2 {
  font-size: 40px;
  font-family: RalewayBlod;
  line-height: 44px;
  margin-bottom: 33px;
  margin-right: 3vw;
}

.designer-h2 span {
  color: #0b83fe;
}

.designer-bottom-p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #afafaf;
  margin: 0;
}

.designer-bottom-p b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.designer-bottom-p-m b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.designer-bottom-p-m {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #afafaf;
  margin-bottom: 20px;
}

.designer-button {
  display: flex;
  gap: 2vw;
}

.designer-middle-button {
  margin-top: 40px;
  background: #25272d;
  padding: 11px 20px;
  width: 204px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.designer-middle-button .designer-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 29px;
  transition: 0.3s;
  font-family: "Aceh";
}

.designer-middle-button .designer-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 0px;
  line-height: 29px;
  color: white;
  font-family: "Aceh";
}

.designer-middle-button:hover .designer-middle-btnTwo {
  left: -21px;
}

.designer-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.designer-middle-btnTwo {
  position: relative;
  width: 205px;
  height: 50px;
  margin-top: -40px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  left: -580px;
  transition: 0.7s;
}

.designer-middle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 749px;
  height: 50px;
  position: relative;
}

/* ------------- Spit -------------*/

.split-container {
  margin-left: 9vw;
  margin-right: 9vw;
}

.split-row {
  display: flex;
  gap: 8vw;
}

.split-left {
  flex: 40%;
  margin-top: 150px;
  margin-bottom: 125px;
  color: #afafaf;
}

.split-left ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.split-right {
  flex: 60%;
  margin-top: 125px;
  margin-bottom: 125px;
}

.split-right img {
  height: 100%;
  width: 100%;
}

/* --------------------in-house team-------------------- */

.in-house-container {
  margin-left: 9vw;
  margin-right: 9vw;
}

.in-house-row {
  display: flex;
  gap: 8vw;
}

.in-house-left {
  flex: 40%;
  margin-top: 40px;
  margin-bottom: 125px;
  color: #afafaf;
}

.in-house-right {
  flex: 60%;
  margin-top: 0px;
  margin-bottom: 125px;
  display: flex;
  align-self: center;
  justify-content: space-around;
}

.in-house-right img {
  height: 252px;
  width: 445px;
}

/* ------------- copy right free images ------------------ */

.free-images-container {
  margin-left: 9vw;
  margin-right: 9vw;
}

.free-images-row {
  display: flex;
  gap: 8vw;
}

.free-images-left {
  flex: 40%;
  margin-top: 150px;
  margin-bottom: 125px;
  color: #afafaf;
}

.free-images-left ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.free-images-right {
  flex: 60%;
  margin-top: 50px;
  margin-bottom: 125px;
  display: flex;
  align-self: center;
  justify-content: space-around;
  font-family: Aceh;
}

.wrapper .outer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
}

.wrapper .card {
  width: 730px;
  display: flex;
  align-items: start;
  font-weight: 300;
  padding: 0px;
  font-size: 37px;
  line-height: 49px;
  font-family: Aceh;
  margin-bottom: 0px !important;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  color: #afafaf;
  justify-content: space-between;
  background-color: transparent;
  border: transparent;
  animation: animate 14s linear infinite;
  animation-delay: calc(3s * var(--delay));
}

.outer:hover .card {
  animation-play-state: paused;
}

.wrapper .card:last-child {
  animation-delay: calc(-3s * var(--delay));
}

@keyframes animate {
  0% {
    opacity: 0.5;
    transform: translateY(200%);
  }

  25% {
    pointer-events: auto;
    transform: translateY(100%);
    color: #afafaf;

    background-color: transparent;
  }

  30% {
    pointer-events: auto;
    color: #afafaf;
    background-color: transparent;
  }

  45% {
    pointer-events: auto;
    transform: translateY(20%);
    color: #afafaf;
  }

  50% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%);
    font-weight: 500;
    color: #0231dd;
    font-size: 37px;
    line-height: 49px;
    font-family: Aceh;
  }

  55% {
    pointer-events: auto;
    transform: translateY(-20%);

    color: #afafaf;
  }

  60% {
    color: #afafaf;
    pointer-events: auto;
    background-color: transparent;
  }

  75% {
    color: #afafaf;

    pointer-events: auto;
    transform: translateY(-100%);
    background-color: transparent;
  }

  100% {
    opacity: 0.5;
    background-color: "";
    transform: translateY(-200%);
  }
}

.delay {
  animation: delay 4.5s linear;
}

@keyframes delay {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  40% {
    opacity: 0.5;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  82% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

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

.wrapper .card .img {
  height: 90px;
  width: 90px;
  position: absolute;
  left: -5px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.card .img img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card .details {
  margin-left: 300px;
  margin-bottom: 20px;
}

.details span {
  font-weight: 600;
  font-size: 18px;
}

.card a {
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%);
  transition: all 0.3s ease;
}

.card a:hover {
  transform: scale(0.94);
}

.fifth_flex {
  display: flex !important;
  flex-direction: row;
}

.fifth_flex_p {
  place-self: center;
  font-size: 37px;
  line-height: 49px;
  color: #afafaf;
  margin-top: -20px;
  margin-right: 70px;
}

/* -------------- Where to begin ------------------ */

.where-container {
  margin-bottom: 150px;
}

.where-row {
  display: flex;
}

.where-left {
  flex: 50%;
  background-color: white;
  padding-top: 145px;
  padding-left: 115px;
}

.where-left-step-1 img {
  height: 100%;
  width: 100%;
}

.where-right {
  flex: 50%;
  background-color: #208dfd;
  color: white;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 150px;
  padding-right: 100px;
}

.where-right-header h2 {
  font-size: 40px;
  font-family: RalewayBlod;
}

.where-right-header p {
  font-size: 30px;
  font-family: Aceh;
}

.where-right-step-1 {
  font-size: 30px;
  font-family: Aceh;
  line-height: 37px;
  color: white;
}

.where-right-step-1-p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.where-right-body p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  margin: 0;
}

.where-button {
  display: flex;
  gap: 2vw;
}

.where-middle-button {
  margin-top: 40px;
  background: white;
  padding: 10px 20px;
  width: 160px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.where-middle-button .where-middle-btnText {
  font-size: 22px;
  color: black;
  line-height: 29px;
  transition: 0.3s;
  font-family: AcehRegular;
}

.where-middle-button .where-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 0px;
  line-height: 29px;
  color: white;
  font-family: AcehRegular;
}

 
.where-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.where-middle-btnTwo {
  position: relative;
  width: 161px;
  height: 51px;
  margin-top: -40px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #25272d;
  left: -580px;
  transition: 0.7s;
}

.where-next-btn {
  display: none;
}

.hiddenBtn {
  display: block;
}

.image2 {
  display: none;
}

.imageId {
  display: block;
  transition: 1s;
}

/* ----------- Creative services ----------- */

.creative-container {
  margin-left: 9vw;
  margin-right: 9vw;
}

.creative-row {
  display: flex;
  gap: 10vw;
}

.creative-left {
  flex: 50%;
  margin-bottom: 200px;
}

.creative-left-header h2 {
  color: white;
  font-size: 40px;
  line-height: 44px;
  font-family: RalewayBlod;
  margin-bottom: 70px;
}

.creative-left-header span {
  color: #0b83fe;
}

.creative-left img {
  height: 80%;
  width: 100%;
}

.creative-right {
  flex: 50%;
  font-size: 18px;
  line-height: 24px;
  font-family: Aceh;
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  position: relative;
  margin-bottom: 200px;
}

.creative-right p {
  color: #afafaf;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}

.creative-box {
  height: 110px;
  width: 110px;
  background-color: #1d1e22;
  transition: background-color 0.5s;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.creative-icon-1 {
  position: absolute;
  text-align: -webkit-center;
  top: 10px;
  left: 0;
}

@keyframes icon-1 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 10px;
    left: 0;
  }
}

.creative-icon-2 {
  position: absolute;
  text-align: -webkit-center;
  top: 10px;
  left: 13.5vw;
}

@keyframes icon-2 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 10px;
    left: 13.5vw;
  }
}

.creative-icon-3 {
  position: absolute;
  text-align: -webkit-center;
  top: 10px;
  left: 27vw;
}

@keyframes icon-3 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 10px;
    left: 27vw;
  }
}

.creative-icon-4 {
  position: absolute;
  text-align: -webkit-center;
  top: 230px;
  left: 0px;
}

@keyframes icon-4 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 230px;
    left: 0px;
  }
}

.creative-icon-5 {
  position: absolute;
  text-align: -webkit-center;
  top: 230px;
  left: 13.5vw;
  z-index: 1;
}

.creative-icon-6 {
  position: absolute;
  text-align: -webkit-center;
  top: 230px;
  left: 27vw;
}

@keyframes icon-6 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 230px;
    left: 27vw;
  }
}

.creative-icon-7 {
  position: absolute;
  text-align: -webkit-center;
  top: 450px;
  left: 0px;
}

@keyframes icon-7 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 450px;
    left: 0px;
  }
}

.creative-icon-8 {
  position: absolute;
  text-align: -webkit-center;
  top: 450px;
  left: 13.5vw;
}

@keyframes icon-8 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 450px;
    left: 13.5vw;
  }
}

.creative-icon-9 {
  position: absolute;
  text-align: -webkit-center;
  top: 450px;
  left: 25vw;
}

@keyframes icon-9 {
  0% {
    top: 230px;
    left: 13.5vw;
  }

  100% {
    top: 450px;
    left: 25vw;
  }
}

.link-text {
  text-decoration: none;
  color: white;
}

.creative-box:hover {
  background: #0b83fe;
  transition: background-color 0.5s;
}

/* -------- for modal ------------ */

.modal-layer {
  background-color: #ffffff42;
}

.modal-bg {
  background-color: #010101;
  padding-left: 5vw;
  padding-top: 4vh;
  padding-bottom: 2vw;
  padding-right: 5vh;
}

.modal-container {
  margin-right: 40px;
}

.header-modal p {
  color: #a1a1a1;
  font-size: 28px;
  font-family: 'Montserrat';
  line-height: 37px;
}

.btn-modal-cros {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.header-modal h2 {
  color: #0b83fe;
  font-size: 40px;
  font-family: RalewayBlod;
  line-height: 53px;
  margin-bottom: 35px;
}

.align-modal {
  text-align: center;
}

.modal-middle-input {
  width: 430px;
  height: 48px;
  background: transparent;
  color: white;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 0px 20px;
  font-family: "AcehLight";
}

.modal-middle-textarea {
  width: 430px;
  height: 90px;
  background: transparent;
  color: white;
  border: 1px solid #2f2f2f;
  border-radius: 10px 10px 10px 10px;
  padding: 15px 20px;
  font-family: "AcehLight";
}

.modal-middle-input:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.input-modal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.input-modal label {
  font-size: 16px;
  line-height: 16px;
  color: #a1a1a1;
  font-family: AcehRegular;
}

.analysis-select select {
  width: 430px;
  outline: none;
  border: 1px solid #2f2f2f;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 3px 0px;
  padding: 20px;
  color: #4d4d4d;
  font-size: 18px;
  font-family: "AcehLight";
  background: transparent;
  border-radius: 10px;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, #2f2f2f 50%),
    linear-gradient(135deg, #2f2f2f 50%, transparent 50%),
    linear-gradient(to right, rgb(73, 76, 76), rgb(9, 22, 24));
  background-position: calc(100% - 36px) calc(20px + 6px),
    calc(100% - 31px) calc(20px + 6px), calc(100% - 65px) 17px;
  background-size: 5px 5px, 5px 5px, 2px 30px;
  background-repeat: no-repeat;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.analysis-option-desing {
  padding-top: 20px;
  padding-bottom: 20px;
}

.modal-button {
  display: flex;
  gap: 2vw;
  justify-content: center;
}

.designer-middle-button.margin-button {
  margin-top: 15px;
}

.modal-middle-textarea:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

#pet-select:focus {
  background: #010101;
}

.body-modal.modal-size-modify {
  margin-right: 58px;
  margin-left: 15px;
}

.modal-lg {
  max-width: 975px !important;
}

/* Sticky Section End */

.hide-on-desktop {
  display: none;
}

.hide-on-tab {
  display: none;
}

.show-on-desktop {
  display: block !important;
}

.show-on-tab {
  display: none;
}


.why-left-body p {
  text-align: justify !important;
  line-break: auto !important;
}

.e-commerce-body p {
  text-align: justify !important;
  line-break: auto !important;
}

.trust-body p {
  text-align: justify !important;
  line-break: auto !important;
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
}

.clinet-right-body p {
  text-align: justify !important;
  line-break: auto !important;
}



.bg-two {
  background-image: linear-gradient(0deg, rgba(10, 10, 10, 0.962), rgba(10, 10, 10, 0.977));
}


/* Contact Page */

.contact-container-hero {
  padding: 210px;
  position: relative;
  top: -76px;
}

.data-contact-bg-color {
  background-image: linear-gradient(to right, #4C0AA3 0%, #327BF8 100%);
}

.contact-row {
  display: flex;
  width: 80%;
  margin: auto;
}

.contact-heading {
  margin: 0 auto;
}

.contact-heading h2 {
  color: #000;
  font-size: 35px;
  font-family: RalewayBlod;
  text-align: center;
  margin-bottom: 10vh;
}

.contact-form-row {
  display: flex;
  gap: 8vw;
  width: 80%;
  margin: auto;
  padding-bottom: 10vh;
}

.contact-form-left {
  flex: 50%;
}

.contact-form-left h3 {
  font-size: 20px;
  font-family: RalewayBlod;
}

.contact-form-right h3 {
  font-size: 20px;
  font-family: RalewayBlod;
}

.contact-form-right {
  flex: 50%;
}

.contact-form-left p {
  font-family: 'Montserrat';
}

.contact-form-right p {
  font-family: 'Montserrat';
  font-weight: 300;
}

.star-color {
  color: red;
}

.input-contact[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 7px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  box-shadow: 0px 0px 2px #0000004D;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.input-contact[type=submit] {
  background-color: #25272C;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
}

.input-contact[type=submit]:hover {
  background-color: #0D83FE;
}

.ccsubmit label {
  font-family: 'Montserrat';
}

.ccsubmit .cont-submi {
  width: 100%;
  background: #2D2D2D;
  color: white;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 9px 15px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
}

.ccsubmit .cont-submi:hover {
  background: #0B83FE;
  color: #fff;
  border: 1px solid #0B83FE;
}

/* Career Page */


.career-container-hero {
  padding: 210px;
  position: relative;
  top: -76px;
}

.data-career-bg-color {
  background-image: linear-gradient(to right, #4C0AA3 0%, #327BF8 100%);
}

.career-row {
  display: flex;
  width: 80%;
  margin: auto;
}

.career-heading {
  margin: 0 auto;
}

.career-heading h2 {
  color: #000;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5vh;
  font-family: RalewayBlod;
}

.under-text-career-hero {
  font-family: 'Montserrat';
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}


.career-row-two {
  margin-top: 10vh;
  justify-content: center;
  margin-bottom: 5vh;
}

.career-row-three {
  justify-content: center;
  margin-top: 10vh;
}

.career-row h2 {
  font-size: 35px;
  line-height: 44px;
  font-family: RalewayBlod;
}

.career-container {
  margin-bottom: 10vh;
  width: 80%;
  margin: 0 auto;
}

.career-left {
  flex: 50%;
  margin-block: auto;
  margin-left: 15px;
}

.career-right {
  flex: 50%;
}

.career-right .footer-middle-button .footer-middle-btnText2 {
  margin-right: 0 !important;
}

.agree-career {
  display: flex;
  width: 100%;
  margin: auto;
  padding: 10px;
  background: #EFF4FE;
  border: 1px solid #3775F6;
  border-radius: 10px;
  margin-bottom: 20px;
}

#career-agree .footer-middle-button {
  background: #25272d;
  padding: 11px 20px;
  width: 132px;
  float: right;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.career-right .footer-middle-btnTwo {
  position: relative;
  width: 132px;
  height: 50px;
  margin-top: -40px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  left: -400px;
  transition: 0.7s;
}

.will-enjoy-left {
  flex: 50%;
  padding: 25px;
}

.will-enjoy-right {
  flex: 50%;
  padding: 25px;
}

.will-enjoy-left p {
  font-family: 'Montserrat';
  text-align: justify;
  line-break: auto;
  font-weight: 300;
  font-size: 16px;
}

.will-enjoy-right p {
  font-family: 'Montserrat';
  text-align: justify;
  line-break: auto;
  font-weight: 300;
  font-size: 16px;
}

.will-enjoy-content h5 {
  font-size: 20px;
  font-family: RalewayBlod;
}

.english-traning {
  width: 100%;
  height: 543px;
  background: #EFF4FF;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.bpo-traning {
  width: 100%;
  height: 543px;
  background: #F6F2FD;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.knowledge-exchange-initiative {
  width: 100%;
  height: 543px;
  background: #FFEFEE;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.technical-training {
  width: 100%;
  height: 543px;
  background: #FFF6E8;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.salary {
  width: 100%;
  height: 543px;
  background: #EFF4FF;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.vacation {
  width: 100%;
  height: 543px;
  background: #FFEFEE;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.other-benefits {
  width: 100%;
  height: 543px;
  background: #FFF6E8;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.office-environment {
  width: 100%;
  height: 543px;
  background: #FFEFEE;
  box-shadow: 0px 0px 6px #00000029;
  border-radius: 25px;
  opacity: 1;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 40px;
}

.container-enjoy {
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.career-container-last {
  background-color: #F7F9FF;
}

.last-text-career {
  text-align: center;
  font-family: 'Montserrat';
  margin-top: 10vh;
  margin-bottom: 10vh;
  font-size: 16px;
  font-weight: 300;
}



/* Privacy Policy Page */


.under-text-policy-hero {
  font-family: 'Montserrat';
  text-align: left;
  margin-bottom: 5vh;
  font-weight: 300;
  font-size: 16px;
  text-align: justify;
}

.policy-step {
  background: #4164F21A;
  border: 1px solid #3E6AF3;
  border-radius: 10px;
  margin: 0 auto;
}

.policy-container {
  margin-top: 5vh;
  margin-bottom: 10vh;
}

.policy-copyright {
  text-align: center;
  padding: 20px;
}

.policy-copyright p {
  font-family: 'Montserrat';
}

.policy-payment-datils p {
  font-family: 'Montserrat';
  font-weight: 300;
  font-size: 16px;
  text-align: justify;
}

.policy-payment-datils h5 {
  font-size: 20px;
  font-family: RalewayBlod;
  margin-bottom: 2vh;
}

.payment-header {
  text-align: center;
}

/* PRODUCT PAGE */

.all-product-content {
  margin-bottom: 10vh;
}

.product-content {
  text-align: center;
}

.under-text-product-hero {
  font-family: 'Montserrat';
}

.product-content p {
  font-family: 'Montserrat';
}

.for-size {
  font-size: small;
}

.product-image-part {
  margin: 0 auto;
  padding-bottom: 10vh;
}

.product-image-part-two {
  display: flex;
  gap: 40px;
}

.product-one-content {
  text-align: center;
  padding: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.product-two-content {
  text-align: center;
  padding: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.image-product-one {
  position: relative;
}

.product-one-content {
  position: absolute;
  top: 72%;
  left: 9px;
  width: 96%;
  height: auto;
  background: #fff;
  color: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.product-one-content>* {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.product-one-content:hover {
  opacity: 1;
}

.product-one-content:hover>* {
  transform: translateY(0);
}


.image-product-two {
  position: relative;
}

.product-two-content {
  position: absolute;
  top: 72%;
  left: 9px;
  width: 96%;
  height: auto;
  background: #fff;
  color: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-color {
  background-color: #92C47D;
  color: #fff;
  border-radius: 0 !important;
}

.product-two-content>* {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.product-two-content:hover {
  opacity: 1;
}

.product-two-content:hover>* {
  transform: translateY(0);
}



/* Modal FORM */

::placeholder {
  color: grey !important;
  opacity: 0.6;
}

.modal-header {
  flex-direction: column;
}

.modal-header {
  border-bottom: none !important;
  margin-bottom: 2vh;
}

.modal-footer {
  border-top: none !important;
  justify-content: center !important;
}

.modal-for-content {
  padding: 50px !important;
  border-radius: 10px !important;
}

.fill-up-pera {
  display: flex !important;
}

.fill-up-pera-last {
  display: flex !important;
}

.form-control-pera {
  border-radius: 25px !important;
}

.form-control-pera-home {
  border-radius: 15px !important;
  box-shadow: none !important;
  padding: 20px 20px 70px 20px;
}

.service-display {
  text-align: left;
  margin-left: 53px;
}

.form-check-label {
  font-family: 'Montserrat';
  font-size: 14px;
}

.col-form-label {
  width: -webkit-fill-available;
  font-family: 'Montserrat';
}

.form-check-input:focus {
  box-shadow: none !important;
}

.form-control-pera-two {
  padding: .375rem .75rem !important;
  box-shadow: none !important;
}

.fill-up-pera .form-control:focus {
  box-shadow: none !important;
}

.fill-up-pera-last .form-control:focus {
  box-shadow: none !important;
}

.btn-close:focus {
  box-shadow: none !important;
}

@media (min-width: 576px) {
  /* .modal-for-width {
    min-width: 750px !important;
  } */
}

.modal-body p {
  font-family: 'Montserrat';
}

.modal-header h3 {
  font-family: RalewayBlod;
  font-size: 30px;
}

.modal-body h5 {
  font-family: RalewayBlod;
  margin-top: 3vh;
}

.modal-header p {
  font-family: 'Montserrat';
}

/* Sub Modal */

.tt-content {
  text-align: center !important;
}

.tt {
  text-decoration: underline;
  font-family: 'Montserrat';
}



/*                                                                 Custom AMAZON PAge                                     */


.amazon-custom-container {
  padding: 100px;
  position: relative;
  top: -76px;
}

.amazon-custom-row {
  width: 80%;
  margin: auto;
}

.amazon-bg-color {
  background-image: linear-gradient(to right, #FF934B 0%, #FF5861 100%);
}

.walmart-bg-color {
  background-color: #017BD1;
}

.ebay-bg-color {
  background-color: #747B85;
}

.newegg-bg-color {
  background-color: #1C4D90;
}

.jet-bg-color {
  background-image: linear-gradient(to right, #4C0AA3 0%, #327BF8 100%);
}

.channelAdvisor-bg-color {
  background-color: #363836;
}

.ecomdash-bg-color {
  background-color: #241F21;
}

.sellbrite-bg-color {
  background-color: #724BC1;
}

.emailmarketing-bg-color {
  background-color: #02B8C6;
}

.socialmediamarketing-bg-color {
  background-color: #016193;
}

.shopifyecommerce-bg-color {
  background-color: #5C545F;
}

.magento-bg-color {
  background-color: #535353;
}

.apluscontent-bg-color {
  background-color: #06386B;
}

.amazon-custom-main-banner-image {
  text-align: center;
}

.amazon-section-container {
  margin-bottom: 7vh;
}

.amazon-heading-content {
  text-align: center;
}

.amazon-heading-with-text h1 {
  margin-bottom: 1vh;
  font-size: 40px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text h2 {
  margin-bottom: 1vh;
  font-size: 35px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text h5 {
  margin-bottom: 1vh;
  font-size: 28px;
  font-family: RalewayBlod;
}


.amazon-heading-with-text-two h2 {
  margin-bottom: 2vh;
  font-size: 20px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text-two h4 {
  margin-bottom: 2vh;
  font-size: 17px;
  font-family: RalewayBlod;
}


.amazon-heading-with-text-three h2 {
  margin-bottom: 2vh;
  font-size: 20px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text-three h3 {
  margin-bottom: 2vh;
  font-size: 20px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text-three h4 {
  margin-bottom: 2vh;
  font-size: 17px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text-three strong {
  font-size: 20px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text-three-strong .list {
  display: contents;
}

.amazon-heading-with-text-three-strong ul li {
  margin-bottom: 2vh;
  list-style: none !important;
  font-family: 'Montserrat', sans-serif;
}

.amazon-heading-with-text-three-strong strong {
  font-size: 20px;
  font-family: RalewayBlod;
}

.amazon-heading-with-text {
  margin-bottom: 5vh;
}

.amazon-heading-with-text .short-tt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
}

.amazon-heading-with-text-design {
  background: #FFEBCC;
  border: 1px solid #FF9900;
  border-radius: 9px;
  padding: 3vh;
}

.amazon-heading-with-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text-two p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text-three p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text-two ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  list-style: none;
}

.amazon-heading-with-text-three ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text-two ul li::before {
  content: url(../images/tik.png) !important;
  font-size: 16px;
  padding-right: 5px;
  vertical-align: middle;
  margin-top: 3px;
}

.amazon-heading-with-text-two .list {
  margin-left: -32px;
  margin-bottom: 0;
}

.amazon-heading-content-extra p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.amazon-heading-with-text-three .lint-img {
  text-align: center;
}

.amazon-heading-with-text-two .em-imgg {
  text-align: center;
}


/* CONTACT ALL PAGE BUTTON */

#page-button-container {
  text-align: center;
  margin-top: 15px;
}

.page-contact-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.page-contact-button {
  width: 12rem;
  height: auto;
}

.page-contact-button .page-contact-circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2rem;
  height: 2rem;
  background: #282936;
  border-radius: 1.625rem;
}

.page-contact-button .page-contact-circle .cont-icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.page-contact-button .page-contact-circle .cont-icon.cont-arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.2rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.page-contact-button .page-contact-circle .cont-icon.cont-arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.page-contact-button .page-cont-button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px;
  margin: 0 0 0 .50rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}

.page-contact-button:hover .page-contact-circle {
  width: 100%;
}

.page-contact-button:hover .page-contact-circle .cont-icon.cont-arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.page-contact-button:hover .page-cont-button-text {
  color: #fff;
}

/* Brand */


#logoMarqueeSection {
  max-width: 1920px !important;
  margin: 0 auto;
  overflow: hidden;
}

.default-content-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 5rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
}

.logoMarqueeSection>div>div {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}



/* Multiple colim video */


.client-say-what {
  margin-top: 21vh;
}

.multiple-container {
  padding-left: 10vw;
  padding-right: 10vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: #911BF3;
}

.video-text-t {
  margin-top: 25px;
  color: #fff;
}

.video-text-t p {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 300;
}


/* five image animation */

.glass-effect-five {
  cursor: pointer;
  animation-timing-function: ease;
  animation-name: glass-position-five;
  animation-iteration-count: infinite;
  animation-delay: 5ms;
  pointer-events: auto;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}

@keyframes glass-position-five {
  0% {
    transform: translateX(0%) rotate(0deg);
  }

  50% {
    transform: translateX(-6%) rotate(0.01deg);
  }

  100% {
    transform: translateX(0%) rotate(0deg);
  }
}

.glass-position-one {
  position: absolute;
  top: -12px;
  left: -80px;
  animation-duration: 5s;
}

.glass-position-two {
  position: absolute;
  bottom: -100px;
  left: -40px;
  animation-duration: 4s;
}

.glass-position-three {
  position: absolute;
  top: 0px;
  right: 0px;
  animation-duration: 5s;
}

.glass-position-four {
  position: absolute;
  bottom: -72px;
  right: 115px;
  animation-duration: 4s;
}

.glass-position-five {
  position: absolute;
  bottom: 0;
  right: -100px;
  animation-duration: 5s;
}


/* Nav service animation */

.nav-effect-five {
  cursor: pointer;
  animation-timing-function: ease;
  animation-name: nav-position-five;
  animation-iteration-count: infinite;
  animation-delay: 5ms;
  pointer-events: auto;
  transition: all 0.4s ease 0s;
}

@keyframes nav-position-five {
  0% {
    transform: translateX(0%) rotate(0deg);
  }

  50% {
    transform: translateX(-6%) rotate(0.01deg);
  }

  100% {
    transform: translateX(0%) rotate(0deg);
  }
}

.nav-position-one {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-two {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-three {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-four {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-five {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-six {
  position: absolute;
  animation-duration: 8s;
}

.nav-position-seven {
  position: absolute;
  animation-duration: 8s;
}

.nav-effect-five:hover {
  animation-play-state: paused;
}

.drop-active.active {
  animation-play-state: paused;
}

.mobile-brand-container {
  padding-left: 10vw;
  padding-right: 10vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

/* Mobile modal message form */


.form-control-modal-mobile {
  width: 100%;
  background: transparent;
  flex: 15%;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 6px 15px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
  color: #a1a1a1;
}

.form-control-modal-mobile:focus-visible {
  outline: none;
}

.mb-3-moblie {
  color: #a1a1a1;
}

.col-form-label-mobile {
  font-family: 'Montserrat';
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}

.mobile-submit-btn {
  width: 100%;
  background: #0B83FE;
  color: #fff;
  border: 1px solid #2f2f2f;
  border-radius: 26px 26px 26px 26px;
  padding: 9px 15px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
}

.btn-close-mobile {
  opacity: 1;
  background: transparent;
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
}

.mb-3-moblie .iti {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}


.career-mobile-submit-btn {
  background: #0B83FE;
  color: #fff;
  border: 1px solid #0B83FE;
  border-radius: 26px 26px 26px 26px;
  padding: 9px 50px;
  font-size: 16px;
  font-family: Aceh;
  margin-bottom: 20px;
}

.mobile-agree-career {
  display: inline-block;
  width: 100%;
  margin: auto;
  padding: 10px;
  background: #EFF4FE;
  border: 1px solid #3775F6;
  border-radius: 10px;
  margin-bottom: 20px;
}


/* PRE REQUEST SECTION SERVICE PAGE */

.pre-request-row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 5vh;
}

.pre-request-left {
  flex-basis: 40%;
}

.pre-request-right {
  flex-basis: 60%;
}

.pre-request-heading h3 {
  font-size: 35px;
  font-family: RalewayBlod;
}

.pre-request-right ul {
  line-height: 1.5em;
  margin: 5px 0 15px;
  padding: 0;
}

.pre-request-right ul li {
  list-style: none;
  position: relative;
  padding: 20px 0px 20px 50px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
  font-family: 'Montserrat';
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pre-request-right ul.circle-checkmark li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  border: solid 10px #FF9900;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.pre-request-right ul.circle-checkmark li::after {
  content: "";
  position: absolute;
  left: -0.50%;
  top: 22px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

/* mobile */

.pre-request-mobile ul {
  line-height: 1.5em;
  margin: 5px 0 15px;
  padding: 0;
}

.pre-request-mobile ul li {
  list-style: none;
  position: relative;
  padding: 20px 0px 0px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
  font-family: 'Montserrat';
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pre-request-mobile ul.circle-checkmark li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  border: solid 10px #FF9900;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.pre-request-mobile ul.circle-checkmark li::after {
  content: "";
  position: absolute;
  left: -0.50%;
  top: 22px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}











































/* Smart Phone End*/
/* Tablet Start*/

@media screen and (min-width: 1925px) {
  .faq-container {
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0vw;
    padding-right: 0vw;
  }
}

/* Tablet End*/
/* Desktop Start*/

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .designer-right {
    flex: 50%;
  }

  .designer-left img {
    padding-top: 60px;
  }

  .designer-left {
    flex: 50%;
  }

  .split-right {
    flex: 50%;
  }

  .split-right img {
    padding-top: 40px;
  }

  .split-left {
    flex: 50%;
  }
  .in-house-right {
    flex: 50%;
  }

  .in-house-left {
    flex: 50%;
  }

  .free-images-right {
    flex: 50%;
  }

  .free-images-left {
    flex: 50%;
  }

  .faq-question {
    top: 50px;
  }

  .faq-question-2 {
    top: 126px;
  }

  .faq-question-3 {
    top: 231px;
  }

  .faq-question-6 {
    top: 550px;
  }

  .where-left {
    padding-left: 60px;
  }

  .where-right {
    padding-top: 115px;
    padding-bottom: 115px;
    padding-left: 55px;
    padding-right: 85px;
  }

  .nav.left-navigation label.menu-text {
    height: 22vh;
  }

  .text-logo p {
    width: 14vh !important;
    height: 10.8vh;
  }

  .nav label.menu-toggle {
    margin-top: -2vh;
  }

  .nav label.menu-toggle>span:before {
    transform: rotate(-45deg) translateY(-3px) translateX(4px);
  }

  .nav label.menu-toggle>span:after {
    transform: rotate(45deg) translateY(0px) translateX(1px);
  }


  /* MYSELF CUSTOM CODDING */


  .nav,
  .nav .nav {
    width: 30vw;
    top: 67px;
  }

  .nav.left-navigation,
  .nav.left-navigation nav {
    transform: translateX(-30vw);
  }













}

/* Desktop End*/


/* CUSTOM MEDIA QUERY */

@media screen and (max-width: 1024px) {
  .container-enjoy .career-row {
    display: contents;
  }

  .english-traning,
  .bpo-traning,
  .knowledge-exchange-initiative,
  .technical-training,
  .salary,
  .vacation,
  .other-benefits,
  .office-environment {
    height: auto;
  }

  .career-row h2 {
    font-size: 32px;
    text-align: center;
  }

  #about-ar .amazon-row {
    display: contents;
  }

  .about-data-management-container-left {
    text-align: center;
    flex: 100%;
  }

  #about-hero .hero-icon {
    display: none;
  }

  .about-data-management-container-right {
    display: none;
  }

  .about-text-two {
    font-size: 20px;
  }

  .for-big-headline {
    font-size: 30px;
  }

  .contact-form-row {
    display: block;
  }

  .contact-form-right {
    margin-top: 5vh;
  }

  .amazon-heading-with-text-two .list {
    margin-left: 0;
  }

  .amazon-heading-with-text h1 {
    font-size: 32px;
  }

  .amazon-heading-with-text h2 {
    font-size: 32px;
  }

  .amazon-heading-with-text-three h3 {
    font-size: 20px !important;
    font-family: RalewayBlod !important;
  }

  .amazon-heading-with-text h5 {
    font-size: 32px;
  }

  .amazon-heading-with-text-two p {
    text-align: justify;
    line-break: auto;
  }

  .amazon-heading-with-text-three p {
    text-align: justify;
    line-break: auto;
  }

  .amazon-heading-with-text-three .lint-img img {
    width: 100%;
  }

  .amazon-heading-with-text-three img {
    width: 100%;
  }

  .em-imgg img {
    width: 100%;
  }

  .ppc-table-container {
    display: none !important;
  }

  .owl-nav {
    display: none;
  }

  .video-text-t {
    color: #000;
  }

  .select-mob {
    height: 37px;
  }

  .pre-request-mobile ul li {
    margin-bottom: 0px;
  }
}








@media screen and (min-width: 481px) and (max-width: 1024px) {
  .modal-header h3 {
    font-size: 22px !important;
    font-family: RalewayBlod !important;
  }

  .hide-on-desktop {
    display: block;
  }

  .hide-on-tab {
    display: none !important;
  }

  .show-on-tab {
    display: block !important;
  }

  .a-plus-hide-mobile {
    display: none;
  }

  .scroll-section-mobile-hide {
    display: none;
  }

  .design-section-mobile-hide {
    display: none;
  }

  .navber {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 0;
    padding: 28px 0;
    background-color: rgb(0, 0, 0);
  }

  .nav,
  .nav .nav {
    min-height: 60vh;
    padding-top: 0px;
    top: 50px;
    width: 60vw;
  }

  .drawer-width-add {
    transform: translateX(0vw) !important;
  }

  .drawer-width-remove {
    transform: translateX(-60vw) !important;
  }

  .menu {
    max-height: 80vh;
  }

  .text-logo p {
    display: block;
    width: 15vh !important;
    height: 12vh;
  }

  .nav.left-navigation label.menu-text {
    /* height: 20vh; */
    right: -6.5vw;
  }

  .nav.left-navigation label.menu-toggle {
    right: -6.5vw;
  }

  .nav label.menu-toggle {
    height: 5vh;
    top: 47.5vh;
    width: 6.6vw
  }

  .nav label.menu-text {
    height: 25vh;
    top: 25.5vh;
    width: 6.6vw;
  }

  .text-logo img {
    width: 20px;
    height: 20px;
    margin: 10px 10px;
  }

  .nav.left-navigation,
  .nav.left-navigation nav {
    transform: translateX(-60vw);
  }

  .nav label.menu-toggle>span:after {
    transform: rotate(135deg) translateY(-3px) translateX(2px);
  }

  .nav label.menu-toggle>span:before {
    transform: rotate(-135deg) translateY(3px) translateX(2px);
  }

  input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:after {
    transform: rotate(-45deg) translateY(-8px) translateX(-2px);
  }

  input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:before {
    transform: rotate(45deg) translateY(6px) translateX(-4px);
  }

  .nav label.menu-toggle>span:after,
  .nav label.menu-toggle>span:before {
    height: 2px;
    width: 10px;
  }

  .navber .menu-list li {
    margin-top: 6px;
  }

  .nav label.menu-toggle {
    /* margin-top: -2vh; */
  }

  .nav label.menu-toggle>span {
    margin-left: 1.8vh;
  }

  .navber .menu-list li a {
    font-size: 14px;
  }

  .navber .menu-list {
    padding: 64px 0px;
  }

  .icon {
    color: #afafaf;
    font-size: 14px;
  }

  .navber .logo a {
    font-size: 20px;
  }

  .drawer-label {
    flex: 0%;
    font-size: 13px;
  }

  .drawer-input {
    font-size: 14px;
  }

  h1.heading {
    font-size: 20px;
    line-height: 21px;
  }

  .menuTitel img {
    padding: 0px;
    width: 21px;
    height: 21px;
  }

  .navber .logo img {
    padding-right: 3px;
    padding-bottom: 3px;
    width: 23px;
  }

  /* ------------ Hero section ----------------- */

  .plus-hero-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-video video {
    width: 100%;
  }

  .hero-video {
    padding-top: 113px;
  }

  .hero-text p {
    font-size: 22px;
    line-height: 29px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 48px;
    margin-top: 10px;
    padding: 0px 130px;
  }

  .lineUp {
    animation: 2s anim-lineUp ease-out;
  }

  .hero-text {
    padding-top: 30px;
    text-align: center;
  }

  .hero-button {
    justify-content: center;
    margin-top: -25px;
  }

  .hero-middle-button .hero-middle-btnText {
    font-size: 22px;
    line-height: 35px;
    font-family: "AcehRegular";
  }

  .hero-middle-button {
    padding: 10px 20px;
    height: 55px;
  }

  .hero-middle-button .hero-middle-btnText2 {
    font-size: 20px;
    margin-top: 10px;
    line-height: 21px;
    font-family: "AcehRegular";
  }

  .hero-middle-btnTwo {
    left: -20px;
    width: 200px;
    height: 40px;
    margin-top: -31px;
    animation: btn-anim 1.5s;
  }

  @keyframes btn-anim {
    0% {
      left: -580px;
    }

    100% {
      left: -20px;
    }
  }

  /* ----------- count section ------- */

  .peogessBarSection {
    display: flex;
    gap: 3vw;
  }

  .hero-bottom {
    padding-top: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14vw;
  }

  .circle-progress-bar[role="progressbar"] {
    --size: 11vw;
    --fg: #208dfd;
    background: radial-gradient(closest-side,
        #121212 87%,
        transparent 0 99.99%,
        rgb(0, 0, 0) 0),
      conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    margin-bottom: 0vw;
    font-size: calc(var(--size) / 5);
  }

  .hero-bottom p {
    color: #8e8e8e;
    font-size: 18px;
    font-family: "AcehRegular";
    line-height: 24px;
  }

  .peogessBarSection {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: column;
  }

  .best-header {
    text-align: center;
    margin-top: 40px;
  }

  .best-header p {
    font-size: 22px;
    font-family: 'Montserrat';
    line-height: 29px;
    color: #afafaf;
  }

  .best-header h1 {
    font-size: 32px;
    font-family: RalewayBlod;
    line-height: 40px;
    margin-bottom: 30px;
    color: #afafaf;
  }

  .best-header h1 span {
    color: #0b83fe;
  }

  .aPlus-tablet {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 80px;
  }

  .best-footer {
    display: none;
  }

  /* ------------ A-plus slider section---------------------- */

  .a-plus-slider .owl-nav button.owl-next {
    background: #7070701f;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font: inherit;
    right: 43vw;
    bottom: -51px;
    font-size: 40px;
    font-weight: 300;
    opacity: 1;
  }

  .a-plus-slider .owl-nav button.owl-next span {
    position: absolute;
    top: -15px;
    left: 15px;
    color: white;
  }

  .a-plus-slider .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 38px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 45vw;
    bottom: -51px;
    opacity: 1;
  }

  .a-plus-slider .owl-nav button.owl-prev span {
    position: absolute;
    top: -14px;
    left: 14px;
    color: white;
  }

  /* ------------- product change --------------- */

  .product-assin-container {
    margin: 135px 16px 100px 16px;
    text-align: -webkit-center;
  }

  .product-asin {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-right: 14vw;
  }

  .product-change-line {
    height: 1px;
    width: 70%;
    background-color: #eeeeee;
    position: relative;
  }

  .product-change-line2 {
    height: 1px;
    width: 0%;
    background-color: #208dfd;
    position: absolute;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-1 {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #208dfd;
    position: absolute;
    top: -14px;
    left: 0;
    z-index: 1;
  }

  .product-number-bg-2 {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -14px;
    left: 32%;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-3 {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -14px;
    right: 32%;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-4 {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -14px;
    right: 0;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-change-line p {
    font-size: 14px;
    font-family: AcehMedium;
    color: #eeeeee;
    margin-top: 6px;
  }

  .product-images {
    position: relative;
    margin-top: 40px;
    height: 125px;
    width: 565px;
    display: flex;
    gap: 50px;
    overflow: hidden;
  }

  .product-images1 {
    position: absolute;
    top: 10px;
    left: 0px;
    transition: all 1s ease-in-out;
  }

  .product-images2 {
    position: absolute;
    top: 0;
    left: 550px;
    transition: all 1s ease-in-out;
  }

  .product-images3 {
    position: absolute;
    top: 0;
    left: 600px;
    transition: all 1s ease-in-out;
  }

  .product-images4 {
    position: absolute;
    top: 0;
    left: 1050px;
    transition: all 1s ease-in-out;
  }

  .product-asin-list {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .product-asin-list p {
    font-size: 20px;
    font-family: 'Montserrat';
    color: #afafaf;
    line-height: 26px;
  }

  #listMark2 {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  #listMark3 {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  /* -------------- why should --------------- */

  .why-should-container {
    background-color: #25272d;
    border-radius: 36px;
    margin: 0px 16px;
  }

  .why-should-row {
    padding: 30px 16px;
  }

  .why-should-header h2 {
    font-size: 32px;
    line-height: 40px;
    color: #afafaf;
    font-family: RalewayBlod;
    margin-bottom: 25px;
  }

  .why-should-header h2 span {
    color: #0b83fe;
  }

  .why-should .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    opacity: 1;
  }

  .why-should .owl-nav button.owl-prev span {
    position: absolute;
    top: -50%;
    left: 30%;
    color: white;
  }

  .why-should .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font: inherit;
    right: 0px;
    top: 50%;
    font-size: 45px;
    font-weight: 300;
    opacity: 1;
  }

  .why-should .owl-nav button.owl-next span {
    position: absolute;
    top: -50%;
    right: 30%;
    color: white;
  }

  .owl-icon-image-should {
    display: block;
    width: 500px;
    margin-bottom: 30px;
  }

  .why-should-header p {
    color: #afafaf;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Montserrat';
    margin-bottom: 10px;
  }

  .why-should-body p {
    color: #afafaf;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Montserrat';
    text-align: left;
    margin-bottom: 14px;
  }

  .why-should .owl-item .item .owl-icon-image-should-3 img {
    display: block;
    width: 50%;
    margin-bottom: 30px;
  }

  .fifth_flex {
    display: flex !important;
    flex-direction: row;
    margin-top: 85px;
  }

  .wrapper .outer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  }

  .free-images-should {
    height: 200px;
  }

  .fifth_flex_p {
    place-self: center;
    font-size: 18px;
    line-height: 24px;
    color: #afafaf;
    font-family: "AcehRegular";
    margin-top: -20px;
    margin-right: 70px;
  }

  .wrapper .card {
    width: 730px;
    display: flex;
    align-items: start;
    font-weight: 300;
    padding: 0px;
    font-size: 20px;
    line-height: 32px;
    font-family: AcehBold;
    margin-bottom: 0px !important;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    color: #afafaf;
    justify-content: space-between;
    background-color: transparent;
    border: transparent;
    animation: animate 14s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }

  @keyframes animate {
    0% {
      opacity: 0.5;
      transform: translateY(200%);
    }

    25% {
      pointer-events: auto;
      transform: translateY(100%);
      color: #afafaf;

      background-color: transparent;
    }

    30% {
      pointer-events: auto;
      color: #afafaf;
      background-color: transparent;
    }

    45% {
      pointer-events: auto;
      transform: translateY(20%);
      color: #afafaf;
    }

    50% {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0%);
      color: #0231dd;
      font-size: 24px;
      line-height: 32px;
      font-family: AcehBold;
    }

    55% {
      pointer-events: auto;
      transform: translateY(-20%);
      color: #afafaf;
    }

    60% {
      color: #afafaf;
      pointer-events: auto;
      background-color: transparent;
    }

    75% {
      color: #afafaf;

      pointer-events: auto;
      transform: translateY(-100%);
      background-color: transparent;
    }

    100% {
      opacity: 0.5;
      background-color: "";
      transform: translateY(-200%);
    }
  }

  .why-should-btn {
    height: 50px;
    width: 200px;
    background-color: #0b83fe;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    margin-top: 30px;
  }

  /* -------------- frequently-asked ------------ */

  .frequently-asked-container {
    margin: 55px 50px 0px 50px;
    background-color: #0b83fe;
    border-radius: 15px;
    padding-bottom: 40px;
  }

  .frequently-asked-header {
    text-align: center;
    padding: 0px 65px;
  }

  .frequently-asked-header h2 {
    font-size: 32px;
    font-family: RalewayBlod;
    line-height: 40px;
    color: #ffffff;
    padding-top: 40px;
  }

  .frequently-asked-header p {
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 26px;
    color: #ffffff;
  }

  .asked-questions-1 {
    height: 80px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    margin-top: 20px;
    padding: 20px 0px 20px 20px;
    margin-left: 30px;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
    margin-right: 30px;
  }

  .plus-div {
    height: 28px;
    width: 28px;
    background-color: #0b83fe;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .asked-questions-1 img {
    height: 12px;
    width: 12px;
  }

  .asked-questions-p {
    flex-basis: 92%;
  }

  .asked-questions-1 p {
    font-size: 18px;
    font-family: 'Montserrat';
    line-height: 22px;
    color: #000000;
  }

  .asked-questions-1-span {
    margin-top: 15px;
  }

  .frequently-asked-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .plus-div-h {
    height: 215px;
  }

  .will-enjoy-left p {
    font-size: 20px;
  }

  .will-enjoy-right p {
    font-size: 20px;
  }

  .under-text-policy-hero {
    font-size: 20px;
  }

  .policy-payment-datils p {
    font-size: 20px;
  }

  .contact-form-right p {
    font-size: 20px;
  }

  .video-text-t p {
    font-size: 20px;
  }

  .amazon-heading-with-text p {
    font-size: 20px;
  }

  .amazon-heading-with-text-two p {
    font-size: 20px;
  }

  .amazon-heading-with-text-three p {
    font-size: 20px;
  }

  .amazon-heading-with-text ul li {
    font-size: 20px;
  }

  .amazon-heading-with-text-two ul li {
    font-size: 20px;
    display: flex;
  }

  .amazon-heading-with-text-three ul li {
    font-size: 20px;
  }

  .amazon-heading-content-extra p {
    font-size: 20px;
  }

  .amazon-heading-with-text .short-tt {
    font-size: 18px;
  }

  .amazon-heading-with-text-three-strong ul li {
    font-size: 20px;
  }

  .under-text-career-hero {
    font-size: 20px;
  }

  .last-text-career {
    font-size: 20px;
  }

  .career-heading h2 {
    font-size: 32px;
  }

  .pre-request-heading h3 {
    font-size: 32px;
  }

  .pre-request-right ul li {
    font-size: 22px;
  }

  .pre-request-mobile ul li {
    font-size: 20px;
  }

  .pre-request-heading h3 {
    text-align: center;
  }

  .video-text-t {
    margin-bottom: 25px;
  }
}


























@media (max-width: 480px) {
  .hide-on-desktop {
    display: block !important;
  }

  .show-on-tab {
    display: none;
  }

  .a-plus-hide-mobile {
    display: none;
  }

  .scroll-section-mobile-hide {
    display: none;
  }

  .design-section-mobile-hide {
    display: none;
  }

  .logo {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .navber .menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: black;
    display: block;
    padding: 40px 0px;
    text-align: start;
    transition: all 0.5s ease;
  }

  .navber .menu-list.active {
    left: 0;
  }

  .navber .menu-list li {
    margin-top: 45px;
  }

  .navber .menu-list li a {
    font-size: 23px;
  }

  .icon {
    display: block;
  }

  .icon.hide {
    display: none;
  }

  .navber {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 0;
    padding: 28px 0;
    background-color: rgb(0, 0, 0);
  }

  .drawer-width-add {
    transform: translateX(0vw) !important;
  }

  .drawer-width-remove {
    transform: translateX(-84vw) !important;
  }

  .nav,
  .nav .nav {
    min-height: 67vh;
    padding-top: 0px;
    top: 50px;
    width: 84vw;
  }

  .menu {
    max-height: 80vh;
  }

  .text-logo p {
    display: none;
  }

  .nav.left-navigation label.menu-text {
    height: 6vh;
    right: -8.5vw;
    display: none;
  }

  .nav.left-navigation label.menu-toggle {
    right: -8.5vw;
    display: none;
  }

  .nav label.menu-toggle {
    height: 40px;
    top: 31.5vh;
    width: 8.6vw;
  }

  .nav label.menu-text {
    height: 25vh;
    top: 20.5vh;
    width: 8.6vw;
  }

  .text-logo img {
    width: 20px;
    height: 20px;
    margin: 5px 5px;
  }

  .nav.left-navigation,
  .nav.left-navigation nav {
    transform: translateX(-85vw);
  }

  .nav label.menu-toggle>span:after {
    transform: rotate(135deg) translateY(-1px) translateX(3px);
  }

  .nav label.menu-toggle>span:before {
    transform: rotate(-135deg) translateY(3px) translateX(3px);
  }

  .nav label.menu-toggle>span {
    margin-left: 1.5vh;
  }

  input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:after {
    transform: rotate(-45deg) translateY(-8px) translateX(-2px);
  }

  input[type="checkbox"]:checked~.nav.left-navigation label.menu-toggle>span:before {
    transform: rotate(45deg) translateY(6px) translateX(-4px);
  }

  .nav label.menu-toggle>span:after,
  .nav label.menu-toggle>span:before {
    height: 2px;
    width: 10px;
  }

  .navber .menu-list li {
    margin-top: 6px;
  }

  .navber .menu-list li a {
    font-size: 16px;
  }

  .navber .menu-list {
    padding: 64px 0px;
  }

  .icon {
    color: #afafaf;
    font-size: 16px;
  }

  .navber .logo a {
    font-size: 16px;
  }

  .drawer-label {
    flex: 0%;
    font-size: 13px;
  }

  .drawer-input {
    font-size: 16px;
  }

  p.heading {
    font-size: 16px;
    line-height: 21px;
  }

  .menuTitel img {
    padding: 0px;
    width: 21px;
    height: 21px;
  }

  .navber .logo img {
    padding-right: 3px;
    padding-bottom: 3px;
    width: 23px;
  }

  /* ------------ Hero section ----------------- */

  .plus-hero-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-video video {
    width: 100%;
  }

  .hero-video {
    padding-top: 113px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 19px;
  }

  .hero-text h1 {
    font-size: 22px;
    line-height: 29px;
    margin-top: 10px;
  }

  .lineUp {
    animation: 2s anim-lineUp ease-out;
  }

  .hero-text {
    padding-top: 55px;
    text-align: center;
  }

  .hero-button {
    justify-content: center;
    margin-top: -25px;
  }

  .hero-middle-button .hero-middle-btnText {
    font-size: 16px;
    line-height: 21px;
    font-family: "AcehRegular";
  }

  .hero-middle-button {
    padding: 10px 20px;
    width: 200px;
    height: 40px;
  }

  .hero-middle-button .hero-middle-btnText2 {
    font-size: 16px;
    margin-top: 10px;
    line-height: 21px;
    font-family: "AcehRegular";
  }

  .hero-middle-btnTwo {
    left: -20px;
    width: 200px;
    height: 40px;
    margin-top: -31px;
    animation: btn-anim 1.5s;
  }

  @keyframes btn-anim {
    0% {
      left: -580px;
    }

    100% {
      left: -20px;
    }
  }

  /* ----------- count section ------- */

  .peogessBarSection {
    display: flex;
    gap: 3vw;
  }

  .hero-bottom {
    padding-top: 0px;
    flex-direction: column;
    align-items: flex-start;
  }

  .circle-progress-bar[role="progressbar"] {
    --size: 15vw;
    --fg: #208dfd;
    background: radial-gradient(closest-side,
        #121212 87%,
        transparent 0 99.99%,
        rgb(0, 0, 0) 0),
      conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    margin-bottom: 0vw;
    font-size: calc(var(--size) / 5);
  }

  .hero-bottom p {
    color: #8e8e8e;
    font-size: 16px;
    font-family: "AcehRegular";
    line-height: 19px;
  }

  .peogessBarSection {
    text-align: left;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .best-header {
    text-align: center;
    margin-top: 40px;
  }

  .best-header p {
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 21px;
    color: #afafaf;
  }

  .best-header h1 {
    font-size: 24px;
    font-family: RalewayBlod;
    line-height: 29px;
    margin-bottom: 30px;
    color: #afafaf;
  }

  .best-header h1 span {
    color: #0b83fe;
  }

  .best-footer {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .best-mobile {
    margin: 12px 8px 4px 8px;
    width: 149px;
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    height: 325px;
    border-radius: 20px;
  }

  .best-mobile img {
    height: 468px;
    width: 100%;
  }

  .best-mobile-layer img {
    width: 172px;
    height: 348px;
  }

  .best-mobile::-webkit-scrollbar {
    display: none;
  }

  /* ------------ A-plus slider section---------------------- */

  .a-plus-slider {
    display: none;
    width: 113%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    left: -53px;
    z-index: 1;
  }

  .a-plus-slider .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 152px;
    bottom: -34px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .a-plus-slider .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .a-plus-slider .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 205px;
    bottom: -34px;
    opacity: 1;
  }

  .a-plus-slider .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* ------------- product change --------------- */

  .product-assin-container {
    margin: 100px 16px 100px 16px;
    text-align: -webkit-center;
  }

  .product-change-line {
    height: 1px;
    width: 70%;
    background-color: #eeeeee;
    position: relative;
  }

  .product-change-line2 {
    height: 1px;
    width: 0%;
    background-color: #208dfd;
    position: absolute;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-1 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #208dfd;
    /* border: 1px solid white; */
    position: absolute;
    top: -9px;
    left: 0;
    z-index: 1;
  }

  .product-number-bg-2 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -9px;
    left: 74px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-3 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -9px;
    right: 74px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-number-bg-4 {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: -9px;
    right: 0;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }

  .product-change-line p {
    font-size: 8px;
    font-family: AcehMedium;
    color: #eeeeee;
    margin-top: 2px;
  }

  .product-images {
    position: relative;
    margin-top: 40px;
    height: 70px;
    width: 288px;
    display: flex;
    gap: 50px;
    overflow: hidden;
  }

  .product-images1 {
    position: absolute;
    top: 10px;
    left: 0px;
    transition: all 1s ease-in-out;
  }

  .product-images2 {
    position: absolute;
    top: 0;
    left: 350px;
    transition: all 1s ease-in-out;
  }

  .product-images3 {
    position: absolute;
    top: 0;
    left: 600px;
    transition: all 1s ease-in-out;
  }

  .product-images4 {
    position: absolute;
    top: 0;
    left: 1050px;
    transition: all 1s ease-in-out;
  }

  .product-asin-list {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .product-asin-list p {
    font-size: 16px;
    font-family: 'Montserrat';
    color: #afafaf;
  }

  #listMark2 {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  #listMark3 {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  /* -------------- why should --------------- */

  .why-should-container {
    background-color: #25272d;
    border-radius: 36px;
    margin: 0px 16px;
  }

  .why-should-row {
    padding: 30px 16px;
  }

  .why-should-header h2 {
    font-size: 22px;
    line-height: 29px;
    color: #afafaf;
    font-family: RalewayBlod;
    margin-bottom: 25px;
  }

  .why-should-header h2 span {
    color: #0b83fe;
  }

  .why-should .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: -10px;
    top: 180px;
    opacity: 1;
  }

  .why-should .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  .why-should .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: -11px;
    top: 180px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .why-should .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .owl-icon-image-should {
    display: block;
    height: 147px;
    width: 256px;
    margin-bottom: 30px;
  }

  .why-should-header p {
    color: #afafaf;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Montserrat';
    margin-bottom: 10px;
  }

  .why-should-body p {
    color: #afafaf;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Montserrat';
    text-align: left;
    margin-bottom: 14px;
  }

  .why-should .owl-item .item .owl-icon-image-should-3 img {
    display: block;
    width: 50%;
    margin-bottom: 30px;
  }

  .fifth_flex {
    display: flex !important;
    flex-direction: row;
    margin-top: 85px;
  }

  .wrapper .outer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  }

  .fifth_flex_p {
    place-self: center;
    font-size: 18px;
    line-height: 24px;
    color: #afafaf;
    font-family: "AcehRegular";
    margin-top: -20px;
    margin-right: 70px;
  }

  .wrapper .card {
    width: 730px;
    display: flex;
    align-items: start;
    font-weight: 300;
    padding: 0px;
    font-size: 16px;
    line-height: 32px;
    font-family: AcehBold;
    margin-bottom: 0px !important;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    color: #afafaf;
    justify-content: space-between;
    background-color: transparent;
    border: transparent;
    animation: animate 14s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }

  @keyframes animate {
    0% {
      opacity: 0.5;
      transform: translateY(200%);
    }

    25% {
      pointer-events: auto;
      transform: translateY(100%);
      color: #afafaf;

      background-color: transparent;
    }

    30% {
      pointer-events: auto;
      color: #afafaf;
      background-color: transparent;
    }

    45% {
      pointer-events: auto;
      transform: translateY(20%);
      color: #afafaf;
    }

    50% {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0%);
      color: #0231dd;
      font-size: 24px;
      line-height: 32px;
      font-family: AcehBold;
    }

    55% {
      pointer-events: auto;
      transform: translateY(-20%);
      color: #afafaf;
    }

    60% {
      color: #afafaf;
      pointer-events: auto;
      background-color: transparent;
    }

    75% {
      color: #afafaf;

      pointer-events: auto;
      transform: translateY(-100%);
      background-color: transparent;
    }

    100% {
      opacity: 0.5;
      background-color: "";
      transform: translateY(-200%);
    }
  }

  .why-should-btn {
    height: 40px;
    width: 200px;
    background-color: #0b83fe;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    margin-top: 30px;
  }

  /* -------------- frequently-asked ------------ */

  .frequently-asked-container {
    margin: 55px 16px 65px 16px;
  }

  .frequently-asked-header {
    text-align: center;
  }

  .frequently-asked-header h2 {
    font-size: 22px;
    font-family: RalewayBlod;
    line-height: 30px;
    color: #afafaf;
  }

  .frequently-asked-header span {
    color: #0b83fe;
  }

  .frequently-asked-header p {
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 22px;
    color: #cdd1d9;
  }

  .asked-questions-1 {
    height: 60px;
    background: #202124;
    border-radius: 15px;
    display: flex;

    margin-top: 20px;
    padding: 8px 0px 12px 20px;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
  }

  .plus-div {
    height: 22px;
    width: 22px;
    background-color: #272727;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .asked-questions-1 img {
    height: 10px;
    width: 10px;
  }

  .asked-questions-p {
    flex-basis: 88%;
  }

  .asked-questions-1 p {
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: 22px;
    color: #cdd1d9;
  }

  .asked-questions-1-span {
    margin-top: 15px;
  }

  .frequently-asked-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .plus-div-h {
    height: 215px;
  }

  .amazon-custom-main-banner-image img {
    width: 100%;
  }



  .amazon-heading-with-text p {
    font-size: 16px;
  }

  .amazon-heading-with-text-two p {
    font-size: 16px;
  }

  .amazon-heading-with-text-three p {
    font-size: 16px;
  }

  .amazon-heading-with-text ul li {
    font-size: 16px;
  }

  .amazon-heading-with-text-two ul li {
    font-size: 16px;
    display: flex;
  }

  .amazon-heading-with-text-two ul li::before {
    content: url(../images/tik.png) !important;
    font-size: 16px;
    padding-right: 5px;
    vertical-align: middle;
    margin-top: 1px;
  }

  .amazon-heading-with-text-three ul li {
    font-size: 16px;
  }

  .amazon-heading-content-extra p {
    font-size: 16px;
  }

  .will-enjoy-left p {
    font-size: 16px;
  }

  .will-enjoy-right p {
    font-size: 16px;
  }

  .under-text-policy-hero {
    font-size: 16px;
  }

  .policy-payment-datils p {
    font-size: 16px;
  }

  .contact-form-right p {
    font-size: 16px;
  }

  .last-text-career {
    font-size: 16px;
  }

  .career-container {
    width: 100%;
  }

  .amazon-heading-with-text h1 {
    font-size: 22px;
  }

  .amazon-heading-with-text h2 {
    font-size: 22px;
  }

  .amazon-heading-with-text h5 {
    font-size: 22px;
  }

  .career-row h2 {
    font-size: 22px;
  }

  .career-heading h2 {
    font-size: 22px;
  }

  .pre-request-heading h3 {
    font-size: 22px;
  }

  .pre-request-right ul li {
    font-size: 16px;
  }

  .pre-request-mobile ul.circle-checkmark li::after {
    left: -1%;
  }

  .modal-for-content {
    padding: 20px !important;
  }
}

/* ------ Contents of extra/style.css end ------ */



/* ------ Contents of extra/homeStyle.css ------ */

/* -------------------------- */

.dropdown-left-footer .left-info{
  margin-bottom: 2vh;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.home-navber {
  position: sticky;
  z-index: 2;
  width: 100%;
  top: 0px;
  padding: 38px 0;
  transition: background 0.5s ease-in-out;
  background-color: #121921;
}

.home-navber:hover {
  background-color: #000;
}

.nav-link-container {
  margin-top: 8vh;
  margin-bottom: 4vh;
}

.nav-link-container a {
  font-size: 30px;
  font-family: AcehMedium;
  line-height: 24px;
  margin-bottom: 50px;
  color: #383838;
}

.nav-link-container .home-link {
  cursor: pointer;
  font-family: AcehMedium;
  font-size: 30px;
}

.nav-link-container .home-link:hover a {
  font-weight: 900;
  text-decoration: underline;
}

.nav-link-container a:hover {
  font-weight: 900;
  text-decoration: underline;
}

.home-link:hover {
  color: #000000;
}

.home-navber .content {
  height: 0px;
  display: flex;
  align-items: center;
  padding-left: 10vw;
  padding-right: 8.5vw;
  justify-content: space-between;
}

.home-navber .logo img {
  padding-right: 7px;
  width: 35px;
}

.home-navber .logo a {
  font-family: "Recoleta", serif;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.home-navber .menu-list {
  display: inline-flex;
  margin-bottom: 0px;
  align-items: center;
  justify-content: center;
}

.menu-list li a {
  color: white;
  font-size: 14px;
  line-height: 19px;
  font-family: 'montserrat';
}

.menu-list li a img {
  width: auto;
  display: unset;
}

a.nav-icon-r {
  position: relative;
  top: 12px;
  left: -14px;
}



.nav-circle {
  position: relative;
  margin: 1em;
  padding: 1em 2em;
  box-sizing: border-box;
  background: none;
  border: 0;
  box-shadow: inset 0 0 0 2px #f45e61;
  color: #f45e61;
  font-size: inherit;
  font-weight: 700;
  vertical-align: middle;
}

.nav-circle:before,
.nav-circle:after {
  content: "";
  position: absolute;
  box-sizing: inherit;
  width: 100%;
  height: 100%;
}

.spin {
  width: 3em;
  height: 3em;
  padding: 0;
}

.spin:hover {
  color: white;
}

.spin:hover a.nav-icon-r {
  top: 15px;
  left: -12px;
}

.spin:before,
.spin:after {
  top: 3px;
  left: 0;
}

.spin:before {
  border: 1px solid transparent;
}

.spin:hover:before {
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  transition: border-top-color 0.15s linear,
    border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.spin:after {
  border: 0 solid transparent;
}

.spin:hover:after {
  border-top: 1px solid rgb(255, 255, 255);
  border-left-width: 1px;
  border-right-width: 1px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

.circle {
  border-radius: 100%;
  box-shadow: none;
}

.circle:before,
.circle:after {
  border-radius: 100%;
}

.spin.circle:hover:before {
  transform: rotate(405deg);
}

.spin.circle:hover:after {
  transform: rotate(315deg);
}

/* Navigation End */

/* .hero-bg {
  background: linear-gradient(45deg, #6502d5, #5c10d9, #0b83fe);
  transition: background 1s ease;
  position: relative;
  top: -76px;
}

.hero-container {
  margin-left: 10vw;
  padding-top: 26vh;
  padding-bottom: 27vh;
  margin-right: 8.5vw;
} */

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 85px !important;
}

.hero-left-body p {
  color: #ffffff;
  font-size: 24px;
  font-family: 'Poppins';
  font-weight: 300;
  line-height: 42px;
  letter-spacing: 5px;
  margin-bottom: 0px;
  transition: all 0.25s ease-in-out;
}

.e-commerce-link p {
  color: #2b2b2b;
  font-size: 22px;
  font-family: 'Poppins';
  font-weight: 300;
  line-height: 42px;
  letter-spacing: 5px;
  margin-bottom: 0px;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}

.hero-left-body h1 {
  font-size: 62px;
  font-family: RalewayBlod;
  line-height: 80px;
  color: white;
  margin: 0;
  overflow: hidden;
}

.hero-left-body .atp {
  font-size: 62px;
  font-family: RalewayBlod !important;
  line-height: 80px;
  color: white;
  margin: 0;
  overflow: hidden;
}

.hero-left-body h1 span {
  display: inline-block;
  display: none;
}

.hero-icon {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 45px;
  cursor: pointer;
}

.hero-icon:hover p {
  font-weight: 900;
}

.discover-icon {
  height: 55px;
  width: 55px;
  border: 2px solid #3faefd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.hero-icon:hover .discover-icon {
  background-color: #3faefd;
}

.discover-plus {
  padding-bottom: 4px;
  padding-left: 2px;
}

.hero-left-body a {
  text-decoration: none;
}

.hero-left {
  flex: 50%;
}

.hero-right {
  flex: 50%;
  z-index: 1;
  max-width: 621px;
  max-height: 458px;
  position: relative;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 36px;
  box-shadow: 0 14px 30px 0 rgb(0 0 0 / 8%);
  padding: 14px 30px 14px 30px;
  cursor: pointer;
  animation-timing-function: ease;
  animation-name: glass-position;
  animation-iteration-count: infinite;
  animation-delay: 5ms;
  pointer-events: auto;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
}

.glass-position-1 {
  position: absolute;
  top: 60px;
  left: -80px;
  animation-duration: 5s;
}

@keyframes glass-position {
  0% {
    transform: translateX(0%) rotate(0deg);
  }

  50% {
    transform: translateX(-6%) rotate(0.01deg);
  }

  100% {
    transform: translateX(0%) rotate(0deg);
  }
}

.glass-position-2 {
  position: absolute;
  bottom: 40px;
  left: -40px;
  animation-duration: 4s;
}

.glass-position-3 {
  position: absolute;
  top: -20px;
  right: 85px;
  animation-duration: 5s;
}

.glass-position-4 {
  position: absolute;
  bottom: -14px;
  right: 60px;
  animation-duration: 4s;
}

.glass-position-5 {
  position: absolute;
  bottom: 107px;
  right: -77px;
  animation-duration: 5s;
}

.glass-position-6 {
  position: absolute;
  top: 135px;
  right: -55px;
  animation-duration: 4s;
}

.glass-effect p {
  font-size: 18px;
  font-family: 'Poppins';
  line-height: 24px;
  margin: 0;
  color: white;
}

.hero-right img {
  height: 100%;
  width: 100%;
}

.hero-left-body h1 span.text-in {
  display: block;
  animation: textIn 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-animation: textIn 0.5s ease-in;
}

.hero-left-body h1 span.text-out {
  animation: textOut 1s ease-out;
  transition: all 0.5s ease-out;
}

@keyframes textIn {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes textOut {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}


.ecomclips {
  position: absolute;
  top: 10px;
  right: -118px;
}

.ecomclips-right-logo {
  margin: 0;
  height: 107vh;
  overflow: hidden;
}

.ecomclips-right-logo span {
  display: inline-block;
  display: block;
}

.ecomclips-right-logo span {
  display: block;
  animation: ecom-anim 90s infinite;
}

@keyframes ecom-anim {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-400%);
  }
}

/* -------------- nav-dropdown ---------------- */

.nav-dropdown-left {
  position: fixed;
  top: 0;
  left: 0;
  height: 0vh;
  width: 40%;
  background: linear-gradient(45deg, #5808fb, #ab0bfe);
  z-index: 2;
  transition: height 0.6s ease-in-out;
  overflow: hidden;
}

.dropdown-left-nav {
  margin-left: 8vw;
  padding-top: 16vh;
  height: 60vh;
}

.dropdown-left-nav ul li {
  list-style: none;
  margin-bottom: 24px;
  height: 48px;
  overflow: hidden;
}

.dropdown-body {
  height: auto;
  margin-top: -9vh;
}

.nav-dropdown-left .logo {
  margin-left: 10vw;
  position: relative;
  top: 25px;
}

.nav-dropdown-left .logo img {
  height: 28px;
  width: 28px;
}

.nav-dropdown-left .logo a {
  font-family: 'Poppins';
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
}

.dropdown-left-nav li a {
  text-decoration: none;
  font-size: 38px;
  font-family: 'Poppins';
  line-height: 47px;
  color: white;
}

.dropdown-left-nav li:hover a {
  text-decoration: underline;
}

.drop-active.active {
  color: #000;
}

.dropdown-left-footer {
  margin-left: 8vw;
  margin-top: 19vh;
}

.dropdown-left-footer a {
  text-decoration: none;
  font-size: 18px;
  font-family: 'Poppins';
  line-height: 24px;
  color: #ffffff;
  margin-left: 60px;
}

.dropdown-left-footer a:hover {
  text-decoration: underline;
}

.nav-dropdown-right {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 0vh;
  width: 60%;
  background: white;
  z-index: 2;
  transition: height 0.6s ease-in-out;
  overflow: auto;
}

.dropdown-body-2,
.dropdown-body-3,
.dropdown-body-4,
.dropdown-body-5,
.dropdown-body-6,
.dropdown-body-7 {
  display: none;
}

.ecc-d-flex {
  display: flex;
  align-items: start;
}

.ecc-d-flex img {
  margin-top: 2px;
}

.dropdown-right-body {
  margin-left: 3vw;
  margin-top: 17.5vh;
}

.dropdown-nav_cross {
  display: flex;
  margin-right: 9vw;
  margin-top: 22px;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.dropdown-nav_cross img{
  width: auto;
}

.dropdown-right-body p {
  font-size: 22px;
  font-family: 'Poppins';
  line-height: 24px;
  margin-bottom: 50px;
}

.dropdown-right-body-2 {
  margin-left: 3vw;
}

.dropdown-right-body-2 p {
  margin-top: 7vh;
  font-size: 22px;
  font-family: 'Poppins';
  line-height: 24px;
  margin-bottom: 40px;
}

.dropdown-right-body-logo {
  display: -ms-grid;
  display: grid;
  row-gap: 30px;
  -webkit-column-gap: 30px;
  column-gap: 0px;
  width: 100%;
}

.mmt-col-1 {
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-columns: (1fr) [1];
}

.mmt-col-2 {
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
}

.mmt-col-3 {
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}

.mmt-col-4 {
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

.mmt-col-5 {
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
}

.dropdown-right-body-logo img {
  margin-right: 10px;
  width: auto;
  display: unset;
}

.dropdown-right-body-logo a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-family: 'Montserrat';
  line-height: 24px;
}

.dropdown-right-body-logo a:hover {
  text-decoration: underline;
}

.dropdown-nav_cross p {
  font-size: 26px;
  line-height: 46px;
  font-family: 'Poppins';
  color: black;
  margin-bottom: 0px;
}

.dropdown-right-footer {
  display: flex;
  gap: 3vw;
  /* justify-content: center;
  margin-top: 47px; */
  position: absolute;
  bottom: 46px;
  left: 20%;
}
}

.dropdown-right-footer p {
  font-family: 'Poppins';
}

.dropdown-right-footer a {
  color: black;
  font-family: 'Poppins';
}

.dropdown-right-footer a:hover {
  text-decoration: underline;
}

.nav-dropdown-ht {
  height: 100vh;
}

/* ------------------------ */

.side {
  position: -webkit-sticky;
  position: sticky;
  top: 21vh;
  width: 28vw;
  height: 28vw;
}

.testingH1 {
  position: relative;
  top: 3.6vh;
  left: 7.3vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

.data-icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5vw;
  height: 0.5vw;
}

.data-icon-img img {
  height: 100%;
  width: 100%;
}

.testingH2 {
  position: relative;
  top: 1.5vh;
  left: 22.8vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

.testingH3 {
  position: relative;
  top: 24vh;
  left: 30.6vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

.testingH4 {
  position: relative;
  top: 25vw;
  left: 24vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

.testingH5 {
  position: relative;
  top: 25.5vw;
  left: 8.9vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

.testingH6 {
  position: relative;
  top: 25vh;
  left: -0.1vw;
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
}

div.circle-data {
  width: 31vw;
  height: 31vw;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
}

.e-left-margin {
  margin-bottom: 40vh;
}

.e-left-margin-last {
  margin-bottom: 16vh;
}

.e-main {
  margin-top: 0vh;
}

.e-commerce-container {
  margin-left: 10vw;
  margin-top: 10vh;
}

.e-commerce-row {
  display: flex;
  gap: 20vw;
}

.e-commerce-left {
  flex-basis: 50%;
}

.e-commerce-header p {
  font-size: 26px;
  line-height: 43px;
  font-family: 'Poppins';
  font-weight: 300;
  color: #393939;
  margin: 0;
}

.e-commerce-header h2 {
  font-size: 48px;
  line-height: 64px;
  font-family: "Recoleta", serif;
  color: #393939;
}

.e-commerce-body {
  margin-bottom: 40px;
}

.e-commerce-body p {
  font-size: 16px;
  line-height: 27px;
  font-family: 'Poppins';
  font-weight: 300;
  color: #000;
}

.e-commerce-icon {
  display: flex;
  gap: 20px;
  align-items: center;
}

.e-commerce-icon p {
  font-size: 28px;
  line-height: 37px;
  color: #393939;
  font-family: 'Poppins';
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ------------video section----------- */

.video {
  position: relative;
}

.video-placeholder {
  width: 100% !important;
  height: 100% !important;
}

.video-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity .8s ease-in-out;

  .playing & {
    opacity: 1;
  }

  iframe {
    width: 100%;
    height: 100%;
  }
}

.video-preview {
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: opacity .8s ease-in-out;

  .playing & {
    opacity: 0;
  }
}

.video-container {
  margin-top: 20vh;
}

.video-thump {
  position: relative;
}

.video-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  position: absolute;
  top: 34%;
  width: 47%;
  text-align: end;
  color: white;
  left: 10%;
}

.video-text h3 {
  font-size: 62px;
  font-family: "Recoleta", serif;
  line-height: 66px;
  font-weight: 600;
}

.video-text p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  font-family: 'Poppins';
  margin-top: 20px;
}

.video-play img {
  height: 100%;
  width: 180%;
}

/* ---------award section------------- */

.award-container {
  margin-left: 10vw;
  margin-right: 10vw;
  margin-top: 5vh;
}

.award-row {
  display: flex;
  gap: 5vw;
  align-items: center;
}

.award-left h1 {
  font-size: 42px;
  line-height: 44px;
  font-family: "Recoleta", serif;
  color: #393939;
}

.award-row-update {
  margin-top: 20vh;
}

.award-left h1 {
  text-align: center;
  margin-bottom: 10vh;
}

.award-img-section {
  margin-bottom: 20vh;
}

.award-img {
  text-align: center;
}

.award-img span img {
  padding: 0px 10px 0px 10px;
}

.award-left span {
  color: #0b83fe;
}

.award-right-besis {
  flex-basis: 85%;
}

.award-right {
  flex-basis: 100%;
  display: flex;
  gap: 3vw;
  align-items: center;
}

.award-right-sub {
  display: flex;
  gap: 5vw;
  width: 28vw;
  align-items: center;
  color: #393939;
}

.award-right-content {
  text-align: end;
}

.award-year {
  font-size: 32px;
  font-family: Aceh;
  line-height: 43px;
  color: #393939;
  margin: 0;
  opacity: 0.5;
}

.award-right-content h2 {
  font-size: 48px;
  line-height: 44px;
  font-family: "Recoleta", serif;
  color: #393939;
}

.award-text {
  font-size: 16px;
  line-height: 27px;
  font-weight: 300;
  font-family: 'Poppins';
  color: #393939;
}

.award-right-pic {
  margin: 0;
  height: 20vh;
  overflow: hidden;
  padding-right: 136px;
}

.award-right-pic span {
  display: inline-block;
  display: block;
}

.award-right-pic span {
  display: block;
  animation: picIn 20s infinite;
  -webkit-animation: picIn 20s infinite;
}

@keyframes picIn {
  0% {
    transform: translateY(0%);
  }

  14% {
    transform: translateY(-100%);
  }

  28% {
    transform: translateY(-200%);
  }

  42% {
    transform: translateY(-300%);
  }

  56% {
    transform: translateY(-400%);
    -webkit-transform: translateY(-400%);
    -moz-transform: translateY(-400%);
    -ms-transform: translateY(-400%);
    -o-transform: translateY(-400%);
  }

  70% {
    transform: translateY(-500%);
    -webkit-transform: translateY(-500%);
    -moz-transform: translateY(-500%);
    -ms-transform: translateY(-500%);
    -o-transform: translateY(-500%);
  }

  84% {
    transform: translateY(-600%);
    -webkit-transform: translateY(-600%);
    -moz-transform: translateY(-600%);
    -ms-transform: translateY(-600%);
    -o-transform: translateY(-600%);
  }

  100% {
    transform: translateY(-700%);
    -webkit-transform: translateY(-700%);
    -moz-transform: translateY(-700%);
    -ms-transform: translateY(-700%);
    -o-transform: translateY(-700%);
  }
}


.award-right-pic-r {
  margin: 0;
  height: 45vh;
  width: 29vw;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 14vh;
}

.award-right-pic-r span {
  display: inline-block;
  display: block;
}

.award-right-pic-r span {
  display: block;
  padding-right: 45px;
  animation: picIn-1 20s infinite;
  animation-play-state: running;
  -webkit-animation: picIn-1 20s infinite;
}

@keyframes picIn-1 {
  0% {
    transform: translateX(0%);
  }

  14% {
    transform: translateX(-100%);
  }

  28% {
    transform: translateX(-200%);
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
  }

  42% {
    transform: translateX(-300%);
    -webkit-transform: translateX(-300%);
    -moz-transform: translateX(-300%);
    -ms-transform: translateX(-300%);
    -o-transform: translateX(-300%);
  }

  56% {
    transform: translateX(-400%);
    -webkit-transform: translateX(-400%);
    -moz-transform: translateX(-400%);
    -ms-transform: translateX(-400%);
    -o-transform: translateX(-400%);
  }

  70% {
    transform: translateX(-500%);
    -webkit-transform: translateX(-500%);
    -moz-transform: translateX(-500%);
    -ms-transform: translateX(-500%);
    -o-transform: translateX(-500%);
  }

  84% {
    transform: translateX(-600%);
    -webkit-transform: translateX(-600%);
    -moz-transform: translateX(-600%);
    -ms-transform: translateX(-600%);
    -o-transform: translateX(-600%);
  }

  100% {
    transform: translateX(-700%);
    -webkit-transform: translateX(-700%);
    -moz-transform: translateX(-700%);
    -ms-transform: translateX(-700%);
    -o-transform: translateX(-700%);
  }
}

/* MOUSE HOVER */

.award-right:hover .award-right-pic span {
  animation-play-state: paused;
  cursor: pointer;
}

.award-right:hover .award-right-pic-r span {
  animation-play-state: paused;
  cursor: pointer;
}


/* BLOG CUSTOM */

.blog-custom-text {
  text-align: center;
  width: 100%;
}

.blog-custom-text p {
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
}

.blog-left h3 {
  font-size: 42px;
  line-height: 44px;
  font-family: "Recoleta", serif;
}

.blog-left h3,
.blog-custom-text p {
  color: #ffffff;
}

main.bg-color-active .blog-left h3,
main.bg-color-active .blog-custom-text p {
  color: #393939;
}

.blog-container-two {
  margin-left: 10vw;
  margin-right: 10vw;
}

.input-footer-right-blog {
  margin-top: 6%;
}

#blog-custom .nav {
  display: flex !important;
  padding-top: 30px;
  position: inherit;
  transition: transform 0.8s ease-in-out;
  z-index: 1;
  border-radius: 12px;
  min-height: 0;
  border-bottom: 1px solid #707070;
  width: 100%;
  border-radius: 0;
}

#blog-custom .nav-pills .nav-link.active {
  background: transparent;
  color: #000000;
  font-weight: 600;
  border-bottom: 2px solid #0d6efb;
  border-radius: 0;
}

#blog-custom .nav-link {
  color: #393939;
  padding-left: 0px;
  margin-right: 53px;
  font-family: 'Poppins';
}

#blog-custom .owl-dots {
  display: none;
}

.footer-middle-button-blog {
  background: #25272d;
  padding: 10px 20px;
  width: 250px;
  float: right;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
  color: #fff;
}

.footer-middle-button-blog:hover {
  background: #0b84fe;
}

.footer-middle-button-blog .footer-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 29px;
  transition: 0.3s;
  font-family: 'Poppins';
}


.blog-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-container-two .tab-content>.active {
  display: flex !important;
  flex-direction: column !important;
}

.read-more.text-center {
  display: none;
}

.ISHR {
  width: 33%;
  padding: 10px;
  height: 300px;
}

.ISHR h6 {
  margin-top: 0px;
}

.new:after {
  content: "";
  display: table;
  clear: both;
}

.blog-card {
  height: auto;
  background: #fff;
  display: inline-block;
  margin: 0px 0px;
  padding: 15px;
  vertical-align: top;
  cursor: pointer;
  flex-direction: column;
  flex: 0 0 33% !important;
}

.blog-img {
  /* object-fit: unset; */
  height: auto;
  width: 100%;
}

.flex-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  color: #0a2939;
  flex-grow: 1;
  padding: 10px 20px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), #e0edf39e);
  margin-top: -18.5%;
}

.blog-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-headline {
  text-decoration: underline;
  margin-bottom: 10px;
  font-family: "Recoleta", serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: default;
}

.author-meta {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.title-date p {
  color: #fff;
  font-size: 16px;
}

.author-meta img {
  margin-right: 10px;
  align-self: center;
  border-radius: 50%;
}

.author-meta .author-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-details p {
  color: #fff
}

a.post-link {
  color: #0a2939;
  flex-grow: 1;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
}

.blog-categories a {
  background: #0a2939;
  color: #fff;
  padding: 5px 10px;
  margin: 5px 10px 5px 0;
}

.blog-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 15px 0px 15px 0px;
}

.blog-info p {
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  cursor: default;
}

.read-more-btn {
  color: #0a2939;
  margin-top: 20px;
  display: flex;
  align-items: center;
  align-self: flex-start;
  text-decoration: none;
  font-family: 'Poppins';
}

.read-more-btn .read-more-arrow {
  font-size: 1.3em;
  margin-left: 5px;
  transition: all 0.7s;
}

.read-more-btn:hover .read-more-arrow {
  transform: translateX(10px);
}

#blog-custom-container .owl-nav {
  top: -80px;
  right: 0;
  position: absolute;
}

#blog-custom-container-two .owl-nav {
  position: relative;
  top: -43px;
}

#blog-custom-container .owl-next span {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: -10px;
  left: 80px;
}

#blog-custom-container .owl-prev span {
  color: #fff;
  font-size: 40px;
  position: absolute;
  left: 22px;
  top: -10px;
}

#blog-custom-container .owl-next {
  background: #000;
  height: 40px;
  width: 40px
}

#blog-custom-container .owl-prev {
  background: #000;
  height: 40px;
  width: 40px
}

.blog_button-container {
  text-align: center;
}

.blog-button1 {
  margin-top: 40px;
  background: #25272d;
  padding: 10px 20px;
  width: 270px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
  font-size: 22px;
  color: white;
  line-height: 32px;
  transition: 0.3s;
  font-family: 'Poppins';
  text-decoration: none;
  display: inline-block;
}

.blog-button1:hover {
  background: #0B83FE;
  color: #fff;
}

/* .card-bg {
  max-width: 500px;
  width: 100%;
  height: 335px;
  position: relative;
  color: white;
}

.card-bg .card-bg-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-bg .card-bg-content .bottom p {
  font-size: 16px;
  font-family: 'Montserrat';
}

.card-bg .top {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.card-bg .top .name {
  font-size: 16px;
  font-family: 'Montserrat';
}

.card-bg .top .date {
  font-weight: bold;
  opacity: 0.8;
}

.card-bg .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), #e0edf39e);
}

.card-bg .bottom .bookmark {
  margin-left: 5rem;
}

.card-bg .bottom .bookmark .bookmark-icn {
  fill: white;
}

.card-bg .card-bg-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
}

.card-bg .card-bg-bg .bg-img {
  height: 100%;
  vertical-align: middle;
  object-fit: fill;
  width: 100%;
} */








/* Testimonials Custom */

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  transition: opacity .6s ease;
}

/* ---------- blog -------------- */

.blog-left {
  flex: 30%;
}

/* --------------why we---------------- */

.why-container {
  margin-left: 10vw;
  margin-right: 9vw;
  margin-top: 17.7vh;
}

.why-row {
  display: flex;
  gap: 10vw;
  justify-content: space-between;
  align-items: center;
}

.why-left {
  flex-basis: 35%;
}

.why-right {
  padding-right: 4.68vw;
}

.why-left-header p {
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 26px;
  line-height: 40px;
  margin: 0;
}

main.bg-color-active .why-left-header p {
  color: #707070;
}

.why-left-header h3 {
  font-size: 42px;
  font-family: "Recoleta", serif;
  line-height: 44px;
}

main.bg-color-active .why-left-header h3 {
  color: #393939;
}

main .why-left-header h3,
main .why-left-header p {
  color: #ffffff;
}

.why-left-header span {
  color: #0b83fe;
  font-size: 42px;
}

.why-left-body p {
  margin-top: 30px;
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #707070;
}

/* ---------------------we work-------- */

.work-container {
  margin-left: 10vw;
  margin-right: 9vw;
  margin-top: 17.6vh;
  margin-bottom: -9.5vh;
}

.work-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-left {
  display: flex;
  gap: 3vw;
}

.work-right {
  flex-basis: 42%;
}

/* --------------- expert ------------- */

.expert-container {
  margin-left: 12vw;
  margin-right: 9vw;
  margin-top: 20vh;
}

.expert-row {
  display: flex;
  gap: 5vw;
  justify-content: space-between;
  align-items: center;
}

.expert-right {
  flex-basis: 43%;
}

.expert-left-icon {
  display: flex;
}


@keyframes step-1 {
  0% {
    top: -22px;
    left: -25px;
  }

  100% {
    top: 0;
    left: 0;
  }
}

@keyframes step-2 {
  0% {
    top: -22px;
    left: 25px;
  }

  100% {
    top: 0;
    left: 0;
  }
}

@keyframes step-3 {
  0% {
    top: 22px;
    left: -25px;
  }

  100% {
    top: 0;
    left: 0;
  }
}

@keyframes step-4 {
  0% {
    top: 22px;
    left: 25px;
  }

  100% {
    top: 0;
    left: 0;
  }
}

/* ---------------- Technology ------------- */

.technology-container {
  margin-left: 11vw;
  margin-right: 9vw;
  margin-top: 22vh;
}

.technology-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technology-right {
  flex-basis: 42%;
}

.technology-left {
  position: relative;
}

.bg-left {
  position: relative;
  /* z-index: -2; */
  opacity: 1;
}

.technology-logo-midle {
  position: absolute;
  top: 19px;
  left: 226px;
  z-index: 1;
}

.technology-logo-1 {
  position: absolute;
  top: -14px;
  left: -56px;
}

.technology-logo-1:hover {
  transform: rotate(360deg) translateY(3px) rotate(-360deg);
  transition: all 5s;
}

.technology-logo-2 {
  position: absolute;
  bottom: 54px;
  left: -40px;
}

.technology-logo-3 {
  position: absolute;
  top: 135px;
  left: 93px;
}

.technology-logo-4 {
  position: absolute;
  top: 0px;
  left: 184px;
}

.technology-logo-5 {
  position: absolute;
  bottom: 28px;
  left: 227px;
}

.technology-logo-6 {
  position: absolute;
  top: -24px;
  right: 148px;
}

.technology-logo-7 {
  position: absolute;
  top: 83px;
  right: 77px;
}

.technology-logo-8 {
  position: absolute;
  bottom: 77px;
  right: -58px;
}

.technology-logo-9 {
  position: absolute;
  top: -12px;
  right: -67px;
}

@keyframes tech-bg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tech-logo-1 {
  0% {
    top: 74px;
    left: 240px;
    opacity: 0;
  }

  100% {
    top: -14px;
    left: -56px;
    opacity: 1;
  }
}

@keyframes tech-logo-2 {
  0% {
    bottom: 178px;
    left: 236px;
    opacity: 0;
  }

  100% {
    bottom: 54px;
    left: -40px;
    opacity: 1;
  }
}

@keyframes tech-logo-3 {
  0% {
    top: 73px;
    left: 243px;
    opacity: 0;
  }

  100% {
    top: 135px;
    left: 93px;
    opacity: 1;
  }
}

@keyframes tech-logo-4 {
  0% {
    top: 75px;
    left: 283px;
    opacity: 0;
  }

  100% {
    top: 0px;
    left: 184px;
    opacity: 1;
  }
}

@keyframes tech-logo-5 {
  0% {
    bottom: 179px;
    left: 240px;
    opacity: 0;
  }

  100% {
    bottom: 28px;
    left: 227px;
    opacity: 1;
  }
}

@keyframes tech-logo-6 {
  0% {
    top: 79px;
    right: 228px;
    opacity: 0;
  }

  100% {
    top: -24px;
    right: 148px;
    opacity: 1;
  }
}

@keyframes tech-logo-7 {
  0% {
    top: 73px;
    right: 248px;
    opacity: 0;
  }

  100% {
    top: 83px;
    right: 77px;
    opacity: 1;
  }
}

@keyframes tech-logo-8 {
  0% {
    bottom: 176px;
    right: 203px;
    opacity: 0;
  }

  100% {
    bottom: 77px;
    right: -58px;
    opacity: 1;
  }
}

@keyframes tech-logo-9 {
  0% {
    top: 62px;
    right: 218px;
    opacity: 0;
  }

  100% {
    top: -12px;
    right: -67px;
    opacity: 1;
  }
}

/* --------------- Brand ------------------- */

.mobile-brand-header {
  text-align: center;
}

.mobile-brand-header p {
  font-weight: 300;
}

.brand-container {
  margin-left: 9vw;
  margin-right: 9vw;
  margin-top: 17.8vh;
  margin-bottom: 20.7vh;
}

.brand-header {
  text-align: center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.brand-header h3 {
  font-size: 42px;
  font-family: "Recoleta", serif;
  line-height: 88px;
  color: #383838;
}

.brand-header p {
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
  color: #383838;
}

.brand-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 4vh;
}

.brand-body-1 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.brand-body-1 .brand-border {
  padding: 5vw;
  border-right: 1px solid #d8d8d8;
}

.brand-body-2 {
  display: flex;
  align-items: center;
  position: relative;
}

.brand-body-2 .brand-border {
  padding: 5vw;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
}

.brand-body-3 {
  display: flex;
  align-items: center;
  position: relative;
}

.brand-body-3 .brand-border {
  padding: 5vw;
  border-right: 1px solid #d8d8d8;
}

.brand-bottom-border {
  padding: 5vw;
  border-bottom: 1px solid #d8d8d8;
}

.brand-pading {
  padding: 5vw;
}

.testing {
  position: absolute;
  top: 5vw;
  left: 5vw;
  animation: brand-image1 8s infinite;
}

@keyframes brand-image1 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.testing2 {
  position: absolute;
  top: 5vw;
  right: 5vw;
  animation: brand-image2 8s infinite;
}

@keyframes brand-image2 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.testing9 {
  position: absolute;
  left: 5vw;
  animation: brand-image9 8s infinite;
}

@keyframes brand-image9 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.testing12 {
  position: absolute;
  right: 5vw;
  animation: brand-image12 8s infinite;
}

@keyframes brand-image12 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.testing6 {
  position: absolute;
  left: 23vw;
  animation: brand-image6 8s infinite;
}

@keyframes brand-image6 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.testing7 {
  position: absolute;
  right: 23vw;
  animation: brand-image7 8s infinite;
}

@keyframes brand-image7 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.brand-slider img {
  width: auto;
  height: auto;
  animation: scroll 20s linear infinite;
  -webkit-animation: scroll 20s linear infinite;
}

.brand-slide-track {
  width: 100%;
  display: flex;
  gap: 4em;
}

.brand-slider {
  padding: 8em 2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%);
  }
}



/* ---------------- client-container ------------- */

.client-container {
  margin-right: 9vw;
  margin-left: 10vw;
  margin-top: 20vh;
}

.client-row {
  display: flex;
  gap: 5vw;
}

.client-left {
  flex-basis: 50%;
}

.client-right {
  flex-basis: 50%;
}

.client-left img {
  height: 100%;
  width: 100%;
}

.client-right-header p {
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 26px;
  line-height: 30px;
  color: #393939;
  letter-spacing: 3px;
}

.client-right-header h2 {
  font-size: 66px;
  font-family: "Recoleta", serif;
  line-height: 88px;
  color: #383838;
  margin-bottom: 20px;
}

.clinet-right-body p {
  font-size: 20px;
  font-family: 'Poppins';
  color: #383838;
  line-height: 25px;
  margin-bottom: 30px;
}

span.biram-chinno {
  font-size: 30px;
  font-family: auto;
  font-weight: 900;
}

span.biram-chinno-rev {
  font-size: 30px;
  font-family: auto;
  font-weight: 900;
}

.client-title h4 {
  font-size: 20px;
  font-family: "Recoleta", serif;
  color: #383838;
  line-height: 27px;
  padding-bottom: 20px;
  border-bottom: 2px solid #707070;
}

.client-title p {
  font-size: 20px;
  font-family: 'Poppins';
  color: #383838;
  line-height: 27px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.last-title h4 {
  font-size: 20px;
  font-family: "Recoleta", serif;
  color: #383838;
  line-height: 27px;
}

.home-desktop-hide {
  display: none;
}

#carouselecommers .owl-nav {
  display: block !important;
}






/* Read More */


#text {
  display: none;
}

#textt {
  display: none;
}

#texttt {
  display: none;
}

#textf {
  display: none;
}

#textff {
  display: none;
}

#texts {
  display: none;
}

.cont-box {
  text-align: center;
  margin-top: 3.5vh;
}

.cont-box p {
  font-size: 16px;
  font-family: 'Poppins';
  text-align: justify;
  font-weight: 300;
  color: #707070;
}

.cont-box span {
  font-size: 16px;
  font-family: 'Poppins';
  color: #707070;
}



#textw {
  display: none;
}

#textww {
  display: none;
}

#textwww {
  display: none;
}

#textwwww {
  display: none;
}

#textwwwww {
  display: none;
}

.why-left-body span {
  font-size: 16px;
  font-family: 'Poppins';
  color: #707070;
}

.why-left-body .see-m {
  text-decoration: underline;
  font-size: 16px;
  color: #0B83FE;
}





.cont-box .see-m {
  text-decoration: underline;
  color: grey;
  font-size: 16px;
}

.submenu-position li a {
  text-align: left !important;
  display: flex !important;
  align-items: center;
  line-height: 45px;
  color: #000;
  font-family: 'Poppins';
  font-size: 16px;
}

.submenu-position li {
  list-style: none;
}

.cont-footer-part {
  display: grid;
  justify-content: center;
  text-align: center;
  margin-top: 50px !important;
  font-size: 16px;
}

.cont-footer-part p a {
  font-family: 'Poppins';
  color: #000;
  font-size: 16px;
}

li label a img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.four-mobile-menu {
  text-align: left;
  list-style: none;
}

.four-mobile-menu li {
  border-top: 0.5px solid #e7dcdc;
  padding: 10px 0px;
}

.a-label__chevron-two-one {
  background: transparent linear-gradient(100deg, #FFCDD2 0%, #FFD6A2 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-three {
  background: transparent linear-gradient(259deg, #FFEB9C 0%, #FFB1AD 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-four {
  background: transparent linear-gradient(96deg, #FFDFB4 0%, #FFADC1 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-five {
  background: transparent linear-gradient(102deg, #FBC1D1 0%, #E7A1F6 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-six {
  background: transparent linear-gradient(98deg, #A8A7F7 0%, #F1A4D4 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-seven {
  background: transparent linear-gradient(94deg, #F5C8FB 0%, #B0CDFE 100%) 0% 0% no-repeat padding-box;
}

.a-label__chevron-two-eight {
  background: transparent linear-gradient(98deg, #F0C8FC 0%, #F0E8CB 100%) 0% 0% no-repeat padding-box;
}

.mobl {
  display: flex;
  align-items: center;
}

.cont-box {
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cont-box-t {
  padding: 15px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.ser-art-imag img {
  width: 100%;
}
@media screen and (min-width: 1925px) {
  .home-navber .content {
    padding-left: 0vw;
    padding-right: 0vw;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .hero-container {
    margin-left: 0vw;
    padding-top: 26vh;
    padding-bottom: 27vh;
    margin-right: 0vw;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  } */

  .e-commerce-container {
    margin-left: 0vw;
    margin-top: 10vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-container {
    margin-top: 20vh;
    /* width: 2560px; */
    margin-left: auto;
    margin-right: auto;
  }

  .award-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 5vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }


  .why-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 35vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .work-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 20vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .expert-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 20vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .technology-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 20vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-container {
    margin-left: 0vw;
    margin-right: 0vw;
    margin-top: 25vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .client-container {
    margin-right: 0vw;
    margin-left: 0vw;
    margin-top: 20vh;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }

  .e-commerce-row {
    gap: 20vw;
  }

  .e-left-margin {
    margin-bottom: 30vh;
  }

  .side {
    width: 6vw;
  }

  .card-meta {
    margin-top: -10%;
  }
}














@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .hero-left-body h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-left-body .atp {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-left-body p {
    font-size: 16px;
  }

  .e-commerce-link p {
    font-size: 17px;
  }

  .award-right-pic {
    margin-top: 136px;
    height: 28vh;
  }

  .award-left {
    margin-top: 13vh;
  }

  .dropdown-left-nav li a {
    font-size: 30px;
  }

  .dropdown-left-nav ul li {
    margin-bottom: 14px;
  }

  .video-text h3 {
    font-size: 40px;
    line-height: 50px;
  }

  #blog-custom .nav-link {
    margin-right: 28px;
  }

  .card-meta {
    margin-top: -22%;
  }

  .author-meta {
    margin-bottom: 0px
  }

  .e-commerce-header p {
    font-size: 20px;
  }

  .e-commerce-header h2 {
    font-size: 35px;
  }

  .why-left-header h3 {
    font-size: 35px;
  }

  .why-left-header span {
    font-size: 35px;
  }

  .why-left-header p {
    font-size: 20px;
  }

  .award-left h1 {
    font-size: 35px;
  }

  .blog-left h3 {
    font-size: 35px;
  }

  .partner-header h3 {
    font-size: 35px;
  }

  .brand-header h3 {
    font-size: 35px;
  }

  .award-img span img {
    padding: 0px 30px 0px 30px;
    padding-bottom: 25px;
  }

  .dropdown-left-footer {
    margin-left: 4vw;
  }

  .dropdown-right-footer {
    bottom: 25px;
    left: 15%;
  }

  .dropdown-right-body {
    margin-left: 3vw;
    margin-top: 15vh;
  }
}


@media screen and (min-width: 1350px) and (max-width: 1450px) {
  .dropdown-right-footer {
    bottom: 62px;
    left: 8.5%;
  }

  .dropdown-right-footer p {
    font-size: 18px;
  }

  .dropdown-right-body {
    margin-top: 18vh;
  }

  .text-logo p {
    width: 12vh !important;
    height: 9.8vh;
  }

  .nav.left-navigation label.menu-text {
    height: 16vh;
  }

  .nav.left-navigation label.menu-text {
    right: -3.5vw;
  }

  .nav label.menu-text {
    width: 3.6vw;
  }

  .nav.left-navigation label.menu-toggle {
    background: #2D2D2D;
    right: -3.5vw;
  }

  .nav label.menu-toggle {
    margin-top: -7vh;
  }

  .nav label.menu-toggle {
    width: 3.6vw;
  }

  .glass-position-6 {
    top: 78px;
  }

  .testingH1 {
    position: relative;
    top: 2.6vh;
    left: 7.3vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH2 {
    position: relative;
    top: 1.5vh;
    left: 22.8vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH3 {
    position: relative;
    top: 16vh;
    left: 30.6vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH4 {
    position: relative;
    top: 25vw;
    left: 24vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH5 {
    position: relative;
    top: 25.5vw;
    left: 8.9vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH6 {
    position: relative;
    top: 15vh;
    left: -0.1vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }


}


@media screen and (min-width: 1250px) and (max-width: 1300px) {

  .nav.left-navigation label.menu-text {
    height: 14vh;
  }

  .nav.left-navigation label.menu-text {
    right: -3.5vw;
  }

  .nav label.menu-text {
    width: 3.6vw;
  }

  .text-logo p {
    width: 10vh !important;
    height: 8vh;
  }

  .nav.left-navigation label.menu-toggle {
    background: #2D2D2D;
    right: -3.5vw;
  }

  .nav label.menu-toggle {
    margin-top: -2vh;
  }

  .nav label.menu-toggle {
    width: 3.6vw;
  }

  .nav label.menu-toggle>span {
    margin-left: 1vh;
  }

  .nav label.menu-toggle {
    top: 26vh;
  }

  .dropdown-right-footer {
    left: 9%;
    bottom: 72px;
  }

  .dropdown-body {
    margin-top: -7vh;
  }

  .dropdown-left-footer {
    margin-left: 0.5vw;
  }

  .glass-position-6 {
    top: 78px;
  }

  .testingH1 {
    position: relative;
    top: 2.6vh;
    left: 7.3vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH2 {
    position: relative;
    top: 1.5vh;
    left: 22.8vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH3 {
    position: relative;
    top: 16vh;
    left: 30.6vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH4 {
    position: relative;
    top: 25vw;
    left: 24vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH5 {
    position: relative;
    top: 25.5vw;
    left: 8.9vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }

  .testingH6 {
    position: relative;
    top: 15vh;
    left: -0.1vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 50%;
  }
}




















@media screen and (max-width: 1024px) {
  .why-container {
    margin-top: 0;
  }

  .technology-container {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .client-say-what {
    margin-top: 5vh;
  }

  .work-container {
    margin-top: 5vh;
    margin-bottom: 0;
  }

  .why-container .row {
    /* background: #fff; */
    border-radius: 30px;
    padding: 20px;
  }

  .technology-container .row {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
  }

  .mobile-brand-container {
    padding-top: 5vh;
    padding-bottom: 0;
  }

  .owl-carousel .owl-item img {
    width: auto;
  }

  .multiple-container {
    background: #F6F8FE;
  }

  .working-part-for-mobile {
    /* background: #F5F5F5; */
    /* padding-top: 20px; */
    padding-bottom: 20px;
  }

  .blog-container-two {
    margin-top: 0;
  }

  .card-meta {
    margin-top: -13.5%;
  }

  #blog-custom .nav {
    border-bottom: none;
    text-align: -webkit-center;
    padding-top: 0;
  }

  #blog-custom .nav-pills .nav-link.active {
    background: #0B83FE;
    border-radius: 50px;
    color: #fff;
    padding: 10px;
    transition: all 1s ease;
  }

  #blog-custom .owl-dots {
    display: block;
    margin: 10px auto auto auto;
    width: fit-content;
  }

  #blog-custom .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #ffffff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
    border: 1px solid #d6d6d6;
  }

  #blog-custom .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
    border: 1px solid #000;
  }

  #blog-custom .nav-link {
    margin-right: 0;
    font-size: 18px;
    background: #F5F5F5;
    padding: 10px;
    border-radius: 50px;
  }

  #blog-custom .owl-carousel button.owl-dot {
    padding: 0 !important;
  }

  .blog-info {
    text-align: center;
  }

  .read-more-btn {
    align-self: center;
  }

  .mobile-award-container {
    margin-top: 5vh;
  }

  .dropdown-nav_cross_right img {
    width: 28px;
    height: 28px;
  }

  .dropdown-nav_cross_right a {
    font-size: 20px;
    font-family: 'Poppins';
    color: #fff;
    font-weight: 600;
  }

  .serve-container {
    margin-left: 10vw;
    margin-right: 10vw;
  }

  .serve-heading {
    text-align: center;
  }

  .card-bg {
    height: 300px;
  }
}





@media screen and (max-width: 768px) {
  .card-meta {
    margin-top: -14.5%;
  }
}


/* ------------ Design -------------- */

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .ecomclips {
    display: none;
  }

  .home-desktop-hide {
    display: block;
  }

  .tablet-show {
    display: block;
  }

  .home-mobile-hide {
    display: none;
  }

  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-left-body p {
    font-size: 18px;
  }

  .hero-left-body h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-left-body .atp {
    font-size: 32px;
    line-height: 50px;
  }

  /* .hero-container {
    margin: 0px 32px;
    padding: 134px 0px 100px 0px;
  } */

  .home-navber .content {
    padding: 0px 66px;
  }

  .desktop-mobile .hero-middle-button {
    display: none !important;
  }

  .hero-middle-button {
    margin: -1px auto auto auto;
  }

  .home-tablet-show {
    display: block !important;
  }

  .home-tablet-hide {
    display: none !important;
  }

  /* .hero-right {
    margin-top: 55px;
  } */

  .ecomclips-right-logo {
    height: 139vh;
  }

  .glass-position-1 {
    left: -40px;
  }

  .glass-position-5 {
    right: -53px;
  }

  .video-container {
    margin-top: 5vh;
  }

  .video-text h3 {
    line-height: 40px;
    font-size: 32px;
  }

  .video-text p {
    font-size: 28px;
    line-height: 20px;
  }

  .video-text {
    top: 70px;
    width: 45%;
    left: 60px;
  }

  .mobile-award-header {
    margin: 0px auto 0px auto;
    width: fit-content;
  }

  .mobile-award-header h1 {
    font-size: 32px;
    font-family: "Recoleta", serif;
    line-height: 27px;
    text-align: center;
  }

  .mobile-award-header span {
    color: #0b83fe;
  }

  .award-item-home {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px;
    padding: 0px;
    border-radius: 15px;/
  }

  .brand-item-home {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px;
    padding: 15px 10px;
    border-radius: 15px;
    width: auto;
    height: auto;
  }

  .award-home .owl-item .tablet-image-hide {
    display: none;
  }

  .award-home .owl-item .tablet-image-show {
    display: block;
    width: 136px;
    height: 136px;
  }

  .brand-home .owl-item .tablet-image-hide {
    display: none;
  }

  .brand-home .owl-item .tablet-image-show {
    display: block;
    width: 136px;
    height: 136px;
  }

  .brand-home .owl-item .tablet-image-hide {
    display: none;
  }

  .brand-home .owl-item .tablet-image-show {
    display: block;
    width: 136px;
    height: 136px;
  }

  .award-item-home h2 {
    font-size: 32px;
    line-height: 19px;
    font-family: "Recoleta", serif;
  }

  .mobile-award-body {
    margin-top: 68px;
  }

  .award-item-home p {
    margin-top: 5px;
    font-size: 28px;
    line-height: 15px;
    font-family: 'Poppins';
    width: 70%;
  }

  .award-home button.owl-dot {
    background: none;
    color: inherit;
    border: 1px solid #9b9a9a;
    margin-left: 5px;
    margin-bottom: 40px;
    padding: 5px !important;
    font: inherit;
    border-radius: 50%;
  }

  .award-home button.owl-dot.active {
    background: #000;
  }

  .brand-home button.owl-dot {
    background: none;
    color: inherit;
    border: 1px solid #9b9a9a;
    margin-left: 5px;
    margin-bottom: 40px;
    padding: 5px !important;
    font: inherit;
    border-radius: 50%;
  }

  .brand-home button.owl-dot.active {
    background: #000;
  }

  button.owl-dot.active {
    background: #fff;
  }

  .item {
    text-align: -webkit-center;
  }

  .data_manage_section_btn {
    background: black;
    color: white;
    font-size: 28px;
    line-height: 15px;
    font-family: 'Poppins';
    padding: 20px 30px;
    border: none;
    border-radius: 36px;
    margin-top: 12px;
  }

  .owl-dots {
    margin: 60px auto auto auto;
    width: fit-content;
  }

  /* ---------------------------------- */

  .ecom-container {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 39px 6px 67px 6px;
    margin: 20px;
  }

  .owl-icon-image-ecom1 {
    width: 217px;
    margin-bottom: 20px;
  }

  .owl-icon-image-ecom2 {
    width: 600px;
    margin-bottom: 20px;
  }

  .owl-icon-image-ecom3 {
    width: 200px;
    margin-bottom: 55px;
  }

  .owl-icon-image-ecom4 {
    width: 173px;
    margin-bottom: 50px;
  }

  .owl-icon-image-ecom5 {
    width: 280px;
    margin-bottom: 80px;
  }

  .ecommerce-body p {
    font-size: 28px;
    line-height: 21px;
    font-family: 'Poppins';
    padding: 10px 50px;
  }

  .ecommerce-body h3 {
    font-size: 32px;
    line-height: 37px;
    font-family: "Recoleta", serif;
  }

  .e-commerce-text {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .ecommerce-body h3 span {
    color: #0b83fe;
  }

  .ecommerce-slider .owl-nav button.owl-prev {
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 38vw;
    bottom: -34px;
    opacity: 1;
  }

  .ecommerce-slider .owl-nav button.owl-prev span {
    position: absolute;
    top: -20px;
    left: 12px;
    color: white;
  }

  .ecommerce-slider .owl-nav button.owl-next {
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font: inherit;
    right: 38vw;
    bottom: -34px;
    font-size: 45px;
    font-weight: 300;
    opacity: 1;
  }

  .ecommerce-slider .owl-nav button.owl-next span {
    position: absolute;
    top: -20px;
    left: 16px;
    color: white;
  }

  /* ------------------------------------------------------ */

  .brand-header h3 {
    font-size: 32px;
  }

  .brand-header p {
    font-size: 28px;
  }

  .brand-container {
    margin-top: 109px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .brand-body {
    width: fit-content;
    margin: auto;
  }

  .responsive-img {
    width: 100%;
  }

  .brand-body-1 div {
    padding: 5vw;
    border-bottom: 1px solid #d8d8d8;
  }

  .brand-body-1 div:not(:last-child) {
    border-right: 1px solid #d8d8d8;
  }

  .brand-body-2 div {
    padding: 5vw;
    border-bottom: 1px solid #d8d8d8;
  }

  .brand-body-2 div:not(:last-child) {
    border-right: 1px solid #d8d8d8;
  }

  .brand-body-3 div {
    padding: 5vw;
  }

  .brand-body-3 div:not(:last-child) {
    border-right: 1px solid #d8d8d8;
  }

  .brand-body-4 {
    display: flex;
    align-items: center;
    position: relative;
  }

  .brand-body-4 div {
    padding: 5vw;
    border-top: 1px solid #d8d8d8;
  }

  .brand-body-4 div:not(:last-child) {
    border-right: 1px solid #d8d8d8;
  }

  .client-container {
    margin-left: 32px;
    margin-right: 32px;
    margin-top: 10vh;
  }

  .client-row {
    flex-direction: column;
  }

  .client-title {
    margin-top: 46px;
  }

  .client-right-header p {
    font-size: 18px;
  }

  .client-right-header h2 {
    font-size: 32px;
  }

  .clinet-right-body p {
    font-size: 28px;
  }

  .client-title h4 {
    font-size: 18px;
  }

  .client-title p {
    font-size: 28px;
  }

  .last-title h4 {
    font-size: 18px;
  }

  .biram-chinno-rev {
    font-size: 16px !important;
  }

  .biram-chinno {
    font-size: 16px !important;
  }

  /* --------------------------------- */

  .nav-dropdown-left-mobile .logo {
    margin-left: 7vw;
    top: 23px;
    position: relative;
  }

  .nav-dropdown-left-mobile .logo img {
    height: 28px;
    width: 28px;
  }

  .nav-dropdown-left-mobile .logo a {
    font-size: 20px;
    font-family: 'Poppins';
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 7px;
  }

  .dropdown-nav_cross {
    margin-right: 7vw;
    margin-top: -3px;
    z-index: 10;
    /* position: relative; */
  }

  .dropdown-left-nav {
    margin-left: 5vw;
    text-align: center;
    margin-right: 5vw;
    padding-top: 3vh;
  }

  .nav-dropdown-left-mobile {
    /*background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 0vh;
    z-index: 3;
    z-index: 2;
    transition: height 0.6s ease-in-out;
    overflow: hidden;
    */
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    z-index: 4;
    transition: all .5s ease-in-out;
    overflow-y: auto;
  }

  .dropdown-left-nav ul li {
    margin-bottom: 24px;
    border-radius: 10px;
    padding: 25px !important;
    height: auto;
  }

  .dropdown-left-footer a {
    font-size: 18px;
    line-height: 24px;
    margin-left: 20px;
  }

  ol,
  ul {
    padding-left: 0rem;
  }

  .mobile-nav-drop-right {
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    z-index: 4;
    transition: all .5s ease-in-out;
    overflow-y: auto;
  }

  .nav-dropdown-wd {
    left: 0%;
  }

  .nav-dropdown-ht {
    /* height: 100vh;
    overflow-y: auto; */
    left: 0;
  }

  .dropdown-left-nav li a {
    font-size: 30px;
    color: #000;
    font-family: 'Poppins';
    font-weight: 600;
  }

  .dropdown-left-nav ul li {
    margin-bottom: 24px;
    border-radius: 10px;
    padding: 25px !important;
    height: auto;
  }

  .dropdown-nav_cross_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 24px 40px;
  }

  .data_management_p {
    width: 90%;
    margin: 0 auto;
  }

  .dropdown-nav_cross_right p {
    font-size: 24px;
    line-height: 32px;
    font-family: 'Poppins';
  }

  .data_management_mobile_body a {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Poppins';
    color: black;
  }

  .dropdown-right-body-logo-mobile {
    display: -ms-grid;
    display: grid;
    row-gap: 5px;
    -webkit-column-gap: 30px;
    column-gap: 29px;
    margin-left: 20px;
  }

  .data_management_p p {
    font-size: 24px;
    line-height: 32px;
    font-family: 'Poppins';
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
  }
  
  .data_management_p p img {
    height: 24px;
    width: 24px;
  }

  .dropdown-left-footer {
    margin-left: 0vw;
    margin-top: 19vh;
    display: flex;
    justify-content: space-evenly;
    align-items: end;
  }

  /* ------------------------------------ */

  .services-assin-container {
    margin: 0px 16px 10px 16px;
    text-align: -webkit-center;
  }

  .services-change-line {
    height: 1px;
    width: 80%;
    background-color: #eeeeee;
    position: relative;
  }

  .services-number-bg-div {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    z-index: 1;
  }

  .services-number-bg-1 {
    position: absolute;
    background-color: #0b83fe;
    border: 1px solid #0b83fe;
    color: white;
    top: -14px;
    left: 0px;
  }

  .services-number-bg-2 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -14px;
    left: 19%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-3 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -14px;
    left: 38%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-4 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -14px;
    left: 57%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-5 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -14px;
    left: 76%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-6 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -14px;
    right: 0px;
    transition: all 0.6s ease-in-out;
  }

  .services-change-line p {
    font-size: 14px;
    font-family: 'Poppins';
    margin-top: 4px;
  }

  .services-images {
    position: relative;
    margin-top: 60px;
    height: 300px;
    width: 288px;
    display: flex;
    gap: 50px;
    overflow: hidden;
  }

  .services-images1 {
    position: absolute;
    top: 0;
    left: 0px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images2 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images3 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images4 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images5 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 300px;
    transition: all 0.6s ease-in-out;
  }

  .services-images6 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images p {
    font-size: 28px;
    line-height: 21px;
    font-family: 'Montserrat';
  }

  .services-images h2 {
    font-size: 32px;
    font-family: "Recoleta", serif;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .data_manage_section_btn {
    background: black;
    color: white;
    font-size: 20px;
    line-height: 15px;
    font-family: 'Poppins';
    padding: 15px 30px;
    border: none;
    border-radius: 36px;
    margin-top: 12px;
  }

  .hero-icon {
    margin-top: 10px;
  }

  .why-left-header p {
    font-size: 20px;
    line-height: 21px;
    font-family: 'Poppins';
  }

  .why-left-header {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .mobile-brand-header p {
    font-size: 20px;
  }

  .mobl p {
    font-size: 30px;
    font-weight: 600;
  }

  .cont-footer-part p a {
    font-size: 20px;
    font-weight: 400;
  }

  .blog-custom-text p {
    font-size: 20px;
  }

  .cont-box p {
    font-size: 20px;
  }

  .why-left-body p {
    font-size: 20px;
    line-height: 30px;
  }

  .blog-info p {
    font-size: 20px;
  }

  .read-more-btn {
    font-size: 20px;
  }

  .submenu-position li a {
    font-size: 20px;
    align-items: start;
  }

  li label a img {
    margin-top: 10px;
  }

  .why-left-body span {
    font-size: 20px;
  }

  .cont-box span {
    font-size: 20px;
  }

  .cont-box .see-m {
    font-size: 20px;
  }

  .why-left-body .see-m {
    font-size: 20px;
  }

  .blog-headline {
    font-size: 20px;
  }
}





























/* --------------------- Design -------------- */

@media screen and (max-width: 480px) {
  .show-on-desktop {
    display: none !important;
  }

  .tablet-image-show {
    display: none !important;
  }

  .home-navber .content {
    padding-left: 20px;
    padding-right: 0vw;
  }

  .logo {
    justify-content: center;
    /* justify-content: flex-start; */
  }

  .home-navber .logo img {
    padding-right: 5px;
    width: 25px;
  }

  .home-navber .logo a {
    font-size: 16px;
  }

  .nav-dropdown-left {
    width: 100%;
  }

  .dropdown-left-nav li a {
    font-size: 16px;
    color: #000;
    line-height: 0;
    font-weight: 400 !important;
  }

  /* ----------Hero Section-------------- */

  .home-desktop-hide {
    display: block;
  }

  .home-mobile-hide {
    display: none;
  }

  /* .hero-container {
    margin-left: 16px;
    padding-top: 100px;
    padding-bottom: 1vh;
    margin-right: 16px;
    text-align: center;
  } */

  .ppc-hero-container {
    margin-left: 16px;
    padding-top: 100px;
    padding-bottom: 15vh;
    margin-right: 16px;
    text-align: center;
  }

  .hero-row {
    flex-direction: column;
    gap: 0px !important;
  }

  .ecomclips {
    display: none;
  }

  .hero-left-body p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 2px;
  }

  .hero-left-body h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .hero-left-body .atp {
    font-size: 22px;
    line-height: 32px;
  }

  .ppc-hero-left-body a {
    display: none;
  }

  .glass-effect p {
    font-size: 12px;
    line-height: 15px;
  }

  .hero-right {
    margin-top: 40px;
  }

  .glass-effect {
    padding: 9px 18px 9px 18px;
  }

  .glass-position-1 {
    top: 0px;
    left: 10px;
  }

  .glass-position-2 {
    bottom: 44px;
    left: -4px;
  }

  .glass-position-3 {
    top: -13px;
    right: -1px;
  }

  .glass-position-4 {
    bottom: 1px;
    right: 60px;
  }

  .glass-position-5 {
    bottom: 60px;
    right: 0px;
  }

  .glass-position-6 {
    top: 30px;
    right: 50px;
  }

  /* --------------------------------- */

  .nav-dropdown-left-mobile .logo {
    margin-left: 9vw;
    top: 26px;
    position: relative;
    justify-content: flex-start;
  }

  .nav-dropdown-left-mobile .logo img {
    height: 20px;
    width: 20px;
  }

  .nav-dropdown-left-mobile .logo a {
    font-size: 16px;
    font-family: 'Poppins';
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
  }

  .dropdown-nav_cross {
    margin-right: 9vw;
    margin-top: -3px;
    z-index: 10;
    /* position: relative; */
  }

  .dropdown-left-nav {
    margin-left: 8vw;
    text-align: center;
    margin-right: 8vw;
    padding-top: 3vh;
  }

  .nav-dropdown-left-mobile {
    /*background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 0vh;
    z-index: 3;
    z-index: 2;
    transition: height 0.6s ease-in-out;
    overflow: hidden;
    */
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    z-index: 4;
    transition: all .5s ease-in-out;
    overflow-y: auto;
  }

  .dropdown-left-nav ul li {
    margin-bottom: 24px;
    border-radius: 10px;
    padding: 25px !important;
    height: auto;
  }

  .dropdown-left-footer a {
    font-size: 12px;
    line-height: 16px;
    margin-left: 0px;
    align-self: center;
    justify-self: center;
  }

  .dropdown-left-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-content: center;
    margin-top: 25vh;
    align-self: center;
    gap: 10px;
  }

  .dropdown-left-footer {
    margin-left: 0;
  }

  ol,
  ul {
    padding-left: 0rem;
  }

  .mobile-nav-drop-right {
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    z-index: 4;
    transition: all .5s ease-in-out;
  }

  .nav-dropdown-wd {
    left: 0%;
    overflow-y: auto;
  }

  .nav-dropdown-ht {
    /* height: 100vh;
    overflow-y: auto; */
    left: 0;
  }

  .data_management_p {
    width: 90%;
    margin: 0 auto;
  }

  .dropdown-nav_cross_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 24.5px 29px;
  }

  .dropdown-nav_cross_right p {
    font-size: 18px;
    line-height: 24px;
    font-family: 'Poppins';
  }

  .data_management_mobile_body a {
    font-size: 16px;
    line-height: 15px;
    font-family: 'Poppins';
    color: black;
    display: block;
  }

  .multichannel_softwares_mobile_body a {
    font-size: 12px;
    line-height: 15px;
    font-family: 'Poppins';
    color: black;
    display: block;
  }

  .dropdown-right-body-logo-mobile {
    display: -ms-grid;
    display: grid;
    row-gap: 5px;
    -webkit-column-gap: 30px;
    column-gap: 29px;
    margin-left: 20px;
  }

  .dropdown-right-body-logo-mobile li {
    height: 5vh;
  }

  .data_management_p p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins';
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

    
  .data_management_p p img {
    height: 24px;
    width: 24px;
  }


  /* ------------------------------------ */

  .services-assin-container {
    margin: 0px 16px 10px 16px;
    text-align: -webkit-center;
  }

  .services-change-line {
    height: 1px;
    width: 100%;
    background-color: #eeeeee;
    position: relative;
  }

  .services-number-bg-div {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    z-index: 1;
  }

  .services-number-bg-1 {
    position: absolute;
    background-color: #0b83fe;
    border: 1px solid #0b83fe;
    color: white;
    top: -9px;
    left: 0px;
  }

  .services-number-bg-2 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -9px;
    left: 19%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-3 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -9px;
    left: 38%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-4 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -9px;
    left: 57%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-5 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -9px;
    left: 76%;
    transition: all 0.6s ease-in-out;
  }

  .services-number-bg-6 {
    position: absolute;
    background-color: white;
    border: 1px solid #a2a2a2;
    top: -9px;
    right: 0px;
    transition: all 0.6s ease-in-out;
  }

  .services-change-line p {
    font-size: 8px;
    font-family: 'Poppins';
    margin-top: 4px;
  }

  .services-images {
    position: relative;
    margin-top: 40px;
    height: 210px;
    width: 288px;
    display: flex;
    gap: 50px;
    overflow: hidden;
  }

  .services-images1 {
    position: absolute;
    top: 0;
    left: 0px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images2 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images3 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images4 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images5 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images6 {
    position: absolute;
    top: 0;
    left: 288px;
    width: 288px;
    transition: all 0.6s ease-in-out;
  }

  .services-images p {
    font-size: 16px;
    line-height: 15px;
    font-family: 'Poppins';
  }

  .services-images h2 {
    font-size: 22px;
    font-family: "Recoleta", serif;
    line-height: 27px;
    margin-bottom: 10px;
  }

  .why-left-header h3 {
    font-size: 22px;
    font-family: "Recoleta", serif;
    line-height: 27px;
    margin-bottom: 30px;
  }

  .data_manage_section_btn {
    background: black;
    color: white;
    font-size: 16px;
    line-height: 15px;
    font-family: 'Poppins';
    padding: 10px 20px;
    border: none;
    border-radius: 36px;
    margin-top: 12px;
  }

  /* --------------------- */

  .mobile-video-container {
    background-color: #f5f5f5;
    margin: 0px 16px 60px 16px;
    border-radius: 15px;
  }

  .mobile-video-row img {
    height: 100%;
    width: 100%;
  }

  .mobile-video-row h4 {
    font-size: 16px;
    line-height: 19px;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .mobile-video-row p {
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 24px;
    margin-left: 10px;
    padding-bottom: 25px;
  }

  /* -------------------------------- */

  .mobile-award-container {
    margin-left: 16px;
    margin-right: 16px;
    text-align: center;
  }

  .mobile-award-header h1 {
    font-size: 23px;
    font-family: "Recoleta", serif;
    line-height: 27px;
  }

  .mobile-award-header span {
    color: #0b83fe;
  }

  .award-item-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 15px 10px;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    border-radius: 15px;
    width: 200px;
  }

  .brand-item-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 15px 10px;
    border-radius: 15px;
    width: auto;
  }

  .award-home .owl-item img {
    height: 64px;
    width: 64px;
  }

  .brand-home .owl-item img {
    height: auto;
    width: auto;
  }

  .award-item-home h2 {
    font-size: 16px;
    line-height: 19px;
    font-family: "Recoleta", serif;
  }

  .award-item-home p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 15px;
    font-family: 'Poppins';
  }

  .award-home button.owl-dot {
    background: none;
    color: inherit;
    border: 1px solid #9b9a9a;
    margin-left: 5px;
    margin-bottom: 40px;
    padding: 3px !important;
    font: inherit;
    border-radius: 50%;
  }

  .award-home button.owl-dot.active {
    background: #000;
  }

  .brand-home button.owl-dot {
    background: none;
    color: inherit;
    border: 1px solid #9b9a9a;
    margin-left: 5px;
    margin-bottom: 40px;
    padding: 3px !important;
    font: inherit;
    border-radius: 50%;
  }

  .brand-home button.owl-dot.active {
    background: #000;
  }

  button.owl-dot.active {
    background: #fff;
  }

  .item {
    text-align: -webkit-center;
  }


  .why-left-header p {
    font-size: 16px;
    line-height: 15px;
    font-family: 'Poppins';
    color: #000;
  }


  /* ---------------------------------- */

  .ecom-container {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 39px 6px 67px 6px;
    margin: 20px;
  }

  .owl-icon-image-ecom1 {
    width: 217px;
    margin-bottom: 20px;
  }

  .owl-icon-image-ecom2 {
    width: 85px;
    margin-bottom: 20px;
  }

  .owl-icon-image-ecom3 {
    width: 200px;
    margin-bottom: 55px;
  }

  .owl-icon-image-ecom4 {
    width: 173px;
    margin-bottom: 50px;
  }

  .owl-icon-image-ecom5 {
    width: 280px;
    margin-bottom: 80px;
  }

  .ecommerce-body p {
    font-size: 12px;
    line-height: 15px;
    font-family: 'Poppins';
  }

  .ecommerce-body h3 {
    font-size: 23px;
    line-height: 27px;
    font-family: "Recoleta", serif;
    margin: 3px 0px 8px 0px;
  }

  .ecommerce-body h3 span {
    color: #0b83fe;
  }

  .ecommerce-slider .owl-nav button.owl-prev {
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 30vw;
    bottom: -34px;
    opacity: 1;
  }

  .ecommerce-slider .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  .ecommerce-slider .owl-nav button.owl-next {
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 30vw;
    bottom: -34px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .ecommerce-slider .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  /* ------------------------------------------------------ */

  .mobile-brand-container {
    margin: 0px;
    text-align: center;
  }

  .mobile-brand-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .mobile-brand-body div {
    padding: 10px;
    height: 50px;
    width: 110px;
  }

  .brand-border-1,
  .brand-border-2,
  .brand-border-3 {
    border-bottom: 1px solid rgb(234 234 234);
  }

  .mobile-brand-body div:not(:nth-child(3n)) {
    border-right: 1px solid rgb(234 234 234);
  }


  .mobile-brand-header h2 {
    text-align: center;
    font-size: 23px;
    font-family: "Recoleta", serif;
    line-height: 27px;
  }

  .mobile-brand-header p {
    text-align: center;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  /* ------------------------------------- */

  .mobile-clients-container {
    background-color: #f5f5f5;
    margin: 16px;
    padding: 40px 15px;
    border-radius: 15px;
    margin-bottom: 5vh;
  }

  .mobile-clients-row h2 {
    text-align: center;
    font-size: 23px;
    font-family: "Recoleta", serif;
    line-height: 27px;
    margin-bottom: 20px;
  }

  .mobile-clients-row p {
    font-size: 12px;
    font-family: 'Poppins';
    line-height: 15px;
    margin-bottom: 10px;
  }

  .mobile-clients-row h4 {
    font-size: 12px;
    font-family: "Recoleta", serif;
    line-height: 15px;
  }

  .mobile-clients-row img {
    height: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .why-left-header {
    text-align: center;
    margin-top: 30px;
  }

  .why-left-body p {
    font-size: 16px;
    color: #000;
  }

  .video-text-t p {
    font-size: 16px;
    text-align: center;
    padding-bottom: 25px;
  }

  .blog-custom-text p {
    font-size: 16px;
  }

  .blog-info p {
    font-size: 16px;
  }

  .card-meta {
    margin-top: -20.5%;
  }

  .title-date p {
    font-size: 14px;
  }

  .mobl p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }

  .author-meta {
    margin-bottom: 0px
  }

  .dropdown-nav_cross_right img {
    width: 20px;
    height: 20px;
  }

  .dropdown-nav_cross_right a {
    font-size: 16px;
    font-family: 'Poppins';
    color: #fff;
    font-weight: 600;
  }

  .why-left-body span {
    font-size: 16px;
    font-family: 'Poppins';
    color: #000;
  }

  .read-more-btn {
    font-size: 16px;
  }

  .cont-footer-part p a {
    font-size: 16px;
    font-weight: 400;
  }

  .submenu-position li a {
    font-size: 16px;
    align-items: start;
  }

  li label a img {
    margin-top: 10px;
  }

  #blog-custom-container-two .owl-nav {
    position: relative;
    top: -42px;
  }

  .cont-footer-part p {
    display: block;
  }

  .blog-headline {
    font-size: 16px;
  }

  .home-mobile-hide-two {
    display: none;
  }

  #blog-custom .nav-pills .nav-link {
    font-size: 12px;
    padding: 5px;
  }

  #blog-custom .nav-pills .nav-link.active {
    border-bottom: none;
    font-weight: 300;
    padding: 5px;
  }

  /* .card-bg{
    height: 250px;
  } */
}


@media screen and (max-width: 320px) {
  .mobile-brand-flex:nth-child(2n) {
    background-color: #0b83fe;
  }
}

/* @media screen and (min-width: 320px) {
  .col-sm-6-6{
    flex:  0 0 auto;
    width: 50%;
  }
} */

/* ------ Contents of extra/homeStyle.css end ------ */



/* ------ Contents of fix_style.css ------ */

.blog-button1,
.blog_button-container,
.ecc-captcha,
.ecc-email-modal-content,
.logo-ms,
.menuTitel-logo,
.text-logo p,
p.heading {
    text-align: center
}

.form-control:focus,
.nav label:focus {
    outline: 0
}

#navBg ul li,
#navBg>ul>li>a {
    position: relative
}

.logo-ms a,
a[href="#"] {
    text-decoration: none !important
}

.hero-bottom-margin,
.trustpilot-widget {
    margin-bottom: 10vh
}

.color-one {
    color: #3daffe;
    cursor: pointer
}

.color-five:hover,
.color-four:hover,
.color-one:hover,
.color-seven:hover,
.color-six:hover,
.color-three:hover,
.color-two:hover {
    color: #fff !important
}

.color-two {
    color: #b998fd
}

.color-three {
    color: #ef9cfe
}

.color-four {
    color: #fee32a
}

.color-five {
    color: #fe84f1
}

.color-six {
    color: #01adfd
}

.color-seven {
    color: #02fef5
}

.form-check-input-block,
.nav {
    display: block !important
}

.bg-black {
    background-color: #000
}

.color-white {
    color: #fff
}

.color-red {
    color: red
}

.textarea-height {
    height: 100px
}

.display-none {
    display: none
}

.mobile-margin-top {
    margin-top: 5vh
}

.mobile-thumb-img-0 {
    cursor: pointer;
    width: 100%
}

.mobile-thumb-img-260 {
    cursor: pointer;
    width: 100%;
    height: 260px;
    object-fit: cover
}

.mobile-thumb-img-500 {
    cursor: pointer;
    width: 100%;
    height: 500px
}

.animation-duration {
    animation-duration: 30s
}

.banner-image-padding {
    padding-top: 60px;
    padding-bottom: 60px
}

.gif-img-width-100 {
    width: 100%
}

.height-200 {
    height: 200px
}

.blog-button1 {
    margin-top: 40px;
    background: #25272d;
    padding: 10px 20px;
    width: 240px;
    height: 50px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
    font-size: 22px;
    color: #fff;
    line-height: 32px;
    font-family: 'Poppins';
    text-decoration: none;
    display: inline-block;
    border: none
}

#navBg ul.submenu,
#navBg>ul>li>a {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.blog-button1:hover,
.drawer-btn:hover {
    background: #0b83fe;
    color: #fff
}

#blog-cont,
#blog-cont2,
#blog-cont3,
#blog-cont4,
#blog-cont5,
#blog-cont6,
.ecc_email_form .col-form-label {
    display: flex
}

#blog-cont10,
#blog-cont11,
#blog-cont12,
#blog-cont7,
#blog-cont8,
#blog-cont9 {
    display: flex;
    flex-direction: column
}

@media (max-width:768px) {
    .nav {
        display: none !important
    }

    .ecc-email-modal-content {
        width: 100%
    }

    .dropdown-nav_cross_right {
        z-index: 9999
    }

    .modal-fullscreen-sm-down {
        height: auto
    }
}

@media screen and (max-width:1024px) {

    .form-control:focus,
    .nav label:focus {
        outline: 0
    }

    #navBg ul li,
    #navBg>ul>li>a {
        position: relative
    }

    .logo-ms a,
    a[href="#"] {
        text-decoration: none !important
    }

    .hero-bottom-margin,
    .trustpilot-widget {
        margin-bottom: 10vh
    }

    .color-one {
        color: #3daffe;
        cursor: pointer
    }

    .color-five:hover,
    .color-four:hover,
    .color-one:hover,
    .color-seven:hover,
    .color-six:hover,
    .color-three:hover,
    .color-two:hover {
        color: #fff !important
    }

    .color-two {
        color: #b998fd
    }

    .color-three {
        color: #ef9cfe
    }

    .color-four {
        color: #fee32a
    }

    .color-five {
        color: #fe84f1
    }

    .color-six {
        color: #01adfd
    }

    .color-seven {
        color: #02fef5
    }

    .form-check-input-block,
    .nav {
        display: block !important
    }

    .bg-black {
        background-color: #000
    }

    .color-white {
        color: #fff
    }

    .color-red {
        color: red
    }

    .textarea-height {
        height: 100px
    }

    .display-none {
        display: none
    }

    .mobile-margin-top {
        margin-top: 5vh
    }

    .mobile-thumb-img-0 {
        cursor: pointer;
        width: 100%
    }

    .mobile-thumb-img-260 {
        cursor: pointer;
        width: 100%;
        height: 260px;
        object-fit: cover
    }

    .mobile-thumb-img-500 {
        cursor: pointer;
        width: 100%;
        height: 500px
    }

    .animation-duration {
        animation-duration: 30s
    }

    .banner-image-padding {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .gif-img-width-100 {
        width: 100%
    }

    .height-200 {
        height: 200px
    }

    .blog-button1 {
        margin-top: 40px;
        background: #25272d;
        padding: 10px 20px;
        width: 240px;
        height: 50px;
        overflow: hidden;
        transition: .3s;
        cursor: pointer;
        border-radius: 25px;
        box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
        font-size: 22px;
        color: #fff;
        line-height: 32px;
        font-family: AcehRegular;
        text-decoration: none;
        display: inline-block;
        border: none
    }

    #navBg ul.submenu,
    #navBg>ul>li>a {
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out
    }

    .blog-button1:hover,
    .drawer-btn:hover {
        background: #0b83fe;
        color: #fff
    }

    #blog-cont,
    #blog-cont2,
    #blog-cont3,
    #blog-cont4,
    #blog-cont5,
    #blog-cont6,
    .ecc_email_form .col-form-label {
        display: flex
    }

    #blog-cont10,
    #blog-cont11,
    #blog-cont12,
    #blog-cont7,
    #blog-cont8,
    #blog-cont9 {
        display: flex;
        flex-direction: column
    }
}

@media screen and (max-width:768px) {
    .blog-button1 {
        line-height: 16px;
        width: 170px;
        height: 40px
    }
}

menu menu span,
nav {
    display: block
}

#navBg ul {
    list-style: none;
    margin: 0;
    padding: 0
}

#navBg>ul>li {
    display: inline-block;
    padding: 0 6px
}

.header #navBg>ul>li>a {
    line-height: 100px
}

#navBg ul.submenu>li>a,
.top-nav.dropdown-btn.drop-active {
    display: block;
    text-decoration: none;
    line-height: 30px;
    margin: 0 auto
}

#navBg>ul>li.home>a {
    color: #18ba60
}

#navBg>ul>li>a {
    display: block;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    font-weight: 600;
    transition: .3s ease-in-out
}

#navBg ul.submenu {
    position: absolute;
    left: 0;
    top: 200%;
    width: max-content;
    background-color: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    border-radius: 10px;
    padding: 12px 25px;
    box-shadow: rgba(0, 0, 0, .05) 0 0 0 1px
}

#navBg ul.submenu li:first-child {
    border-top: none
}

#navBg ul li ul li {
    margin-left: 0
}

#navBg ul.submenu>li>a {
    color: #000;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

#navBg ul.submenu>li>a:hover,
.top-nav.dropdown-btn.drop-active:hover {
    color: #0b84fe
}

#navBg ul li:hover>ul.submenu {
    top: 140%;
    opacity: 1;
    visibility: visible
}

.mobile-header {
    background: rgba(0, 0, 0, .9);
    height: 50px;
    width: 100%
}

.row:after {
    clear: both;
    content: "";
    display: table
}

.mobile-nav-toggle {
    position: relative;
    min-height: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px
}

.mobile-nav-toggle span {
    font-family: fontAwesome;
    font-size: 20px;
    color: #fff
}

.menu-toggle,
.mobile-nav-toggle span:hover,
.mobile-top-bar .mobile-nav-toggle.close:hover {
    cursor: pointer
}

.mobile-nav-toggle span i {
    display: block;
    height: 20px;
    width: 100%
}

.mobile-nav-toggle span i:first-child {
    margin-top: 0
}

.mobile-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 30px 50px 10px
}

.ecc-email-modal,
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%
}

.mobile-top-bar .mobile-nav-toggle.close {
    color: #fff;
    height: 25px;
    text-align: center;
    width: 35px
}

.main-navigation {
    padding: 50px
}

.logo-ms img {
    padding-right: 5px;
    width: 25px;
    margin-top: -4px
}

.logo-ms a {
    font-family: RalewayBlod !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important
}

.drawer-input,
.drawer-label,
.text-logo p {
    font-family: Aceh, sans-serif !important
}

.navigation {
    transition: right .4s linear;
    background: #000;
    overflow: auto;
    right: -100%;
    z-index: 3
}

.navigation.open {
    right: 0
}

.mobile-nav-open {
    overflow: hidden
}

@media screen and (min-width:1025px) {
    .mobile-nav-toggle {
        display: none
    }
}

a[href="#"] {
    opacity: .6;
    cursor: not-allowed
}

.ecc-email-modal-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column
}

.drawer-form input[type=text] {
    background: 0 0 !important;
    border-radius: 20px;
    border: 1px solid #494848;
    color: #afafaf !important
}

.iti input[type=tel] {
    color: #afafaf !important
}

.drawer-form input[type=email] {
    background: 0 0 !important;
    border-radius: 20px;
    border: 1px solid #494848;
    color: #afafaf
}

.text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.text-logo img {
    width: 26.21px;
    margin: 20.29px 10.27px -18.81px 9.52px;
    height: 24.42px
}

.text-logo p {
    font-weight: 600;
    white-space: nowrap;
    transform: rotate(270deg)
}

.menuTitel {
    display: flex;
    height: 7vh;
    gap: 4px;
    top: -31px;
    border: 1px solid #252525;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #2d2d2d;
    border-radius: 0 12px 0 0
}

.menu {
    overflow: auto
}

.menuTitel img {
    padding: 5px;
    width: 40px;
    height: 40px
}

p.heading {
    margin-bottom: 0;
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
    font-family: Raleway, sans-serif !important
}

#left-menu,
input[type=reset] {
    display: none !important
}

.nav span {
    cursor: default
}

.nav,
.nav .nav {
    min-height: 200px;
    padding-top: 30px;
    position: fixed;
    top: 67px;
    transition: transform .8s ease-in-out;
    width: 30vw;
    z-index: 9999999;
    border-radius: 12px 12px 12px 0
}

.nav.left-navigation,
.nav.left-navigation nav {
    background: #252525;
    color: #fff;
    left: 0;
    transform: translateX(-30vw)
}

.nav label {
    font-weight: 400;
    margin: 0
}

.nav label.menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding: 0;
    top: 468px;
    position: absolute;
    width: 46px;
    border-radius: 0 0 15px;
    margin-top: -60px
}

.nav label.menu-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    line-height: 0;
    top: 215px;
    padding: 0;
    position: absolute;
    width: 46px;
    border-radius: 0 15px 0 0
}

.nav.left-navigation label.menu-toggle {
    background: #2d2d2d;
    right: -46px
}

.nav.left-navigation label.menu-toggle:hover {
    background: #4ea9f6
}

.nav.left-navigation label.menu-text {
    cursor: pointer;
    background: #0b84fe;
    right: -46px !important;
    height: 205px
}

nav.left-navigation label.menu-text>h1 {
    height: 20px;
    color: #f7f7f7
}

.nav label.menu-toggle>img {
    display: block;
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: invert(100%);
    -webkit-filter: invert(100%)
}

.nav menu {
    margin: 0;
    padding-bottom: 2.5vh;
    padding-left: 0
}

input[type=checkbox]:checked~.nav {
    transform: translateX(0)
}

.introduction {
    background: #f7f7f7;
    border-radius: .5em;
    box-shadow: 0 .5em .5em 0 #999;
    padding: 2em
}

.drawer-form {
    display: flex;
    align-items: center;
    color: #a1a1a1
}

.drawer-label {
    flex: 10%;
    padding-bottom: 20px;
    font-size: 16px
}

.drawer-form-body {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px
}

.drawer-form-body .iti {
    width: 52%;
    margin-bottom: 20px
}

.drawer-input {
    width: 100% !important;
    background: 0 0 !important;
    flex: 15% !important;
    border: 1px solid #2f2f2f !important;
    border-radius: 26px !important;
    padding: 6px 15px !important;
    font-size: 16px !important;
    margin-bottom: 20px !important
}

.drawer-select,
.drawer-width-add label.menu-text {
    background: #252525 !important
}

.drawer-select,
.drawer-textarea {
    border: 1px solid #2f2f2f;
    font-size: 14px
}

.drawer-btn,
.drawer-select,
.drawer-textarea {
    font-family: Aceh, sans-serif !important;
    margin-bottom: 20px;
    width: 100%
}

#phone-drawer {
    padding-right: 6px !important;
    padding-left: 52px !important
}

.drawer-select {
    color: #a1a1a1;
    border-radius: 26px;
    padding: 10px 15px
}

.drawer-textarea {
    background: 0 0 !important;
    border-radius: 26px;
    padding: 20px 20px 70px;
    color: #afafaf !important
}

.drawer-btn {
    background: #2d2d2d;
    color: #fff;
    border: 1px solid #2f2f2f;
    border-radius: 26px;
    padding: 9px 15px;
    font-size: 16px
}

.drawer-input:focus,
.drawer-select:focus,
.drawer-textarea:focus {
    outline: 0;
    border: 1px solid #5a5a5adf
}

.drawer-textarea::-webkit-scrollbar {
    display: none
}

.nav menu::-webkit-scrollbar {
    display: none
}

select.select-icon {
    -webkit-appearance: none
}

.drawer-checkbox-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #a1a1a1;
    margin-bottom: 12px
}

.madatory-feild,
.mandatory-feild {
    color: red;
    padding: 0 5px
}

.ecc-email-modal-content {
    display: flex;
    align-items: center;
    flex-direction: column
}

.ecc-email-modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999999999999999999999999999;
    left: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, .4)
}

.ecc-email-modal-content {
    background-color: #fefefe;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 200px 24px;
    border: 1px solid #888;
    width: 35%;
    border-radius: 15px;
    display: flex;
    height: 30%;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    font-family: Montserrat
}

.ecc-email-close {
    position: absolute;
    top: 2px;
    right: 25px;
    font-size: 55px;
    color: #aaa;
    cursor: pointer
}

.ecc-email-close:hover {
    color: #000
}

#ecc-email-modal-status {
    font-weight: 900
}

.ecc-email-modal-content a {
    text-decoration: underline;
    color: #888
}

#ecc-email-modal-message {
    color: #888
}

.ecc-email-submit-btn {
    border: none;
    background: 0 0;
    cursor: pointer;
    width: 100%
}

.contact-checkbox-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6px;
    margin-bottom: 16px
}

.ecc-captcha {
    margin-bottom: 16px
}

.footer-middle-btnText2 {
    font-size: 22px !important;
    color: #fff !important;
    margin: 0 !important;
    border-radius: 25px;
    background-color: #0b83fe !important
}

.modal-content {
    background-color: #1a1a1a;
    color: #fff
}

.form-control,
.form-control:focus {
    color: #efeff0;
    background: 0;
    border-color: #2f2f2f
}

.form-check-input {
    background-color: #a5a5a5
}

.blog-headline {
    -webkit-line-clamp: 4;
    height: 100px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600
}

.dropdown-nav_cross_right {
    position: -webkit-sticky;
    position: sticky;
    top: 0
}

.dropdown-nav_cross_right div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ecc-etg-btn-container button:hover {
    background-color: #81e56d
}

.eec-contact-checkbox-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 6px;
    margin-bottom: 16px
}

@media screen and (max-width:480px) {
    .main-navigation {
        padding: 25px
    }

    .mobile-nav-toggle span i {
        padding: 1rem;
        height: auto
    }

    .mobile-top-bar {
        padding: 30px 10px 10px 23px
    }

    #blog-custom .nav-pills .nav-link {
        text-wrap: nowrap !important
    }

    .blog-headline {
        height: 80px
    }

    .line-footer {
        display: none
    }

    .mobile-footer-container {
        padding-bottom: 50px
    }

    .why-left-header h3 {
        margin-top: 20px
    }

    .video-text-t p {
        padding-bottom: 35px
    }

    .hero-middle-button {
        margin: 10px 0 25px
    }
}

@media (max-width:768px) {
    .nav {
        display: none !important
    }

    .ecc-email-modal-content {
        width: 100%
    }

    .dropdown-nav_cross_right {
        z-index: 9999
    }

    .modal-fullscreen-sm-down {
        height: auto
    }

    .modal-for-content {
        padding: 5px !important
    }

    .modal-content {
        width: 80%
    }
  
}

.top-nav.dropdown-btn.drop-active {
    color: #000;
    font-size: 14px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-family: montserrat
}

#blog-custom .nav-link {
    font-size: 16px;
    line-height: 44px
}

.career-container.home-mobile-hide.home-tablet-hide .footer-middle-btnText2 {
    margin: 2px 0 0 !important;
    padding: 10px 42px
}

.input-contact[type=text] {
    margin-top: 8px;
    margin-bottom: 24px
}

.contact-container.ccsubmit .iti {
    margin-top: 8px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}



.author-details p,
.dropdown-left-footer .left-info p,
.spin:hover {
    font-size: 18px;
    line-height: 26px
}

.dropdown-left-footer .left-info a {
    font-size: 18px;
    line-height: 24px
}

.dropdown-left-footer .link-container a {
    font-size: 14px;
    color: #d0d4d7cc
}

.dropdown-left-footer .link-container a:hover {
    color: #fff;
    text-decoration: underline
}

.menuTitel-logo img {
    padding: 5px;
    width: 30%;
    height: auto
}

.menuTitel-logo {
    padding-bottom: 25px
}

.amazon-heading-with-text-three h3 {
    margin-top: 3.5vh;
    margin-bottom: 2.5vh
}

.amazon-heading-with-text-two ul li {
    display: flex;
    line-height: 45px
}

.career-container.container-enjoy {
    margin-top: 4vh
}

/* .ecc_email_form .fill-up-pera {
    margin-bottom: 2rem !important
} */

.left-navigation.nav.drawer-bg .text-logo p {
    font-weight: 500
}

.text-logo p {
    height: 23px;
    width: 85px;
    font-size: 18px !important;
    margin: 78px 67px 15px 72px
}

.award-img-section {
    margin-bottom: 5vh
}

.trustpilot-widget a {
    font-size: 20px !important
}

.footer-middle-btnText2 {
    padding: 10px 103px;
    text-wrap: nowrap
}

.cont-box-t h3 {
    margin-top: 5px;
    margin-bottom: 20px
}

.footer-bg .footer-middle-button .footer-middle-btnText {
    margin-top: 3px
}

.footer-bg .footer-middle-button .footer-middle-btnText2 {
    margin:0;
}

@media screen and (max-width:1024px) {
    .blog-button1 {
        line-height: 16px;
        width: 200px;
        margin-top: 0
    }

    .col-form-label-mobile {
        font-size: 1rem
    }

    .nav.left-navigation {
        display: none !important
    }
}

@media screen and (max-width:1550px) {
    .nav.left-navigation {
        width: 46vw;
        transform: translateX(-46vw)
    }
}

.drawer-form-body .nav label {
    font-family: 'Poppins' !important;
}

.col-form-label-mobile {
    font-size: 1rem
}

/* ------ Contents of fix_style.css end ------ */

/* ------ Contents of footer.css ------ */

.review-container {
  display: flex;
  margin-top: 180px;
  width: 100%;
  height: 1080px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.right-content-profile {
  margin-right: 18vh;
}

.carousel-trust {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 200px;
}

.carousel__item {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  color: #ffffff;
  opacity: 0;
  will-change: transform, opacity, color;
  -webkit-animation: carousel-animate-vertical 12.5s linear infinite;
  animation: carousel-animate-vertical 12.5s linear infinite;
  animation-play-state: running;
}

/* MOUSE HOVER */

.carousel__item:nth-child(1) {
  -webkit-animation-delay: calc(2.5s * -1);
  animation-delay: calc(2.5s * -1);
}

.carousel__item:nth-child(2) {
  -webkit-animation-delay: calc(2.5s * 0);
  animation-delay: calc(2.5s * 0);
}

.carousel__item:nth-child(3) {
  -webkit-animation-delay: calc(2.5s * 1);
  animation-delay: calc(2.5s * 1);
}

.carousel__item:nth-child(4) {
  -webkit-animation-delay: calc(2.5s * 2);
  animation-delay: calc(2.5s * 2);
}

.carousel__item:last-child {
  -webkit-animation-delay: calc(-2.5s * 2);
  animation-delay: calc(-2.5s * 2);
}

.carousel__item-head {
  border-radius: 50%;
  background-color: #ffffff;
  width: 90px;
  height: 90px;
  padding: 14px;
  position: relative;
  margin-right: -45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin-bottom: 20px;
}

.carousel__item-body {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
}

.carousel__item-body p {
  margin: 0px;
}

.title {
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 10px;
}

@-webkit-keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }

  3%,
  11.1111111111% {
    transform: translateY(100%) scale(0.7);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  14.1111111111%,
  22.2222222222% {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    color: #000000;
  }

  25.2222222222%,
  33.3333333333% {
    transform: translateY(-100%) scale(0.7);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  36.3333333333% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  100% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }
}

@keyframes carousel-animate-vertical {
  0% {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }

  10%,
  20% {
    transform: translateY(100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  30%,
  40% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    color: #000000;
  }

  50%,
  60% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  65% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible;
    color: #ffffff;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
  }
}

.carousel__item_r {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation: carousel-animate-horizontal 12.5s linear infinite;
  animation: carousel-animate-horizontal 12.5s linear infinite;
  animation-play-state: running;
}

.carousel__item-body_r {
  width: 100%;
  background-color: #fff;
  color: #1d2b3a;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
}

.carousel__item_r:nth-child(1) {
  -webkit-animation-delay: calc(2.5s * -1);
  animation-delay: calc(2.5s * -1);
}

.carousel__item_r:nth-child(2) {
  -webkit-animation-delay: calc(2.5s * 0);
  animation-delay: calc(2.5s * 0);
}

.carousel__item_r:nth-child(3) {
  -webkit-animation-delay: calc(2.5s * 1);
  animation-delay: calc(2.5s * 1);
}

.carousel__item_r:nth-child(4) {
  -webkit-animation-delay: calc(2.5s * 2);
  animation-delay: calc(2.5s * 2);
}

.carousel__item_r:last-child {
  -webkit-animation-delay: calc(-2.5s * 2);
  animation-delay: calc(-2.5s * 2);
}

@keyframes carousel-animate-horizontal {
  0% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }

  10%,
  20% {
    transform: translateX(100%);
    opacity: 0;
    visibility: visible;
  }

  30%,
  40% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  50%,
  60% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: visible;
  }

  70% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: visible;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}

.trust-carousl-transition {
  transition: transform 1.25s ease-in-out;
}

.review-left {
  padding-left: 10vw;
  color: white;
  flex: 50%;
  padding-top: 120px;
  padding-bottom: 300px;
  z-index: 1;
  position: relative;
}

.review-left-header {
  margin-bottom: 80px;
}

.review-left-header h3 {
  font-size: 42px;
  line-height: 44px;
  font-family: "Recoleta", serif;
  margin-bottom: 30px;
}

.review-left-header p {
  margin: 0px;
}

.review-left-header div {
  font-size: 20px;
  line-height: 28px;
  font-family: "Recoleta", serif;
  margin-bottom: 50px;
  width: 80%;
}

.reviewer-text h4 {
  font-family: "Recoleta", serif;
  font-size: 30px;
  line-height: 15px;
}

.reviewer-text {
  margin-top: 5px;
}

.reviewer-text p {
  font-family: 'Poppins';
  font-size: 20px;
  line-height: 27px;
}

.reviewer-text h5 {
  font-family: "Recoleta", serif;
  font-size: 20px;
  line-height: 27px;

  margin: 0;
}

.review-right {
  position: relative;
  flex: 50%;
  background: white;
  padding-right: 107px;
  padding-top: 320px;
  padding-bottom: 160px;
}

.left-body-review {
  display: flex;
  gap: 20px;
}

.left-body-review div {
  margin-bottom: 45px;
}

.left-body-review div h4 {
  font-size: 30px;
  font-family: "Recoleta", serif;
  line-height: 40px;
  margin-bottom: 0px;
}

.left-body-review div p {
  font-size: 20px;
  font-family: 'Poppins';
  line-height: 27px;
  margin-bottom: 0px;
}

.left-body-review img {
  height: 100%;
}

.right-header-top {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.profile-image-right {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  align-self: center;
}

.review-body {
  margin-top: 60px;
  position: relative;
  height: 250px;
}

.clon-image {
  /* height: 30%;
  width: 25%; */
  height: 15%;
  width: 15%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.profile-image-left {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name h4 {
  font-size: 30px;
  font-family: "Recoleta", serif;
  line-height: 40px;
  color: #1d2b3a;
  margin: 0px;
}

.reviewer-name p {
  font-size: 20px;
  font-family: 'Poppins';
  line-height: 27px;
  margin: 0px;
  color: #1d2b3a;
}

.reviewer-name h5 {
  font-size: 20px;
  font-family: "Recoleta", serif;
  line-height: 27px;
  margin-bottom: 0px;
  color: #1d2b3a;
}

.review-body p {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 32px;
  color: #1d2b3a;
  text-align: justify;
  width: 90%;
  margin-left: auto;
}

.review-layer {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000032;
  display: none;
}

.review-layer div {
  text-align-last: center;
  color: white;
  margin-top: 275px;
}

.review-layer div p {
  margin-top: 50px;
}

.review-right:hover .review-layer {
  display: none;
}

.trust-bg-left {
  background: rgb(255, 255, 255);
  height: 120px;
  position: relative;
  width: 100%;
  top: -74px;
  z-index: -1;
}

.trust-bg-left p {
  color: #000000 !important;
}

/* ----------------------------- Contact Us ------------------------ */

.footer-bg {
  background: #000000;
  position: relative;
}

.midle-border {
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #2f2f2f;
}

.footer-container {
  margin: 0vw 10vw;
  color: #727272;
  background: #000000;
  color: #727272;
}

.content-left-header h3 {
  margin-bottom: 60px;
  font-size: 42px;
  line-height: 53px;
  font-family: "Recoleta", serif;
}

.footer-row {
  display: flex;
  gap: 100px;
  padding-top: 120px;
  padding-bottom: 50px;
}

.content-left {
  flex: 50%;
}

.content-right {
  flex: 50%;
}

.content-left-body-1 {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.content-left-body-1 h3 {
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
}

.content-left-body-1 p {
  font-size: 16px;
  line-height: 19px;
  font-family: "Recoleta", serif;
  font-weight: 400;
}

.content-left-body-1 div {
  flex: 50%;
}

.social-link a {
  color: #727272;
}

.social-link a:hover {
  color: #fff;
}

.footer-top-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -188px;
}

.footer-top-right-icon {
  position: absolute;
  background: black;
  padding: 11px;
  width: 50px;
  height: 50px;
  margin: 31px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 1px 1px 19px 0px #626262;
}

.content-right {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  top: -35px;
}

.logo-left-footer {
  margin-bottom: 20px;
}

.gradient-bg2 {
  background-image: url("../images/img/Bg_back.webp");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.trust-us-container {
  position: absolute;
  z-index: 9999;
  top: 20%;
}

.facebbok-media-bg {
  position: absolute;
  top: 70px;
  left: 70px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: fb-move 4s infinite;
}

@keyframes fb-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.facebook-icon {
  margin-top: 19px;
  width: auto;
  display: unset;
}

.skype-media-bg {
  position: absolute;
  top: 70px;
  left: 370px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: sk-move 5s infinite;
}

@keyframes sk-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.linkedin-media-bg {
  position: absolute;
  left: 240px;
  top: 270px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: ln-move 4.5s infinite;
}

@keyframes ln-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.instagram-media-bg {
  position: absolute;
  left: 540px;
  top: 280px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: in-move 4.3s infinite;
}

@keyframes in-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.reddit-media-bg {
  position: absolute;
  left: 80px;
  top: 490px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: rd-move 4.7s infinite;
}

@keyframes rd-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(3px) rotate(-360deg);
  }
}

.youtube-media-bg {
  position: absolute;
  left: 395px;
  top: 460px;
  background: black;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
  text-align: center;
  animation: yt-move 5s infinite;
}

@keyframes yt-move {
  0% {
    transform: rotate(0deg) translateY(3px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateY(3px) rotate(360deg);
  }
}

.logo-footer {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 40px;
}

.logo-left {
  margin-top: 7px;
}

.logo-line {
  margin-bottom: 20px;
}

.logo-right p {
  font-size: 14px;
  line-height: 19px;
  font-family: 'Poppins';
}

.logo-right h2 {
  font-size: 20px;
  line-height: 27px;
  font-family: "Recoleta", serif;
}

.line-footer {
  border: 1px solid gray;
}

.hr-design {
  height: 0.1px !important;
  color: #707070;
  margin: 0px;
}

.hr-design1 {
  height: 0.1px !important;
  color: #707070;
  margin: 0px;
}

.input-footer {
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 0vw;
}

.input-footer-left {
  flex: 60%;
}

.input-footer-right {
  flex: 40%;
}

.input-footer-left {
  display: flex;
  gap: 4.5vw;
  align-items: center;
}

.input-footer-left p a {
  font-size: 16px;
  line-height: 21px;
  font-family: 'Poppins';
  color: #727272;
}

.footer-middle-input {
  width: 30vw;
  height: 48px;
  background: transparent;
  color: #6d6d6d;
  border: 1px solid #2f2f2f;
  border-radius: 26px 0px 0px 26px;
  margin-right: -216px;
  padding: 0px 25px;
  font-family: 'Poppins';
}

.footer-middle-button {
  background: #25272d;
  padding: 10px 20px;
  width: 368px;
  float: right;
  height: 50px;
  overflow: hidden;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
}

.footer-middle-button .footer-middle-btnText {
  font-size: 22px;
  color: white;
  line-height: 29px;
  transition: 0.3s;
  font-family: 'Poppins';
}

.footer-middle-button .footer-middle-btnText2 {
  font-size: 22px;
  margin-top: 10px;
  margin-right: 50px;
  line-height: 29px;
  color: white;
  font-family: 'Poppins';
}

.footer-middle-button:hover .footer-middle-btnTwo {
  left: -20px;
}

.footer-middle-button:active {
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
}

.footer-middle-btnTwo {
  position: relative;
  width: 350px;
  height: 50px;
  margin-top: -40px;
  padding-top: 0.2px;
  border-radius: 25px;
  background: #0b83fe;
  left: -400px;
  transition: 0.7s;
}

.footer-middle-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 30vw;
  height: 50px;
  position: relative;
}

.footer-middle-input:focus {
  outline: none;
  border: 1px solid #5a5a5adf;
}

.footer-bottom {
  display: flex;
  gap: 0vw;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
}

.footer-bottom-left {
  display: flex;
  gap: 12vw;
  width: 100%;
  justify-content: space-between;
}

.footer-bottom-left p {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 21px;
  font-weight: 400;
}

.footer-bottom-left a {
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 21px;
  font-weight: 400;
  color: #535353;
}

.footer-bottom-left h5 {
  font-size: 16px;
  font-family: "Recoleta", serif;
  line-height: 27px;
}

.footer-bottom-right h5 {
  font-size: 16px;
  font-family: "Recoleta", serif;
  line-height: 27px;
}

.footer-bottom-right img {
  margin-right: 23px;
  margin-bottom: 20px;
}

.home-tablet-show {
  display: none;
}

.they-trust-body p {
  font-weight: 300;
}
.they-trust-header p {
  font-weight: 300;
}

.iti__country-name {
  color: #0092ff;
}

.dmca-badge img {
  width: auto;
  display: unset;
}

@media screen and (min-width: 1920px) {
  .footer-container {
    margin: 0vw 0vw;
    width: 1522px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1550px) {
  .content-left-header h3 {
    font-size: 35px;
  }

  .review-left-header h3 {
    font-size: 35px;
  }

  .content-left-body-1 h3 {
    font-size: 19px;
  }
  .footer-middle-input {
    margin-right: -122px;
  }
  .footer-middle-btnTwo {
    width: 304px;
  }
  .review-body p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  #carouselTheyTrust .owl-nav {
    display: block !important;
  }
  #carouselTheyTrustBlog .owl-nav {
    display: block !important;
  }
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  h2 {
    margin: 0;
  }

  h4 {
    margin: 0;
  }

  p {
    margin: 0;
  }

  .bottom-footer-mobile-hide {
    display: none;
  }

  .trust-mobile-hide {
    display: none;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: 8vw;
  }

  .they-trust-header-f {
    text-align: center;
    padding-top: 70px;
  }

  .they-trust-header-f h3 {
    font-size: 22px;
    line-height: 29px;
    color: #cdd1d9;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header-f h3 span {
    color: #0b83fe;
  }
  .they-trust-header {
    text-align: center;
    padding-top: 2vh;
  }

  .they-trust-header h3 {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header h3 span {
    color: #0b83fe;
  }
  .they-trust-slider {
    margin-top: 20px;
  }

  .owl-icon-image-trust {
    display: block;
    height: 100px;
    width: 100px;
    margin-bottom: 5vh;
  }

  .they-trust .owl-item img {
    display: block;
    width: 120px;
  }

  .they-trust-body h2 {
    margin-top: 20px;
    font-size: 22px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    line-height: 30px;
  }
  .they-trust-body h3 {
    color: #000;
  }

  .they-trust-body h4,
  .they-trust-body p {
    font-size: 14px;
    color: #000;
    font-family: "Recoleta", serif;
    /* line-height: 19px; */
    padding-bottom: 6px;
  }

  .they-trust .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: 0;
    top: 40%;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 0;
    top: 40%;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-next span {
    position: absolute;
    top: -50%;
    left: 30%;
    color: white;
  }

  .they-trust .owl-nav button.owl-prev span {
    position: absolute;
    top: -50%;
    right: 30%;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 40%;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 45px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: -20px;
    top: 40%;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-next span {
    position: absolute;
    top: -50%;
    left: 30%;
    color: white;
    transform: translateY(4%);
  }

  .they-trust-blog .owl-nav button.owl-prev span {
    position: absolute;
    top: -50%;
    right: 30%;
    color: #fff;
    transform: translateY(4%);
  }

  /* ---------------------- Creative services ---------------- */

  .creative-services-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .owl-icon-image-creative {
    display: block;
    height: 70px;
    width: 70px;
    background-color: #25272d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .creative-services .owl-item img {
    display: block;
    width: 20px;
    height: 20px;
  }

  .creative-services .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 32px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 32px;
    top: 83px;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .creative-services .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* --------------- connect tools ------------------- */
  .connect-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .connect-tools {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .connect-tools-bg {
    height: 30px;
    width: 30px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgb(255 255 255 / 28%) 0px 0px 55px;
    margin-bottom: 40px;
  }

  .connect-tools-bg img {
    height: 11px;
    width: 11px;
  }

  .connect-body p {
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 19px;
    color: #727272;
  }

  .connect-body h4 {
    font-size: 14px;
    font-family: "Recoleta", serif;
    line-height: 19px;
    color: #727272;
    margin-bottom: 5px;
  }

  .connect-social {
    margin-top: 15px;
  }

  .mobile-footer-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .mobile-logo-left-footer {
    margin-right: 30px;
  }

  .mobile-logo-footer {
    display: flex;
    padding-top: 85px;
    align-items: center;
  }

  .mobile-logo-right p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 19px;
    font-family: 'Poppins';
    color: #727272;
  }

  .mobile-logo-right h2 {
    font-size: 16px;
    line-height: 21px;
    font-family: "Recoleta", serif;
    color: #727272;
  }

  .fotter-input {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    width: 272px;
    background: transparent;
    border-radius: 36px;
    border: 1px solid #2f2f2f;
    padding: 15px 0px 15px 35px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #6d6d6d;
  }

  .fotter-input:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .footer-button {
    height: 50px;
    width: 272px;
    background: #0b83fe;
    border-radius: 36px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
    border: none;
  }

  .footer-contact-info h4 {
    font-size: 14px;
    line-height: 19px;
    color: #727272;
    font-family: "Recoleta", serif;
    margin-top: 20px;
  }

  .footer-contact-info p {
    font-size: 14px;
    line-height: 19px;
    color: #727272;
    font-family: 'Poppins';
    margin-top: 5px;
  }

  .footer-com-logo {
    padding-bottom: 40px;
  }

  .footer-com-logo img {
    margin-top: 20px;
  }
}

/* ------Design---------- */

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .home-tablet-hide {
    display: none;
  }

  .home-tablet-show {
    display: none;
  }

  .footer-title {
    font-size: 32px !important;
    text-align: center;
    padding-top: 10vh;
    font-family: "Recoleta", serif !important;
  }

  .footer-title span {
    color: #0b83fe;
  }

  .footer-container {
    margin: 0px 32px;
  }

  .link-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0px;
  }

  .link-title {
    font-family: "AcehRegular" !important;
    font-size: 32px !important;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    text-decoration: underline;
  }

  .link-text {
    font-size: 20px;
    line-height: 24px;
    color: #727272;
    width: 90%;
    font-family: "Montserrat";
  }

  .icon-bg {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50%;
    box-shadow: rgb(255 255 255 / 34%) 0px 0px 42px;
    text-align: center;
  }

  .input-footer-left {
    flex-direction: column;
    align-items: flex-start;
    font-weight: 800;
  }

  .input-footer-left p {
    font-size: 21px;
  }

  .input-text {
    width: 332px;
    height: 55px;
    background: transparent;
    color: #6d6d6d;
    border: 1px solid #2f2f2f;
    border-radius: 36px;
    padding: 0px 40px;
    font-size: 20px;
    outline: none;
    font-family: "AcehRegular";
  }

  .input-text:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .subscribe-button {
    border-radius: 36px;
    padding: 0px 40px;
    background: #0b83fe;
    color: white;
    font-family: "AcehRegular";
    width: 332px;
    height: 55px;
    margin-top: 30px;
    font-size: 20px;
    border: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom-left {
    justify-content: space-between;
  }

  .logo-footer {
    justify-content: flex-start;
    margin-left: 32px;
    padding-bottom: 15px;
    width: fit-content;
  }

  .logo-right p {
    color: #727272;
    color: 17px;
  }

  .input-footer-left {
    gap: 3.5vw;
  }

  .logo-right h2 {
    color: #727272;
    font-size: 26px;
  }

  .footer-bottom-right {
    margin-top: 60px;
  }

  .footer-border-tablet {
    width: 422px;
    border: 0.4px solid #2f2f2f;
    margin-left: 32px;
  }

  .footer-border-tablet-address {
    width: 422px;
    border: 0.4px solid #2f2f2f;
    margin-top: 20px;
  }

  .company-info-title {
    font-size: 23px !important;
    font-weight: 700;
  }

  .company-info-text {
    font-size: 21px !important;
  }

  .address-container {
    margin-bottom: 80px;
  }

  .footer-bottom-right h5 {
    font-size: 21px;
    margin-bottom: 27px;
  }

  /* ---------------------------------------- */

  .tab-creative-container {
    margin: 100px 20px;
  }

  .tab-creative-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
  }

  .tab-creative-img img {
    height: 100%;
    width: 100%;
  }

  .tab-creative-row h1 {
    font-size: 32px;
    line-height: 40px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    text-align: center;
  }

  .tab-creative-row h1 span {
    color: #0b83fe;
  }

  .tab-creative-item {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
  }

  .tab-creative-div p {
    color: #afafaf;
    font-size: 17px;
    line-height: 22px;
    font-family: 'Poppins';
    text-align: center;
  }

  .tab-creative-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 27px;
  }

  .tab-creative-div div {
    height: 100px;
    width: 100px;
    background-color: #1d1e22;
    transition: background-color 0.5s;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .they-trust-header p {
    font-size: 20px;
    font-family: 'Poppins';
    color: #000;
    /* line-height: 26px; */
  }
  .they-trust-header-f p {
    font-size: 20px;
    font-family: 'Poppins';
    color: #cdd1d9;
    line-height: 26px;
  }

  .they-trust-body h4,
  .they-trust-body p {
    font-size: 20px;
    color: #000;
    font-family: 'Poppins';
    /* line-height: 24px; */
    padding-bottom: 6px;
  }
  .they-trust-body h3 {
    font-size: 22px !important;
  }

  .they-trust-slider {
    margin-top: 20px;
    padding-bottom: 25px;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: vw;
    margin-top: 0px;
  }
  .input-footer-left p a {
    font-size: 20px;
  }
  .footer-bottom-left a {
    font-size: 20px;
  }
}

/* ------Design---------- */

@media (max-width: 480px) {
  h2 {
    margin: 0;
  }

  h4 {
    margin: 0;
  }

  p {
    margin: 0;
  }

  .bottom-footer-mobile-hide {
    display: none;
  }

  .trust-mobile-hide {
    display: none;
  }

  .they-trust-container {
    margin-left: 8vw;
    margin-right: 8vw;
  }

  .they-trust-header-f {
    text-align: center;
    padding-top: 70px;
  }

  .they-trust-header-f h3 {
    font-size: 22px;
    line-height: 29px;
    color: #cdd1d9;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header-f h3 span {
    color: #0b83fe;
  }
  .they-trust-header {
    text-align: center;
    padding-top: 2vh;
  }

  .they-trust-header h3 {
    font-size: 22px;
    line-height: 29px;
    color: #000;
    font-family: "Recoleta", serif;
    margin-bottom: 10px;
  }

  .they-trust-header h3 span {
    color: #0b83fe;
  }

  .they-trust-header p {
    font-size: 16px;
    font-family: 'Poppins';
    color: #000;
    line-height: 24px;
  }
  .they-trust-header-f p {
    font-size: 16px;
    font-family: 'Poppins';
    color: #cdd1d9;
    line-height: 22px;
  }

  .they-trust-slider {
    margin-top: 20px;
  }

  .owl-icon-image-trust {
    display: block;
    height: 100px;
    width: 100px;
    margin-bottom: 5vh;
  }

  .they-trust .owl-item img {
    display: block;
    width: 80px;
    height: 80px;
  }

  .they-trust-body h2 {
    margin-top: 20px;
    font-size: 22px;
    font-family: "Recoleta", serif;
    color: #afafaf;
    line-height: 30px;
  }
  .they-trust-body h3 {
    color: #000;
    font-size: 18px !important;
  }
  .they-trust-body h4,
  .they-trust-body p {
    font-size: 16px;
    color: #000;
    font-family: "Recoleta", serif;
    line-height: 24px;
    padding-bottom: 6px;
  }

  .they-trust .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 0px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 0;
    top: 83px;
    opacity: 1;
  }

  .they-trust .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .they-trust .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-next {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 0px;
    top: 15px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-prev {
    /* background: #70707036; */
    background: #0b83fe !important;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: -11px;
    top: 15px;
    opacity: 1;
  }

  .they-trust-blog .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .they-trust-blog .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* ---------------------- Creative services ---------------- */

  .creative-services-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  .owl-icon-image-creative {
    display: block;
    height: 70px;
    width: 70px;
    background-color: #25272d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .creative-services .owl-item img {
    display: block;
    width: 20px;
    height: 20px;
  }

  .creative-services .owl-nav button.owl-next {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    font: inherit;
    right: 32px;
    top: 83px;
    font-size: 30px;
    font-weight: 300;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-prev {
    background: #70707036;
    position: absolute;
    color: white;
    border: none;
    padding: 0px;
    font: inherit;
    font-weight: 300;
    font-size: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    left: 32px;
    top: 83px;
    opacity: 1;
  }

  .creative-services .owl-nav button.owl-next span {
    position: absolute;
    top: -13px;
    left: 9px;
    color: white;
  }

  .creative-services .owl-nav button.owl-prev span {
    position: absolute;
    top: -13px;
    left: 7px;
    color: white;
  }

  /* --------------- connect tools ------------------- */
  .connect-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .connect-tools {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .connect-tools-bg {
    height: 30px;
    width: 30px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgb(255 255 255 / 28%) 0px 0px 55px;
    margin-bottom: 40px;
  }

  .connect-tools-bg img {
    height: 11px;
    width: 11px;
  }

  .connect-body p {
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 19px;
    color: #727272;
  }

  .connect-body h4 {
    font-size: 16px;
    font-family: "Recoleta", serif;
    line-height: 19px;
    color: #727272;
    margin-bottom: 5px;
    text-decoration: underline;
    font-weight: 700;
  }

  .connect-social {
    margin-top: 15px;
  }

  .mobile-footer-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .mobile-logo-left-footer {
    margin-right: 30px;
  }

  .mobile-logo-footer {
    display: flex;
    padding-top: 85px;
    align-items: center;
  }

  .mobile-logo-right p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 19px;
    font-family: 'Poppins';
    color: #727272;
  }

  .mobile-logo-right h2 {
    font-size: 16px;
    line-height: 21px;
    font-family: "Recoleta", serif;
    color: #727272;
  }

  .fotter-input {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 40px;
    width: 232px;
    background: transparent;
    border-radius: 36px;
    border: 1px solid #2f2f2f;
    padding: 15px 0px 15px 35px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #6d6d6d;
  }

  .fotter-input:focus {
    outline: none;
    border: 1px solid #5a5a5adf;
  }

  .footer-button {
    height: 40px;
    width: 232px;
    background: #0b83fe;
    border-radius: 36px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
    border: none;
  }

  .footer-contact-info h4 {
    font-size: 16px;
    line-height: 19px;
    color: #727272;
    font-family: "Recoleta", serif;
    margin-top: 20px;
  }

  .footer-contact-info p {
    font-size: 16px;
    line-height: 19px;
    color: #727272;
    font-family: 'Poppins';
    margin-top: 5px;
  }

  .footer-com-logo {
    padding-bottom: 40px;
  }

  .footer-com-logo img {
    margin-top: 20px;
  }
}


/* ------ Contents of footer.css end ------ */

/* ------ Contents of modal.css ------ */

/* body.modal-open {
  overflow-y: hidden;
  height: 100vh !important;
} */

/* =====================
   MODAL CONTENT
===================== */
.modal-for-content {
  width: 100% !important;
  padding: 20px 10px !important;
}

.modal-header p {
  font-family: "inter";
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 6px;
  text-align: center;
}

.modal-header h3 {
  font-family: Recoleta;
  font-size: clamp(20px, 2vw + 16px, 30px) !important;
  text-align: center;
}

.close-btn {
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  color: #ffffffad;
  margin-left: auto;
}


/* =====================
   FORM ELEMENTS
===================== */

.fill-up-pera {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.col-form-label {
  display: flex;
  padding-top: 0;
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.mandatory-feild {
  color: red;
  padding: 0 5px;
}

.form-control,
.phone-wrapper input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.form-control,
.form-control:focus,
.phone-wrapper input,
.phone-wrapper input:focus {
  color: #efeff0;
  background: 0;
  border-color: #2f2f2f;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

.from-bottom {
  margin-bottom: 1rem;
}

.service-display {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 8px;
  column-gap: 16px;
  margin-left: 0;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #a5a5a5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-label {
  font-family: "inter";
  font-size: 14px;
}

/* =====================
   BUTTONS
===================== */

.designer-button,
.where-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2vw;
}

.designer-middle-button {
  margin-top: 0;
  background: #25272d;
  padding: 11px 20px;
  width: 100%;
  height: 50px;
  transition: 0.2s;
  border-radius: 25px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
  cursor: pointer;
  overflow: hidden;
  position: relative;}

.designer-middle-button .designer-middle-btnText,
.faq-middle-button .faq-middle-btnText {
  /* font-size: clamp(16px, 2vw + 10px, 22px); */
  font-size: 22px;
  color: #fff;
  line-height: 1.32;
  transition: 0.3s;
  font-family: "inter";
  text-align: center;
}

.designer-middle-btnTwo {
  position: absolute;
  top: 0;
  left: -100%;
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: #0b83fe;
  transition: left 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.designer-middle-button:hover .designer-middle-btnTwo {
  left: 0;
}
.designer-middle-button:hover .designer-middle-btnText {
  opacity: 0;
}

.designer-middle-button .designer-middle-btnText2,
.faq-middle-button .faq-middle-btnText2 {
  font-size: 22px;
  color: #fff;
  line-height: 29px;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "inter";
  text-align: center;
}

.ecc-email-submit-btn {
  border: none;
  background: 0 0;
  cursor: pointer;
  width: 100%;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #2f2f2f;
  border-radius: 25px;
  position: relative;
  width: 100%;
}

#flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 0 7px;
  font-size: 15px;
}

.flag-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0px 11px;
}

#flag svg {
  width: 22px;
  height: 22px;
}

#countryCode {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  display: none;
  z-index: 1000;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  display: none;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}

.dropdown-item {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.dropdown-item .dropdown-flag svg {
  width: 22px;
  height: 22px;
}

.dropdown-item:hover {
  background: #f1f1f1;
}

.phone-wrapper input {
  border: none;
  outline: none;
  border-radius: 0px;
  /* width: 90%; */
}

.phone-wrapper:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

/* Optional: hide number arrows */
input[type="tel"]::-webkit-inner-spin-button,
input[type="tel"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.partner-header h3{
  font-family: "Poppins";
}

.modal-for-width {
  min-width: 95% !important;
}

.ecc-email-modal-content{
  height: 40%;
  padding: 0;
}

.ecc-email-modal-icon {
    /* width: 50%; */
    margin: 0 auto;
    padding-bottom: 16px;
}

.ecc-email-modal-icon img.error-icon {
    width: 50%;
    margin: 0 auto;
}

.ecc-email-modal-icon img.success-icon {
    width: 15%;
    margin: 0 auto;
}

.ecc-email-modal-return-btn {
  border: none;
  background: transparent;
  text-decoration: underline;
}

@media screen and (min-width:375px) {
  .modal-for-content {
    padding: 20px !important;
  }
}

@media screen and (min-width:500px) {
  .designer-button,
  .where-button {
    flex-direction: row;
  }

  .designer-middle-button {
    width: 204px;
  }
}

@media screen and (min-width:650px) {
  .fill-up-pera {
    flex-direction: row;
  }

  .service-display {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 10%;
  }
  
}

@media screen and (min-width:750px) {
  .modal-for-width {
    min-width: 750px !important;
  }

  .modal-for-content {
    padding: 35px 45px !important;
  }
  
}



/* ------ Contents of modal.css end ------ */
