@import url("https://fonts.googleapis.com/css2?family=Birthstone&amp;family=Inter:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;family=MangoGrotesque:wght@200..700&amp;display=swap");

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --dark: #171717;
  --primary: #19D769;
}
html {
  font-size: 10px;
}

body {
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--dark);
  font-weight: 400;
  font-size: 2.3rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
form,
input,
select,
textarea {
  width: 100%;
}
ul:not(.list-none),
ol:not(.list-none) {
  padding-left: 2rem;
}
h1,
.large-title,
.h1 {
  font-size: 22rem;
  line-height: 1;
  font-weight: 700;
  font-family: "MangoGrotesque", sans-serif;
  letter-spacing: -1rem;
  word-spacing: -1rem;
}
.large-title {
  letter-spacing: -0.7rem;
  word-spacing: -2rem;
}
@font-face {
  font-family: 'MangoGrotesque';
  src: url('./assets/fonts/MangoGrotesque-Bold.woff2') format('woff2'),
       url('./assets/fonts/MangoGrotesque-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap; /* performance ke liye */
}

h1,h2,h3,h4,h5 {
  font-family: 'MangoGrotesque', sans-serif;
}
h2,
.h2,
h4,
.h4 {
  line-height: 1.2;
  font-weight: 600;
}
h2,
.h2 {
  font-size: 6.3rem;
}
h4,
.h4 {
  font-size: 4rem;
}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.5s ease;
}
img {
  max-width: 100%;
  transition: all 0.5s ease;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45%;
}
.w-47 {
  width: 47%;
}
.w-48 {
  width: 48%;
}
.w-50 {
  width: 50%;
}
.w-55 {
  width: 55%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-75 {
  width: 75%;
}
.w-80 {
  width: 80%;
}
.w-85 {
  width: 85%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}

.full-box,
.w-100,
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.h-full,
.h-100 {
  height: 100%;
}
.h-auto {
  height: auto;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.relative {
  position: relative;
}
.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
.bg-dark {
  background-color: var(--dark);
}
.bg-primary {
  background-color: var(--primary);
}
.overflow-hidden {
  overflow: hidden;
}

.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.space-between,
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.box-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.grid {
  display: grid;
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-gap-2 {
  grid-gap: 2rem 2rem;
}
.grid-gap-3 {
  grid-gap: 3rem 3rem;
}
.grid-gap-4 {
  grid-gap: 4rem 4rem;
}
.grid-gap-5 {
  grid-gap: 5rem 5rem;
}
.grid-gap-6 {
  grid-gap: 6rem 6rem;
}
.grid-gap-7 {
  grid-gap: 7rem 7rem;
}
.center,
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.italic {
  font-style: italic;
}
.hidden {
  display: none !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}

button {
  cursor: pointer;
  outline: none;
}
.max-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.com-padding {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.bottom-padding {
  padding-bottom: 16rem;
}

.top-padding {
  padding-top: 16rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mt-8 {
  margin-top: 8rem;
}
.mt-9 {
  margin-top: 9rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.mb-10 {
  margin-bottom: 10rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
.absolute {
  position: absolute;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}

.text-white {
  color: var(--white) !important;
}
.text-black {
  color: var(--black) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.container {
  width: 90%;
  max-width: 1670px;
  padding: 0 15px;
  margin: 0 auto;
}
.small-container {
  width: 85%;
  max-width: 1600px;
}

.bg-white p,
.bg-white span,
.bg-white div,
.bg-white li {
  color: #4f4f4f;
}
.bg-white .large-title {
  color: #efefef;
}
.oswald {
  font-family: "MangoGrotesque", sans-serif;
}
.font-300 {
  font-weight: 300;
}
.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.list-none {
  list-style: none;
}
.transition-4 {
  transition: all 0.4s ease;
}
.transition-5 {
  transition: all 0.5s ease;
}
.bg-gradient-normal {
  background: rgba(0, 0, 0, 0.4);
}
/* BUTTON STYLES */
.btn,
.btn * {
  transition: all 0.5s ease;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 6.5rem;
}
.btn .btn-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.8rem;
  height: 100%;
  min-width: 16rem;
  padding: 1rem 3rem;
  border-radius: 4rem;
  width: max-content;
  border: 1px solid;
}

.btn .btn-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  margin-left: 8px;
}

.btn .btn-icon img {
  max-height: 1.5rem;
  object-fit: contain;
  max-width: 1.5rem;
}
.btn.call-btn .btn-icon img {
  max-width: 2.2rem;
  max-height: 2.2rem;
}
.btn:hover .btn-icon {
  transform: translateX(10px) rotate(45deg);
}
.btn.call-btn:hover .btn-icon {
  transform: translateX(10px) rotate(15deg);
}
.btn.animated .btn-icon {
  animation: btnIconAnimation 0.8s ease-in-out infinite;
}
@keyframes btnIconAnimation {
  0% {
    transform: 0;
  }
  50% {
    transform: translateX(10px) rotate(45deg);
  }
  100% {
    transform: 0;
  }
}
.btn.btn-primary .btn-text,
.btn.btn-primary .btn-icon {
  background-color: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}
.btn.btn-primary:hover .btn-text,
.btn.btn-primary:hover .btn-icon {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-primary:hover .btn-icon img {
  filter: brightness(10) invert(1);
}
.btn.btn-black .btn-text,
.btn.btn-black .btn-icon {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn.btn-black .btn-icon img,
.btn.btn-outline-white .btn-icon img {
  filter: invert(1);
}
.btn.btn-outline-white .btn-text,
.btn.btn-outline-white .btn-icon {
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-outline-white:hover .btn-text,
.btn.btn-outline-white:hover .btn-icon {
  background-color: var(--white);
  color: var(--black);
}
.btn.btn-outline-white:hover .btn-icon img {
  filter: none;
}

/* PRELOADER CSS */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

.preloader .progress-container {
  position: relative;
  width: 150px;
  height: 150px;
}

.preloader .progress-circle {
  transform: rotate(-90deg);
}

.preloader svg {
  width: 100%;
  height: 100%;
}

.preloader circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.preloader .bg {
  stroke: #333;
}

.preloader .progress {
  stroke: var(--primary);
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 0.2s linear;
}

.preloader .counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 5rem;
  font-family: sans-serif;
  font-family: "MangoGrotesque", sans-serif;
}

/* ---------------------------------- */
/* -------- HEADER STYLES --------- */
/* ---------------------------------- */
header.header {
  position: relative;
  width: 100%;
  max-width: 100vw;
  left: 0;
  top: 0;
  z-index: 20;
  /* transition: all 0.5s ease; */
}
#header.header-stick {
  position: fixed;
  animation: smoothScroll 1s forwards;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  background-color: #fff;
  /* border-bottom: 1px solid #ddd; */
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#header.header-stick .header-menu > ul li a {
  color: #000 !important;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-7rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
/* header.header.header-stick {
  backdrop-filter: blur(5px);
} */
header .header-wrapper {
  padding: 2rem 15px;
  margin: 0 auto;
  width: 95%;
  max-width: 1845px;
  transition: all 0.5s ease;
}
header.header-stick .header-wrapper {
  padding: 1.5rem 15px;
}
.header-logo {
  width: 19.5rem;
  height: 11.9rem;
}
header.header-stick .header-logo {
  height: 10rem;
}

.header-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.header-menu > ul li {
  margin: 0 5px;
  position: relative;
}
.header-menu > ul li .sub-menu {
  position: absolute;
  top: 100%;
  padding-top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-menu > ul li:hover .sub-menu,
.header-menu > ul li.sub-menu:hover {
  visibility: visible;
  opacity: 1;
}
.header-menu > ul li a {
    padding: 1.7rem 8rem 1.7rem 0;
    border-radius: 4rem;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #333;
    min-width: auto;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
    font-size: 17px;
    font-weight: 500;
}
.header-menu > ul > li.menu-item-has-children > a {
  padding-right: 5rem;
}
.header-menu > ul > li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1rem;
  background: url("../img/dropdown-arrow-white.webp") no-repeat center;
  background-size: contain;
  transition: all 0.5s ease;
}
.header-menu > ul > li.menu-item-has-children a:hover::before {
  filter: invert(1);
}
.header-menu .sub-menu {
  max-width: 50vw;
  min-width: 40vw;
  justify-content: center;
}
.header-menu .sub-menu a {
  margin-bottom: 1rem;
}
.header-menu a {
  color: white;
  font-size: 1.8rem;
  position: relative;
}
.header-menu > ul li a {
    position: relative;
}
.header-menu > ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #19D769;
    width: 20%;
    display: none;
}
.header-menu > ul li.current-menu-item a:after {
  display: inline-block;
}
.header-menu > ul li a:hover {
  color: var(--primary) !important;
}
/* ---------------------------------- */
/* -------- FOOTER STYLES --------- */
/* ---------------------------------- */
footer.footer {
  padding-top: 10rem;
}
.footer-logo {
  width: 19.5rem;
  height: 12rem;
}
.footer-top .title {
  font-size: 9rem;
  line-height: 1;
}
.footer-social-links a {
  width: 9.6rem;
  height: 9.6rem;
  border: 1px solid #5b5b5b;
  border-radius: 50%;
  padding: 2rem;
  margin: 5px;
}
.footer-social-links a:hover {
  background-color: var(--primary);
}
.footer-social-links img {
  max-height: 3.1rem;
  max-width: 3.2rem;
}
.footer-top .btn-box {
  min-width: 23rem;
}
.footer-menu-wrapper {
  border-bottom: 1px solid #3b3b3b;
}
.footer-menu-box {
  width: 25%;
  padding-left: 9rem;
  border-left: 1px solid #3b3b3b;
  height: inherit;
  margin-top: 7rem;
  padding-bottom: 3rem;
}
.footer-menu-box:last-of-type {
  border-right: 1px solid #3b3b3b;
}
.footer-menu-box h6 {
  font-size: 2rem;
}
.footer-menu-box a {
  font-size: 2.4rem;
  display: block;
  color: #efefef;
  padding: 5px 0;
}
.footer-menu-box .current-menu-item a,
.footer-menu-box a:hover,
.footer-bottom a:hover {
  color: var(--primary);
}
.footer-menu-box ul {
  list-style: none;
  margin-top: 3rem;
  padding-left: 0;
}

.footer-bottom {
  padding: 6rem 0;
}
.footer-bottom * {
  color: #efefef;
  font-size: 2.4rem;
}
.footer-bottom a {
  display: inline-block;
  margin-left: 3rem;
}
.footer-bottom a:first-of-type {
  margin-left: 0;
}
.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  width: 8rem;
  height: 8rem;
  transition: all 0.5s ease;
}
.back-to-top-btn img {
  max-width: 2rem;
  max-height: 3rem;
}
.back-to-top-btn:hover {
  background-color: #fd7d15;
}
/* ---------------------------------- */
/* -------- HOMEPAGE STYLES --------- */
/* ---------------------------------- */

/* MAIN BANNER SECTION */
.main-banner {
  padding: 20rem 0 12rem 0;
  background-color: var(--black);
  color: var(--white);
}
.heading-with-icon .space-holder {
  display: inline-block;
  width: 27rem;
}
.banner-heading-animated {
  overflow: hidden;
}
.banner-heading-animated .line {
  display: inline-block;
  white-space: nowrap;
}
.banner-heading-animated span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.hp-banner-section {
  padding-bottom: 40vw;
}

.hp-banner-section .container {
  width: 93%;
  max-width: 1755px;
}
.hp-banner-section .heading-with-icon .space-holder {
  width: 0;
  opacity: 0;
}

/* .hp-banner-cards {
  width: 25vw;
  max-width: 46rem;
  position: absolute;
  left: 30%;
  top: 36%;
} */
/* .hp-banner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8rem;
  gap: 2.5rem;
} */

.hp-banner-card {
  border-radius: 2rem;
  overflow: hidden;
  width: 20vw;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 32%;
  top: 42%;
  opacity: 0;
}
.hp-banner-card.card-2 {
  transform: rotate(5deg);
}
.hp-banner-card.card-3 {
  transform: rotate(-5deg);
}
.hp-banner-card.card-4 {
  transform: rotate(5deg);
}
.hp-banner-card .content {
  padding: 4rem 4rem;
  background-color: rgba(0, 0, 0, 0.4);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.01)
  );
}
.hp-banner-card .content h4 {
  font-size: 7.8rem;
}
.hp-banner-card .content p {
  font-size: 2rem;
}

.heading-stroke-text {
  position: absolute;
  bottom: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.hp-banner-section .heading-stroke-text {
  left: unset;
  right: 20%;
}

.heading-stroke-text .stroke,
.heading-stroke-text .fill {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-family: "Birthstone", cursive;
  font-size: 13rem;
  line-height: 0.8;
}
.heading-stroke-text .stroke {
  color: transparent;
  -webkit-text-stroke-width: 0.7rem;
  -webkit-text-stroke-color: black;
  z-index: 1;
}
.heading-stroke-text .fill {
  color: var(--primary);
  z-index: 2;
}
.main-banner .description {
  max-width: 37rem;
  color: #f5f5f5;
}
.banner-scroll-down .arrow {
  width: 6.4rem;
  height: 6.4rem;
  background-color: #3c3c3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 2rem;
}

.banner-scroll-down .arrow img {
  max-height: 2rem;
  animation: jumpInfinite 1.5s infinite;
}
@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 1rem;
  }
  100% {
    margin-top: 0;
  }
}

/* CIRCLE PLAY ANIMATION SECTION */
.circle-play-outer {
  background-color: var(--black);
  margin-bottom: -100vh;
}
.circle-play-trigger {
  z-index: 5;
  background-color: var(--black);
  width: 100%;
  height: 270vh;
  position: relative;
  overflow: hidden;
}
.circle-play-wrapper {
  z-index: 5;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  inset: 0% auto auto 0;
  will-change: transform;
  transform-style: preserve-3d;
}
.circle-play-inner {
  z-index: 6;
  background-color: var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 10vw;
  height: 10vw;
  display: flex;
  position: absolute;
  overflow: hidden;
}
.circle-play-img {
  z-index: 7;
  background-image: none;
  background-size: auto;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: auto;
}
.play-circle-btn {
  z-index: 6;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
  cursor: pointer;
}
.play-circle-btn.hide,
.play-circle-btn .hide {
  opacity: 0;
}
.chug-club_lightbox_button {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.play-circle-text {
  flex: none;
  width: 15vw;
  max-width: none;
  height: 15vw;
  position: static;
  inset: 0%;
}

.play-icon-box {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #ffffff1a;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 9vw;
  height: 9vw;
  display: flex;
  position: absolute;
}

.play-icon {
  width: 3vw;
  max-width: none;
  height: 3vw;
  margin-left: 0.5vw;
}

.circle-video-poster {
  z-index: 4;
  height: 100%;
  position: relative;
}
.circle-play-inner.active .circle-video-poster {
  z-index: 10;
}
.circle-play-inner.active .chug-club_lightbox_button {
  opacity: 0;
}

.circle-video-poster > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}
.popup-box {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.popup-box.show {
  opacity: 1;
  visibility: visible;
}
.popup-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup-inner {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96vh;
  overflow: hidden;
}
.popup-content-wrapper {
  position: relative;
  z-index: 2;
  width: max-content;
}
.popup-inner iframe,
.popup-inner video {
  width: 100%;
  height: 100%;
  inset: 0;
  min-height: 40vw;
  min-width: 75vw;
  max-height: 90vh;
}
.popup-video-box {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}
.close-popup {
  background-image: url("../img/download.svg");
  background-size: 18px;
  height: 4rem;
  right: 4rem;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4rem;
  transition: all 0.3s;
  position: absolute;
  top: 2rem;
}
/* SERVICES SECTION */
.hp-services-section .lottie-bird {
  width: 29.4rem;
  height: 19.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hp-service-item {
  padding: 7rem 7rem;
  border-radius: 4rem;
  border: 1px solid #7d7d7d;
}

.hp-service-item .icon {
  width: 14rem;
  height: 14rem;
}
.hp-service-item .bottom {
  padding-top: 4rem;
  border-top: 1px solid #d9d9d9;
}
.hp-service-item li {
  margin: 1.4rem 0;
}
.hp-service-item .btn-black .btn-text,
.hp-service-item .btn-black .btn-icon {
  background-color: transparent;
  color: var(--black);
  border-color: var(--primary);
}
.hp-service-item:hover .btn-black .btn-text,
.hp-service-item:hover .btn-black .btn-icon {
  background-color: var(--black);
  color: var(--white);
}

.hp-service-item .btn.btn-black .btn-icon img {
  filter: none;
}
.hp-service-item:hover .btn.btn-black .btn-icon img {
  filter: invert(1);
}
.hp-service-item:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.hp-service-item:hover p,
.hp-service-item:hover li {
  color: var(--black);
}
.hp-service-item:hover .bottom {
  border-color: #b1682b;
}

.service-review-bar {
  padding: 5rem 5rem;
  border-radius: 3rem;
}
.service-review-bar .rating-box {
  max-width: 42rem;
  padding-right: 5rem;
  border-right: 1px solid #d9d9d9;
}
.service-review-bar .google-icon {
  max-width: 35rem;
}
.service-review-bar .center-box {
  padding: 0 5rem;
  border-right: 1px solid #d9d9d9;
}
.service-review-bar .center-box p {
  font-size: 2.6rem;
  padding-left: 1.5rem;
}
.service-review-bar .center-box img {
  width: 17.6rem;
}
.service-review-bar .btn-box {
  margin-left: 5rem;
}

/* BUSINESS SECTION */
.hp-business-section .heading-stroke-text {
  left: 43%;
}

.business-lottie-animation,
.lottie-animation {
  width: 100%;
  height: auto;
}
.business-content-outer {
  padding-top: 10rem;
}
.business-content-outer .bird {
  width: 25rem;
  height: 15rem;
  top: 5rem;
  left: 5rem;
}
.hp-business-item {
  padding: 0 0 15rem 15rem;
  transition: all 0.5s ease;
}
.hp-business-item.fade-out {
  opacity: 0.3 !important;
}
.hp-business-item:last-of-type {
  padding-bottom: 3rem;
}
.hp-business-item h3 {
  font-size: 10rem;
  line-height: 1;
  letter-spacing: -0.5rem;
}
.hp-business-item .description p,
.hp-business-item .description {
  color: #cecece;
  font-size: 2.6rem;
}
.business-progress-bar {
  top: 4rem;
  width: 2px;
  /* background: url("../img/business-white-border.png") no-repeat center; */
  background: url("../img/business-white-border.png") center;
  transition: all 0.5s ease;
}
.business-progress-fill {
  height: 10rem;
  background: url("../image/business-color-border.png") center;
}

.hp-business-item .progress-circle {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 0.7rem solid #000000;
  background-color: #888888;
  left: -1.4rem;
  top: 4rem;
  transition: all 0.5s ease;
}
.hp-business-item.active .progress-circle {
  border-color: #434343;
  background-color: var(--primary);
}

/* WHO WE SERVE SECTION */
.hp-serve-section .top-padding {
  border-top: 1px solid #636363;
}
.hp-serve-section .section-heading p {
  font-size: 6.3rem;
  line-height: 1.15;
  font-weight: 600;
}
.slider-arrows .arrow {
  transition: all 0.4s ease;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
}
.slider-arrows .arrow.next-arrow {
  margin-left: 2rem;
}
.hp-serve-section .top-padding .slider-arrows {
  width: max-content;
  position: absolute;
  right: 0;
  bottom: 3rem;
}
.slider-arrows .arrow img {
  max-width: 2rem;
}
.white-arrows .arrow {
  border-color: var(--white);
}
.white-arrows .arrow:hover {
  background-color: var(--white);
}
.white-arrows .arrow:hover img {
  filter: invert(1);
}
.hp-serve-slider .slick-list {
  margin: 0 -2.5rem;
}
.hp-serve-slider .slick-slide {
  margin: 0 2.5rem;
}
.hp-serve-slider .slick-slide > div {
  height: 100%;
}

.serve-slider-item .content-box {
  background: linear-gradient(
    180deg,
    rgba(64, 64, 64, 0) 71.77%,
    #404040 104.09%
  );
  padding: 4rem;
  transition: all 0.4s ease;
}
.serve-slider-item:hover .content-box {
  background: linear-gradient(
    180deg,
    rgba(255, 158, 76, 0) 57.27%,
    #ff9e4c 104.09%
  );
}
.serve-slider-item .content-box h4 {
  font-size: 6.3rem;
  max-width: 35rem;
}
.serve-slider-item .content-box .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.5rem;
  opacity: 0;
  transition: all 0.4s ease;
}
.serve-slider-item:hover .content-box .arrow {
  opacity: 1;
}

/* FOUNDER QUOTE SECTION */
.video-banner {
  height: 98vh;
  min-height: 300px;
  max-height: 1920px;
}
.hp-founder-section .quote-icon {
  width: 16.5rem;
}
.hp-founder-section .quote-text {
  font-size: 4rem;
  color: var(--white);
  max-width: 92rem;
  font-style: italic;
  line-height: 1.2;
}
.hp-founder-section .quote-text span {
  font-size: 6rem;
  color: var(--primary);
  display: inline-block;
  margin: 0 1rem;
  line-height: 1;
  padding-bottom: 2rem;
  text-transform: capitalize;
  font-family: "MangoGrotesque", sans-serif;
  font-weight: 600;
}
.avatar {
  border-radius: 50%;
  overflow: hidden;
}
.hp-founder-section .avatar {
  width: 8.2rem;
  height: 8.2rem;
  margin-right: 2rem;
  border: 0.3rem solid var(--white);
}
.hp-founder-section h6 {
  font-size: 2.6rem;
}

/* VIDEO CARDS SECTION */

.vid-cards-section {
  height: auto;
  display: block;
  overflow: visible;
}

.vid-cards-section-inner {
  background-color: var(--milk);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 210vh;
  padding-top: 16vh;
  padding-bottom: 16vh;
  display: flex;
  position: relative;
  overflow: visible;
}
.vid-cards-section .text-box {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
}
.vid-cards-section .text-box .container {
  max-width: 1800px;
}
.vid-cards-section .vc-heading {
  font-size: 15vw;
  letter-spacing: -1rem;
  line-height: 1;
}
.vid-cards-section .vc-heading-1,
.vc-heading-1 span {
  color: var(--primary);
  text-align: right;
}
.vid-cards-section .vc-heading-2,
.vc-heading-2 span {
  color: var(--black);
  text-align: right;
}
.vid-cards-section .vc-heading-3,
.vc-heading-3 span {
  color: #4f4f4f;
}
.vid-cards-wrapper {
  z-index: 4;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  display: block;
  position: sticky;
  top: 10rem;
  overflow: hidden;
}
.vid-cards-wrapper .vid-cards-slider {
  position: sticky;
  top: 0;
}
.vid-cards-section .vid-card {
  z-index: 10;
  outline-offset: 0px;
  border: 0.35vw solid var(--white);
  border-radius: 2vw;
  outline: 0.35vw var(--white);
  justify-content: center;
  align-items: center;
  width: 31%;
  height: 38vw;
  display: flex;
  inset: auto 0% 0% auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin: 0 1%;
}

.vid-cards-section .vid-card.vid-card-1 {
  display: flex;
  /* left: 10vw; */
}

.vid-card-info-wrapper {
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  padding: 4rem 4rem;
  background: linear-gradient(
    188.88deg,
    rgba(255, 151, 64, 0) 78.87%,
    #ff9740 105.82%
  );
  transition: all 0.5s ease;
}
.vid-card.playing .vid-card-info-wrapper,
.vid-card.playing .play-btn {
  opacity: 0;
}

.vid-card .avatar {
  border: 0.4rem solid #faeade;
  width: 3vw;
  height: 3vw;
  margin-right: 0.5vw;
}
.vid-card-info-wrapper div {
  color: var(--white);
  font-size: 3.5rem;
}
.vid-card-inner {
  width: 100%;
  height: 100%;
}
.vid-card-inner .play-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-card-inner .play-btn img {
  max-width: 3rem;
}
.hover_video_wrapper {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}
.vid-card-inner video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.dive-review-box .line {
  width: 100%;
  height: 1px;
  background-color: #636363;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.dive-btn-box {
  border: 1px solid #9c9c9c;
  padding: 2rem 5rem;
  border-radius: 10rem;
  background-color: white;
}
.dive-btn-box .dive-icon {
  width: 15rem;
}
.dive-btn-box .text {
  padding: 0 4rem;
}
/* FAQ SECTION */
.accordion-body {
  display: none;
}
.faq-item {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.faq-head {
  padding:0;
  cursor: pointer;
  position: relative;
}

.faq-head h6 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--black);
  padding-right: 3rem;
}
.faq-body {
    padding-bottom: 3rem;
    padding-right: 3rem;
    padding-top: 2rem;
    font-size: 2rem;
    font-weight: 400;
}

/* CONTACT SECTION */
.hp-contact-lines a {
  margin-left: 2rem;
}
.hp-contact-lines a:first-of-type {
  margin-left: 0;
}
.hp-contact-lines a img {
  max-height: 2.7rem;
}
.hp-contact-lines a span {
  font-size: 2.5rem;
  margin-left: 1rem;
}
.hp-contact-reviews .review-avtars {
  max-height: 8rem;
}
.hp-contact-reviews p {
  font-size: 2.6rem;
}
.hp-contact-reviews .review-rating {
  max-width: 30rem;
}
.hp-contact-form {
  padding: 6rem 5rem;
  border-radius: 2rem;
}
.hp-contact-form .input-box {
  margin-bottom: 4rem;
}
.hp-contact-form input,
.hp-contact-form textarea,
.hp-contact-form select {
  font-size: 2rem;
  padding-bottom: 3.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: var(--dark);
  border: 0;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid #a9a9a9;
}
.hp-contact-form textarea {
  height: 10rem;
}
.hp-contact-form input::placeholder,
.hp-contact-form textarea::placeholder,
.hp-contact-form select::placeholder {
  color: var(--dark);
}
form .submit-box {
  width: max-content;
  height: max-content;
}
.form .submit-box p,
form .submit-box,
.input-box {
  position: relative;
}
.submit-box input[type="submit"] {
  line-height: 1;
  font-weight: 500;
  font-family: 'Inter';
  padding: 2.2rem 3.5rem;
  text-transform: uppercase;
  font-size: 2rem;
  color: #fff;
  background-color: #000;
  border-color: var(--primary);
  outline: none;
  border-radius: 4rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submit-box input[type="submit"]:hover {
  background-color: var(--primary);
}

.hp-contact-section .bg-heading-box {
  left: 30%;
  max-width: 99rem;
  z-index: 1;
}
.hp-contact-section .bg-heading-box .bird {
  position: absolute;
  top: 12rem;
  left: -9rem;
  max-width: 29rem;
}
.hp-contact-section .bg-heading-box .envelope {
  max-width: 25rem;
  top: 28%;
  left: 32%;
}
.hp-contact-section .bg-heading-box h3 {
  font-size: 35rem;
  color: var(--primary);
  -webkit-text-fill-color: var(
    --primary
  ); /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 0.1rem;
  -webkit-text-stroke-color: black;
  line-height: 0.9;
}
.hp-contact-section .arrowdown {
  margin-top: 5rem;
}
.bannerheadbox {
  padding: 8rem 6rem 6rem;
}
.bannerheadbox h1 {
  font-size: 35rem;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 1px;
}
.primarycolor {
  color: var(--primary);
}
.bannerheadbox h1 span.para {
  font-size: 2.6rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  max-width: 50rem;
  font-weight: 300;
  word-spacing: initial;
}
.paraheadbox {
  display: flex;justify-content: space-between;
}
strong.thinkingbeyond.line {
    text-align: right;
    font-size: 101%;
}
strong.thebox {
    display: flex;
    /* padding-left: 7rem; */
    /* margin-right: 6.2rem; */
}
.thebox span.box {
    margin: -122px -62px 0;
    position: relative;
    z-index: 1;
}
.thebox .box img {
  animation: updown 1.5s ease-in-out infinite;
}
/* Animation keyframes */
@keyframes updown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); } 
  100% { transform: translateY(0); } 
}
.bannerheadbox h1 span.para img {
  margin-top: 6rem;
  width: 10rem;
}
.bannerheadbox h1 * {
  font-family: 'MangoGrotesque', sans-serif;
}
/* Video Section :start */
.handvector {
    width: 45rem;
    position: absolute;
    top: 0;
    z-index: 1;
}
/* .sectionionnevideo {
  max-width: 110rem;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70rem;
  background-size: cover !important;
  transition: all 0.5s ease;
  transform: rotate(-7deg);
}
.sectionionnevideo:hover {
  transform: rotate(0deg) !important;
  transition: all 0.5s ease;
} */
.sectionionnevideo {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 00;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover !important;
    transition: all 0.5s ease;
    transform: none !important;
}
.sectionionnevideo video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section.videosection {
    position: relative;
}
.rightvector {
  width: 45rem;
  position: absolute;
  bottom: -1rem;
  right: 0;
  z-index: 1;
}
.notepara {
  display: none;
  margin: 0 auto;
  font-size: 2.6rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  padding-left: 20rem;
  padding-top: 10rem;
  max-width: 90rem;
  text-align: center;
  color: #686868;
}
.handvector, 
.rightvector {
  opacity: 0;
}

.handvector.animate {
  animation: slideFromLeft 1s ease forwards;
}

.rightvector.animate {
  animation: slideFromRight 1s ease forwards;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.paraheadbox .arrowdown {
    margin-top: 5rem;
}
.agencycreatuverow .col-third {
  opacity: 0;
  transform: translateY(50px);
}

.agencycreatuverow .col-third.show {
  animation: fadeSlideUp 0.8s ease forwards;
}
.agencycreatuverow .col-third:nth-child(2) .col-thirdinnr {
  border-right: none !important;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.notepara {
  overflow: hidden;
}

.blink {
  animation: blinkCursor 2s infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

.notepara strong {
  font-weight: 500;
  color: #000;
  display: block;
}

/* Creative Agency Css */
.creativeagencysec {
  padding-top: 19rem;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.creativeagencysec .headbox {
    display: flex;
    justify-content: space-between;
}
.creativeagencysec .headbox h2 {
    font-size: 18rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: right;
    line-height: 0.9;
}
.creativeagencysec .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: 500;
    position: relative;
    padding-right: 7.2rem;
}
.creativeagencysec .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #16181B;
    height: 2px;
}
.creativeagencysec .btn-box.w-max {
    margin-left: auto;
}
.col-third {
    width: calc(100% / 3);
}
.agencycreatuverow .col-thirdinnr img {
    width: 100%;
    border-radius: 10px;
}
.agencycreatuverow .col-thirdinnr {
    padding-right: 3rem;
    padding-bottom: 4rem;
    border-right: 1px solid rgba(0,0,0,0.3);
}
.agencycreatuverow .col-thirdinnr .image {
    overflow: hidden;
    transition: 0.5s all ease-in-out;
    border-radius: 1.2rem;
}
.agencycreatuverow .col-thirdinnr .image:hover img {
    transform: scale(1.05);
}
.agencycreatuverow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.agencycreatuverow  .col-third:nth-child(2) .col-thirdinnr {
    height: 100%;
    padding: 3rem 3rem 10rem;
}
.agencycreatuverow  .col-third:nth-child(3) .col-thirdinnr {
    border-left: 1px solid rgba(0,0,0,0.3);
    height: 100%;
    padding: 3rem 3rem 5rem;
}
.agencycreatuverow .col-thirdinnr .contentbox icon {
    margin-bottom: 20px;
}
.agencycreatuverow .col-thirdinnr .contentbox  .content h6 {
    font-size: 3rem;
    max-width: 22rem;
    font-family: 'Inter';
    font-weight: bold;
    margin-bottom: 2.6rem;
}
.agencycreatuverow .col-thirdinnr .contentbox .icon {
    margin-bottom: 3rem;
}
.agencycreatuverow .col-thirdinnr .contentbox .content p {
    font-size: 2.2rem;
    font-family: 'Inter';
    font-weight: 300;
    color: #686868;
}


/* We work with the biggest brands Css */
.biggestbrandsec {
  padding: 19rem 0;
}
.biggestbrandsec .brandheading {
  text-align: center;
}
.biggestbrandsec .brandheading h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: 500;
    position: relative;
}
.biggestbrandsec .brandheading h2 img {
  width: 25rem;
}
.biggestbrandsec b {
  display: inline-block;
  opacity: 0;                 /* start hidden */
  transform: translateY(50px); /* start below */
}

/* animation class */
.biggestbrandsec b.bounce-in {
  animation: bounceIn 0.6s ease-out forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.biggestbrandsec .brandheading h2{
    max-width: 120rem;
    font-size: 18rem;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto;
    line-height: 1;
    padding-top: 10rem;
}


/* Our Process Css  */
.hp-business-section .headbox {
    display: flex;
    justify-content: space-between;
}
.hp-business-section .headbox h2 {
    font-size: 18rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-align: right;
    line-height: 0.9;
}
.hp-business-section .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: 500;
    color: #fff;
    position: relative;
    width: 68rem;
    padding-right: 7.2rem;
    text-align: left;
}
.hp-business-section .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #fff;
    height: 2px;
}
.stepcountbox {
    display: flex;
    align-items: flex-start;
}
.stepcountbox .stepcount {
    color: transparent;
    -webkit-text-stroke: 2px #9E9E9E;
    text-stroke: 2px #9E9E9E;
    font-size: 29rem;
    font-family: 'MangoGrotesque';
    line-height: 0.9;
}
.stepcontent h3 {
    font-size: 12rem;
    letter-spacing: 0;
    color: #fff !important;
}
.stepcontent .description {
    font-size: 2.2rem;
    color: #9E9E9E;
    font-weight: 300;
}
.active .stepcountbox .stepcount {
    -webkit-text-stroke: 2px #19d769;
    text-stroke: 2px #19d769;
}
.stepcontent {
  padding-left: 10rem;
}
.readycontinue {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 15rem;
}
.readycontinue h2 {
    font-size: 26.9rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'MangoGrotesque';
    color: #19d769;
    line-height: 0.8;
}
.readycontinue .buttonarrow svg {
    width: 18rem;
    height: 18rem;
}
.readycontinue p {
    font-size: 2.2rem;
    font-family: 'Inter';
    color: #fff;
    font-weight: 300;
}
.buttonarrow.reveal {
    transition: 0.3s all ease-in-out;
}
.readycontinue:hover .buttonarrow.reveal {transform: rotate(-45deg) !important;}

/* Dedicated to delivering results for top brands Start */
.portfoliosec {
  padding: 25rem 0 19rem;
}
section.portfoliosec .headingbox {
    max-width: 90rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: 15rem;
}
section.portfoliosec .headingbox h2 {
    font-size: 18rem;
    line-height: 0.95;
    font-family: 'MangoGrotesque';
    text-transform: uppercase;
    margin-bottom: 5rem;
}

section.portfoliosec .headingbox .lefttoprrow {
    position: absolute;
    top: 0;
    left: -15rem;
}
.lefttoprrow {
  display: inline-block;
  animation: wiggle 2.5s ease-in-out infinite;
}

@keyframes wiggle {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
section.portfoliosec .headingbox .righttoprrow {
    top: -4rem;
    right: -10rem;
    position: absolute;
    transform: rotate(120deg);
}
.righttoprrow {
  display: inline-block;
  animation: wiggleRight 2.5s ease-in-out infinite;
}

@keyframes wiggleRight {
  0%   { transform: translateX(0) rotate(120deg); }
  25%  { transform: translateX(6px) rotate(120deg); }
  50%  { transform: translateX(0) rotate(120deg); }
  75%  { transform: translateX(-6px) rotate(120deg); }
  100% { transform: translateX(0) rotate(120deg); }
}
section.portfoliosec .headingbox  .speaker {
    position: absolute;
    top: 10rem;
    right: -5rem;
}

.headingboxinnr {
    position: relative;
    z-index: 1;
}

.smileemoji {
    position: absolute;
    top: 25rem;
    left: -10rem;
}

.leftbottomrrow {
    position: absolute;
    left: -20rem;
    bottom: 10rem;
}
.leftbottomrrow {
  display: inline-block;
  animation: wiggleBottomLeft 2.5s ease-in-out infinite;
}

@keyframes wiggleBottomLeft {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

.rightbottomrrow {
    right: -30rem;
    bottom: -28rem;
    position: absolute;
}
.draw {
  stroke-dasharray: 1000;  
  stroke-dashoffset: 1000;
  animation: none;
}

.draw-svg.animate .draw {
  animation: drawLine 2s ease forwards;
}

.draw-svg.animate .draw:nth-child(1) { animation-delay: 0s; }
.draw-svg.animate .draw:nth-child(2) { animation-delay: 1s; }
.draw-svg.animate .draw:nth-child(3) { animation-delay: 2s; }

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

section.portfoliosec .headingbox  p {
    font-size: 2.6rem;
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
}
.speaker img,
.smileemoji img, .like {
  display: inline-block;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); } /* upar */
  100% { transform: translateY(0); }     /* wapas neeche */
}
.portfolioworkboxes .image {height: 74rem;overflow: hidden;border-radius: 2rem;position: relative;}
.portfolioworkboxes .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all ease-in-out;
}
.portfolioworkboxes .image ul.tags {
    display: flex;
    list-style: none;
    justify-content: end;
    position: absolute;
    right: 2rem;
    top: -10rem;
    gap: 2rem;
    transition: 0.5s all ease-in-out;
    z-index: 1;
}
.portfolioworkboxes .image ul.tags li {
    padding: 1.4rem 2.7rem;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1.7rem;
    border-radius: 5rem;
}
.portfolioworkboxes .image:hover ul.tags {
    top: 3rem;
}
.portfolioworkboxes .image:hover img {
    transform: scale(1.05);
}
.portfoliosec .row .col-half:nth-child(3) {
    margin-top: -30rem;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.portfoliosec .row {
  display: flex;
  flex-wrap: wrap;
}

.portfoliosec .col-innr {
    padding: 4.4rem;
    height: 100%;
}

.portfoliosec .row .col-half:nth-child(2) {
    margin-top: 30rem;
}

.portfolioworkboxes .boxinnr {
    position: relative;
}

.portfolioworkboxes .content h4 {
    font-size: 10rem;
    padding-top: 4.5rem;
    text-transform: uppercase;
}

.portfolioworkboxes .content p {
    font-weight: 300;
    font-size: 2.2rem;
}

.portfolioworklastboxes {
    background: #19d769;
    height: 100%;
    text-align: center;
    border-radius: 16px;
    padding: 9rem;
}

.portfolioworklastboxes  h4 {
    font-size: 18rem;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
}

.portfolioworklastboxes h4 span {color: #fff;}

.portfolioworklastboxes p {font-weight: 300;}

.portfolioworklastboxes span.btn-text, .portfolioworklastboxes span.btn-icon {
    border: 1px solid #333 !important;
}

.portfolioworklastboxes  .btn-box.w-max {
    margin: 5rem auto 0;
}
/* Dedicated to delivering results for top brands End */


/* Stats and Achievements Section Start */
.hp-stats-section {
  padding: 19rem 0;
  background-color: #000;
}
.hp-stats-section .headbox {
    display: flex;
    justify-content: space-between;
}
.hp-stats-section .headbox h2 {
    font-size: 16rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-align: right;
    line-height: 0.9;
}
.hp-stats-section .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: 500;
    color: #fff;
    position: relative;
    width: 35rem;
    padding-right: 7.2rem;
    text-align: left;
}
.hp-stats-section .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #fff;
    height: 2px;
}
.hp-stats-section .imagewithtext {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-stats-section .imagewithtext .textcontent {
    max-width: 72rem;
}
.hp-stats-section .imagewithtext .textcontent p {
    color: #fff;
    text-align: right;
}
.imagewithtext .image img {
    width: 18rem;
    height: 18rem;
    border-radius: 100%;
}
.imagewithtext .image {
    display: flex;
    align-items: flex-end;
}
.imagewithtext .image p.growthtext {
    background: #fff;
    border-radius: 6rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    font-size: 2rem;
    margin-left: -5rem;
}
.growthtext {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: floatUpDown 2s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); } /* upar */
  100% { transform: translateY(0); }    /* neeche */
}
.imagewithtext .image p.growthtext svg {
    margin-right: 1rem;
}
.hp-stats-section .sepreater svg {
    width: 100%;
    margin: 9rem 0;
}
.statboxrow .stat-box .count {
    font-size: 18rem;
    color: #19D769;
    font-family: 'MangoGrotesque';
    line-height: 1;
}
.statboxrow .stat-box h3 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Inter';
}
.statboxrow .stat-box p {
    font-size: 2.2rem;
    color: #7C7C7C;
    margin: 1rem 0;
}
.statboxrow .stat-box {
    padding: 0 4rem;
}
.flex-box.statboxrow {
    margin: 0 -4rem;
}
.hp-stats-section .headbox h6 {
    width: 48rem;
}



