:root{
  --primaryColor:#024289;
  --secondaryColor: #05ac90;
  --txtColor:#9ca3af;
  --offwhiteColor: #f2f2f2e6;
  --whiteColor:#ffffff;
  --blackColor:#000000;
  --backgroundColor:#02183d;
  --bodyFont: "Inter", sans-serif;
  --titleFont: 'Satoshi';
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.eot');
    src: url('../fonts/Satoshi-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/Satoshi-Black.woff') format('woff'),
        url('../fonts/Satoshi-Black.ttf') format('truetype'),
        url('../fonts/Satoshi-Black.svg#Satoshi-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.eot');
    src: url('../fonts/Satoshi-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi-Bold.ttf') format('truetype'),
        url('../fonts/Satoshi-Bold.svg#Satoshi-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.eot');
    src: url('../fonts/Satoshi-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/Satoshi-Light.woff') format('woff'),
        url('../fonts/Satoshi-Light.ttf') format('truetype'),
        url('../fonts/Satoshi-Light.svg#Satoshi-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.eot');
    src: url('../fonts/Satoshi-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi-Medium.ttf') format('truetype'),
        url('../fonts/Satoshi-Medium.svg#Satoshi-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.eot');
    src: url('../fonts/Satoshi-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi-Regular.ttf') format('truetype'),
        url('../fonts/Satoshi-Regular.svg#Satoshi-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Basics */
html{ scrollbar-color: rgba(255,255,255,0.4) var(--backgroundColor);}
body{ padding:0; margin:0; font-size: 15px; color:var(--txtColor); font-family: var(--titleFont); background: var(--backgroundColor);}
a, button{outline:none !important; text-decoration:none; box-shadow:none; transition:all .3s ease-in-out;}
a:hover, a:focus, select:focus, button:focus,.btn:focus,btn.focus { outline:none; text-decoration:none; box-shadow:none;}
* { margin:0; padding:0;}
img { border:none; vertical-align:middle; max-width:100%; height:auto;}
li{ list-style:none;}
h1, h2, h3, h4, h5, h6{ outline:none !important;}
input, select, textarea, button{ outline:none !important; box-shadow:none;}
input, textarea, select{ /*-moz-appearance: none; -webkit-appearance: none;*/ box-shadow:none !important;}

/* Container */
.container{ width:90%; max-width:1200px; margin:0 auto; padding:0;}
.container.xxl{ max-width:1820px;}
.container.md{ max-width:1150px;}
.container-fluid{ width: 100%; max-width: 100%; margin: 0; padding: 0 40px;}

/* Heading */
h1{ font-size: 70px; margin: 0; font-weight: 700; line-height: 1.05em; color: var(--whiteColor);}
h2{ font-size: 48px; line-height: 1.2em;}
h3{ font-size: 28px;}
h4{ font-size: 24px;}
h5{ font-size: 20px;}
h6{ font-size: 18px;}
h2 a, h3 a, h4 a, h5 a, h6 a{ color: var(--whiteColor);}

/* Paragraph */
p{ font-size: 16px; line-height: 1.5em; font-weight: 400; color: var(--txtColor);}
p.white{ color: var(--whiteColor);}
p.white a{ color: var(--whiteColor);}
p a{ color:var(--txtColor);}
p a:hover{ color:var(--secondaryColor);}
p:last-child{ margin-bottom: 0;}

/* Section Asset */
.content-group{ display: flex; flex-direction: column; gap: 70px; position: relative; z-index: 5;}
.sec-head{ display: flex; flex-direction: column; gap: 12px;}
.sec-title{ margin:0; line-height: 1.1em; font-weight: 700; color: var(--whiteColor);}
.sec-title2{ margin:0; line-height: 1.2em; font-weight: 700; color: var(--backgroundColor);}
.sec-sub-title{ margin: 0; padding: 0 0 0 18px; font-weight: 500; position: relative; color: var(--whiteColor);}
.sec-sub-title::before{ content: ""; width: 8px; height: 8px; background: var(--secondaryColor); border-radius: 50%; position: absolute; top: 7px; left: 0;}
.sec-detail-group{ display: flex; flex-direction: column; gap: 20px;}
.sec-foot{ display: flex; flex-direction: column; gap: 28px;}
.word { display: block; filter: blur(10px); transform: translateY(10px); will-change: transform; opacity: 0.001; transition: all .4s;}
.anim-desc .word{ filter: blur(3px); transform: translateY(5px); will-change: transform; opacity: 0.001; transition: all .6s;}
.banner-title-animet .char{ display: inline-block; filter: blur(3px); scale: 1.5; opacity: 0;}

/* Button */
.btn-group{ display: flex; gap:10px 24px; flex-wrap: wrap;}
.btn-theme{ margin:0; padding:16px 24px; font-size: 16px; font-weight: 500; position: relative; display: inline-flex; gap: 12px; border-radius: 50px; background:  var(--primaryColor); color: var(--whiteColor); cursor: pointer; align-items: center; justify-content: center;}
.btn-theme > span{ display: inline-flex; line-height: 1.3em; transition: all 0.4s ease; position: relative; overflow: hidden;}
.btn-theme > span > span{ display: block; padding: 0; position: relative; z-index: 2; transition: all 0.4s ease; transform: translateY(0);}
.btn-theme > span::after { content: attr(data-text); position: absolute; left: 0; top: 0; transform: translateY(100%); transition: all 0.4s ease; white-space: nowrap; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;}
.btn-theme > i{ display: inline-flex; transition: all 0.4s ease; position: relative; overflow: hidden;}
.btn-theme:not(.btn-white) > i{ filter: brightness(0) invert(1);}
.btn-theme > i img{ transition: all 0.4s ease; transform: translateX(0%);}
.btn-theme > i::after { content: ""; background: url(../images/chevron-right12x.svg) no-repeat center center; background-size: 100%; position: absolute; left: 0; top: 0; transform: translateX(-100%); transition: all 0.4s ease; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;}
.btn-theme:focus > span > span, .btn-theme:hover > span > span{ transform: translateY(-100%);}
.btn-theme:focus > span::after, .btn-theme:hover > span::after{ transform: translateY(0);}
.btn-theme:focus > i img, .btn-theme:hover > i img{ transform: translateX(100%);}
.btn-theme:focus > i::after, .btn-theme:hover > i::after{ transform: translateX(0);}
.btn-white{ background: var(--whiteColor); color: var(--backgroundColor);}

/* Link */
.simple-link{ margin:0; padding:0; font-size: 16px; font-weight: 500; position: relative; display: inline-flex; gap: 12px; color: var(--whiteColor); cursor: pointer; align-items: center; justify-content: center;}
.simple-link > span{ display: inline-flex; line-height: 1.6em; transition: all 0.4s ease; position: relative; overflow: hidden;}
.simple-link > span > span{ display: block; padding: 0; position: relative; z-index: 2; transition: all 0.4s ease; transform: translateY(0);}
.simple-link > span::after { content: attr(data-text); position: absolute; left: 0; top: 0; transform: translateY(100%); transition: all 0.4s ease; white-space: nowrap; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;}
.simple-link > i{ display: inline-flex; transition: all 0.4s ease; position: relative; overflow: hidden; filter: brightness(0) invert(1);}
.simple-link > i img{ transition: all 0.4s ease; transform: translateX(0%);}
.simple-link > i::after { content: ""; background: url(../images/chevron-right12x.svg) no-repeat center center; background-size: 100%; position: absolute; left: 0; top: 0; transform: translateX(-100%); transition: all 0.4s ease; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;}
.simple-link:focus > span > span, .simple-link:hover > span > span{ transform: translateY(-100%);}
.simple-link:focus > span::after, .simple-link:hover > span::after{ transform: translateY(0);}
.simple-link:focus > i img, .simple-link:hover > i img{ transform: translateX(100%);}
.simple-link:focus > i::after, .simple-link:hover > i::after{ transform: translateX(0);}


/* Spacing */
.py-120, .pt-120{ padding-top: 120px;}
.py-120, .pb-120{ padding-bottom: 120px;}
.py-80, .pt-80{ padding-top: 80px;}
.py-80, .pb-80{ padding-bottom: 80px;}
.mb-30{ margin-bottom: 30px;}

.gy-30{ --bs-gutter-y: 30px;}
.gy-50{ --bs-gutter-y: 30px;}
@media (min-width: 1200px) {
  .gy-50{ --bs-gutter-y: 50px;}
  .gx-30{ --bs-gutter-x: 30px;}
  .gx-40{ --bs-gutter-x: 40px;}
}

/*===================
 		HEADER 
===================*/
.header__sec{ width:100%; position: fixed; top: 0; left: 0; padding: 20px 0; z-index: 1002; transition: all .4s; transform: translateY(0);}
.header__sec::before{ content: ""; width: 100%; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); background: linear-gradient(180deg,var(--backgroundColor)0%,#02183d00 100%); z-index: -1; height: 100%; position: absolute; top: 0; left: 0; right: 0;}
.header__sec .container-fluid{ padding: 0 20px;}
.header__sec .navbar-light{ width: 100%; transition: all .4s; margin: 0 auto; backdrop-filter: blur(0); border-radius: 33px; transform: none; transform-origin: 50% 50% 0px; will-change: auto; gap: 24px; padding: 0;}
.header__sec .navbar-brand{ margin:0; padding:0; width: 124px;}
.header__sec .navbar-brand img{ width: 100%; display: inline-block;}
.header__sec .navbar-toggler{ width: 40px; min-width: 40px; height: 40px; position: relative;}
.header__sec .navbar-toggler::before, .header__sec .navbar-toggler::after{ content: ""; width: 24px; height: 2px; background: var(--whiteColor); position: absolute; top: 14px; left: 8px;}
.header__sec .navbar-toggler::after{ top: auto; bottom: 14px;}
.header__sec .navbar-light .navbar-nav{ gap: 20px 32px;}
.header__sec .navbar-light .navbar-nav .nav-item{ margin:0;}
.header__sec .navbar-light .navbar-nav .nav-link{ margin:0; font-size: 16px; position: relative; display: flex; padding:0; overflow: hidden; cursor: pointer; color: var(--whiteColor); font-weight: 500;}
.header__sec .navbar-light .navbar-nav .nav-link span{ width: 100%; text-align: center; display: block; position: relative; z-index: 2; transition: all 0.4s ease; transform: translateY(0);}
.header__sec .navbar-light .navbar-nav .nav-link::after { content: attr(data-text); position: absolute; left: 0; top: 0; transform: translateY(100%); color: var(--whiteColor); transition: all 0.4s ease; white-space: nowrap; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;}

.header__sec .navbar-light .navbar-nav .nav-link:focus span, header .navbar-light .navbar-nav .nav-link:hover span{ transform: translateY(-100%);}
.header__sec .navbar-light .navbar-nav .nav-link:focus::after, header .navbar-light .navbar-nav .nav-link:hover::after{ transform: translateY(0);}
.header__sec .navbar-light .navbar-nav .active .nav-link span, header .navbar-light .navbar-nav .nav-link.active span{ transform: translateY(-100%);}
.header__sec .navbar-light .navbar-nav .active .nav-link::after, header .navbar-light .navbar-nav .nav-link.active::after{ transform: translateY(0);}

.header__sec .offcanvas .text-reset{ cursor: pointer;}
.header__sec .dropdown-menu{ border-color: none; border-radius: 0;}
.header__sec .dropdown-item{ padding: 8px 20px; color: var(--titleColor); font-weight: 400;}
.header__sec .dropdown-item:hover, .header__sec .dropdown-item:focus{ background: var(--primaryColor); color: var(--whiteColor); border-color: var(--primaryColor);}

.header__sec.stack{ transform: translateY(-100%);}
.header__sec.sticky{ transform: translateY(0);}


/*===================
        FOOTER
===================*/
.footer__sec{ position: relative; padding: 0 20px 20px;}
.footer__sec .footer_cover{ padding-bottom: 70px; border-radius: 40px; background: #000529;}
.footer__sec .ftr-logo{ padding-right: 90px;}
.footer__sec .ftr-logo figure{ margin: 0 0 32px; width: 145px;}
.footer__sec .ftr-logo h4{ margin-bottom: 12px; line-height: 1.2em; font-weight: 700; color: var(--whiteColor);} 
.footer__sec .ftr-logo p{ margin-bottom: 32px;}
.footer__sec .copyright p{ margin: 0; font-weight: 500;}
.footer__sec .ftr-blk .ftr-tle{ font-size: 18px; line-height: 1.6em; margin: 0 0 28px; font-weight: 700; color: var(--whiteColor); display: block;}
.footer__sec .ftr-blk .ftr-link{ margin: 0; padding: 0;}
.footer__sec .ftr-blk .ftr-link li{ margin: 0 0 18px;}
.footer__sec .ftr-blk .ftr-link li a{ color: var(--txtColor); position: relative; display: flex; overflow: hidden; cursor: pointer;  padding: 0; font-size: 16px; font-weight: 500; line-height: normal; font-family: var(--titleFont);}
.footer__sec .ftr-blk .ftr-link li a span{ width: 100%; display: block; position: relative; z-index: 2; transition: all 0.4s ease; transform: translateY(0);}
.footer__sec .ftr-blk .ftr-link li a::after{ content: attr(data-text); position: absolute; left: 0; top: 0; transform: translateY(100%); color: var(--whiteColor); transition: all 0.4s ease; white-space: nowrap; width: 100%; height: 100%; display: flex; align-items: center;} 
.footer__sec .ftr-blk p{ margin-bottom: 28px;}
.footer__sec .ftr-blk .social-link{ margin: 0; padding: 0; display: flex; gap: 8px;}
.footer__sec .ftr-blk .social-link li{ margin: 0; padding: 0;}
.footer__sec .ftr-blk .social-link li a{ padding: 0; height: 40px; width: 64px; display: flex; justify-content: center; align-items: center; background-color: var(--backgroundColor); border-radius: 20px;}
.footer__sec .ftr-blk .social-link li a:hover{ background: rgb(109, 225, 176);}
.footer__sec .ftr-blk .social-link li a:hover img{ opacity: 1;}
.footer__sec .ftr-blk .social-link li a img{ width: 25px; opacity: 0.5; transition: all 0.4s ease;}
.footer__sec .ftr-blk .ftr-link li a:focus span, .footer__sec .ftr-blk .ftr-link li a:hover span{ transform: translateY(-100%);}
.footer__sec .ftr-blk .ftr-link li a:focus::after, .footer__sec .ftr-blk .ftr-link li a:hover::after{ transform: translateY(0);}
.footer__sec .ftr-blk .ftr-link .active a span, .footer__sec .ftr-blk .ftr-link li a.active span{ transform: translateY(-100%);}
.footer__sec .ftr-blk .ftr-link .active a::after, .footer__sec .ftr-blk .ftr-link li a.active::after{ transform: translateY(0);}


/*=================================
 		    SECTION START HERE
=================================*/
section{ padding:0; margin:0;}

/* Hero */
.hero__sec{ position: relative; overflow: hidden; height: 100vh;}
.hero__sec .hero_bg{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(120, 155, 194, 0.41) 0%, rgb(13, 35, 59) 100%);}
.hero__sec .hero-bg-img{ width: 100%; height: 100%; position: absolute; top: 0; left: 0; display: flex; box-shadow: inset 0px 0px 92px 480px rgba(0, 0, 0, 0.65); opacity: 0.9;}
.hero__sec .hero-bg-img img{ width: 100%; object-fit: cover;}
.hero__sec .theme-curve{ position: absolute; top: 50%; left: 50%; display: flex; width: min-content; height: min-content; place-content: center; align-items: center; transform: translate(-50%, -50%) scale(0.97); animation: spin 4s linear; transition: all .9s; opacity: 1;}
@keyframes spin {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0;}
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1;}
  100% { transform: translate(-50%, -50%) scale(0.97); opacity: 1;}
}
.hero__sec .theme-curve svg{ width: 290px; height: 542px;}
.hero__sec .hero-img-curve{ width: 100%; height: 100%; position: absolute; top: 0; left: 0; display: flex;}
.hero__sec .hero-img-curve img{ width: 100%; object-fit: cover;}
.hero__sec .hero_cap{ width: 100%; padding: 180px 0; position: absolute; top: 50%; left: 0; transform: translateY(-50%); text-align: center; z-index: 85;}
.hero__sec .detail{ display: flex; flex-direction: column; gap: 24px; align-items: center;}
.hero__sec .detail p{ max-width: 540px; font-size: 15px; margin: 0; letter-spacing: -0.02em; line-height: 1.5em; color: var(--offwhiteColor); font-family: var(--bodyFont);}
.tag-title{ padding: 10px 16px; font-size: 15px; letter-spacing: -0.02em; font-weight: 500; line-height: 1.5em; align-items: center; gap: 10px; display: inline-flex; position: relative; backdrop-filter: blur(68px); border-radius: 40px; background: var(--whiteColor); color: var(--backgroundColor);}
.tag-title::before{ content: ""; width: 7px; min-width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--backgroundColor);}


