<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;700&amp;display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Alegreya Sans", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.bar-lines__container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-lines__container img {
    height: 25px;
}

/************************* header  ****************************/
header {
    position: fixed;
    width: 100%;
    background-color: #000;
    z-index: 10;
}

header a {
    color: #fff;
    font-weight: 700;
}

header li {
    text-transform: uppercase;
    font-size: 17px;
}

.nav-links__large {
    display: none;
    padding: 1rem;
}

.nav-links__large ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1150px;
    margin: auto;
    padding: 0.5rem 0;
}

nav li {
    text-transform: uppercase;
}

.hamburger-menu__btn {
    width: 40px;
    cursor: pointer;
}

.nav-links {
    height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.nav-links__container {
    padding: 2rem;
}

.nav-links__container li {
    margin-bottom: 1rem;
}

/************************* Banner ****************************/
.banner {
    position: relative;
}

.banner::after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -10;
    background-color: #000;
}

.banner a:hover {
    text-decoration: underline;
}

.banner .backdrop-image {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.backdrop-image img {
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.banner-text {
    color: #fff;
    text-align: center;
    padding-top: 4rem;
}

.title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sub-text {
    background-color: #fff;
    text-align: center;
    padding: 1rem;
}

.sub-text p {
    font-size: 1.2rem;
    color: #d52027;
    margin-bottom: 1rem;
}

.sub-text a {
    display: inline-block;
    width: 120px;
    background-color: #d52027;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-weight: 600;
}

.sub-text a:hover {
    text-decoration: underline;
}

.banner-image-container img {
    width: 100%;
    vertical-align: middle;
}


/******************** Section - 1 ******************/
.sec-1 {
    width: 90%;
    margin: auto;
}

.sec-1 a:hover {
    text-decoration: underline;
}

.sec-1 .section-content {
    position: relative;
    max-width: 800px;
    margin: 8rem auto;
}

.section-content .backdrop-img {
    position: absolute;
    z-index: -1;
    width: 80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.sec-1__title {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.sec-1 .section-content p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.sub__title {
    font-weight: 700;
}

.sec-1 .section-content a {
    display: inline-block;
    background-color: #d52027;
    color: #fff;
    padding: 1rem 4rem;
    font-weight: 700;
    margin-top: 1rem;
}

/******************** Section - 2 ******************/
.sec-2 {
    position: relative;
    padding: 4rem 0;
}

.sec-2 a:hover {
    text-decoration: underline;
}

.sec-2 .backdrop-image {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 80%;
    vertical-align: middle;
    object-fit: cover;
    margin: auto;
}

.sec-2::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -10;
    background-color: rgba(0, 0, 0, 0.945);
}

.sec-2 .content-container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    color: #fff;
}

.sec-2 .content {
    margin-bottom: 1rem;
}

.content__title {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.content a {
    display: inline-block;
    background-color: #d52027;
    color: #fff;
    padding: 1rem 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/******************** Section - 3 ******************/
.sec-3 {
    position: relative;
    padding: 4rem 0;
}

.sec-3 a:hover {
    text-decoration: underline;
}

.sec-3 .backdrop-img {
    position: absolute;
    z-index: -1;
    width: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.sec-3 .content-container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.sec-3 .content {
    margin-bottom: 1rem;
}

.sec-3 .content__title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sec-3 .content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sec-3.content a {
    display: inline-block;
    background-color: #d52027;
    color: #fff;
    padding: 1rem 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/******************** footer ******************/
.footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
}

.footer a {
    color: #fff;
}

.links-container a:hover {
    text-decoration: underline;
}

.email:hover {
    text-decoration: underline;
}

.footer li {
    margin-bottom: 0.5rem;
    font-size: 17px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-container&gt;div {
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-about {
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 17px;
    line-height: 1.5;
}

.footer-links .links-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.underline {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
}

.footer-container .heading {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.line-1 {
    height: 4px;
    background-color: #d52027;
}

.line-2 {
    height: 4px;
    background-color: #fff;
}


/********************* Media queries **********************/

@media (min-width: 482px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 768px) {

    header .nav-links__large {
        display: block;
    }

    header .hamburger-menu__btn,
    header .nav-links {
        display: none;
    }

    .container {
        display: grid;
        grid-template-columns: 2fr 1.2fr;
        height: 100vh;
    }

    .banner .backdrop-image {
        width: 60%;
    }

    .banner .backdrop-image img {
        max-width: 650px;
        margin-top: 70px;
    }

    .banner-text {
        position: relative;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
    }

    .title {
        font-size: 2.5rem;
    }

    .sub-text {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        bottom: 80px;
        width: 700px;
        padding: 2rem 3rem;
        box-shadow: 1px 1px 12px #00000031;
        z-index: 1;
    }

    .sub-text p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .sub-text a {
        width: 200px;
        height: 50px;
    }

    .banner-image-container {
        position: relative;
    }

    .banner-image-container img {
        position: absolute;
        top: 60px;
        height: 100%;
    }

    .sec-1 .sec-1__title {
        justify-content: center;
    }

    .sec-1 .section-content {
        text-align: center;
    }

    .sec-2,
    .sec-3 {
        height: 80vh;
        padding: unset;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sec-2 .content-container,
    .sec-3 .content-container {
        display: flex;
        gap: 60px;
    }

    .sec-2 .content,
    .sec-3 .content {
        margin-bottom: unset;
    }

    .sec-2 .content a,
    .sec-3 .content a {
        margin: 1.5rem 0 0 0;
    }
}

@media (min-width: 1024px) {

    .sec-2 .content__title,
    .sec-3 .content__title {
        font-size: 2rem;
    }

    .sec-2 .backdrop-image {
        object-fit: unset;
    }

    .footer-container {
        grid-template-columns: 1fr 3.5fr 2fr 2.2fr;
        padding: 0 4rem;
    }
}</pre></body></html>