@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
    box-sizing: border-box;
}

body {
    font-family: Roboto, verdana;
    /* background-color: #2f3238; */
    background-color: #ffffff;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

#gallery .container {
    margin-top: 100px;
    margin-bottom: 50px;
}

ul {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

#gallery ul li {
    list-style: none;
    margin-bottom: 25px;
}

ul li img {
    cursor: pointer;
    border: 3px solid rgb(170, 169, 169);
    opacity: 0.7;
    transition: opacity 0.5s;
    border-radius: 4px;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 580px) {
    ul li img {
        opacity: 1;
    }
}

ul li img:hover {
    opacity: 1;
}

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.overlay .closebtn {
    position: absolute;
    z-index: 3;
    top: -20px;
    right: -30px;
    font-size: 40px;
    color: #f1f1f1;
    text-decoration: none;
}

.prev,
.next {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.bigImage {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    position: relative;
    border: 3px solid #fff;
    object-fit: cover;
}

.content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    height: 88vh;
    margin-top: 10vh;
    width: max-content;
    max-width: 75vw;
}

@media screen and (max-width: 580px) {
    .content {
        height: 50vh;
        margin-top: 15%;
    }
    /* .container{
		width: 50%;
	} */
}

.imageTitle {
    text-align: center;
    padding: 2px;
    height: 25px;
    position: relative;
    /* background-color: rgba(0, 0, 0, 0.8); */
    color: #fff;
    font-size: 15px;
}


/* ////////////////////New-gallery///////////////////////// */

.img1 {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    border-radius: 10px;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.thumb1 {
    bottom: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
}

.thumbnail {
    opacity: 0.6;
    width: 90px;
    height: 60px;
    border: 2px solid white;
    border-radius: 5px;
}

.myimg img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    max-height: 82vh;
}

.mySlides1 {
    display: none;
}

.modal-body {
    padding: 0px;
}

.modal-header {
    background-color: rgb(216, 196, 13);
}