@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/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	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. */

	


    
    .nb-post{
        background-color: #2F3337;
        border-radius: 1em;
        cursor: pointer;
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        min-height: 65vh;
        max-height: 70vh;
    }
    
    
    .nb-post-image{
        width: 100%;
        height: 30vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 1em;
    }
    
    
    .nb-post-text{
        width: 90%;
        margin: 5%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    .nb-post-text h4{
        font-family: "GeneralSans-Regular";
        font-size: 1.3em;
        letter-spacing: 1px;
    }
    
    
    .newspost h5, .newspost h6{
        color: #21B19C;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    .blogpost h5, .blogpost h6{
        color: #FF9233;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    #dateofpost{
        color: #9B9B9B;
        font-weight: normal;
    }
    
    
    
    
    
    
     .media-container{
        float: left;
        clear: none;
        width: 90%;
        margin: auto 5%;
        height: auto;
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    "."; 
    }
    
    
    
    .mediapost{
        width: 100%;
        height: auto;
    }

    
    .media-container .nb-post{
        min-height: 55vh;
        max-height: 70vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    
    .postcontent{
        width: 90%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        margin: 2em 5%;
    }
    
    
    .postsheader{
        width: 90%;
       clear: both;
        float: left;
        margin: 1em 0%;
        display: block;
    }
    
    
    .postsheader h2{
        text-transform: uppercase;
    }
    
    
    .pc-left hr{
        clear: both;
        float: left;
        width: 100%;
        margin: auto auto 1em auto;
    }
    
    
    .pc-left{
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .pc-left h2{
        
    }
    
    
    .pc-left h5{
        text-transform: uppercase;
    }
    
    
    
    .pc-right{
        width: 90%;
        height: auto;
        float: right;
        clear: none;
        top: 10em;
        right: 5%;
        display: block;
        position: relative;
        font-size: .8em;
    }

    
    
    
  
    
    .pc-right .nb-post{
        width: 100%;
        height: 50vh;
        clear: both;
        float: left;
        
    }
    
    
    





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

@media only screen and (min-width: 481px) {
	
	
    
    .nb-post{
        background-color: #2F3337;
        border-radius: 1em;
        cursor: pointer;
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        min-height: 65vh;
        max-height: 70vh;
    }
    
    
    .nb-post-image{
        width: 100%;
        height: 30vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 1em;
    }
    
    
    .nb-post-text{
        width: 90%;
        margin: 5%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    .nb-post-text h4{
        font-family: "GeneralSans-Regular";
        font-size: 1.3em;
        letter-spacing: 1px;
        font-weight: normal;
    }
    
    
    .newspost h5, .newspost h6{
        color: #21B19C;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    .blogpost h5, .blogpost h6{
        color: #FF9233;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    #dateofpost{
        color: #9B9B9B;
        font-weight: normal;
    }
    
    
    
    
    
    
     .media-container{
        float: left;
        clear: none;
        width: 90%;
        margin: auto 5%;
        height: auto;
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 1em 1em; 
  grid-template-areas: 
    ". ."; 
    }
    
    
    
    .mediapost{
        width: 100%;
        height: auto;
    }

    
    .media-container .nb-post{
        min-height: 55vh;
        max-height: 70vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    
    .postcontent{
        width: 90%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        margin: 2em 5%;
    }
    
    
    .postsheader{
        width: 90%;
       clear: both;
        float: left;
        margin: 1em 0%;
        display: block;
    }
    
    
    .postsheader h2{
        text-transform: uppercase;
    }
    
    
    .pc-left hr{
        clear: both;
        float: left;
        width: 100%;
        margin: auto auto 1em auto;
    }
    
    
    .pc-left{
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .pc-left h2{
        
    }
    
    
    .pc-left h5{
        text-transform: uppercase;
    }
    
    
    
    .pc-right{
        width: 90%;
        height: auto;
        float: right;
        clear: none;
        top: 10em;
        right: 5%;
        display: block;
        position: relative;
        font-size: .8em;
    }

    
    
    
  
    
    .pc-right .nb-post{
        width: 100%;
        height: 50vh;
        clear: both;
        float: left;
        
    }
    
    
    


    
    
    
    
    
    
    
    
    
	

	
	
	
}



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

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

    
    
    
    
    
    
   
    
    .nb-post{
        background-color: #2F3337;
        border-radius: 1em;
        cursor: pointer;
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        min-height: 65vh;
        max-height: 70vh;
    }
    
    
    .nb-post-image{
        width: 100%;
        height: 35vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 1em;
    }
    
    
    .nb-post-text{
        width: 90%;
        margin: 5%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    .nb-post-text h4{
        font-family: "GeneralSans-Regular";
        font-size: 1.35em;
        letter-spacing: 1px;
        font-weight: normal;
    }
    
    
    .newspost h5, .newspost h6{
        color: #21B19C;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    .blogpost h5, .blogpost h6{
        color: #FF9233;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    #dateofpost{
        color: #9B9B9B;
        font-weight: normal;
    }
    
    
    
    
    
    
     .media-container{
        float: left;
        clear: none;
        width: 90%;
        margin: auto 5%;
        height: auto;
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr ; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."; 
    }
    
    
    
    .mediapost{
        width: 100%;
        height: auto;
    }

    
    .media-container .nb-post{
        min-height: 65vh;
        max-height: 70vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    
    .postcontent{
        width: 90%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        margin: 2em 5%;
    }
    
    
    .postsheader{
        width: 90%;
       clear: both;
        float: left;
        margin: 1em 0%;
        display: block;
    }
    
    
    .postsheader h2{
        text-transform: uppercase;
    }
    
    
    .pc-left hr{
        clear: both;
        float: left;
        width: 100%;
        margin: auto auto 1em auto;
    }
    
    
    .pc-left{
        width: 70%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .pc-left h2{
        
    }
    
    
    .pc-left h5{
        text-transform: uppercase;
    }
    
    
    
    .pc-right{
        width: 25%;
        height: auto;
        float: right;
        clear: none;
        top: 10em;
        right: 7.5%;
        display: block;
        position: sticky;
        font-size: .8em;
    }

    
    
    
  
    
    .pc-right .nb-post{
        width: 100%;
        height: 60vh;
        clear: both;
        float: left;
        
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    
    
    
    
   
    
    .nb-post{
        background-color: #2F3337;
        border-radius: 1em;
        cursor: pointer;
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        min-height: 65vh;
        max-height: 70vh;
    }
    
    
    .nb-post-image{
        width: 100%;
        height: 40vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 1em;
    }
    
    
    .nb-post-text{
        width: 90%;
        margin: 5%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    .nb-post-text h4{
        font-family: "GeneralSans-Regular";
        font-size: 1.35em;
        letter-spacing: 1px;
        font-weight: normal;
    }
    
    
    .newspost h5, .newspost h6{
        color: #21B19C;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    .blogpost h5, .blogpost h6{
        color: #FF9233;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    #dateofpost{
        color: #9B9B9B;
        font-weight: normal;
    }
    
    
    
    
    
    
     .media-container{
        float: left;
        clear: none;
        width: 90%;
        margin: auto 5%;
        height: auto;
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr ; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."; 
    }
    
    
    
    .mediapost{
        width: 100%;
        height: auto;
    }

    
    .media-container .nb-post{
        min-height: 65vh;
        max-height: 70vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    
    .postcontent{
        width: 90%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        margin: 2em 5%;
    }
    
    
    .postsheader{
        width: 90%;
       clear: both;
        float: left;
        margin: 1em 0%;
        display: block;
    }
    
    
    .postsheader h2{
        text-transform: uppercase;
    }
    
    
    .pc-left hr{
        clear: both;
        float: left;
        width: 100%;
        margin: auto auto 1em auto;
    }
    
    
    .pc-left{
        width: 70%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .pc-left h2{
        
    }
    
    
    .pc-left h5{
        text-transform: uppercase;
    }
    
    
    
    .pc-right{
        width: 25%;
        height: auto;
        float: right;
        clear: none;
        top: 10em;
        right: 7.5%;
        display: block;
        position: sticky;  
        font-size: .8em;
    }

    
    
    
  
    
    .pc-right .nb-post{
        width: 100%;
        height: 60vh;
        clear: both;
        float: left;
        
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    
    
    
   
    
    .nb-post{
        background-color: #2F3337;
        border-radius: 1em;
        cursor: pointer;
        width: 100%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        min-height: 65vh;
        max-height: 70vh;
    }
    
    
    .nb-post-image{
        width: 100%;
        height: 40vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        border-radius: 1em;
    }
    
    
    .nb-post-text{
        width: 85%;
        margin: 7.5%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    .nb-post-text h4{
        font-family: "GeneralSans-Regular";
        font-size: 1.4em;
        letter-spacing: 1px;
        font-weight: normal;
    }
    
    
    .newspost h5, .newspost h6{
        color: #21B19C;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    .blogpost h5, .blogpost h6{
        color: #FF9233;
        font-weight: bolder;
        letter-spacing: 1px;
    }
    
    #dateofpost{
        color: #9B9B9B;
        font-weight: normal;
    }
    
    
    
    
    
    
     .media-container{
        float: left;
        clear: none;
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr ; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."; 
    }
    
    
    
    .mediapost{
        width: 100%;
        height: auto;
    }

    
    .media-container .nb-post{
        min-height: 65vh;
        max-height: 70vh;
        width: 100%;
        display: block;
        float: left;
        clear: none;
        cursor: pointer;
    }
    
    
    
    
    
    
    
    
    
    
    .postcontent{
        width: 85%;
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        margin: 2em 7.5%;
    }
    
    
    .postsheader{
        width: 50%;
       clear: both;
        float: left;
        margin: 1em 0%;
        display: block;
    }
    
    
    .postsheader h2{
        text-transform: uppercase;
    }
    
    
    .pc-left hr{
        clear: both;
        float: left;
        width: 100%;
        margin: auto auto 1em auto;
    }
    
    
    .pc-left{
        width: 70%;
        height: auto;
        display: block;
        float: left;
        clear: none;
    }
    
    
    .pc-left h2{
        
    }
    
    
    .pc-left h5{
        text-transform: uppercase;
    }
    
    
    
    .pc-right{
        width: 25%;
        height: auto;
        float: right;
        clear: none;
        top: 10em;
        right: 7.5%;
        display: block;
        position: sticky;  
        font-size: 1em;
    }

    
    
    
  
    
    .pc-right .nb-post{
        width: 100%;
        height: 60vh;
        clear: both;
        float: left;
        
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}