@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,300);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);

/** ************************************* **

	TABLE OF CONTENTS
	---------------------------
		01. ESSENTIALS 
		02. DEFAULTS
		03. FRAMEWORK

        -- PAGE STYLES --
		04. 
		05. 
		06. 
		07. 
		08. 
		09. 
		10. 
		11. 
		12. FOOTER
				
	---------------------------

 ** ************************************* **/


/* -------------------------------- 

 01. ESSENTIALS

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    color: #2a2a2a;
    background-color: #fff;    
    font-family: 'Source Sans Pro', sans-serif;
}
.container{
    max-width: 1125px;
}
.no-padding{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.padding-resp{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media screen and (max-width: 992px){
    .padding-resp{
        padding: 0 15px !important;
    }
    .no-padding-resp{
        padding: 0 !important;
    }
}


input[type="search"]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

img{
    width: auto;
    max-width: 100%;
    height: auto;
}
a{
    color: #212121;
}
a:hover{
    color: #212121;
}
a:link {color: #DA521F;text-decoration:none;}      
a:visited {color: #DA521F;text-decoration:none;} 
a:focus {color: #DA521F;text-decoration:none;} 
a:hover {color:#DA521F ;text-decoration:underline;}
a:active {color:#2a2a2a;text-decoration:none;}

input:focus{
    outline: none;
}


/* -------------------------------- 

 02. DEFAULTS

-------------------------------- */
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0 0 22px;
    padding: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: none;
}
h3{
	display: inline-block;
    margin: 15px 0 15px;
    padding: 0;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
}
h4{
	display: inline-block;
    margin: 18px 0 5px;
    padding: 0;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
}
p{
    margin: 0 0 15px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
strong{
    font-weight: 700;
}
em{
    font-style: italic;
}
@media screen and (max-width: 992px){
    h2{
        margin: 0 0 18px;
        font-size: 24px;
    }
    h3{
        font-size: 19px;
    }
    h4{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
}

.btn {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    padding: 10px 0;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    
    text-transform: uppercase;
    border-radius: 0;
}
.btn:hover{
    opacity: 0.5;
}
.btn-1{
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-1:hover{
    color: #fff;
}
.btn-2{
    background: #981B1E;
    color: #fff;
}
.btn-2:hover{
    background: #8A1517;
    color: #fff;
}
.btn-3{
    background: #212121;
    color: #fff;
}
.btn-3:hover{
    background: #2a2a2a;
    color: #fff;
}
.btn-4{
    background: #fff;
    color: #212121;
}
.btn-4:hover{
    color: #212121;
}
.btn-5{
    background: #FFD400;
    color: #8C7B24;
}
.btn-5:hover{
    background: #F0C700;
    color: #8C7B24;
}

.same-height{
    margin-bottom: -99999px; 
    padding-bottom: 99999px;
}
iframe, object, embed {
    display: block;
    max-width: 100%;
}
@media screen and (max-width: 480px){
   iframe, object, embed {
        max-width: 100%;
        height: auto;
   }    
}




/* -------------------------------- 

 03. FRAMEWORK

-------------------------------- */



/* -------------------------------- 

 04. MAIN

-------------------------------- */

/* MAIN */
#main{
	position: relative;
	display: inline-block;
    margin: 55px 0 0;
    padding: 0 0 30px;
    width: 100%;
    background: #fff;
    z-index: 2;
}
#main ul{
    list-style: disc outside none;
    padding: 10px 10px 10px 25px;
}
#main ul li{
    margin: 0;
    padding: 0 0 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
#main ul li strong{
    color: #2a2a2a;
}
@media screen and (max-width: 992px) {
    #main{
    	margin: 35px 0 0;
        padding: 0;
    }
    #main ul li{
		margin: 0;
		padding: 0 0 5px;
		font-size: 14px;
	}
}

/* PAGE HEADER */
#page-header{
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    background: #212121;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#page-header .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.50);
}
#page-header h2{
    margin: 135px 0;
    padding: 0;
    font-size: 90px;
    color: #fff;
    
    display: none;
}
#page-header h2 span{
    display: block;
    margin: 5px 0 0;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
    color: #D9A427; 
}
@media screen and (max-width: 992px){
    #page-header h2{
        margin: 50px 0;
        font-size: 36px;
    }
    #page-header h2 span{
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 1px;
        color: #D9A427; 
    }
}

/* BREADCRUMBS */
#breadcrumbs{
    display: inline-block;
    margin: 0;
    padding: 175px 0 50px;
    width: 100%;
    background: transparent;
    border: none;
	font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}
