/*-------------------------------------------------------------------------------------
Theme Name: Alex Zane
Theme URI:  http://themes.madsparrow.xyz/alex_zane/index.html
Version:    1.0
Author:     madsparrow
-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------
[TABLE OF CONTENTS]

    01. GENERAL
    02. BUTTON
    03. HEADER
    04. MOBILE MENU NAVIGATION
    05. PARALLAX
    06. HOME PAGE
    07. GALLERY AND BLOG ITEM
    08. BLOG POST PAGE
    09. SOCIAL ICONS
    10. FORMS
    11. FOOTER
    12. RESPONSIVE
    
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    text: #666
    hover: #ef4138
    
-------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*  01. GENERAL
/*-----------------------------------------------------------------------------------*/
/*Scroll*/
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-button {
	width: 8px;
	height:5px;
}
::-webkit-scrollbar-track {
	background:#eee;
	border: thin solid lightgray;
	box-shadow: 0px 0px 3px #dfdfdf inset;
	border-radius:10px;
}
::-webkit-scrollbar-thumb {
	background:#999;
	border: thin solid gray;
	border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
	background:#7d7d7d;
}			



body {
    font-family: 'Rajdhani', sans-serif;
    color: #666;
    letter-spacing: .1rem;
    opacity: 0;
}
h1,
h2,
h3,
h4 {
    font-weight: 900;
    text-transform: uppercase;
}
h1 {
    font-size: 6rem;
}
h2 {
    font-size: 3rem;
}
h3 {
	font-size: 2.3rem;
	margin-top: 7px;
}
p {
	font-weight: 400;
	line-height: 1.8;
	font-size: 15px;
	text-align:justify;

}
a {
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
a:visited,
a:active,
a:link {
    text-decoration: none;
}
ul {
    list-style: none;
}
blockquote {
    padding: 0.75rem 1.25rem;
    color: #777;
    font-weight: 200;
    margin: 0 0 2rem;
    font-size: 1.8rem;
    border-left: .3rem solid #eee;
}
.fa{
    margin:0 .5rem;
}
.fa-heart{
    color: #666;
    margin-right: .5rem;
    -webkit-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
}
.fa-heart:hover{
    color: #ef4138;
}
.container {
    width: 100%;
    padding: 0;
}
.content{
	background-color: #FFF;
   
    min-height: 100%;
}
.darker{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
}
.tag{
    border-top: solid 1px #eee;
    padding: 1rem 0;
    margin-top: 5rem;
}
.tag a:hover{
    color: #666;
}
/*-----------------------------------------------------------------------------------*/
/*  02. BUTTON
/*-----------------------------------------------------------------------------------*/
.btn {
    padding: 6px 4px;
    position: relative;
    border:none;
    opacity: 0;
    z-index: 1;
    background: none;
    border: none;
    border-radius: 5rem !important;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    
}

.btn > span {
    padding-left: .8em;
}
.btn::before,
.btn::after {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
            transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
            transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn::before {
    border: .2rem solid #fff;
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
}
.btn::after {
    background: #ef4138;
}
.btn:hover {
    color: #fff;
}
.btn:hover::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
}
.btn:hover::after {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
            transform: scale3d(0.8, 0.8, 1);
}
/*Load more*/
.load-more {
    text-align: center;
    width: 100%;
    display: inline-block;
    padding-top: 5rem;
}
/* Top buttone */
.back-top {
    display: inline-block;
    height: 4rem;
    width: 4rem !important;
    position: fixed;
    bottom: 5rem;
    right: 4rem;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    padding: .5rem 0 0 0;
    text-align: center;
    border-radius: 4rem;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
       -moz-transition: opacity .3s 0s, visibility 0s .3s;
         -o-transition: opacity .3s 0s, visibility 0s .3s;
            transition: opacity .3s 0s, visibility 0s .3s;
}
.back-top.back-top-is-visible,
.back-top.back-top-fade-out,
.no-touch .back-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
       -moz-transition: opacity .3s 0s, visibility 0s 0s;
            transition: opacity .3s 0s, visibility 0s 0s;
}
.back-top.back-top-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.back-top.back-top-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.back-top:hover {
    opacity: 1;
}
button {
    width: 17rem;
}
/*.pager a{
    min-width: 13rem;
    padding: 1rem 2rem !important;
}*/
.pager li > a:hover,
.pager li > a:focus{
    background: transparent;
    border: none;
}
.like{
    text-align: center;
    color: #aaa;
}
.like i{
font-size: 3.4rem;
vertical-align: middle;
cursor: pointer;
color: #aaa;
}
/*-----------------------------------------------------------------------------------*/
/*  03. NAVIGATION
/*-----------------------------------------------------------------------------------*/
/*Nav*/
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: right;
	font-size:14px;
	z-index:5;
}
nav ul li {
    display: inline-block;
    text-align: left;
    margin-left: 2em;
}
nav a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    padding: .7em 0 .7em 0;
    color: #fff;
    text-shadow: 0 .1rem .1rem rgba(0, 0, 0, 0.5);
}
nav a:hover {
	color: #ffe900;
	text-shadow: 0px 0px 1px #999;
}
/* Hide Dropdowns by Default */
nav ul ul {
    z-index: 4;
    position: absolute;
    margin-left: -2em;
    display: none;
    text-align: center;
}
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}
/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 18rem;
    float: none;
    display: list-item;
    position: relative;
    background: #fff;
    border-bottom: solid .1rem rgba(255, 255, 255, .1);
}
nav ul ul li:last-child {
    border-bottom: none;
}
nav ul ul li a {
    font-size: 14px;
    color: #666 !important;
    text-shadow: none;
    padding-left: 2rem;
}
nav ul ul li a:hover {
	color: #FFFFFF !important;
	background-color: #33ABB7;
}
/* Second, Third and more Tiers */
nav ul ul ul li {
    top: -4.5rem;
    left: 11.5rem;
}
.header {
    position: relative;
    height: 92px;
    width: 100%;
    color: #fff;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
#logo{
    display: inline-block;
}
#logo img {
	box-shadow: none;
	width: 227px;
	margin: 7px 0 -13px 0;
}
.btm {
	padding: 0;
	float: right;
	font-size: 15px;
}

