





/* ************************************************************************** *\
|* ****************************** GENERAL *********************************** *|
\* ************************************************************************** */

.absolute-cover {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

body { background-color: #FFF; }





/* ************************************************************************** *\
|* ******************************** #hero *********************************** *|
\* ************************************************************************** */

#hero {
	height: -webkit-calc(70vh - 80px);
	height: calc(70vh - 80px);
	min-height: 500px;
	background-position: 0 -75px;
}

#hero .container {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

#hero .hero-overlay {
	background-color: rgba(85, 85, 85, .5);
}




#hero .hero-content {
	position: absolute;
	/* Verticaly Centers the Box */
   	top: 45%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);

    display: -webkit-box;

    display: -webkit-flex;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    /* background-color: rgba(30, 63, 114, .9); */
    background-color: rgba(50, 81, 130, .9);

	padding: 25px 30px 30px 35px;
    margin: 0;

    width: 95%;
    max-width: 490px;
    height: auto;
    z-index: 100;
}

#hero .hero-content .title {
	color: #FFF;
    font: 700 45px 'Montserrat', 'Helvetica';
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 55px;
    margin: 0;
}

#hero .hero-content .separator:after {
	background-color: #EEE;
    margin: 12px 0 16px;
    width: 415px;
}

#hero .hero-content .text {
	width: 99%;
    color: #FFF;
    letter-spacing: 0.035em;
    font: 400 12px 'Poppins', 'Helvetica';
    line-height: 20px;
    margin: 0 0 15px 0;
}

#hero .hero-content .btn-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	/*justify-content: space-between;*/
}

#hero .hero-content .btn-group .btn {
	color: #404040;
	font: 700 12px 'Poppins', 'Helvetica';
    letter-spacing: 0.05rem;
    border: none;
    text-align: center;
    background-color: #FFF;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    min-width: 205px;
    padding: 9px 0;
    margin: 0 10px;
}

#hero .hero-content .btn-group .btn:first-child {
	margin: 0;
	width: 100%;
}

#hero .hero-content .btn-group .btn:hover {
	color: #FFF;
	background: #404040;
}

#hero .hero-overlay {
	/*background-color: rgba(85, 85, 85, .35);*/
}




#hero .hero-img {
	width: 100vw;
	height: 100%;
}

#hero .hero-img .overlay {
	/*background-color: rgba(0, 0, 0, .4);*/
	/*z-index: 1;*/
}

#hero .hero-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 0 -125px;
	   object-position: 0 -125px;

	/* CSS Image editing styles */
	-webkit-filter: saturate(65%); /* Safari 6.0 - 9.0 */
    filter: saturate(65%);
    z-index: 0;
}


@media only screen and (max-width:1250px) {
	#hero {
		background-position: 0;
    	-webkit-background-size: cover;
    	        background-size: cover;
	}

	#hero > .container { width: 90%; }

	#hero .hero-img img { -o-object-position: 0 0; object-position: 0 0; }
}



@media only screen and (max-width:650px) {
	#hero {
		/*height: calc(45vh - 80px);*/
	    min-height: 400px;
	}

	#hero .container {
		width: 100vw;
		max-width: 100vw;
		max-width: 100% !important;
		height: 100%;
		padding: 0;
	}

	#hero .hero-content .separator:after { display: none; }

	#hero .hero-content .title {
		font-size: 30px;
		margin-bottom: 15px;
		line-height: auto;
	}
	
	#hero .hero-content {
		background-color: rgba(0, 0, 0, .5);
		padding: 20px 25px;
	    max-width: 100%;
	    width: 100%;
	    max-height: 100%;
	    height: 100%;
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	    -webkit-flex-flow: column nowrap;
	        -ms-flex-flow: column nowrap;
	            flex-flow: column nowrap;
	    -webkit-box-pack: center;
	    -webkit-justify-content: center;
	        -ms-flex-pack: center;
	            justify-content: center;
	}

/*	#hero .hero-content {
		height: 100%;
	    width: 100%;
	    display: flex;
	    flex-flow: column;
	    justify-content: center;
	    background-color: rgba(30, 63, 114, 0.75);
	}*/

	/*#hero .hero-content .btn-group { justify-content: flex-start; }*/
	/*#hero .hero-content .btn-group .btn:first-child { margin: 0 15px 0 0; }*/
}



