h2, .h2{
	font-family: 'Mukta', serif;
    color: #990000;
    text-align: center;
}

.Container {
font-family: 'Mukta', serif;
	/*font-family: 'Halant', serif;*/
    width: auto;
    font-size: 1.8rem;
    line-height: 3.1rem;
    color: #8a491b;
    font-weight: 600;
    background: antiquewhite;
    text-align: justify;
}

.Container .Section1 {
	display: grid;
    grid-template-columns: 40% 60%;
    margin-top: 10px;
    align-items: center;
}

.Section1-Left {
	padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
	
.Section1-Right {
 	padding: 20px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
    font-weight: 500;  
}

.Section1-Image {
	border-radius: 6px;
    box-shadow: 0 0 20px -8px #000000;
    width: 350px;
    height: 350px;
}

.Section1-Caption {
	margin-top: 10px;
    margin-left: 75px;
    margin-right: 75px;
    text-align: center;
}

.Section2 {
	margin-top: 30px;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
    padding: 10px;
    font-weight: 500;
}

.faded-line {
	border: none;
    height: 1.5px; /* Adjust the height of the line */
    background: linear-gradient(to right, transparent, #990000, transparent);
    margin: 20px 0;
}

.faded-line-gallery {
	border: none;
    height: 1.5px; /* Adjust the height of the line */
    background: linear-gradient(to right, transparent, #990000, transparent);
    margin: 20px 0;
    width: 78rem;
}
@media all and (max-width: 1430px) {

.Container {
	margin: 0px;
}

.Container .Section1 {
	grid-template-columns: 1fr;
}

.Section1-Image {
    width: 300px;
    height: 300px;
}
}

/* Photo Gallery */

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px -8px #000000;
}

.thumbnails-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.thumbnails {
    display: flex;
    flex-wrap: nowrap;
}

.thumbnail {
    width: 100px;
    height: 75px;
    margin: 0 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
    flex: 0 0 auto;
}

.thumbnail:hover,
.thumbnail.active {
    border: 2px solid #007BFF;
}

@media all and (max-width: 767px) {

.slider-container {
	max-width: 350px;
}
}

.poster {
	border-radius: 6px;
    box-shadow: 0 0 20px -8px #000000;
    width: 800px;
    height: 450px;
    margin: 0 auto;
    display: block;
}

@media all and (max-width: 1186px) {
.poster {
    width: 350px;
    height: 197px;
}
}