.btm p {
	float: left;
	margin-top: 5px;
}

.btm a {
	float: right;
	margin: 0 5px 0 5px;
}


/* Wrapper */
.icon-button {
	background-color: white;
	border-radius: 3.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 2.0rem;
	height: 3.6rem;
	line-height: 3.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 3.6rem;
	vertical-align:middle;
}

/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 3.6rem;
	margin: -1.8rem;
}
.twitter span {
	background-color: #4099ff;
}
.facebook span {
	background-color: #3B5998;
}
.google-plus span {
	background-color: #db5a3c;
}

/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 3.6rem;
	left: 0;
	line-height: 3.6rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 3.6rem;
	z-index: 10;
}
.icon-button .icon-twitter {
	color: #4099ff;
}
.icon-button .icon-facebook {
	color: #3B5998;
}
.icon-button .icon-google-plus {
	color: #db5a3c;
}
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus {
	color: white;
}



#menu{
	display: inline-block;
	float: right;
	width: 100%
}
.main-menu {
	max-width:1200px;
	margin: 11px auto;
}
/*Fixed header class*/
.fixed {
	position: fixed;
	height: auto;
	left: 0;
	right: 0px;
	z-index: 25;
	color: #fff !important;
	background: rgb(51, 171, 183);
}
.menu-active {
	color: #FFFFFF;
}
/*-----------------------------------------------------------------------------------*/
/*  4. MOBILE MENU NAVIGATION
/*-----------------------------------------------------------------------------------*/
.mobile-menu{
    cursor: pointer;
    color: #fff;
}
.mobile-menu-overlay{
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 5;
	text-align: right;
	background: #33ABB7;
	overflow: auto;
	padding: 2.4rem 2.6rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}
.mobile-menu-content{
    position: absolute;
    right: 2.6rem;
    top: 10rem;
    overflow-y: auto; 
}
.mobile-menu-item a{
	font-size: 2em;
	text-transform: uppercase;
	color: #fff;
}
.mobile-submenu{
    display: none;
}
.mobile-submenu a{
	font-size: 1.2rem;
	opacity: .8;
}
.visible{
    opacity: 1;
    visibility: visible;
}
/*-----------------------------------------------------------------------------------*/
/*  05. PARALLAX
/*-----------------------------------------------------------------------------------*/
.parallax {
    background-image: url(../images/parallax2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    position: fixed;
    min-height: 35rem;
    padding-top: 6.5rem;
    width: 100%;
    top: 0;
    left: 0;
}
.item-category {
    text-align: center;
    z-index: 1;
    opacity: 1;
    display: inline-block;
    width: 100%;
    margin: 1rem 0 0 0;
}

/*Border bottom parallax*/
/*-----------------------------------------------------------------------------------*/
/*  05. Banner
/*-----------------------------------------------------------------------------------*/
.banner {
	background-image: url(../images/home/about.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	min-height: 465px;
	width: 100%;
	top: 0;
	left: 0;
}
.banner1 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	min-height: 465px;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #f0ede5;
}
.bnrmap{ height:465px;
}


/*Banner*/

.item-category .border div {
	height: 22px;
	bottom: 0px;
	left: 0px;
	top: auto;
	background: url(../images/border1.svg) repeat-x 100% 100%;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/*-----------------------------------------------------------------------------------*/
/*  06. HOME PAGE
/*-----------------------------------------------------------------------------------*/
/*Home page border*/
.border div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
}
.border .frames div {
    position: absolute;
    width: 100%;
    height: 2rem;
    top: 0;
    background: url(../images/border1.svg) 50% 65%
}
.border .frames div:nth-child(3) {
    bottom: 0;
    top: auto;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .frames div:nth-child(4) {
    right: 0;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .frames div:nth-child(2),
.border .frames div:nth-child(4) {
    width: 2rem;
    height: 100%;
    background: url(../images/border-vert.svg) 65% 50%;
}
.border .corners div::before,
.border .corners div::after {
    content: "";
    background: url("../images/corner.svg") no-repeat center center;
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 1rem;
    top: 1.1rem;
}
.border .corners div:nth-child(1)::after {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    left: auto;
    right: 1rem;
    top: 1.1rem;
}
.border .corners div:nth-child(2)::before {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 1.1rem;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.border .corners div:nth-child(2)::after {
    top: auto;
    bottom: 1.1rem;
    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
         -o-transform: rotate(270deg);
            transform: rotate(270deg);
}
.section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    width:0%;
    min-height: 80%;
    color: #fff;
    animation-delay: .9s;
}
/*Images home page version 1*/
#section1 {
    background-image: url(../images/home/img2.jpg);
}
#section2 {
    background-image: url(../images/home/img1.jpg);
}
#section3 {
    background-image: url(../images/home/img3.jpg);
}
#section4 {
    background-image: url(../images/home/img4.jpg);
}
#section5 {
    background-image: url(../images/home/img5.jpg);
}