@media only screen and (max-width: 600px) {
	#hero { height: 550px; }

	#hero .hero-content .btn-group {
		margin: 10px 0 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-flow: column nowrap;
		    -ms-flex-flow: column nowrap;
		        flex-flow: column nowrap;
    	-webkit-box-align: start;
    	-webkit-align-items: flex-start;
    	    -ms-flex-align: start;
    	        align-items: flex-start;
	}

	#hero .hero-content .btn-group .btn {
		width: 100%;
		display: block;
		margin: 10px 0 0;
	}
}



@media only screen and (max-width: 550px) {
	#hero .hero-content .title {
		font-size: 35px;
		line-height: 40px;
	}
}



@media only screen and (max-width: 500px) {
	#hero { height: 500px; }

	#hero .hero-content .btn-group {
	}

	#hero .hero-content .btn-group .btn {
		width: 100%;
		display: block;
		margin: 10px 0 0;
	}
}



@media only screen and (max-width: 450px) {
	#hero .hero-content .text {
		font-size: 13px;
		line-height: 20px;
	}

	#hero .hero-content .title {
		font-size: 31px;
    	line-height: 35px;
	}

	#hero .hero-content .btn-group .btn {
		font-size: 13px;
	}
}



@media only screen and (max-width: 400px) {
	#hero { height: 475px; }
	
	#hero .hero-content { padding: 20px 25px; }

	#hero .hero-content .title {
	    font-size: 34px;
    	line-height: 39px;
	}

	#hero .hero-content .separator:after { margin: 5px 0; }

	#hero .hero-content .text {
	    font-size: 12px;
	    line-height: 19px;
	}
}



@media only screen and (max-width: 374px){
	#hero .hero-content .title {
	    font-size: 28px;
	    line-height: 33px;
	}
}




















/* ************************************************************************** *\
|* ******************************** #quote ********************************** *|
\* ************************************************************************** */

#quote {
	width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;

    padding: 100px 0 125px;
    background-color: #FFF;
    min-height: 200px;
}

#quote .container {
	display: block;
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Quotation Marks above the quote text */
#quote h2.text:before {
	position: initial;
    display: block;
    content: '"';

    color: #555;
    font: 400 125px cursive, Helvetica;

    height: 1px;
    width: 100%;
    max-width: 100px;
    margin: -40px auto 100px;
}

/* Actual quote text */
#quote h2.text {
    display: block;
    margin: 0 auto 20px;

    color: #325182;
    font: 400 35px 'Raleway', 'Helvetica';
    line-height: 50px;
    letter-spacing: 1px;
    padding: 0 0;
    text-align: center;
    text-transform: lowercase;
}

#quote .separator:after {
	background-color: #404040;
    width: 100px;
    margin: 1em auto 0.5em;
}

/* quote author name */
#quote p.author {
	display: block;
    margin: 0;

    font: 400 15px 'Montserrat', 'Helvetica';
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}

#quote .btn-group {
	margin: 35px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}


#quote .btn-group .btn {
	color: #FFF;
    font: 700 13px 'Poppins', 'Helvetica';
    letter-spacing: 0.05rem;
    border: none;
    text-align: center;
    background-color: #325182;
    min-width: 175px;
    padding: 9px 0;
    margin: 0 20px 0 0;
}

#quote .btn-group .btn:hover { background: #4068a7; }




@media only screen and (max-width: 1024px) {
	#quote h2.text  {
		font-size: 1.75em;
		line-height: normal;
	}

	#quote p.author { font-size: 1.25em; }
}

@media only screen and (max-width: 768px) {
	#quote h2.text  { font-size: 1.45em; }
	#quote p.author { font-size: 1.15em; }
}

@media only screen and (max-width: 550px) {
	#quote { padding: 6em 1em; }

	#quote h2.text  {
		font-size: 1.30em;
		margin: 0;
    	width: 100%;
	}

	#quote p.author { font-size: 1.05em; }
}


@media only screen and (max-width: 400px) {
	#quote h2.text  { font-size: 1.25em; }
	#quote p.author { font-size: 1.10em; }
}

@media only screen and (max-width: 374px) {
	#quote h2.text  { font-size: 1.10em; }
	#quote p.author { font-size: 0.9em; }
}














#events, .gallery{
	display: block;
    width: 1100px;
    width: 100%;
    min-height: 300px;
    padding: 95px 0 110px;
    position: relative;
    border-top: 1px solid #DDD;
}


