@font-face {
    font-family: 'Zain';
    src: url('../fonts/Zain-Regular.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Zain';
}

body {
    background-color: #010714;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    transition: all 0.7s ease-in-out;
}

nav a {
    color: #fff ;
    font-size: 14px;
    cursor: pointer
}

.mobnav {
    display: none;
}

.pcnav {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.pcnav-div1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
}

.pcnav-div1 img {
    width: 120px;
    cursor: pointer;
}

.pcnav-div1 ul {
    display: flex;
    align-items: center;
}

.pcnav-div1 ul li {
    margin: 0 15px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.pcnav-div1 ul li a {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.pcnav-div1 ul li a:hover {
    border-bottom: 2px solid #22947f;
}

.pcnav-div2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: fit-content;
    gap: 20px;
}

.pcnav-div2 ul {
    display: flex;
    align-items: center;
}

.pcnav-div2 ul li {
    margin: 0 10px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.pcnav-div2 button {
    padding: 6px 20px;
    border: none;
    border-radius: 5px;
    background-color: #22947f;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .pcnav {
        display: none;
    }

    .mobnav {
        display: flex;
    }

}

.mobnav {
    width: 100%;
    flex-direction: column;
    padding: 10px 20px;
    color: #fff;

}

.topmobnav {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topmobnav i {
    font-size: 24px;
    cursor: pointer;
}

.mobnav img {
    width: 120px;
    cursor: pointer;
}

.SearchIMG {
    width: 22px !important;
}

.mobnav button {
    padding: 6px 20px;
    border: none;
    border-radius: 5px;
    background-color: #22947f;
    color: #fff;
    cursor: pointer;
}
.bottommobnav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 9999;
    flex-direction: column;
    padding: 10px 20px;
    color: #fff;
    height: 100vh;
    display: none;
    overflow-y: scroll;
    animation: ani1 1s forwards;

}
.close-nav{
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    animation: ani1 1.5s forwards;

}
.mobnavdiv{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 70px;
    animation: ani1 1.5s forwards;
    transform: translateX(100%);
}
@keyframes ani1{
    0%{
        opacity: 0;
        transform: translateX(100%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.bottomultop{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.bottomultop li{
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bottomultop a{
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    background-color: #22947f;
    color: #fff;
    cursor: pointer;
    text-align: center;
}
.bottomultop li button{
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #23d4b4;
    border-radius: 20px;
    background-color: transparent;
    color: #23d4b4;
    cursor: pointer;
    text-align: center;
}
.bottomulbottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.bottomulbottom li{
    color: #fff;
    width: 100%;
    display: flex;
}
.bottomulbottom li a{
    padding: 10px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    width: 100%
}