@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    /* font-family: Arial, Helvetica, sans-serif; */
}

body {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    background: rgb(255, 255, 255);
}

i {
    /* color: #0c0f12c0; */
    color: #1565a2;
}

span, .blue {
    color: #1184dbd1;
}

p i {
    font-weight: 800;
    color: #1184dbd1;
    /* color: #010204bb; */
}

hr {
    width: 30%;
    left: 0;
}

header {
    position: sticky;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(2px);
    box-shadow: 1px 1px 2px #0c0f124d;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
}

header .sticky {
    padding: 5px 5%;
}

header img {
    width: 250px;
    height: auto;
    padding: 5px;
}

li,
a {
    position: relative;
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    color: #0c0f12;
}

header .logo {
    cursor: pointer;
    position: relative;
}

.navlinks {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navlinks li {
    /* display: inline-block; */
    position: relative;
    padding: 0 15px;
}

.navlinks li a {
    transition: all 0.3s ease;
}

.navlinks li a:hover {
    color: #0d2648;
    font-weight: 500;
}



nav {
    /* position: sticky; */
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 0 4%;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 100px;
}

nav img {
    width: 80px;
}

nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #0c0f12;
}

nav a:hover {
    background-color: #f9fbff;
}

nav li:first-child {
    margin-right: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 9999;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.407);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-btn {
    display: none;
}

@media screen and (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .sidebar {
        width: 100%;
    }
}



/* END OF HEADER EDITING */



.hero {
    top: 0;
    position: relative;
    width: 100%;
    height: 40vh;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: #0c0f12;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0c0f12, #0c0f12);
    mix-blend-mode: multiply;
    opacity: .98;
    z-index: 1;

}

.container {
    position: relative;
    width: 100%;
    /* height: 30vh; */
    /* padding: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.container h1 {
    font-weight: 900;
    font-size: clamp(45px, 6vw, 70px);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.container h1 span {
    color: #0d65c7;
}

.container h2 {
    /* font-family: 'Times New Roman', Times, serif; */
    font-weight: 700;
    /* color: #fff; */
    color: #f9faff;
    font-size: 40px;
    text-align: center;
    z-index: 10;
}

.container h2 i {
    color: #4981c9;
}

.hero .container p {
    font-weight: 500;
    font-size: clamp(18px, 4vw, 32px);
    /* font-size: 32px; */
    text-align: left;
    color: #fff;
    z-index: 10;
}

/* 
.container p span {
    color: #2354f1;
} */

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;

    z-index: -1;
}


/* RESPONSIVENESS */

@media screen and (max-width: 500px) {
    .hero {
        width: 100%;
        padding: 20px;
        height: 35vh;
    }

    .container h1 {
        max-width: 300px;
        font-size: 60px;
        margin-bottom: 10px;
        line-height: 50px;
    }

    .hero .container p {
        text-align: left;
        /* font-weight: 500; */
        /* font-size: 18px; */
        max-width: 300px;
    }

    .container h2 {
        font-size: 25px;
    }
}




/* WELCOME TEXT */


.welcome {
    position: relative;
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #0c0f12;
}

.welcome .featured-text {
    display: flex;
    /* height: 20%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.welcome .featured-text h2 {
    position: relative;
    padding-top: 50px;
    margin-bottom: 10px;
    /* font-size: 22px; */
    font-weight: 600;
    /* color: #0d1419; */
    /* color: #041832cd; */
    line-height: 30px;
    color: #6e8698;

}


.welcome .featured-text p {
    max-width: 900px;
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 30px;
    /* color: #0d1419ec; */
    color: #83aece;
    font-weight: 300;
}

.welcome .featured-text p i {
    font-weight: 500;
}

hr {
    width: 20%;
    height: .1px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #7194e1;
    opacity: .2;
}

/* CARD SECTION */

.card-container {
    width: 100%;
    padding: 50px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    gap: 30px;
}


.top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-container .top-text h2 {
    padding: 0;
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: center;
    color: #0c0f12;
    font-weight: 600;
}

.card-container .top-text h2 span{
    /* font-weight: 550; */
    color: #2F4156;
    /* color: #2c3847; */
}


.card-container .top-text p {
    text-align: center;
    max-width: 800px;
    font-size: 18px;
    color: #0c0f12bb;
    font-weight: 550;
    margin-bottom: 10px;
}

.card-wrapper {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* max-width: 1200px; */
    /* margin: 0 0 20px 35px;
    padding: 0 0 20px 0px; */
    overflow: hidden;
}



.card-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    width: 300px;
    /* min-height: 350px; */
    display: block;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: .5rem;
    text-decoration: none;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.166);
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}

.card-list .card-link .card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: .75rem .75rem 0 0;
    margin: 10px 0;
}

.card-list .card-link .badge {
    padding: 10px;
    font-size: 16px;
    font-weight: 650;
    width: fit-content;
    margin: 10px;
    color: #0c0f12d0;
}

.card-list .card-link .card-title {
    font-size: .85rem;
    color: #0c0f12c0;
    font-weight: 450;
    padding: 0 10px;
    margin: 10px;
}

.card-list .card-link .card-title span {
    color: #0c0f12c0;
    font-weight: 550;
}

