@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
    --Soft_orange: hsl(35, 77%, 62%);
    --Soft_red: hsl(5, 85%, 63%);
    --Off_white: hsl(36, 100%, 99%);
    --Grayish_blue: hsl(233, 8%, 79%);
    --Dark_grayish_blue: hsl(236, 13%, 42%);
    --Very_dark_blue: hsl(240, 100%, 5%);
}



body{
    width: 100%;
    background-color: var(--Off_white);
    font-family: "Inter", sans-serif;
    height: 190vh;
    display: flex;
    flex-direction: column;
    margin: 0; 
    overflow-x: hidden;
}


.header{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.logo{
  margin-top: 20px;
  margin-left: 10px;

}
.navBar{
    display: flex;
    align-items: center;
}

.navBarMenu{
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-right: 25px;
    
}

.navBarMenuItem{
    margin: 0 20px;
}

.navBarMenuItemLink{
  text-decoration: none;
  color: var(--Dark_grayish_blue);
  
}

.navBarMenuItemLink:hover{
    color: var(--Soft_red);
}

.container{
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    
}

.mainSec{
    width: 60%;
    display: flex;
    flex-direction: column;
    
}

.mainImgContainer{
    width: 100%;

}
.mainImg{
    width: 100%;
}

.mainContent{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: -40px;

}

.mainHeading{
  width: 50%;
  color: var(--Very_dark_blue);
  font-weight: 800;
  font-size: 60px;
  margin-left: 44px;
}

.subContent{
    display: flex;
    width: 60%;
    flex-direction: column;
    color: var(--Dark_grayish_blue);
    margin-top: 50px;
    margin-left: 52px;

}

.desc{
    width: 100%;
    font-size: 18px;
    line-height: 1.7;
}

.readBtn{
    width: 200px;
    height: 50px;
    background-color: var(--Soft_red);
    color: var(--Very_dark_blue);
    font-weight: 750;
    font-size: 16px;
    letter-spacing: 0.1rem;
    border: none;
    font-family: "Inter", sans-serif;
    margin-top: 10px;
}

.readBtn:hover{
    cursor: pointer;
    background-color: var(--Very_dark_blue);
    color: white;
}

.newsDiv{
    background-color: var(--Very_dark_blue);
    width: 30%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-left: 70px;
    margin-top: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
    
}

.news{
    color: var(--Soft_orange);
    margin-left: 20px;
    margin-top: 20px;
    font-size: 42px;
    margin-bottom: 0;
}

.newsList{
    margin: 10px auto;
    display: flex;
    flex-direction: column;
}

.newsTitle{
    font-weight: 600;
    color: var(--Off_white);
    font-size: 24px;
    margin-left: 16px;
    margin-bottom: -8px;
    
}

.newsBody{
    color: var(--Grayish_blue);
    font-size: 17px;
    margin-left: 16px;
    font-weight: 150;
    line-height: 1.6;
}


.menuToggle{
    visibility: hidden;
    margin-right: 25px;
    margin-top: 15px;
    width: 50px;
    height: 30px;
}

.menuToggle:hover{
  cursor: pointer;
}

.divider{
    background-color: var(--Grayish_blue);
    width: 94%;
    height: 0.5px;
    margin: 10px auto;
}


.removeIcon{
    visibility: hidden;
}


.footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 45px;
    margin-top: 18px;
}

.footerItem{
  display: flex;
  flex-direction: row;
  width: 28%;
  margin-left: 30px;
}

.footerItemImg{
    width: 120px;
    height: 150px;
}


.footerTextContent{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}


.itemNum{
  color: var(--Soft_red);
  font-weight: 650;
  font-size: 38px;
  margin-bottom: -10px;

}


.footerItemTitle{
  font-weight: 670;
  font-size: 20px;
  margin-bottom: -5px;

}

.footerItemDesc{
  font-weight: 250;
  font-size: 16px;
  line-height: 1.6;
  color: var(--Dark_grayish_blue);
}


