/* =========================
   HERO SECTION
========================= */

.banner--section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1;
    transform-origin: center center;
    will-change: transform;
}


.banner--bg-image.banner--bg-mobile{
  display: none;
}


.banner--bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}


.banner--bg-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.about--section {
  padding-top: 70px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner--title
 {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 50px 20px 25px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background: rgba(75, 75, 65, 0.48);
    backdrop-filter: blur(74px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
}

.banner--title img {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: auto;
    margin: 0;
    filter: brightness(0) invert(1);
}

/* =========================
   ABOUT CONTENT SECTION
========================= */
.about--content--section {
    position: relative;
    width: 100%;
    padding: 55px 0 65px;
    z-index: 2;
    overflow: hidden;
}
.about--content--section h1 {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-family: 'LT Superior Serif';
    color: var(--black);
}
.about--content--section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #E8F0ED 0%,
        #F9E7D6 100%
    );
    z-index: 0;
}

.about--content--wrapper {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    column-gap: 75px;
    align-items: start;
    padding: 0 50px;
}
.about--text a {
    color: #000000;
}
/* Profile Image */

.about--image {
    width: 100%;
}

.about--image img {
    width: 100%;
    height: 415px;
    display: block;
    object-fit: cover;
}


/* Content */

.about--text p {
    margin: 0 0 15px;

    font-family: "Inter", sans-serif;
    /* font-size: 18px; */
    font-weight: 400;

    color: #000000;
}

.about--text p:last-of-type {
    margin-bottom: 42px;
}


/* Download Link */

.download--profile {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 6px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #111;
    text-decoration: none;

    border-bottom: 1px solid #111;
}

.download--icon {
    font-size: 19px;
    transform: translateY(-2px);
}

.download--profile:hover {
    opacity: 0.6;
}

/* =========================
   AWARDS & RECOGNITIONS
========================= */

.awards--wrapper {
    position: relative;
    z-index: 1;
    padding: 50px;
    padding-top: 100px;
}


/* Header */

.awards--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.awards--header h2 {
    margin: 0;
    font-family: "LT Superior Serif", serif;
    font-size: 36px;
    font-weight: 400;
    color: #000000;
}


/* View All */

.view--all {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 128px;
    border-bottom: 1px solid #000;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.view--all--arrow {
    font-size: 23px;
    font-weight: 300;
}

.view--all:hover {
    opacity: 0.6;
}


/* Awards Grid */

.awards--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}



.award--card {
    padding: 40px 15px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



.award--logo {
    width: 100%;
    margin-bottom: 20px;
}

.award--logo img {
    display: block;
    width: 100%;
    object-fit: contain;
    height: 100px;
}


/* Award Description */

.award--card p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #000000;
}



@media (max-width: 768px) {

    .banner--section {
        position: sticky !important;
        top: 0 !important;
        height: 100svh;
        min-height: 100svh;
        z-index: 1;
        overflow: hidden;
    }


    .banner--bg-image.banner--bg-mobile {
        display: block;
    }
    .banner--bg-image {
        display: none;
    }

    .banner--section::before {
        height: 50%;
    }

	.banner--title {
        left: 15px;
        right: 15px;
        bottom: 20px;

        width: auto;
        max-width: none;

        padding: 60px 22px 30px;

        font-size: 16px;
        line-height: 1.2;
    }

    .banner--title img {
        top: 25px;
        width: 24px;
    }

    /* =====================
       About Section
    ===================== */

    .about--content--section {
        padding: 40px 15px 60px;
        box-sizing: border-box;
        padding-bottom: 30px;
    }
    .about--content--section h1{
        padding-left: 0px;
    }

    .about--content--wrapper {
        max-width: 100%;

        display: flex;
        flex-direction: column;

        margin: 0;
                padding: 0;
    }


    /* Profile Image */

    .about--image {
        width: 100%;
        margin-bottom: 35px;
    }

    .about--image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
    }


    /* Biography */

    .about--text {
        width: 100%;
        max-width: 100%;
    }

    .about--text p {
        /* font-size: 16px; */
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .about--text p:last-of-type {
        margin-bottom: 20px;
    }


    /* Download Profile */

    .download--profile {
        gap: 12px;
        font-size: 12px;
        line-height: 16px;
    }

    .download--icon {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }


    /* =====================
       Awards
    ===================== */

    .awards--wrapper {
        padding: 50px 0;
        padding-bottom: 0px;
    }


    /* Awards Heading */

    .awards--header {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
        text-align: left;
    }

    .awards--header h2 {
        max-width: 100%;
        font-size: 22px;
        line-height: 1.1;
    }

    .view--all {
        width: 95px;

        font-size: 11px;
        line-height: 16px;
    }

    .view--all--arrow {
        font-size: 20px;
    }


    /* Award Cards */

    .awards--grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .award--card {
        width: 100%;
        padding: 35px 20px;
        box-sizing: border-box;
    }

    .award--logo {
        /* height: 150px; */
    }

    .award--card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

