* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.carousel {
    position: relative;
    top: -2em;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

}

.carousel-card {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;

    opacity: 0;
    transform: translateX(-100%);
    /* Start from the left */
    pointer-events: none;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    /* Slower duration for a smoother entry */
}

.carousel-card-active {
    opacity: 1;
    transform: translateX(0);
    /* Move into view */
    pointer-events: visible;
}

.card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3em;
    color: white;
    background: linear-gradient(to right, rgba(6, 57, 112, 0.9), rgba(6, 57, 112, 0) 100%);
}

.carousel-common {
    background-color: transparent;
    padding-bottom: 2vh;
    margin-left: 2vw;
}

.btn-set {
    margin-top: 3vh;
}

.btn-carousel-common {
    padding: 2vh;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid white;

    color: white;
    background-color: transparent;

    font-weight: 600;
}

.btncc-1 {
    margin-bottom:3vh ;
    margin-right: 6vh;
    color: rgb(6, 57, 112);
    background-color: white !important;
}

.btncc-1:hover {
    margin-right: 6vh;
    color: white !important;
    background-color: transparent !important;
}

.btn-carousel-common:hover {
    color: rgb(6, 57, 112);
    background-color: white;
    cursor: pointer;
    /* width: 30vw!important; */
}

.title-1b {
    display: flex;
    flex-direction: row;
}

.car-side-len {
    width: 5vw;
    height: 1px;
    margin-left: 1vw;
    position: relative;
    top: 50%;
    border: 1px solid white;
}

.card-info {
    border-left: 2px solid white;
    padding: 1vh 2vh;
}

@media (min-width: 820px) {
    .title-1a {
        width: 40%;
        font-weight: 800;
    }

    .card-info {
        border-left: 2px solid white;
        padding: 1vh 2vh;
        width: 38%;
    }

    
}

.carousel_pagination {
    position: absolute;
    top: 45%;
    right: 0;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.pagination_dot {
    height: 5px;
    width: 10px;
    background-color: transparent;
    border-radius: 50%;
    margin: 10px;

    /* margin-right: 3vw ; */
    color: white;
}

.pagination_dot:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.pagination_dot-active {
    transform: scale(1.1);
}

.fa-icon-hover:hover{
    /* font-size:x-large; */
    cursor: pointer;
}

