
body{
    /* background: linear-gradient(to bottom,  #FFFFFF 0%, #EDF1FF 120%); */
}

@font-face {
    font-family: Cairo;
    src: url('../fonts/Cairo/Cairo-VariableFont_slnt\,wght.ttf');
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cairo;
    text-decoration: none;
    list-style: none;
}

cursor{
    display: none;
}

.container{
    width: 90%;
    margin: 0 auto;
    /* overflow: hidden; */
    position: relative;

}

:root {
    --main-color: #2E3192;
    --second-color: #4F59D1;
    --main-red: #ED1C24;
    --fliner-color: #EDF1FF;
    --sliner-color: #8B9BFF;
    --app-color: #F6F8FF;
    --p-color: #80828D
}

/* header */


.header{
    height: 90px;
    /* padding: 1rem 0; */
    background: linear-gradient(to left,  #fff 0%, #EDF1FF  120%);
}

@media(max-width:991px){
    .header{
        height: 85px;
        background: linear-gradient(to left, #fff 0%, #EDF1FF 50%);
        position: sticky;
        top: 0;
        z-index: 9999;
        /* opacity: 0.9; */
    }
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* @media(max-width:991px){
    .navbar{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        background: #EDF1FF;
        width: 100%;
        position: fixed;
        height: 100%;
        justify-content: center;
        z-index: 999;
        margin: -20px 0;
        border-radius: 5px;
        padding: 2rem 5rem;
    }
} */

.navbar li{
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar li a{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 400;
    text-wrap: nowrap;
    transition: 0.3s ease;
}

.navbar li a:hover{
    color: var(--main-red);
}

@media(max-width:1200px){
    .navbar li a{
        font-size: 15px;
    }
}

@media(max-width:991px){
    .navbar li a{
        font-size: 25px;
    }
}
.navbar li a img{
     max-width: 100%;
     padding: 0.5rem 0;
}

li:last-child{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

li:last-child .fi-tr-earth-asia{
    font-size: 25px;
    display: flex;
    height: 100%;
    align-items: flex-end;

}


@media(max-width:991px){
    li:nth-child(6){
        display: none;
    }

    li:last-child{
        display: none;
    }
}

li:nth-child(3){
    position: relative;
}



.list-style li{
    display: block;
    background: #3D44A6;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    margin: 5px 0;
    padding: 0rem 3rem;
}

.list-style li a{
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     padding: 0 2rem;
}

@media(max-width:1200px){
    .list-style li a{
        color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     padding: 0 0rem;
    }
}

.navbar li a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.navbar li i{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    font-size: 1.5rem;
}

.mobile-nav {
    display: none !important;
 }

 @media (max-width: 991px) {
     .mobile-nav
    {
       display: block !important;
       position: relative;
       z-index: 9999999999;
       position: fixed;
    }
}

/* Dropdown Menu */
.navbar li.dropdown {
    position: relative;
    z-index: 9999;
}

/* .navbar li.dropdown:hover .list-style {
    display: block;
    transition: 0.3s ease-in;
} */



.list-style {
    display: none;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.flip{
    display: block;
    position: absolute;
    z-index: 9999999;
}

.list-style li {
    /* padding: 10px; */
}

.list-style li a {
    color: #fff;
    text-align: center;
}


/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        background: #EDF1FF;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 2rem;
        display: none;
        z-index: 99999;
    }

    .navbar.active {
        display: flex;
    }

    .mobile-nav {
        display: block;
        cursor: pointer;
        font-size: 30px;
        color: var(--main-color);
        padding: 1rem;
        margin: 0 0 1rem;
    }

    .navbar li a {
        /* font-size: 25px; */
        margin-bottom: 1rem;
    }

    .navbar li.logo {
        display: none;
    }

    .language-switch {
        display: none;
    }
}

/* Adjust dropdown for mobile */
@media (max-width: 991px) {
    .list-style {
        position: absolute;
        top: 0%;
        width: 100%;
        padding: 0;
        left: 50%;
        transform: translate(-30%, 50%);
    }

    .list-style li {
        width: 100%;
        padding: 0 5rem;
    }
}

.mobile-header{
    display: none;
}

@media (max-width: 991px) {
    .mobile-header{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mobile-header img{
        padding: 1rem 0;
        width: 5rem;
    }

    .mobile-header ul{
         position: absolute;
         display: flex;
    }
    .mobile-header ul i{
          font-size: 25px;
    }
    .mobile-header ul a{
        display: flex;
        align-items: end;
    }
}





/* header */


/* acount */
.space{
    /* height: 65vh;
    margin-bottom: 15rem; */
    /* padding: 1rem 0; */
}

.logo{
    opacity: 0.9;
}
@media(max-width:991px){
    .space{

        margin-bottom: 0rem;
        /* padding: 1rem 0; */
    }
}


.heating{
    margin: 5rem 0;
}
.acount{
    /* height: 50vh; */
    margin: 0 0 1rem;
    background-color: var(--main-color);
}
.acount .acou-cntent{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-height: 134vh; */
    height: 20vh;
}

@media(max-width:991px){
    .acount .acou-cntent .logo{
        width: 7rem;
   }
}

.acount .acou-cntent h1{
     color: #fff;
     font-size: 40px;
     position: relative;
     z-index: 2;
}

@media(max-width:991px){
    .acount .acou-cntent h1{
        font-size: 20px;
   }
}
.acount .acou-cntent span{
     color: var(--main-red);
     font-size: 40px;
}
@media(max-width:991px){
    .acount .acou-cntent span{
        font-size: 20px;
   }
}
.acount .acou-cntent .bake{
    position: absolute;
    right: -115px;
    transform: rotateY(20deg);
    height: 100%;
    z-index: 1;
    width: 500px;
    max-width: 100%;
}

@media(max-width:991px){

    .acount .acou-cntent .bake{
        position: absolute;
        right: -100px;
        width: 300px;
    }
}

.acount .acou-cntent .bake1{
    position: absolute;
    right: 4px;
    width: 630px;
    transform: translateX(12px);
    max-width: 100%;
    z-index: 1;
    height: 100%;
}

@media(max-width:991px){

    .acount .acou-cntent .bake1{
        position: absolute;
        right: -30px;
        width: 400px;
    }
}
.acount .acou-cntent .bake2{
    position: absolute;
    right: 240px;
    /* width: 30rem; */
    z-index: 1;
    height: 100%;
    width: 40rem;
    filter: blur(0.5px);
}

@media(max-width:991px){

.acount .acou-cntent .bake2{
    display: none;
}
}

.bak-left{
    position: absolute;
    top: 90%;
    border-radius: 20px;
    width: 30rem;
}

@media(max-width:991px){
    .bak-left {
        left: 50%;
        transform: translateX(-50%);
        width: 20rem;
    }
}






 /* news-bank */
.news-bank {
    margin: 5rem 0;
}

.news-bank .news-cont{
    background: rgb(247 249 255 / 50%);
}

.news-bank .news-cont .news-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 2rem 0;
    border-radius: 3px;
}

@media(max-width:991px){
    .news-bank .news-cont .news-box{
        flex-direction: column-reverse;
        gap: 25px;
    }
}

.news-bank .news-cont .news-box img{
    width: 400px;
    margin: 1rem;
    border-radius: 20px;
    height: 400px;
}

.news-bank .news-cont .news-box .news-text {
   /*direction: rtl;*/
   flex-grow: 1;
}

.news-bank .news-cont .news-box .news-text h3{
    text-align: end;
    font-size: 30px;
    color: var(--main-color);
    font-weight: bold;
    padding:  1rem ;
}

@media(max-width:991px){
    .news-bank .news-cont .news-box .news-text h3{
        text-align: center;
        width: 100%;

    }
}

.news-bank .news-cont .news-box .news-text p{
    font-size: 25px;
    /*width: 70%;*/
    color: var(--p-color);
    padding: 1rem;
}

@media(max-width:1200px){
    .news-bank .news-cont .news-box .news-text p{

        width: 100%;

    }
}
@media(max-width:991px){
    .news-bank .news-cont .news-box .news-text p{
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }
}

.news-bank .news-cont a{
    margin: 0 50px;
    font-size: 22px;
    text-decoration: underline;
    font-weight: bold;
    color: var(--main-color);
    display: block;
    transition: 0.3s ease;
    text-align: end;
    width: fit-content;
    /*margin: 0 auto 0 30px;*/
}

.news-bank .news-cont a:hover{
    color: var(--main-red);
}

@media(max-width:991px){
    .news-bank .news-cont a{
         justify-content: center;
         margin: 1rem 0;
    }
}


 /* news-bank */






 /* start footer style  */
 footer{
    background-color: var(--main-color);
    /* border-radius-top: 67%; */
    border-radius: 40px 40px 0px 0px;
}
.footer{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
    padding: 2rem 0;

}
.footer .img > img{
    width: 3rem;
    display: block;
    margin: auto;
}
.footer .links{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* justify-content: space-between; */
    /* gap: 2rem; */
    border-bottom: 1px solid white;
    padding: 1rem 0;
}
.footer .links > div{

   display: flex;
   justify-content: center;
}



.footer .links > div .dis{
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.3rem 0;
    padding: 2rem;
}

@media(max-width:991px){
    .footer .links > div .dis{
        align-items:center ;
    }
}

.footer .links > div .diss{
    color: rgb(255 255 255 / 70%);
    font-size: 20px;
    padding: 1rem;
    text-align: right;
}

.footer .links  .loges img{
     max-width: 100%;
}

.footer .links .loges p{
    padding: 0 1rem;
}




.footer .links > div .dis .gaping{
    margin: 2rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: end;

}

@media(max-width:991px){
    .footer .links > div .dis .gaping{
        justify-content: center;
    }
}

.footer .links > div .dis .gaping a{
    font-size: 20px;
    text-wrap: nowrap
}

.footer .links > div .dis .gaping i{

    display: flex;
    align-items: center;

}

.pad-fotter{
    padding: 1rem 0;
}



.footer .links > div .dis h4{

    position: relative;
    font-size: 25px;
}
.footer .links > div .dis h4::before{
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 20%);
    height: 5px;
    width: 100%;
    left: 50%;
    bottom: -60%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.footer .links > div .dis h4::after{
    content: "";
    position: absolute;
    background: rgb(255 255 255);
    height: 5px;
    width: 30%;
    left: 50%;
    bottom: -60%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

@media (max-width:800px){
    .footer .links > div{
        align-items: center;
        text-align: center;


    }
}

form{
     background-color: #EDF1FF;
     padding: 2rem;
     border-radius: 10px;
     /* margin: 3rem 0; */
}

form .forms{
    display: flex;
    flex-direction: column;
    text-align: right;
}

form .forms label{
     color: var(--main-color);
}

form .forms   input{
    outline: none;
    /* border: sienna; */
    border: none;
    background: #E1E8FF;
    border-radius: 5px;
    padding: 0.1rem;
    margin: 0.5rem 0px;
}

form .forms   textarea {
    outline: none;
    /* border: sienna; */
    border: none;
    background: #E1E8FF;
    border-radius: 5px;
    padding: 0.1rem;
    clip-path: content-box;
    max-width: 100%;
    margin: 0.5rem 0px;
}

.send{
    display: flex;
    margin: 1rem;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--main-color);
    width: fit-content;
    margin: 1rem auto 0;
    padding: 0 1rem;
    border-radius: 5px;
}

.send{
    display: flex;
    margin: 1rem;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--main-color);
    width: fit-content;
    margin: 1rem auto 0;
    padding: 0 1rem;
    border-radius: 5px;
    transition: ease 0.3s;
}

.send a{
    color: rgb(255 255 255 / 70%);
}
.send i{
    color: rgb(255 255 255 / 70%);
}

.send:hover a,.send:hover i{
    color: rgb(255 255 255 / 100%);
    transition: ease 0.3s;
}


.footer .links > div a,.footer .links > div a{
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    transition: ease 0.3s;
}

.footer .links div a:hover{
    color: rgb(255 255 255 / 100%);
}
.footer .links .social > div{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.footer .links .social > div i{
    font-size: 1.5rem;
}
.copywrite{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.603);
    align-items: center;
    margin: -1rem 0;
}
@media(max-width:991px){
    .copywrite{
        justify-content: center;
        gap: 1rem;
    }
}
.copywrite .Bin{
    width: 15rem;
    max-width: 100%;
}

@media(max-width:991px){
    .copywrite .Bin{
         display: none;
    }
}

.copywrite .Arab{
    width: 25rem;
    max-width: 100%;
}