#events .title p, .gallery .title p{
	max-width: 1200px;
    width: 90%;
    margin: 0 auto;

    color: #325182;
    font: 600 28px 'Poppins', 'Helvetica';
    text-transform: uppercase;
}

.gallery .slick-slide img {
    display: block;
    height: 500px;
    margin: 20px;
    width: unset;
}
.card img{
	opacity: 0.6;
	transition: all 300ms ease;
}

.slick-center img{
	opacity: 1;
	transform: scale(1.08);
}
.gallery #slick-prev, .gallery #slick-next{
	background: transparent;
	width: 40%;
}

@media only screen and (max-width: 980px){
	.gallery .slick-slide img {
		height: 300px;
	}
}
@media only screen and (max-width: 550px){
	.gallery .slick-slide img {
		margin: 0 auto;
		object-fit: contain;
	}
	.card img{
		opacity: 1;
	}
	.fa-angle-left, .fa-angle-right{
		/*display: none;*/
	}
}

/* Base Styles for left and right buttons */
/*#cards:after,
#cards:before {
    position: initial;
    cursor: pointer;

    height: 55px;
    width: 40px;
    margin: auto 0;
    background-color: #325182;
    
    display: inline-flex;
    justify-content: center;
    align-items: center;

    font-family: 'FontAwesome';
    color: #FFF;
    font-size: 35px;
}*/

/* Font Awesome Right Arrow */
/*#cards:after  {
	content: '\f105';
	padding: 5px 0 8px 2px;
}*/

/* Font Awesome Left Arrow */
/*#cards:before {
	content: '\f104';
	padding: 5px 2px 8px 0;
}*/


#cards {
	width: 100%;
	margin: 0 auto;

	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: row nowrap;
	    -ms-flex-wrap: row nowrap;
	        flex-wrap: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}


#cards #inner-slider {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-flow: row nowrap;
	    -ms-flex-flow: row nowrap;
	        flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}



#events .card {
	background-color: #FFF;
	/*border: 1px solid gainsboro;*/
	/*border-radius: 2px;*/
	/*box-shadow: 0 2px 4px #e6e6e6;*/
	-webkit-flex-basis: 15em;
	    -ms-flex-preferred-size: 15em;
	        flex-basis: 15em;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: 0 1em;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#events .card .card-image {
	background-color: #FFF;
	height: 175px;
	max-height: 175px;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}

#events .card .card-image img {
	opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
    height: 100%;
    -o-object-position: 0 0;
       object-position: 0 0;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    margin: 0 auto;
}


#events .card .card-date {
	position: absolute;
	bottom: 0;
	right: 0;
}

#events .card .card-date p {
	margin: 0;
	padding: 5px 10px 2px;

	color: #FFF;
	background-color: #325182;
	font: 600 13px 'Poppins', 'Helvetica';
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 18px;
    text-align: right;
}


#events .card .card-header p {
    margin: 0 auto;
    padding: 5px 0 0;

	color: #325182;
    background-color: #FFF;
    border-top: 1px solid #EEE;
    border-radius: 3px 3px 0 0;
    line-height: 1.5em;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    font: 700 16px 'Poppins', 'Helvetica';
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#events .card .card-copy {
	font-size: 14px;
    padding: 0 1em;
}

#events .card .card-copy p {
	margin: 0;

    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
    font: 400 11px 'Open Sans', 'Helvetica';
}

#events .card .linkto {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;

    color: #404040;
    font: 600 12px 'Poppins', 'Helvetica';
    text-decoration: none;
    text-transform: lowercase;
}

/* Arrow for links in card */
#events .card .linkto:after {
	position: initial;
    cursor: pointer;
    background-color: transparent;
    
    display: -webkit-inline-box;
    
    display: -webkit-inline-flex;
    
    display: -ms-inline-flexbox;
    
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;

    margin: 0 0 0 4px;
    vertical-align: initial;

    font-family: 'FontAwesome';
 	content: '\f101';
    color: #404040;
    font-size: 13px;
    font-weight: 400;

    -webkit-transition: all .05s linear;
    -o-transition: all .05s linear;
    transition: all .05s linear;
}

#events .card .linkto:hover:after {
	margin-left: 7px;

	-webkit-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
}

#events .card .linkto:hover,
#events .card .linkto:hover:after { color: #4068a7; }


