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

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

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

.heating {
    margin: 5rem 0;
}
.acount {
    margin: 0 0 1rem;
    background-color: var(--main-color);
    position: relative;
}

.acount .acou-cntent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 25vh;
}

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

.locat-bank {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .locat-bank {
        justify-content: center;
    }
}
.locat-bank h2 {
    color: var(--main-color);
    font-size: 30px;
}

.locat-bank span {
    color: var(--main-red);
    font-size: 30px;
}

.locat-bank i {
    font-size: 25px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ppp {
    font-size: 20px;
    color: var(--main-color);
    text-align: right;
    padding-right: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .ppp {
        text-align: center;
    }
}

.contact-page .contactss-dis {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis {
        font-size: 15px;
        gap: 0.5rem;
        flex-direction: column-reverse;
    }
}

.contact-page .contactss-dis .formss {
    background-color: #f6f8ff;
    padding: 1.5rem;
    width: 30% !important;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .formss {
        font-size: 15px;
        gap: 0.5rem;
        flex-direction: column-reverse;
        width: 100% !important;
    }
}
.contact-page .contactss-dis .cont-form {
    background-color: #f6f8ff;
    padding: 1.5rem;
    width: 50%;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-form {
        font-size: 15px;
        gap: 0.5rem;
        flex-direction: column-reverse;
        width: 100% !important;
    }
}

.contact-page .contactss-dis .cont-form h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 20px;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-form h2 {
        font-size: 12px;
    }
}

.contact-page .contactss-dis .cont-form .format {
    display: flex;
    flex-direction: column;
}

.contact-page .contactss-dis .cont-form .format label {
    display: block;
    text-align: end;
    font-size: 15px;
    color: var(--main-color);
    font-weight: 500;

    /* margin-bottom: 0.5rem; */
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-form .format label {
        font-size: 10px;
        margin-bottom: 0.5rem;
    }
}

.contact-page .contactss-dis .cont-form .format input {
    background: #e1e8ff;
    outline: none;
    border: none;
    padding: 5px 0.5rem;
    text-align: end;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 20px;
    caret-color: var(--main-color);
    color: var(--main-red);
    position: relative;
    width: 100%;
    direction: rtl;
}

.contact-page .contactss-dis .cont-form .format select {
    background: #e1e8ff;
    outline: none;
    border: none;
    padding: 8px 0.5rem;
    text-align: end;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 15px;
    caret-color: var(--main-color);
    color: var(--main-red);
    position: relative;
}

.Readigs {
    padding: 0.3rem !important;
}

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

.text-time h6 {
    color: var(--main-color);
    padding: 0.5rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-form .format input {
        padding: 0.2rem;
        text-align: end;
        border-radius: 10px;
        margin: 0.5rem 0;
        font-size: 10px;
    }
}

.contact-page .contactss-dis .cont-form .format textarea {
    background: #e1e8ff;
    outline: none;
    border: none;
    padding: 1rem;
    text-align: right;
    border-radius: 10px;
    margin: 1rem 0;
    max-width: 100%;
    color: var(--main-red);
}

.contact-page .contactss-dis .cont-form button {
    display: flex;
    background: var(--main-color);
    padding: 0.5rem 0;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: 0.3s ease;
    margin-top: 17px;
    border: none;
}

.contact-page .contactss-dis .cont-form button:hover {
    color: rgb(255 255 255 / 70%);
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-form button {
        font-size: 12px;
    }
}

.contact-page .contactss-dis .cont-number {
    width: 50%;
}

.contact-page .contactss-dis .cont-number .cont-back {
    background: #f6f8ff;
    margin: 0rem 0;
    border-radius: 10px;
    padding: 1rem;
}

.contact-page .contactss-dis .cont-number h2 {
    text-align: center;
    color: var(--main-color);
    font-size: 30px;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-number h2 {
        font-size: 10px;
    }
}

.contact-page .contactss-dis .cont-number .phons-nums {
}
.contact-page .cont-number .phone-num {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin: 1rem;
}

@media (max-width: 991px) {
    .contact-page .cont-number .phone-num {
        margin: 0.5rem 0;
    }
}

.contact-page .contactss-dis .phone-num i {
    color: var(--main-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .phone-num i {
        font-size: 12px;
    }
}

.contact-page .contactss-dis .phone-num h4 {
    flex-grow: 1;
    text-align: center;
    color: var(--main-color);
    font-size: 20px;
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .phone-num h4 {
        font-size: 9px;
        gap: 5px;
    }
}

.contact-page .contactss-dis .cont-number .soctial {
    background: #f6f8ff;
    padding: 1rem;
    border-radius: 20px;
}

.contact-page .contactss-dis .cont-number .soctial .seoc-cont {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact-page .contactss-dis .cont-number .soctial .seoc-cont i {
    font-size: 20px;
    color: var(--main-color);
    transition: 0.3s ease;
}

.contact-page .contactss-dis .cont-number .soctial .seoc-cont i:hover {
    color: var(--main-red);
}

@media (max-width: 991px) {
    .contact-page .contactss-dis .cont-number .soctial .seoc-cont i {
        font-size: 10px;
    }
}

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

.amount-wrapper {
    position: relative;
}

.Readig {
    padding-right: 100px;
}

.currency-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--main-color);
    display: none;
}

input {
    color: var(--main-color);
}

.bak-form {
    background-color: white;
}
