@font-face {
    font-family: Circe;
    src: url(fonts/CRC35.otf) format(opentype);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Circe;
    font-size: 1.2em;
}
body {
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::after{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(26, 26, 26, 0.3);
}

.background-slider {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slider div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.content .nav{
    width: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 40px auto;
}
.content .nav .logo{
    width: 160px;
}
.nav .logo img{
    width: 100%;
}
.nav .links{
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav .links a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.nav .links .active{
    color: rgb(150, 208, 238);
}
.square-image {
    width: 50%; 
    aspect-ratio: 1 / 1;
    object-fit: contain; 
}
.aspect-ratio-image {
    width: 50%;
    max-width: 100%; 
    aspect-ratio: auto 1; 
    object-fit: contain;
}
.logo {
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    width: auto; 
    max-height: 90%;
    margin-right: 10px; 
    max-width: 45%; 
}
.arabic-style {
    text-align: right !important;
}
.hero-section{
    width: 90%;
    max-width:1300px;
    margin: 0px auto;
    display: flex;
    text-align: justify;
    justify-content: center;
}
.hero-section .left, .hero-section .right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-top: 2rem;
}
.hero-section .left{
    gap: 30px;
}
.hero-section .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.hero-section .left p{
    color: #fff;
    font-size: 16px;
}
.tn-atom__html{
    height: 329px;
}
.footer{
    width: 90%;
    margin: 0px auto;
    display: flex;
    margin-top: 4rem;
    flex-wrap: wrap;
    max-width:1300px;
}
.footer .col{
    width: 16.5%;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.footer .col .row{
    margin-bottom: 1rem;
    
}
.footer .col .border-left{
    border-left: 1px solid #fff;
    padding-left: 10px;
}
.footer .col .row p{
    font-size: 17px;
    padding-left: 10px;
}
.footer .col h4{
    font-size: 18px;
}
@media screen and (min-width:2551px) and (max-width:4000px) {
    .content{
        max-width: 4000px;
        margin: 0px auto;
    }
}
@media screen and (min-width:1600px) and (max-width:2500px) {
    .content{
        max-width: 2500px;
        margin: 0px auto;
    }
}
@media screen and (max-width:800px) {
    .hero-section .right{
        display: none;
    }
    .hero-section .left{
        width: 50%;
    }
    .footer .col{
        width: 40%;
    }
    .content .nav .logo {
        width: 120px;
    }
    .hero-section .left{
        width: 100%;
    }
    .hero-section .left img{
        width: 80%;
    }
    .footer{
        flex-direction: column;
    }
    .footer .col{
        width: 100%;
        margin-top: 1rem;
        font-size: 1.2em;
    }
    .footer .col h4 {
        font-size: 17px;
    }
    .footer .col .row p {
        font-size: 14px;
    }
    
}