#events .card:focus, #events .card:hover { cursor: pointer; }
#events .card:focus img, #events .card:hover img { opacity: 0.7; }
#events .card:active { background-color: #f6f6f6; }
#events .card:active .card-header { background-color: #f6f6f6; }



/*  Slick Slider Arrows  */

#slick-prev,
#slick-next {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20%;
	z-index: 9000;

	background: rgba(255, 255, 255, .8);
}

#slick-prev {
	left: 0;
}

#slick-next {
	right: 0;
}

#slick-prev .inner,
#slick-next	.inner {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
#slick-prev .inner .fa{
	left: 30%;
}
#slick-next .inner .fa {
	left: 70%;
}
#slick-prev .inner .fa,
#slick-next .inner .fa {
	font-size: 25px;
	padding: 10px 20px;
	border-radius: 30px;

	color: #FFF;
	background-color: #4068a7;

	/* Vert & Hor align in container */
	position: absolute;
	top: 45%; /* vertically centers with image in slider */
	/*left: 50%;*/
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}


#slick-prev .inner .fa { padding: 6px 14px;}
#slick-next .inner .fa { padding: 6px 14px;}

@media (max-width: 1400px){
	#slick-prev,
	#slick-next { width: 24%; }
}

@media (max-width: 1250px){
	#events .card .card-image { height: 150px; }
}

@media (max-width: 1100px){
	#slick-prev,
	#slick-next {
		width: 100px;
		background-color: transparent;
	}
}

@media (max-width: 769px){}
@media (max-width: 680px){
	#slick-prev .inner .fa{
		left: 30%;
	}
	#slick-next .inner .fa {
		left: 70%;
	}
}







/* ************************************************************************** *\
|* ******************************** #banner ********************************* *|
\* ************************************************************************** */

#banner {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 50vh;
	min-height: 450px;
	min-height: 350px;

	display: block;
	position: relative;
	/*padding: 150px 0;*/
	padding: 0;

	-webkit-background-size: cover;

	        background-size: cover;
	background-position: 0 -100px;

	/* Add the blue overlay over the image */
	/*background-color: #325182;*/
	background-color: rgba(30, 63, 114, .85);
	background-blend-mode: multiply;
}

#banner .banner-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;

	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: rgba(30, 63, 114, .65);
    z-index: 10;
}

#banner .banner-text {
	max-width: 900px;
    width: 93%;
	display: block;
	margin: 0 auto 15px;
}

#banner .banner-text p {
	color: #FFF;
    font: 400 15px 'Open Sans', 'Helvetica';
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.035em;
    margin: 0 0 15px 0;
}

#banner .separator:after {
	background-color: #EEE;
    margin: 0 0 15px;
    width: 125px;
}

#banner .banner-link { text-align: center; }

#banner .banner-link a {
	color: #3e5c9a;
    font-size: 13px;
    border: none;
    background-color: #FFF;
    margin: 0;

    line-height: normal;
    padding: 10px 25px;
    min-width: 200px;
}

#banner .banner-link a:hover {
	color: #FFF;
	background-color: #4068a7;
}

/* Starts Styles for background Image */
#banner .banner-img {
	display: block;
	width: 100%;
	height: 100%;
	
	z-index: 5;
}

#banner .banner-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 0 -100px;
	   object-position: 0 -100px;

	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}


@media only screen and (max-width:1024px) {
	#banner { 
		height: 300px;
		min-height: auto;
	}
	
	#banner .banner-img img { -o-object-position: 0 0; object-position: 0 0; }
	#banner .banner-text p {
		font-size: 15px;
		line-height: 25px;
	}
}

@media only screen and (max-width:768px) {
	#banner .banner-text p {
		font-weight: 400;
		font-size: 14px;
		line-height: 25px;
	}
}

@media only screen and (max-width: 550px) {
	#banner .banner-link a {
		font-size: 13px;
		padding: 10px 25px;
		line-height: 23px;
	}
}

@media only screen and (max-width: 500px) {
	#banner { height: 400px; }
}

@media only screen and (max-width: 400px) {
	#banner { height: 450px; }
}

@media only screen and (max-width: 350px) {
	#banner { height: 500px; }
}








/* ************************************************************************** *\
|* ******************************** #social ********************************* *|
\* ************************************************************************** */

#social {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 75px 0 100px;
	background-color: #FEFEFE;
    border-top: 1px solid #DDD;
}


