﻿*{
    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;
}
.item {
    flex: 0 0 100%;
    height: auto;
}
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 80px;
    cursor: pointer;
}
.left {
    left: 0;
}
.right {
    right: 0;
}
 
.dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    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: rgba(0,0,0,0);
    border: 1px solid #fff;
    border-radius: 10px;
}
 
.dots .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}