﻿
/* BLOG PAGE TITLE
----------------------------------------*/

.contentcontainer.bloglistcontainer {
    margin-top: 200px !important;
}

.contentcontainer.bloglistcontainer .pagetitle.blogpagetitle h2 {
    clear: both;
    font-size: 46px !important;
    line-height: 20px;
    font-weight: 900 !important;
    padding: 12px 0 18px 0;
    letter-spacing: .02em;
    font-family: playfair-display, serif;
    color: #3926CD;
    border-bottom: 1px solid rgba(57,38,205,.4);
}

.pagetitle.blogpagetitle {
    padding: 55px 0 25px 0;
}

.blogpagetitle h1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 475px;
    font-size: 36px;
    line-height: 36px;
    color: #000000;
    font-weight: 900;
    padding: 2px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* SELECT FILTERS
----------------------------------------*/
.filtercontainer {
    position: absolute;
    z-index: 99;
    top: 350px;
    left: 6%;
}

.filterlist {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.filterlist:first-child ul {
    z-index: 99;
}

.filterlist:last-child ul {
    z-index: 90;
}

.filterlist:last-child {
    margin-right: 0;
}

.filterlist ul {
    margin-left: 0;
    padding-left: 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: 300px;
    text-align: left;
    border-bottom: 1px solid rgba(57,38,205,.4);
    -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: #3926CD;
    color: #fff;
}

.filterlist ul li:hover > a {
    background-color: #3926CD;
    color: #ffffff;
}

.filterlist ul li a {
    position: relative; 
    display: block;
    padding: 8px 10px;
    color: #3926CD;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
    font-size: 16px;
    -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: 0 14px 16px rgba(0,0,0,.2);
}

.filterlist ul ul li {
    float: none;
    font-weight: 400;
    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 {
    font-size: 18px;
    padding: 8px 10px;
    color: #3926CD;
    text-transform: none;
}

.filterlist ul ul li a:hover {
    background: #3926CD;
    color: #fff;
}

#down-triangle {
    float: right;
    width: 0;
    height: 0;
    margin-top: 8px;
    border-top: 5px solid #3926CD;
    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 #F1B434;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

/* BLOG GRID
----------------------------------------*/
.bloglist .entry {
    display: block;
    position: relative;
    padding-bottom: 25px;
}

.bloglist .date {
    clear: both;
    color: #211551;
    font-weight: 600;
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    padding: 20px 0 9px 0;
    letter-spacing: .04em;
}

.bloglist .blogthumb {
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    border: 1px solid #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.4);
    z-index: 9;
}

.bloglist .blogthumb img {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: -4px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 1;
}

.bloglist .blogthumb:hover img {
    transform: scale(1.04);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.bloglist .blogthumb .blogthumblink {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.bloglist .blogthumb .blogthumblink a {
    position: relative;
    display: inline-block;
    background-color: #F1B434;
    padding: 10px 20px 8px 20px;
    color: #211551;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 100;
}

.bloglist .blogthumb .blogthumblink a:hover {
    padding: 10px 60px 8px 30px;
    color: #fff;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.bloglist .blogthumb .blogthumblink a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    background-color: #251870;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    z-index: -1;
}

.bloglist .blogthumb .blogthumblink a:hover:before {
    width: 100%;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.bloglist .blogthumb:hover .blogthumblink a:before {
    width: 100%;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.bloglist .blogthumb:hover .blogthumblink a {
    padding: 10px 60px 8px 30px;
    color: #fff;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.mainentrytitlearea {
    width: 90%;
    margin: 0 auto;
    display: block;
    clear: both;
    padding-top: 0;
    min-height: 110px;
}

.mainentrytitlearea a {
    text-decoration: none;
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
    color: #3926CD;
}


/* DIVIDERS
----------------------------------------*/
.blogpostsdivide, .postdivide, .postcbdivide {
    height: 1px;
    background-color: #e4e4e4;
    margin: 4px 0 4px 0;
}

.postdivide {
    width: 100%;
    margin: 10px 0 5px 0;
}

.postcbdivide {
    width: 100%;
    margin: 10px 0 10px 0;
}

/* BLOG POST
----------------------------------------*/

.pagetitle.blogpost {
    padding-top: 0;
}


.blogpost {
    clear: both;
    padding: 0 0 0 0;
    width: 100%;
}

.blogpost .date {
    position: relative;
    clear: both;
    color: #211551;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0 9px 0;
    letter-spacing: .04em;
}

.blogpost .date:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 49px;
    opacity: .2;
    z-index: -1;
}

.blogpost .blogtitle h1 {
    clear: both;
    text-align: left;
    font-size: 38px;
    line-height: 42px;
    color: #3926CD !important;
    font-weight: 600 !important;
    padding: 18px 0 20px 0;
    letter-spacing: .03em;
}


.addthisbar {
    position: absolute;
    top: -59px;
    right: 0;
    height: 25px;
    vertical-align: middle;
}

.returnto {
    position: absolute;
    top: -27px;
    right: 5px;
    z-index: 5;
}

.returnto a {
    position: relative;
    float: right;
    color: #3926CD;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .03em;
    text-align: left;
    text-transform: uppercase;
    padding: 5px 0 5px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.returnto a:hover {
    color: #3926CD;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.returnto a:before {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 100%;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.returnto a:after {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 0;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.returnto a:hover:after {
    opacity: 1;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}


.sidebarblogthumb {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.4);
    z-index: 9;
}

.sidebarblogthumb img {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: -3px;
    z-index: 1;
}

/* BLOG GALLERY
----------------------------------------*/
.bloggallery {
    clear: both;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

/* BLOG TAGS
----------------------------------------*/
.tags {
    clear: both;
    margin-top: 20px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #DEDDDE;
    padding: 2px 0;
}

.isblog .tags {
    margin-top: 20px;
    width: 100%;
}


.tags a {
    text-wrap: none;
    padding: 6px 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3926CD;
    background-color: rgba(241,180,52,.2);
    text-decoration: none !important;
    margin: 1px 1px 1px 0;
    -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: rgba(241,180,52,.8) !important;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

/* BLOG PAGGING
----------------------------------------*/
.blogpagging {
    clear: both;
    padding-top: 26px;
    font-size: 16px;
    color: #3926CD;
    font-weight: 600;
    text-transform: uppercase; 
    width: 100%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: .05em;
}

.blogpagging .older {
    width: 46%;
    text-align: right;
    position: relative;
    float: left;
    display: inline-block;
    color: #3926CD;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: .05em;
    padding: 5px 20px 5px 30px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .older:hover {
    color: #3926CD;
    cursor: pointer;
    padding: 5px 0 5px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .older:before {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 100%;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .older:after {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 0;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .older:hover:after {
    opacity: 1;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .latest {
    width: 46%;
    position: relative;
    display: inline-block;
    float: right;
    color: #3926CD;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: .05em;
    text-align: left;
    padding: 5px 30px 5px 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .latest:hover {
    color: #3926CD;
    cursor: pointer;
    padding: 5px 0 5px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .latest:before {
    position: absolute;
    top: -5px;
    left: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 100%;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .latest:after {
    position: absolute;
    top: -5px;
    left: 0;
    background-color: #3926CD;
    content: "";
    height: 1px;
    width: 0;
    opacity: .2;
    z-index: -1;
    border-bottom: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.blogpagging .latest:hover:after {
    opacity: 1;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

