.page5{
    width: 100vw;
    height: auto;
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: 0 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
/*    opacity: 70%;*/
}

.page5-row1{
    padding-top: 70px;
/*    background: rgba(50, 205, 50, 0.3);*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 88%;
}

.page5-col1{
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    width: 32%;
}

.page5-col2{
    display: flex;
    flex-direction: column;
    width: 68%;
}

.page5-title-placeholder{
    height: fit-content;
    padding: none;
}

.page5-title{
    font-family: Poppins-Medium,sans-serif;
    font-size: 2.4vw;

}

.page5-title-blue{
    font-family: Poppins-SemiBold,sans-serif;
    font-size: 2.4vw;
    color: #003F7D;
}

.page5-text-placeholder{
    margin-top: -30px;
}

.page5-text{
    font-family: Poppins-Medium,sans-serif;
    font-size: 1.1vw;
}

/*Carousel*/

.carousel-container {

    position: relative;
    height: fit-content;
    width: 100%;
    overflow: hidden;
    padding-left: 26px;
}

.carousel {

    display: flex;
    transition: transform 2s ease;
}

.carousel-item {
    box-sizing: border-box;
    width: 100%;
    height: fit-content;
    padding: 0 0 0 0;
    width: auto;
}

.carousel-item img {
    height: min(25vw, 370px);
    box-sizing: border-box;
    border-radius: 20px 20px 20px 20px;
    padding-right: 21px;
}

.carousel-buttons {
    position: relative;
    width: fit-content;
    display: flex;
}

.carousel-buttons button {
    background: none;
    width: fit-content;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin: 0 0 0 0;
    border: 0 0 0 0;
    padding: 0 0 0 0;
    padding-top: 4px;
    padding-right: 6px;
}

.carousel-buttons img {
    width: 5vw;
/*    height: 30px;*/
}

.carousel-progress-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel-progress {
    width: 10%;
    position: relative;
    height: 5px;
    background-color: #ddd;
    margin-top: 10px;
    border-radius: 5px;
}

.carousel-progress-bar {
    height: 100%;
    background-color: #b87333;
    width: 0%;
    border-radius: 5px;
    transition: width 0.5s ease;
}


@media (max-width: 768px) {

    .page5-row1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
    }

    .page5-col1 {
        width: 95%;
        align-items: center;
        text-align: center;
    }

    .page5-text-placeholder{
        padding-top:3vw ;
    }

    .page5-col2{
        padding-top: 2vw;
        width: 95%;
    }

    .page5-text-placeholder{
        margin-top: 0px;
    }

    .page5-title , .page5-title-blue{
        font-size: 5vw;
    }

    .page5-text{
        font-size: 3vw;
    }

    .page5-text p , .page5-title p {
        margin: 0 0 0 0;
    }

    .carousel-buttons{
        padding-top: 8vw;
    }

    .carousel-buttons img {
        width: 10vw;
    }

    .carousel-container{
        padding: 0 0 0 0;
    }

    .carousel-item img {
        height: min(45vw, 370px);
    }
}