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;
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-red);
}

:root {
    --main-color: #2e3192;
    --second-color: #4f59d1;
    --main-red: #ed1c24;
    --fliner-color: #edf1ff;
    --sliner-color: #8b9bff;
    --app-color: #f6f8ff;
    --p-color: #80828d;
}

.backs {
    position: fixed;
    height: 50px;
    width: 50px;
    right: -60px;
    bottom: 1vh;
    z-index: 10;
    transition: right 0.5s ease;
    display: block;
}

.button {
    width: 100%;
    background: #f4f6fd;
    padding: 0.5rem;
    border-radius: 5px;
}

.backtext {
    font-family: monospace;
    margin-top: 15px;
}

.backs .backtext {
    visibility: hidden;
    width: 120px;
    background-color: #f4f6fd;
    color: var(--main-color);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -17px;
    right: 110%;
}

.backs:hover .backtext {
    visibility: visible;
}

.backs .backtext {
    visibility: hidden;
    width: 120px;
    background-color: #f4f6fd;
    color: var(--main-color);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -17px;
    right: 110%;
}

.backs:hover .backtext {
    visibility: visible;
}

#new-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#new-loader img {
    width: 500px;
    filter: blur(1px);
    animation: flash 2s infinite;
}

#new-content {
    display: none;
}

@keyframes flash {
    0%,
    100% {
        opacity: 1;
        filter: none;
    }
    50% {
        filter: blur(5px);
    }
}

.circles-container {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    position: absolute;
    animation: scaleAndFade 2s infinite;
}

.circle.red {
    background-color: red;
    animation-delay: 0s;
}

.circle.blue {
    background-color: blue;
    animation-delay: 1s;
}

@keyframes scaleAndFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* header */

.header {
    height: 90px;
    background: linear-gradient(to left, #fff 0%, #edf1ff 120%);
    position: sticky;
    top: 0;
    z-index: 9999999;
}

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

.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: flex-start;
    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 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.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;
    justify-content: center;
    font-size: 1.5rem;
}

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

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

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

.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 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 {
        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;
}
@media (max-width: 991px) {
    .space {
        margin-bottom: 0rem;
    }
}

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

@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;
    z-index: 1;
    height: 100%;
    width: 40rem;
    filter: blur(0.5px);
}

@media (max-width: 991px) {
    .acount .acou-cntent .bake2 {
        display: none;
    }
}

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

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

.acount-text {
    /*direction: rtl;*/
}

@media (max-width: 991px) {
    .acount-text {
        height: 45vh;
    }
}

.acount-text h2 {
    background: var(--main-color);
    width: 30rem;
    text-align: center;
    height: 10rem;
    border-radius: 50px;
    color: #fff;
    position: absolute;
    padding: 1rem 0 5rem 0;
    font-size: 35px;
    font-weight: 500;
    bottom: 70%;
}

@media (max-width: 1300px) {
    .acount-text h2 {
        background: var(--main-color);
        width: 30rem;
        text-align: center;
        height: 10rem;
        border-radius: 50px;
        color: #fff;
        position: absolute;
        padding: 1rem 0 5rem 0;
        font-size: 35px;
        font-weight: 500;
        bottom: 80%;
    }
}
@media (max-width: 991px) {
    .acount-text h2 {
        position: absolute;
        background: var(--main-color);
        width: 15rem;
        text-align: center;
        height: 5rem;
        border-radius: 25px;
        color: #fff;
        position: relative;
        padding: 1rem 0 5rem 0;
        font-size: 20px;
        font-weight: 500;
        top: 5%;
    }
}
.acount-text p {
    position: relative;
    background: #edf1ff;
    font-size: 42px;
    padding: 2rem 20rem 2rem 2rem;
    border-radius: 40px;
    /*text-align: right;*/
    color: var(--main-color);
    font-weight: 400;
    width: 90%;
    background-image: url(/img/back\ main.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    margin: 0 0 10rem 0px;
}

@media (max-width: 991px) {
    .acount-text p {
        position: absolute;
        top: 15%;
        background: #edf1ff;
        font-size: 25px;
        padding: 1rem 3.5rem 1rem 1rem;
        border-radius: 20px;
        text-align: right;
        color: var(--main-color);
        font-weight: 400;
        width: 100%;
        background-image: url(/img/back\ main.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }
}

.acount-text2 {
    /*direction: rtl;*/
}

.pargraph {
    position: relative;
}

.acount-text2 h1 {
    background: var(--main-color);
    width: 22rem;
    text-align: center;
    height: 69px;
    border-radius: 50px;
    color: #fff;
    position: relative;
    padding: 0rem 0 0rem 0;
    font-size: 35px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .acount-text2 h1 {
        background: var(--main-color);
        width: 15rem;
        text-align: center;
        height: 1rem;
        border-radius: 25px;
        color: #fff;
        position: relative;
        padding: 0px 0 44px 0;
        font-size: 20px;
        font-weight: 500;
    }
}

.acount-text2 .par {
    position: relative;
    top: 15%;
    background: #edf1ff;
    font-size: 40px;
    padding: 1rem 9rem 1rem 2rem;
    border-radius: 20px;
    /*text-align: right;*/
    color: var(--main-color);
    font-weight: 400;
    width: 90%;
    margin: 1rem 0;
}

@media (max-width: 991px) {
    .acount-text2 .par {
        position: relative;
        top: 15%;
        background: #edf1ff;
        font-size: 20px;
        padding: 1rem 4rem 1rem 2rem;
        border-radius: 10px;
        text-align: right;
        color: var(--main-color);
        font-weight: 400;
        width: 100%;
        margin: 1rem 0;
    }
}

/* acount */

/* start footer style  */
footer {
    background-color: var(--main-color);
    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));
    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;
}

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

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

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

form .forms textarea {
    outline: none;
    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;
    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%;
}
