*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100%;
    width: 100%;
}
.header {
    height: 30px;
    background: rgb(151, 184, 151);
}
.home_poster {
    height: 550px;
    width: 100%;
    /* background: rgb(151, 184, 151); */
}
.header .home_logo {
    width: 100%;
    height: 20%;
    /* background: rgb(151, 184, 151); */
    padding: 5px 0 5px 5px;
}
.home_logo img {
    height: 98px;
    width: 290px;
    object-fit: fill;
    padding: 35px 0 5px 40px;
}

/* NAVBAR BACKGROUND */
.navigation {
    background: rgb(151, 184, 151);
}

/* MAIN MENU — RIGHT SIDE */
.nav > ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 0px 15px;
    align-items: end;
}
.nav ul li {
    position: relative;
}
.nav ul li a {
    /* color: white; */
    color: black;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    font-size: 18px;
}

/* SUBMENU (FLOATING, DOES NOT TAKE SPACE) */
.nav ul li ul {
    position: absolute;
    top: 100%;                 
    left: 0;
    display: none;
    flex-direction: column;
    background: rgb(151, 184, 151);
    padding: 0px;
    margin: 0px;
    width: 180px;
    z-index: 1;       
    list-style-type: none;
}
.submenu li{
    padding: 0px;
    margin: 0px;
}
.submenu li a:hover {
    /* color: black; */
    color: white;
}
.nav li:hover > ul {
    display: flex;
}

.home_poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* new version of main */
main {
    /* background-image: url(images/bg_pic.jpeg); */
    background-size: cover;
    filter: brightness(130%);
    padding: 50px 15%;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.75;
}
.info-card {
    background: #f7f7f7;
    padding: 35px 40px;
    margin-bottom: 35px;
    border-radius: 18px;
    border: 1px solid rgb(151, 184, 151);
    border-left: 6px solid rgb(151, 184, 151);
    border-left-width: 15px;
    border-bottom: 6px solid rgb(151, 184, 151); 
    border-bottom-width: 15px;      
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* Headings */
.info-card div h2 {
    color: #0a4d8c;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
/* Text */
.info-card p, .info-card li {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}
/* List spacing */
.info-card ul {
    padding-left: 20px;
}
.info-card-div1 {
    text-align: center;
}
.info-card-div2 {
    display: flex; 
    gap: 30px; 
    margin-top: 30px;
}
.main_join .info-card-div2 {
    display: block;
    /* gap: 0; */
    text-align: center;
}

.info-card-div2 ul li{
    font-size: 16px;
    /* font-weight: ; */
}
footer {
    display: flex;
    justify-content: space-between;
    height: 300px;
    padding: 3% 15%;
    background-color: rgb(151, 184, 151);
}
footer ul{
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5%;
}
footer ul li {
    margin-bottom: 19px;
    color: black;
}
footer ul li a{
    text-decoration: none;
    font-size: 17px;
    color: black;
}

/* about mission part */
.mdiv2 div{
    width: 50%;
    height: 200px;
    /* border: 2px solid red; */
    border-radius: 10px;
    margin:0 80px 80px 80px;
    background-color: rgb(151, 184, 151);
}
.mdiv3 div{
    width: 50%;
    height: 200px;
    /* border: 2px solid red; */
    border-radius: 10px;
    margin:0 80px 80px 80px;
    background-color: rgb(151, 184, 151);
}
.mdiv2 div p{
    margin: 55px 25px;
    
    font-size: 22px;
}
.mdiv3 div p{
    margin: 55px 25px;
    font-size: 22px;
}
.navbar a img{width:200px;}