#social .container {
	width: 85%;
	max-width: 1200px;
	height: auto;
}


#social .title {
	/*color: #325182;
	font: 600 35px 'Poppins', 'Helvetica';
	text-transform: uppercase;
	letter-spacing: 0;*/

	width: 1200px;
    margin: 0 auto 5px;
    color: #325182;
    font: 600 28px 'Poppins', 'Helvetica';
    text-transform: uppercase;
}

#social .title span {
	color: #999;
    font: 400 10px 'Open Sans', 'Helvetica';
    text-transform: uppercase;
    letter-spacing: 0.075rem;
    margin: 0 0 0 -5px;
}

#social .post-block {
	width: 100%;
	height: auto;
	display: block;
}

#social li {
	display: block;
	margin: 0 0 15px 0;
}

/*#social li:before {    
    color: #395D94;

    font-family: 'FontAwesome';
    content: '\f105';

    margin: 0 6px 0 0;
    height: 100%;
}*/

#social li p { margin-bottom: 5px; }

#social li p.s-text {
	display: block;
    font: 400 15px 'Open Sans', 'Helvetica';
    cursor: default;
    margin: 0 0 3px 0;
    letter-spacing: 0.015em;
}

#social li p.s-date {
	display: inline-block;
	font: 700 13px 'Poppins', 'Helvetica';
	text-transform: uppercase;
	cursor: default;
	margin: 0;
	/* Used to push the link next to it to a uniform length away */
	min-width: 110px;
}

#social li a.s-link {
	color: #4068a7;
    font: 600 13px 'Poppins', 'Helvetica';
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    /* No need for a margin to push away from date */
    
    margin: 0 5px;
    /*padding: 4px 8px;*/
    /* background: #325182; */
}

/* Arrow for links in social group item */
#social li a.s-link:after {
	position: initial;
    cursor: pointer;
    background-color: transparent;
    
    display: -webkit-inline-box;
    
    display: -webkit-inline-flex;
    
    display: -ms-inline-flexbox;
    
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;

    margin: 0 0 0 2px;
    vertical-align: initial;

    font-family: 'FontAwesome';
 	content: '\f101';
    color: #404040;
    font-size: 14px;
    font-weight: 400;

    -webkit-transition: all .05s linear;
    -o-transition: all .05s linear;
    transition: all .05s linear;
}

#social li a.s-link:hover:after {
	margin-left: 5px;

	-webkit-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
}

#social li a.s-link:hover { opacity: .8; }


#social .btn-container {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1200px;
    width: 100%;

}

#social .btn-container a.btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 15px 0 0;
    padding: 9px 20px;
    min-width: 200px;
    border: none;
}

#social .btn-container a.btn:hover { opacity: .8; }

#social .btn-container a.btn.facebook-btn  { background-color: #3B5998; }
#social .btn-container a.btn.twitter-btn   { background-color: #1DA1F2; }
#social .btn-container a.btn.linkedin-btn  { background-color: #0077B5; }
#social .btn-container a.btn.youtube-btn  { background-color: #FF0001; }


#social .btn-container a.btn.instagram-btn {
	background-color: #404040;
	min-width: 240px;
}

#social .btn-container a.btn img {
	height: 14px;
	width: auto;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;

}

#social .btn-container a.btn p.follow-text {
    margin: 0;

    color: #FFF;
    font: 800 11px 'Poppins', 'Helvetica';
    letter-spacing: 0.04rem;
    text-decoration: none;
}



@media only screen and (max-width: 1150px) {
	#social li p.s-text {
		font-size: 16px;
		letter-spacing: 0.02em;
	}

	#social .btn-container {
		width: 510px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-flow: row wrap;
		    -ms-flex-flow: row wrap;
		        flex-flow: row wrap;
    	margin: 30px 0 0;
	}

	#social .btn-container a.btn {
		margin: 15px 15px 0 0;
		width: 240px;
	}
}


@media only screen and (max-width: 768px) {
	#social { padding: 35px 0; }
}

@media only screen and (max-width: 575px)  {
	#social .container { width: 93%; }
	#social .btn-container { width: 300px; }

}

@media only screen and (max-width: 450px) {
	#social li { margin: 0 0 35px; }
	#social li p.s-text { font-size: 14px; }
	#social .title { font-size: 28px; }
}

@media only screen and (max-width: 320px)  {}



