/*Images home page version 2*/
#section1-v2{
    background-image: url(../images/home/blur-img2.jpg);
}
#section2-v2 {
    background-image: url(../images/home/blur-img1.jpg);
}
#section3-v2 {
    background-image: url(../images/home/blur-img3.jpg);
}
#section4-v2 {
    background-image: url(../images/home/blur-img4.jpg);
}
.cover-titles {
    position: relative;
    margin-top: 5rem;
    width: 100%;
    padding: 0;
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(.2,.1,.3,1.0);
    -webkit-transition-delay: .2s;
            transition: all 1s cubic-bezier(.2,.1,.3,1.0);
            transition-delay: .2s;
}
.cover-titless{
    opacity: 1;
    max-width: 55%;
    Margin:0 auto;
	margin-top:25%
}
.cover-titles a{
    margin-left: .0rem;
}
.section .darker{
    background: #111;
    opacity: 1;
    -webkit-transition: all .8s ease;
       -moz-transition: all .8s ease;
        -ms-transition: all .8s ease;
         -o-transition: all .8s ease;
            transition: all .8s ease;
}
.active.section .darker{
    opacity: .1;
}
.darker.medium{
    background-image: none;
    opacity: 1;
}
.active.section .darker.medium{
    opacity: .3;
    background-image: url(../images/dark-denim-3.png);
}
.active .cover-titles{
    opacity: 1;
    max-width: 120rem;
    padding: 0 6.5rem 0 6.5rem;
}
.active .cover-titless{
    opacity: 1;
    max-width: 55%;
    Margin:0 auto;
	margin-top:16%
}
 .align-left p:first-child {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 0 9rem;
    width: 15rem;
    text-align: right;
    border-bottom: solid .2rem #ef4138;
}
.align-left p:after{
    width: 100%;
    height: 2rem;
}
.align-left p {
    max-width: 50rem;
    padding: .8rem;
    margin: 0 0 2rem 0;
    text-shadow: -2px 2px 1px #000;
	font-size:16px;
	font-weight:400;
}
.align-left .title {
	font-size: 7em;
	margin: 0;
	width: 100%;

    letter-spacing: -.5rem;
	overflow: hidden;

    -webkit-text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
            text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
}
.align-left .title h1 {
    margin: 0;
    position: relative;
    font-size: 13.6rem;
}
.align-right p:first-child {
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 0;
    margin: 0 0 0 9rem;
    width: 15rem;
    float: right;
    opacity: 1;
    text-align: right;
    border-bottom: solid .2rem #ef4138;
}
.align-right p {
    opacity: 0;
    float: right;
    text-align: right;
    margin: 0 0 2rem 0;
    -webkit-transition: all ease .7s;
    -webkit-transition-delay: .5s;
       -moz-transition: all ease .7s;
       -moz-transition-delay: .5s;
        -ms-transition: all ease .7s;
        -ms-transition-delay: .5s;
         -o-transition: all ease .7s;
         -o-transition-delay: .5s;
            transition: all ease .7s;
            transition-delay: .5s; 
}
.align-right .title {
    display: inline-block;
    margin: 0;
    width: 100%;
    text-align: right;
    float: right;
    -webkit-text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
            text-shadow: 0 .3rem .9rem rgba(0, 0, 0, 0.4);
}
.cover-titles-2{
    max-width: 120rem;
    margin: 0 auto;
}
.cover-titles-2,
.right-block,
.left-block{
    opacity: 0;
    -webkit-transition: all ease-in-out .7s;
       -moz-transition: all ease-in-out .7s;
        -ms-transition: all ease-in-out .7s;
         -o-transition: all ease-in-out .7s;
            transition: all ease-in-out .7s; 
}
.right-block{
    float: right;
}
.right-block img{
    width: 100%;
    border:solid 1px rgba(255,255,255,1);
}
.active .cover-titles-2{
    opacity: 1;
    padding: 7rem 7rem;
}

