/* common CSS */
:root{
	--primary: #05B178;
	--black: #000000;
	--white:#FFFFFF;
	--whiteFE:#FEFEFE;
	--grey75:#6C7275;
	--grey39:#343839;
	--grey18:#141718;
}
/* Fonts */
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter18pt-Light.woff2') format('woff2'),
        url('./assets/fonts/Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter18pt-Regular.woff2') format('woff2'),
        url('./assets/fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter18pt-Medium.woff2') format('woff2'),
        url('./assets/fonts/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter18pt-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter18pt-ExtraBold.woff2') format('woff2'),
        url('./assets/fonts/Inter18pt-ExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Serif Display';
    src: url('./assets/fonts/DMSerifDisplay-Regular.woff2') format('woff2'),
        url('./assets/fonts/DMSerifDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:focus-visible {
  outline: none;
}
html,
button,
input,
select,
textarea,
body {
  font-family: 'Inter';
}
body {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: var(--white);
  background-color: var(--black);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
iframe {
  border: 0;
  width: 100%;
}
a,
span {
  display: inline-block;
}
a,
a:hover {
  transition: all 0.4s;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--white);
}
svg:not(:root) {
  overflow: hidden;
}
ul , ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
  max-width: 100%;
  display: block;
  margin: 0;
}
.container {
  max-width: 1150px;
  padding-inline: 20px;
  margin-inline: auto;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 700 !important;
}
h1,h2,h3,h4,h5,h6,address,p,pre,blockquote,dl,dd,menu,ol,ul,table,caption,hr
{margin:0 0 16px 0;
}
h1:last-child,h2:last-child:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child,address:last-child,p:last-child,pre:last-child,blockquote:last-child,dl:last-child,dd:last-child,menu:last-child,ol:last-child,ul:last-child,table:last-child,caption:last-child,hr:last-child
{
	margin-bottom:0;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'DM Serif Display';
	font-weight: 400;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span{
    color: var(--primary);
}
.fonts-dm-serif{
	font-family: 'DM Serif Display' !important;
	font-weight: 400 !important;
}
.fonts-inter{
	font-family: 'Inter' !important;
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}
.icon-right-cross-arrow{
  mask-image: url('assets/images/icon-right-cross-arrow.svg');
  -webkit-mask-image: url('assets/images/icon-right-cross-arrow.svg');
}
.icon-down-arrow{
  mask-image: url('assets/images/icon-down-arrow.svg');
  -webkit-mask-image: url('assets/images/icon-down-arrow.svg');
}
.icon-arrow-right{
  mask-image: url('assets/images/icon-arrow-right.svg');
  -webkit-mask-image: url('assets/images/icon-arrow-right.svg');
}
.icon-time{
  mask-image: url('assets/images/icon-time.svg');
  -webkit-mask-image: url('assets/images/icon-time.svg');
  width: 12px;
  height: 12px;
}
/* Button CSS */
.common-btn{
	min-height: 56px;
	background-color: var(--white);
  border:1px solid var(--white);
	border-radius: 999px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
  gap: 8px;
	text-align:center;
	padding: 12px 32px;
  position: relative;
  z-index: 0;
	cursor: pointer;
  overflow: hidden;
	transition: 0.4s ease-in-out;
}
.common-btn::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  top: 0;
  left: 0;
  border-radius: 70px;
  transform-origin: 0;
  transform: scaleX(0);
  z-index: -1;
  transition: 0.4s ease-in-out;
}
.common-btn .icon{
  background-color: var(--black);
  transition: 0.4s ease-in-out;
  width: 24px;
  height: 24px;
}
.common-btn:hover{
	/* background-color: var(--primary); */
	color: var(--white);
}
.common-btn:hover::before{
  transform-origin: 0 50%;
  transform: scaleX(1);
}
.common-btn:hover .icon{
  background-color: var(--white);
  rotate: 45deg;
}
/* Spacing CSS */
.mt-60{
  margin-top: 60px;
}
.mb-60{
  margin-bottom: 60px;
}
.pt-60{
  padding-top: 60px;
}
.pb-60{
  padding-bottom: 60px;
}
.mt-80{
  margin-top: 80px;
}
.mb-80{
  margin-bottom: 80px;
}
.pt-80{
  padding-top: 80px;
}
.pb-80{
  padding-bottom: 80px;
}
.mb-0{
  margin-bottom: 0 !important;
}
/* Typography CSS */
h1,.h1{
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -2px;
}
h2,.h2{
  font-size: 54px;
  line-height: 1.0741;
  letter-spacing: -1px;
}
h3,.h3{
  font-size: 28px;
  line-height: 1.21;
  letter-spacing: -0.6px;
}
h4,.h4{
  font-size: 24px;
  line-height: 1.33;
}
h5,.h5{
  font-size: 20px;
  line-height: 1.5;
}
h6,.h6{
  font-size: 18px;
  line-height:normal;
}
.fs-58{
  font-size: 58px;
  line-height: 1;
  letter-spacing: -2px;
}
.fs-40{
  font-size: 40px;
  line-height: normal;
}
.fs-34{
  font-size: 32px;
  line-height: 1.17;
  letter-spacing: -0.6px;
}
.fs-32{
  font-size: 32px;
  line-height: normal;
  letter-spacing: -0.4px;
}
.fs-14{
  font-size: 14px;
  line-height: normal;
}
p,.p{
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
.small-title{
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
.title-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 32px;
  max-width: 1070px;
  margin-inline: auto;
}
.title-wrapper > * {
  margin-bottom: 0;
}
.redirect-link{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-size: 0;
  line-height: 0;
  cursor:pointer;
}
/* Header CSS */
.site-header{
	background-color: var(--black);
	padding: 24px 0;
	position:sticky;
	top: 0;
	z-index: 20;
}
.site-header .header-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:16px;
}
.site-header.sticky{
  box-shadow: rgb(0 0 0 / 10%) 0px 2px 20px;
}
.site-logo{
	display: flex;
	max-width: 72px;
	flex-shrink: 0;
}
.site-logo a{
	display: block;
}
.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.site-header .nav-wrapper .menu{
	display: flex;
	align-items: center;
	gap: 36px;
}	
.site-header .nav-wrapper .menu li a{
	font-size: 16px;
	font-weight: 500;
	color: rgb(255 255 255 / 40%);
	transition: 0.3s ease-in-out;
}
.site-header .nav-wrapper .menu li a:hover ,
.site-header .nav-wrapper .menu li.current-menu-item > a{
	color: var(--white);
}
.site-header .nav-wrapper .menu li.menu-item-has-children{
  position: relative;
}
.site-header .nav-wrapper .menu li.menu-item-has-children a{
 padding-right: 24px;
 position: relative;
}
.site-header .nav-wrapper .menu li.menu-item-has-children > a .toggle-submenu-icon{
  position: absolute;
  right: 0;
  top:0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.site-header .nav-wrapper .menu li.menu-item-has-children > a .toggle-submenu-icon i {
  width: 12px;
  height: 7px;
  display: inline-block;
  vertical-align: top;
  background-color: rgb(255 255 255 / 40%);
  mask-image: url('assets/images/icon-down-arrow.svg');
  mask-size: cover;
  mask-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.site-header .nav-wrapper .menu li.menu-item-has-children > a:hover .toggle-submenu-icon i{
  background-color: var(--white);
  rotate: 180deg;
}
.site-header .nav-wrapper .menu li.current-menu-item > a .toggle-submenu-icon i{
  background-color: var(--white);
}
.site-header .nav-wrapper .sub-menu{
  position: absolute;
  top: 100%;
  background-color: var(--white);
  left: 0px;
  min-width: max-content;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.site-header .nav-wrapper .sub-menu li {
  display: block;
  width: 100%;
  margin: 0px;
}
.site-header .nav-wrapper .sub-menu li a {
  padding: 10px 15px;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  color: var(--black);
}
.site-header .nav-wrapper .sub-menu li a:hover{
  background-color: var(--primary);
  color: var(--white);
}
.site-header .nav-wrapper .menu li.menu-item-has-children:has(a:hover) .sub-menu {
  visibility:visible;
  opacity: 1;
  pointer-events: visible;
}
.buttons-wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Toggle Menu For Mobile */
.mobile-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobile-toggle i{
  position: relative;
  width: 90%;
  height: 2px;
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}
.mobile-toggle i::before, .mobile-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}
.mobile-toggle i::before {
  top: -10px;
}
.mobile-toggle i::after {
  bottom: -10px;
}
.mobile-toggle.active i {
  background-color: transparent;
}
.mobile-toggle.active i::before, .mobile-toggle.active i::after {
  top: 0;
}
.mobile-toggle.active i::before {
  rotate: -45deg;
}
.mobile-toggle.active i::after {
  rotate: 45deg;
}


/* Footer CSS */
.footer-wrapper{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-info{
  max-width: 366px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer-info p{
  line-height: 1.6;
  color: var(--whiteFE);
}
.social-media-lists{
  display: flex;
  align-items: center;
  gap:8px;
}
.social-media-lists li a{
  width: 24px;
  height: 24px;
  background-color: var(--grey75);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.social-media-lists li a span{
  background-color: var(--black);
}
.social-media-lists li a:hover{
  background-color: var(--primary);
}
.social-media-lists li a:hover span{
  background-color: var(--white);
}
.footer-info > * {
  margin-bottom: 0;
}
.footer-menu-wrapper{
  width: 100%;
  max-width: 262px;
}
.footer-menu-wrapper .menu li a{
  display: block;
  padding: 16px 30px 16px 0;
  border-bottom: 1px solid var(--grey39);
  font-size: 16px;
  font-weight: 500;
  /* color:var(--white); */
  color: rgb(255 255 255 / 40%);
  position: relative;
}
.footer-menu-wrapper .menu li a::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width:24px;
  height: 24px;
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey39);
  background:url('assets/images/icon-arrow-right.svg');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in-out;
}
.footer-menu-wrapper .menu li a:hover::after ,
.footer-menu-wrapper .menu li.current-menu-item a::after {
  background-color:var(--white);
  border-color: var(--white);
}
.footer-menu-wrapper .menu li a:hover,
.footer-menu-wrapper .menu li.current-menu-item a{
  color: var(--white);
}
.footer-menu-wrapper .menu > li:last-child a{
  border-bottom: none;
}
.copyright-content{
  padding: 20px 0;
  border-top:1px solid var(--grey39);
}
.copyright-content p{
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey75);
  text-align: center;
}

/* Home Page CSS */
.banner-wrapper .banner-content{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.banner-wrapper .details-box{
  max-width: 440px;
}
.banner-wrapper .details-box p{
  color: var(--whiteFE);
  margin-bottom: 16px;
}
.banner-wrapper .details-box p span{
   color: var(--primary);
}
.banner-wrapper .details-box p:last-child{
  margin-bottom: 0;
}
.banner-wrapper .banner-image-box{
  border-radius: 16px;
  overflow: hidden;
}
.banner-wrapper .banner-image-box img , .banner-wrapper .banner-image-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.key-features{
  overflow: hidden;
}
.key-features-wrapper{
  display: flex;
  align-items: flex-start;
  gap: 70px;
}
.key-features-wrapper .key-content-wrapper{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:32px;
}
.key-features-wrapper .key-content-wrapper > *{
  margin-bottom: 0;
}
.key-features-wrapper .key-features-card-lists{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 24px;
  width: 100%;
  max-width: 455px;
  flex-shrink: 0;
}
.key-features-wrapper .key-feature-card{
  position: relative;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--primary) 0.11%, var(--black) 100.11%);
  padding: 20px;
  color: var(--white);
  z-index: 0;
  overflow: hidden;
}

.key-features-wrapper .key-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(90deg, var(--white) 0.11%, var(--primary) 100.11%);
  -webkit-mask: 
    linear-gradient(var(--white) 0 0) content-box, 
    linear-gradient(var(--white) 0 0);
    mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.key-feature-card .title{
  padding-right: 30px;
}
.bullet-points li{
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  line-height:1.5;
  font-weight: 400;
  margin-bottom: 5px;
}
.bullet-points li:last-child{
  margin-bottom: 0;
}
.bullet-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--white);
}
.bullet-points li b{
  font-weight: 600;
}
.key-features-image-box {
  position: relative;
  display: inline-block;
  margin-inline: auto;
  margin-top: 200px;
}
.key-features-image-box .main-img {
  position: absolute;
  left: 35px;
  top: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transform: skewX(-10deg);
  max-width: calc(100% - 120px);
  max-height: calc(100% - 85px);
}
.key-features-image-box::after{
  content: "";
  position: absolute;
  position: absolute;
  width: 188px;
  height: 148px;
  right: 40px;
  bottom: 10px;
  background: rgba(5, 177, 120, 0.52);
  filter: blur(53.5267px);
  right: 40px;
  bottom: 10px;
  z-index: -1;
}
.shadow-box{ 
  position: absolute;
  width: 220px;
  height: 440px;
  background: rgba(5, 177, 120, 0.35);
  filter: blur(80.2901px);
  transform: rotate(39.4deg);
  z-index: -1;
}
.shadow-box.shadow-box1{
  left: 0;
  top: 0;
}
.shadow-box.shadow-box2{
  bottom: -140px;
  right: -80px;
}
.our-strategy-wrapper .title-wrapper p{
  max-width: 890px;
  margin-inline: auto;
}
.our-strategy-card-lists{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px;
}
.our-strategy-card-lists .strategy-card{
  padding: 24px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), var(--black);
  box-shadow: 0px 8px 40px -20px rgba(255, 255, 255, 0.2), inset 1px 1px 0px rgba(255, 255, 255, 0.08), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.our-strategy-card-lists .strategy-card::before,
