* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

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

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #808285;
    background-color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



/* 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: #808285;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

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

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.mySlides img {
    width: 100%;
    height: 500px;
}

.pagerout {

    margin-bottom: 5px;
}


.pagerout a {
    text-decoration: none;
    color: #939598;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.pagerout .currentpage {

    color: black;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-transform: capitalize;

}



#share-buttons {
    margin-left: 10px;
}

#share-buttons i {
    font-size: 50px;
    margin: 10px;
}

#share-button {
    color: #0249FD;
}

.facebook {
    color: #3b5998;
}

.linkedin {
    color: #0077b5;
}

.whatsapp {
    color: #25D366;
}

.telegram {
    color: #229ED9;
}

.details {

    width: 90%;
    height: auto;
    margin: auto;
    background-color: #E1F4FD;
    border-radius: 5px;


}

.details P {
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #58595B;
    text-transform: uppercase;
    padding: 1%;

}

/* Feedback Form ---------------------------------- */

#feedback {
    font-family: verdana;
    margin: 10px auto;
    padding: 30px;
    background: #807f7f;
    font-size: 16px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

#feedback textarea {
    font-family: verdana;
    font-size: 16px;
}

#feedback textarea::placeholder,
input::placeholder {
    color: rgb(85, 85, 85);
    opacity: 50%;
    font-size: 18px;
    font-family: arial;
    font-weight: bold;
}

.feed-heading {

    width: 80%;
    background-color: #225264;
    padding: 2px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
}

.feed-heading p {

    color: white;
    text-align: center;
    font-size: 20px;
}

/* On smaller screens, decrease text size */
@media (max-width: 768px) {

    .prev,
    .next,
    .text {
        font-size: 14px
    }


    .mySlides img {
        height: 300px;
    }

    #share-buttons i {
        font-size: 30px;
        margin: 5px;
    }

    .details P {
        padding: 5%;
    }

}