.page10{
    position: relative;
    width: 100vw;
    height: 100vh;
	background-color: white;
    display: flex;
    flex-direction: column;
/*	justify-content: center;*/
	align-items: center;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: 0 0 0 0;
}

.page10-row1{
    width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10vh;
}

.page10-title{
    font-family: Poppins-Bold,sans-serif;
    font-size: min(3vw, 36px);
    color: #003F7D;
}

.page10-row1-col1{
/*    display: flex;*/
    width: 25%;
    align-items: flex-start;
}

.page10-row1-col2{
    width: 50vh;
}

.page10-row1-col3{
    width: 25%;
    align-items: flex-end;
}

/*page10-carousel*/

.page10-row2{
    width: 80%;
}

.page10-carousel-buttons {
    display: flex;
    gap: 10px;
}

.page10-button-image{
    width: 5vw;
    height: auto;
}

.page10-carousel-prev,
.page10-carousel-next {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.page10-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.page10-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.page10-carousel-item {
    min-width: fit-content;
    box-sizing: border-box;
    padding-right: 0.5vw; 
    padding-left: 0.5vw;
}

.page10-carousel-image,
.page10-carousel-image1 {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 500px){
    .page10{
        height: auto;
    }

    .page10-row1{
        padding-top: 0px;
    }

    .page10-title{
        font-size: 7vw;
    }

    .page10-button-image{
        width: 8vw;
    }

    .page10-carousel-image{
        width: 50vw;
    }

    .page10-row2{
        padding-bottom: 4vh;
    }
}