body {
  margin: 0;
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  background: #efefef;
  font-style: normal;
  overflow-x: hidden;
}
.modal{z-index: 99991;}
.modal-backdrop{
    z-index: 9999;
}
.flat-heading{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;
}
.sarif-heading{
    font-family: "Forum", serif;
    font-optical-sizing: auto;
    font-weight:300;
    font-style: normal;
}

header {
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #f9f8f5;
    transition: all 0.35s ease;
}

/* After scrolling */
header.scrolled {
    background: #f9f8f5;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.navar a img {
    margin-right: 0;
    margin-left: auto;
}
header .navar a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 15px;
    position: relative;
    transition: 600ms all;
    overflow: hidden;
    /* box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    outline:none;
    white-space: nowrap;
}

header .navar {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

header .navar a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #afbd0c61;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    filter: blur(5px);
    transition: 300ms all;
}

header .navar a:hover::before {
    transform: translateY(-4px)scale(1.5);
    width: 35px;
    height: 15px;
}
header .navar .hamburg .hammnulist {
    position: absolute;
    background: rgb(0 0 0 / 75%);
    right: 0;
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(15px);

     opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    max-height: 0;

    transition:
        opacity .35s ease,
        transform .35s ease,
        max-height .35s ease,
        visibility .35s;
}
header .navar .hamburg .hammnulist.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
}

.hamburg {
    margin-left: 15px;
    position: relative;
}

header .navar .hamburg > a {
    width: 35px;
    height: 35px;
    display: block;
    background: #000 !important;
    text-align: center;
    padding: 0;
    line-height: 30px;
    border-radius: 50px;
}

header .navar .hamburg > a i {
    position: relative;
    width: 15px;
    height: 2px;
    background: #fff;
    display: inline-block;
}
header .navar .hamburg > a i::before,header .navar .hamburg > a i::after {content:"";width: 22px;position: absolute;height: 2px;top: 6px;background: #fff;left: -3px;right: 0;margin: 0 auto;}

header .navar .hamburg > a i::after {
    bottom: 6px;
    top: auto;
}

header .navar .hamburg .hammnulist a {
    background: transparent;
    color: #fff;
    display: block;
    text-align: left;
}

header .navar .hamburg .hammnulist a::before {
    left: 0;
    right: auto;
}
.showinmobile{display: none;}


.media-menu {
    position: relative;
}

header .navar .hamburg .hammnulist .media-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.media-toggle i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* submenu */
.media-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 15px;
    transition: max-height 0.35s ease,
                opacity 0.3s ease;
}

/* HOVER + CLICK */
.media-menu:hover .media-submenu,
.media-menu.active .media-submenu {
    max-height: 120px;
    opacity: 1;
}

/* rotate arrow */
.media-menu:hover .media-toggle i,
.media-menu.active .media-toggle i {
    transform: rotate(180deg);
}

header .navar .hamburg .hammnulist .media-submenu a {
    font-size: 12px;
    padding: 7px 15px;
    color: rgba(255, 255, 255, 0.7);
}

header .navar .hamburg .hammnulist .media-submenu a:hover {
    color: #fff;
}
/* HERO */

.hero {
  min-height: 100vh;
 /* margin-top: 89px; */
  position: relative;
  color: #000;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35); /* Increase for more fade */
    z-index: 1;
}

/* Dark overlay like your design */
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    #354b78 0%,
    #162a4d 25%,
    #020a1f 60%,
    #020a1f 75%,
    #020a1f 90%,  
    #020a1f 100%   
  
  );

} */


.hero-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

/* Heading */
.hero-title {
  font-size: 70px;
  /* font-weight: 700; */
  line-height: 1.2;
  text-align: center;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: #3a3a3a;
  max-width: 770px;
  margin: auto;
  line-height: 1.5;
  word-spacing: 2px;
  text-align: center;
}

/* Partner Tag */
.partner-tag {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  margin-top: 55px;
  letter-spacing: 1px;
}
.partner-tag span{
  font-size: 14px;
}

/* HEADER BASE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  transition: all 0.3s ease;
}

/* NAV LINKS */
.navbar .nav-link {
  color: #cfd3dc !important;
  transition: 0.3s;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #fff !important;
}