.active .left-block,
.active .right-block,
.active .align-right p{
    opacity: 1;
}
.enter-category{
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 3%;
}
/*-----------------------------------------------------------------------------------*/
/*  07. GALLERY AND BLOG ITEM
/*-----------------------------------------------------------------------------------*/
	




/*Grid style*/
.head {
	margin: 0 auto;
	padding: 2rem;
	max-width: 1200px;
	height: 15px;
	
}
.span {
	margin: 20px 0 0 0;
	max-width: 1200px;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	color: rgb(51, 171, 183);
}


/*Side Services*/
.left_sidebar {
	float: right;
	width: 25%;
	margin-top:16px;
	
}
.sidebar_widget {
	float: left;
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.sidebar_widget ul.arrows_list1{
	padding: 0px;
	margin: 0px;
	float: left;
	margin-top: 0px;
	width:100%;
	font-size:16px;
	
}


.sidebar_widget ul.arrows_list1 li  {
	line-height: 35px;
	border-bottom: #CCCCCC solid 1px;
	
}

.sidebar_widget ul.arrows_list1 li:hover  {
	color: #000;
	line-height: 30px;
	/*border-bottom: #CCCCCC solid 1px;*/
	background-color: #40b0bb;
}



.sidebar_widget ul.arrows_list1 li a {
	color: #f55507;
	line-height: 30px;
	margin-left: 8px;
	padding:5px 0;
	display:block;
	
}
.sidebar_widget ul.arrows_list1 li a:hover {
	color: #ffffff;	
}
.sidebar_widget ul.arrows_list1 i {
	margin-right: 4px;
}
.sidebar_title {
	float: left;
	width: 100%;
}
.sidebar_widget h3, .clientsays_widget h3 {
	margin-bottom: 30px;
	float: left;
}
.sidebar_widget h3 i, .clientsays_widget h3 i {
	font-weight: 600;
	font-style: normal;
}

.sidebar_title {
	float: left;
	width: 100%;
}
.sidebar_widget h3, .clientsays_widget h3 {
	margin-bottom: 30px;
	float: left;
}

/*Side Services*/


/*testimonial*/
 .row-testi {
	margin: 0 auto;
	padding: 0rem 0;
	max-width: 1200px;
}

.row-testi h2{
	font:3rem;
	text-align:center;
	color: #FFF;
}

.row-testi img{
			width:75px;
 			height:75px;
			border-radius:40px;
			background:#F00;
			overflow:hidden;
			margin:0 auto; 
			margin-bottom:25px;
	}
	.row-testi p{
		font-size:15px;
		font-weight:400;
		text-align:center;
		color: #FFF;
		padding:0 35px;
		
	}
	.testi-bg {
		background:url(../img/testimonial-bg.png);
 			padding:20px 0;
			background-color:#585858;
 			 }
			 
	.row-testi span{
		
			background:#f2cb14;
 					color:#000000; 
					padding:10px;
					}



/*** TestimonialS - Free Weebly Widget by Baamboo Studio - Style 4***/
@import "bourbon";
 




.author{
  a{
    text-decoration:none;
    
  }
  
}

	
.row {
	margin: 0 auto;
	padding: 0 2rem;
	max-width: 1200px;
}
.row div{
	/*margin:0 auto;*/

}
.row a {
    color: rgba(119,119,121, .5);
}


.masonry img {
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.grid-item {
    margin-top: 3rem;
    cursor: pointer;
}
.grid-item figcaption {
    display: none;
}
/*Blog style*/
.blog-item {
    margin-bottom: 6rem;
}
.blog-item.timeline:nth-child(2) {
    margin-top: 31rem;
}
.blog-item a {
    color: #ef4138;
}
.blog-description {
    height: 26.4rem;
}
.post-info {
    min-height: 30rem;
    padding-bottom: 1rem;
    overflow: hidden;
    opacity: 0;
    animation-delay: .1s !important;
    border-bottom: solid 1px #eee;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.post-info h3{
    margin-top: 0;
}
.date {
    position: relative;
    font-size: 6em;
    font-weight: 900;
    text-align: left;
    opacity: .6;
    margin-top: 1rem;
}
.date span {
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    bottom: 2.6rem;
    left: 10rem;
    width: 3rem;
}
.post-info .text-left{
    padding: 0
}
/*Hover item*/
.grid-item:hover,
.blog-item:hover{
    z-index: 3;
}
.grid-item:hover img,
.blog-item:hover img {
    -webkit-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
       -moz-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
            box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
}
.text-right i{
    margin-right: -4.6rem;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.timeline .text-right i{
    margin-right: -3.2rem;
}
.blog-item:hover .text-right i{
    margin-right: -2.5rem;
}
.timeline:hover .text-right i{
    margin-right: -1rem;
}
.blog-item:hover .post-info{
    border-color: #ef4138;
}
/*-----------------------------------------------------------------------------------*/
/*  08. BLOG POST PAGE
/*-----------------------------------------------------------------------------------*/
.blog-post-meta{
    color: #ef4138;
}
.caption {
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem;
    font-style: italic;
    margin: 1.5rem;
    display: block;
}
.post-comments .comments-title {
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: solid .1rem #eee;
}
.post-comments .user-avatar {
    max-width: 7rem;
    float: left;
}
.post-comments .comment-content {
    margin-left: 10rem;
}
.post-comments .comment-meta{
    font-size: 1.2rem;
}
.comment-meta span:first-child{
    margin-left: 0;
}
.comment-meta span{
    margin-left: 1rem;
    margin-right: 1rem;
}
.comment-list li{
    margin-bottom: 5rem;
}
.comment-list ul{
    margin-top: 5rem;
    margin-left: 10rem;
}
ul.comment-list{
    padding-left: 0;
}
.user-avatar{
    width: 7rem;
}
.post-comments .comment-meta a{
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #ef4138;
}
.post-comments .name{
    margin-bottom: 1rem;
}
.comment-form textarea{
    min-height: 20rem;
}
.post-comment-respond .comment-form .column{
    float: left;
}
.post-author, 
.post-comments,
.post-comment-respond{
    border-color: #eee;
}
.post-comment-respond .reply-title {
    margin-bottom: 3rem;
}

.column > *:first-child {
    margin-top: 0;
}

.pagination-3 ul {
    border-top: 1 solid #eee;
}

.pagination-3 li:first-child {
    float: left;
}
.pagination-3 ul li {
    display: inline-block;
}
.pagination-3 li {
    margin-top: -.1rem;
    margin-left: -0.4rem;
}
/*-----------------------------------------------------------------------------------*/
/*  09. SOCIAL ICONS
/*-----------------------------------------------------------------------------------*/
/*socials links*/








/*-----------------------------------------------------------------------------------*/
/*  10. FORMS
/*-----------------------------------------------------------------------------------*/






.container-r {
	
	width:100%;
	position:relative;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:#F9F9F9;
	
}

#contact h3 {
	color: #F96;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 20px 0 !important;
	min-width: 100%;
	padding: 0 !important;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#0CF;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}



	
.container-r .heading{
	color: #FFFFFF;
	font-family: Calibri;
	font-size: 33px;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	margin: 0px;
	padding: 0px;
	float: left;
	height: auto;
	width: 98%;
	line-height: 70px;
}
.container-r .form{
	text-align: center;
	height: auto;
	width: 98%;
	padding: 0px;
	float: left;
	margin-right: 0px;
	margin-bottom: 90px;
	margin-left: 0px;
	font-size: 16px;
	font-family: Calibri;
	font-weight: bold;
	color: #666666;
	text-decoration: none;
}
.container-r .form input{
	margin: 15px 0 0;
	padding: 0 0  0px 8px;
	height: 36px;
	width: 100%;
	background-color: #ffffff;
	border-radius: 7px;
	border: 1px solid;
	border-color:#c1c1c1;
}
.container-r .form select{
	margin: 15px 0 0;
	padding: 0 0  0px 8px;
	height: 36px;
	width: 100%;
	background-color: #ffffff;
	border-radius: 7px;
	border: 1px solid;
	border-color:#c1c1c1;
	
}.container-r .form .submit{
	margin: 25px 0 0;
	padding: 0 0  0px;
	height: 40px;
	width: 100%;
	text-align: center;
	background-color: #ff5400;
	border-radius: 7px;
	text-transform: uppercase;
	border: none;
	font-size: 18px;
	color: #FFFFFF;
}


/*-----------------------------------------------------------------------------------*/
/*  11. Clients Logo
/*-----------------------------------------------------------------------------------*/
.clients_logo{
	width:72%;
	float:left;
}

.clients_logo ul{
	float:left;
	padding:5px 0 0 0;
		}
	
.clients_logo img{
		width: auto;
	margin: 0 7px 12px 0;
}

#slider {
	list-style: none;
	padding: 0px;
	margin:0 auto;
	width:1020px;
}

.slider-container {
	background: #EEEEEE;
	
	
}

	
#slider img {
	width: 170px;
	height: 80px;
	margin-right: 80px;
	display: inline-block;
}






/*-----------------------------------------------------------------------------------*/
/*  11. FOOTER
/*-----------------------------------------------------------------------------------*/

.footer {
	width: 100%;
	z-index: 2;
	background-color: #3C5671;
	color: #FFF;
	float:left;
}
.box {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	height: 300px;
}
.box1 {
	
	width: 24%;
	margin-right: 3%;
	float:left;
	text-align:justify;
}

.box2 {
	
	width: 20%;
	margin-right: 3%;
	float:left;
}

.box3 {
	
	width: 16%;
	margin-right: 3%;
	float:left;
}

.box4 {
	
	width: 27%;
	margin-right: 1%;
	float:left;
}

.footerbase {
	padding: 10px 0;
	background-color:#48627d;
	text-align:center;
	float:left;
	width:100%
	
}
.footerbase p{
	
	text-align:center;
	margin:0;
	color:white;
	
	}


@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://fonts.gstatic.com/s/materialicons/v13/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format('woff2');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
p.text{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	}

.home-div{
		display: none;
	
}

/*-----------------------------------------------------------------------------------*/
/* Service Tab*/
/*-----------------------------------------------------------------------------------*/


.service-div{
	height: auto;
	display: block;
	padding-top: 22px;
	position:relative;
}


.event_box{
	padding: 42px;
	width: 23%;
	margin: 0 5px 5px 0;
	border:1px solid #fff;
	position:relative;
	float: left;
	text-align: center;
	color: white;
	font-size: 19px;
	}	
	.blue{ background-color:rgb(0, 149, 255);}
	.yellow{background:#e69a16;}
	.green{background:#748c2b;}							
	.darkblue{background:#2b5d75;}
	.red{background:#e63500;}
	.brown{background:#654d36;}
	.greenlight{background:#258b6f;}
	.bluelight{background:#3581ba;}
	
	
	.eventoverlay{
		width:100%;
		height:auto;
		background: rgb(51, 171, 183);
		position:absolute;
		top:0;
		bottom:0px;
		padding-top: 24px !important;
		display:none;
		left: 0;
	
	}
	
.event_box:hover .eventoverlay {
				display:block;
					cursor:text;}





/* Home Tab*/


/*-----------------------------------------------------------------------------------*/
/*  12. RESPONSIVE
/*-----------------------------------------------------------------------------------*/
@media (max-width: 1380px) {

.banner {
	min-height: 345px;
}	
	.border div{
	height: 100%;
	}
	.active .cover-titless{
		margin-top:15em;
		}
		.main-menu {
	padding: 0 2rem;
	
}

	#menu{
	display: inline-block;
	float: right;
	margin: 0px 0 0 0;
}
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: right;
	}

}
@media (max-width: 1080px) {
#logo img {
	box-shadow: none;
	width: 220px;
	margin: 7px 0 -13px 0;
}
   
    
	
	.banner{ min-height:300px;}
	
	.banner1{ min-height:400px;
		}
		.bnrmap{ height:400px;
}
		
    .blog-item.timeline:nth-child(2) {
        margin-top: 33%;
    }
    .align-left .title {
        font-size: 86;
    }
    .align-right .title {
        font-size: 4.5rem;
        width: auto;
        text-align: right;
    }
    .active .cover-titles-2{
        padding: 4rem 8.5rem;
    }
    .active .right-block{
        padding: 0;
        opacity: 1;
    }
	

#menu{
	
	margin: 0px 6px 0 0;
}
.border div{
	height: 100%;
}
nav ul li {
    display: inline-block;
    text-align: left;
    margin-left: 20px;
}
.active .cover-titless{
    opacity: 1;
    max-width: 83%;
    Margin:0 auto;
	margin-top:24em;
}

.bx-wrapper,.bx-window{
	width:98% !important;
}

#slider {
	width:96%;
}


}
@media (max-width: 960px) {



.icon-button {

	font-size: 20px;
	height: 3.2rem;
	line-height: 3.6rem;
	margin: 0 5px;


	width: 3.2rem;
	
}
	nav ul li {
    display: inline-block;
    text-align: left;
    margin-left: 12px;
}

nav ul {
   font-size: 13px;
}

}
@media (max-width: 760px) {
    
	.left_sidebar{
		display:none;}
	
	.banner{ min-height:300px;
		}
		.banner1{ min-height:300px;
		}
		.bnrmap{ height:300px;
}
		
	
	.row{
        max-width: 100%;
       /* padding: 30px 0;*/
       /* margin: 0 15px;*/
    }
    .content{
        background-image: none;
        background-color: #fcfcfc;
    }
    .section{
        opacity: 1;
    }
    .header{
        height: auto;
    }
/*    .main-menu {
        padding: 0 3rem;
        margin: 1.5rem auto;
    }*/
    .border .frames div {
        height: 15px;
    }
    .border .frames div:nth-child(2),
    .border .frames div:nth-child(4) {
        width: 15px;
    }
    .border .corners div::before,
    .border .corners div::after {
        display: none;
    }
    .item-category{
        padding: 0 1rem;
        margin: 0 0px;
    }
    .item-category h1{
        font-size: 3rem !important;
    }
    .section{
        opacity: 1;
    }
    .active .cover-titles{
        padding: 0;
    }
    .blog-item:nth-child(2),
    .blog-item.timeline:nth-child(2) {
        margin-top: 0;
    }
    .left-block{
        margin: 2rem 0 0;
    }
    .align-left p:first-child{
        margin: 0 auto;
        padding-bottom: 0;
        text-align: center;
    }
    .align-left .title {
        font-size: 5rem;
        letter-spacing: 0;
        text-align: center;
    }
    .align-right .title{
        float: none;
        width: 100%;
        text-align: center;
    }
    .align-left p{
        margin: 0 auto 1.2rem auto;
        text-align: center;
        float: none;
        padding: 0;
    }
    .cover-titles{
        text-align: center;
    }
    .cover-titles{
    padding: 0 5%;
    }
    .cover-titles-text {
        margin: 0 auto;
    }
    .post-info {
        min-height: 25rem;
    }
    .date {
        position: relative;
        font-size: 4em;
        font-weight: 900;
        text-align: left;
        opacity: .8;
    }
    .date span {
        font-size: 1.2rem;
        font-weight: 400;
        left: 7rem;
        position: absolute;
        bottom: 1.6rem;
        width: 3rem;
    }
    .date span i{
        display: none;
    }
    .post-comments .user-avatar {
        width: 3.5em;
        margin-right: 1rem;
    }
    .post-comments .comment-content {
        margin-left: 0;
    }
    .comment-list ul {
        margin: 0;
    }
    .comment-list div p{
        margin-top: 2rem;
    }
    .contact_form h3,
    .contact_form p {
        text-align: left;
    }
    .grid-item:hover img,
    .blog-item:hover img {
    -webkit-box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
    }
    .blog-item {
        margin-bottom: 3rem;
    }
    .back-top {
        right: 3rem;
        box-shadow: 0 .1rem .3rem rgba(0,0,0,.7);
    }
    .text-right i, .timeline .text-right i {
        margin-right: -1.2rem;
    }
	
/*	#logo{
    display: inherit;
	text-align:center;
}*/
#logo img {
	width: 220px;
	margin:0;
	
}

/*.btm{
	text-align:center;
	float:none;
	margin-top:35px;
}*/
.btm span{ display: none; !important;
}

.btm p {
	display:none;
}

.icon-button {
	background-color: white;
	border-radius: 3.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 25px;
	height: 4rem;
	line-height: 3.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 4rem;
	vertical-align:middle;
}
.icon-button i {
	
	line-height: 4rem;
	
	width: 4rem;
	z-index: 10;
}
.mobile-menu-overlay{
	width: 100%;
	z-index: 30;
}
#menu{
	font-size:12px;
}
.active .cover-titless{
    opacity: 1;
    
    Margin:0 auto;
	margin-top:3em
}
.active.section .darker{
    opacity: .3;
}
#slider li {
	width: 210px !important;
}
.box1,.box2, .box3 , .box4 {
	width:47%;
	
}
.box3 , .box4 {
border-top: rgb(93, 120, 148) 1px solid;
margin-top: 15px;
padding-top:15px;
width: 47%;
}
.box3 {
	clear:left;
}
	
#slider img {
	width: 120px;
	height: 56px;
	margin-right: 20px;
}
.clients img{
    box-shadow: none;
    position:relative;
    width: 10rem;
    margin:1rem 1rem 1rem 1rem;
    opacity: 1;
}
.clients_logo{
	width:100%;
}
}

