/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Noto+Kufi+Arabic&display=swap');

:root {
    --theme-color: #0445DA;
    --scale: .8;
    --dark: #090D17;
}

/* --- MAIN COMPONENTS --- */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /*list-style: none;*/
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: -webkit-fill-available;
    color: #fff;
    background-color: #090D17;
    min-height: calc(100vh - 89px);
}

a, button {
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

a:hover {
    color: var(--theme-color);
}

img, video, iframe {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: inherit;
}

img.cover-fit, video.cover-fit, iframe.cover-fit {
    object-fit: cover;
}

.btn:focus {
    box-shadow: unset;
}

::selection {
    background: var(--theme-color);
    color: #fff;
}

.text-black {
    color: #000;
}

.theme-color {
    color: var(--theme-color);
}

section {
    position: relative;
}

.page-content {
    min-height: 100vh;
}

/* --- TITLES --- */
h1 {
    font-size: 72px;
}

h2 {
    font-size: 52px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: calc(26px * var(--scale));
}

h5 {
    font-size: calc(18px * var(--scale));
}

@media screen and (max-width: 850px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 597px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 23px;
    }
}

footer {
    padding-top: 26px;
    padding-bottom: 26px;
    background: #090D17;
    position: relative;
}

footer a {
    color: #fff;
    font-weight: 400;
}

footer a:hover {
    font-weight: 700;
}

footer ul {
    padding: 0;
    min-width: 65px;
}

footer li {
    margin-bottom: calc(32px * var(--scale));
}

.footer-logo {
    margin-bottom: 38px;
    width: fit-content;
}

.copyright {
    color: #fff;
    font-weight: 400;
    /*width: auto;*/
}

.social-media-links {
    display: flex;
    align-items: center;
    justify-content: start;
}

@media screen and (max-width: 597px) {
    .social-media-links {
        flex-direction: column;
    }

    .social-media-links a {
        margin-bottom: 10px;
    }

    .col-sm-6:has(.social-media-links) {
        position: absolute;
        width: fit-content;
        right: 0;
        top: 0;
        transform: translateY(50%);
    }

    .footer-logo {
        height: 60px;
    }

    .col-sm-6:has(.social-media-links) {
        position: absolute;
        /*width: fit-content;*/
        right: 22px;
        top: -10px;
        transform: translateY(205px);
        width: 35px;
        min-width: unset;
    }

}

.social-media-links {
    max-width: 212px;
}

.social-media-links a {
    height: 35px;
    width: 35px;
    margin-right: 10px;
}

.page-content {
    overflow: hidden;
}