/* SCROLLED STATE (GLASS EFFECT) */
.header.scrolled {
  background: rgba(2, 10, 31, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-white{
  background-color: #fff;
  padding: 10px 30px;
  color: #2f5bff;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.2s ease-in;
}
.btn-white:hover{
  transform: scale(1.1);
  background-color: #fff;
    color: #0c2170;
}

/* REDUCE NAVBAR HEIGHT ON SCROLL */
.header.scrolled .navbar {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* OPTIONAL: SMOOTH LOGO SCALE */
.header.scrolled .navbar-brand img {
  transform: scale(0.9);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}







.btn-primary {
  background:#C89A4A;
  padding: 12px 25px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  margin-right: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-dark {
  background: #202020;
  padding: 12px 25px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-primary:hover{
    background:#A97F39;
     color: #fff;
}

.btn-dark:hover{
    background-color: #fff;
    color: #000;
}



/*showcase section*/
.showcase-section {
  position: relative;
  background: #fff;
  z-index: 2;
}

/* BLUE STRIP */
.stats-strip {
  position: relative;
  background: linear-gradient(
    90deg,
    #001d48 0%,
    #1284db 100%
  );
  transform: skewY(-4deg)translateY(-55px);
  z-index: 2;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 50px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.stat-box img {
  width: 55px;
}

.stat-box h3 {
  font-size: 56px;
  font-weight: 600;
  margin: 0;
}

.stat-box p {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
}

/* BLACK LOGO STRIP */
.logo-strip {
  position: relative;
  margin-top: -20px;
  background: #151515;
  /* transform: skewY(-4deg); */
  padding: 25px 0;
  z-index: 1;
}
.logo-strip2{
        /* position: relative; */
    /* margin-top: -20px; */
    background: #151515;
    /* transform: skewY(-4deg); */
    padding: 25px 0;

}
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.uk-btn{
    width:fit-content; 
    color:#fff;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #fff;
    margin:auto;
    transition: 0.3s;

}

.uk-btn:hover{
    transform: translateY(-5px);
    background-color: #fff;
    color: #000;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoScroll 25s linear infinite;
  transform: skewY(4deg);
}

.logo-track img {
    height: 60px;
    margin: 0 20px;
    opacity: 0.95;
    background: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Infinite marquee */
@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.about-section {
    padding: 80px 20px 40px;
    text-align: center;
    /* background-color: #fff; */
        background: linear-gradient(
    180deg,
   #fffcf9 0%,
   #FEF9F3  80%,
   #FEF9F3  92%,
   #FEF9F3  100%
);
    position: relative;
    z-index: 1;
}

.investment-section{
background-color: #efefef;
}
.investment-section h2{
    font-size: 5vw;
    line-height: 1;
    margin-bottom: 30px;
    color: #111;
    text-transform: uppercase;
}
.inv-img{
    width: 100%;
    height: 300px;
    padding-right: 30px;
}

.inv-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container {
    max-width: 1100px;
    margin: auto;
}

/* Small tag */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    /* border: 1px solid #ddd; */
    border-radius: 30px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 30px;
}

/* Main text */
.about-content {
    max-width: 850px;
    margin: auto;
}

.about-content p {
    font-size: 42px;
    line-height: 1.35;
    color: #111;
    font-weight: 400;
    letter-spacing: -1px;
}

/* Inline images */
.inline-img {
    display: inline-flex;
    width: 65px;
    height: 36px;
    overflow: hidden;
    border-radius: 30px;
    vertical-align: middle;
    margin: 0 6px;
}

.inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button */
.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 14px 24px;
    background: #000;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.read-btn:hover {
    transform: translateY(-2px);
}

/* Bottom Section */
.positioning-wrap {
       margin-top: 90px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.small-title {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #59a1b2;
    border: 1px solid #59a1b2;
    padding: 10px 18px;
    margin-bottom: 20px;
}

/* Big Heading */
.positioning-wrap h2 {
    font-size: 50px;
    font-weight: 300;
    letter-spacing: -3px;
    color: #111;
    font-family: "Forum", serif;
}

.small-title {
    position: relative;
}

.small-title::before,.small-title::after {
    content: "";
    position: absolute;
    height: 4px;
    background: #ffffff;
    top: -2px;
    width: calc(100% - 10px);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.small-title::after {
    top: auto;
    bottom: -2px;
}
.reveal-text{
    font-size: 35px !important;
}

/* Initial hidden state */
.reveal,
.reveal-text,
.reveal-black,
.reveal-img {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

/* Active state */
.reveal.active,
.reveal-text.active,
.reveal-black.active,
.reveal-img.active {
    opacity: 1;
    transform: translateY(0);
}

/* Black reveal effect */
.reveal-black {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.reveal-black::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateX(0);
    transition: transform 1.4s ease;
}

.reveal-black.active::after {
    transform: translateX(100%);
}

/* Fade text */
.reveal-text {
    transition-delay: 0.2s;
}

/* Image pop animation */
.reveal-img {
    transition: all 1s ease;
}

.reveal-img.active {
    transform: scale(1);
    opacity: 1;
}

/* initial image scale */
.reveal-img {
    transform: scale(0.7);
}





/* Section */
.core-philosophy {
    padding: 80px 50px;
    /* background: radial-gradient(circle at center,
            #2384db 0%,
            #0c4a8d 25%,
            #06245d 50%,
            #03163e 100%); */
    background: radial-gradient(
    circle at center,
    #D8B16A 0%,
    #B88636 30%,
    #735224 60%,
    #2F1E0D 100%
);
    position: relative;
    /* overflow: hidden; */
}

/* Optional texture effect */
.core-philosophy::before {
content: "";
    position: absolute;
    inset: 0;
    filter: url(#noiseFilter);
    opacity: 0.15;
    pointer-events: none;
}

.core-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
        align-items: flex-end;
}

/* Left Side */
.core-left {
    width: 52%;
    color: #fff;
}

.sub-title {
    font-size: 20px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    opacity: .9;
}

.core-left h2 {
    font-size: 5vw;
    line-height: 1;
    margin-bottom: 30px;
}

.core-left .bold {
    font-weight: 400;
}

.core-left .light {
    margin-left: 15px;
    font-size: 5.5vw;
}

.core-text {
    max-width: 700px;
}

.core-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.5px;
}

/* Card */
.core-card {
    width: 42%;
    background: #f6f1e9;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    gap: 25px;
    align-items: stretch;
}

/* Image */
.card-image {
    width: 48%;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: right;
}

/* Card Content */
.card-content {
    width: 52%;
}

.card-content span {
    font-size: 14px;
    color: #7d7d7d;
    display: block;
    margin-bottom: 12px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.card-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 20px;
}





/* Main Section */
.hackfirst-section {
    padding: 40px 0px;
    background: #fff;
    padding-bottom: 0;
    position: relative;
}



/* Hero Card */
.herobottom-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: url('img/bg.png') center/cover no-repeat;
        width: calc(100% - 60px);
    margin: 0 auto;
    margin-bottom: 40px;
}

.herobottom-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(235, 195, 64, 0.811),
            rgba(212, 175, 55, 0.237),
            rgba(212, 175, 55, 0.244),
            rgba(0, 0, 0, 0.7)
        );


}

/* Hero Content */
.herobottom-content {
position: relative;
    right: 8%;
    top: 50%;
    transform: translateY(0%);
    max-width: 71%;
    color: #fff;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    left: 0;
    padding: 60px 0;
}

.herobottom-content h2 {
    font-size:5vw;
    line-height: 1;
    margin-bottom: 30px;
        font-family: "Inter", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.herobottom-content p {
   font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.herobottom-content a {
    display: inline-block;
    padding: 16px 28px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    transition: .3s ease;
}

.herobottom-content a:hover {
    transform: translateY(-3px);
}





.core-philosophy .sticky-box {
 flex-shrink:0;
 position: relative;
  top: 50px; /* Distance from the top of the container when stuck */
}

.core-philosophy .scrolling-box {
  flex: 1;
}



.core-container {
  display: flex;
  gap: 20px;
  align-items: flex-start; /* Crucial for sticky elements to not stretch */
}
.spacer {
    height: 100vh;
    background: #f9f8f5;
}
.hero-anim .pin-spacer{z-index:5 !important;}
section.about_box {
    padding: 80px 50px 80px;
    background: linear-gradient(
    180deg,
   #fffcf9 0%,
   #FEF9F3  80%,
   #FEF9F3  92%,
   #FEF9F3  100%
);
}

.about_box .about-img{
/* border-radius: 14px; */
height: 460px;
width: 100%;
border-radius: 12px;
overflow: hidden;
}
.about_box .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_box .about-img2{
/* border-radius: 14px; */
height: 480px;
width: 100%;
object-fit: cover;
}

/* ===========================
   ABOUT ALIZE SECTION
=========================== */

.hero-image-wrap{
    position:relative;
    min-height:200px;
    height: 450px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-left h2{
 font-size: 60px;
 font-weight: 600;
 color: #fff;
}

.about-right p{
    color: #ffffffc4;
    font-size: 18px;
    font-weight: 500;
}

/* Video */

.home-about_video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Dark overlay */

.hero-image-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(8,8,20,.45),rgba(8,8,20,.45)),
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.15),transparent 40%);
    z-index:2;
}

/* Content */

.aboutalize{

    position:relative;
    z-index:5;

    width:min(1500px,90%);
    margin:auto;

    display:grid;
    grid-template-columns:320px 1fr;
    gap:80px;

    align-items:center;

    padding:90px 0;
}

/* divider */

.aboutalize::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.55);

}

/* Left Heading */

.aboutalize h3{

    margin:0;

    color:#fff;

    font-size:95px;

    line-height:.95;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* Right Text */

.aboutalize_content{

    max-width:980px;

}

.aboutalize_content p{

    color:rgba(255,255,255,.95);

    font-size:30px;

    line-height:1.8;

    font-weight:300;

    margin:0 0 42px;

}

.aboutalize_content p:last-child{

    margin-bottom:0;

}

/* ===========================
   HERO CONTENT BELOW
=========================== */

.herocontent{

    max-width:900px;

}

.hero-desc{

    margin-top: 20px;
    /* max-width: 40%; */
    font-size: 15px;
    color: #000000;
    line-height: 25px;
    letter-spacing: 0.2px;
    font-weight: 400;

}



/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1400px){

.aboutalize{

    grid-template-columns:280px 1fr;

    gap:60px;

}

.aboutalize h3{

    font-size:82px;

}

.aboutalize_content p{

    font-size:26px;

}

}

@media(max-width:1200px){

.hero-image-wrap{

    min-height:650px;

}

.aboutalize{

    grid-template-columns:230px 1fr;

    gap:50px;

}

.aboutalize h3{

    font-size:68px;

}

.aboutalize_content p{

    font-size:22px;

}

}

@media(max-width:992px){

.hero-image-wrap{

    min-height:auto;

}

.aboutalize{

    display:block;

    padding:70px 0;

}

.aboutalize h3{

    font-size:60px;

    margin-bottom:45px;

}

.aboutalize_content p{

    font-size:20px;

    line-height:1.7;

}

.hero-desc{

    font-size:20px;

}

}

@media(max-width:768px){

.aboutalize{

    width:90%;

}

.aboutalize h3{

    font-size:48px;

    text-align:center;

}

.aboutalize_content{

    text-align:center;

}

.aboutalize_content p{

    font-size:18px;

    margin-bottom:28px;

}

.hero-desc{

    font-size:17px;

}

.hero-btns{

    flex-direction:column;


}

.btn-primary,
.btn-dark{
    text-align: center;
    width:100%;
    max-width:320px;

}

}

@media(max-width:480px){

.hero-image-wrap{

    min-height:500px;

}

.aboutalize{

    padding:50px 0;

}

.aboutalize h3{

    font-size:40px;

}

.aboutalize_content p{

    font-size:16px;

    line-height:1.8;

}

.hero-desc{

    font-size:16px;

}

}





.aboutsectitle span{
    font-size: 20px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    color: #111;
}

.aboutsectitle h2{
    font-size: 5vw;
    line-height: 1;
    margin-bottom: 30px;
    color: #111;
    text-transform: uppercase;
}
.aboutsectitle h2 .sarif-heading{
    font-size: 5.5vw;
    display: inline-block;

}
.about_uscontent p{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgb(17 17 17);
    letter-spacing: 0.5px;
}


/****Innser about us page**/
section.inner-banner {
    padding: 50px 50px;
    position: relative;
    background: url("./img/aboutbanner.png") top;
    padding-top: 100px;
    max-height: 50vh;
    min-height: 50vh;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
}

section.inner-banner img {
    position: absolute;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    height: 100%;
    left: 0;
    right: 0;
}

section.inner-banner .container-fluid {
    position: absolute;
    z-index: 2;
    color: #fff;
    transform: translate(-50%, -50%);
    top: 80%;
    left: 50%;
    padding: 0 50px;
}

section.inner-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000001a;
    left: 0;
    top: 0;
    /* backdrop-filter: blur(4px); */
}

