.image-container {
    position: relative;
    width: 100%;
}
img{
    position: relative;
    height: auto;
    width: 100%;
    display: none;
}
.active{
    display: block;
}
.dot-container {
    width: 150px;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.dot-container button {
    outline: none;
    cursor: pointer;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 3px solid #007b44;
    background-color: transparent;
}
.dot-container button:nth-child(1){
    background-color: #007b44;
}
#prev,#next{
    height: 40px;
    width: 40px;
    position: absolute;
    background-color: #007b44;
    color: #ffffff;
    margin: auto;
    top: 0;
    bottom: 0;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bolder;
}
#prev{
    left: 15px;
}
#next{
    right: 15px;
}