/* Our  Service Start Css */
.ourservicessection {
  padding: 18rem 0;
}
.ourservicessection .headbox {
    display: flex;
    justify-content: space-between;
}
.ourservicessection .headbox h2 {
    font-size: 16rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    text-align: right;
    line-height: 0.9;
}
.ourservicessection .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    width: 48rem;
    font-weight: 500;
    color: #000;
    position: relative;
    width: 25rem;
    padding-right: 7.2rem;
    text-align: left;
}
.ourservicessection .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #000;
    height: 2px;
}
.col-6 {
    width: 60%;
}

.col-4 {
    width: 40%;
}

.flex-box.servicewrapper {
    background: #fff;
    border-radius: 3rem;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    padding: 3rem 3rem 3rem 6rem;
    align-items: center;
    margin-bottom: 6rem;
    position: sticky;
    top: 0;
    z-index: 3;
}
.flex-box.servicewrapper .wrappercontent h3 {
    font-size: 13rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.flex-box.servicewrapper .wrappercontent p {
    font-size: 2.6rem;
    font-weight: 300;
    font-family: 'Inter';
    line-height: 1.4;
    color: #686868;
}

.taggrp {
    display: flex;
    gap: 10px;
    margin-bottom: 3rem;
}
.services-wrapper {
    margin-top: 8rem;
}
.taggrp .tag {
    color: #000;
    border: 1px solid #CFCECE;
    border-radius: 4rem;
    font-size: 1.7rem;
    padding: 1.3rem 1.8rem;
}
.services-wrapper .flex-box.servicewrapper:nth-child(1) {
  top: 6rem;
}
.services-wrapper .flex-box.servicewrapper:nth-child(2) {
  top: 6.5rem;
}
.services-wrapper .flex-box.servicewrapper:nth-child(3) {
  top: 7rem;
}
.services-wrapper .flex-box.servicewrapper:nth-child(4) {
  top: 7.5rem;margin-bottom: 0;
}
.servicewrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.servicewrapper {
  transition: all 0.5s ease;
}
.servicewrapper.active {
  opacity: 1;
  z-index: 2; /* current card sabse upar dikhe */
}
.servicewrapper.prev {
  opacity: 0.2;
  z-index: 1;
}


/* Client Stories Css */
.clientreviews {
  padding: 18rem 0;
  background: #000;
}
.clientreviews .headbox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9rem;
}
.clientreviews .headbox h2 {
  font-size: 16rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-align: right;
  line-height: 0.9;
}
.clientreviews .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  width: 48rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  width: 25rem;
  padding-right: 7.2rem;
  text-align: left;
}
.clientreviews .headbox h6:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 4.2rem;
  background: #fff;
  height: 2px;
}
.clientreviewinnr {
  padding: 0 2rem;
  margin-bottom: 10rem;
}
.clientreviewinnr .reviewstars {
  margin-bottom: 3rem;
}
.clientreviewinnr p.revew {
  font-size: 2rem;
  font-family: 'Inter';
  color: #B2B2B2;
  line-height: 1.4;
  margin-bottom: 6rem;
}
.clientreviewinnr .clientprofile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.clientreviewinnr .clientprofile .clientphoto {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #D9D9D9;
}
.clientreviewinnr .clientprofile .clientphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clientreviewinnr .clientprofile .clientinfo h6{
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.clientreviewinnr .clientprofile .clientinfo p.position {
  font-size: 1.4rem;
  color: #B5B5B5;
  font-family: 'Inter';
  font-weight: 300;
}
.clientreviewbtn {
    text-align: center;
    margin-top: 4rem;
}
.clientrwvewrow.flex-box {
    height: 52rem;
    overflow: hidden;
    position: relative;
}
.clientrwvewrow:after {
  content: "";
  position: absolute;
  width: 100%;
  background-image: linear-gradient(transparent, #000);
  height: 25rem;
  bottom: 0;
  left: 0;
}
.clientrwvewrow.expanded {
  height: auto; /* will expand */
}
.clientreviewbtn a.btn.btn-primary:hover svg path {
    fill: #fff !important;
}
/* Faq Section  Css  */
.faqsection {
  padding: 18rem 0 10rem;
  background-color: #F3F3F0;
}
.col-5 {
  width: 50%;
}
.faqsection .headbox {
  margin-bottom: 9rem;
}
.faqsection .headbox h2 {
  font-size: 16rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  text-align: left;
  margin: 4rem 0;
  line-height: 0.9;
}
.faqsection .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  width: 48rem;
  font-weight: 500;
  color: #000;
  position: relative;
  width: 35rem;
  padding-right: 7.2rem;
  text-align: left;
}
.faqsection .headbox h6:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 4.2rem;
  background: #000;
  height: 2px;
}
.faq-head::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0.4rem;
    width: 3rem;
    height: 3rem;
    background: url(../image/plus.png) no-repeat center;
    background-size: 10px;
    transition: all 0.3s ease;
    border: 1px solid #000;
    border-radius: 20px;
}

