@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */



    
    .newspost{
        width: 100%;
        height: 35vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: all .4s;
        cursor: pointer;
    }
    
    
    .np-inner{
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        background-color: white;
        width: 100%;
        height: 100%;
        transition: all .4s;
        color: inherit;
    }
    
    
    
    .newspost:hover .np-inner{
        background: rgb(23,41,117);
background: linear-gradient(180deg, rgba(23,41,117,0.4) 0%, rgba(23,41,117,1) 100%);
        color: #FFF;
    }
    
    
    
    .newspost:hover .title2{
        color: #fff;
    }
    
    
    .newspost:hover .para{
        color: #fff;
    }
    
    
    
    .npdate{
        position: absolute;
        left: 5%;
        top: 5%;
        width: auto;
        display: block;
        float: left;
        clear: none;
        transition: all .4s;
        
    }
    
    
    .npdate #day{
        float: left;
        clear: none;
        display: block;
        font-size: 2em;
    }
    
    .npdate .para{
        float: left;
        clear: none;
        display: block;
        margin-left: .5em;
    }
    
    
    
    
    .np-title{
        position: absolute;
        left: 5%;
        bottom: 10%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        transition: all .4s;
    }
    
    
    .np-title p{
        font-size: 0;

    }
    
	
	
    
    
    
    
    
    
    
    .news-container{
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin-top: 15vh;
        margin-bottom: 10vh;
    }
    
    
    
    
    
    .nc-inner{
        width: 90%;
        height: auto;
        float: left;
        clear: none;
        margin: 2em 5%;
        display: grid; 
          grid-template-columns: 1fr 1fr; 
          gap: 1em 1em; 
        padding-bottom: 4em;
    }
    
    
    
    
    .newsbody{
        width: 80%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        padding: 1em 5%;
        margin-left: 5%;
    }
    
    
    
    .nb-img{
        height: 50vh;
        width: 100%;
        float: left;
        clear: none;
        display: block;
        background-size: cover;
        background-position: center;
        margin-bottom: 5vh;
    }
    
    
    
    .nb-details{
           height: auto;
        width: 100%;
        float: left;
        clear: none;
        display: block;
        position: relative;
        margin-bottom: 5vh;
    }
    
    
    
      .nb-details .npdate{
        position:static;
        right: 5%;
        top: 5%;
        width: auto;
        display: block;
        float: left;
        clear: none;
        transition: all .4s;
        
    }
    
    
     .nb-details .np-title{
        position: static;
        left: 5%;
        bottom: 10%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        transition: all .4s;
         font-size: 1.1em;
    }
    
    .nb-body{
        width: 100%;
        display: block;
        float: ;
        clear: none;
        line-height: 1.5em;
        
    }
    
    .nb-body .para{
        line-height: 1.5em;
        
    }
    
    
    
    
    
    
    
    
    .othernews{
        width: 80%;
        height: 70vh;
        position:sticky;
        float: right;
        right: 5vw;
        top: 20vh;
        padding: 1em 5%;
        overflow-x: hidden;

    }
    
    
    .on-title{
        height: auto;
        padding: 1em 5%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        color: rgb(23,41,117);
        font-family:"Kufam-SemiBold";
        background: #d2e0ff;
    }
    
    
    .othernews .newspost{
        width: 100%;
        height: 42%;
       margin-bottom: 1em;

    }
    
    
    
    
    
    




}




/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
    

    
    
    
    
    
    
    
    
    
    
    
    
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {


    
    
    
    .newspost{
        width: 100%;
        height: 50vh;
        display: block;
        float: left;
        clear: none;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: all .4s;
        cursor: pointer;
    }
    
    
    .np-inner{
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        background-color: white;
        width: 100%;
        height: 100%;
        transition: all .4s;
        color: inherit;
    }
    
    
    
    .newspost:hover .np-inner{
        background: rgb(23,41,117);
background: linear-gradient(180deg, rgba(23,41,117,0.4) 0%, rgba(23,41,117,1) 100%);
        color: #FFF;
    }
    
    
    
    .newspost:hover .title2{
        color: #fff;
    }
    
    
    .newspost:hover .para{
        color: #fff;
    }
    
    
    
    .npdate{
        position: absolute;
        left: 5%;
        top: 5%;
        width: auto;
        display: block;
        float: left;
        clear: none;
        transition: all .4s;
        
    }
    
    
    .npdate #day{
        float: left;
        clear: none;
        display: block;
        font-size: 3em;
    }
    
    .npdate .para{
        float: left;
        clear: none;
        display: block;
        margin-left: .5em;
    }
    
    
    
    
    .np-title{
        position: absolute;
        left: 5%;
        bottom: 10%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        transition: all .4s;
    }
    
    
    .np-title p{
        font-size: .9em;

    }
    
	
	
    
    
    
    
    
    
    
    .news-container{
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        margin-top: 15vh;
        margin-bottom: 10vh;
    }
    
    
    
    
    
    .nc-inner{
        width: 90%;
        height: auto;
        float: left;
        clear: none;
        margin: 2em 5%;
        display: grid; 
          grid-template-columns: 1fr 1fr 1fr 1fr; 
          gap: 2em 2em; 
        padding-bottom: 4em;
    }
    
    
    
    
    .newsbody{
        width: 55%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: white;
        padding: 3em;
        margin-left: 5%;
    }
    
    
    
    .nb-img{
        height: 50vh;
        width: 100%;
        float: left;
        clear: none;
        display: block;
        background-size: cover;
        background-position: center;
        margin-bottom: 5vh;
    }
    
    
    
    .nb-details{
           height: auto;
        width: 100%;
        float: left;
        clear: none;
        display: block;
        position: relative;
        margin-bottom: 5vh;
    }
    
    
    
      .nb-details .npdate{
        position:static;
        right: 5%;
        top: 5%;
        width: auto;
        display: block;
        float: left;
        clear: none;
        transition: all .4s;
        
    }
    
    
     .nb-details .np-title{
        position: static;
        left: 5%;
        bottom: 10%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        transition: all .4s;
         font-size: 1.5em;
    }
    
    .nb-body{
        width: 100%;
        display: block;
        float: ;
        clear: none;
        line-height: 1.5em;
        
    }
    
    .nb-body .para{
        line-height: 1.5em;
    }
    
    
    
    
    
    
    
    
    .othernews{
        width: 25%;
        height: 70vh;
        position:sticky;
        float: right;
        right: 5vw;
        top: 20vh;
        padding: 1em;
        overflow-x: hidden;

    }
    
    
    .on-title{
        height: auto;
        padding: 1em 5%;
        display: block;
        float: left;
        clear: none;
        width: 90%;
        color: rgb(23,41,117);
        font-family:"Kufam-SemiBold";
        background: #d2e0ff;
    }
    
    
    .othernews .newspost{
        width: 100%;
        height: 42%;
       margin-bottom: 1em;

    }
    
    
    
    
    
    
    
    
    
    
    
    
    
	
}
	
	