html,
body {
    font-family: "Cairo", sans-serif !important;
    background-color: var(--body-bg-color);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.dir-ar {
    direction: rtl;
}

.dir-en {
    direction: ltr;
}
/* __ new design __ */

li.active a {
    color: var(--primary-color);
    position: relative;
}
li.active a::before {
    content: "";
    width: 90%;
    height: 5px;
    border-radius: 2rem;
    position: absolute;
    bottom: -0.8rem;
    background: linear-gradient(90deg, #383172 6%, rgba(56, 49, 114, 0.2));
}

/* global btns */
.btn-purple-fill {
    color: #fff !important;
    border: thin solid #383172 !important;
    background-color: #383172 !important;
    border-radius: 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
}

.btn-purple-light {
    color: #383172 !important;
    border: thin solid #383172 !important;
    background-color: #fff !important;
    border-radius: 2rem;
    display: inline-block;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.3rem;
}

.goldenLink {
    color: #f28221;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    font-size: 1.4rem;
}

.circle-animate {
    animation: circle-animate 70s infinite linear;
}

@keyframes circle-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.titleSec {
    font-weight: bold;
    margin: 2rem auto;
    text-align: center;
}

/* ************************************************************************** */
/* ************************** waves styles *********************************** */
/* ************************************************************************** */
.waves {
    top: 65%;
    left: 0;
    width: 100%;
    height: 15vh;
}

/* Animation */
.wave-paths use {
    animation: move-waves 10s ease-in-out infinite;
    fill: #383172;
}
.wave-paths use:nth-child(odd) {
    animation-direction: reverse;
    animation-duration: 13s;
}
.wave-paths use:nth-child(1) {
    animation-delay: -2s;
    opacity: 0.7;
}
.wave-paths use:nth-child(2) {
    animation-delay: -3s;
    opacity: 0.5;
}
.wave-paths use:nth-child(3) {
    animation-delay: -4s;
    opacity: 0.3;
}
.wave-paths use:nth-child(4) {
    animation-delay: -5s;
}

@keyframes move-waves {
    0% {
        transform: translate3d(-30px, 0, 0);
    }
    50% {
        transform: translate3d(30px, 0, 0);
    }
    100% {
        transform: translate3d(-30px, 0, 0);
    }
}

/* __________ media query _____________ */
@media (max-width: 450px) {
    .waves {
        display: none;
    }
}

@media (min-width: 451px) and (max-width: 767px) {
    .waves {
        display: none;
    }
}