@media (max-width: 650px){
    
	
	.row-testi h2 {
    font: 18px;
   }
	.banner{ min-height:250px;
	background-image: url(../images/home/about_mob.jpg);
		}
		.banner1{ min-height:250px;}
		.bnrmap{ height:250px;
}
		.active .cover-titles-2{
        margin: 2rem 0 0;
        padding: 0 3rem;
    }
    .align-left .title,
    .align-right .title {
        font-size: 8vw;
        letter-spacing: 0;
        text-align: center;
    }
    .align-right p:first-child{
        display: none;
    }
    .align-right p{
        margin: 0 auto 1.2rem auto;
        text-align: center;
        float: none;
    }
	#logo img {
	width: 220px;
	}
/*	#logo img {
	box-shadow: none;
	width: 200px;
	margin: -16px 0 -14px 0;
}
	.btm{
	text-align:center;
	float:none;
	margin-top:25px;
}*/
.btm span{ display: none; !important;
}
.icon-button {
	background-color: white;
	border-radius: 3.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	height: 3rem;
	line-height: 3.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 3rem;
	vertical-align:middle;
}
.icon-button i {
	
	line-height: 3rem;
	
	width: 3rem;
	z-index: 10;
}
.mobile-menu-overlay{
	width: 100%;
	z-index: 30;
}
/*#menu{
	display: inline-block;
	float: right;
	margin: -79px 24px 0 0;
}*/
.active .cover-titless{
    opacity: 1;
    max-width: 60%;
    Margin:0 auto;
	margin-top:3em
}