/* Welcome */
.welcome__sec{ padding-top: 50px; position: relative;}
.welcome__sec .sec-img{ position: relative; display: flex;}
.welcome__sec .sec-img figure{ margin: 0; border-radius: 18px; width: 100%; display: flex; aspect-ratio: 1.52162;}
.welcome__sec .sec-img figure img{ width: 100%; object-fit: cover; border-radius: 18px;}
.welcome__sec .sec-img .sec-img-curve{ width: 224px; position: absolute; top: 50%; left: 50%; height: auto; aspect-ratio: .855535; transform: translate(-50%, -50%) translateY(-3px);}
.welcome__sec .curve{ position: absolute; right: 53%; bottom: 0; width: max-content; height: 65px; overflow: hidden;}
.welcome__sec .curve img{ opacity: 0.3;}

.portfolio__sec{ background: var(--whiteColor);}
.portfolio__sec .content-group .sec-head p{ max-width: 800px; margin: 0 auto 50px;}
.portfolio__sec .sec-body figure{ margin: 0;}
.portfolio__sec .sec-body figure img{ height: 100%; width: 100%; object-fit: contain; max-height: 35px; min-height: 35px;}
.portfolio__sec .sec-body{ mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%); overflow: hidden; place-items: center; display: flex; width: 100%; padding: 0 10px;}

