
@font-face {
    font-family: Adobe-Garamond-Pro;
    src: url(../fonts/AGaramond-Regular.otf);

}

@font-face {
    font-family: Proxima-Nova;
    src: url(../fonts/Proxima-Nova-Regular.otf);    
}


:root {
    --white: #ffffff;
    --light-white:#ffffffe5;
    --blue: #003181;
    --bg-color: #E6E7E8;
    --black: #1f2937;
    --yellow: #FFC51D;
    --main-font: Adobe-Garamond-Pro;
    --sec-font: Proxima-Nova;
}


.backimg {
    z-index: -1;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

svg:not(:root) {
    overflow: hidden;
}

.transparent_svg {
    opacity: 0;
    fill: transparent;
    stroke: transparent;
    stroke-miterlimit: 0;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    max-width: 1212px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.small-container {
    max-width: 780px;
}

/** header **/

.header-container {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    /* position: absolute; */
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
}

.header-container,
.header-container .logo img {
    transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.header-container.stick {
    background-color: var(--blue);
    height: 92px;
    border-bottom: 1px solid #ffffff33;
}

.header-container.stick .logo img {
    max-width: 114px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    column-gap: 1rem;
}

.logo {
    display: flex;
    width: 100%;
}

.logo a {
    max-width: 210px;
    width: 100%;
}

.btn {
    padding: 0.75rem 1.375rem;
    border: 1px solid var(--white);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    color: var(--white);
    font-family: var(--sec-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    display: flex;
    margin: 0 auto;
    width: max-content;
    min-width: 152px;
    justify-content: center;
}

.btn-primary {
    background-color: transparent;
    min-width: 104px;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--blue);
}

.btn-sec:hover {
    background-color: var(--white);
    color: var(--blue);
    border-color: var(--blue);
}

.btn-sec {
    background-color: var(--blue);
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 3rem;
}

.inner-banner h2 {
    font-size: 3.75rem;
}

.inner-banner .h2 {
    font-size: 3.75rem;
}


h3 {
    font-size: 3rem;
}

h4 {
    font-size: 1.875rem;
}

h5 {
    font-size: 0.75rem;
}

.cnt-data p, .condition p, .footer-details p {
    font-size: 0.875rem;
}

p {
    font-size: 1rem;
}

/** hero banner **/

.banner {
    height: 100svh;
    position: relative;
}

.banner .backimg {
    background-position: 50% 50%;
}

header {
    position: relative;
    z-index: 2;
}

.hero-banner .container {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -68%);
    z-index: 1;
}

.banner-content {
    max-width: 595px;
}

.banner-content h1 {
    color: var(--white);
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 600;
    line-height: 1.06;
    margin-bottom: 1rem;
}

.banner-content p {
    color: var(--light-white);
    font-size: 1.5rem;
    margin-top: 1.875rem;
    line-height: 1.25;
}

/** Under Maintain **/

.under-maintain {
    /* background-color: #002E79; */
    background-image: url(../images/PLC_gradient.png);
    background-position: center center;
    background-size: cover;
    padding-top: 4rem;
    padding-bottom: 5rem;
    color: var(--white);
}

.img-head {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-head img {
    max-width: 88px;
    width: 100%;
    aspect-ratio: 1;
}

.img-head::before,
.img-head::after {
    background: var(--white);
    height: 1px;
    display: flex;
    content: "";
    width: calc(100% / 2 - 4.5rem);
    position: absolute;
    top: 50%;
}

.img-head::before {
    left: 0;
}

.img-head::after {
    right: 0;
}

.inner-maintain {
    max-width: 1030px;
    margin: 0 auto;
    text-align: center;
    visibility: hidden;
}

.heading h2 {
    margin-top: 1.875rem;
    margin-bottom: 2rem;
}

h2 {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 600;
    line-height: 1.21;
    margin-bottom: 1rem;
}

.under-maintain p {
    color: var(--light-white);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/** blocks **/

.blocks h2 {
    color: var(--blue);
}
.blocks {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.block-one {
    background-color: var(--bg-color);
    padding: 4rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    margin: 0 auto;
    text-align: center;
}

h3 {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--blue);
}

p {
    font-family: var(--sec-font);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--black);
}

.block-one .btn {
    margin-top: 1.5rem;
}

h4 {
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    line-height: 1.06;
    margin-bottom: 1rem;
    color: var(--blue);
}

.block-two {
    margin-top: 2.5rem;
}

.block-two p>a {
    text-decoration: underline;
}

.block-one+.block-one {
    margin-top: 1.5rem;
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-group .btn {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 1rem;
}

/** footer **/

footer {
    background-color: var(--blue);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

h5 {
    font-family: var(--sec-font);
    font-style: normal;
    font-weight: 500;
    line-height: 1.11;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-logo {
    max-width: 146px;
}

.inner-footer {
    display: flex;
    column-gap: 8rem;
}

.cnt-icon img {
    width: auto;
}

.cnt-details {
    margin-top: 2rem;
}

.cnt-item {
    display: flex;
    column-gap: 6px;
    align-items: center;
    margin-top: 1rem;
}

.cnt-data p {
    margin-bottom: 0;
    color: var(--white);
    line-height: 1.11;
    font-weight: 500;
}

.cnt-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cnt-icon svg path {
    fill: var(--yellow);
}

hr {
    border-top: 1px solid #ffffff33;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.condition p {
    color: #ffffffcc;
}

.condition p {
    max-width: 948px;
}

.footer-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-details p {
    color: #e6eaf2;
    margin-bottom: 0;
    font-weight: 500;
}

.footer-details span {
    display: flex;
    color: #ffffff4d;
    margin-left: 12px;
    margin-right: 12px;
}

.cnt-data a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright {
    display: flex;
}

.cnt-icon {
    min-width: 22px;
}

.socials {
    display: flex;
    column-gap: 1.25rem;
}

.social-item a {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-item path {
    fill: var(--white);
}

.social-item svg {
    width: 1.5rem;
    height: 1.5rem;
}


/** reports **/

.inner-banner .banner {
    height: 510px;
}

.inner-banner .container {
    display: flex;
    justify-content: center;
    top: unset;
    transform: translateX(-50%);
    bottom: 3rem;
}

.inner-banner .overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.inner-banner h2 {
    color: var(--white);
}

/** policy **/

.policy {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.policy h2 {
    color: var(--blue);
}

.deco {
    text-decoration: underline;
}

.pdfs {
    margin-top: 1.875rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    flex-direction: row;
}

.pdf-item {
    width: calc(100% / 2 - 0.5rem);
}

.pdf-item p {
    text-decoration: underline;
    margin-bottom: 4px;
    color: #013181;
    font-weight: 600;
    text-decoration-thickness: 0%;
    text-underline-offset: 0%;
    text-decoration-skip-ink: auto;
}

.pdf-item a {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    justify-content: space-between;
    border-bottom: 1px solid var(--blue);

    text-decoration-thickness: 0%;
    text-underline-offset: 0%;
    text-decoration-skip-ink: auto;

}

.pdf-item svg path {
    fill: var(--blue);
}

.pdf-item svg {
    width: 1.25rem;
    height: 1.25rem;
    transform: translateX(-1rem);
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
}

.pdf-item a:hover svg {
    transform: translateX(0);
}

.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-top: max(67%, 326px);
    margin-top: 2rem;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.policy .container>p {
    margin-top: 1.875rem;
}

/** enrolment **/

.enrolment .banner {
    background-color: var(--blue);
}

.inner-banner {
    position: relative;
}

/** responsive **/

@media only screen and (max-width: 767px) {

    h1 {
        font-size: 3rem;
    }

    .banner-content p {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.875rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.875rem;
    }

    .heading p,
    .cnt-data p {
        font-size: 0.875rem;
    }

    .under-maintain {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .inner-banner h2 {
        font-size: 2.25rem;
    }

}


@media only screen and (max-width: 1023px) {

    .logo a {
        max-width: 116px;
    }

    .inner-footer {
        row-gap: 2.25rem;
        flex-direction: column;
    }

    .footer-details {
        flex-direction: column-reverse;
    }

    .copyright {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        row-gap: 1rem;
    }

    .footer-details span {
        display: none;
    }

    .inner-banner .banner {
        height: 380px;
    }

    .pdfs {
        flex-direction: column;
    }

    .pdf-item {
        width: calc(100%);
    }
}