.inner-hero-content h1 {
    font-size: 5vw;
    line-height: 1;
    margin-bottom: 5px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.inner-hero-content p {
    font-size: 18px;
    letter-spacing: 0.5px;
}
section.about_box.abouthistory{padding-bottom:50px;}





.blackvisionmission {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height:100vh !important;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background:#fff;
}

.blackvisionmission .text-wrap {
  position: relative;
  overflow: hidden;
  width: 450px;
  height: 80vh;
}

.blackvisionmission .panel-text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 70%;
    text-align: left;
    transform: translateY(100%);
    opacity: 0;
}

.blackvisionmission .p-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  max-width: 600px;
  height: 100vh;
}

.blackvisionmission .block {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
 
    background-image: url("https://images.unsplash.com/photo-1558862964-b0cbbdaaa332?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.blackvisionmission .block.two {
 background-image: url("https://images.unsplash.com/photo-1605302587042-1c4c34c4582c?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}


.blackvisionmission .panel-text h2{
    font-size: 5vw;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.panel-text.text-1{opacity: 1;transform: translate(0px, 50%);}

.blackvisionmission .panel-text p{color:#000;}


section.corevalues {
    padding: 60px 0;
    background: #111111;
    position: relative;
}

section.corevalues .aboutsectitle h2 {
    color: #fff;
    margin-bottom: 20px;
}

.corevaluebox img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.corevaluebox h2 {
    color: #fff;
    font-size: 20px;
}

.corevaluebox p {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
}

.corevaluebox {
    height: -webkit-fill-available;
    padding: 0 15px;
    
}

section.ivestment-section {
    background: #fff;
    position: relative;
    padding: 60px 50px;
        z-index: 1;
}

section.ivestment-section .aboutsectitle h2 {
    margin-bottom: 70px;
}

.investmentbox {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding-left: 20px;
    border-left: 1px solid #ddd;
    height: 100%;
    min-height: 25vh;
}

.investmentbox h3 {
    font-size: 25px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 35px;
}

.investmentbox p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    align-content: flex-start;
    font-size: 15px;
}

.offring_text ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 80%;
}

.offring_text ul li {
    border-bottom: 1px solid rgb(255 255 255 / 29%);
    margin-bottom: 20px;
}

.offring_text ul li b {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.offring_text ul li p {
    margin-bottom: 15px;
}

.offring_text ul li:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}

.offring_text ul li:last-child p {
    margin: 0;
    padding: 0;
}
/*teams*/


.teamsbox {
    width: calc(100% - 30px);
    margin: 0 auto;

    background: radial-gradient(
        44.61% 50% at 48.59% 50%,
        #000 0%,
        #101013 46.9%,
        #191b20 100%
    );

    text-align: center;
    padding: 30px 20px;

    height: 100%;
    min-height: 420px;

    display: flex;
    flex-direction: column;
}

.teamsbox a {
    margin-top: auto;
}

.teamsbox img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto;
    margin-bottom: 20px;

    border-radius: 50%;
    filter: grayscale(43);
}
.teamsbox .about-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 3px;
}

.teamsbox p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    opacity: 0.4;
}
.teamsbox a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 8px;
    background: #31353f;
    width: calc(100% - 60px);
    margin: 0 auto;
    border-radius: 10px;
}