.faq-head.active::after {
    background: url(../image/minus.png) no-repeat center;
}


/* Blog Css  */
.blogsectionhp {
  background-color: #F3F3F0;
}
.blogsectionhp .container {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.bloglistingpg .container {
  padding-top: 8rem;
}
.blogsectionhp .headbox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}
.blogsectionhp .headbox h2 {
    font-size: 16rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    text-align: right;
    line-height: 0.9;
}
.blogsectionhp .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    width: 48rem;
    font-weight: 500;
    color: #000;
    position: relative;
    width: 25rem;
    padding-right: 7.2rem;
    text-align: left;
}
.blogsectionhp .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #000;
    height: 2px;
}
.blogbocrow, .blogboxrow {
  margin-bottom: 10rem;
}
.blogbocrow .col-third, .blogboxrow .col-third {
    padding: 0 2rem;
}
.blogbocrow .col-third:not(:last-child), .blogboxrow .col-third:not(:last-child) {border-right: 1px solid #333;}
.blogbocrow .col-third .blogimage, .blogboxrow .col-third .blogimage {
    height: 38rem;
    background: #000;
}
.blogbocrow .col-third .blogimage img, .blogboxrow .col-third .blogimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogbocrow .col-third .blogcontent, .blogboxrow .col-third .blogcontent {
    padding: 3rem 3rem 3rem 0;
}
.blogbocrow .col-third .blogcontent p.date, .blogboxrow .col-third .blogcontent p.date {
    font-size: 1.7rem;
    color: #868686;
    line-height: 1;
    margin-bottom: 2.5rem;
}
.blogbocrow .col-third .blogcontent  h2, .blogboxrow .col-third .blogcontent  h2 {
    line-height: 1.2;
    font-family: 'Inter';
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}
.blogbocrow .col-third .blogcontent p, .blogboxrow .col-third .blogcontent p {
    font-size: 2.1rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}
a.blogbutton:hover svg circle, .arrowdown:hover svg circle {
    fill: #000;
}
a.blogbutton:hover svg path, .arrowdown:hover svg path {
    stroke: #fff;
}
.hp-contact-section {
  padding: 16rem 0 10rem;
}
.bloglistingpg {
  background-color: #fff !important;
}

.col-3 {
    width: 30%;
}

.startbold h2 {
    display: flex;
    align-items: flex-start;
    text-transform: uppercase;
    gap: 20px;
    font-size: 18rem;
    font-weight: bold;
    line-height: 1;
}

.startbold h2 svg {
    width: 13rem;
}

.startbold p {
    color: #A9A9A9;
    font-size: 2.1rem;
    line-height: 1.4;
}
.startbold svg {
  transition: all 0.3s ease;
  cursor: pointer;
}
.startbold svg:hover {
  transform: rotate(-45deg);
}
.startbold svg:hover circle {
  fill: #19D769;
}
.startbold svg:hover path {
  stroke: #000;
}
footer#footer {
    padding-top: 16rem;
}