#breadcrumbs a{
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #DA521F;
    color: #fff;
    background: transparent;
}
#breadcrumbs a:first-child:before {
    font-family: FontAwesome;
    content: "\f015";
    float: left;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
    
    display: none;
}
#breadcrumbs .breadcrumb{
    position: relative;
    display: inline-block;
    padding: 0 8px 0;
    margin: 0;
    background: transparent;
    text-shadow: 0 0 5px rgba(0,0,0,0.15);
    z-index: 5;
}
#breadcrumbs .breadcrumb:nth-of-type(1){
    padding-left: 0px;
}
#breadcrumbs .lastitem{
    display: inline-block;
    margin: 0;
    padding: 0;
}
#breadcrumbs .current{
    display: inline-block;
    margin: 2px 0 0;
    padding: 0;
    width: 100%;
    font-size: 88px;
    font-weight: 700;
    color: #fff;
    text-indent: -5px;
    text-shadow: 0 0 12px rgba(0,0,0,0.15);
    z-index: 2;
}
@media screen and (max-width: 1200px) {
    #breadcrumbs{
        font-size: 12px;
    }
    #breadcrumbs .current{
    	font-size: 76px;
    }
}
@media screen and (max-width: 992px) {
    #breadcrumbs{
    	padding: 125px 0 30px;
        font-size: 10px;
    }
    #breadcrumbs .current{
    	margin: 4px 0 0;
    	font-size: 56px;
    }
}
@media screen and (max-width: 768px) {
    #breadcrumbs{
    	padding: 100px 0 25px;
    }
    #breadcrumbs .current{
    	font-size: 46px;
    }
}
@media screen and (max-width: 480px) {
    #breadcrumbs{
    	padding: 80px 0 20px;
    }
    #breadcrumbs .current{
    	font-size: 36px;
    }
}

/* RIGHT SIDEBAR */
#right-sidebar{
	margin: 0 0 25px;
	padding: 10px 20px;
	background: #f2f2f2;
	border: 1px solid #ededed;
}
#right-sidebar ul{
    list-style: none;
    padding: 0;
}
#right-sidebar li{
	margin: 0;
    padding: 0;
	list-style: none;
}
#right-sidebar a{
	display: block;
	margin: 0;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	border-bottom: 1px solid #ededed;
}

/* SIDEBAR NAVIGATION */
#sidebar-navigation{
    margin: 0 0 25px;
    padding: 0;
}
#sidebar-navigation h2{
    margin: 0 0 2px;
    padding: 18px 20px 5px;
    font-size: 23px;
    color: #fff;
    text-transform: uppercase;
    background: #871316;
    background: #212121;
    color: #fff;
    
    display: none;
}
#sidebar-navigation ul{
    list-style: none;
    padding: 0;
}
#sidebar-navigation ul li{
	position: relative;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    overflow: hidden;
}
#sidebar-navigation ul li:nth-of-type(1){
	border-top: 0px solid rgba(0,0,0,0.12);
}
#sidebar-navigation ul li:last-child{

}
#sidebar-navigation ul li a{
    display: inline-block;
    margin: 0;
    padding: 12px 0;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    text-transform: none;
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#sidebar-navigation ul li a:before{
	position: absolute;
	display: block;
	content: "\f054";
	font-family: 'FontAwesome';
	top: 14px;
	left: -15px;
	font-size: 14px;
	color: #DA521F;
	z-index: 4;
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#sidebar-navigation ul li a:hover:before,
#sidebar-navigation ul li a.active-sidebar:before{
	color: #DA521F;
	padding-left: 15px;
}
#sidebar-navigation ul li a:hover,
#sidebar-navigation ul li a.active,
#sidebar-navigation ul li a.active-sidebar{
    padding-left: 16px;
    color: #212121;
}

/* SEE ALSO */
#see-also{
	display: none;
    margin: 0 0 20px;
}
#see-also h2{
    margin: 0;
    padding: 0 0 10px;
    font-size: 18px;
    color: #2a2a2a;
}
#see-also h2 .fa{
    margin: 0 2px 0 0;
    font-size: 16px;
    color: #FDC110;
}

#see-also li{
    display: inline-block;
    margin: 0 0 10px;
    padding: 16px;
    width: 100%;
    background: #eeba47;
}
#see-also .wrap{
    margin: 0;
}
#see-also a{
    color: #755800;
    text-decoration: none;
}
#see-also li .fa{
    display: inline-block;
    float: left;
    margin: 2px 10px 0 0;
    padding: 0;
    width: 35px;
    height: 35px;
    border: 3px solid #755800;
    line-height: 0;
    vertical-align: 0;
    font-size: 24px;
    vertical-align: top;
    text-align: center;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
#see-also li h2{
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.3;
    text-align: left;
    color: #755800;
    text-transform: uppercase;
}
#see-also h2 span{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
}
#see-also .fa:after {
    display: none;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box; 
    -moz-box-sizing: content-box; 
    box-sizing: content-box;
}
#see-also .fa:before {
    speak: none;
    font-size: 16px;
    line-height: 30px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}
#see-also li:hover .fa{
    background: #755800;
    color: #FDC110;
}
#see-also li:hover .fa:before {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}

