* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: aventa;
    font-size: var(--small-font-size);
}

@font-face {
    font-family: ibm_sans;
    src: url(./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: han_sans;
    src: url(./fonts/Black_Han_Sans/BlackHanSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: agelast;
    src: url(./fonts/agelast/Agelast_PersonalUse.otf);
    font-display: swap;
}

@font-face {
    font-family: nebula;
    src: url(./fonts/nebula_2/Nebula-Regular.otf);
    font-display: swap;
}

@font-face {
    font-family: aventa;
    src: url(./fonts/aventa/Aventa-LightPERSONALUSEONLY.otf);
    font-display: swap;
}

@font-face {
    font-family: alice;
    src: url(./fonts/Alice/Alice-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: gafiya;
    src: url(./fonts/Gafiya/gafiya.regular.otf);
    font-display: swap;
}

@font-face {
    font-family: gilroy;
    src: url(./fonts/Gilroy/Gilroy-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: pinyon;
    src: url(./fonts/Pinyon/PinyonScript-Regular.ttf);
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

.particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.break {
    width: 0px;
    height: 0px;
    flex-basis: 100%;
}

body section {
    position: relative;
    z-index: 10;
}

.hidden-label {
    opacity: 0;
    pointer-events: none;
    scale: 0;
    position: absolute;
}

/* Font Sizes */

:root {

    /* --sy-primary-color: #030706;

    --sy-secondary-color: #071c20; */

    --sy-primary-color: #44275f;

    --sy-secondary-color: #8650a4;

    --sy-trinary-color: #c88165;

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 0.8vw;

    --tiny-font-size: 0.6vw;

}

@media (min-width:1025px) and (max-width:1434px) {
    
    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 1.7vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    
    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

    }
    
}

@media (min-width:500px) and (max-width:768px) {
        
    :root {

        --enormous-font-size: 15vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

    }
    
}

@media (max-width:500px) {
    
    :root {

        --enormous-font-size: 17vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

html {
    overflow-x: hidden;
}



/* ================================================ NAV =================================================== */



nav {
    width: 100%;
    height: 150px;
    background-image: linear-gradient(180deg,black,transparent);
    position: fixed;
    top: 0%;
    z-index: 100;
    padding: 0% 5%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

nav .logo {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

nav .logo a {
    height: 70%;
}

@media (max-width:1443px) {
    nav .logo a {
        height: 50%;
    }
}

nav .logo a img {
    height: 100%;
    object-fit: cover;
}

nav .login {
    width: auto;
    height: 30%;
}

nav .login svg {
    width: auto;
    height: 100%;
    color: white;
}

nav .nav-btns-container {
    width: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
}

@media (max-width:1025px) {
    nav .nav-btns-container {
        display: none;
    }
}

nav .nav-btns-container a {
    height: 100%;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    font-size: var(--intermediate-font-size);
}

nav .nav-btns-container a:after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all linear 0.2s;
}

nav .nav-btns-container a:hover::after {
    width: 100%;
    left: 0%;
}

nav .nav-drawer-btn {
    color: white;
    display: none;
}

@media (max-width:1025px) {
    nav .nav-drawer-btn {
        display: flex;
        align-items: center;
    }
}

nav .nav-drawer-btn svg {
    width: 50px;
    height: 100%;
    color: white;
    fill:  white;
}

nav .nav-drawer {
    width: 100%;
    height: 100%;
    background-color: #0002103d;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    position: fixed;
    top: 0%;
    right: -110%;
    z-index: 2;
    transition: all linear 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

@media (min-width:1025px) {
    nav .nav-drawer {
        display: none;
    }
}

nav .nav-drawer .nav-drawer-header {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0% 5%;
}

nav .nav-drawer .nav-drawer-header img {
    max-width: 70%;
    height: 70%;
    object-fit: cover;
}

@media screen {
    nav .nav-drawer .nav-drawer-header img {
        max-width: 70%;
        height: 50%;
        object-fit: cover;
    }
}

nav .nav-drawer .nav-drawer-header svg {
    width: 50px;
    height: 50px;
    color: white;
    fill:  white;
    cursor: pointer;
}

nav .nav-drawer .nav-drawer-body {
    width: 100%;
    height: calc(60% - 150px);
    display: flex;
    align-items: stretch;
    padding: 5%;
}

nav .nav-drawer .nav-drawer-body ul {
    list-style: none;
}

nav .nav-drawer .nav-drawer-body ul li {
    margin-bottom: 20px;
}

nav .nav-drawer .nav-drawer-body ul li a {
    width: 100%;
    height: auto;
    color: white;
    text-decoration: none;
}

nav .nav-drawer .nav-drawer-footer {
    width: 100%;
    height: auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

nav .nav-drawer .nav-drawer-footer p {
    color: white;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    gap: 20px;
}

@media (max-width:500px) {
    nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials {
        gap: 10px;
        flex-wrap: wrap;
    }
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials a {
    width: 50px;
    height: 50px;
    padding: 10px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.404);
    border-radius: 50%;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials a svg {
    width: 100%;
    height: 100%;
    fill: white;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-contract-btn {
    width: fit-content;
    height: auto;
    padding: 20px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.404);
    border-radius: 16px;
    display: block;
    margin-top: 5px;
}

.nav-drawer-active {
    right: 0% !important;
}




/* ============================================== SYRIA HOME ============================================== */




.syria-home-body {
    width: 100%;
    height: auto;
    background-color: white;
}

.syria-home-body section {
    width: 100%;
    height: auto;
}

.syria-home-body section .intro {
    width: 100%;
    min-height: 100vh;
    padding: calc(150px + 5%) 10% 5% 10%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

@media (max-width:1443px) {
    .syria-home-body section .intro {
        padding: calc(150px + 10%) 5% 5% 5%;
    }
}

/* .syria-home-body section .intro::after {
    content: '';
    width: 100%;
    height: 100px;
    background-image: linear-gradient(to top, white, #c88165, transparent);
    position: absolute;
    bottom: 0%;
    left: 0%;
} */

.syria-home-body section .intro h1 {
    width: 100%;
    font-size: var(--huge-font-size);
    position: relative;
    color: white;
    z-index: 1;
    margin-bottom: 10%;
}

.syria-home-body section .intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    filter: brightness(20%);
}

.syria-home-body section .intro .intro-footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

@media (max-width:1025px) {
    .syria-home-body section .intro .intro-footer {
        flex-direction: column;
    }
}

.syria-home-body section .intro .intro-footer div {
    width: 34%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.459);
    cursor: pointer;
}

@media (max-width:1025px) {
    .syria-home-body section .intro .intro-footer div {
        width: 100%;
    }
}

.syria-home-body section .intro .intro-footer div::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: transparent;
    position: absolute;
    top: 100%;
    left: 0%;
    transition: all ease-in-out .3s;
    color: #071c20;
}

.syria-home-body section .intro .intro-footer div:hover::after {
    background-color: red;
}

.syria-home-body section .intro .intro-footer div p {
    color: white;
}

.syria-home-body section .intro .intro-footer div a {
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.syria-home-body section .intro .intro-footer div a span {
    color: white;
}

.syria-home-body section .intro .intro-footer div a svg {
    width: 20px;
    height: 20px;
    stroke: white;
}














