.teamsbox a i {
    font-style: normal;
    text-decoration: none;
}

.teamsbox a {
    text-decoration: none;
    color: #fff;
    margin-top: auto;
}

.teamsbox a svg {
    fill: #fff;
}


.inner-team .btn-close {
    position: absolute;
    right: 10px;
    opacity: 1;
    top: 0px;
    right: -70px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50px;
    color:#fff;
}

.inner-team .modal-content {
    border-radius: 45px;
    border: 0;
    background: radial-gradient(44.61% 50% at 48.59% 50%, #000 0%, #101013 46.9%, #191b20 100%);
}

.inner-team .modal-content img {
    background: #0078c7;
}

.inner-team .modal-content p{
    font-size:14px;
    line-height: 22px;
    margin-top:5px;
    margin-bottom: 5px;
    color:#fff;
}

.inner-team .modal-content p.text-secondary{
    color: #aaadaf !important;
    margin-top: 0;
}
.team-member-card.advisory_member-card img{
    width: 200px;
    height: 200px;
    min-height: unset;
    border-radius: 50%;
    object-fit: cover;
    padding: 10px;
    background-color: #feeec5;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}

.sector_white {
    background: #ffffff;
    position: relative;
}
.sector_white::before,.sector_light::before{content:none !important;}
.sector_light {
    background: #f9f8f5;
    position: relative;
}
.sector_image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.sector_light .core-left *,.sector_white .core-left *{color:#000;}

/* event */

.eventbox {
    width: calc(100% - 30px);
    margin: 0 auto;
    /* background: radial-gradient(44.61% 50% at 48.59% 50%, #000 0%, #101013 46.9%, #191b20 100%); */
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;

    background: linear-gradient(
        180deg,
        #222327 0%,
        #1B1C20 100%
    );
    border: 1px solid rgba(184,158,125,.18);
    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.03);
}
.eventbox img ,
.eventbox video{
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    /* filter: grayscale(43); */
    transition: all 0.3s ease;
}
.eventbox:hover img{
     filter: grayscale(0);  
     transform: scale(1.1); 
}

.event-date{
    text-align: end;
}
.event-content{
    padding: 20px 15px;
}


.event-content .event-title{
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}
.eventbox p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
}
.event-content a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 8px;
    background: #31353f;
    width: calc(100% - 60px);
    margin: 0 auto;
    border-radius: 10px;
}


