.page9{
    position: relative;
    width: 100vw;
    height: auto;
	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;
}

.page9-title{
    font-family: Poppins-Bold,sans-serif;
    font-size: 36px;
    color: #FD7702;
}

.page9-row2{
    display: flex;
    flex-direction: row;
    width: 90vw;
    justify-content: space-between;
    align-items: center;
}

.page9-row2-col2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70vw;
}


.page9-row3{
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}



/*Carousel*/

.page9-carousel {
    position: relative;
    width: 60vw;
    overflow: hidden;
}

.page9-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.page9-carousel-item {
    text-align: center;
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.page9-carousel-item img {
    width: 50vw;
    /* border-radius: 10px; */
}

.page9-carousel-button {
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.page9-carousel-button.prev {
/*    left: 10px;*/
}

.page9-carousel-button.next {
/*    right: 10px;*/
}

.page9-carousel-button img {
    width: 6vw;
    height: auto;
}

.page9-carousel-dots {
    align-items: center;
/*    position: absolute;*/
/*    bottom: 10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
    padding-bottom: 5vh;
    display: flex;
    gap: 3vw;
}

.dot {
    width: 0.7vw;
    height: 0.7vw;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.dot.active {
    width: 1.4vw;
    height: 1.4vw;
    background-color: #333;
}


@media (max-width: 500px){
    .page9-title{
        font-size: 6vw;
    }
    
    .page9-carousel-item img {
        width: 80vw;
    }

    .page9-carousel {
        width: 80vw;
    }

    .page9-row2-col2 {
        width: 80vw;
    }

    .page9-row2{
        width: unset;
    }
}