.carousel h1 {
    text-align: center;
    text-transform: uppercase;
}

.carousel {
    padding: 5rem 0;
    max-width: 100%;
    width: 100%;
    /* margin: 0 auto; */
    min-height: 80vh;
    /* position: relative; */
}

.carusel-top {
    /* background: red; */
    width: 100%;
    min-height: 100%;
    position: absolute;
    left: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;

    user-select: none;
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carusel-top::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.carusel-top {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-inner {
    max-width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    min-height: 65vh;
    width: 100%;
    overflow: visible;
    display: inline-flex;
}

.most-inner {
    margin-top: 10vh;
    max-width: 60vw;
    float: right;
    position: absolute;
    right: 0;
    transition: transform 1s;
}

.carousel img {
    border-radius: 30px;
    object-fit: cover;
    width: auto;
    max-height: 500px;
    margin: 0 2rem 0 0;
    max-width: 15vw;
    height: 30vw;
    transition: transform 0.5s;
}

.carousel img:hover {
    z-index: 3000;
    transform: scale(1.1);
    transform: translateY(-20px);
    /* Animation */
}

.most-inner:active {
    transform: scale(0.97);
    transition: transform 1s;
}