/* blog */

.blogbox {
    width: calc(100% - 30px);
    margin: 0 auto;
    background: radial-gradient(44.61% 50% at 48.59% 50%, #000 0%, #101013 46.9%, #191b20 100%);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
border:1px solid rgba(255,255,255,.06);
    border: 1px solid rgba(184,158,125,.18);
    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.03);
}
.blogbox img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    /* filter: grayscale(43); */
    transition: all 0.3s ease;
}
/* .blogbox:hover img{
     filter: grayscale(0);  
     transform: scale(1.1); 
} */

.blog-date{
    text-align: end;
}
.blog-catagory{
text-align: start;
}
.blog-content{
    padding: 20px 15px;
}

.blog-content .blog-title{
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-content .blog-detail{
display: flex;
align-items: center;
justify-content: space-between;
}
.blog-content .blog-detail h4{
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    opacity: 0.4;
}


.blog-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 8px;
    background: #31353f;
    width: calc(100% - 60px);
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-content a i {
    font-style: normal;
    text-decoration: none;
}

.blog-content a {
    text-decoration: none;
    color: #fff;
}

.blog-content a svg {
    fill: #fff;
}

.blogbox p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
}

/*new sector*/
.sectorbox {
    background: #FEFBF8;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sectorbox img {
    max-height: 150px;
    width: 100%;
    object-fit: cover;
    height: 200px;
    margin-bottom: 20px;
}

.sectorbox h2 {
    font-weight: 600;
    font-style: normal;
    line-height: 30px;
    font-size: 25px;
    color: #553D23;
    word-break: break-word;
    margin-bottom: 20px;
}

.sectorbox p {
    font-size: 14px;
    opacity: 0.7;
    display: block;
    width: 100%;
    margin-top: auto;
}

.sectorbox a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-bottom: 1px solid #000;
}

.sector_modalcontent h2 {
    color: #fff;
    font-size: 25px;
}

.sector_modalcontent h3 {
    color: #ddd;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.sector_textbox {
    padding: 10px 0;
}

.sector_modalcontent {
    padding: 10px;
}
.sector_content {
    max-height: 50vh;
    overflow-y: auto;
}




