:root {
    /* MONOCHROMATIC BLUES THEME */
    --primary-color: #023E8A;
    --secondary-color: #0077B6;
    --light-color: #CAF0F8;
    --mid-light-color: #90cdd9;
    --mid-dark-color: #0b131f;
    --high-dark-color: #080e16;
    --logo-color-primary: #0e3f61;
    --logo-color-secondary: #9b9d68;
    --logo-color-secondary-alt: #f9f294;
    /* alternative for yellow color - #edefb2 */
    --white: #ffffff;
    --black: #000000;
    --test-color: red;

    --light-green: rgb(246, 255, 241);
    --light-orange: rgb(255, 248, 236);
    --light-purple: rgb(255, 240, 255);
    --light-blue: rgb(246, 240, 255);

    --thin-text-font-family: 'Lexend', sans-serif;
    --thin-text-font-weight: 100;
    --extra-light-text-font-family: 'Lexend', sans-serif;
    --extra-light-text-font-weight: 200;
    --light-text-font-family: 'Lexend', sans-serif;
    --light-text-font-weight: 300;
    --regular-text-font-family: 'Lexend', sans-serif;
    --regular-text-font-weight: 400;
    --medium-text-font-family: 'Lexend', sans-serif;
    --medium-text-font-weight: 500;
    --semi-bold-text-font-family: 'Lexend', sans-serif;
    --semi-bold-text-font-weight: 600;
    --bold-text-font-family: 'Lexend', sans-serif;
    --bold-text-font-weight: 700;
    --extra-bold-text-font-family: 'Lexend', sans-serif;
    --extra-bold-text-font-weight: 800;
    --black-text-font-family: 'Lexend', sans-serif;
    --black-text-font-weight: 900;
}

* {
    font-family: "Lexend", sans-serif;
}

/* Fonts */

/* NOTE - The link to Google Fonts is still active in the 'head' section (under 'fonts'), REMOVE IF REQUIRED */

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Thin.ttf') format('truetype');
    font-weight: 100;
    /* Thin weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    /* ExtraLight weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Light.ttf') format('truetype');
    font-weight: 300;
    /* Light weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* SemiBold weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    /* ExtraBold weight */
}

@font-face {
    font-family: "Lexend";
    src: url('../fonts/Lexend-Black.ttf') format('truetype');
    font-weight: 900;
    /* Black weight */
}

.thin-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 100;
}

.extra-light-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
}

.light-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
}

.regular-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

.medium-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
}

.semi-bold-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
}

.bold-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
}

.extra-bold-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
}

.black-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
}

/* Default margin and padding */

