*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    background-repeat: no-repeat;
}
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}
.carousel-item {
    flex: 0 0 100%;
    height: 55vh;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #C0C0C0;
    font-size: 80px;
    z-index: 10;
    cursor: pointer;
}
.left {
    left: 25px;
}
.right {
    right: 25px;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.dots > li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    cursor: pointer;
    background-color: #C0C0C0;
    border: 1px solid #fff;
    border-radius: 10px;
}

.dots .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}