/*new sector*/
.portfolio-box{
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fdfcf9 20%,
        #f9f8f5 55%,
        #f3f1ec 100%
    );

    border: 1px solid rgba(255,255,255,.7);

    box-shadow:
        0 20px 45px rgba(0,0,0,.15),
        inset 0 1px 0 rgba(255,255,255,.9);

    border-radius:20px;
    padding:20px;
    height:100%;

    color:#222;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;

    transition:.35s ease;
}
/* Soft glass highlight */
.portfolio-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
            rgba(255,255,255,.9),
            transparent 45%);
    pointer-events:none;
}

/* .portfolio-box::after{
    content:"";
    position:absolute;
    left:-30%;
    top:-80%;
    width:80%;
    height:220%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:rotate(20deg);
    pointer-events:none;
} */


.portfolio-head{
    display: flex;
    align-items: center;    
    justify-content: space-between;
    margin-bottom: 20px;
}

.portfolio-box h2{
font-size:28px;
font-weight:500;
    line-height:30px;
    margin-bottom: 0px;
    transition: all .3s ease;
    position:relative;
    z-index:2;
}


.portfolio-box:hover h2{
font-size:30px;
}



.portfolio-head img{
    z-index:4;
    height:40px;
    width:auto;
    transition: all .3s ease;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
}

/* .portfolio-box:hover img{
    transform: scale(1.2);
} */
.portfolio-box p{
    font-size:14px;
    opacity:.75;
    width:100%;
    margin-top:auto;
    position:relative;
    z-index:2;
}

/* Glass Capsule Button */


/* .portfolio-box a{
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 15px;
    position: relative;
    transition: 600ms all;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px;
    outline:none;
    white-space: nowrap;
} */



.portfolio-box a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #afbd0c61;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    filter: blur(5px);
    transition: 300ms all;
}

.portfolio-box a:hover::before {
    transform: translateY(-4px)scale(1.5);
    width: 35px;
    height: 15px;
}


/* Responsive */

@media(min-width:1024px) and (max-width:1366px) {

    .herocontent{padding-bottom: 35px;}
    .logo img {
        width: 150px;
    }
    .navar a img{height:55px;}
}



/* Responsive */
@media(max-width:1200px) {
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .grid-left h1 {
        font-size: 100px;
    }

    .herobottom-content h2 {
        font-size: 50px;
    }
   

    .core-left h2 {
        font-size: 70px;
        margin-bottom: 60px;
    }
}


@media(max-width:1023px) {

    .showinmobile{display: block;}
    header .navar>a{display: none;}
    .hero-title{font-size: 6vw;font-weight: 700;padding-bottom: 20px;}
    .brush-stroke{display: none;}
    .spacer{height: auto;}
    .hero-inner{height:auto;}
   
    .hero{padding:100px 20px 50px 20px;height: auto;}
    .herocontent{padding-bottom:0;}
    header{padding: 15px 0px;}
    .logo img { height: 50px;}
    section.about_box,.about-section,.core-philosophy{padding: 50px 15px 50px;}.about_box .row > div{width:100%;}
    .aboutsectitle h2,.investment-section h2,.aboutsectitle h2 .sarif-heading,.core-left h2, .core-left h2 span.light,.core-left h2 span.bold,.herobottom-content h2,.herobottom-content h2 span{font-size: 35px;font-family: "Google Sans Flex", sans-serif;font-weight:600;margin-bottom: 5px;}
    .aboutsectitle span,.sub-title{font-size:15px;margin-bottom: 5px;}.about_uscontent p,.core-text p{margin-bottom:10px;}
    .section-tag{display: none;}
    .investment-section h2{margin-bottom: 30px;}
    .inv-img{padding-right: 0;}
    .positioning-wrap{margin-top:40px;}
    .core-left h2 span.light{margin:0;}
    .core-left h2{margin-bottom:20px;}
    .core-text p{font-size: 16px;}
    .core-card{padding:10px;}
    .card-image img{height: 250px;}
    .core-philosophy .sticky-box{top:auto;border-radius: 8px;}
    .herobottom-card{height:auto;width:calc(100% - 30px);}
    .herobottom-content{max-width: 100%;left:auto;right: auto;padding:50px 15px;}
    .herobottom-content a{padding:16px 10px;}
    .grid-left h1, .grid-left h1 span{ font-size: 60px;}
    .about-box, .nav-box{padding: 20px 20px;border-top: 1px solid rgb(255 255 255 / 19%);}
    .nav-box a{font-size: 13px;}
    .core-container {flex-direction: column;}
    .core-text{max-width: 100%;}
    .core-left, .core-card { width: 100%;} 

    .blackvisionmission .p-wrap{display: none;}
    .blackvisionmission,.blackvisionmission .text-wrap{height: auto !important;width: 100%;padding:20px 0}
    .blackvisionmission .panel-text{position: relative;transform: none;padding: 20px 30px;opacity: 1;}
    .corevalues .row .corevaluebox{width:33%;} .corevalues .row {flex-wrap:wrap;}
    .offring_text ul{width:100%;}
    section.inner-banner{min-height: 35vh;}
    
}


