/* Main Section */

.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url('../../assets/management/arvind-harlalka-banner-min.jpg') center / cover no-repeat;
    height: 100vh;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 30%;
    font-family: Urbanist;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #ffffff;
}

@media screen and (max-width:1024px) {
    .hero-header {
        padding: 40px;
    }

    .hero-header>h1 {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url('../../assets/management/arvind-harlalka-banner-min.jpg') right / cover no-repeat;
        padding: 0px;
        align-items: center;
    }

    .hero-header>h1 {
        width: 50%;
    }
}

@media screen and (max-width: 430px) {
    .main-hero {
        padding: 0px;
    }

    .hero-header>h1 {
        width: 100%;
        font-size: 2.617rem;
    }

}

.note-container {
    max-width: 800px;
    margin: 0 auto;
}

.note-container>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 16px;

}

.note-container>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.618;
    margin-bottom: 16px;

}

.note-container>.blockquote {
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding: 50px;
    margin: 64px 0;
}

.note-container>.blockquote>p {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
}

.note-container>ul {
    margin: 20px 0;
    padding-left: 20px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
}

@media screen and (max-width:430px) {
    .note-container {
        margin-top: 64px;
    }

    .note-container>p,
    .note-container>ul {
        font-size: 1rem;
    }

    .note-container>.blockquote {
        border-top: 2px solid #1a1a1a;
        border-bottom: 2px solid #1a1a1a;
        padding: 32px 20px;
        margin: 64px 0;
    }

    .note-container>.blockquote>p {
        font-family: Urbanist, sans-serif;
        font-size: 1.618rem;
        font-weight: 600;
    }

}