.align-left p {
    max-width: 86%;
    padding: .8rem;
	font-size:14px;
   
    text-shadow: 0 .1rem .1rem rgba(0, 0, 0, 1);
}

/* Home Tab*/
/* Home Tab*/
.home-div{
	height: auto;
	display: block;
	padding-top: 22px;
	position:relative;
}
.event{
	text-align:center;
	color: #fff;
	font-size: 20px;
	background-color: #33abb7;
	margin-bottom: 8px;
	padding: 10px;
	}
	
	
.event:hover {
	background-image: url(../images/home/mobile/img1.jpg);
                z-index:2;
                height:100%;
                padding:5%;
                transition:background .4s;
				text-shadow:-3px 3px 4px #000;
				box-shadow:0px 0px 7px #000;               
                }



.prom{
	text-align:center;
	color: #fff;
	font-size: 20px;
	background-color: #33abb7;
	margin-bottom: 8px;
	padding: 10px;
	}
	
	
.prom:hover {
	background-image: url(../images/home/mobile/img2.jpg);
                z-index:2;
                height:100%;
                padding:5%;
                transition:background .4s; 
				text-shadow:-3px 3px 4px #000;
				box-shadow:0px 0px 7px #000;                  
                }
.prod{
	text-align:center;
	color: #fff;
	font-size: 20px;
	background-color: #33abb7;
	margin-bottom: 8px;
	padding: 10px;
	
	}
	
	