.m-0 {
    margin: 0rem !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-6 {
    margin: 4rem !important;
}

.m-7 {
    margin: 5.4rem !important;
}

.m-8 {
    margin: 7rem !important;
}

.m-9 {
    margin: 8.6rem !important;
}

.m-10 {
    margin: 10rem !important;
}

@media screen and (max-width: 768px) {
    .m-0 {
        margin: 0 !important;
    }

    .m-1 {
        margin: 0.125rem !important;
        /* Adjusted value */
    }

    .m-2 {
        margin: 0.25rem !important;
        /* Adjusted value */
    }

    .m-3 {
        margin: 0.5rem !important;
        /* Adjusted value */
    }

    .m-4 {
        margin: 0.75rem !important;
        /* Adjusted value */
    }

    .m-5 {
        margin: 1.5rem !important;
    }

    .m-6 {
        margin: 2rem !important;
    }

    .m-7 {
        margin: 2.7rem !important;
    }

    .m-8 {
        margin: 3.5rem !important;
    }

    .m-9 {
        margin: 4.3rem !important;
    }

    .m-10 {
        margin: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .m-0 {
        margin: 0 !important;
    }

    .m-1 {
        margin: 0.18rem !important;
    }

    .m-2 {
        margin: 0.38rem !important;
    }

    .m-3 {
        margin: 0.75rem !important;
    }

    .m-4 {
        margin: 1.125rem !important;
    }

    .m-5 {
        margin: 2.25rem !important;
    }

    .m-6 {
        margin: 3rem !important;
    }

    .m-7 {
        margin: 4.05rem !important;
    }

    .m-8 {
        margin: 5.25rem !important;
    }

    .m-9 {
        margin: 6.45rem !important;
    }

    .m-10 {
        margin: 7.5rem !important;
    }
}

.mt-0 {
    margin-top: 0rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 5.4rem !important;
}

.mt-8 {
    margin-top: 7rem !important;
}

.mt-9 {
    margin-top: 8.6rem !important;
}

.mt-10 {
    margin-top: 10rem !important;
}

@media screen and (max-width: 768px) {
    .mt-0 {
        margin-top: 0 !important;
    }

    .mt-1 {
        margin-top: 0.125rem !important;
    }

    .mt-2 {
        margin-top: 0.25rem !important;
    }

    .mt-3 {
        margin-top: 0.5rem !important;
    }

    .mt-4 {
        margin-top: 0.75rem !important;
    }

    .mt-5 {
        margin-top: 1.5rem !important;
    }

    .mt-6 {
        margin-top: 2rem !important;
    }

    .mt-7 {
        margin-top: 2.7rem !important;
    }

    .mt-8 {
        margin-top: 3.5rem !important;
    }

    .mt-9 {
        margin-top: 4.3rem !important;
    }

    .mt-10 {
        margin-top: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .mt-0 {
        margin-top: 0 !important;
    }

    .mt-1 {
        margin-top: 0.18rem !important;
    }

    .mt-2 {
        margin-top: 0.38rem !important;
    }

    .mt-3 {
        margin-top: 0.75rem !important;
    }

    .mt-4 {
        margin-top: 1.125rem !important;
    }

    .mt-5 {
        margin-top: 2.25rem !important;
    }

    .mt-6 {
        margin-top: 3rem !important;
    }

    .mt-7 {
        margin-top: 4.05rem !important;
    }

    .mt-8 {
        margin-top: 5.25rem !important;
    }

    .mt-9 {
        margin-top: 6.45rem !important;
    }

    .mt-10 {
        margin-top: 7.5rem !important;
    }
}

.mb-0 {
    margin-top: 0rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mb-7 {
    margin-bottom: 5.4rem !important;
}

.mb-8 {
    margin-bottom: 7rem !important;
}

.mb-9 {
    margin-bottom: 8.6rem !important;
}

.mb-10 {
    margin-bottom: 10rem !important;
}

@media screen and (max-width: 768px) {
    .mb-0 {
        margin-bottom: 0 !important;
    }

    .mb-1 {
        margin-bottom: 0.125rem !important;
    }

    .mb-2 {
        margin-bottom: 0.25rem !important;
    }

    .mb-3 {
        margin-bottom: 0.5rem !important;
    }

    .mb-4 {
        margin-bottom: 0.75rem !important;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-6 {
        margin-bottom: 2rem !important;
    }

    .mb-7 {
        margin-bottom: 2.7rem !important;
    }

    .mb-8 {
        margin-bottom: 3.5rem !important;
    }

    .mb-9 {
        margin-bottom: 4.3rem !important;
    }

    .mb-10 {
        margin-bottom: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .mb-0 {
        margin-bottom: 0 !important;
    }

    .mb-1 {
        margin-bottom: 0.18rem !important;
    }

    .mb-2 {
        margin-bottom: 0.38rem !important;
    }

    .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .mb-4 {
        margin-bottom: 1.125rem !important;
    }

    .mb-5 {
        margin-bottom: 2.25rem !important;
    }

    .mb-6 {
        margin-bottom: 3rem !important;
    }

    .mb-7 {
        margin-bottom: 4.05rem !important;
    }

    .mb-8 {
        margin-bottom: 5.25rem !important;
    }

    .mb-9 {
        margin-bottom: 6.45rem !important;
    }

    .mb-10 {
        margin-bottom: 7.5rem !important;
    }
}

.ms-0 {
    margin-left: 0rem !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-6 {
    margin-left: 4rem !important;
}

.ms-7 {
    margin-left: 5.4rem !important;
}

.ms-8 {
    margin-left: 7rem !important;
}

.ms-9 {
    margin-left: 8.6rem !important;
}

.ms-10 {
    margin-left: 10rem !important;
}

@media screen and (max-width: 768px) {
    .ms-0 {
        margin-left: 0 !important;
    }

    .ms-1 {
        margin-left: 0.125rem !important;
    }

    .ms-2 {
        margin-left: 0.25rem !important;
    }

    .ms-3 {
        margin-left: 0.5rem !important;
    }

    .ms-4 {
        margin-left: 0.75rem !important;
    }

    .ms-5 {
        margin-left: 1.5rem !important;
    }

    .ms-6 {
        margin-left: 2rem !important;
    }

    .ms-7 {
        margin-left: 2.7rem !important;
    }

    .ms-8 {
        margin-left: 3.5rem !important;
    }

    .ms-9 {
        margin-left: 4.3rem !important;
    }

    .ms-10 {
        margin-left: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .ms-0 {
        margin-left: 0 !important;
    }

    .ms-1 {
        margin-left: 0.18rem !important;
    }

    .ms-2 {
        margin-left: 0.38rem !important;
    }

    .ms-3 {
        margin-left: 0.75rem !important;
    }

    .ms-4 {
        margin-left: 1.125rem !important;
    }

    .ms-5 {
        margin-left: 2.25rem !important;
    }

    .ms-6 {
        margin-left: 3rem !important;
    }

    .ms-7 {
        margin-left: 4.05rem !important;
    }

    .ms-8 {
        margin-left: 5.25rem !important;
    }

    .ms-9 {
        margin-left: 6.45rem !important;
    }

    .ms-10 {
        margin-left: 7.5rem !important;
    }
}

.me-0 {
    margin-right: 0rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-6 {
    margin-right: 4rem !important;
}

.me-7 {
    margin-right: 5.4rem !important;
}

.me-8 {
    margin-right: 7rem !important;
}

.me-9 {
    margin-right: 8.6rem !important;
}

.me-10 {
    margin-right: 10rem !important;
}

@media screen and (max-width: 768px) {
    .me-0 {
        margin-right: 0 !important;
    }

    .me-1 {
        margin-right: 0.125rem !important;
    }

    .me-2 {
        margin-right: 0.25rem !important;
    }

    .me-3 {
        margin-right: 0.5rem !important;
    }

    .me-4 {
        margin-right: 0.75rem !important;
    }

    .me-5 {
        margin-right: 1.5rem !important;
    }

    .me-6 {
        margin-right: 2rem !important;
    }

    .me-7 {
        margin-right: 2.7rem !important;
    }

    .me-8 {
        margin-right: 3.5rem !important;
    }

    .me-9 {
        margin-right: 4.3rem !important;
    }

    .me-10 {
        margin-right: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .me-0 {
        margin-right: 0 !important;
    }

    .me-1 {
        margin-right: 0.18rem !important;
    }

    .me-2 {
        margin-right: 0.38rem !important;
    }

    .me-3 {
        margin-right: 0.75rem !important;
    }

    .me-4 {
        margin-right: 1.125rem !important;
    }

    .me-5 {
        margin-right: 2.25rem !important;
    }

    .me-6 {
        margin-right: 3rem !important;
    }

    .me-7 {
        margin-right: 4.05rem !important;
    }

    .me-8 {
        margin-right: 5.25rem !important;
    }

    .me-9 {
        margin-right: 6.45rem !important;
    }

    .me-10 {
        margin-right: 7.5rem !important;
    }
}

.p-0 {
    padding: 0rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.p-6 {
    padding: 4rem !important;
}

.p-7 {
    padding: 5.4rem !important;
}

.p-8 {
    padding: 7rem !important;
}

.p-9 {
    padding: 8.6rem !important;
}

.p-10 {
    padding: 10rem !important;
}

@media screen and (max-width: 768px) {
    .p-0 {
        padding: 0 !important;
    }

    .p-1 {
        padding: 0.125rem !important;
    }

    .p-2 {
        padding: 0.25rem !important;
    }

    .p-3 {
        padding: 0.5rem !important;
    }

    .p-4 {
        padding: 0.75rem !important;
    }

    .p-5 {
        padding: 1.5rem !important;
    }

    .p-6 {
        padding: 2rem !important;
    }

    .p-7 {
        padding: 2.7rem !important;
    }

    .p-8 {
        padding: 3.5rem !important;
    }

    .p-9 {
        padding: 4.3rem !important;
    }

    .p-10 {
        padding: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .p-0 {
        padding: 0 !important;
    }

    .p-1 {
        padding: 0.18rem !important;
    }

    .p-2 {
        padding: 0.38rem !important;
    }

    .p-3 {
        padding: 0.75rem !important;
    }

    .p-4 {
        padding: 1.125rem !important;
    }

    .p-5 {
        padding: 2.25rem !important;
    }

    .p-6 {
        padding: 3rem !important;
    }

    .p-7 {
        padding: 4.05rem !important;
    }

    .p-8 {
        padding: 5.25rem !important;
    }

    .p-9 {
        padding: 6.45rem !important;
    }

    .p-10 {
        padding: 7.5rem !important;
    }
}

.pt-0 {
    padding-top: 0rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pt-6 {
    padding-top: 4rem !important;
}

.pt-7 {
    padding-top: 5.4rem !important;
}

.pt-8 {
    padding-top: 7rem !important;
}

.pt-9 {
    padding-top: 8.6rem !important;
}

.pt-10 {
    padding-top: 10rem !important;
}

@media screen and (max-width: 768px) {
    .pt-0 {
        padding-top: 0 !important;
    }

    .pt-1 {
        padding-top: 0.125rem !important;
    }

    .pt-2 {
        padding-top: 0.25rem !important;
    }

    .pt-3 {
        padding-top: 0.5rem !important;
    }

    .pt-4 {
        padding-top: 0.75rem !important;
    }

    .pt-5 {
        padding-top: 1.5rem !important;
    }

    .pt-6 {
        padding-top: 2rem !important;
    }

    .pt-7 {
        padding-top: 2.7rem !important;
    }

    .pt-8 {
        padding-top: 3.5rem !important;
    }

    .pt-9 {
        padding-top: 4.3rem !important;
    }

    .pt-10 {
        padding-top: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .pt-0 {
        padding-top: 0 !important;
    }

    .pt-1 {
        padding-top: 0.18rem !important;
    }

    .pt-2 {
        padding-top: 0.38rem !important;
    }

    .pt-3 {
        padding-top: 0.75rem !important;
    }

    .pt-4 {
        padding-top: 1.125rem !important;
    }

    .pt-5 {
        padding-top: 2.25rem !important;
    }

    .pt-6 {
        padding-top: 3rem !important;
    }

    .pt-7 {
        padding-top: 4.05rem !important;
    }

    .pt-8 {
        padding-top: 5.25rem !important;
    }

    .pt-9 {
        padding-top: 6.45rem !important;
    }

    .pt-10 {
        padding-top: 7.5rem !important;
    }
}

.pb-0 {
    padding-bottom: 0rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pb-6 {
    padding-bottom: 4rem !important;
}

.pb-7 {
    padding-bottom: 5.4rem !important;
}

.pb-8 {
    padding-bottom: 7rem !important;
}

.pb-9 {
    padding-bottom: 8.6rem !important;
}

.pb-10 {
    padding-bottom: 10rem !important;
}

@media screen and (max-width: 768px) {
    .pb-0 {
        padding-bottom: 0 !important;
    }

    .pb-1 {
        padding-bottom: 0.125rem !important;
    }

    .pb-2 {
        padding-bottom: 0.25rem !important;
    }

    .pb-3 {
        padding-bottom: 0.5rem !important;
    }

    .pb-4 {
        padding-bottom: 0.75rem !important;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .pb-6 {
        padding-bottom: 2rem !important;
    }

    .pb-7 {
        padding-bottom: 2.7rem !important;
    }

    .pb-8 {
        padding-bottom: 3.5rem !important;
    }

    .pb-9 {
        padding-bottom: 4.3rem !important;
    }

    .pb-10 {
        padding-bottom: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .pb-0 {
        padding-bottom: 0 !important;
    }

    .pb-1 {
        padding-bottom: 0.18rem !important;
    }

    .pb-2 {
        padding-bottom: 0.38rem !important;
    }

    .pb-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-4 {
        padding-bottom: 1.125rem !important;
    }

    .pb-5 {
        padding-bottom: 2.25rem !important;
    }

    .pb-6 {
        padding-bottom: 3rem !important;
    }

    .pb-7 {
        padding-bottom: 4.05rem !important;
    }

    .pb-8 {
        padding-bottom: 5.25rem !important;
    }

    .pb-9 {
        padding-bottom: 6.45rem !important;
    }

    .pb-10 {
        padding-bottom: 7.5rem !important;
    }
}

.ps-0 {
    padding-left: 0rem !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.ps-6 {
    padding-left: 4rem !important;
}

.ps-7 {
    padding-left: 5.4rem !important;
}

.ps-8 {
    padding-left: 7rem !important;
}

.ps-9 {
    padding-left: 8.6rem !important;
}

.ps-10 {
    padding-left: 10rem !important;
}

@media screen and (max-width: 768px) {
    .ps-0 {
        padding-left: 0 !important;
    }

    .ps-1 {
        padding-left: 0.125rem !important;
    }

    .ps-2 {
        padding-left: 0.25rem !important;
    }

    .ps-3 {
        padding-left: 0.5rem !important;
    }

    .ps-4 {
        padding-left: 0.75rem !important;
    }

    .ps-5 {
        padding-left: 1.5rem !important;
    }

    .ps-6 {
        padding-left: 2rem !important;
    }

    .ps-7 {
        padding-left: 2.7rem !important;
    }

    .ps-8 {
        padding-left: 3.5rem !important;
    }

    .ps-9 {
        padding-left: 4.3rem !important;
    }

    .ps-10 {
        padding-left: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .ps-0 {
        padding-left: 0 !important;
    }

    .ps-1 {
        padding-left: 0.18rem !important;
    }

    .ps-2 {
        padding-left: 0.38rem !important;
    }

    .ps-3 {
        padding-left: 0.75rem !important;
    }

    .ps-4 {
        padding-left: 1.125rem !important;
    }

    .ps-5 {
        padding-left: 2.25rem !important;
    }

    .ps-6 {
        padding-left: 3rem !important;
    }

    .ps-7 {
        padding-left: 4.05rem !important;
    }

    .ps-8 {
        padding-left: 5.25rem !important;
    }

    .ps-9 {
        padding-left: 6.45rem !important;
    }

    .ps-10 {
        padding-left: 7.5rem !important;
    }
}

.pe-0 {
    padding-right: 0rem !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pe-6 {
    padding-right: 4rem !important;
}

.pe-7 {
    padding-right: 5.4rem !important;
}

.pe-8 {
    padding-right: 7rem !important;
}

.pe-9 {
    padding-right: 8.6rem !important;
}

.pe-10 {
    padding-right: 10rem !important;
}

@media screen and (max-width: 768px) {
    .pe-0 {
        padding-right: 0 !important;
    }

    .pe-1 {
        padding-right: 0.125rem !important;
    }

    .pe-2 {
        padding-right: 0.25rem !important;
    }

    .pe-3 {
        padding-right: 0.5rem !important;
    }

    .pe-4 {
        padding-right: 0.75rem !important;
    }

    .pe-5 {
        padding-right: 1.5rem !important;
    }

    .pe-6 {
        padding-right: 2rem !important;
    }

    .pe-7 {
        padding-right: 2.7rem !important;
    }

    .pe-8 {
        padding-right: 3.5rem !important;
    }

    .pe-9 {
        padding-right: 4.3rem !important;
    }

    .pe-10 {
        padding-right: 5rem !important;
    }
}

@media screen and (max-width: 992px) {
    .pe-0 {
        padding-right: 0 !important;
    }

    .pe-1 {
        padding-right: 0.18rem !important;
    }

    .pe-2 {
        padding-right: 0.38rem !important;
    }

    .pe-3 {
        padding-right: 0.75rem !important;
    }

    .pe-4 {
        padding-right: 1.125rem !important;
    }

    .pe-5 {
        padding-right: 2.25rem !important;
    }

    .pe-6 {
        padding-right: 3rem !important;
    }

    .pe-7 {
        padding-right: 4.05rem !important;
    }

    .pe-8 {
        padding-right: 5.25rem !important;
    }

    .pe-9 {
        padding-right: 6.45rem !important;
    }

    .pe-10 {
        padding-right: 7.5rem !important;
    }
}

/* Default styles for headings */
/* .h1 {
    font-size: 4rem;
}

.h2 {
    font-size: 3.5rem;
}

.h3 {
    font-size: 3rem;
}

.h4 {
    font-size: 2.5rem;
}

.h5 {
    font-size: 2rem;
}

.h6 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .h1 {
        font-size: 3rem;
    }
    .h2 {
        font-size: 2.5rem;
    }
    .h3 {
        font-size: 2rem;
    }
    .h4 {
        font-size: 1.75rem;
    }
    .h5 {
        font-size: 1.5rem;
    }
    .h6 {
        font-size: 1.25rem;
    }
} */

/* NAVBAR */

.main-logo {
    font-size: 2rem;
    font-weight: 700;
}

.social-icon {
    text-decoration: none;
}

.nav-item {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.nav-comp-1 {
    display: flex;
    align-items: center;
    border-right: 1px solid lightgrey;
}

.nav-comp-1-icon {
    color: var(--secondary-color);
    border: 1px solid lightgrey;
    border-radius: 50%;
    padding: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.nav-comp-1-details {
    display: flex;
    flex-direction: column;
}

.nav-comp-1-label {
    color: gray;
    font-size: 1rem;
}

.nav-comp-1-text {
    color: var(--black);
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-comp-1-text:hover {
    color: var(--secondary-color);
    cursor: pointer;
}

.nav-comp-2-icon-container {
    display: flex;
    gap: 10px;
}

.nav-comp-2-icon-container i {
    font-size: 24px;
    color: var(--black);
    background-color: rgb(240, 240, 240);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-comp-2-icon-container i:hover {
    color: var(--white);
    background-color: var(--primary-color);
    cursor: pointer;
}

.navbar-nav {
    margin-left: 20%;
}

.navbar-toggler {
    border: none;
}

.custom-toggler:focus,
.custom-toggler.focus,
.custom-toggler:active,
.custom-toggler.active {
    outline: none;
    box-shadow: none;
}

.dropdown-item {
    /* ADDED LATER */
    color: #333;
}

.dropdown-item:hover {
    /* ADDED LATER */
    background-color: #e2e6ea;
    color: #000;
}

@media (max-width: 991px) {
    .nav-item {
        justify-content: left;
        align-items: left;
    }

    .navbar-nav {
        margin-left: 30%;
    }

    .nav-comp-1 {
        border-right: none;
    }

    .navbar-nav {
        margin-left: 0%;
    }
}

/* NAVBAR 2 */

@media (max-width: 991px) {
    .special-dropdown-color {
        color: var(--black) !important;
    }
}

.navbar-2 {
    background-color: var(--primary-color);
    color: var(--white);
}

.navbar-2 a {
    color: var(--white);
}

.get-brochure-btn {
    margin-right: 8px;
    border-radius: 0%;
    font-size: 1rem;

    color: var(--white);
    background-color: var(--secondary-color);
}

.get-brochure-btn:hover {
    color: var(--primary-color);
    background-color: var(--light-color);
}

.get-brochure-btn-1,
.get-brochure-btn-2 {
    display: none;
}

@media (max-width: 991px) {
    .get-brochure-btn-1 {
        display: inline-block;
    }
}

@media (min-width: 991px) {
    .get-brochure-btn-2 {
        display: inline-block;
    }
}

.get-a-quote-btn {
    margin-right: 8px;
    margin: 4px;
    border-radius: 0%;
    font-size: 1rem;

    color: var(--white);
    border: 1.6px solid var(--white);
}

.get-a-quote-btn:hover {
    color: var(--primary-color);
    background-color: var(--white);
}

.get-a-quote-btn-1,
.get-a-quote-btn-2 {
    display: none;
}

@media (max-width: 991px) {
    .get-a-quote-btn-1 {
        display: inline-block;
    }
}

@media (min-width: 991px) {
    .get-a-quote-btn-2 {
        display: inline-block;
    }
}

.navbar-nav-2 {
    margin-left: 0px !important;
}

.container-fluid-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-toggler-2 {
    margin-right: 8px;
}

#offcanvasNavbar2 {
    background-color: var(--primary-color);
}

.white-text {
    color: var(--white) !important;
}

.white-text:hover {
    color: var(--white) !important;
}

.hover-light-blue {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hover-light-blue:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.dropdown-2 {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 991px) {
    .dropdown-2 {
        background-color: var(--white);
    }
}

.nav-item .nav-link.dropdown-toggle:focus,
.nav-item .nav-link.dropdown-toggle:hover,
.nav-item .nav-link.dropdown-toggle:active,
.nav-item .nav-link.dropdown-toggle.show {
    color: var(--white) !important;
}

.btn-close-white {
    color: var(--white);
}

.toggler-icon-2 {
    color: var(--white);
    font-size: 2rem;
}

/* This was 768px before. In case of any issues, change the value back to 768px. */
@media (max-width: 992px) {
    .hover-light-blue:hover {
        background-color: var(--primary-color);
    }
}

/* COOKIE ALERT */

.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--mid-dark-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
}

.cookie-alert p {
    margin: 0;
    font-size: 14px;
}

.accept-btn {
    background-color: var(--white);
    color: var(--mid-dark-color);
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    margin-top: 8px;
    cursor: pointer;
    font-size: 14px;
}

.accept-btn:hover {
    background-color: var(--white);
}

@media (max-width: 768px) {
    .cookie-alert p {
        font-size: 12px;
    }

    .accept-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* CAROUSEL */

#carouselContainer {
    position: relative;
}

@media (max-width: 1400px) {
    #carouselContainer .carousel-inner .carousel-item-special img {
        height: 480px;
        object-fit: cover;
    }
}

#carousel-list-div {
    position: absolute;
    left: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    top: 48%;
    height: 70%;
    transform: translateY(-50%);
}

@media (max-width: 1400px) {
    #carousel-list-div {
        height: 90%;
    }
}

.carousel-list-item-container {
    flex: 1;
    width: 100%;
    color: white;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    /* border-bottom: 1.4px solid white; */

    /* border-top: 1.4px solid transparent; */
    /* border-right: 1.4px solid transparent; */
    /* border-bottom: 1.4px solid transparent; */
    position: relative;
}

.carousel-list-item-container.active {
    color: var(--logo-color-secondary-alt);
    /* border-bottom: 1.4px solid var(--logo-color-secondary-alt); */

    /* border-top: 1.4px solid var(--logo-color-secondary-alt); */
    /* border-right: 1.4px solid var(--logo-color-secondary-alt); */
    /* border-bottom: 1.4px solid var(--logo-color-secondary-alt); */
    /* border-top-right-radius: 5px; */
    /* border-bottom-right-radius: 5px; */

    /* background-color: rgba(255, 255, 255, 0.35); */
}

.carousel-icon-text {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.carousel-list-item-container.active .carousel-icon-text {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    height: auto;
}

.carousel-list-item-container .bigger-icons {
    display: inline;
}

.bigger-icons {
    font-size: 2rem !important;
    padding-right: 4px;
}

.carousel-icon-container-wrapper {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    /* gap: 12px; */
    gap: 28px;
}

.carousel-icon-container {
    width: 7rem;
    height: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-icon-container-icon>span {
    color: var(--logo-color-secondary-alt);
    font-size: 3rem !important;
}

.carousel-icon-container-heading {
    color: rgb(94, 142, 255);
    font-size: 1.4rem;
    margin-top: 2px;
    font-weight: 500;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.carousel-icon-container-text {
    color: white;
    font-size: 0.9rem;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .carousel-icon-container-wrapper {
        display: none;
    }
}

@media (max-width: 992px) {
    #carousel-list-div {
        display: none;
    }

    .carousel-list-item-container {
        display: none;
    }
}

@media (min-width: 993px) {
    .smaller-screen-buttons {
        display: none !important;
    }
}

.carousel-gradient-overlay {
    position: relative;
}

.carousel-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;

    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%); */

    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 50%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 50%);
}

/* ADDED LATER */
.carousel-text-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;

    /* background-color: rgba(0, 0, 0, 0.3); */
    padding-top: 1rem;
}

.carousel-text-container>h4 {
    color: var(--logo-color-secondary-alt);
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.carousel-text-container>h2 {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.carousel-text-container>p {
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .carousel-text-container {
        top: 50%;
        width: 90%;
    }
}

/* OUR SERVICES */

.colored-heading {
    color: var(--secondary-color);
}

.our-services {
    text-align: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.services-container-card {
    background-color: var(--white);
    border: 1px solid lightgrey;
    border-radius: 4px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;

    display: flex;
    /* REMOVE IF ANY ISSUES ARISE */
    flex-direction: column;
    /* REMOVE IF ANY ISSUES ARISE */
    align-items: center;
    /* REMOVE IF ANY ISSUES ARISE */
}

/* OLD ONE */
/* .services-container-card-icon {
    font-size: 48px;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
} */

.services-container-card-icon {
    background-color: var(--white);
    border: 2px dotted var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.services-container-card-icon>span {
    color: var(--primary-color);
    font-size: 50px;
}

.services-container-card-icon:hover {
    background-color: var(--primary-color);
}

.services-container-card-icon:hover * {
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .services-container-card-icon {
        background-color: var(--primary-color);
    }

    .services-container-card-icon>span {
        color: var(--white);
        font-size: 50px;
    }

    .services-container-card-icon:hover {
        background-color: var(--primary-color);
    }

    .services-container-card-icon:hover * {
        color: var(--white) !important;
    }
}

.services-container-card-heading {
    font-weight: bold;
    margin-bottom: 10px;
}

.services-container-card-text {
    color: var(--black);
    margin-bottom: 20px;
    text-align: left;
}

.services-container-load-more-btn {
    background-color: var(--white);
    color: var(--black);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.services-container-load-more-btn:hover {
    color: var(--primary-color);
}

.services-container-arrow-icon {
    transform: translateY(5px);
}

@media (min-width: 992px) {
    .services-container-card {
        flex: 1;
        max-width: 22%;
    }
}

/* FORM */

.form-img {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.form-img img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 10px;
}

@media (max-width: 767px) {
    .form-img {
        display: none;
    }
}

.form-container {
    background-color: var(--primary-color);
}

.custom-form {
    width: 100%;
    max-width: 600px;
}

.custom-form-2 {
    /* FOR "GET A QUOTE" MODAL */
    width: 100%;
    max-width: 600px;
    color: var(--black);
}

.input-group .flag-icon {
    width: 20px;
    height: auto;
    /* margin-left: 4px; */
}

.text-light-color {
    color: var(--light-color) !important;
}

.form-submit-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white) !important;
}

.form-submit-btn:disabled {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.form-submit-btn-2 {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* padding: 1.2rem 1.4rem 1.2rem 1.4rem; */
}

.form-submit-btn-2:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.form-submit-btn-2:disabled {
    background-color: var(--mid-light-color);
}

/* WHY CHOOSE US */

.why-choose-us-icons-div {
    display: flex;
}

.why-choose-us-icons-div-card {
    background-color: var(--white);
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    border-radius: 8px;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .why-choose-us-icons-div-card>p {
        font-size: 0.8rem;
    }
}

.why-choose-us-icons-div-icon {
    color: var(--secondary-color);
    font-size: 3rem !important;
}

/* STATS */

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--mid-dark-color);
    box-sizing: border-box !important;
    margin: 0px !important;
}

@media (min-width: 992px) {
    .stats-container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.stats-item {
    text-align: center;
    margin: 20px;
    padding: 10px 30px 10px 30px;
    box-sizing: border-box;
}

.stats-number {
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
}

.stats-unit {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: bold;
}

.stats-label {
    color: var(--white);
    font-size: 1rem;
}

/* GALLERY */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
    }

    .gallery-item {
        width: 100%;
        height: auto;
        padding: 5px 10px 5px 10px;
    }
}

/* SLIDER */

.slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: var(--white);
    padding: 40px 0px;
}

.slider-content {
    display: inline-block;
    white-space: nowrap;
    animation: slide 20s linear infinite;
}

.slider-content span {
    display: inline-block;
    padding: 0 60px;
}

.business-partners-logo {
    height: 60px;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* Move only half the distance since we duplicate the content */
    }
}

/* EXTRA INFO / OUR WORK */

.extra-info {
    background-color: var(--primary-color);
    color: var(--white);

    /* ADDED LATER */
    padding: 0 15px;
    overflow: hidden;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col-md-6 {
    padding-right: 0;
    padding-left: 0;
}

/* .extra-info-div {
    padding: 40px;
} */

.extra-info-div>h5,
.extra-info-div>h2 {
    margin-bottom: 20px;
}

.extra-info-heading-1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
}

.extra-info-heading-2 {
    font-size: 3rem;
    font-weight: 700;
}

.extra-info-paragraph {
    font-size: 1.1rem;
    color: var(--light-color);
}

.extra-info-button {
    text-decoration: none;
    padding: 20px 30px 20px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.extra-info-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.extra-info-img {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.extra-info-img img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 10px;
}

@media (max-width: 768px) {
    .extra-info-button {
        padding: 20px 30px 20px 30px;
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .extra-info-img img {
        margin-top: 0px;
        padding-top: 0px;
    }
}

/* TESTIMONIALS (SWIPER) */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    width: 100%;
}

/* .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* TESTIMONIALS 2 */

.hidden-icon {
    display: none;
}

.quote {
    font-size: 3em;
    font-weight: 900;
    color: var(--light-color);
    display: inline-block;
}

.first-quote {
    transform: scaleY(-1);
    /* For Safari */
    -webkit-transform: scaleY(-1);
    position: absolute;
    left: -6px;
    top: -4px;
}

.second-quote {
    transform: scaleX(-1);
    /* For Safari */
    -webkit-transform: scaleX(-1);
    position: absolute;
    right: -6px;
    bottom: -4px;
}

.testimonial-container {
    max-width: 600px;
    margin: 0 auto;
}

/* TRIANGLE */
.testimonial-container::before {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 50%;
    border: 5rem solid var(--white);
    border-color: transparent;
    border-top: var(--primary-color);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    text-align: center;

    /* REMOVE IF ANY PROBLEM ARISE */
    position: relative;
    padding-left: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
    z-index: 9999;
    padding: 1rem;

    /* REMOVE IF ANY PROBLEM ARISE */
    position: relative;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-image {
    border-radius: 50%;
    border: 4px solid var(--light-color);
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0;
}

.testimonial-designation {
    color: gray;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FAQs */

.faq-container {
    width: 100%;
    min-width: 60vw;
    max-width: 400px;
}

.faq-answer-text {
    color: var(--primary-color);
}

/* .accordion-button {
    background-color: #f8f9fa;
    color: #333;
} */

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--primary-color);
}

/* .accordion-button::after {
    color: yellow !important;
    background-color: pink;
} */

/* .accordion-button:not(.collapsed)::after {
    color: rgb(230, 0, 0) !important;
    background-color: rgb(216, 114, 114);
    display: none;
} */

.faq-tab-link {
    color: var(--white);
    border-radius: 0px !important;
    background-color: var(--primary-color);
    border: none !important;
}

.faq-tab-link.active {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: scaleX(100%) scaleY(100%) !important;
    z-index: 99;
}

.faq-tab-link:hover {
    color: var(--white) !important;
}

.accordion-button>.bi-quora {
    color: var(--primary-color) !important;
}

.accordion-button:not(.collapsed)>.bi-quora {
    color: var(--white) !important;
}

.bi-quora {
    font-size: 1.4rem;
    padding-right: 10px;
    transition: color 0.3s ease;
}

.answer-ans {
    font-weight: 600;
}

@media (min-width: 992px) {
    .faq-tab-link {
        font-size: 1.2rem;
    }
}

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    /* background-color: rgb(0, 0, 0); */
    background-color: var(--mid-dark-color);
    padding: 30px;
    color: var(--white);
    flex-wrap: wrap;
}

.footer-icon-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px 10px 20px;
}

.footer-icon-container i {
    font-size: 24px;
    color: var(--white);
    background-color: var(--high-dark-color);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-icon-container i:hover {
    color: var(--high-dark-color);
    background-color: var(--white);
    cursor: pointer;
}

@media (min-width: 769px) {
    .footer-icon-container {
        justify-content: flex-start;
        padding: 0px;
    }
}

.footer-left {
    padding-right: 40px;
}

.footer-left>p {
    text-align: left;
    color: lightgray;
}

.footer-right>p {
    color: lightgray;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    margin: 10px;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: lightgrey;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        margin: 20px 0;
        flex: 1;
    }

    .footer-left {
        padding-right: 0px;
    }
}

/* SUB FOOTER | SUB-FOOTER */

.sub-footer {
    background-color: var(--mid-dark-color);
    border-top: 1px solid #282828;
    color: lightgrey;
    padding: 40px;
}

.copyright-text {
    font-size: 12px;
}

.sub-footer .copyright-text {
    margin-bottom: 0;
}

.sub-footer-links {
    font-size: 12px;
}

.sub-footer .sub-footer-links {
    list-style-type: none;
    padding-left: 0;
}

.sub-footer .sub-footer-links li {
    display: inline-block;
    margin-left: 10px;
}

.sub-footer .sub-footer-links li:first-child {
    margin-left: 0;
}

.sub-footer .sub-footer-links a {
    color: lightgrey;
    text-decoration: none;
}

/* BACK TO TOP */

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 2000;
    border: none;
    outline: none;
    background-color: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#backToTopBtn:hover {
    background-color: var(--secondary-color);
}

#backToTopBtn>.material-symbols-outlined {
    font-size: 3rem;
    transform: translateX(-14px) translateY(-14px);
}

/* EXTRAS */

.text-animation {
    opacity: 0;
    position: relative;
    top: -20px;
    transition: opacity 0.9s ease, top 0.9s ease;
}

.text-animation.visible {
    opacity: 1;
    top: 0;
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.text-secondary-color-1 {
    color: var(--light-color);
}

.light-color-heading {
    color: var(--light-color);
}

.white-heading {
    color: var(--white);
}

.white-heading:hover {
    color: var(--white);
}

.high-z-index {
    z-index: 99 !important;
}

.justified-text {
    text-align: justify;
}

.required-asterisk {
    color: red;
}

.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.colored-link>a {
    color: var(--secondary-color);
}

.max-width-600 {
    max-width: 600px;
}

.no-decoration {
    text-decoration: none !important;
    color: inherit !important;
}