@media (max-width: 991px) {
  .stats-inner {
    flex-direction: column;
    gap: 40px;
  }

  .stat-box h3 {
    font-size: 40px;
  }

  .stat-box p {
    font-size: 20px;
  }

  .logo-track img {
    height: 40px;
    margin: 0 30px;
  }
   .corevalues .row .corevaluebox,.ivestment-section .row > div{width:100%;height:auto;} .corevalues .row,.ivestment-section .row {flex-wrap:wrap;}
   .investmentbox{border-left: 0;border-bottom: 1px solid #ddd;padding-left: 0px;padding-bottom: 20px;min-height: auto;}
   .offring_text ul{width:100%;}
}


/* Responsive */

@media(max-width:768px) {

    .eventbox img ,
.eventbox video{
    height: 185px;
}
    .portfolio-head img {
        height: 30px;
    }
    .core-philosophy {
        padding: 50px 15px;
    }

    .core-left h2 {
        font-size: 45px;
    }

    .core-text p {
        font-size: 16px;
    }

    .core-card {
        flex-direction: column;
    }

    .card-image,
    .card-content {
        width: 100%;
    }

    .card-content h3 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 26px;
    }

    .positioning-wrap h2 {
        font-size: 20px;
    }

    .inline-img {
        width: 50px;
        height: 28px;
    }
    .herobottom-card {
        height: auto;
    }

    .herobottom-content {
        left: auto;
        right: auto;
    }

    .herobottom-content h2,.herobottom-content h2 span {
        font-size: 28px;
    }

    .herobottom-content p {
        font-size: 16px;
    }

    .grid-left h1 {
        font-size: 65px;
    }

    .about-box p {
        font-size: 16px;
    }

    .socials ul,
    .nav-box ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    .inner-team .btn-close {
        right: auto;
        top: -60px;
        left: calc(50% - 20px);
    }
    .inner-team .modal-content .modal-body {
        max-height: 75vh;
        overflow-y: scroll;
    }
    .sector_content {
        max-height: 100vh;
        overflow-y: auto;
    }
    section.inner-banner{background-attachment: unset;}
}

    .commitment-strip {
    background: #031b3d;
    color: #fff;
    overflow: hidden;
}

.commitment-strip .container-fluid {
    padding: 0;
}

.commitment-row {
    min-height: 500px;
}