footer.footer .startbold {
    max-width: 80%;
}

.footer-social-links li a:hover svg {
    filter: brightness(10) invert(1);
}
.footer-social-links li:nth-child(1) a:hover svg {
  filter: none;
}
.brandname {
    padding: 8rem 0 4rem;
    border-bottom: 1px solid #5C5C5C;
}

.brandname svg {
    width: 100%;
}
/* .brandname svg path {
  fill: #272B30;
  fill-opacity: 0;
  stroke: #272B30;
  stroke-width: 2;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
} */
.copyright {
    color: #A9A9A9;
    padding: 3rem  0 4rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
}
.footer  .col-3 {
    width: 20%;
}

.footer .col-3 .footerhead h4 {
    color: #19D769;
    font-size: 2.4rem;
    font-family: 'Inter';
    font-weight: 500;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.footer .col-3 .footerlink ul {
    list-style: none;
    padding-left: 0;
}

.footer .col-3 .footerlink ul li {
    font-size: 3.6rem;
    font-weight: 500;
    font-family: 'Inter';
    margin-bottom: 2rem;
    display: block;
    color: #A9A9A9;
}
.footerinnr {
    padding: 0px 6rem;
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}


/* Inner Banner css  */
.innerbanner {
  padding: 3rem 0 4rem;
}
.innerbanner .flex-box.justify-center p {
    margin: 0 auto;
}
.innerbanner .flex-box p {
    max-width: 110rem;
}
.innerbanner .flex-box h6.bgradius {
    color: #0E1623;
    font-size: 2.5rem;
    line-height: 1;
    padding: 1.6rem 2.5rem;
    border: 1px solid #19D769;
    background: #C8FFDF;
    border-radius: 9rem;
    display: inline-block;
    font-weight: 500;
    font-family: 'Inter';
    margin-bottom: 4.6rem;
}
.innerbanner .flex-box h2 {
    font-size: 36.8rem;
    text-transform: uppercase;
    line-height: 0.9;
}
.innerbanner .flex-box p {
    color: #686868;
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 300;
    font-family: 'Inter';
}


/* Work Page Css  */
section.portfoliosec.ourworksectionpage {
    padding-top: 8rem;
}
section.portfoliosec.ourworksectionpage .row {
    margin: 0 -4.4rem;
}
section.portfoliosec.ourworksectionpage .row .col-half{
  margin-top: 0px !important;
}
section.portfoliosec.ourworksectionpage .clientreviewbtn {
    margin-top: 6rem;
    position: relative;
}
section.portfoliosec.ourworksectionpage .clientreviewbtn:before {
    content: "";
    background: #ADADAD;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 3rem;
    left: 0;
}
section.portfoliosec.ourworksectionpage .clientreviewbtn a.btn.btn-primary {
    background: #fff;
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Blog Detail PAge Css */
section.innerbanner.blogbanner {
    padding-bottom: 6rem;
}
.blogbanner .headbox h2 {
  font-size: 18rem;
}
.blogbanner .headbox p {
  max-width: 80%;;
}
.featuredimage {
  width: 100%;
  margin: 2rem 0 4rem;
}
.featuredimage img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.blogdetailcontent h4 {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Inter';
    line-height: 1.4;
    margin-bottom: 2.6rem;
}
.blogdetailcontent p {
    font-size: 2.6rem;
    font-weight: 300;
    margin-bottom: 3rem;
    font-family: 'Inter';
    line-height: 1.4;
    color: #686868;
}
.blogdetailcontent .flex-box {margin: 0 -2rem 3rem;}
.blogdetailcontent .flex-box .image {
    height: 75rem;
    border-radius: 20px;
    overflow: hidden;
}
.blogdetailcontent .flex-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogdetailcontent .flex-box .col-5 {
    padding: 2rem;
}
.blogdetailcontent {
    padding-bottom: 20rem;
}
.blogdetailcontent p strong {
    font-weight: 600;
}
.blogdetailcontent ul li {
    font-size: 2.6rem;
    font-weight: 300;
    font-family: 'Inter';
    line-height: 1.4;
    color: #686868;
}
.blogdetailcontent ul {
    margin-top: -15px;
}


/* Contact US PAge Css  */
.contactbanner h2 b:nth-child(1),
.contactbanner h2 b:nth-child(2),
.contactbanner h2 b:nth-child(3),
.contactbanner h2 b:nth-child(4),
.contactbanner h2 b:nth-child(5),
.workbanner h2 b:nth-child(1),
.workbanner h2 b:nth-child(2),
.workbanner h2 b:nth-child(3) {
  color: #19D769;
}
.contactussectionpage .submit-box input[type="submit"]:hover {
  background: #fff;color: #000;
}
section.hp-contact-section.contactussectionpage {
  background: #F3F3F0;
  margin-top: 6rem;
  padding-bottom: 0;
}
section.hp-contact-section.contactussectionpage .container {
  border-bottom: 1px solid #9E9E9E;
}
section.hp-contact-section.contactussectionpage .text-content p {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Inter';
}
.contact-social-links li a {
    border: 1px solid #5B5B5B;
    width: 7rem;
    height: 7rem;
    border-radius: 4rem;
}

.contact-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 14rem;
}
.contact-social-links li a:hover {
  border-color: #19D769;
  background-color: #19D769;
}
.contact-social-links li a svg path {
    fill: #5b5b5b;
}
.contact-social-links li a:hover svg path {
    fill: #000;
}
section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white {
    background: #19d769;
}
section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .flex-box {
    width: 100%;
    gap: 10px;
}
section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .flex-box .input-box {
    width: 49%;
}
section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .input-box input, section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .input-box textarea {
    background: transparent;
    border-color: #000;
    color: #000;
}
section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .input-box input::placeholder, section.hp-contact-section.contactussectionpage .hp-contact-form.bg-white .input-box textarea::placeholder {
    color: #000;
}
.hero_display b {
  display: inline-flex;
  height: 26rem;
  /* transform: translateY(100%); */
  /* opacity: 0; */
}
.line {
      display: block;
      overflow: hidden; /* important for slide-up effect */
    }

    .char {
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
    }
.slide-up {
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* About US page Css */
.aboutusbanner .slideinnr {
    overflow: hidden;
    border-radius: 2rem;
}
.aboutusbanner .slideinnr img {
    width: 100%;
    height: 100%;
}
.aboutusbanner  ul.slick-dots {bottom: 3rem;text-align: end;padding-right: 10px;}
.aboutusbanner ul.slick-dots li button {
    background: #fff;
    width: 17px;
    height: 17px;
    border-radius: 2rem;
    opacity: 0.5;
}
.aboutusbanner ul.slick-dots li button:before {
    display: none;
}
.aboutusbanner ul.slick-dots li {
    margin: 0 2px;
}
.aboutusbanner ul.slick-dots li.slick-active button {
    opacity: 1;
}
.whatwedosection {
  padding: 18rem 0;
  background: #F3F3F0;
}
.whatwedosection .headbox {
    display: flex;
    justify-content: space-between;
}
.whatwedosection .headbox h2 {
    font-size: 18rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: right;
    line-height: 0.9;
}
.whatwedosection .headbox h6 {
    font-size: 2.5rem;
    font-family: 'Inter';
    font-weight: 500;
    position: relative;
    padding-right: 7.2rem;
}
.whatwedosection .headbox h6:after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 4.2rem;
    background: #16181B;
    height: 2px;
}
.whatwedosection .flex-box {
    margin: 0 -2rem;
}
.whatwedosection .col-half {
    padding: 3rem 2rem;
}
.whatwedosection .portfolioworkboxes .content h4 {
  padding-top: 3rem;
  font-size: 3rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.letbuildsomethingbold {
  padding: 18rem 0 10rem;
  background: #19D769
}
.letbuildsomethingbold h2 {
  font-size: 18rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  line-height: 0.9;
}
.letbuildsomethingbold h2 span {
  color: #fff;
}

/* About Us Banner Css  */
.aboutusbanner a.btn-label {
  display: inline-flex;
  align-items: end;
  margin-top: 8rem;
  font-size: 2.5rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.aboutusbanner a.btn-label svg {
  margin-left: 10px;
}
section.innerbanner.aboutusbanner {
  padding-bottom: 16rem;
}
section.whychooseussection {
  background: #000;
  padding: 18rem 0;
}
.neonboxapprchsec {
  background: #000;
}
.higlightsectionabout {
  padding: 18rem 0;
  background: #F3F3F0;
}
.higlightsectionabout .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  font-weight: 500;
  margin-bottom: 5rem;
  position: relative;
}
.higlightsectionabout .headbox h2 {
  font-size: 17rem;
  line-height: 1;
  text-transform: uppercase;
}
.higlightbox .higlightitem {
  padding: 6.5rem 0;
  border-top: 1px solid #B2B2B2;
}
.higlightbox .higlightitem .count {
  font-size: 18rem;
  color: #19D769;
  font-family: 'MangoGrotesque';
  line-height: 0.8;
}
.higlightbox .higlightitem h6 {
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  color: #16181B;
  font-weight: bold;
  font-family: 'Inter';
  margin-bottom: 20px;
  margin-top: 20px;
}
.higlightbox .higlightitem p {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Inter';
  line-height: 1.4;
}
.higlightsectionabout .col-4 .headbox {
  height: auto;
  position: sticky;
  top: 5rem;
}
.letbuildsomethingbold a.btn svg {
  margin-right: 2rem;
}
.letbuildsomethingbold a.btn {
  padding: 4rem 6rem;
  background: #303031;
  color: #fff;
  margin-top: 5rem;
  border-radius: 10rem;
}
.rotating {
  transform-origin: center;
  animation: rotateAnim 15s linear infinite;
}
@keyframes rotateAnim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.whychooseussection .headbox {
    display: flex;
    justify-content: space-between;
}
.whychooseussection .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  font-weight: 500;
  position: relative;
  padding-right: 7.2rem;
  color: #fff;
}
.whychooseussection .headbox h6:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 4.2rem;
  background: #fff;
  height: 2px;
}
.whychooseussection .headbox h2 {
  font-size: 18rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: right;
  line-height: 0.9;
  color: #fff;
}
.col-forth {
  width: calc(100% / 4);
}
.whychooseussection .col-innr .iconwithtitle {
  padding: 6rem 2rem;
  background: #353535;
  text-align: center;
  border-radius: 15px;
  height: 100%;
}
.whychooseussection .col-innr {
  padding: 2rem;
  height: 100%;
}
.whychooseussection .col-innr .iconwithtitle h4 {
  font-size: 3rem;
  font-family: 'Inter';
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5rem;
}
.whychooseussection .headbox {
  margin-bottom: 4rem;
}
.neonboxapprchsec .container {
  border-top: 1px solid #9E9E9E;
  padding: 18rem 0;
}
.neonboxapprchsec .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  font-weight: 500;
  position: relative;
  color: #fff;
  margin-bottom: 4rem;
}
.neonboxapprchsec .headbox h2 {
  font-size: 18rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 0.9;
  color: #fff;
}
.neonboxapprchsec .headbox p {
  font-size: 2.6rem;
  line-height: 1.4;
  font-family: 'Inter';
  max-width: 124rem;
  margin: 0 auto 9rem;
  color: #fff;
}
.neonboxapprchsec .headbox {
  text-align: center;
}
.neonboxapprchsec .stepsbox {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.neonboxapprchsec .stepsbox .stepcount {
  -webkit-text-stroke: 2px #19d769;
  text-stroke: 2px #19d769;
  font-size: 10rem;
  font-family: 'MangoGrotesque';
  line-height: 1.2;
}
.neonboxapprchsec .stepsbox h6 {
  font-size: 3rem;
  color: #fff;
  font-family: 'Inter';
  margin-top: 3rem;
  text-transform: uppercase;
  max-width: 80%;
  margin: 0 auto 1rem;
  line-height: 1.4;
}
.neonboxapprchsec .stepsbox svg {
  width: 10rem;
  margin-top: 10px;
}
.approchsteps .col-forth:nth-child(even) .col-innr .stepsbox {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.approchsteps .col-forth:nth-child(even) .col-innr svg {
  order: 1;
  margin: 0 auto 20px;
}
.approchsteps .col-forth:nth-child(even) .col-innr .stepcount {
  order: 2;
}
.approchsteps .col-forth:nth-child(even) .col-innr h6 {
  order: 3;
}
.approchsteps {
  position: relative;
}
.approchsteps .linecurve {
  position: absolute;
  top: 58%;
  left: 2%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 0;
}
.approchsteps .linecurve svg {
  width: 100%;
}
.approchsteps {
  padding-top: 10rem;
}
.approchsteps .col-forth:nth-child(2) .col-innr .stepsbox {
  margin-top: -5rem;
  margin-left: 8rem;
}
.approchsteps .col-forth:nth-child(3) .col-innr .stepsbox {
  margin-top: -6rem;
  margin-left: 0;
}
.approchsteps .col-forth:nth-child(4) .col-innr .stepsbox {
    margin-top: 8rem;
    margin-left: 0;
}
.whatwedosection .portfolioworkboxes .image {
  border-radius: 0;
}
.aboutusbanner a.btn-label:hover {
    border-color: #19d769;
    color: #19d769;
}
.aboutusbanner a.btn-label:hover svg path {
    stroke: #1fd66c;
}


/* Work Details Page Css */
.workdetailsbanner .headbox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.workdetailsbanner .headbox .headparacircle {
  text-align: right;
}
.workdetailsbanner .headbox .headparacircle p {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.featuredworkdb .sectionionnevideo {
  border-radius: 20px;
  overflow: hidden;
}
.featuredworkdb .sectionionnevideo .playicon {
  width: 10rem;
}
.scalableidentitiysec {
  padding: 18rem 0;
}
.scalableidentitiysec .row {
  display: flex;
  justify-content: space-between;
}
.scalelistitem {border-top: 1px solid #D9D9D9;padding: 3rem 0;}
.scalelistitem h6 {
  font-size: 2.4rem;
  color: #9D9D9D;
  font-weight: 400;
  font-family: 'Inter';
  margin-bottom: 1rem;
}
.scalelistitem p {
  font-size: 2.3rem;
  font-family: 'Inter';
  font-weight: 400;
  margin: 0.5rem 0;
}
.scaleablecontentinr h2 {
  font-size: 17rem;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 4rem;
}
.scaleablecontentinr h2 span {
  display: block;
}
.scaleablecontentinr h6 {
  font-weight: 500;
  font-size: 3.5rem;
  margin-bottom: 5rem;
}
.col-10 {
  width: 100%;
}
.Bannerworkcolleage .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.col-half {
  width: 50%;
}
.Bannerworkcolleage .col-half {
  padding: 10px;
}
.designuifoundation {
  padding: 18rem 0;
  background: #F3F3F0;
}
.Bannerworkcolleage {
  padding-bottom: 10rem;
}
.designuifoundation .headingbox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
.designuifoundation .headingbox p {
  font-size: 2.5rem;
  text-transform: uppercase;
  width: 80rem;
}
.designuifoundation .headingbox h6 {
  font-size: 3.5rem;
  font-weight: 600;
  width: 80%;
}
.designuifoundation .row {
  display: flex;
  flex-wrap: wrap;
}
.designuifoundation .col-half {
  padding: 10px;
}
.designuifoundation .image {
  height: 90rem;
  border-radius: 20px;
  overflow: hidden;
}
.designuifoundation .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.faqaccordionsec .faq-head h6 {
  font-size: 10rem;
  font-family: 'MangoGrotesque';
  text-transform: uppercase;
  color: #000;
  line-height: 1;
}
.faqaccordionsec .row {display: flex;flex-wrap: wrap;}
.faqaccordionsec .faq-wrapper.mt-7 {
  margin-top: 0;
}
section.faqaccordionsec {
  padding: 18rem 0;
}
.faqaccordionsec .image {
  width: 80%;
  margin-left: auto;
  height: 60rem;
  margin-right: 0;
}
.faqaccordionsec .image img {
  width: 100%;
  height: 100%;
}
.faqaccordionsec .faq-head.accordion-head {
  margin-bottom: 0px;
}
.faqaccordionsec .faq-head.accordion-head:After {
  top: 2rem;
  border: none;
  width: 4rem;
  height: 4rem;
  background-size: 20px;
}
.faqaccordionsec .faq-item.accordion-item.reveal {
  margin-bottom: 0px;
  border-top: 1px solid #ddd;
  padding-top: 4rem;
  border-radius: 0;
}
.faqaccordionsec  .faq-body.accordion-body {
  color: #686868;
}
.scalebleinnr .scalelistitem:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.workfullslider .slick-dots {
    display: flex !important;
    justify-content: right;
    gap: 35px;
    margin-top: 20px;
    bottom: 10rem;
    right: 0;
    left: 0;
    padding-left: 0;
    padding-right: 10rem;
}

.workfullslider .slick-dots li {
  list-style: none;
}

.workfullslider .slick-dots li button {
  font-size: 0;
  border: none;
  font-family: "Inter", sans-serif;
  background: none;
}

.workfullslider .slick-dots li button:before {
  content: attr(data-dot);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #cbcbcb;
  font-family: "Inter", sans-serif;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
}
.workfullslider .slick-dots li.slick-active button:before {
  background: #00c853; /* green fill */
  border-color: #00c853;
  color: #000;
}
.workfullslide {
  height: 100vh;
}
.workfullslide .workfullslideinnr {
  padding: 15rem 0;
}
.workfullslide .workfullslideinnr h2 {
  font-size: 18rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.workfullslide .workfullslideinnr h2 span {
  display: block;
  line-height: 0.6;
}
.workfullslideinnr .arrow {
  width: 8rem;
}
.fullwebsitepagedelivered {
  padding: 19rem 0 8rem;
}
.pagettshow {
  background: #19D769;
  padding: 1.8rem 2.8rem;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Inter';
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: inline-block;
  margin-bottom: -2px;
}
.fullwebsitepagedelivered .flex-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.fullwebsitepagedelivered .flex-box .col-5 {
  width: 100%;
}
h2.ttdelivery {
  font-size: 18rem;
  text-transform: uppercase;
  line-height: 0.95;
  padding-top: 5rem;
  position: relative;
  margin-bottom: 10rem;
}
h2.ttdelivery span.boxtt {
  width: 14rem;
  height: 14rem;
  display: inline-block;
  position: absolute;
  right: 18rem;
  bottom: 24rem;
}
h2.ttdelivery span.boxtt img {
  width: 100%;
}
.pagewrapinnr .image {
  margin-bottom: 15rem;
}
.ourbrandreels {
  background: #F3F3F0;
  padding: 16rem 0;
}
.ourbrandreels .headbox {
  display: flex;
  justify-content: space-between;
}
.ourbrandreels .headbox h2 {
  font-size: 16rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  text-align: right;
  line-height: 0.9;
}
.ourbrandreels .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  font-weight: 500;
  color: #000;
  position: relative;
  width: 12rem;
  padding-right: 7.2rem;
  text-align: left;
}
.ourbrandreels .headbox h6:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 4.2rem;
  background: #000;
  height: 2px;
}
.ourbrandreelslider {
  padding-left: 6rem;
  padding-top: 5rem;
}
.ourbrandreelslide .ourbrandreelslideinnr {
  position: relative;
  background: #000;
  height: 80rem;
}
.ourbrandreelslide .ourbrandreelslideinnr .playicon {
  width: 10rem;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.ourbrandreelslide .ourbrandreelslideinnr .playicon img {
    width: 100%;
}
.ourbrandreelslide {
  width: 55rem !important;
  padding: 1rem;
}
.ourbrandreelslider  ul.slick-dots {
    overflow: hidden;
    list-style: none;
    padding-left: 0;
    position: relative;
    max-width: var(--page-width);
    width: 96%;
    margin: 4rem 0 0 0;
    left: 0;
    background: #E8E4D5;
}
.ourbrandreelslider  ul.slick-dots li {
    float: left;
    height: 8px;
    width: 14rem;
    cursor: pointer;
}
.ourbrandreelslider  ul.slick-dots li button {
    height: 8px;
    font-size: 0;
    padding: 0;
    width: 26rem;
    border: none;
    background: transparent;
    cursor: pointer;
}
.ourbrandreelslider  ul.slick-dots li.slick-active, .ourbrandreelslider  ul.slick-dots li.slick-active button {
  background: #12221F;
}
.founderclientssec {
  background: #000;
  padding: 18rem 0;
}
.founderclientssec .imageclient, .founderclientssec .imageclient img {
  width: 100%;
}
.founderclientssec .row {
  display: block;
}
.founderclientssec .headingbox {
  padding: 18rem 0;
  text-align: center;
  margin: 0 auto;
  max-width: 140rem;
}
.founderclientssec .headingbox h2 {
  font-size: 12rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}
.founderclientssec .headingbox p {color: #fff;}
.founderclientssec .col-half {
  padding: 20px;
}
.founderclientssec .col-half .image {
  border-radius: 10px;
  overflow: hidden;
  height: 80rem;
}
.founderclientssec .col-half .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcomesresultsec {
  padding: 18rem 0;
}
.outcomesresultsec .headbox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
.outcomesresultsec .headbox h2 {
  font-size: 16rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  text-align: right;
  line-height: 0.9;
}
.outcomesresultsec .headbox h6 {
  font-size: 2.5rem;
  font-family: 'Inter';
  font-weight: 500;
  color: #000;
  position: relative;
  width: 18rem;
  padding-right: 7.2rem;
  text-align: left;
}
.outcomesresultsec .headbox h6:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 4.2rem;
  background: #000;
  height: 2px;
}
.outcomesresultsec .sectionionnevideo {
  border-radius: 20px;
}
section.ourworksectionpage.othercasestudies {
  background: #F3F3F0;
  padding-top: 18rem;
}
section.ourworksectionpage.othercasestudies .headingbox {
  margin-left: 0;
  text-align: left;
  padding-bottom: 5rem;
}
section.ourworksectionpage.othercasestudies .headingbox p {
  margin-left: 0;
  max-width: 100%;
}
section.ourworksectionpage.othercasestudies .headingbox h2 {
  margin-bottom: 0;
}
section.ourworksectionpage.othercasestudies .headingbox h6 {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
section.ourworksectionpage.othercasestudies .col-half {
  /* width: 100%; */
}
.outcomesresultsec .row.outcomecounts {
  display: flex;
  padding-top: 10rem;
}
.outcomesresultsec .row.outcomecounts .col-third {
  border-left: 1px solid #ddd;
  padding-left: 5rem;
  padding-right: 6rem;
}
.outcomesresultsec .row.outcomecounts .col-third .count {
  font-size: 18rem;
  font-weight: bold;
  font-family: 'MangoGrotesque';
  color: #19d769;
  line-height: 1.1;
}
.outcomesresultsec .row.outcomecounts .col-third sub svg {
  margin-bottom: 30px;
  display: inline-block;
  line-height: 0;
  width: 40px;
  height: 30px;
}
.outcomesresultsec .row.outcomecounts .col-third sup {
  font-size: 7rem;
  position: relative;
  top: -10px;
}
.outcomesresultsec .row.outcomecounts .col-third sub {
  height: 0px;
  display: inline-block;
}
.outcomesresultsec .row.outcomecounts .col-third h6 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Inter';
}
.outcomesresultsec .row.outcomecounts .col-third p {
  font-size: 2.2rem;
  font-weight: 300;
}
a.posurl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.neonboxapprchsec video {
  width: 100%;
  object-fit: cover;
}