﻿
/* BLOG PAGE TITLE
----------------------------------------*/
.blogpagetitle {
    position:relative;
    text-align: left;
    width: 70%;
}

.blogpagetitle h2 {
    display: inline-block;
    font-size: 32px;
    letter-spacing: .03em;
    font-weight: 900;
    color: var(--clr-blue);
    text-transform: uppercase;
    text-align: left;
    margin-top: 10px;
}

.blogpagetitle h2:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 125px;
    margin-left: 25px;
    background-color: var(--clr-red);
}

.bloglistarea.sectioncontentcontainer {
    margin-top: 24px;
}


.bloglisttitlebar {
    display: block;
    position: relative;
}

.fixpagecorrection {
    margin-top: 50px;
}

.contentgrid.bloggridcontainer {
    grid-template-columns: 100%;
    min-height: unset;
}


.returnmobile a {
    display: none;
}

.filters.filtersmobile {
    display: none;
}



/* BLOG LIST
----------------------------------------------------*/
.bloglistsection {
    clear: both;
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0 0 55px 0;
    min-height: 750px;
}

.bloglistsection.bloglistarea {
    clear: both;
    text-align: left;
}

.bloglistsection .sectiontitle {
    width: 100%;
    text-align: left;
}

.bloglistgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding: 18px 0;
    width: 90%;
    box-sizing: border-box;
}

.bloglistgrid .bloglistitem {
    padding: 20px;
    position: relative;
    height: 100%;
    text-align: left;
    box-sizing: border-box;
    border: 1px solid #DEDDDE;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 9px rgba(var(--clr-black-hue), 0.2);
}

.blogimagecontainer {
    width: 100%;
    padding: 0;
}

.blogimagecontainer img {
    width: 100%;
    border: 1px solid rgba(var(--clr-blue-hue), 0.4);
    outline: 1px solid rgba(var(--clr-white-hue), 0.5);
    outline-offset: -6px;
}
 
.bloglistsection .date {
    clear: both;
    color: var(--clr-red);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    border-bottom: 1px solid #DEDDDE;
    padding: 10px 0 6px 0;
    letter-spacing: .05em;
    text-align: left;
    text-transform: uppercase;  
}

.bloglistitem .title a {
    display: block;
    clear: both;
    color: var(--clr-blue);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .01em;
    padding: 15px 0 5px 0;
    text-decoration: none;
    text-align: left;
}

.bloglistitem .description {
    display: block;
    clear: both;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .02em;
    padding: 5px 0 5px 0;
    text-decoration: none;
    text-align: left;
}

.bloglistitem .readmore {
    text-align: left;
    margin-top: auto; /* pushes it to bottom */
}

.bloglistviewall {
    clear: both;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    }
    
.bloglistviewall .link {
    padding: 6px 0 0 0;
    }
   
.bloglistviewall .link a {
    border-top: 1px solid #ccc;
    position: relative;
    font-weight: 500;
    color: #194B69;
    letter-spacing: .04em;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: left;
    }


/* SELECT FILTERS
----------------------------------------*/ 
.filters {
    position: relative;
    z-index:150;
}

.bloglistarea .filters {
    top: 0 !important;
}

.filterlist {
    position: relative;
	display: inline-block;
    z-index: 900000000000;
    margin: 1px 0 0 8px;
}

.filterlist:last-child {
    margin-right: 0;
}

.filterlist ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
}

.filterlist ul ul {
	display: none;
}

.filterlist ul li:hover > ul {
	display: block;
}

.filterlist ul li {
	float: left;
	width: 240px;
	text-align: left;
	border: 1px solid #DEDDDE;
    background-color: #ffffff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; 
}
	
.filterlist ul li:hover {
	background-color: var(--clr-blue);
	color: #fff;
}

.filterlist ul li:hover > a {
	background-color: var(--clr-blue);
	color: #ffffff;
	}

.filterlist ul li a {
	display: block; 
	padding: 8px 10px;
	color: var(--clr-blue); 
	text-decoration: none;
    letter-spacing: .05em;
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.filterlist ul li a:hover {
	color: #ffffff; 
}
		
.filterlist ul ul {
	border-radius: 0px; 
	padding: 0;
	position: absolute; 
	top: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    box-shadow: 1px 1px 4px #999999;
}

.filterlist ul ul li {
	float: none;
    font-weight: 400;
	border-bottom: 1px solid #DEDDDE;
	position: relative;
    background-color: #ffffff;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    box-sizing: border-box;
}


.filterlist ul ul li a:hover {
	background: var(--clr-blue);
	color: #fff;
}	

#down-triangle {
    float: right;
    width: 0; 
    height: 0;
    margin-top: 8px;
    border-top: 5px solid var(--clr-blue);
    border-left: 5px solid transparent; 
    border-right: 5px solid transparent; 
    }