/* CONTACT BOX */
#contact-box{
    margin: 0 0 35px;
    padding: 25px 25px;
    background: #f8f8f8;
    border: 1px solid #ededed;
    color: #2a2a2a;
    
    display: none;
}
#contact-box h2{
    margin: 0;
    padding: 0 0 10px;
    font-size: 19px;
    color: #2a2a2a;
    text-transform: uppercase;
}
#contact-box p{
	margin: 0;
	padding: 0;
    font-size: 15px;
}
#contact-box a{
    color: #2a2a2a;
}

/* RIGHT SIDEBAR CONTACT */
.sidebar .contact{
	position: relative;
    margin: 0 0 25px;
    padding: 22px 20px 20px;
    background: #981B1E;
    color: #fff;
    overflow: hidden;
    
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    
    display: none;
}
.sidebar .contact:before{
	position: absolute;
	content: "\f128";
	font-family: 'FontAwesome';
	top: -35px;
	right: -68px;
	width: 100%;
	height: 100%;
	font-size: 300px;
	text-align: center;
	opacity: 0.10;
}
.sidebar .contact h2{
    margin: 2px 0 0;
    padding: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0px;
}
.sidebar .contact h2 span{
    display: block;
    margin: 10px 0 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}
.sidebar .contact .fa{
    display: inline-block;
    margin: 0 0 0 4px;
    color: #fff;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.sidebar .contact .btn{
    display: inline-block;
    margin: 2px 0 5px;
    padding: 8px 12px;
    width: auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: none;
    border: 2px solid #fff;
    color: #fff;
}
.sidebar .contact .btn:hover .fa{
	margin: 0 0 0 8px;
}
.sidebar .contact .border-right{
    border-right: 1px solid rgba(255,255,255,0.15);
}
@media screen and (max-width: 992px){
	.sidebar .contact h2{
    	font-size: 18px;
    }
}

/* FACEBOOK PLUGIN */
.fb-page{
	display: inline-block;
    margin: 0;
    width: 100%;
}

/* SHARE THIS */
#share-this{
	display: inline-block;
    margin: 20px 0 20px;
    padding: 0;
  	width: 100%;
    background: #fff;
    border: 0px solid #ededed;
    color: #2a2a2a;
}
#share-this h2{
    margin: 0;
    padding: 0 0 12px;
    font-size: 19px;
    font-weight: 600;
    color: #2a2a2a;
}
#share-this h2 .fa{
    margin: 0 2px 0 0;
    color: #FDC110;

	display: none;
}
#share-this a{
    margin-right: 4px;
}

/* SPONSORED BY */
.sponsored-by{
    display: inline-block;
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
}
.sponsored-by h2{
    margin: 0;
    padding: 0 0 15px;
    font-size: 19px;
    font-weight: 600;
    color: #2a2a2a;
}


/* -------------------------------- 

 05. HOME PAGE

-------------------------------- */
.tp-banner-container a.link-to{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
#welcome-banner{
    position: relative;
    margin: 0;
    padding: 75px 0 110px;
    width: 100%;
    color: #fff;
    background-image: url(../images/slider-1.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    
    display: none;
}
#welcome-banner .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.50);
    box-shadow: inset 0 20px 140px -20px rgba(0,0,0,0.35);
}
#welcome-banner h4{
    margin: 0;
    padding: 0 0 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
#welcome-banner h4 span{
	display: inline-block;
	font-weight: 700;
}
#welcome-banner h4 span:before{
	content: '|';
	margin: 0 4px;
	padding: 0;
}
#welcome-banner h3{
    margin: 0;
    padding: 0 0 5px;
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
}
#welcome-banner h3 span{
	display: block;
	font-size: 14px;
}
#welcome-banner p{
    margin: 0;
    padding: 0 0 35px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
}
@media screen and (max-width: 992px){
    #welcome-banner{
        padding: 50px 0;
    }
    #welcome-banner h3{
        font-size: 16px;
    }
    #welcome-banner h2{
        font-size: 22px;
    }
}

/* NEWSLETTER SIGNUP */
#newsletter-signup{
    display: inline-block;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid #DA521F;
    border-bottom: 1px solid #ededed;
}
#newsletter-signup h3{
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
}
#newsletter-signup h3 span{
    display: block;
    margin: 3px 0 0;
    font-size: 15px;
    font-weight: 400;
    color: #6f6f6e;
}
#newsletter-signup input,
#newsletter-signup button{
    float: left;
    display: inline-block;
    margin: 2px 2% 0 0;
    padding: 0 12px;
    height: 40px;
    line-height: 40px;
    width: 73%;
    border: 1px solid #ededed;
    background: #fff;
    outline: none;
    
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
#newsletter-signup button{
    margin: 2px 0 0;
    width: 25%;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: #303030;
    color: #fff;
}
@media screen and (max-width: 992px){
    #newsletter-signup{
        padding: 14px 0;
    }
    #newsletter-signup h3{
        margin: 0 0 8px;
        font-size: 16px;
    }
    #newsletter-signup h3 span{
        font-size: 12px;
    }
    #newsletter-signup input,
    #newsletter-signup button{
        height: 35px;
        line-height: 35px;
        font-size: 12px;
    }
    #newsletter-signup button{
        font-size: 12px;
    }
}

