*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(178deg, #2D2960 1.56%, #0F1114 105.08%);;
    overflow-x: hidden;
    direction: rtl;
    padding-bottom: 130px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

::selection {
    background-color: #800080;
    color: #fff;
}

input:focus {
    border: none;
    outline: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Extra small */

@media (max-width: 575px) {
    .container {
        width: 100%;
        max-width: 445px;
    }
}

/* Small */

@media (min-width: 576px) {
    .container {
        width: 546px;
    }
}

/* Medium */

@media (min-width: 768px) {
    .container {
        width: 738px;
    }
}

/* Large */

@media (min-width: 992px) {
    .container {
        width: 962px;
    }
}

/* Extra large */

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* XXL */

@media (min-width: 1400px) {
    .container {
        width: 1370px;
    }
}

/* End Main */

/* Start Main */

.main-section {
    margin: 4rem 0 0;
}

.our-ser-title {
    color: #fff;
    text-align: center;
    margin-bottom: 35px;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 500;
}

.no-items {
    text-align: center;
    color: #000;
}

/* End Main */

/* Start Nav */
nav {
    width: 100%;
    position: relative;
    z-index: 100;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 767px) {
    .main-nav {
        flex-direction: column;
    }
}
.main-nav .logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}
.main-nav .logo img {
    height: 60px;
    width: 60px;
}
.main-nav .logo a {
    color: #fff;
    font-size: 1.7rem;
}
.nav-ul {
    display: flex;
    align-items: center;
}

.nav-ul form {
    width: 100%;
    padding: 0.5rem;
    position: relative;
    color: #fff;
}

.nav-ul form input {
    padding: 0.5rem;
    outline: none;
    border: none;
    width: 100%;
    color: #fff;
    border-bottom: 0.5px solid #fff;
    background-color: #800080;
}

.nav-ul form input:active {
    background-color: transparent;
}

.nav-ul form input::placeholder {
    color: #fff;
    transition: all 0.3s;
}

.nav-ul form input:focus::placeholder {
    opacity: 0;
}

.nav-ul form input:focus {
    outline: none;
}

.nav-ul form i {
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    color: #fff;
}

 /* End nav */

/* Start Footer */

footer {
    height: 100px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 4rem;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    backdrop-filter: blur(25px);
}

/*@media (max-width: 767px) {*/
/*    footer {*/
/*        background-color: rgba(128, 0, 128, 0.7);*/
/*    }*/
/*}*/

footer .links {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
}

footer .links a {
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

/*@media (max-width: 767px) {*/
/*    footer .call-us-btn,*/
/*    footer .privacy-btn {*/
/*        display: none !important;*/
/*    }*/
/*}*/

/* End Footer */

/* start social media icon */

.social-media-icon { 
    z-index: 999; 
    margin: 0px; 
    color: #fff;
    position: fixed; 
    bottom: 100px; 
    right: 15px; 
    width: 50px; 
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content:center;
}

@media (max-width: 575px) {
    .social-media-icon {
        right: 5px;
    }
}

.social-media-icon i {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

/* end social media icon */

/* tag menu */

.menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    width: calc(100vw - 65px);
    min-height: 100vh;
    transition: transform 1s ease-in-out;
    transform: translateX(100%);
}

@media (min-width: 768px) {
    .menu {
        display: none;
    }
}

.menu.active {
    transform: translateX(0);
}

.menu-toggle {
    position: absolute;
    top: 20px;
    right: calc(100vw - 55px);
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu-toggle span {
    display: block;
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 8px;
    user-select: none;
    transition: transform 0.2s ease-in-out;
}

.menu-toggle span:nth-child(2) {
    width: 70%;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.menu-toggle.active span:first-child {
    top: 50%;
    margin-bottom: 0;
    transform: rotate(45deg) translateY(-50%);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    top: 0;
    transform: rotate(-45deg) translateY(-50%);
}

.logo-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-menu img {
    width: 120px;
    height: 120px;
}

.logo-menu a {
    color: #800080;
    font-size: 2rem;
    font-weight: 700;
}

.menu-list {
    position: relative;
    list-style: none;
    padding: 2rem 1rem;
}

.menu-list.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-list li {
    margin-bottom: 0.8rem;
}

.menu-list a {
    display: block;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
}

/* start back to top */

#back-to-top .top { 
    z-index: 999; 
    margin: 0px; 
    background: #fff;
    border: 1px solid #fff;
    position: fixed; 
    bottom: 100px; 
    left: -50px; 
    width: 50px; 
    height: 50px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content:center;
    -webkit-transition: all .3s ease-in-out; 
    -moz-transition: all .3s ease-in-out; 
    transition: all .3s ease-in-out; 
}
#back-to-top .top:hover { 
    background: #0F1114; 
}
#back-to-top .top i {
    color: #0F1114;
    font-size: 20px;
    font-weight: 900;
    -webkit-transition: all .3s ease-in-out; 
    -moz-transition: all .3s ease-in-out; 
    transition: all .3s ease-in-out; 
}
#back-to-top .top:hover i {
    color: #fff;
    }

#back-to-top .top-show {
    left: 15px;
}

/* end back to top */