.banner__sec{ position: relative; height: 100vh; width: 100%; overflow: hidden;}
.banner__sec .banner-bg{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex;}
.banner__sec .banner-bg img{ width: 100%; object-fit: cover;}
.banner__sec .mdl-curve{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;}
.banner__sec .mdl-curve img{ transform: scale(0.7);}
.banner__sec .banner-curve{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex; z-index: 3;}
.banner__sec .banner-curve img{ width: 100%; object-fit: cover;}

/* Innovators */
.innovators__sec .sec-head{ max-width: 600px;}
.innovator{ margin: 0; display: flex; cursor: none; position: relative;}
.innovator a{ width: 100%; display: flex; flex-direction: column; gap: 28px; text-decoration: none; outline: none;}
.innovator a:hover .innovator-tags{ top: 0;}
.innovator-img{ margin: 0; padding: 0; border-radius: 20px; overflow: hidden; display: flex; position: relative;}
.innovator-img figure{ margin: 0; width: 100%; display: flex; border-radius: 20px; aspect-ratio: 1.23;}
.innovator-img figure img{ width: 100%; border-radius: 20px; object-fit: cover;}
.innovator-tags{ background: var(--whiteColor); border-bottom-left-radius: 24px; gap: 9px; width: min-content; height: min-content; padding: 12px; display: flex; position: absolute; top: -80px; right: 0; transition: all .4s ease-in-out;}
.innovator-tags::before{ content: ""; position: absolute; background: url(../images/innovator-tags-curve.svg) center center no-repeat; background-size: 100% 100%; top: -2px; left: -18px; height: 20px; width: 20px; transform: rotate(-90deg);}
.innovator-tags::after{ content: ""; position: absolute; background: url(../images/innovator-tags-curve.svg) center center no-repeat; background-size: 100% 100%; bottom: -18px; right: -2px; height: 20px; width: 20px; transform: rotate(-90deg);}
.innovator-tags span{ background: #f7f9fc; color: var(--backgroundColor); padding: 4px 15px; border-radius: 15px;}
.innovator .detail .innovator-tags2{ margin: 0 0 14px; display: flex; flex-wrap: wrap;}
.innovator .detail .innovator-tags2 span{ font-size: 16px; font-weight: 500; color: var(--txtColor); line-height: 1.6em; position: relative; display: inline-flex; align-items: center;}
.innovator .detail .innovator-tags2 span + span::before{ content: ""; height: 6px; width: 6px; border-radius: 50%; background: var(--txtColor); display: inline-flex; margin: 0 15px;}
.innovator .detail h4{ font-size: 24px; font-weight: 700; color: var(--whiteColor);}
.innovator .custom-cursor { position: absolute; width: 100px; height: 100px; border-radius: 50%; display: flex; justify-content: center; align-items: center; pointer-events: none; transition: transform 0.05s linear; transform: translate(-50%, -50%) scale(1); display: none;}
.innovator:hover a{ cursor: none;}
.custom-cursor.bounce { animation: bounceIn 0.6s ease;}
@keyframes bounceIn {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  60%  { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
  80%  { transform: translate(-50%, -50%) scale(0.9); }
  100% { transform: translate(-50%, -50%) scale(1); }
}


/*=======================
        About Page
=======================*/
.about__banner.hero__sec .hero-bg-img{ filter: brightness(1); opacity: 0.71;}
.inner__banner.hero__sec .hero_bg{ background: var(--blackColor);}
.inner__banner.hero__sec .hero_cap{ top: 46%;}

.about__sec p{ margin: 0;}
.about__sec .imgs-grid{ display: grid; grid-template-columns: 1fr 370px 270px; gap: 30px; padding-bottom: 50px;}
.about__sec .imgs-grid figure{ margin: 0; max-width: 100%; height: 300px; display: flex; border-radius: 20px; overflow: hidden;}
.about__sec .imgs-grid figure img{ width: 100%; object-fit: cover; border-radius: 20px; transition:all .9s ease-in-out;}
.about__sec .imgs-grid figure:hover img{ transform: scale(1.05);}
.counters{ margin: 20px 0 16px; display: block; font-size: 60px; font-weight: 700; color: var(--whiteColor); letter-spacing: -0.04em; line-height: 1em;}

.sticky-part{ position: sticky; top: 8em;}
.step-count{ color: var(--txtColor);}

ul:not([class]){ margin: 0; padding: 0 0 0 14px;}
ul:not([class]) li { margin: 0; padding: 0; font-size: 16px; line-height: 1.6em; font-weight: 400; color: var(--txtColor); list-style: disc;}
ul:not([class]) li a{ color: var(--whiteColor);}
ul:not([class]) li a:hover{ color: var(--whiteColor);}

.ceo_group{ background: #6ee0af; border-radius: 24px; display: flex;}
.ceo_group figure{ width: 100%; max-width: 412px; display: flex; background: url(../images/welcome_curve.png) no-repeat right center; margin: 0; justify-content: flex-end; background-size: auto 100%; border-radius: 24px 0 0 24px; padding-left: 30px;}
.ceo_group figure img{ width: 100%; max-width: 300px; margin-top: -55px; object-fit: contain; object-position: bottom;}
.ceo_group .detail{ padding: 30px 50px 30px 36px; align-self: center; flex: 1; width: 1%; max-width: 100%; display: flex; flex-direction: column; gap: 16px;}
.ceo_group .detail .author{ font-size: 16px; line-height: 1.6em; font-weight: 700; color: var(--backgroundColor); text-align: right;}

.cta_group{ text-align: center; min-height: 700px; position: relative; display: flex; flex-direction: column; justify-content: center;}
.cta_group .imgs_group{ position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 0;}
.cta_group .imgs_group figure{ position: absolute; border-radius: 10px; display: inline-flex; width: 227px; height: 159px;}
.cta_group .imgs_group figure img{ width: 100%; object-fit: cover; border-radius: 10px;}
.cta_group .imgs_group .img1{ top: 0; left: 0; width: 300px; height: 169px;}
.cta_group .imgs_group .img2{ top: 0; right: 180px; width: 304px; height: 171px; z-index: 2;}
.cta_group .imgs_group .img3{ top: 90px; right: 0; width: 223px; height: 127px;}
.cta_group .imgs_group .img4{ bottom: 70px; left: 30px; z-index: 2;}
.cta_group .imgs_group .img5{ bottom: 0; left: 205px; width: 300px; height: 169px;}
.cta_group .imgs_group .img6{ bottom: 30px; right: 140px;}
.cta_group .detail{ max-width: 470px; margin: 0 auto; position: relative; z-index: 2;}


/*=======================
        Team Page
=======================*/
.team__banner.hero__sec .hero-bg-img{ filter: brightness(1); box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 92px 480px inset; opacity: 1;}

.team{ display: flex; flex-direction: column; gap: 24px;}
.team .team_head{ border-radius: 20px; overflow: hidden; position: relative;}
.team .team_head figure{ margin: 0; display: flex;}
.team .team_head figure img{ width: 100%; object-fit: cover; border-radius: 20px;}
.team .team_caption{ width: 284px; max-width: 80%; height: 100%; padding: 20px; display: flex; flex-flow: column; gap: 4px; backdrop-filter: blur(12px); background-color: rgba(255, 255, 255, 0.75); border-radius: 0 20px 20px 0; position: absolute; top: 0; left: 0; transition:all .3s ease-in-out; transform: translateX(-100%);}
.team .team_caption h5{ font-weight: 700; margin: 0; line-height: 1.6em; color: var(--primaryColor);}
.team .team_caption p{ margin: 0; color: var(--backgroundColor); font-size: 14px; line-height: 1.4em; font-weight: 500;}
.team .social_actions{ width: 56px; padding: 8px; display: flex; flex-flow: column; gap: 8px; border-radius: 0 0 0 20px; background: #fff; position: absolute; top: 0; right: 0; transition:all .3s ease-in-out; transform: translateX(100%);}
.team .social_actions::before{ content: ""; position: absolute; background: url(../images/innovator-tags-curve.svg) center center no-repeat; background-size: 100% 100%; top: -2px; left: -20px; height: 22px; width: 22px; transform: rotate(-90deg);}
.team .social_actions::after{ content: ""; position: absolute; background: url(../images/innovator-tags-curve.svg) center center no-repeat; background-size: 100% 100%; bottom: -20px; right: -2px; height: 22px; width: 22px; transform: rotate(-90deg);}
.team .social_actions a{ width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; opacity: 0.6; border-radius: 50%;}
.team .social_actions a img{ transition:all .3s ease-in-out;}
.team .social_actions a:hover{ opacity: 1; background: var(--primaryColor);}
.team .social_actions a:hover img{ filter: brightness(0) invert(1);}
.team h4{ margin: 0 0 8px; font-weight: 700; color: var(--whiteColor);}
.team:hover .team_caption{ transform: translateX(0%);}
.team:hover .social_actions{ transform: translateX(0%);}


/*=======================
    Entrepreneur Page
=======================*/
.entrepreneur__banner.hero__sec .hero-bg-img{ filter: brightness(1); box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 92px 480px inset; opacity: 0.48;}
.entrepreneur__banner.hero__sec .hero-bg-img img{ object-position: 48.4% 25.2%;}

.entrep_steps{ display: flex; flex-direction: column; gap: 30px;}
.entrep_item{ display: flex; gap: 40px;}
.entrep_item .step_count{ gap: 20px; width: 110px; padding: 20px 0 0; display: flex; flex-wrap: wrap;}
.entrep_item .step_count strong{ width: 100%; font-size: 66px; letter-spacing: -1px; line-height: 0.7em; font-family: "Unbounded", sans-serif; font-weight: 400; text-transform: uppercase; text-shadow: rgb(5, 172, 144) 0px 1px 23px; color: rgb(5, 172, 144); text-align: center; margin-bottom: 10px;}
.entrep_item .step_count .line{ min-height: 232px; background-color: rgba(255, 255, 255, 0.05); width: 3px; margin: 0 auto; overflow: hidden; position: relative;}
.entrep_item .step_count .line span{ width: 100%; height: calc(100vh*.5); background: linear-gradient(rgba(84, 84, 84, 0) 70.4473%, rgb(5, 172, 144) 100%); display: block; transform: translateY(-220px); position: absolute; left: 0; top: 0;}
.entrep_item .item_box{ flex: 1; align-self: flex-start; padding: 20px 30px 30px; border-radius: 30px; background: #000529; border: 1px solid rgba(20, 20, 20, 0.2);}
.entrep_item h5{ margin: 0 0 10px; line-height: 1.3em; letter-spacing: -0.1px; font-weight: 500; color: var(--whiteColor);}
.entrep_item p{ opacity: 0.6;}