/* CSS general */
main {
    overflow-x: hidden;
}

section.intro {
    position: relative;
    z-index: 1;
}

section.intro .intro__banner {
    width: 100%;
}

section.intro .intro__btn {
    position: absolute;
    top: 450px;
    width: 100%;
    z-index: 3;
}

section.intro .intro__btn .btn {
    font-size: 24px;
    padding: 2.5px 60px;
    box-shadow: 0px 2px 33px -17px rgba(0, 0, 0, 0.53);
}

section.intro .intro__clouds {
    position: absolute;
    bottom: -20%;
    z-index: 2;
    width: calc(100% + 100px);
    left: -50px;
    max-width: unset !important;
}

section.intro .intro__logo {
    position: absolute;
    z-index: 1;
    left: calc(50% - 250px);
    top: 125px;
    width: 500px;
}

section.about {
    background-color: #DAE6F6;
    padding: 250px 0;
    position: relative;
}

section.about .about__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

section.about .about__wrapper__text {
    width: 380px;
    position: relative;
}

section.about .about__wrapper__text__back {
    width: 100%;
    height: 470px;
    margin-bottom: 90px;
}

.about__wrapper__text__wrapper {
    position: absolute;
    padding: 165px 20px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-left: 60px;
}

.about__wrapper__text__title {
    font-size: 25px;
    font-weight: 900;
    color: #FFA806;
    margin-bottom: 15px;
}

.about__wrapper__text__desc {
    font-size: 13px;
}

.about__wrapper__image {
    margin-right: -40px;
    z-index: 2;
    box-shadow: 19px 9px 76px -33px rgba(92, 92, 92, 1);
    width: 320px;
    border-radius: 20px;
}

section.about .about__clouds {
    position: absolute;
    bottom: -18%;
    width: calc(100% + 100px);
    left: -50px;
    z-index: 4;
    max-width: unset !important;
}

section.about .about__clouds_2 {
    position: absolute;
    bottom: -8%;
    width: calc(100% + 100px);
    left: -50px;
    z-index: 3;
    max-width: unset !important;
}

section.game {
    padding-top: 300px;
    background-color: #B0D4F6;
    padding-bottom: 100px;
    z-index: 2;
    position: relative;
}

.game__wrapper {
    display: flex;
    margin: 0 auto;
    width: 600px;
    max-width: 90%;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    position: relative;
}

.game__wrapper__text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    padding-right: 100px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 30px;
}

.game__wrapper__text .d-flex {
    gap: 10px;
}

.game__wrapper__text__title {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: #FFA806;
}

.game__wrapper__text__desc {
    font-size: 14px;
    margin: 0;
}

.game__wrapper__text__desc img {
    width: 80px;
}

.game__wrapper__phone {
    position: absolute;
    right: -225px;
    width: 300px;
}

section.heaven {
    position: relative;
    background: rgb(69, 109, 148);
    background: linear-gradient(0deg, rgba(69, 109, 148, 1) 0%, rgba(176, 212, 246, 1) 54%, rgba(176, 212, 246, 1) 100%);
    overflow: visible;
    z-index: 1;
    padding-top: 60px;
    text-align: center;
    /* Center text and form */
}

section.heaven .heaven__banner {
    width: 100%;
    z-index: 3;
    position: relative;
    margin-bottom: -80px;
}

section.heaven .heaven__clouds {
    position: absolute;
    top: 15%;
    z-index: 0;
    width: calc(100% + 100px);
    left: -50px;
    max-width: unset !important;
}

section.heaven .island-3 {
    position: absolute;
    top: 7%;
    opacity: 0.8;
    left: 22%;
    z-index: 2;
}

.email-form {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    /* Ensure it is above other elements */
}

.email-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 140%;
    max-width: 300px;
}

.email-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.email-form button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 992px) {

    section.intro .intro__banner {
        max-width: unset;
        height: 60vh;
        width: 100%;
        object-fit: cover;
    }

    section.intro .intro__clouds {
        bottom: -25px;
        width: 200%;
    }

    section.intro .intro__logo {
        position: absolute;
        z-index: 1;
        left: calc(50% - 150px);
        top: 75px;
        width: 300px;
    }

    section.intro .intro__btn {
        position: absolute;
        top: 260px;
    }

    section.intro .intro__btn .btn {
        font-size: 20px;
        padding: 2.5px 30px;
    }

    section.about .about__wrapper {
        flex-direction: column;
    }

    section.about {
        padding-top: 60px;
        padding-bottom: 180px;
    }

    .about__wrapper__image {
        margin-right: 0;
        width: 200px;
        margin-bottom: -60px;
        z-index: 3;
    }

    .about__wrapper__text__wrapper {
        padding: 20px;
        padding-top: 165px;
        width: 100%;
    }

    section.about .about__wrapper__text {
        width: 315px;
        z-index: 1;
    }

    .about__wrapper__text__desc {
        text-align: center;
    }

    section.about .about__wrapper__text__back {
        height: 470px;
        
    }

    section.about .about__clouds {
        position: absolute;
        bottom: -65px;
        width: calc(200% + 100px);
    }

    section.about .about__clouds_2 {
        position: absolute;
        bottom: -0px;
        width: calc(200% + 100px);
    }

    section.game {
        padding: 100px 0;
        padding-bottom: 550px;
    }

    .game__wrapper {
        flex-direction: column;
        z-index: 3;
        max-width: 95%;
    }

    .game__wrapper__text {
        padding: 20px !important;
        z-index: 3;
    }

    .game__wrapper__phone {
        bottom: -500px;
        width: 280px;
        right: calc(50% - 135px);
    }

    section.heaven .heaven__banner {
        width: 100%;
        max-width: unset;
    }

    section.heaven .heaven__clouds {
        width: 250%;
        max-width: unset;
    }

    section.heaven .island-3 {
        left: -45px;
    }

    .email-form {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}