body {
    font-family: "Almarai", sans-serif;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

main {
    text-align: center;
    margin: 0rem;
    overflow-x: hidden;
}

main .hiro {
    margin: 0rem;
    background: url("../images/hirobg.webp") no-repeat center center;
    background-size: cover;
    padding: 0rem;
    min-height: fit-content;
    position: relative;
    overflow: hidden;
}

main .hiro .cont {
    padding: 4rem 0rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

main .hiro .cont .image {
    margin-top: -1rem;
    width: 45%;
}

main .hiro .cont .image img {
    width: 100%;
    height: 100%;
    max-width: 650px;
}

/* main .hiro .cont .image.ar {
    position: relative;
    left: -4%;
}

main .hiro .cont .image.en {
    position: relative;
    right: -4%;
} */

main .hiro .cont .text {
    width: 60%;
    color: #fff;
}

main .hiro .cont .text div p {
    font-size: 1.2rem;
}

main .hiro .cont .text div h5 {
    font-weight: 800;
    color: #f28221;
}

main .hiro .cont .text div h4 {
    color: #f28221;
    position: relative;
    width: fit-content;
    padding: 0.3rem 1rem;
}

main .hiro .cont .text div h4::before {
    content: "";
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff1c;
    border-radius: 3rem;
}

main .hiro .cont .text div blockquote {
    position: relative;
}

main .hiro .cont .text div blockquote .btn-light {
    border-radius: 2rem;
}

main .hiro .cont .text div blockquote .shape {
    position: absolute;
    display: block;
    top: 2px;
}

main .hiro .cont .text div blockquote .arrow-ar {
    left: 5rem;
}

main .hiro .cont .text div blockquote .arrow-en {
    right: 5rem;
}

main .hiro .circle {
    position: absolute;
    top: 40%;
    left: 43%;
    opacity: 0.2;
    animation: rotate 20s infinite linear;
}

main .hiro .palanet {
    position: absolute;
    width: fit-content;
    height: auto;
    opacity: 0.2;
    margin-bottom: 0rem;
}

main .hiro .palanet img {
    width: 100%;
    height: 100%;
}

main .hiro .planet1 {
    top: 30%;
    left: 50%;
    animation: bounceY 2s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main .hiro .planet2 {
    top: 65%;
    left: 41%;
    animation: bounceX 3s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main .hiro .planet3 {
    top: 90%;
    left: 29%;
    animation: bounceY 4s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main .hiro .planet4 {
    top: 76%;
    right: 14%;
    animation: bounceY 3s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main .hiro .planet5 {
    top: 25%;
    right: 22%;
    animation: rotate 4s infinite ease-in-out;
}

main .hiro .planet6 {
    top: 90%;
    left: 29%;
    animation: bounceY 4s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main .hiro .arrow {
    position: absolute;
    opacity: 0.2;
    animation: arrow 3s linear 5;
}

main .hiro .arrow1 {
    top: 100%;
    right: 0%;
}

main .hiro .arrow2 {
    top: 84%;
    right: 3%;
    opacity: 0.1;
    transform: rotate(360deg);
}

main .hiro .star {
    position: absolute;
    color: #ffd900;
    font-size: 1rem;
}

main .hiro .star1 {
    top: 50%;
    left: 50%;
    animation: flashing 1s infinite ease-in-out;
}

main .hiro .star2 {
    top: 52%;
    right: 20%;
    animation: flashing 2s infinite ease-in-out;
}

main .hiro .star3 {
    top: 40%;
    right: 30%;
    animation: flashing 3s infinite ease-in-out;
}

main .hiro .star4 {
    color: #f44d99;
    animation: flashing 1s infinite ease-in-out;
}

main .hiro .star5 {
    color: #f44d99;
    animation: flashing 0.6s infinite ease-in-out;
    top: 67%;
    left: 72%;
}

@keyframes bounceY {
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounceX {
    50% {
        transform: translateX(-15px);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes flashing {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes arrow {
    0% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(-90vw, -72vw);
    }
}

.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 (max-width: 450px) {
    main .hiro .cont {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 3rem;
        backdrop-filter: blur(2px);
    }

    main .hiro .cont .image {
        margin-top: 0rem;
        width: 70%;
    }

    main .hiro .cont .image img {
        width: 100%;
        height: auto;
    }

    main .hiro .cont .text {
        width: 90%;
    }

    main .hiro .cont .text div blockquote .arrow-ar {
        display: none;
        left: -6rem;
    }

    main .hiro .cont .text div blockquote .arrow-en {
        display: none;
        right: 2rem;
    }

    main .hiro .cont .text div blockquote .btn-light {
        margin-top: 0.5rem;
    }

    main .waves {
        display: none;
    }
}

@media (min-width: 451px) and (max-width: 767px) {
    main .hiro .cont {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 3rem;
        backdrop-filter: blur(2px);
    }

    main .hiro .cont .image {
        margin-top: 0rem;
        width: 55%;
    }

    main .hiro .cont .image img {
        width: 100%;
        height: auto;
    }

    main .hiro .cont .text {
        width: 90%;
    }

    main .hiro .cont .text div blockquote .arrow-ar {
        display: none;
        left: -6rem;
    }

    main .hiro .cont .text div blockquote .arrow-en {
        display: none;
        right: 2rem;
    }

    main .waves {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    main .hiro .cont {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 3rem;
        backdrop-filter: blur(2px);
        padding-top: 3rem;
    }

    main .hiro .cont .image {
        margin-top: 0rem;
    }

    main .hiro .cont .image img {
        width: 100%;
        height: auto;
    }

    main .hiro .cont .text {
        width: 90%;
    }

    main .hiro .cont .text div blockquote .arrow-ar {
        display: none;
        left: -6rem;
    }

    main .hiro .cont .text div blockquote .arrow-en {
        display: none;
        right: 2rem;
    }
}

@media (min-width: 1040px) and (max-width: 1200px) {
    main .hiro .cont .text div blockquote .shape {
        display: none;
    }
}

@media (min-width: 2500px) {
    main .hiro .cont .text {
        width: 80% !important;
        justify-content: center !important;
    }
}

header {
    background-color: #fff;
    color: #383172;
    transition: all 0.4s ease-in;
    position: relative;
    width: 100%;
    padding-top: 1rem;
    margin: 0rem auto;
    box-shadow: 0px -4px 15px #383172;
    z-index: 500 !important;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

header .container .logo {
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
}

header .container .logo img {
    width: 120px;
}

header .container nav {
    width: -moz-fit-content;
    width: fit-content;
}

header .container nav .links {
    margin-bottom: 0rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

header .container nav .links li {
    cursor: pointer;
}

header .container nav .links li a {
    display: inline-block;
    white-space: nowrap;
    margin: 1rem 0rem;
    letter-spacing: 0.5px;
    color: #383172;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

header .container nav .links li a:hover {
    opacity: 0.7;
}

header .container nav .links span {
    display: inline-block;
    height: 25px;
    width: 1.6px;
    border-radius: 1px;
    background-color: #cacaca;
}

header .container .controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

header .container .menu {
    display: none;
    color: #383172;
}

header.fixed {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8274509804);
    top: 0;
    left: 0;
    border-radius: 0;
    transition: all 0.4s ease-in;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.btn-purple-light {
    padding: 0.5rem 1rem;
    align-items: center;
}

/*************************************************************************************************************************/

.menu.listing {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.menu.listing .p-sidebar {
    background-color: #ffff;
    width: 320px;
    padding: 20px;
    overflow-y: auto;
}

.menu.listing .p-sidebar .p-sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
}

.menu.listing .p-sidebar .p-sidebar-header a {
    white-space: nowrap;
    margin-bottom: 0;
    cursor: pointer;
}

.menu.listing .p-sidebar .p-sidebar-header a img {
    width: 120px;
}

.menu.listing .p-sidebar .p-sidebar-content .links {
    width: 100%;
    margin: 0;
    direction: rtl;
}

.menu.listing .p-sidebar .p-sidebar-content .links.dir-ar {
    direction: ltr;
}

.menu.listing .p-sidebar .p-sidebar-content .links li {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.menu.listing .p-sidebar .p-sidebar-content .links li a {
    margin: 1rem 0;
    letter-spacing: 0.5px;
    color: #383172;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.menu.listing .p-sidebar .p-sidebar-content .links li a:hover {
    opacity: 0.7;
    color: #f28221;
}

.menu.listing .p-sidebar .p-sidebar-content .links li i {
    font-size: 1rem;
    margin: 0 0.5rem;
}

.menu.listing .p-sidebar .p-sidebar-content .links li .active {
    margin-right: 1rem;
    color: #383172;
}

.menu.listing .p-sidebar .p-sidebar-content .links li .active i {
    color: #383172;
}

.menu.listing .p-sidebar .p-sidebar-content .links li .btn {
    font-size: 0.8rem;
}

.menu.listing .p-sidebar .p-sidebar-content .links li .btn a {
    font-size: 0.8rem;
}

.menu.listing .p-sidebar .p-sidebar-content .links li .btn-purple-fill {
    color: #fff;
    margin-inline: 0 !important;
}

.p-button {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.p-button span {
    font-size: 2rem;
    color: #383172;
}

@media (max-width: 450px) {
    header {
        width: 100%;
    }

    header .container {
        justify-content: space-between;
    }

    header .container nav {
        display: none;
    }

    header .container .controls {
        display: none;
    }

    header .container .menu {
        display: block;
    }
}

@media (min-width: 451px) and (max-width: 1200px) {
    header {
        width: 100%;
    }

    header .container {
        justify-content: space-between;
    }

    header .container nav {
        display: none;
    }

    header .container .controls {
        display: none;
    }

    header .container .menu {
        display: block;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    header {
        width: 100%;
        z-index: 500;
    }

    header .container .controls .btn {
        font-size: 0.8rem;
    }

    header .container .menu {
        font-size: 0.8rem;
        display: none;
    }

    header .container nav .links {
        gap: 0.8rem;
        padding: 0rem;
    }

    header .container nav .links li a {
        font-size: 1rem;
        font-weight: 800;
    }
}
