body{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}
.navbar{
    display: flex;
    height: 70px;
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    justify-content: space-between;
    background-color: #F6F9FA;
    
}

.logo {
    background-color: #249991;   
}
.logo h1 img{
    padding-left: 15px;
    padding-right: 15px;
}
.menu ul{
    display: flex;
    margin-top: 25px;
    font-size: 20px;
    font-weight: 500;
}
.menu ul li{
    list-style: none;
    margin-right: 15px;
}
.menu ul li a{
    text-decoration: none;
    padding: 5px;
}

.search-icon{
    background-color:#F6F9FA;
    width: 60px;
    height: 60px;
    margin-right: 30px;
    margin-top: 5px;
    
}
.section-1{
    margin-right: 50px;
    margin-left: 50px;
    height: 400px;
    
}

/* Total width of container is 1820 */
.section-1{
    position: relative;
}
.first-div{
    width: 35%;
    height: 400px;
    position: absolute;    
    
}
.first-img{
    width: 100%;
    height: 100%;    
}
.wrapbox1{
    color: white;
    font-size: 20px;
    position:absolute;
    top: 325px;
    left: 40px;
    font-weight: 700;
}


.second-div{
    width: 30%;
    height: 195px;
    left: 650px;
    position: absolute;    
      
}
.other-imgs{
    width: 100%;
    height: 100%;    
}
.wrapbox2{
    color: white;
    font-size: 20px;
    position:absolute;
    top: 150px;
    left: 20px;
    font-weight: 700;
}

.third-div{
    width: 30%;
    height: 195px;
    left: 650px;
    top: 205px;
    position: absolute; 
}
.fourth-div{
    width: 30%;
    height: 195px;
    left: 1210px;
    position: absolute;
}

.fifth-div{
    width: 30%;
    height: 195px;
    left: 1210px;
    top: 205px;
    position: absolute; 
}

/* New Section Latest News */
.heading-latest-news{
    display: flex;
    margin-left: 50px;
    margin-right: 50px;
    justify-content: flex-start;
    color: green;
}

.latest-news{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: green;    
    margin-left: 50px;
    margin-right: 50px;
    
}
.featured-img{
    height: 100%;
    width: 100%;
}
.description-news{
    display: flex;
    padding: 0;
    margin: 0;
    
}
.latest-news-items{
    flex-basis: 24%;
    
    margin-bottom: 100px;  
    
}
.description-bottom{
    padding: 0;
    margin: 0;
}


.footer-main{
    width: 100%;
    background-color: #f2f2f2;
}

.footer {
    display: flex;    
    padding: 20px;
    margin-left: 50px;
    margin-right: 50px;
    justify-content: space-between;
}

.footer-column {
  
    margin: 0 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
}

.footer-column a:hover {
    color: #333;
}


.subscribe {
    
    color: #fff;
    
    padding: 20px 20px 20px 0;
}

.subscribe h3 {
    margin-bottom: 10px;
}

.subscribe form {
    display: flex;
    
}

.subscribe input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe button {
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}