.our-strategy-card-lists .strategy-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  z-index:-1;
  transition: 0.3s ease-in-out;
}
.our-strategy-card-lists .strategy-card::before{
  padding: 1px;
  background: linear-gradient(90deg, #05B178 0%, #FFFFFF 100%);
  -webkit-mask: linear-gradient(var(--white) 0 0) content-box, linear-gradient(var(--white) 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.our-strategy-card-lists .strategy-card::after{
  background: linear-gradient(90deg, var(--primary) 0.11%, var(--black) 100.11%);
  opacity: 0;
  
}
.our-strategy-card-lists .strategy-card:hover::after{
  opacity: 0.7;
}
.our-strategy-card-lists .strategy-card:hover::before{
  opacity: 0;
}
.our-strategy-card-lists .strategy-card .icon-box{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  margin-bottom: 12px;
}
.our-strategy-card-lists .strategy-card .icon-box .icon{
  width: 24px;
  height: 24px;
}

.about-work-counter{
  padding: 110px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.counter-wrapper{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.counter-wrapper .counter-card{
  text-align: center;
}
.counter-wrapper .counter-card .title{
  margin-bottom: 10px;
}

.our-services .title-wrapper{
  max-width: 950px;
}
.our-services .title-wrapper p {
  max-width: calc(100% - 50px);
  margin-inline: auto;
}
.star-points-lists li{
  position: relative;
  text-align: start;
  padding-left:29px;
  margin-bottom: 8px;
}
.star-points-lists li:last-child{
  margin-bottom: 0;
}
.star-points-lists li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 21px;
  display: inline-block;
  background-color: var(--primary);
  mask-image: url('assets/images/icon-star.svg');
  -webkit-mask-image: url('assets/images/icon-star.svg');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.our-services .star-points-lists{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:wrap;
  gap:10px;
  width: 100%;
}
.our-services .star-points-lists li{
  margin-bottom:0;
  width: calc(33.33% - 10px);
}
.brands-lists-wrapper {
 overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.brands-lists-wrapper::before , .brands-lists-wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}
.brands-lists-wrapper::before{
  left: 0;
  background: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #000 78%);
}
.brands-lists-wrapper::after{
  right: 0;
  background: linear-gradient(270deg, #000 30%, hsla(0, 0%, 100%, 0));
}
.brands-lists-wrapper .brands-track {
  display: flex;
  width: max-content;
  animation: brandsMarquee 25s linear infinite;
}
.brands-lists-wrapper .brands-image-box {
  padding: 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  transition: 0.3s ease-in-out;
}
.brands-lists-wrapper .brands-image-box:hover{
  background-color: transparent;
}
.brands-lists-wrapper:hover .brands-track,
.brands-lists-wrapper .brands-image-box:hover ~ .brands-track {
  animation-play-state: paused;
}
.brands-lists-wrapper .brands-image-box img {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: luminosity;
}
@keyframes brandsMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cta-wrapper{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-wrapper > * {
  margin-bottom: 0;
}
.cta-wrapper p{
  max-width: 450px;
  line-height: 1.8;
}
.blogs-wrapper{
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
  position:relative;
}
.blogs-wrapper .blogs-grid{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 70px;
  width:50%;
}
.blogs-wrapper .blogs-card{
  position: relative;
  transition: 0.3s ease-in-out;
}
.blogs-wrapper .blogs-card .blog-image-box{
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.blogs-wrapper .blogs-card .blog-image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  aspect-ratio: 2 / 1;
}
.blogs-wrapper .blogs-card:hover .blog-image-box img{
  transform: scale(1.1);
}
.blogs-wrapper .blogs-card .blog-content{
  margin-top: 40px;
}
.blogs-wrapper .blogs-card .blog-content .title{
  margin-bottom: 40px;
  transition: 0.3s ease-in-out;
}
.blogs-wrapper .blogs-card:hover .blog-content .title{
  color: var(--primary);
}
.blogs-wrapper .blogs-card .blog-content p{
  display: none;
}
.blogs-wrapper .blogs-card .blog-content .text-btn{
  padding: 0;
  background-color: transparent;
  color: var(--primary);
  min-height: auto;
  border: none
}
.blogs-wrapper .blogs-card .blog-content .text-btn .icon{
  background-color: var(--primary);
  width: 22px;
  height: 22px;
}
/* .blogs-wrapper .blogs-card .blog-content .text-btn:hover ,
.blogs-wrapper .blogs-card:hover .blog-content .text-btn{
  color: var(--white);
} */
.blogs-wrapper .blogs-card .blog-content .text-btn:hover .icon ,
.blogs-wrapper .blogs-card:hover .blog-content .text-btn .icon{
  /* background-color: var(--white); */
  rotate: 45deg;
}
.blogs-wrapper .blogs-card.first-blog-card{
  width: 50%;
  margin-bottom: 70px;
}
.blogs-wrapper .blogs-card.first-blog-card .blog-image-box img{
  aspect-ratio: 4 / 3;
}
.blogs-wrapper .blogs-card.first-blog-card .blog-content{
  margin-top: 60px;
}
.blogs-wrapper .blogs-card.first-blog-card .blog-content .title{
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.blogs-wrapper .blogs-card.first-blog-card .blog-content p{
  display: block;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.blogs .blogs-lists{
  position: relative;
}
.blogs .browse-more-blogs{
  position: absolute;
  bottom: 0;
  width: calc(50% - 20px);
  left:0;
  display: flex;
  justify-content: flex-end;
}
.blogs .browse-more-blogs .wrap-btn{
  padding-inline: 30px;
  background-color: var(--black);
  display: inline-block;
}
.blogs .browse-more-blogs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width:52%;
  background: linear-gradient(270deg, #262626 0%, #05B178 25%, #262626 100%);
  z-index: -1;
}

.service-cards-wrapper{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: calc(100% - 184px);
  margin-inline: auto;
  margin-top: 21px;
  position: relative;
}
.service-cards-wrapper .services-center-image{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index:1;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 1px solid var(--primary);
}
.service-cards-wrapper .services-center-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-cards-wrapper .service-card{
  position: relative;
  border-radius: 10px;
  background: var(--black);
  z-index: 1;
  display: flex;
  min-height: 250px;
}
.service-cards-wrapper .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--primary) 0%, var(--white) 100%);
  -webkit-mask: 
     linear-gradient(var(--white) 0 0) content-box, 
     linear-gradient(var(--white) 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.service-card .service-layer ,
.service-card .outside-card-lists .square-box{
  border: 1px solid var(--white);
  background-color: var(--primary);
  min-width: 184px;
  display: inline-block;
  text-align:center;
  padding: 10px 12px;
  min-height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .service-layer{
  transform: translate(-50%, -50%);
  left: 50%;
  border-radius: 100px;
  position: absolute;
}
.service-card .outside-card-lists{
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  gap:8px;
  transform: translateX(-50%);
  padding-block: 22px;
}
.service-card .outside-card-lists .square-box{
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.service-card:nth-child(even) .outside-card-lists{
  transform: translateX(-50%);
  left: 100%;
  position: relative;
}
.service-card .inner-card-lists{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: absolute;
  max-width: 280px;
  width: 100%;
  left: 57%;
  top: 52%;
  transform: translate(-50%,-50%);
}
.service-card:nth-child(even) .inner-card-lists{
  left: 43%;
}
.service-card .inner-card-lists .rounded-inner-card:last-child{
  margin-inline: auto;
}
.service-card .inner-card-lists .rounded-inner-card{
  width: 110px;
  height: 110px;
  border: 1px solid var(--white);
  background-color: var(--primary);
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:8px;
  text-align: center;
  padding: 15px;
  position: relative;
}
.service-card .inner-card-lists .rounded-inner-card ,
.service-card .outside-card-lists .square-box ,
.service-card .service-layer{
  font-size: 14px;
  font-weight: 500;
  line-height:normal;
}
.service-card .inner-card-lists .rounded-inner-card img,
.service-card .outside-card-lists .square-box img,
.service-card .service-layer img{
  width: 24px;
  height: 24px;
  object-fit:contain;
}
.service-card .inner-card-lists .rounded-inner-card .dashed-line{
  width: 100px;
  position: absolute;
  height: 1px;
  border-top: 1px dashed var(--white);
}
.service-card .inner-card-lists .rounded-inner-card .dashed-line::before,
.service-card .inner-card-lists .rounded-inner-card .dashed-line::after {
  content: "";
  position: absolute;
  top: -4px;
  border: 4px solid transparent;
}
.service-card .inner-card-lists .rounded-inner-card .dashed-line::before {
  left: -8px;
  border-right-color: var(--white);
}

.service-card .inner-card-lists .rounded-inner-card .dashed-line::after {
  right: -8px;
  border-left-color: var(--white);
}
.service-card .inner-card-lists .rounded-inner-card:first-child .dashed-line{
  width: 60px;
  left: calc(100% + 1px);
  top: 30%;
}
.service-card .inner-card-lists .rounded-inner-card:nth-child(2) .dashed-line{
  width: 35px;
  left: 0px;
  top: calc(100% + 14px);
  rotate: 120deg;
}
.service-card .inner-card-lists .rounded-inner-card:nth-child(3) .dashed-line{
  width: 35px;
  left: -7px;
  top: -11px;
  rotate: 50deg;
}
/* Coscale Page CSS */
.what-makes-different .title-wrapper{
  margin-bottom: 32px;
}
.coscale-makes-diferent-lists{
  /* border:1px solid var(--grey39); */
  margin-bottom: 32px;
}
.coscale-makes-diferent-lists .makes-diferent-card{
  border:1px solid var(--grey39);
  border-bottom: none;
  padding: 20px;
  text-align: center;
  min-height: 82px;
  display:flex;
  align-items: center;
  justify-content: center;
}
.coscale-makes-diferent-lists .makes-diferent-card:last-child{
  border-bottom: 1px solid var(--grey39);
}
.what-makes-different p{
  text-align: center;
}
.coscale-usp .strategy-card{
  text-align: center;
  padding: 24px 20px;
}
.coscale-for-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap:20px;
}
.coscale-for-wrapper .coscale-for-lists{
  max-width: 460px;
  flex-shrink: 0;
}
.coscale-for-wrapper .coscale-for-lists .star-points-lists{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap:32px;
}
.coscale-for-wrapper .coscale-for-lists .star-points-lists li{
  margin-bottom: 0;
}
.coscale-for-wrapper .title-wrapper{
  align-items:flex-start;
  margin-left: unset;
}
.how-it-works-lists{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap:24px;
  counter-reset: number;
}
.how-it-works-lists .how-it-works-card{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-it-works-card .number-box{
  position: relative;
  z-index: 0;
  flex-shrink: 0;
  width: 100%;
}
.how-it-works-card .number-box::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 76px);
  height: 0;
  border: 1px dashed var(--primary);
  z-index: -1;
}
.how-it-works-card .number-box .number{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works-card .number-box .number::before{
  counter-increment: number;
  content: "0" counter(number);
  font-weight: 600;
}
.how-it-works-card .content-card{
  width: 100%;
  height: 100%;
  background-color: var(--grey18);
  padding:32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.how-it-works-card .content-card > *{
  margin-bottom: 0;
}
.how-it-works-card .content-card p:last-child{
  font-size: 14px;
  color:var(--grey75);
}
.coscale-details-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 80px;
}
.coscale-details-wrapper .cosclae-img-box {
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.coscale-details-wrapper .cosclae-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coscale-details-wrapper .coscale-content-wrap .title{
  margin-bottom: 30px;
}
.coscale-details-wrapper .coscale-content-wrap .title span{
  display: inline;
}
.our-expert-wrapper{
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.our-expert-wrapper .expert-content{
  position: relative;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top right;
}
.our-expert-wrapper .expert-content .title{
  margin-bottom: 32px;
}
.our-expert-wrapper .expert-image-card{
  width:100%;
  max-width: 262px;
  flex-shrink: 0;
}
.expert-image-card{
  overflow:hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.expert-image-card .expert-image{
  width: 100%;
  transition: 0.4s ease-in-out;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  overflow: hidden;
}
.expert-image-card .expert-image img{
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: 0.4s ease-in-out;
}
.expert-image-card .image-card-content{
  background-color: var(--grey18);
  padding: 16px 24px;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in-out;
}
.expert-image-card:hover .image-card-content{
  background-color: var(--primary);
}
.expert-image-card .image-card-content .name{
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.expert-image-card .image-card-content p{
  line-height: 1.3;
  font-weight: 600;
  color: var(--grey75);
  transition: 0.4s ease-in-out;
}
.expert-image-card:hover .image-card-content p{
  color: var(--white);
}
.expert-image-card:hover .expert-image img{
  transform: scale(1.15);
}
.faqs-wrapper .accordion-item{
  border-bottom: 1px solid var(--grey39);
}
.accordion-item .accordion-title{
  padding-block: 24px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.accordion-item .accordion-title .title{
  margin-bottom: 0;
  transition: 0.3s ease-in-out;
}
.accordion-item.active .accordion-title .title{
  color: var(--primary);
}
.accordion-item .accordion-title .icon-arrow{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid var(--grey39);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}
.accordion-item .accordion-title .icon-arrow .icon{
  width: 15px;
  height: 15px;
  background-color: var(--grey75);
  transition: 0.3s ease-in-out;
}
.accordion-item.active .accordion-title .icon-arrow{
  background-color: var(--primary);
  border-color:var(--primary);
}
.accordion-item.active .accordion-title .icon-arrow .icon{
  rotate: 180deg;
  background-color: var(--black);
}
.accordion-item .accordion-content{
  max-width: calc(100% - 80px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion-item.active .accordion-content{
  margin-bottom: 24px;
}
.accordion-item .accordion-content p{
  margin-bottom: 10px;
}
.accordion-item .accordion-content p:last-child{
  margin-bottom: 0;
}
/* Blog Page */
.blogs-lists-wrapper{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px 24px;
}
.blogs-lists-wrapper .main-blog-card{
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  position: relative;
  transition: 0.3s ease-in-out;
}
.blogs-lists-wrapper .main-blog-card:hover{
  border-color: var(--primary);
}
.blogs-lists-wrapper .main-blog-card .blog-image-card{
  border-radius: 6px;
  overflow: hidden;
  width:100%;
  height: 227px;
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}
.blogs-lists-wrapper .main-blog-card .blog-image-card img{
  width:100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.blogs-lists-wrapper .main-blog-card:hover .blog-image-card img{
  transform: scale(1.1);
}
.blogs-lists-wrapper .blog-card-content{
  padding: 32px 12px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.blogs-lists-wrapper .blog-details{
  margin-bottom: 28px;
}
.blogs-lists-wrapper .blog-details .title{
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.blogs-lists-wrapper .main-blog-card:hover .title{
  color: var(--primary);
}
.blogs-lists-wrapper .blog-details p{
  font-size: 14px;
  letter-spacing: -0.08px;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.blog-user-wrapper{
  display: flex;
  align-items: center;
  gap:16px;
}
.blog-user-wrapper .user-img-box{
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
}
.blog-user-wrapper .user-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-user-wrapper .user-name{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.blog-user-wrapper .user-details{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.blog-user-wrapper .user-details li{
  font-size: 14px;
  letter-spacing: -0.08px;
  padding-right: 14px;
  margin-right: 8px;
  position: relative;
}
.blog-user-wrapper .user-details li::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--white);
  border-radius: 100%;
}
.blog-user-wrapper .user-details li:last-child{
  padding-right: 0;
  margin-right: 0;
}
.blog-user-wrapper .user-details li:last-child::after{
  display: none;
}
.blogs-pagination{
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper{
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 16px;
}
.pagination-wrapper li{
  display: flex;
}
.pagination-wrapper li .page-numbers{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  flex-shrink:0;
}
.pagination-wrapper li:hover .page-numbers ,
.pagination-wrapper li.active .page-numbers{
  background-color: var(--primary);
  border-color: var(--primary);
}
.pagination-wrapper li.next-btn .page-numbers,
.pagination-wrapper li.prev-btn .page-numbers{
  min-width: 105px;
  width: auto;
}

/* Blog Details CSS */
.blogs-details-wrapper{
  display: flex;
  align-items: flex-start;
  gap:50px 35px;
}
.blogs-details-wrapper .blogs-detail-card{
  width:100%;
}
.blogs-details-wrapper .other-blogs{
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  z-index: 1;
}
.blogs-details-wrapper .other-blogs .title-wrapper{
  align-items: flex-start;
  margin-bottom: 40px;
}
.blogs-details-wrapper .blogs-detail-card .blog-thumbnail-image{
  width: 100%;
  border-radius: 16px;
  max-height: 380px;
  overflow: hidden;
  margin-bottom: 35px;
} 
.blogs-details-wrapper .blogs-detail-card .blog-thumbnail-image img{
  width:100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}
.blogs-details-wrapper .blogs-details .blog-main-title{
  margin-bottom: 20px;
  letter-spacing: 0;
}
.blogs-details-wrapper .blogs-details .excerpt-description{
  margin-top: 35px;
}
.blogs-details-wrapper .blogs-details .excerpt-description p{
  font-size: 18px;
}
.blogs-details-wrapper .blogs-details .blog-user-wrapper .blog-user-content .user-name{
  margin-bottom: 4px;
}
.blogs-details-wrapper .details hr{
  margin-top: 35px;
  padding-top:35px;
  margin-bottom: 0;
  border: none;
  border-top: 1px solid rgb(255 255 255 / 40%);
}
.blogs-details-wrapper .details p + ul,
.blogs-details-wrapper .details p + ol {
  margin-top: 35px;
}
.blogs-details-wrapper .details .table-title{
  font-family: 'Inter';
  font-size: 20px;
  line-height:normal;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.blogs-details-wrapper .details :is(h1, h2, h3){
  font-size: 32px;
}
.blogs-details-wrapper .details :is( h4, h5, h6){
  font-size: 22px;
}
.blogs-details-wrapper .details :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 30px;
  line-height: normal;
  letter-spacing: 0.5px;
}

.blogs-details-wrapper .details :is(ul , ol) li ,
.blogs-details-wrapper .details p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.blogs-details-wrapper .details ol li > ul,
.blogs-details-wrapper .details ul li > ol {
  margin-top: 14px;
}
.blogs-details-wrapper .details :is(ul , ol) li{
  margin-bottom: 14px;
  padding-left: 16px;
  position:relative;
}
.blogs-details-wrapper .details :is(ul , ol) li:last-child{
  margin-bottom: 0px;
}
.blogs-details-wrapper .details :is(ul , ol) li::before{
  content: "";
  position: absolute;
  left: 0;
}
.blogs-details-wrapper .details ul > li::before{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--white);
  top: 7px;
}
.blogs-details-wrapper .details ol{
  counter-reset: Numbers;
}
.blogs-details-wrapper .details ol > li{
  padding-left: 22px;
}
.blogs-details-wrapper .details ol > li::before{
  counter-increment: Numbers;
  content: counter(Numbers) ". ";
}
.blogs-details-wrapper .details ol.numbers-with-bg > li{
  padding-left: 50px;
}
.blogs-details-wrapper .details ol.numbers-with-bg > li::before{
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #05B1784D;
  display:flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}
.blogs-details-wrapper .details ol.numbers-with-bg > li::before{
  content: counter(Numbers);
}
.blogs-details-wrapper .details ol.numbers-with-bg > li ,
.blogs-details-wrapper .details ol.numbers-with-bg > ul li{
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.blogs-details-wrapper .details ol.numbers-with-bg > ul{
  padding-left: 70px;
}
.blogs-details-wrapper .details ol.numbers-with-bg > ul li::before{
  top: 12px;
}
.blogs-details-wrapper .details .full-width-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.other-blogs-lists{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 40px;
}
.other-blogs-lists .other-blog-card{
  display: flex;
  align-items: stretch;
  gap: 20px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.other-blogs-lists .other-blog-card .image-box{
  width: 130px;
  height: 120px;
  border-radius: 7px;
  flex-shrink: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.other-blogs-lists .other-blog-card .image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.other-blogs-lists .other-blog-card:hover .image-box img{
  transform: scale(1.1);
}
.other-blogs-lists .other-blog-card .date-badge{
  background: #05B1784D;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 400;
  line-height:normal;
  border-radius: 3px;
  margin-bottom: 8px;
}
.other-blogs-lists .other-blog-card .other-blog-title{
  margin-bottom: 20px;
  transition: 0.3s ease-in-out;
}
.other-blogs-lists .other-blog-card:hover .other-blog-title{
  color: var(--primary);
}
.other-blogs-lists .other-blog-card .auther-wrapper{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content{
  display: flex;
  align-items: center;
  gap: 8px;
  position:relative;
  padding-left: 10px;
  margin-left: 10px;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content:first-child{
  padding-left: 0;
  margin-left: 0;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content::before{
  content: "";
  position: absolute;
  left: 0;
  height:90%;
  width:1px;
  background-color: var(--white);
  top: 50%;
  transform: translateY(-50%);

}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content:first-child::before{
  display: none;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content span{
  font-size: 12px;
  font-weight: 400;
  line-height:normal;
  text-transform: capitalize;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content .auther-img{
  width: 18px;
  height: 18px;
  border-radius: 100%;
  object-fit: cover;
}
.other-blogs-lists .other-blog-card .auther-wrapper .wrap-content .icon{
  flex-shrink: 0;
}

/* Contact Page */
.contact-details-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.contact-details-wrapper .image-box{
  width: 66%;
  border-radius: 16px;
  overflow:hidden;
}
.contact-info-wrapper{
  width: 34%;
}
.contact-info-wrapper > .title{
  margin-bottom: 40px;
}
.contact-info-wrapper .contact-wrap{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-wrap .info .inner-title{
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-family: 'inter';
  text-transform: uppercase;
  color: var(--grey75);
  margin-bottom: 24px;
}
.contact-wrap .info li:not(:last-child){
  margin-bottom: 5px;
}
.contact-wrap .info .our-info-lists.address li{
  max-width: 230px;
}
.contact-wrap .info p{
  position: relative;
}
.contact-wrap .info .our-info-lists p ,
.contact-wrap .info .our-info-lists a{
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.contact-wrap .info .our-info-lists p .redirect-link{
  font-size: 0;
}
.contact-wrap .info .our-info-lists p:has(a):hover ,
.contact-wrap .info .our-info-lists a:hover {
  color: var(--primary);
}
.contact-wrap .info .social-media{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-wrap .info .social-media li{
  display: flex;
  margin-bottom: 0 !important;
}
.contact-wrap .info .social-media li a{
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrap .info .social-media li a span{
  background-color: var(--black);
  width: 25px;
  height: 25px;
}
.contact-wrap .info .social-media li a:hover{
  background-color: var(--primary);
}
.contact-wrap .info .social-media li a:hover span{
  background-color: var(--white);
}
.input-wrapper{
  position: relative;
}
.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
  border: 1px solid var(--grey39);
  border-radius: 90px;
  outline: none;
  background-color: transparent;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus,
.input-wrapper select:focus{
  border-color: var(--white);
}
.input-wrapper textarea{
  border-radius: 24px;
  height: 184px !important;
  resize:none;
}
.select-menu{
  cursor: pointer;
  position: relative;
}
.select-menu select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.select-menu::after {
  content: "▼";
  position: absolute;
  right: 20px;
  pointer-events: none;
  color: var(--white);
  top: 20px;
  font-size: 12px;
}
.select-menu select option{
  font-size: 18px;
  color: var(--black);
  cursor: pointer;
}
.select-menu select option:hover,
.select-menu select option:focus{
  background-color: var(--primary);
  color:var(--white);
}
.get-in-touch-wrapper form{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}
.get-in-touch-wrapper form .common-btn{
  height: 56px;
  width: 100%;
  font-weight: 500;
}
.get-in-touch-wrapper form .common-btn br{
  display: none;
}
.get-in-touch-wrapper form .common-btn .wpcf7-spinner{
  display: none;
}
.get-in-touch-wrapper form.submitting .common-btn .wpcf7-spinner{
  display: block;
}
.get-in-touch-wrapper form.submitting .common-btn .icon,
.get-in-touch-wrapper form.submitting .common-btn .text {
  display: none;
}
.input-wrapper .wpcf7-not-valid-tip{
  position: absolute;
  top: calc(100% + 5px);
  left: 24px;
  font-size: 14px;
  line-height: 1;
  color: #dc3232;
}
.input-wrapper *{
  width:100%;
}
.get-in-touch-wrapper form p{
  margin-bottom: 0;
}
.get-in-touch-wrapper .wpcf7 form .wpcf7-response-output{
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: calc(100% - 30px);
}
.get-in-touch-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.get-in-touch-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.get-in-touch-wrapper .wpcf7 form.payment-required .wpcf7-response-output{
  border-color:#dc3232;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { transform: scale(1.1); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Fade up base */
.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }
.delay-9 { animation-delay: 1.8s; }
.delay-10 { animation-delay: 2s; }

/* Zoom effect for blog thumbnail */
.zoom-in img {
  opacity: 0;
  animation: zoomIn 1.2s ease forwards;
  animation-delay: 0.1s;
}

.our-team-wrapper{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.our-team-wrapper .team-details{
  grid-column: 1 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top right;
}
.our-team-wrapper .team-details * {
  margin-bottom: 0;
}
.team-member-details-wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.team-member-details-wrapper:nth-child(even){
  flex-direction: row-reverse;
}
.team-member-details-wrapper .member-content .title{
  margin-bottom: 32px;
  color: var(--primary);
}
.team-member-details-wrapper .expert-image-card{
  width: 100%;
  max-width: 262px;
  flex-shrink: 0;
}