@font-face {
    font-family: 'Rama Gothic Bold';
    src: url(../fonts/Rama-Gothic-Bold.ttf);
}
.top_navbar_holder {
    position: fixed;
    width: 95vw;
    margin: 1vw auto;
    left: 2.5vw;
    z-index: 900;
}
.top_navbar {
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fffffffa;
}
.WLoptions {
    width: 100vw;
    margin: 0px auto;
    font-size: 1.35rem;
    padding-top: 120px;
    min-height: 80vh;
}
.section-one {
    color: #fff;
    text-shadow: 0px 0px 5px #000;
    min-height: calc(100vh - 95px);

    .section-title {
        font-size: 6rem;
        font-family: 'Rama Gothic Bold';
        margin-bottom: 0;
        line-height: 6rem;
    }
    .section-textcontent {
        position: relative;
        margin: 0px auto;
        width: 60%;
        font-weight: bold;
        display: block;
        font-size: 1.27rem;
        text-align: center;
        text-shadow: 0px 0px 5px #000, 0px 0px 10px #00000096, 0px 0px 15px #0cdfffc9;
    }
}

.one-new-section.section-two {
    background: #fff;
    padding: 2.5rem 0px;
    font-size: 4rem;
    line-height: 3rem;
    font-family: 'Rama Gothic';
    text-transform: uppercase;
    font-weight: 500;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.marquee-content {
    display: flex;
    position: relative;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    padding: 10px;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-three {
    background-image: linear-gradient(45deg, #000000c2, #000000c2), url(../img/ballroom.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    color: #fff;
    padding: 7rem 0px;

    .section-title {
        font-size: 6rem;
        font-family: 'Rama Gothic';
        margin-bottom: 0;
        line-height: 6rem;
        text-shadow: 0px 0px 5px #000;
        margin-bottom: 7rem;
    }

    .slider-holder {
        margin-bottom: 7rem;
    }

    .slider-container {
        position: relative;
        overflow: hidden;
    }

    .image-slider {
        position: relative;
    }

    .slide {
        display: none;
        animation: fadeEffect 1s;
    }

    .slide.active {
        display: block;
    }

    .text-content {
        display: none;
        font-size: 1.1rem;
        animation: fadeEffect 1s;
    }

    .text-content.active {
        display: block;
    }

    .slider-image {
        width: 100%;
        object-fit: cover;
    }

    .text-slider {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 1rem;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
    }

    .nav-button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }
}
@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}



.section-four {
    background-image: linear-gradient(45deg, #000000c2, #000000c2), url(../img/amiasone.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    color: #fff;
    padding: 7rem 0px;

    .section-title {
        font-size: 6rem;
        font-family: 'Rama Gothic';
        margin-bottom: 0;
        line-height: 6rem;
        text-shadow: 0px 0px 5px #000;
        margin-bottom: 3rem;
    }

    .growth-image {
        width: 20%;
        padding-bottom: 20%;
        margin: 2rem auto;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .thelaws {
        display: flex;
        width: 60%;
        margin: 0px auto;
    }

    .law-image {
        width: 35%;
        padding-bottom: 15%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0px 5px;
    }

    .sevenlaws {
        width: 60%;
        min-width: 500px;
        margin: 20px auto;
        text-align: center;
        padding: 30px;
        color: #000;
        border-radius: 70px;
        background: #00b3d2;
        font-family: 'Space Mono';
        font-weight: bold;
        position: relative;
    }

}

.section-five {
    background-image:  url(../img/amiasone-map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 7rem 0px;

    .section-title.explore {
        font-size: 6rem;
        font-family: 'Rama Gothic';
        margin-bottom: 0;
        line-height: 6rem;
        margin-bottom: 3rem;;
    }

    .section-title {
        font-family: 'Rama Gothic';
        margin-bottom: 0;
    }

    .pods {
        font-size: 12rem;
    }
}

.footer {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    padding: 20px 0px;
    position: relative;
    background-color: #000000f2;
}

.section-divider {
    width: 100%;
    height: 150px;
    background-image: linear-gradient(360deg, #ffffff, #ffffff);
    box-shadow: inset 0px 5px 5px 0px #000, inset 0px -5px 5px 0px #000000;
}

@media (max-width:575.98px) {
    
    body.reset-background {
        padding-top: 0vh;
    }
    .top_navbar_holder {
        position: absolute;
        top: 1vh;
        left: 2.5vw;
        z-index: 5;
    }
    .WLoptions {
        width: 100vw;
        margin: 0px auto;
        font-size: 1.35rem;
        padding-top: 120px;
    }
    .section-pictureholder {
        width: 75%;
    }
    .section-three {
        .text-slider {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
        }
    }

    .section-four {
        .growth-image {
            width: 40%;
            padding-bottom: 40%;
            margin: 2rem auto;
            background-repeat: no-repeat;
            background-size: contain;
        }
        .sevenlaws {
            width: 90%;
            min-width: unset;
            padding: 20px;
        }
        .thelaws {
            display: flex;
            width: 100%;
            margin: 0px auto;
        }
    }

    .section-one {
        .section-textcontent {
            width: 80%;
            font-size: 1.5rem;
        }
    }
    .marquee-content {
        animation: scroll 5s linear infinite;
    }


    .one-square-section {
        .section-title {
            font-family: 'Rama Gothic';
            text-align: center;
            font-size: 5rem;
            line-height: 5rem;
            margin-bottom: 0px;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
        }


        .pods {
            font-size: 5rem;
        }
    }
}