/* QUICK NAV */
#quick-nav{
    margin: 0;
    padding: 0;
}
#quick-nav .item{
    margin: -50px 0 0;
    padding: 34px 0 0;
    height: 120px;
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#quick-nav .item:nth-of-type(1){
    background: #BDBDBD;
}
#quick-nav .item:nth-of-type(2){
    background: #A31F22;
    background: #DA521F;
}
#quick-nav .item:nth-of-type(3){
    background: #981B1E;
    background: #CF4917;
}
#quick-nav .item:nth-of-type(4){
    background: #8C1518;
    background: #BF4315;
}
#quick-nav .item span{
    display: block;
    margin: 15px auto 0;
    height: 5px;
    width: 70px;
    background: #fff;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
@media screen and (max-width: 1200px){
    #quick-nav .item{
        font-size: 24px;
    }
}
@media screen and (max-width: 992px){
    #quick-nav{
        margin: 0 0 10px;
    }
    #quick-nav .item{
        margin: 0;
        padding: 0;
        height: 65px;
        line-height: 65px;
        font-size: 18px;
    }
    #quick-nav .item:hover{
        padding: 0;
    }
    #quick-nav .item:hover span{
        margin: 0;
    }
    #quick-nav .item span{
        display: none;
    }
}

/* QUICK NAV SLIDER 
#quick-nav{
    position: relative;
    display: block;
    margin: 0;
    padding: 16px 0;
    background: #F8F8F8;
    border-bottom: 1px solid #ededed;
    
    background: rgb(247,247,247); 
    background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(239,239,239,1) 100%); 
    background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(239,239,239,1) 100%); 
    background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(239,239,239,1) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#efefef',GradientType=0 ); 
}
#quick-nav img{
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#quick-nav img:hover{
    opacity: 0.75;
}
@media screen and (max-width: 992px){
	#quick-nav{
		padding: 12px 0;
	}
}
*/

/* -------------------------------- 

 06. NEWS & EVENTS

-------------------------------- */
#news-events{
    margin: 0;
    padding: 0;
}
#news-events a{
    cursor: pointer;
}
#news-events h2{
	margin: 0 0 26px;
	font-size: 29px;
}

/* NEWS SEARCH */
#news-search{
	position: relative;
    float: right;
    display: inline-block;
	margin: -61px 0 0;
	padding: 0;
    width: 100%
}
#news-search.no-margin{
	margin: 0 0 25px;
}
#news-search input{
	position: relative;
	margin: 0;
    padding: 0 15px;
    height: 42px;
    line-height: 42px;
    width: 100%;
    color: #212121;
    border: 1px solid #d4d4d4;
    outline: 0;
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
#news-search .btn {
    position: absolute;
    top: 9px;
    right: 0px;
    display: inline-block;
    margin: 0;
    padding: 0;
    height: 25px;
    line-height: 25px;
    color: #fff;
    background: transparent;
    width: 42px;
    border-left: 1px solid #E3E3E3;
    font-weight: 700;
}
#news-search .btn .fa {
    font-size: 17px;
    color: #525252;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
@media screen and (max-width: 992px){
    #news-search{
        position: relative;
        float: none;
        display: inline-block;
        margin: -25px 0 15px;;
        padding: 0;
        width: 100%;
    }
    #news-search input{
        position: relative;
        margin: 0;
        padding: 0 12px;
        height: 38px;
        line-height: 38px;
        width: 100%;
        font-size: 14px;
    }
    #news-search .btn {
        top: 8px;
        height: 23px;
        line-height: 23px;
    }
}

/* RECENT ITEM */
#news-events .recent-item{
    position: relative;
    display: inline-block;
    margin: 0 0 25px;
    padding: 0;
    width: 100%;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-decoration: none;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#news-events .recent-item:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