.commitment-image {
    min-height: 500px;
    position: relative;

    background:
        linear-gradient(
            to right,
            transparent 45%,
            #031b3d 100%
        ),
        url("img/airplane.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commitment-content {
    padding: 70px 50px 50px 50px;
}

.commitment-label {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.commitment-content h2 {
    font-size: 55px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 85px;
}

.commitment-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}



    .herobottom-card ol{
     text-align: start;
     max-width: 680px;
     margin: auto;
    }


/* sayings */

                .manifesto-section{

    background:#F7F5EF;

    position:relative;

    overflow:hidden;

    padding:100px 0;

}


.section-tag{

    color:#2d6cdf;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

}



.manifesto-text{

    color:#666;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}


.quote-card{

    background:#fff;

    border-radius:30px;

    padding:45px;

    height:100%;

    transition:.4s;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.beige-bg{
   background: linear-gradient(
    145deg,
    #F8F2E8 0%,
    #F1E3C8 100%) !important;
}

.quote-card:hover{

    transform:translateY(-10px);

}


.quote-card.dark{

    background:#111;

    color:#fff;

}


.quote-mark{

    font-size:45px;

    color:#B38F4F;

    line-height:1;

    margin-bottom:30px;

}


.quote-card.dark .quote-mark{

    color:#4ea0ff;

}


.quote-text{

    font-size:20px;

    line-height:1.3;

    font-weight:500;

    margin-bottom:40px;

}


.quote-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    height:100%;

    display:flex;
    flex-direction:column;
}

.quote-author{
    margin-top:auto;      /* Pushes author to the bottom */
    text-align:right;     /* Aligns author to the right */
    font-size:18px;
    color:#888;
    font-style:italic;
}


.quote-card.dark .quote-author{

    color:#bbb;

}


.quote-image{

    border-radius:30px;

    width:100%;

    height:100%;

    object-fit:cover;

    min-height:520px;

}


.highlight-quote{

    margin:90px 0;

    background:#0b2344;

    color:#fff;

    border-radius:40px;

    padding:90px;

    text-align:center;

}


.big-quote{

    font-size:48px;

    line-height:1.4;

    font-weight:300;

    max-width:1000px;

    margin:auto;

}


.highlight-author{

    margin-top:40px;

    letter-spacing:2px;

    color:#88b9ff;

    text-transform:uppercase;

}


@media(max-width:991px){

.manifesto-heading{

font-size:42px;

}

.quote-text{

font-size:22px;

}

.big-quote{

font-size:30px;

}

.highlight-quote{

padding:45px 25px;

}

.quote-card{

padding:35px;

}

.quote-image{

min-height:350px;

}

}
     



  .blog-hero{
    background:#111;
    padding:70px 0;
    margin-top: 106px;
}

.blog-hero-card{

    position:relative;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.blog-hero-card img{

    width:100%;
    height:580px;
    object-fit:cover;
    display:block;

}

.blog-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:70px;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.88) 5%,
    rgba(0,0,0,.55) 35%,
    rgba(0,0,0,.15) 100%);

}

.blog-category{

    display:inline-block;
    width:fit-content;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:14px;

    margin-bottom:20px;

}

.blog-title{

    color:#fff;

    font-size:45px;

    font-weight:600;

    line-height:1.15;

    max-width:850px;

}

.blog-meta{

    margin-top:28px;

    display:flex;

    gap:35px;

    flex-wrap:wrap;

}

.blog-meta span{

    color:#ddd;

    font-size:15px;

}

.blog-meta i{

    color:#2384db;

    margin-right:8px;

}

@media(max-width:768px){

.blog-hero-card img{

height:380px;

}

.blog-overlay{

padding:30px;

}

.blog-title{

font-size:34px;

}

.blog-meta{

gap:15px;

}

}  




.blog-content2{

    background:#111;

    padding:60px 0;

}

.content-wrapper{

    max-width:860px;

    margin:auto;

    color:#ddd;

}

.content-wrapper hr{

    border-color:#2b2b2b;

    margin:45px 0;

}

.lead-text{

    font-size:24px;

    line-height:1.8;

    color:#fff;

    font-weight:300;

}

.content-wrapper h2{

    color:#fff;

    font-size:34px;

    margin-top:55px;

    margin-bottom:20px;

    position:relative;

    padding-left:22px;

}

.content-wrapper h2::before{

    content:"";

    position:absolute;

    left:0;
    top:0px;

    width:5px;

    height:38px;

    background:#2384db;

    border-radius:20px;

}

.content-wrapper p{

    font-size:17px;

    line-height:2;

    color:#c9c9c9;

}

.content-wrapper ul{
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}
.content-wrapper li{
    position: relative;
    padding-left: 0;
    margin-bottom: 14px;
    color: #c9c9c9;
    font-size: 16px;
    line-height: 1.3;
}

.content-wrapper h5{
    font-weight: 700;
}

.quote-box{

    margin:60px 0;

    padding:45px;

    background:#181818;

    border-left:5px solid #2384db;

    border-radius:20px;

    position:relative;

}

.quote-box i{

    position:absolute;

    right:30px;

    top:20px;

    font-size:60px;

    color:#2384db;

    opacity:.2;

}

.quote-box p{

    color:#fff;

    font-size:26px;

    line-height:1.6;

    margin:0;

    font-style:italic;

}

@media(max-width:768px){

.blog-content{

padding:60px 0;

}

.lead-text{

font-size:20px;

}

.content-wrapper h2{

font-size:28px;

}

.quote-box{

padding:30px;

}

.quote-box p{

font-size:20px;

}

}


/* footer */

.footer-modern{
    background:#050505;
    position:relative;
    overflow:hidden;
    padding:40px 50px ;
    padding-bottom: 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-modern::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    left:20%;
    top:50%;
    transform:translateY(-50%);
    background:radial-gradient(circle,
        rgba(255,255,255,.12),
        transparent 70%);
    filter:blur(45px);
    pointer-events:none;
}

.footer-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
}

.footer-left{
    display:flex;
    flex-direction:column;
    /* justify-content:space-between; */
}

.footer-logo{
    width:220px;
    filter:brightness(0) invert(1);
    margin-bottom:30px;
}

.footer-about{
    max-width:340px;
    color:rgba(255,255,255,.65);
    line-height:1.9;
    font-size:15px;
    margin-bottom:40px;
}

.footer-social{
    display:flex;
    margin-top: 40px;
    gap:18px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.footer-social a:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

.footer-right{
    display:flex;
    justify-content:space-between;
    gap:120px;
}

.footer-info{
    max-width:340px;
}

.info-block{
    margin-bottom:30px;
}

.info-block h5{
    color:#fff;
    font-size:18px;
    margin-bottom:14px;
    font-weight:600;
}

.info-block p,
.info-block a{
    color:rgba(255,255,255,.68);
    text-decoration:none;
    line-height:1.8;
    font-size:15px;
}

.footer-menu{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.footer-menu a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    transition:.3s;
}

.footer-menu a:hover{
    color:#bfbfbf;
    transform:translateX(8px);
}

.footer-bottom{
    margin-top:0px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    text-align:center;
    color:rgba(255,255,255,.45);
    font-size:14px;
}

@media(max-width:991px){

.footer-grid{
    grid-template-columns:1fr;
    gap:60px;
    text-align: center;
}

.footer-right{
    flex-direction:column;
    gap:50px;
}

.footer-left{
    align-items: center;
}

.footer-menu{
    gap:15px;
}

.footer-bottom{
    margin-top:45px;
}

}

@media(max-width:576px){

.footer-modern{
    padding:40px 20px 20px;
}

.footer-logo{
    width:180px;
    margin-bottom: 0;
}

.footer-social a{
    width:42px;
    height:42px;
}

.info-block h5{
    font-size:17px;
}

}

