body {
    overflow-x: hidden;
    font-family: "Cairo", "Roboto", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
header {
    background-color: rgba(1, 1, 1, 0.2);
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 30px;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
}

.logo {
    width: 150px;
    object-fit: cover;
}
header nav ul {
    display: flex;
    gap: 40px;
}
header nav ul li {
    list-style: none;
    color: #fff;
}
header nav ul li a {
    color: #d3c8c6;
    text-decoration: none;
    font-size: 20px;
}

header a.artist-register {
    background-color: #ef3232;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

header a.arm-register {
    background-color: rgb(57 16 127);
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
}


.hero {
    background: linear-gradient(
            90deg,
            rgba(54, 11, 134, 1) 0%,
            rgba(55, 11, 132, 0.6101253733915442) 11%,
            rgba(55, 11, 132, 0.6101253733915442) 20%,
            rgba(153, 39, 35, 0.3473802753523284) 49%,
            rgba(232, 89, 37, 0.6521421801142332) 65%,
            rgba(133, 100, 7, 0.5036827963607318) 86%,
            rgba(133, 100, 7, 0.5036827963607318) 92%,
            rgba(180, 125, 15, 1) 100%
        ),
        url("../images/hero.jpg") no-repeat center center/cover;

    height: 100vh;
    padding: 20px 50px;
    position: relative;
}

.hero h1 {
    color: #fff;
    font-size: 4rem;
    text-align: left;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.hero p {
    position: absolute;
    color: #fff;
    right: 20%;
    bottom: 10px;
    font-size: 2rem;
    z-index: 3;
}

/* section two */
.section-two {
    background: rgb(56, 16, 125);
    background: linear-gradient(
        90deg,
        rgba(56, 16, 125, 1) 0%,
        rgba(40, 27, 63, 1) 75%,
        rgba(32, 32, 34, 1) 100%
    );
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 140px;
}

.section-two .benefit-icons-container {
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.section-two .benefit-icons-container img {
    width: 90px;
    height: 90px;
    border: 5px solid #d5d0ca;
    border-radius: 50%;
    padding: 10px;
    margin-top: -35px;
}

.section-two .about-container {
    height: 100%;
    width: 50%;
    background-color: #d5d0ca;
    padding: 100px 60px;
    border-radius: 5px;
    margin-top: -40px;
    position: relative;
}
.section-two .about-container p {
    font-size: 2rem;
}

.section-two .about-us-meta {
    display: flex;
}

.section-two .about-us-titles {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
}

.section-two .about-us-titles p {
    height: 45px;
    width: 300px;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    position: relative;
}
.section-two .about-us-titles p::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    display: block;
    background-color: #d5d0ca;
    bottom: 12px;
}

.section-two h1 {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 3px;
}

/* section three */
.section-three {
    background-color: #202020;
    position: relative;
    padding-top: 20px;
    padding-bottom: 80px;
}

.section-three .team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section-three .team-container .team-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.section-three .team-container .team-item img {
    width: 210px;
    height: 239px;
    max-width: 210px;
}

.section-three .team-container .team-item p {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.section-three .section-three-text {
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-top: 150px;
    font-weight: 100;
}

.section-three .video-container {
    margin: 60px auto 100px;
    text-align: center;
    width: 800px;
}

.section-three .upcoming-events {
    margin-left: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.section-three .upcoming-events h1 {
    font-size: 3rem;
    color: white;
    font-weight: 400;
}

.section-three .upcoming-events .events-container {
    font-size: 2.8rem;
    display: flex;
    color: white;
    font-weight: 400;
    gap: 40px;
    margin-top: 30px;
}

/* footer */
footer {
    background: rgb(32, 32, 34);
    background: linear-gradient(
        90deg,
        rgba(32, 32, 34, 1) 0%,
        rgba(38, 28, 53, 1) 14%,
        rgba(57, 16, 127, 1) 100%
    );

    padding: 30px 120px;
}

footer .social-title {
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 400;
}

footer .social-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 30px auto 70px;
}

footer .social-container a {
    text-decoration: none;
    cursor: pointer;
}
footer .social-container img {
    width: 84px;
    height: auto;
    object-fit: cover;
    min-width: 44px;
}

footer .partner-text {
    font-size: 2.4rem;
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 400;
}
footer .partners-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    /* width: 60%; */
    margin: 60px auto 80px;
}
footer .partners-container img {
    max-width: 200px;
    max-height: 100px;
    object-fit: cover;
}

footer .event-subscribe {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
footer hr {
    border: none;
    height: 5px;
    width: 100%;
    background-color: #d5d0ca;
}

.copyright {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 400;
}

.copyright img {
    height: 25px;
}

@media screen and (max-width: 768px) {
    .section-two .about-us-titles {
        margin-top: 0;
    }
    .section-two .about-us-titles p {
        width: 100%;
    }
    .section-two .about-us-titles p::before {
        display: none;
    }
    .section-two .benefit-icons-container {
        margin-top: 0;
    }
    .section-two .benefit-icons-container img {
        margin-top: 0;
    }

    .section-three .team-container {
        flex-direction: column;
        align-items: center;
    }
    .section-three .team-container .team-item {
        align-items: center;
    }
    .section-three .team-container .team-item img {
        width: 100%;
        height: auto;
    }
    .section-three .video-container {
        width: 100%;
    }
    .section-three .upcoming-events {
        margin-left: 0;
    }
    .section-three .upcoming-events .events-container {
        flex-direction: column;
        align-items: center;
    }
    footer .social-container {
        width: 100%;
    }
    footer .partners-container {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    /*header  */
    header {
        padding: 10px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    /* hero */
    .hero h1 {
        font-size: 2.7rem;
        position: relative;
        top: 60%;
    }
    .hero p {
        position: absolute;
        color: #fff;
        left: 0;
        right: 0;
        bottom: 25px;
        font-size: 1.6rem;
        text-align: center;
    }

    .section-two {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }
    .section-two .benefit-icons-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .section-two .benefit-icons-container img {
        width: 90px;
        display: block;
        min-width: 90px;
        height: 90px;
        border: 5px solid #d5d0ca;
        border-radius: 50%;
        padding: 10px;
    }

    .section-two .about-container {
        width: 100%;
        padding: 29px;
        margin-top: -10px;
    }
    .section-two .about-us-meta {
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 40px;
        flex-direction: row-reverse;
    }
    .section-two .about-us-titles {
        gap: 80px;
    }
    .section-two .about-us-titles p {
        width: auto;
        height: 31px;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        font-size: 20px;
        position: relative;
    }
    .section-two .about-us-titles p::before {
        display: none;
    }

    .section-two h1 {
        position: relative;
        transform: unset;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 70px;
    }
    /* section three mobile */
    .section-three {
        padding-right: 10px;
        padding-left: 10px;
    }
    .section-three .team-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .section-three .section-three-text {
        font-size: 2.6rem;
    }

    .section-three .upcoming-events {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        align-items: center;
    }

    .section-three .upcoming-events h1 {
        font-size: 2.6rem;
    }
    .section-three .upcoming-events .events-container {
        font-size: 2.4rem;
    }

    /* footer */
    footer {
        padding: 30px;
    }

    footer .social-container {
        gap: 20px;
    }

    footer .partners-container {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 60px auto 80px;
    }

    footer .partners-container img {
        max-width: 80px;
        max-height: 100px;
    }

    .copyright {
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        gap: 10px;
        font-size: 1.3rem;
        font-weight: 400;
        flex-wrap: wrap;
    }
}

.static-page {
    padding: 50px 40px;
    text-align: right;
    direction: rtl;
    font-family: "Cairo", "Roboto", sans-serif;
}

.static-page.en {
    text-align: left;
    direction: ltr;
}

.static-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.static-page h1,
.static-page h2,
.static-page h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}

.static-page p {
    line-height: 1.5;
    text-align: right;
}

.static-page.en p {
    line-height: 1.5;
    text-align: left;
}