#news-events .recent-item .promo-image{
    position: relative;
    display: block;
    height: 200px;
    width: 100%;
    background-image: url(../images/slider-1.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#news-events .recent-item .promo-image .category{
    position: absolute;
    display: inline-block;
    margin: 0;
    padding: 6px 10px;
    right: 15px;
    top: 15px;
    font-size: 13px;
    font-weight: 700;
    background: #FFD400;
    color: #8C7B24;
    text-transform: uppercase;
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
#news-events .recent-item .promo-image .read-more-arrow{
    position: absolute;
    display: block;
    height: 45px;
    width: 45px;
    bottom: -23px;
    left: 50%;
    margin-left: -22px;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 5;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#news-events .recent-item .promo-image .read-more-arrow .fa{
    line-height: 47px;
    font-size: 18px;
    color: #BDBDBD;
}
#news-events .recent-item .promo-image .read-more-arrow:hover{
    background: #981B1E !important;
}
#news-events .recent-item:hover .promo-image .read-more-arrow{
    background: #DA521F;
}
#news-events .recent-item:hover .promo-image .read-more-arrow .fa{
    color: #fff;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#news-events .recent-item .content-wrap{
    position: relative;
    padding: 25px;
    min-height: 260px;
}
#news-events .recent-item .content-wrap h3{
    margin: 0 0 5px;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999999;
}
#news-events .recent-item .content-wrap h2{
    margin: 0 0 15px;
    padding: 0 0 15px;
    font-size: 28px;
    font-weight: 300;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1.2;
    text-transform: none;
}
#news-events .recent-item .content-wrap p{
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}
#news-events .recent-item .content-wrap .read-more{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    bottom: 0;
    right: 0;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #E8E8E8;
    border-bottom: none;
    border-right: none;
    overflow: hidden;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    
    display: none;
}
#news-events .recent-item .content-wrap .read-more span{
    display: none;
}
#news-events .recent-item .content-wrap .read-more a{
    color: #212121;
    
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#news-events .recent-item .content-wrap .read-more .fa{
    line-height: 45px;
}
#news-events .recent-item:hover .content-wrap .read-more{
    width: 115px;
    font-size: 13px;
    background: #981B1E;
}
#news-events .recent-item:hover .content-wrap .read-more a{
    color: #fff;
}
#news-events .recent-item:hover .content-wrap .read-more span{
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 13px;
    
    -webkit-animation: cd-fade-in 0.5s;
    -moz-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
}

/******************************
 NEWS AND EVENTS
*******************************/
#latest-news-and-events{
	margin: 0;
	padding: 0;
}
#latest-news-and-events .recent-item,
#latest-news-and-events .old-item{
	margin: 0 0 35px;
}
#latest-news-and-events .first-item{
	display: inline-block;
	width: 100%;
}
#latest-news-and-events .search-result-item{
	display: inline-block;
	padding: 0;
	width: 100%;
	cursor: default;
}
#latest-news-and-events .small-item:nth-of-type(2n+1){
	clear: left;
}
#latest-news-and-events .recent-item:last-child{ }
#latest-news-and-events .recent-item .promo-image,
#latest-news-and-events .old-item .promo-image{
	position: relative;
    display: block;
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#latest-news-and-events .small-item .promo-image{
	height: 250px;
}
#latest-news-and-events .search-result-item .promo-image{
	height: 400px;
}
@media screen and (max-width: 992px){
	#latest-news-and-events .recent-item .promo-image,
	#latest-news-and-events .old-item .promo-image,
	#latest-news-and-events .search-result-item .promo-image{
		height: 200px;
	}
}
#latest-news-and-events .recent-item .promo-image .date-released,
#latest-news-and-events .old-item .promo-image .date-released{
	position: absolute;
	left: 0;
	top: 30px;
	margin: 0;
	padding: 10px 0 0;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	background: #fff;
	color: #DA521F;
	text-transform: uppercase;
	
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
#latest-news-and-events .recent-item .promo-image .date-released span,
#latest-news-and-events .old-item .promo-image .date-released span{
	display: block;
	margin: 3px 0 0;
	font-size: 10px;
	color: #787878;
}

#latest-news-and-events .recent-item h3,
#latest-news-and-events .old-item h3{
	margin: 0 0 6px;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}
#latest-news-and-events .search-result-item h3{
	color: #212121;
}
#latest-news-and-events .recent-item h3 span,
#latest-news-and-events .old-item h3 span{
	color: #969696;
}
#latest-news-and-events .recent-item h3 span:before,
#latest-news-and-events .old-item h3 span:before{
	display: inline-block;
	content: "|";
	margin: 0 4px;
	color: #969696;
}
@media screen and (max-width: 992px){
	#latest-news-and-events .recent-item h3,
	#latest-news-and-events .old-item h3,
	#latest-news-and-events .search-result-item h3{
		font-size: 11px;
	}
}
#latest-news-and-events .recent-item h2,
#latest-news-and-events .old-item h2{
	margin: 0 0 15px;
	padding: 0;
	text-transform: none;
	font-size: 32px;
}
#latest-news-and-events .small-item h2{
	font-size: 25px;
}
#latest-news-and-events .search-result-item h2{
	font-size: 30px;
	color: #DA521F;
}
#latest-news-and-events .search-result-item h2:hover{
	text-decoration: underline;
	cursor: pointer;
}
#latest-news-and-events .recent-item h2 a:hover,
#latest-news-and-events .old-item h2 a:hover{
	color: #DA521F;
	text-decoration: underline;
}
@media screen and (max-width: 992px){
	#latest-news-and-events .recent-item h2,
	#latest-news-and-events .old-item h2,
	#latest-news-and-events .search-result-item h2{
		display: inline-block;
		font-size: 22px;
		min-height: 25px !important;
		height: auto !important;
		width: 100%;
	}
}
#latest-news-and-events .search-result-item p{
	color: #212121;
}
#latest-news-and-events .recent-item .read-more,
#latest-news-and-events .old-item .read-more{
	margin: 50px 0 0;
	padding: 11px 0;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #4d4d4d;
	border-top: 1px solid #ededed;
	border-bottom: 4px solid #ededed;
	cursor: pointer;
}
#latest-news-and-events .recent-item .read-more a,
#latest-news-and-events .old-item .read-more a{
	color: #4d4d4d;
	text-decoration: none;
}
#latest-news-and-events .recent-item .read-more .fa,
#latest-news-and-events .old-item .read-more .fa{
	margin: 0 0 0 8px;
	color: #DA521F;
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#latest-news-and-events .recent-item a:hover .fa,
#latest-news-and-events .old-item a:hover .fa{
	margin: 0 0 0 4px;
}