.prod:hover {
	background-image: url(../images/home/mobile/img3.jpg);
                z-index:2;
                height:100%;
                padding:5%;
                transition:background .4s;   
				text-shadow:-3px 3px 4px #000; 
				box-shadow:0px 0px 7px #000;              
                }

.exhi{
	text-align:center;
	color: #fff;
	font-size: 20px;
	background-color: #33abb7;
	margin-bottom: 8px;
	padding: 10px;
	}
	
	
.exhi:hover {
	background-image: url(../images/home/mobile/img4.jpg);
                z-index:2;
                height:100%;
                padding:5%;
                transition:background .4s;    
				text-shadow:-3px 3px 4px #000;
				box-shadow:0px 0px 7px #000;               
                }

/* Home Tab*/

}

@media (max-width: 500px){
	.span{font-size:20px;
	}
	p{
		font-size:15px;
	}
	.testamonials .faces .face{
		margin-right:6px;
		width:60px;
		height:60px;
		margin-bottom:12px;
		}
.testamonials .faces{
	margin:30px auto 17px auto;
	}
	.testi{
		padding:5px;
		margin-top:22px;
		}
		.testamonials .testamonial p{
			font-size:13px;
			line-height:23px;}
			.testamonials .testamonial .author a{
				font-size:13px;}
				
				.head{
					padding:1.2rem;}
					.row{
						padding:0 1.2rem;}
.box1,.box2, .box3 , .box4 {
	width:100%;
	
}.box2{border-top: rgb(93, 120, 148) 1px solid;
margin-top: 15px;
padding-top: 15px;}

.box {
  height:830px;
  padding:0 1.2rem;
}
#logo {
	text-align:center;
	display:inherit;
    
}
.btm{
	
    float: left;
       margin: 9px 0px 0 0px;
    width: 76%;
    
}