.circle {
    float: right;
    display: inline;
    margin-top: 6px;
    width: 6px;
    height: 6px;
    border: 1px solid #194B69;
    -moz-border-radius: 100%; 
    -webkit-border-radius: 100%; 
    border-radius: 100%;
    }

 
 /* DIVIDERS
----------------------------------------*/      
.blogpostsdivide, .postdivide, .postcbdivide {
    height: 1px;
    background-color: #e4e4e4;
    margin: 4px 0 4px 0;
    }
  
.postdivide {
    width: 100%;
    max-width: 984px;
    margin: 10px 0 5px 0;
    } 

.postcbdivide {
    width: 100%;
    max-width: 984px;
    margin: 10px 0 10px 0;
    }  


/* BLOG POST
----------------------------------------*/


.contentgrid.blogcontentgrid {
    position: relative;
    display: grid;
    width: 99%;
    margin: 0 auto;
    grid-template-columns: 70% 29%;
    justify-content: space-between;
    align-items: start;
    row-gap: 0;
    column-gap: 20px;
    height: 100%;
    min-height: 850px;
    z-index: 2;
    margin-bottom: 100px;
}

.contentgrid.blogcontentgrid .contentgriditem.blogimage {}

.blogentrythumb {
    width: 100%;
}

.blogentrythumb img {
    width: 100%;
    display: block;
    border: 1px solid rgba(var(--clr-blue-hue), 0.4);
    outline: 1px solid rgba(var(--clr-white-hue), 0.5);
    outline-offset: -6px;
    box-shadow: 5px 5px 10px rgba(var(--clr-black-hue), 0.5);
}


.postdetails .blogpagetitle {
    position: relative;
    text-align: left;
    width: 86%;
}

.post {
    clear: both;
    padding: 0 0 0 0;
    width: 100%;
    max-width: 984px;
    }

 .postdetails .blogpagetitle h2, .postdetails .blogpagetitle h3 {
    display: inline-block;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: .03em;
    font-weight: 900;
    color: var(--clr-blue);
    text-align: left;
    padding-bottom: 10px;
}


.postdetails .date {
    clear: both;
    text-align: left;
    width: 100%;
    display: block;
    color: var(--clr-red);
    font-weight: 500;
    padding: 12px 0 18px 0;
    text-transform: uppercase;
    border-top: 1px solid #DEDDDE;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
}


/* RETURN LINK
----------------------------------------*/  
.returnblogposts .link {
    padding: 9px 0 0 0;
    }
   
.returnblogposts .link a {
    position: relative;
    display: block;
    text-align: right;
    font-weight: 400;
    color: #666666;
    font-size: 12px;
    text-decoration: none;
    }

.returnblogposts .link a:hover {
    color: #333333;
    }
    
.returnblogposts .link a:before {
    position: absolute;
    top: 3px;
    right: 100px;
    font-family: 'df-icomoon';
    content:"\e62d";
    font-size: 12px;
    opacity: 0;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	text-decoration: none;
	-webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    }
       
.returnblogposts .link a:hover:before  {
    right: 110px;
    opacity: 1;
    color: #000000;
    background-color:#ffffff;
	margin-right: 8px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    } 
    
/* BLOG GALLERY
----------------------------------------*/
.bloggallery {
    clear: both;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;

}
    
/* BLOG TAGS
----------------------------------------*/
.tags {
    position: absolute;
    bottom: -20px;
    clear: both;
    margin-top: 20px;
    width: 100%;
    border-top: 1px solid #DEDDDE;
    padding: 2px 0;
}

.tags a {
    text-wrap: none;
    padding: 3px 6px;
    display: inline;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #ffffff !important;
    background-color: #194B69;
    text-decoration: none !important;
    margin-right: 1px;
    margin-top: 10px;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
    }

.tags a:hover {
    background-color: #4F4C4D !important;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
    }

.blogpost.tags {
    bottom: -80px;
}


/* BLOG PAGGING
----------------------------------------*/ 
.blogpagging {
    font-size: 16px;
    color: #194B69;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: .05em;
    border-top: 1px solid #DEDDDE;
    }

.blogpagging .older {
    display: inline-block; 
    cursor: pointer; 
    padding: 18px 20px 0 0;
    }
 
.blogpagging .older:before, .blogpagging .latest:after {
    font-family: 'df-icomoon';
    font-size: 14px;
    vertical-align: middle;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    padding: 0 5px 0 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    }
   
.blogpagging .latest {
    display: inline-block; 
    cursor: pointer; 
    padding: 18px 0 0 20px;
    }
    
.blogpagging .latest:after {
    content: "\e62a";
    }
    
.blogpagging .older:before {
    content: "\e62d";
    }

.blogpagging .latest:hover, .blogpagging .older:hover {
    color: #000000; 
    }