/* PAGE COUNT */
#latest-news-and-events .page-count{
	position: relative;
	display: inline-block;
	margin: 0px 0 0;
	padding: 0px 0 12px;
	width: 100%;
	font-size: 15px;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	border-top: 0px solid #ededed;
}
#latest-news-and-events .page-count a{
	color: #DA521F;
}
#latest-news-and-events .page-count a:hover{
	text-decoration: underline;
	color: #781012;
}
@media screen and (max-width: 768px){
	#latest-news-and-events .page-count{
		padding: 18px 0;
		font-size: 15px;
	}
}

/* DETAIL ITEM */
#latest-news-and-events .detail-item{
	display: inline-block;
	margin: 0 0 35px;
	padding: 0;
	width: 100%;
	border-bottom: 4px solid #ededed;
}
#latest-news-and-events .detail-item:last-child{
	border: none;
}
#latest-news-and-events .detail-item .blog-image{
	margin: 0 0 15px;
}
#latest-news-and-events .detail-item .promo-image{
	position: relative;
    display: block;
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    height: 385px;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#latest-news-and-events .detail-item h2{
	margin: 0 0 16px;
	padding: 0;
	font-size: 34px;
	color: #DA521F;
	text-transform: none;
}
@media screen and (max-width: 992px){
	#latest-news-and-events .detail-item h2{
		font-size: 24px;
	}
}
#latest-news-and-events .detail-item h3{
	margin: 0 0 6px;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}
#latest-news-and-events .detail-item h3 span{
	color: #969696;
}
#latest-news-and-events .detail-item h3 span:before{
	display: inline-block;
	content: "|";
	margin: 0 4px;
	color: #969696;
}

/* RETURN MORE */
#return-more{
	display: inline-block;
	margin: 5px 0 0;
	padding: 15px 0;
	width: 100%;
	border-top: 1px solid #ededed;
}
#return-more .next-article a,
#return-more .previous-article a{
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: #212121;
	text-decoration: none;
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#return-more .next-article a:hover,
#return-more .previous-article a:hover{
	color: #DA521F
}
#return-more .next-article{
	text-align: left;
}
#return-more .previous-article{
	text-align: right;
}
#return-more .next-article .fa,
#return-more .previous-article .fa{
	color: #DA521F;
}
#return-more .next-article .fa{
	margin: 0 6px 0 0;
}
#return-more .previous-article .fa{
	margin: 0 0 0 6px;
}
#return-more .all-articles{
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	color: #4d4d4d;
	
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#return-more .all-articles .fa{
	font-size: 17px;
}

/* FEATURED SUMMARY */
#latest-news-and-events .featured-summary{
	margin: 0;
	padding: 30px 0 10px;
	border-top: 4px solid #ededed;
}
#latest-news-and-events .featured-summary h4.featured-title{
	margin: 0 0 25px;
	padding: 0;
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
	
	display: none;
}
#latest-news-and-events .featured-summary .old-item .promo-image{
	height: 200px;
}
#latest-news-and-events .featured-summary .old-item h2{
	min-height: auto;
	font-size: 22px;
}
#latest-news-and-events .featured-summary .old-item h3{
	font-size: 11px;
}
#latest-news-and-events .featured-summary .old-item p{
	font-size: 13px;
}
#latest-news-and-events .featured-summary .old-item .read-more{
	font-size: 14px;
}
#latest-news-and-events .featured-summary .old-item .read-more a{
	text-decoration: none;
}

/* NEWS SEARCH */
#news-search{
	position: relative;
	margin: 0 0 25px;
	padding: 0;
}
#news-search.no-margin{
	margin: 0 0 25px;
}
#news-search input{
	position: relative;
	margin: 0;
    padding: 0 16px;
    height: 46px;
    line-height: 46px;
    width: 100%;
    color: #212121;
    border: 1px solid #d4d4d4;;
    outline: 0;
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
#news-search .btn {
    position: absolute;
    top: 9px;
    right: 0px;
    display: inline-block;
    margin: 0;
    padding: 0;
    height: 28px;
    line-height: 28px;
    color: #fff;
    background: transparent;
    width: 42px;
    border-left: 1px solid #E3E3E3;
    font-weight: 700;
}
#news-search .btn .fa {
    font-size: 17px;
    color: #525252;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}