#menu {
	margin:-20px 4px 4px 0;
}
	
	.clients_logo img {
    width: 44%;
    
}
.img-responsive{
	width:50%}
	
	.btm a {
	float: right;
	margin:0;
	
}
#logo img {
	width: 200px;
	}
	.main-menu {
	
	margin: 6px auto;
	padding:0;
}

}



@media (max-height: 580px) and (orientation : landscape) {
    .align-right p:first-child{
        display: block;
        text-align: center;
        float: none;
        margin: 0 auto;
    }
    .right-block{
        display: none;
    }
    .active .cover-titles-2{
        margin: 2rem 0 0;
        padding: 0 3rem;
    }
    .align-left .title,
    .align-right .title {
        font-size: 8vw;
        letter-spacing: 0;
        text-align: center;
		margin-top:70px
    }
    .align-right p{
        margin: 0 auto 1.2rem auto;
        text-align: center;
        float: none;
        padding: 0;
    }
	.align-left p {
        margin: 0 auto 1.2rem auto;
        max-width: 86%;
		font-size:12px;
	}
		.cover-titles a{
    margin-left: 0px;
	margin-top:12px;
}


}
@media (max-width: 450px) {
.event_box{
	width: 48%;}}
	
	@media (max-width: 380px) {
.event_box{
	width: 100%;}}
	
@media (max-width: 330px) {
	
	.align-left p {
        margin: 0 auto 1.2rem auto;
        max-width: 86%;
		font-size:12px;
	}	
	#logo img {
	box-shadow: none;
	width: 65%;
	margin: -15px 0 -13px 0;
}
		.btm{
	display:none;
}

 .header{
        height: auto;
    }
	#menu{
	margin-top:-20px;
	
		}
.fa-2x{
	font-size:1.2em;
}

		
}
@media (max-height: 360px) {
    .cover-titles{
        margin-top: 0;
    }
   .align-left p {
	   display:none;
    }
    .mobile-menu-content{
        top: 7rem;
    }
    #footer{
        height: 7rem;
    }
}
