* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    width: 100%;
    min-height: 100%;
}


.background-carousel {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    z-index: 0;
    overflow: hidden;
}

.background-carousel .carousel-inner,
.background-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.background-carousel img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.background-carousel::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 1;
    pointer-events: none;
}



.hero {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;

    padding: 20px;
}



h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
}



.timebox {
    display: flex;

    gap: 90px;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
}

.time {
    text-align: center;
}

.time h2 {
    font-size: 5rem;
    font-weight: 100;
}

.time p {
    font-size: 1rem;
}



.percent {
    text-align: center;
}

.percent h2 {
    font-size: 5rem;
    font-weight: 100;
}


hr {
    width: 60%;

    border: 0;
    border-top: 1px solid white;

    margin: 30px 0;
}



@media (max-width: 768px) {

    h1 {
        font-size: 3rem;
    }

    .timebox {
        gap: 40px;
    }

    .time h2 {
        font-size: 3.5rem;
    }

    .percent h2 {
        font-size: 3.5rem;
    }

    hr {
        width: 80%;
    }
}




@media (max-width: 480px) {

    h1 {
        font-size: 2.2rem;
    }

    .timebox {
        width: 100%;
        gap: 20px;
    }

    .time {
        flex: 1 1 40%;
    }

    .time h2 {
        font-size: 2.7rem;
    }

    .percent h2 {
        font-size: 2.7rem;
    }

    hr {
        width: 90%;
        margin: 20px 0;
    }
}