/* ARTICLE LIST */
#blog .article-list,
#news .article-list{
	display: inline-block;
    margin: 0 0 25px;
    padding: 0;
    width: 100%;
    background: #fff;
}
#blog .article-list h3.article-title,
#news .article-list h3.article-title{
    margin: 0;
    padding: 0 0 12px;
    background: #fff;
	color: #212121;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #ededed;
    text-transform: capitalize;
    line-height: 1;
}
#blog .article-list ul,
#news .article-list ul{
    list-style: none; 
    margin: 0;
    padding: 0;
}
#blog .article-list ul li,
#news .article-list ul li{
    position: relative;
    margin: 0;
    padding: 10px 18px 10px 20px;
    text-indent: 0;
    text-transform: none;
    font-size: 14px;
    font-weight: 400;
	color: #212121;
    border-bottom: 1px solid #ededed;
    line-height: 1.3;
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#blog .article-list ul li:hover,
#news .article-list ul li:hover{
    color: #212121;
    text-decoration: underline;
}
#blog .article-list a,
#news .article-list a{
    color: #2a2a2a;
    text-decoration: none;
}
#blog .article-list .fa,
#news .article-list .fa{
    position: absolute;
    left: 4px;
    top: 8px;
    float: left;
    margin: 4px 8px 0 0;
    padding: 0;
    vertical-align: 0;
    font-size: 14px;   
    color: #DA521F;
}

/* CATEGORY LIST */
#blog .category-list,
#news .category-list{
    margin: 0 0 20px;
    padding: 0;    
}
#blog .category-list h3.category-title,
#news .category-list h3.category-title{
    margin: 0;
    padding: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}
#blog .category-list ul,
#news .category-list ul{
    list-style: none; 
    margin: 0;
    padding: 0;
}
#blog .category-list ul li,
#news .category-list ul li{
    margin: 0;
    padding: 2px 0;
    text-indent: 0;
    text-transform: none;
    font-size: 14px;
    font-weight: 400;
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#blog .category-list ul li:hover,
#news .category-list ul li:hover{
	text-decoration: underline;
}
#blog .category-list ul li a,
#news .category-list ul li a{
    color: #212121;
    text-decoration: none;
}
#blog .category-list ul li span,
#news .category-list ul li span{
    color: #DA521F;
}

/* -------------------------------- 

 7. WORKSHOPS

-------------------------------- */
#workshop-selection{
    margin: 0;
    padding: 0;
}
#workshop-selection .item{
    position: relative;
    margin: 0 0 25px;
    padding: 30px;
    min-height: 325px;
    color: #fff;
    background-color: #212121;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#workshop-selection .item .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.35);
    
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
#workshop-selection .item:hover .overlay{
    background: rgba(0,0,0,0.65);
}
#workshop-selection .item h2{
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    padding: 0;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    text-transform: none;
}
#workshop-selection .item p{
    position: relative;
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #fff;
}
#workshop-selection .item .learn-more{
    position: absolute;
    bottom: 25px;
    right: 25px;
    margin: 0;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #DA521F;
    
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
#workshop-selection .item .learn-more:hover{
    opacity: 0.75;
}
@media screen and (max-width: 992px){
    #workshop-selection .item{
        margin: 0 0 20px;
        padding: 15px;
        min-height: 200px;
    }
    #workshop-selection .item h2{
        font-size: 21px;
    }
    #workshop-selection .item .learn-more{
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 12px;
    }
}

/* BOOK THIS WORKSHOP */
#book-this-workshop{
    margin: 0 0 20px;
    padding: 0;
}
#book-this-workshop a{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 25px 0 25px 25px;
    width: 100%;
    background: #DA521F;
    text-align: left;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
#book-this-workshop a:hover{
    opacity: 0.75;
}
#book-this-workshop a span{
    display: block;
    font-size: 34px;
}
#book-this-workshop a:before{
	position: absolute;
	content: "\f073";
	font-family: 'FontAwesome';
	bottom: -50px;
	right: -22px;
	font-size: 80px;
	text-align: center;
	color: rgba(255,255,255,0.35);
    z-index: 0;
	
	height: 200px;
	width: 160px;
	line-height: 185px;
	text-align: center;
	
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	
	background: rgba(255,255,255,0.08);
}
@media screen and (max-width: 992px){
    #book-this-workshop{
        margin: 0 0 20px;
        padding: 0;
    }
    #book-this-workshop a{
        padding: 15px 0 15px 15px;
        font-size: 16px;
    }
    #book-this-workshop a span{
        display: block;
        font-size: 22px;
    }
    #book-this-workshop a:before{
        display: none;
    }
}

/* WORKSHOP VIDEOS */
#workshop-videos .video-container {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}
#workshop-videos .video-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* MORE WORKSHOPS */
#more-workshops{
    display: inline-block;
    margin: 10px 0 0;
    padding: 45px 0 0;
    width: 100%;
    border-top: 1px solid #ededed;
}
#more-workshops h3{
    display: inline-block;
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    font-size: 26px;
    font-weight: 600;
    text-transform: none;
}
#more-workshops h3 .fa{
    float: right;
    margin: 0;
    color: #a3a3a3;
}
#more-workshops .carousel-item{
    margin: 0;
    padding: 0;
    width: 100%;
}