@media screen and (max-width: 900px) {

      body{
        width: 100%;
        background-color: var(--Off_white);
        font-family: "Inter", sans-serif;
        height: 190vh;
        display: flex;
        flex-direction: column;
        margin: 0; 
        overflow-x: hidden;
      }


     .header{
       width: 100%;
       height: fit-content;
       display: flex;
       flex-direction: row;
       align-items: center;
       justify-content: space-between;
       margin-bottom: 10px;
    }

    .logo{
       margin-top: 20px;
       margin-left: -20px;

    }


    .navContainer {
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5); 
        top: 0;
        left: 0; 
        visibility: visible; 
        z-index: 1000;
        transition: opacity 0.5s ease-in-out; 
       
    }

    .navBar{
      position: fixed;
      top:0;
      right: 0;
      height: 100%;
      width: 45%;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      z-index: 20000;
      background-color: var(--Off_white);
      transition: opacity 0.5s ease-in-out;
    }

    .menuToggle{
        visibility: visible;
        margin-right: 20px;
        margin-top: 15px;
    }

    .removeIcon{
      margin-top: 40px;
      margin-left: auto;
      margin-right: 30px;
      visibility: visible;
      transition: opacity 0.5s ease-in-out;

    }

    .removeIcon:hover{
        cursor: pointer;
    }

    .navBarMenu{
      background-color: var(--Off_white);
      display: flex;
      flex-direction: column;
      list-style: none;
      justify-content: space-between;
      align-items: flex-start;
      margin-left: 8px;
      margin-top: 70px;
      width: 100%;
      font-size: 22px;
      font-weight: 150;
    }

    .navBarMenuItem{
      margin: 16px 0;
    }

   .navBarMenuItemLink{
     text-decoration: none;
     color: var(--Dark_grayish_blue);
  
    }

    .navBarMenuItemLink:hover{
      color: var(--Soft_red);
    }


   .container{
      width: 95%;
      margin: 10px auto;
      display: flex;
      flex-direction: column;
      margin-left: 20px;  
    }


   .mainSec{
      width: 100%;
      display: flex;
      flex-direction: column;
      margin: auto;
      margin-left: -30px;
    
    }

    .mainImgContainer{
      width: 100%;

    }
    .mainImg{
      width: 100%;
      margin-left: -10px;
    }

   .mainContent{
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: -40px;

    }

   .mainHeading{
      width: 100%;
      color: var(--Very_dark_blue);
      font-weight: 800;
      font-size: 60px;
      margin-left: 34px;
    }


    .subContent{
        display: flex;
        width: 95%;
        flex-direction: column;
        color: var(--Dark_grayish_blue);
        margin-top: -30px;
        margin-left: 52px;
    
    }
    
    .desc{
        width: 100%;
        font-size: 18px;
        line-height: 1.7;
    }
    
    .readBtn{
        width: 200px;
        height: 50px;
        background-color: var(--Soft_red);
        color: var(--Very_dark_blue);
        font-weight: 750;
        font-size: 16px;
        letter-spacing: 0.1rem;
        border: none;
        font-family: "Inter", sans-serif;
        margin-top: 10px;
    }
    
    .readBtn:hover{
        cursor: pointer;
        background-color: var(--Very_dark_blue);
        color: white;
    }
    
    .newsDiv{
        background-color: var(--Very_dark_blue);
        width: 95%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        margin: 50px auto;
        padding-top: 14px;
        padding-bottom: 14px;
        
    }
    
    .news{
        color: var(--Soft_orange);
        margin-left: 20px;
        margin-top: 20px;
        font-size: 42px;
        margin-bottom: 0;
    }
    
    .newsList{
        margin: 10px auto;
        display: flex;
        flex-direction: column;
    }
    
    .newsTitle{
        font-weight: 600;
        color: var(--Off_white);
        font-size: 24px;
        margin-left: 16px;
        margin-bottom: -8px;
        
    }
    
    .newsBody{
        color: var(--Grayish_blue);
        font-size: 17px;
        margin-left: 16px;
        font-weight: 150;
        line-height: 1.6;
    }
    
    .divider{
        background-color: var(--Grayish_blue);
        width: 94%;
        height: 0.5px;
        margin: 10px auto;
    }
    
    .footer{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 10px;
        margin-top: 18px;
    }
    
    .footerItem{
      display: flex;
      flex-direction: row;
      width: 95%;
      margin-left: 30px;
      margin-top: 20px;
      margin-bottom: 10px;
    }
    
    .footerItemImg{
        width: 120px;
        height: 150px;
        margin-right: 20px;
    }
    
    
    .footerTextContent{
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }
    
    
    .itemNum{
      color: var(--Soft_red);
      font-weight: 650;
      font-size: 38px;
      margin-bottom: -10px;
    
    }
    
    
    .footerItemTitle{
      font-weight: 670;
      font-size: 20px;
      margin-bottom: -5px;
    
    }
    
    .footerItemDesc{
      font-weight: 250;
      font-size: 16px;
      line-height: 1.6;
      color: var(--Dark_grayish_blue);
    }



}