* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
    width: 86%;
    margin-left: 7%;
}

/* Next & previous buttons */
.prev, .next {
    display: inline-block;
    cursor: pointer;
    width: auto;
    padding: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    text-decoration: none;
    color: #76a3d0;
    background-color: #dce9f9;
    border: 2px solid;
    border-color: green;
}

.prev {
    border-radius: 12px 0px 0px 12px;
}

.next {
    border-radius: 0 12px 12px 0;
}

a.prev:hover, a.next:hover {
    text-decoration: none;
    color: #2b75b9;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: #9dcbf5;
}

/* Caption text */
.text {
    color: #f32020;
    font-size: 18px;
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 0px;
    padding-left: 12px;
    width: inherit;
    text-align: center;
    line-height: 1.5em;
    min-height: 3.75em;
}

.TwoLineText {
    min-height: 3em;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}


.learn-more-btn {
    position: absolute;
    right: 0;
    bottom: 0;
}