/* SCROLL UP WE GO */
#scroll-top.up-we-go{
	display: none;
	position: fixed;
	right: 45px;
	bottom: 45px;
	z-index: 4;
}
#scroll-top.up-we-go .fa{
	width: 42px;
	height: 42px;
	line-height: 41px;
	font-size: 16px;
	background: rgba(0,0,0,0.65);
	text-align: center;
	color: #fff;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

	-webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	transition: all 0.25s;
}
#scroll-top.up-we-go .fa:hover{
	background: #DA521F;
}
@media screen and (max-width: 992px){
	#scroll-top.up-we-go{
		bottom: 25px;
        right: 25px;
	}
}

/* -------------------------------- 

 10. FOOTER

-------------------------------- */

/* FOOTER */
footer{
    margin: 75px 0 0;
    padding: 0;
    background: #fff;
}
footer a{
    color: #fff;
}
footer a:hover{
    color: #fff;
}

/* FEATURED SPONSORS */
#featured-sponsors{
	display: inline-block;
	margin: 0;
	padding: 10px 0;
	width: 100%;
	background: #DA521F;
	text-align: center;
}
#featured-sponsors h2{
	display: inline-block;
	margin: 25px 0 0;
	padding: 0;
	width: 100%;
	color: #fff;
	text-align: left;
	font-size: 29px;
	font-weight: 700;
    text-transform: uppercase;
}
#featured-sponsors .featured-carousel .item{
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 300px;
	height: 70px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
}
@media screen and (max-width: 1200px){
	#featured-sponsors h2{
		margin: 26px 0 0;
		font-size: 26px;
	}
}
@media screen and (max-width: 992px){
	#featured-sponsors h2{
		margin: 15px 0 20px;
		text-align: center;
		font-size: 24px;
	}
}

/* FOOTER WRAP */
footer #footer-wrap{
    margin: 0;
    padding: 65px 0 110px;
    background: #212121;
    color: #fff;
}
footer #footer-wrap h2{
    margin: 0 0 20px;
    padding: 0;
    font-size: 22px;
    text-transform: uppercase;
}
footer #footer-wrap p{
    margin: 0 0 6px;
    padding: 0;
    font-size: 15px;
    color: #fff;
}
footer #footer-wrap p .fa{
    margin: 0 8px 0 0;
}
footer #footer-wrap a{
	color: #fff;
}
footer #bottom-footer{
    margin: 0;
    padding: 25px 0;
    font-size: 13px;
    font-weight: 600;
    background: #1C1C1C;
    color: #6B6B6B;
    text-transform: uppercase;
}
footer #bottom-footer .developed-by{
    text-align: right;
}
footer #bottom-footer a{
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}
footer #bottom-footer a:hover{
    text-decoration: underline;
}
@media screen and (max-width: 992px){
    footer{
        text-align: center;
    }
    footer #footer-wrap .wrap{
        list-style: none;
        margin: 0 0 50px;
    }
    footer #footer-wrap h2{
		font-size: 20px;
	}
    footer #footer-wrap p{
        font-size: 14px;
    }
    footer #bottom-footer .copyright,
    footer #bottom-footer .developed-by{
        margin: 10px 0;
        text-align: center;
    }
}

/* ----------------------------------------

EXPAND TOGGLE

---------------------------------------- */
#have-more-questions{
	margin: 25px 0 15px;
	padding: 0;
}

.expand-wrap{
    position: relative;
    display: block;
    margin: 15px 0 0;
    padding: 0;
}
.expand-title{
    position: relative;
	display: inline-block;
	margin: 0;
    padding: 28px 45px 28px 25px;
    width: 100%;
	font-size: 22px; 
    font-weight: 600; 
    background: #f5f5f5; 
    color: #212121; 
    cursor: pointer; 
    line-height: 1;
}
.expand-title:before{
	position: absolute;
	content: "\f067";
	right: 25px;
	margin-top: 4px;
	padding: 0 6px;
	width: 20px;
	font-family: FontAwesome;
	font-size: 18px;
	font-weight: 700;
}
.expand-title.expand-open{
	background: #f5f5f5;
}
.expand-title.expand-open:before{
	position: absolute;
	content: "\f00d";
	right: 25px;
	margin-top: 4px;
	padding: 0 6px;
	width: 20px;
	font-family: FontAwesome;
	font-size: 18px;
	font-weight: 700;
}
.expand-content{
    position: relative;
	display: inline-block;
    padding: 0 25px 15px; 
    width: 100%; 
    vertical-align: top;
    background: #f5f5f5;
}
@media screen and (max-width: 992px){
	.expand-title{
		padding: 22px 45px 22px 22px;
		font-size: 18px;
	}
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes toRightFromLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toRightFromLeft {
    49% {
        -moz-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}