@font-face {
    font-family: "MBF Canno";
    src: url("../fonts/mbf-canno.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Almarai", sans-serif;
    background: rgba(144, 142, 138, 0.06);
    color: #908E8A;
}

.coming-soon {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-content-wrapper {
    width: 100%;
    padding: 70px 70px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    width: fit-content;
}

.logo img {
    width: 209px;
    height: auto;
    object-fit: cover;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    flex: 1;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(144, 142, 138, 0.24);
}

.hero-icon {
    position: relative;
}

.hero-icon img {
    width: 228px;
    height: 228px;
    object-fit: cover;
    background: #8E80E2;
    border-radius: 50%;
}

.subtitle {
    display: block;
    color: #8E80E2;
    font-family: Almarai;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.04px;
    text-transform: uppercase;
    margin: 40px 0 27px;
}

.hero-content h1 {
    color: #908E8A;
    text-align: center;
    font-family: "MBF Canno";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 69px;
    /* 98.571% */
    text-transform: uppercase;

}

.hero-content h1 span {
    display: inline-block;
    color: #8E80E2;
}

.schedule {
    color: #8E80E2;
    text-align: center;
    font-family: Almarai;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 120% */
    text-transform: uppercase;
    display: block;
    max-width: 500px;
    margin-top: 4px;
}

.divider {
    width: 56px;
    height: 4px;
    background: #8E80E2;
    margin: 14px auto 20px;
}

.hero-content p {
    color: #908E8A;
    text-align: center;
    font-family: Almarai;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    max-width: 347px;
}

.features {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 70px 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(142, 128, 226, 0.12);

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 46px;
    height: 46px;
    object-fit: cover;
}

.feature-card span {
    color: #8E80E2;
    text-align: center;
    font-family: Almarai;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.feature-card p {
    color: #908E8A;
    text-align: center;
    font-family: Almarai;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    max-width: 176px;
}

footer {
    padding: 80px 20px 60px;
    text-align: center;
}

footer img {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
}

footer p {
    color: rgba(144, 142, 138, 0.40);
    text-align: center;
    font-family: Almarai;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    width: 49px;
    height: 49px;
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .hero-content-wrapper {
        padding: 40px 40px 0;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero-icon img {
        width: 180px;
        height: 180px;
    }

    .subtitle {
        margin: 24px 0 20px;
    }

    .hero-content h1 {
        font-size: 56px;
        line-height: 58px;
    }

    .schedule {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        justify-content: center;
    }
}


/* =========================
   992px
========================= */
@media (max-width: 992px) {

    .hero-content-wrapper {
        padding: 50px 40px 0;
    }

    .logo img {
        width: 180px;
    }

    .hero-icon img {
        width: 190px;
        height: 190px;
    }

    .hero-content h1 {
        font-size: 54px;
        line-height: 56px;
    }

    .schedule {
        font-size: 24px;
        line-height: 30px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        padding: 60px 30px;
    }

}


/* =========================
   768px
========================= */
@media (max-width: 768px) {

    .hero-content-wrapper {
        padding: 35px 20px 0;
        min-height: auto;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        width: 160px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-icon img {
        width: 150px;
        height: 150px;
    }

    .subtitle {
        margin: 30px 0 18px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 44px;
    }

    .schedule {
        font-size: 20px;
        line-height: 28px;
        max-width: 400px;
    }

    .divider {
        margin: 18px auto;
    }

    .hero-content p {
        font-size: 15px;
    }

    .features {
        gap: 40px;
        padding: 50px 20px;
    }

    footer {
        padding: 60px 20px 40px;
    }

    .whatsapp {
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }

}


/* =========================
   480px
========================= */
@media (max-width: 480px) {

    .hero-content-wrapper {
        padding: 25px 16px 0;
    }


    .features {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 140px;
    }

    .hero-icon img {
        width: 120px;
        height: 120px;
    }

    .subtitle {
        margin: 24px 0 14px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 34px;
    }

    .schedule {
        font-size: 16px;
        line-height: 22px;
        max-width: 340px;
    }

    .divider {
        width: 42px;
        height: 3px;
        margin: 16px auto;
    }

    .hero-content p,
    .feature-card p,
    footer p {
        font-size: 14px;
        line-height: 20px;
    }

    .icon {
        width: 80px;
        height: 80px;
    }

    .icon img {
        width: 38px;
        height: 38px;
    }

    .feature-card span {
        font-size: 15px;
    }

    footer img {
        width: 70px;
        margin-bottom: 18px;
    }

    .whatsapp {
        width: 42px;
        height: 42px;
        right: 15px;
        bottom: 15px;
    }

}