@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

/* 
 developed by Atif Saleem 
*/

html,
body {
    scroll-behavior: smooth;
}

/* General Styling */
body {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #000000;
}

img {
    max-width: 100%;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    font-size: 1rem;
}

.header-links span {
    font-size: 1.2rem;
    font-weight: 700;
}

.header-links > div {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.header-links a {
    text-decoration: none !important;
    color: #fff;
    line-height: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.footer-links a {
    text-decoration: none !important;
    color: #fff;
    line-height: 1;
}

.Condensed-800 {
    font-family: "Saira Condensed", sans-serif;
    font-weight: 800;
}

.Condensed-900 {
    font-family: "Saira Condensed", sans-serif;
    font-weight: 900;
}

.main-heading {
    font-size: 7vw;
    border-top: 2px solid #FFD301;
    border-bottom: 2px solid #FFD301;
    padding: 2vw 0;
    margin-top: 2vw;
}

.text-yellow {
    color: #FFD301;
}

.line-heading {
    position: relative;
    background: #fff;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
    font-size: 2rem;
}

.line-heading span {
    background-color: #fff;
    padding-right: 10px;
}

.line-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFD301;
    z-index: -1;
    transform: translateY(-50%);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-row img {
    width: 70%;
}

.footer-under-text {
    text-align: center;
    font-weight: 100;
    color: #fff;
    margin-top: 1rem;
}


@media (max-width: 767px) {
    section .header-links,
    .header-links > div {
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .header-links{
        flex-direction: column;
    }
    .header-links > div:first-child{
        flex-direction: column;
    }

    section .header-links a{
        text-align: center;
        line-height: 1.2;
    }

    .subheading {
        font-size: 2.25rem;
    }

    .main-heading {
        font-size: 3.5rem;
    }

    .line-heading {
        font-size: 1.5rem;
    }

    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .mobile-logo {
        display: block !important;
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
        gap: 20px;
    }

    .desktop-logo {
        display: none;
    }
}