@font-face {
  font-family: 'Euclid Circular A';
  src: url('../fonts/EuclidCircularA-Medium.eot');
  src: url('../fonts/EuclidCircularA-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/EuclidCircularA-Medium.woff2') format('woff2'),
    url('../fonts/EuclidCircularA-Medium.woff') format('woff'),
    url('../fonts/EuclidCircularA-Medium.ttf') format('truetype'),
    url('../fonts/EuclidCircularA-Medium.svg#EuclidCircularA-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Euclid Circular A';
  src: url('../fonts/EuclidCircularA-Regular.eot');
  src: url('../fonts/EuclidCircularA-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/EuclidCircularA-Regular.woff2') format('woff2'),
    url('../fonts/EuclidCircularA-Regular.woff') format('woff'),
    url('../fonts/EuclidCircularA-Regular.ttf') format('truetype'),
    url('../fonts/EuclidCircularA-Regular.svg#EuclidCircularA-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sharp Grotesk Medium 23';
  src: url('../fonts/SharpGroteskMedium23-Regular.eot');
  src: url('../fonts/SharpGroteskMedium23-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SharpGroteskMedium23-Regular.woff2') format('woff2'),
    url('../fonts/SharpGroteskMedium23-Regular.woff') format('woff'),
    url('../fonts/SharpGroteskMedium23-Regular.ttf') format('truetype'),
    url('../fonts/SharpGroteskMedium23-Regular.svg#SharpGroteskMedium23-Regular') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*===========================
  VARIABLES
============================*/
:root {
  --baseFont: 'Euclid Circular A';
  --titleFont:'Sharp Grotesk Medium 23';
  --primaryLight: #88B5F4;
  --primaryDark: #3619EF;
  --primaryDarkHover: #4a2ffa;
  --white: #fff;
  --black: #000;
  --dark: #0E0D12;
  --baseText: #474751;
  --lightText: #B2B2BF;
  --lightPurple: #FFEFF5;
  --darkgray: #35333D;
  --darkBg: #0E0D12;
  --lightBg1: #FFFDD7;
  --lightBg2: #F8F4F0;
  --lightBg3: #FFEFF5;
  --lightBg4: #EAF5ED;
  --lightBg5: #E8E8EC;
}

/*===========================
  RESET & GLOBAL STYLES
============================*/
/* Reset default browser styles */

body {
  font-family: var(--baseFont);
  color: var(--baseText);
  font-size: 20px;
  font-weight: normal;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
}
/* a:hover {
  color: var(--primaryColor);
} */
img, svg {
  max-width: 100%;
}
a,
.btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
h1,h2,h3,h4,h5,h6,p {
  line-height: 1.4;
}

/*===========================
  COMPONENTS
============================*/
/* Buttons */
.btn {
	font-size: 18px;
	line-height: normal;
	padding: 15px 25px;
	border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
.btnPrimary {
  background-color: var(--primaryDark);
  color: var(--white);
}
.btnPrimary:hover {
  background-color: var(--primaryDarkHover);
  color: var(--white);
}
.btnDark {
  background-color: var(--darkgray);
  color: var(--white);
}
.btnDark:hover {
  background-color: var(--primaryDark);
  color: var(--white);
}

/* Buttons */

/* custom style */

.pLight {
  color: var(--primaryLight);
}
.pDark {
  color: var(--primaryDark);
}
.darkText {
  color: var(--dark);
}
.blackText {
  color: var(--black);
}
.lightText {
  color: var(--lightText);
}
.darkBg {
  background-color: var(--darkBg);
}
.lightBg1 {
  background-color: var(--lightBg1);
}
.lightBg2 {
  background-color: var(--lightBg2);
}
.lightBg3 {
  background-color: var(--lightBg3);
}
.lightBg4 {
  background-color: var(--lightBg4);
}
.xlTitle {
  font-size: 42px;
}
.lgTitle {
  font-size: 35px;
}
.mdTitle {
  font-size: 32px;
}
.smTitle {
  font-size: 24px;
}
.medium {
  font-weight: 500;
}
.titleFont {
  font-family: var(--titleFont);
}
.spaceSectionMd {
  padding: 100px 0;
}
.spaceSectionlg {
  padding: 150px 0;
}
.subTitle {
  letter-spacing: 2px;
}

/*===========================
  HEADER STYLE
============================*/

/* menu toggle */

.menu-btn {
  position: relative;
  z-index: 99;
  display: flex;
  height: 40px;
  width: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: flex-end;
  border-radius: 12px;
  padding: 5px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.menu-btn div {
  position: absolute;
  height: 3px;
  border-radius: 4px;
  background-color: var(--white);
  transition-property: transform opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-btn div:nth-child(1) {
  top: 10px;
  width: 30px;
}
.menu-btn div:nth-child(2) {
  top: 19px;
  width: 25px;
}
.menu-btn div:nth-child(3) {
  top: 28px;
  width: 20px;
}
.actNavMenu .menu-btn div {
  width: 30px;
}
.actNavMenu .menu-btn div:nth-child(1) {
  transform: translate(2px, 9px) rotate(45deg);
}
.actNavMenu .menu-btn div:nth-child(2) {
  opacity: 0;
}
.actNavMenu .menu-btn div:nth-child(3) {
  transform: translate(2px, -9px) rotate(-45deg);
}
/*  /menu toggle */

.navOverlay {
  visibility: hidden;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.headerSection {
	padding: 40px 20px;
	background-color: var(--black);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}
.logoCol img {
  width: auto;
  height: 30px;
}
.siteMenu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}
.siteMenu a, .navItem {
  color: var(--white);
}

/* Header */

/* Banner */

.bannerSection {
  padding: 250px 0 60px;
}
.bannerSnapx {
  max-width: 960px;
}
.bannerSnapx>h1 {
  padding: 20px 0 15px;
}
.bannerText {
  max-width: 685px;
}
.bannerText>p {
  margin-bottom: 0;
}
.bannerBtn a+a {
  margin-left: 20px;
}
.bannerSnapx>h1>span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -10px;
}
.bannerSnapx>h1>span>img {
  display: block;
}

/***/

.techInner {
  padding: 48px 36px;
  border-radius: 20px;
  background-color: var(--white);
}
.techLeftCol {
  padding-right: 50px;
}
.techRightCol {
  width: 466px;
}
.techLeftCol>h2 {
  margin-bottom: 15px;
}
.platformSec {
  padding: 45px 20px;
  margin-top: 40px;
}
.platformSec>h3 {
  margin-bottom: 20px;
}
.platformSec>p {
  margin-bottom: 0;
}
.techRightCol>ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.techRightCol>ul>li {
  padding: 0 0 36px 30px;
  position: relative;
  color: var(--black);
}
.techRightCol>ul>li .listIcon {
  position: absolute;
  left: 0;
  top: 0;
}
.techRightCol>ul>li::before, .techRightCol>ul>li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 20px;
}
.techRightCol>ul>li::before {
  bottom: 10px;
  background-color: var(--lightBg3);
  max-width: 110px;
}
.techRightCol>ul>li::after {
  bottom: 0;
  background-color: var(--lightBg5);
  max-width: 254px;
}
.aboutLeftCol {
  max-width: 810px;
}
.aboutCardSection {
  padding-top: 60px;
}
.cStyle {
  border-radius: 10px;
  padding: 20px 30px;
  height: 100%;
}
.cStyleIcon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}
.cStyleIcon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cStyle>h4 {
  font-size: 32px;
  color: var(--dark);
}
.cStyle>p {
  margin: 0;
  font-size: 20px;
}
.servicesSection .titleCol {
  max-width: 860px;
  margin: 0 auto;
}
.sCardText {
  width: 436px;
}
.servicesInner {
  max-width: 1196px;
  margin: 0 auto;
  padding-top: 60px;
}
.sCardImg {
  padding-right: 50px;
}
.sCardImg.sCardImgRight {
  padding-right: 0;
  padding-left: 50px;
}
.sCardImg>img {
  display: block;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
.serviceCol+.serviceCol {
  padding-top: 100px;
}
.sCardText>h3 {
  font-size: 32px;
  margin-bottom: 24px;
}
.wCardSection {
  padding-top: 70px;
}
.workInnerCol .titleCol {
  max-width: 950px;
}
.titleCol>h2 {
  margin: 25px 0 20px;
}
.wCardStyle {
  padding: 40px 45px 26px 26px;
  min-height: 500px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
}
.wCenterCard {
  margin-top: 100px;
}
.cText {
  width: 40px;
  height: 40px;
  color: var(--white);
  background-color: var(--darkBg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.wCardContent h3 {
  margin-top: 15px;
  font-size: 24px;
}
.wCardContent p {
  font-size: 16px;
  margin: 0;
  color: var(--darkgray);
}
.spaceSectionlg.workSection {
  padding-bottom: 360px;
}
.countSection {
  margin-top: -350px;
}
.cspCol {
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  padding: 50px;
}
.cpIcon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
}
.cpIcon>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cspColStyle>h4 {
  font-size: 24px;
}
.cspColStyle h2 {
  line-height: 1;
  margin-bottom: 0;
}
.swiper1Title {
  padding-right: 120px;
  padding-top: 150px;
}
.swiper1Col {
  padding-top: 50px;
  position: relative;
}
.listIcon {
  width: 24px;
  text-align: center;
  margin-right: 5px;
}
.tCardBody>p {
  margin: 0;
  font-size: 16px;
}
.testimonialCard {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
}
.slider1 .swiper-slide {
  height: auto;
}
.tDetail {
  padding-left: 16px;
}
.testimonialCard .ratingCol {
  padding-bottom: 15px;
}
.cardStyle05 {
  padding: 50px;
  background-color: var(--lightBg3);
  border-radius: 10px;
}
.tDetail>h3 {
  line-height: 1;
  font-size: 24px;
  font-weight: 500;
}
.tCardBody {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.tDetail>span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}
.tUserImg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.tUserImg>img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.slider1Nav {
  position: absolute;
  right: 60px;
  top: -55px;
}
.slider1Nav .swiper-button-next:after,
.slider1Nav .swiper-button-prev:after {
  display: none;
}
.slider1Nav .swiper-button-next.s1Next,
.slider1Nav .swiper-button-prev.s1Prev {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--lightPurple);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.slider1Nav .swiper-button-next.s1Next svg,
.slider1Nav .swiper-button-prev.s1Prev svg {
  color: var(--dark);
}
.slider1Nav .swiper-button-next.s1Next.swiper-button-disabled,
.slider1Nav .swiper-button-prev.s1Prev.swiper-button-disabled {
  opacity: 1;
  background-color: #fff;
  border-color: #fff;
}
.slider1Nav .swiper-button-next.s1Next.swiper-button-disabled svg,
.slider1Nav .swiper-button-prev.s1Prev.swiper-button-disabled svg{
  opacity: 0.4;
}
.cs05Content {
  max-width: 745px;
}
.cs05Content>p:last-child {
  margin-bottom: 0;
}
.footerSection {
  padding: 100px 0 60px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  color: var(--lightPurple);
}
.footerLogo {
  padding-bottom: 80px;
}
.footerLogo img {
  width: 100%;
  max-width: 436px;
}
.footerTitle {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}
.footerLinks>li+li,
.iconListStyle>li+li {
  margin-top: 15px;
}
.footerLinks a:hover {
  opacity: 0.5;
}
.copyrightCol {
  text-align: center;
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 239, 245, 0.3);
}


/*********************************
***** MEDIA QUARY START ****
**********************************/


@media (max-width:1399px) {
  body {
    font-size: 18px;
  }
  .headerSection {
    padding: 30px 15px;
  }
  .xlTitle {
    font-size: 36px;
  }
  .lgTitle {
    font-size: 28px;
  }
  .mdTitle {
    font-size: 26px;
  }
  .smTitle {
    font-size: 20px;
  }
  .cStyle>h4 {
    font-size: 26px;
  }
  .cStyle>p {
    font-size: 18px;
  }
  .spaceSectionlg {
    padding: 130px 0;
  }
  .bannerSnapx>h1>span>img {
    max-width: 45px;
  }
  .bannerSection {
    padding: 220px 0 60px;
  }
  .platformSec {
    padding: 30px 20px;
  }
  .aboutLeftCol {
    max-width: 680px;
  }
}
@media (max-width:1199px) {
  body {
    font-size: 16px;
  }
  .bannerSnapx {
    max-width: 780px;
  }
  .xlTitle {
    font-size: 32px;
  }
  .lgTitle {
    font-size: 24px;
  }
  .smTitle {
    font-size: 18px;
  }
  .btn {
    font-size: 16px;
  }
  .siteMenu>ul {
    column-gap: 30px;
  }
  .bannerSection {
    padding: 180px 0 60px;
  }
  .bannerBtn a+a {
    margin-left: 15px;
  }
  .bannerText {
    max-width: 480px;
  }
  .bannerSnapx>h1>span>img {
    max-width: 40px;
  }
  .techInner {
    padding: 40px 30px;
  }
  .techLeftCol {
    padding-right: 30px;
  }
  .techRightCol {
    width: 380px;
  }
  .techRightCol>ul {
    gap: 20px;
  }
  .techRightCol>ul>li {
    padding: 0 0 30px 30px;
  }
  .serviceCol+.serviceCol {
    padding-top: 80px;
  }
  .sCardText {
    width: 400px;
  }
  .sCardImg {
    padding-right: 20px;
  }
  .sCardText>h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .aboutLeftCol {
    max-width: 620px;
  }
  .aboutCardSection {
    padding-top: 40px;
  }
  .wCardStyle {
    padding: 20px;
    min-height: 440px;
  }
  .cspCol {
    padding: 40px;
  }
  .cspColStyle>h4 {
    font-size: 20px;
  }
  .cpIcon {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
  }
  .countSection {
    margin-top: -320px;
  }
  .spaceSectionlg.workSection {
    padding-bottom: 300px;
  }
  .swiper1Title {
    padding-top: 120px;
  }
  .testimonialCard {
    padding: 20px;
  }
  .footerLogo {
    padding-bottom: 50px;
  }
  .footerLogo img {
    max-width: 280px;
  }
}
@media (max-width:991px) {
  .headerSection {
    padding: 20px 15px;
  }
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 99;
    width: 270px;
    padding: 20px;
    background-color: var(--black);
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out 0s;
  }
  .actNavMenu .menuColMain {
    transform: translateX(0);
  }
  .navOverlay {
    position: fixed;
    inset: 0;
    height: 100vh;
    z-index: 98;
    background-color: rgba(0,0,0,0.2);
  }
  .actNavMenu .navOverlay {
    visibility: visible;
    opacity: 1;
  }  
  .actNavMenu {
    overflow: hidden;
  }
  .darkText {
    color: var(--dark);
  }
  .wCardStyle {
    min-height: 380px;
  }
  .wCardContent p {
    font-size: 14px;
  }
  .wCardContent h3 {
    font-size: 20px;
  }
  .cspColStyle {
    margin-bottom: 40px;
  }
  .siteMenu > ul {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
  .siteMenu {
    padding-bottom: 20px;
  }
  .bannerInner {
    text-align: center;
  }
  .bannerText {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  .bannerBtn a+a {
    margin-left: 10px;
  }
  .bannerSnapx>h1>span>img {
    max-width: 35px;
  }
  .bannerSection {
    padding: 180px 0 0;
  }
  .techLeftCol {
    padding-right: 0;
  }
  .techRightCol {
    width: 100%;
    margin-top: 30px;
  }
  .spaceSectionlg {
    padding: 95px 0;
  }
  .aboutLeftCol {
    max-width: 100%;
    text-align: center;
  }
  .aboutBtn {
    text-align: center;
  }
  .cStyle {
    padding: 20px;
  }
  .cStyle>p {
    font-size: 14px;
  }
  .cStyle>h4 {
    font-size: 20px;
  }
  .cStyleIcon {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
  }
  .servicesInner {
    max-width: 100%;
    padding-top: 30px;
  }
  .sCardImg {
    padding-right: 0;
  }
  .sCardText {
    width: 100%;
    padding-top: 30px;
  }
  .serviceCol {
    text-align: center;
  }
  .techLeftCol {
    text-align: center;
  }
  .platformSec>h3 {
    margin-bottom: 15px;
  }
  .wCardSection {
    padding-top: 50px;
  }
  .serviceCol+.serviceCol {
    padding-top: 60px;
  }
  .sCardImg.sCardImgRight {
    padding-left: 0;
  }
  .footerSection {
    padding: 80px 0 30px;
  }
  .copyrightCol {
    padding-top: 30px;
    margin-top: 40px;
  }
  .spaceSectionMd {
    padding: 80px 0;
  }
  .workInnerCol .titleCol {
    max-width: 100%;
    text-align: center;
  }
  .titleCol>h2 {
    margin: 15px 0;
  }
  .footerTitle {
    font-size: 20px;
  }
}
@media (max-width:767px) {
  .headerSection {
    padding: 20px 0;
  }
  .spaceSectionMd {
    padding: 60px 0;
  }
  .bannerSection {
    padding: 140px 0 0;
  }
  .bannerSnapx>h1 {
    padding: 10px 0;
  }
  .smTitle {
    font-size: 14px;
  }
  .lgTitle {
    font-size: 20px;
  }
  .subTitle {
    letter-spacing: 1px;
  }
  .xlTitle {
    font-size: 26px;
  }
  .bannerSnapx>h1>span>img {
    max-width: 30px;
  }
  .tDetail {
    padding-left: 12px;
  }
  .tDetail>h3 {
    font-size: 18px;
  }
  .platformSec {
    padding: 20px 15px;
    margin-top: 20px;
  }
  .techInner {
    padding: 30px 20px;
  }
  .spaceSectionlg {
    padding: 80px 0;
  }
  .sCardText {
    padding-top: 20px;
  }
  .sCardText>h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .serviceCol+.serviceCol {
    padding-top: 40px;
  }
  .cardStyle05 {
    padding: 30px;
  }
  .cs05Content {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .cStyle {
    margin-bottom: 15px;
    height: auto;
    text-align: center;
  }
  .cStyleIcon {
    margin: 0 auto 15px;
  }
  .tCardBody {
    margin-top: 10px;
    padding-top: 10px;
  }
  .swiper1Col {
    padding-top: 65px;
  }
  .slider1Nav {
    right: 60px;
    top: 30px;
  }
  .slider1Nav .swiper-button-next.s1Next,
  .slider1Nav .swiper-button-prev.s1Prev {
    width: 34px;
    height: 34px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 8px;
  }
  .testimonialCard .ratingCol {
    padding-bottom: 10px;
  }
  .tUserImg {
    width: 46px;
    height: 46px;
  }
  .tCardBody>p {
    font-size: 14px;
  }
  .wCenterCard {
    margin-top: 0;
  }
  .wCardStyle {
    min-height: 280px;
    margin-bottom: 15px;
  }
  .wCardSection {
    padding-top: 30px;
  }
  .swiper1Title {
    padding-top: 80px;
    padding-right: 0;
  }
  .footerLinks>li+li,
  .iconListStyle>li+li {
    margin-top: 10px;
  }
  .footerSection {
    padding: 60px 0 30px;
  }
  .footerLogo img {
    max-width: 220px;
  }
}
@media (max-width:485px) {
  .cspCol {
    margin-top: 30px;
    padding: 40px 20px 10px;
  }
  .cpIcon {
    width: 35px;
    height: 35px;
    margin: 0 auto 15px;
  }
  .cspColStyle>h4 {
    font-size: 16px;
  }
  .cspColStyle h2 {
    font-size: 24px;
  }
  .wCardStyle {
    min-height: 240px;
  }
  .swiper1Title {
    padding-top: 60px;
  }
}