/* --- 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: #2D4F6C;
    --secondary-color: #020056;
    --accent-color: #f62a4b;
    --scale: .7;
    --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: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: -webkit-fill-available;
    color: #fff;
    background-color: #f0f0f0;
    min-height: calc(100vh - 89px);
    line-height: 1.5;
}

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;
}

.text-black-1 {
    color: #343434;
}

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

section {
    position: relative;
    overflow: hidden;
}

.page-content {
    min-height: 100vh;
    padding-top: 91px;
}

p {
    font-weight: 400;
}

.h-fit {
    height: fit-content;
}

/* --- TITLES --- */
h1, h2 {
    line-height: 1.1;
}

h3, h4, h5, h6 {
    line-height: 1.3;
}

h1 {
    font-size: calc(100px * var(--scale));
    font-weight: 800;
}

h2 {
    font-size: calc(80px * var(--scale));
    font-weight: 800;
}

h3 {
    font-size: calc(70px * var(--scale));
    font-weight: 800;
}

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

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

h6 {
    font-size: calc(26px * var(--scale));
    line-height: 1.4;
}

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

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }
}

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

    h2 {
        font-size: 43px;
    }
}

footer {
    padding-top: 30px;
    padding-bottom: 15px;
    background: #1D1D1D;
    position: relative;
}

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

footer a:hover {
    color: var(--accent-color);
}


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

.footer-logo {
    width: 150px;
}

.copyright {
    color: #fff;
    font-weight: 400;
    font-size: 14px !important;
    margin-left: 20px;
}

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


.footer-links h6 {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 17px;
}

.footer-links li {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-links a {
    font-weight: 400;
    opacity: .9;
    transition: 100ms;
}

footer a {
    transition: 200ms;
}

.social-media-links a i {
    font-size: 22px;
    margin-left: 30px;
}

.page-content {
    overflow: hidden;
}

.footer-bottom-section {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #6A6A6A40;
}

.footer-bottom-section * {
    font-size: 14px;
}

.footer-bottom-section .origin-logo {
    height: 16px;
    width: auto;
}

.icon-logo {
    height: 100px;
    width: fit-content;
}

.menu-link .menu-dropdown, .menu-link *, .menu-item *, .menu-item {
    user-select: none; /* For modern browsers */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For older Internet Explorer */
}

@media screen and (max-width: 597px) {
    footer .col {
        flex: unset;
        width: 50%;
    }

    .footer-logo {
        width: 225px;
    }
}