.card-list .card-link .in-sector {
    font-size: 10px;
    text-align: left;
    color: #0c0f12c0;
    font-weight: 500;
    margin: 20px 0 10px 20px;
    margin-bottom: 10px;
}

.card-wrapper .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    opacity: .5;
    background: #222f39;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: .7;
}

.card-wrapper .swiper-slide-button {
    color: #0c0f12;
    opacity: .7;
    margin: -35px 70px;
}


@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-container .top-text h2,
    .card-container .top-text p {
        padding: 0 20px;
        text-align: center;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .card-container .top-text h2, .card-container .top-text p{
        text-align: center;
    }
}


/* .card-image {
    position: relative;
    height: 150px;
    width: 150px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
} */ 



/* END OF CARD EDITING */


/* PHILOSOPHY SECTION */


.philosophy {
    padding: 50px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to right, #0c0f12, #000510);
}

.philosophy h2 {
    width: 100%;
    text-align: center;
    margin: 50px 0 30px 0;
    color: #6e8698;
    padding: 0 10px;
}


.p-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* flex-direction: column; */
    padding: 20px 5%;
    gap: 35px;
    margin-bottom: 50px;
    color: #6e8698;
}

.p-text p {
    line-height: 30px;
    max-width: 700px;
    color: #556c7de8;
}

/* RESPONSIVENESS */

@media screen and (max-width: 500px) {
    .p-text {
        flex-direction: column;
    }
}

/* INSIGHTS EDITING */




.insights {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    margin: 0;
    background-color: #f9faff;
}

.insights .top-text {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 50px;
}

.insights .top-text .in-opening,
.insights .in-item .in-sector {
    font-size: 10px;
    text-align: left;
    /* color: #0d65c7; */
    color: #0c0f12c0;
    margin-bottom: 20px;
}

.insights .top-text .in-closing a {
    font-size: 14px;
    text-align: left;
    /* bottom: 0; */
    color: #2e3a48fc;
    margin-top: 20px;
    cursor: pointer;
}

.insights .top-text .in-closing a:hover {
    font-weight: 500;
    color: #0d65c7;
    transition: .3s ease-in-out;
}


.insights .top-text h2 {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: left;
    color: #2c3847;
    font-weight: 650;
}

.insights .top-text p {
    text-align: left;
    max-width: 550px;
    font-size: 15px;
    color: #0c0f12bb;
    font-weight: 400;
    margin-bottom: 20px;
    /* padding-left: 5px; */
}

.insights .in-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1000px; */
    gap: 15px;
    margin-top: 20px;
    padding: 50px;
    overflow: hidden;
}

.in-container .in-item {
    width: 350px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    background: #f9faff;
    border: 1px solid transparent;
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.166);
}

.in-item .in-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}

.in-item .in-sector {
    /* font-size: 10px;
    text-align: left;
    color: #0d65c7; */
    margin: 20px 0 10px 20px;
}

.in-heading {
    font-size: 1.1rem;
    text-align: left;
    color: #18232c;
    margin: 0 20px;
    font-weight: 500;
}

.in-text {
    padding: 10px 20px;
    color: #0c0f12bb;
    font-size: .8rem;
}

.btn {
    padding: 5px;
    letter-spacing: .5px;
    border: none;
    margin: 10px 10px 20px 20px;
    font-weight: 300;
    color: #0d65c7;
    cursor: pointer;
    font-size: 12px;
    background: none;
}

.in-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 0 0;
}


/* RESPONSIVENESS */

@media screen and (max-width: 1200px) {
    .insights {
        flex-direction: column;
    }

    .insights .top-text {
        /* align-items: center;
        justify-content: center; */
        padding-bottom: 0;
    }

    .insights .top-text p {
        max-width: 800px;
    }

    .insights .top-text h2,
    .insights .top-text p,
    .insights .top-text .in-closing a {
        text-align: left;
    }

    .insights .in-container {
        padding-top: 0;
    }
}


@media screen and (max-width: 500px) {
    .insights {
        flex-direction: column;
        padding: 20px 10px;
        /* margin-bottom: 20px; */
    }

    .in-wrapper {
        padding: 10px;
    }

    .insights .top-text {
        padding: 20px 0;
    }

    .insights .top-text h2,
    .insights .top-text p {
        max-width: fit-content;
        padding: 0 10px;
        text-align: left;
    }

    .insights .in-container {
        padding: 0;
        gap: 20px;
    }
}

@media screen and (max-width: 550px){
    .insights .in-container {
        flex-direction: column;
    }
}



/* FOOTER EDITING */


footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: linear-gradient(to right, #0c0f12, #000510);
    color: hsl(203, 14%, 82%);
    padding: 50px 0 30px;
    font-size: 14px;
    line-height: 20px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

.col .logo {
    width: 80px;
    margin-bottom: 20px;
}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
}

.col .email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    cursor: pointer;
}

.col ul li{
    list-style: none;
    margin-bottom: 12px;
}
.col ul li a{
    text-decoration: none;
    color: white;
}

.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

footer hr{
    width: 70%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
}

.underline{
    width: 100%;
    height: 3px;
    background: #767676;
    border-radius: 3px;
    /* position: absolute; */
    top: 25px;
    left: 0;
}

@media screen and (max-width: 700px){
    .col {
        flex-basis: 100%;
    }
    
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }
}