* {
	margin: 0; 
	padding: 0;
}

.img-background {
	margin: 0;
	padding: 0;
	background-image: url('../imgs/backgound.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /*scroll if you want to scroll the background upwards */
	height: 100vh;
}

.vline
{
    position:fixed;
    top:0;
    left:24.4%;
    bottom:0; margin:0;
    border:none;
    border-right: none;
    z-index:9999999;
}

.vline2
{
    position:fixed;
    top:0;
    left: 75.6%;
    bottom:0; margin:0;
    border:none;
    border-right: none;
    z-index:9999999;
}

.vline3
{
    position:fixed;
    top:0;
    left: 50%;
    bottom:0; margin:0;
    border:none;
    border-right: none;
    z-index:9999999;
}

.vline4
{
    position:fixed;
    top:0;
    left: 62.6%;
    bottom:0; margin:0;
    border:none;
    border-right: none;
    z-index:9999999;
}

.content#home{
	padding: 20px 0px 0px 0px;
	color: white;
	text-align: center;
	position: relative;
	top: 100vh; /* Shift content below the image */
	background-color: #888; /* Semi-transparent background for better readability */
}

.content{
	padding: 20px 0px 0px 0px;
	color: white;
	text-align: center;
	position: relative;
	top: 80px; /* Shift content below the navbar */
	background-color: #888; /* Semi-transparent background for better readability */
}

.wrapper {
	width: 80%;
	margin: 0 auto; /* Center the wrapper on the page */
}

.information-container {
	width: 100%; /* Each container takes up the full width of the wrapper */
	margin: 5% 0; /* Add some vertical margin between the containers */
	box-sizing: border-box; /* Include padding and border in the container's total width */
	background-color: none; /* For the visualisation of the area of the information-container */
}

.header {
	padding: 10px 0px; /* Add padding to the header */
	background-color: none; 
	width: 80%; 
	margin: 0 auto; /* Center the wrapper on the page */
}

/* Add a horizontal line through the header text. */
  .outer-div {
    width: 80%;
    height: 100px;
    background-color: none;
    margin: 0px auto;
	line-height: 100px; 
	}

#header-box {
	text-align: center;
	position: relative;
}

#header-box .line {
  border-bottom: 2px solid white;
  position: absolute;
  width: 100%;
  top: 50px;
}
#header-box .textbox {
  position: absolute;
  width: 100%;
}
#header-box .textbox .text {
  background-color: #888;
  margin: 0px auto;
  padding: 0px 10px;
  text-align: center;
  display: inline;
  font-size: 24px;
/*  border-left: 2px solid white; */
/*  border-right: 2px solid white; */
}

.body {
	padding: 10px 0px; /* Add padding to the body */
	background-color: none; 
	width: 80%; 
	margin: 0 auto; /* Center the wrapper on the page */
}

.body-content {
	width: 80%; 
	margin: 0 auto; /* Center the wrapper on the page */
    display: flex; /* Use flexbox to ensure parent resizes with child */
	flex-direction: row; 
    background-color: none; /* For visibility */
    padding: 0 20px; /* Add padding to the left and right sides */
    flex-wrap: wrap; /* Allows wrapping to the next line on smaller screens */
    box-sizing: border-box; /* Ensure padding is included in the width calculation */	
	
}

.body-content-left {
    width: 30%;
    background-color: none;
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
    flex-shrink: 0; /* Prevent the container from shrinking */
}



.body-content-left img {
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline block spacing */
    box-sizing: border-box; /* Include padding/borders in width/height */
}



.body-content-right {
	width: 70%; /* Occupy 50% width on the right */
	background-color: none;
	height: auto; 
	text-align: justify; 
}

@media(max-width: 850px) {
    .body-content {
        flex-direction: column;
    }
    .body-content-left, .body-content-right {
        width: 100%; /* Ensure full width on mobile */
        height: auto; /* Let height adjust based on content */
    }
    .body-content-left img {
        width: 100%; /* Ensure full width of its container */
        max-width: 100%; /* Prevent overflowing */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Ensure no inline block spacing */
        box-sizing: border-box;
    }
}

.width-image-content {
	width: 80%;
    background-color: none;
    margin: 0px auto;
}

.media-content {
    width: 100%;
    margin: 0 auto; /* Center the wrapper on the page */
    display: flex; /* Use flexbox to arrange images in a row */
    flex-direction: row;
    justify-content: space-between; /* Space out images evenly */
    padding: 0 0px; /* No padding on the container itself */
    background-color: none; /* For visibility */
    flex-wrap: wrap; /* Allows wrapping to the next line on smaller screens */
    box-sizing: border-box; /* Ensure padding is included in the width calculation */
}

.media-content .image-display:first-child {
    margin-left: 0; /* Remove left margin for the first image */
	background-color: none; 
}

.media-content .image-display:last-child {
    margin-right: 0; /* Remove right margin for the last image */
	background-color: none; 
}

.image-display {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 10px); /* Adjust width for three containers */
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures that overflowed parts of the image are hidden */
}



.image-display  img {
    width: 100%;
    height: 200px; /* Set the height you want for the images */
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
    object-position: 0% 50%; /* Adjust to position the image as needed */
/*    object-position: center top; /* Adjust to position the image as needed */
     Example values for object-position:
       - center top: Aligns the image to the top center of the container
       - center center: Aligns the image to the center of the container
       - center bottom: Aligns the image to the bottom center of the container
       - top left: Aligns the image to the top left corner of the container
    */
}

.text-display {
    padding: 25px;
    text-align: justify;
	color: DeepPink; 
}

@media(max-width: 850px){
	.media-content {
			margin-left: 0px;
	}

    .image-display {
        width: 100%; /* Full width for single container per row on small screens */
		padding: 10px 0px; 
    }
	
	.media-content .image-display:first-child {
		padding-top: 0; /* Remove left margin for the first image */
	}

	.media-content .image-display:last-child {
		padding-bottom: 0; /* Remove right margin for the last image */
}



	
	