*{
    padding: 0;
    margin: 0;
}
ul{
    list-style: none;
}




/* main banner */
#banner{
    width: 100% !important;
    height: 70vh;
    position: relative;
}
/* main banner */


/* slick slider */
.slick-slider-1{
    width: 100%;
    height: 70vh;
    background-color: tomato;
    background: url("../images/banner/home_banner_one.png") no-repeat center / cover;
} 
.slick-slider-2{
    width: 100%;
    height: 70vh;
    background-color: bisque;
    background: url("../images/banner/home_banner_two.png") no-repeat center / cover;
}
.slick-slider-3{
    width: 100%;
    height: 70vh;
    background-color: gray;
    background: url("../images/banner/home_banner_three.png") no-repeat center / cover;
}
/* slick slider */


/* slick dots true */
#banner .slick-dots{
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
#banner .slick-dots li{
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 5px;
    position: relative;
}
#banner .slick-dots li button{
    height: 10px;
    width: 10px;
    background-color: rgb(10, 96, 255);
    border: none !important;
    outline: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
#banner .slick-dots li.slick-active button{
    opacity: 1;
}
/* slick dots true */


/* slick arrows true */
#banner .prev{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 5%;
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 40px;
    text-align: center;
    border: 1px solid #333;
    transition: 0.2s;
}
#banner .next{
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 5%;
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 40px;
    text-align: center;
    border: 1px solid #333;
    transition: 0.2s;
}
#banner .next:hover,.prev:hover {
    color: #ffffff;
    border: 0.5px solid #e41f1f;
    background-color: #e41f1f;
  }
/* slick arrows true */
