@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION & COLOR PRESETS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

body, .mast-wrap{
    /* font-family: 'Montserrat', sans-serif; font-weight:300; */
    overflow-x:hidden; 
}

a, a:hover, a:focus{
    text-decoration: none;
}
a:focus { 
        outline: none; 
}
img {
	max-width: 100%;
}
.ease{
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.ease:hover{
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.text-center > .img-responsive{
    display: block;
    display: inline-block;
}
body, p {
    color: #686868;
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
	letter-spacing:0.042em;
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    font-weight: normal;
    font-family:  'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
}
ul, ol {
	padding: 10px 0px 15px 15px;
	line-height: 22px;
}
ul {
	list-style-type: square;
}
ol {
	list-style-type: decimal;
}
.article-body ul li, .article-body ol li {
	padding: 7px 0px;
}

#content{
	
}
.container{
    width: 100%;
	max-width: 100%;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
}
#content {
	background-color: #FFF;
}
.btn {
	margin: 2px;
}

.no-parallax{
    background-attachment: scroll !important;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/

#ourmenu {
	-webkit-animation: pulse 0.8s;
	-moz-animation: pulse 0.8s;
	animation: pulse 0.8s;
	width: 243px;
	height:63px;
	background: url(../images/one-menu.png) no-repeat top left transparent;
}


@-webkit-keyframes pulse {
	0% {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1)
	}
	50% {
		-webkit-transform:scale3d(1.05,1.05,1.05);
		transform:scale3d(1.05,1.05,1.05)
	}
	100% {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1)
	}
}
@keyframes pulse {
	0% {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1)
	}
	50% {
		-webkit-transform:scale3d(1.05,1.05,1.05);
		transform:scale3d(1.05,1.05,1.05)
	}
	100% {
		-webkit-transform:scale3d(1,1,1);
		transform:scale3d(1,1,1)
	}
}

.no-parallax{
	background-attachment: scroll !important;
}



/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 2.5 - MAIN SITE NAVIGATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/

.main-nav{
	/*left: -110%;*/
}
.toggle-menu-wrap{
	position: absolute;
	bottom: 0px;
	left: 0;
	padding: 0px;
	z-index: 999;
	height:61px;
	width: 74px;
}
/*Toggle Menu*/
#toggle-menu {
    display: block;
    width: 100%;
    height: 100%;
    padding: 22px;
    cursor: pointer;
	-webkit-transition: background-color .25s ease-in-out;
       -moz-transition: background-color .25s ease-in-out;
        -ms-transition: background-color .25s ease-in-out;
         -o-transition: background-color .25s ease-in-out;
            transition: background-color .25s ease-in-out;
}
.toggle-menu-default-state{
    display: none;
}
.toggle-menu-hidden{
    display: none;
}
.toggle-menu-visible{
    display: block;
}
#toggle-menu div {
    width: 30px;
    height: 15px;
    position: relative;
}
#toggle-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: black;
    position: absolute;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
#toggle-menu span.top {
    top: 0px;
}
#toggle-menu span.middle {
    top: 6px;
}
#toggle-menu span.bottom {
    top: 12px;
}
#toggle-menu.toggle-menu-visible span.top {
    -webkit-animation: inTop 0.8s forwards;
    -moz-animation: inTop 0.8s forwards;
    animation: inTop 0.8s forwards;
}
#toggle-menu.toggle-menu-visible span.middle {
    -webkit-animation: inMiddle 0.8s forwards;
    -moz-animation: inMiddle 0.8s forwards;
    animation: inMiddle 0.8s forwards;
}
#toggle-menu.toggle-menu-visible span.bottom {
    -webkit-animation: inBottom 0.8s forwards;
    -moz-animation: inBottom 0.8s forwards;
    animation: inBottom 0.8s forwards;
}   
#toggle-menu.toggle-menu-hidden span.top {
    -webkit-animation: outTop 0.8s backwards;
    -webkit-animation-direction: reverse;
    -moz-animation: outTop 0.8s backwards;
    -moz-animation-direction: reverse;
    animation: outTop 0.8s backwards;
    animation-direction: reverse;
}
#toggle-menu.toggle-menu-hidden span.middle {
    -webkit-animation: outMiddle 0.8s backwards;
    -webkit-animation-direction: reverse;
    -moz-animation: outMiddle 0.8s backwards;
    -moz-animation-direction: reverse;
    animation: outMiddle 0.8s backwards;
    animation-direction: reverse;
}
#toggle-menu.toggle-menu-hidden span.bottom {
    -webkit-animation: outBottom 0.8s backwards;
    -webkit-animation-direction: reverse;
    -moz-animation: outBottom 0.8s backwards;
    -moz-animation-direction: reverse;
    animation: outBottom 0.8s backwards;
    animation-direction: reverse;
}   

@-webkit-keyframes inMiddle {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@-moz-keyframes inMiddle {
    50% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(45deg);
    }
}

@keyframes inMiddle {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outMiddle {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@-moz-keyframes outMiddle {
    50% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(45deg);
    }
}

@keyframes outMiddle {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -webkit-transform: rotate(135deg);
    }
}

@-moz-keyframes inTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        -moz-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -moz-transform: rotate(135deg);
    }
}

@keyframes inTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        transform: rotate(0deg);
    }
    100% {
        top: 6px;
        transform: rotate(135deg);
    }
}

@-webkit-keyframes outTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -webkit-transform: rotate(135deg);
    }
}

@-moz-keyframes outTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        -moz-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -moz-transform: rotate(135deg);
    }
}

@keyframes outTop {
    0% {
        top: 0;
    }
    50% {
        top: 6px;
        transform: rotate(0deg);
    }
    100% {
        top: 6px;
        transform: rotate(135deg);
    }
}

@-webkit-keyframes inBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -webkit-transform: rotate(135deg);
    }
}

@-moz-keyframes inBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        -moz-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -moz-transform: rotate(135deg);
    }
}

@keyframes inBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        transform: rotate(0deg);
    }
    100% {
        top: 6px;
        transform: rotate(135deg);
    }
}

@-webkit-keyframes outBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        -webkit-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -webkit-transform: rotate(135deg);
    }
}

@-moz-keyframes outBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        -moz-transform: rotate(0deg);
    }
    100% {
        top: 6px;
        -moz-transform: rotate(135deg);
    }
}

@keyframes outBottom {
    0% {
        top: 12px;
    }
    50% {
        top: 6px;
        transform: rotate(0deg);
    }
    100% {
        top: 6px;
        transform: rotate(135deg);
    }
}


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

.main-nav-menu .main-nav-link {
	position: relative;
	display: inline-block;
	margin: 5px 25px;
	outline: none;
	text-decoration: none;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
}

.main-nav-menu .main-nav-link:hover,
.main-nav-menu .main-nav-link:focus {
	outline: none;
}


/* Effect 21: borders slight translate */
.main-nav-menu-effect li .main-nav-link {
	padding: 10px;
	color: #237546;
	font-weight: 700;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.main-nav-menu-effect li .main-nav-link::before,
.main-nav-menu-effect li .main-nav-link::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	transform: translateY(-15px);
}

.main-nav-menu-effect li .main-nav-link::before {
	top: 0;
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	transform: translateY(-15px);
	display:none; /* hide top line */
}

.main-nav-menu-effect li .main-nav-link::after {
	bottom: 0;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	transform: translateY(15px);
}

.main-nav-menu-effect li .main-nav-link:hover,
.main-nav-menu-effect li .main-nav-link:focus {
	color: #fff;
}

.main-nav-menu-effect li .main-nav-link:hover::before,
.main-nav-menu-effect li .main-nav-link:focus::before,
.main-nav-menu-effect li .main-nav-link:hover::after,
.main-nav-menu-effect li .main-nav-link:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}



/* UNDO TRANSITIONS FOR SUB-NAV */

.main-nav-menu-effect li .sub-nav .main-nav-link {
	padding: 3px;
	text-shadow: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.main-nav-menu-effect li .sub-nav .main-nav-link::before,
.main-nav-menu-effect li .sub-nav .main-nav-link::after {
	position: static;
	left: auto;
	width: auto;
	height: auto;
	background: transparent;
	opacity: 1;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.main-nav-menu-effect li .sub-nav .main-nav-link::before {
	display:none;
	content: '';
	top: auto;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.main-nav-menu-effect li .sub-nav .main-nav-link::after {
	content: ' / ';
	bottom: auto;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.main-nav-menu-effect li .sub-nav .main-nav-link:hover,
.main-nav-menu-effect li .sub-nav .main-nav-link:focus {
	color: #fff;
	text-shadow: none;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.main-nav-menu-effect li .sub-nav .main-nav-link:hover::before,
.main-nav-menu-effect li .sub-nav .main-nav-link:focus::before,
.main-nav-menu-effect li .sub-nav .main-nav-link:hover::after,
.main-nav-menu-effect li .sub-nav .main-nav-link:focus::after {
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none);
	transform: none;
}


/* MENU STYLES */
.main-nav  {
    width: 100%;
    height: 100%;
     position: fixed;
     z-index: 100;

    -moz-box-shadow: 10px 1px 4px #000000;
    -webkit-box-shadow: 10px 1px 4px #000000;
    box-shadow: 10px 1px 4px #000000;
}
.nav-bg{
    height: 100%;
    background: url('../images/nav-bg.jpg') no-repeat center 0px; 
    background-size: cover;
	-webkit-transition: background-position 1s linear;
       -moz-transition: background-position 1s linear;
        -ms-transition: background-position 1s linear;
         -o-transition: background-position 1s linear;
            transition: background-position 1s linear;
}
.movebg {
	background-position: 52% 0px;
	
}
.cr8ve-title, .cr8ve-title a {
	color: #4c4c4c;
	-webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
.cr8ve-title a:hover {
	letter-spacing: 10px;
}
.nav-logo {
	display:block;
	width: 100%;
	text-align:center;
}
.main-nav-menu{
    list-style: none;
    padding: 0;
    text-align: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.main-nav-menu li{
     padding: 0;
}
.main-nav-menu li span.main-nav-link {
	cursor: pointer;
}
.main-nav-menu li .main-nav-link {
     font-family:  'Montserrat',  Arial,  Helvetica,  sans-serif;
     font-weight: 300;
     font-size: 16px;
     line-height: 16px;
     letter-spacing: 8px;
     text-decoration: none;
     text-transform: uppercase;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
.main-nav-menu li .main-nav-link:hover {
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
.main-nav-menu-effect li .sub-nav {
    display: none;
    padding: 20px 0 15px 0;
}
.main-nav-menu-effect li .sub-nav li {
	display:inline-block;
}
.main-nav-menu-effect li .sub-nav .main-nav-link{
     font-family:  'Montserrat',  Arial,  Helvetica,  sans-serif;
     font-weight: 300;
     font-size: 12px;
     line-height: 20px;
     letter-spacing: 4px;
     text-decoration: none;
     text-transform: uppercase;
	 padding: 0px;
	 margin: 0px 3px;
	 text-shadow: none;
	 color: #4C4C4C;
}
.main-nav-menu-effect li .sub-nav .main-nav-link::after{
    margin-left: 3px;
    margin-right: 3px;
}
.main-nav-menu-effect li .sub-nav li:last-child .main-nav-link::after {
    display: none;
}

/* Switch JS animation to GPU powered translate3d.
	position .main-nav to left: -110%; to switch back to JS animation. */
.main-nav {
	transform: translate3d(0px,102%, 0px);
	-webkit-transition: all .9s cubic-bezier(0.2, 0.6, 0.1, 1);
       -moz-transition: all .9s cubic-bezier(0.2, 0.6, 0.1, 1);
        -ms-transition: all .9s cubic-bezier(0.2, 0.6, 0.1, 1);
         -o-transition: all .9s cubic-bezier(0.2, 0.6, 0.1, 1);
            transition: all .9s cubic-bezier(0.2, 0.6, 0.1, 1);
}
.main-nav.visible {
	transform: translate3d(0px, 0px, 0px);
	-webkit-transition: all .7s cubic-bezier(0.2, 0.6, 0.1, 1);
       -moz-transition: all .7s cubic-bezier(0.2, 0.6, 0.1, 1);
        -ms-transition: all .7s cubic-bezier(0.2, 0.6, 0.1, 1);
         -o-transition: all .7s cubic-bezier(0.2, 0.6, 0.1, 1);
            transition: all .7s cubic-bezier(0.2, 0.6, 0.1, 1);
}



/* SLIM MENU STYLES */
.mobile-nav{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
.menu-collapser {
    position: relative;
	background: url(../images/nav-bg_logo.png) no-repeat 32px center;
    background-color: #1C1C1E;
    color: #FFF;
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 18px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
.collapse-button {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 40px;
    background-repeat: repeat-x;
    color: #FFFFFF;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;

    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
.collapse-button:hover, .collapse-button:focus {
    background-image: none;
    background-color: #040404;
    color: #FFF;
}
.collapse-button .icon-bar {
    background-color: #F5F5F5;
    border-radius: 1px 1px 1px 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    display: block;
    height: 2px;
    width: 18px;
    margin: 2px 0;
}

ul.slimmenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
ul.slimmenu li {
    position: relative;
    display: inline-block;
    background-color: #212121;
}
ul.slimmenu > li { margin-right: -5px; }
ul.slimmenu > li:first-child { border-left: 0 }
ul.slimmenu > li:last-child { margin-right: 0 }
ul.slimmenu li a,
ul.slimmenu li .main-nav-link {
    display: block;
    color: #eee;
    padding: 12px 64px 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 17px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
    transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -webkit-transition: background-color 0.5s ease-out;
}
ul.slimmenu li a > i{
    display: none !important;
}
ul.slimmenu li:hover {
    background-color: #000;
    text-decoration: none;
}
ul.slimmenu li ul {
    margin: 0;
    list-style-type: none;
}
ul.slimmenu li ul li { background-color: #292929; padding-left: 20px; }
ul.slimmenu li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100%;
}
ul.slimmenu li > ul > li ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 999;
    width: 100%;
}

ul.slimmenu.collapsed li {
    display: block;
    width: 100%;

    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
ul.slimmenu.collapsed li a {
    display: block;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}
ul.slimmenu.collapsed li .sub-collapser {
    height: 40px;
}
ul.slimmenu.collapsed li > ul {
    display: none;
    position: static;
    padding: 0;
    list-style: none;
}





/* CORPORATE IDENTITY MENU */
.corp-menu *, .fluid-menu * {
	-webkit-transition: all .3s linear;
       -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
         -o-transition: all .3s linear;
            transition: all .3s linear;
}
.corp-menu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	text-align:center;
}
.corp-menu li {
	display:inline-block;
	width: 33.333%;
	text-align:center;
	padding: 0px 5px;
}
.corp-menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1px 7px;
}
.corp-menu li a,
.corp-menu li a:visited {
	border: 0px none !important;
}
.corp-menu li img,
.fluid-menu li img {
	max-width: 80%;
}
.corp-menu .image-title, .corp-menu a .image-title,
.fluid-menu .image-title, .fluid-menu a .image-title {
	display:block;
	letter-spacing: 3px;
	font-size: 12px;
	line-height:16px;
	color: #686868;
}
.corp-menu li:hover .image-title,
.fluid-menu li:hover .image-title {
	color: #000;
}
@media (min-width: 991px) and (max-width: 1199px) {
	.corp-menu li {
		width:50%;
	}
	.sub-heading {
		font-size: 12px;
		letter-spacing: 1px;
	}
}
@media (max-width:680px) {
	.corp-menu li {
		display:block;
		width: 100%;
		padding: 5px;
		border-bottom: 1px solid #EAEAEA;
	}
	.corp-menu li .sub-heading {
		text-align: center;
		margin: 10px 0px;
	}
	.corp-menu li img {
		display: none;
	}
	.corp-menu-mod .corp-menu-title {
		margin: 30px 0px;
		text-align: center !important;
	}
}

/* FLUID MENU FULL WIDTH */
.fluid-menu {width:100%;}
.fluid-menu ul {
  width: 100%;
  display:table;
  table-layout: fixed;
  margin: 0px;
  padding: 0px;
}
.fluid-menu ul li {
	  display:block;
	  width: 100%;
	  padding: 5px;
	  text-align:center;
	  border-bottom: 1px solid #EAEAEA;
}
.fluid-menu ul li .sub-heading{
	margin: 15px 0px;
}
.fluid-menu ul li:last-child {
	border-bottom: 0px;
}
.fluid-menu ul li img{
  display:none;
}
.fluid-menu ul li a {
	display: block;
	height: 100%;
	width: 100%;
	padding: 1px 7px;
}
.menu-title {
	text-align:center;
	margin: 30px 0px;
}
@media (min-width:680px) {
	.fluid-menu ul li {
		float:left;
		width: 50%;
		border-bottom: 0px;
	}
	.fluid-menu ul li img{
	  display:inline-block;
	}
}
@media (min-width:768px) {
	.fluid-menu ul li {
		float:left;
		width: 33.3333%;
		padding: 20px 5px;
	}
}
@media (min-width:1200px) {
  .fluid-menu ul li {
	display:table-cell;
	width: auto;
	float:none;
	padding: 30px 5px;
	}
}



.social-wrap{
    list-style: none;
    padding: 0;
    margin-top: 70px;
}
.social-wrap li{
    display: inline-block;
    margin: 0 2px;
}
.social-wrap li a {
    width: 24px;
    opacity: 0.2;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.social-wrap li a:hover{
    opacity: 1;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.credits p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 19px;
}
.info-button{
    position: fixed;
    bottom: 0px;
    right: 10px;
}
.info-button > a{
    opacity: 0.3;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.info-button > a:hover{
    opacity: 1;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}

/*Common Spacing and Padding*/

.spacer-lg {
	padding: 40px 0px;
}
.spacer-md {
	padding: 30px 0px;
}
.spacer {
	padding: 20px 0px;
}
.spacer-sm {
	padding: 10px 0px;
}
.spacer-xs {
	padding: 5px 0px;
}

.padded-xs {padding: 10px;}
.padded-sm {padding: 20px;}
.padded-md {padding: 30px;}
.padded-lg {padding: 50px;}
.padded-xl {padding: 80px;}

.page-section{
}
.separator-section{
    padding: 100px 0;
}
.add-top{
    margin-top: 120px;
}
.add-bottom{
    margin-bottom: 120px;
}
.add-top-half{
    margin-top: 60px;
}
.add-bottom-half{
    margin-bottom: 60px;
}
.add-top-quarter{
    margin-top: 30px;
}
.add-bottom-quarter{
    margin-bottom: 30px;
}
.pad-top{
    padding-top: 100px;
}
.pad-bottom{
    padding-bottom: 100px;
}
.pad-top-half{
    padding-top: 60px;
}
.pad-bottom-half{
    padding-bottom: 60px;
}
.pad{
    padding-left: 20px;
    padding-right: 20px;
}
.pad-common{
    padding: 100px;
}
.remove-top{
    margin-top: 0;
}
.remove-bottom{
    margin-bottom: 0;
}
.remove-bottom{
    margin-bottom: 0;
}
.remove-pad-top{
    padding-top: 0;
}
.remove-pad-bottom{
    padding-bottom: 0;
}

.mob-center > .img-responsive{
    display: inline-block;
}
.no-gutter{
   padding: 0px !important;
}
.valign{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.absolute-overlay{
    position: absolute;
    top: 0;
    left: 0;
}
.sticky-foot{
    max-height: 62px;
}
.fullwidth-forced{
    width: 100% !important;
    margin-left: 0 !important;
}



@media (max-width: 768px) {
	.separator-section{
		padding: 70px 0;
	}
	.add-top{
		margin-top: 50px;
	}
	.add-bottom{
		margin-bottom: 50px;
	}
	.add-top-half{
		margin-top: 35px;
	}
	.add-bottom-half{
		margin-bottom: 35px;
	}
	.add-top-quarter{
		margin-top: 10px;
	}
	.add-bottom-quarter{
		margin-bottom: 10px;
	}
	.pad-top{
		padding-top: 50px;
	}
	.pad-bottom{
		padding-bottom: 50px;
	}
	.pad-top-half{
		padding-top: 35px;
	}
	.pad-bottom-half{
		padding-bottom: 35px;
	}
	.pad{
		padding-left: 20px;
		padding-right: 20px;
	}
	.pad-common{
		padding: 60px;
	}
}




/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - COMMON ELEMENTS & TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------------------------------------*/

.inner-pad{
    padding: 120px;
}
@media (max-width:1199px) {
	.inner-pad {
		padding: 80px;
	}
}
.inner-pad-small{
    padding: 40px 120px;
}
.section-heading {
	text-align: center;
	margin: 0px;
	padding: 30px 10px;
}
.hero-heading{
    font-size: 124px;
    line-height: 136px;
    font-family:  'Montserrat',  Arial,  Helvetica,  sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
}
.main-heading{
    font-size: 22px;
    line-height: 29px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
}
.sub-heading{
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.inner-heading{
    margin-top: 20px;
}
.inner-heading > span{
    font-size: 12px;
    line-height: 22px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.page-head h1 > span{
    font-family: "Montserrat", sans-serif;
    letter-spacing: 8px;
    padding: 7px 7px 7px 15px;
    text-transform: uppercase;
}
.page-head p{
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 8px;
    text-transform: uppercase;
}
.items-more {display: none;}

/*Buttons*/
.btn {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
	        box-shadow: none;
}
.btn-sk, .btn-default, .btn-primary, .popup-btn {
    border-radius: 0px;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 12px;
    line-height: 19px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; font-weight:400;
    letter-spacing: 3px;
	display: inline-block;
	margin-top: 4px;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.btn-sk-big, .btn-lg {
    border-radius: 0px;
    text-decoration: none;
    padding: 18px 24px;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; font-weight:400;
    letter-spacing: 3px;
	display: inline-block;
	margin-top: 4px;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.btn-sk:hover, .btn-default:hover, .btn-primary:hover, .popup-btn:hover {
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.btn-sk-white, .btn-white, .popup-btn,
.btn-sk-white:active, .btn-white:active, .popup-btn:active,
.btn-sk-white:focus, .btn-white:focus, .popup-btn:focus {
    border:solid 1px #fff;
    background: transparent;
    color: #fff;
}
.btn-sk-white:hover, .btn-white:hover, .popup-btn:hover {
    border:solid 1px #fff;
    background: #fff;
    color: #4c4c4c;
}

.btn-sk-dark, .btn-dark,
.btn-sk-dark:active, .btn-dark:active,
.btn-sk-dark:focus, .btn-dark:focus {
    border:solid 1px #4c4c4c;
    background: transparent;
    color: #4c4c4c;
}
.btn-sk-dark:hover, .btn-dark:hover {
    border:solid 1px #4c4c4c;
    background: #4c4c4c;
    color: #fff;
}

.btn-sk-color, .btn-color,
.btn-sk-color:active, .btn-color:active,
.btn-sk-color:focus, .btn-color:focus {
    background: transparent;
}
.btn-sk-color:hover, .btn-color:hover {
    color: #fff;
}


/*TOP HEADER*/
.top-header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    min-height: 60px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.top-header-left, .top-header-right{
    padding: 20px 0 17px 0;
}
.top-header h1,
.top-header h2,
.top-header h3{
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 24px;
    text-transform: uppercase;
	margin-bottom: 0px;
}

/*MASTER FOOTER*/

.master-footer{
}
.master-footer-left, .master-footer-right{
    padding: 100px;
}
.footer-bg{
}

/*PAGE HEADER*/
.page-head, .portheader{
    margin-top: 40px;
	background-size: cover !important;
	background-repeat: no-repeat;
}
.page-head h1 {
    line-height: 1.7em;
}



/*------------------------------------------------------------------*/
/* 04 - MAIN PAGES & SECTIONS */
/*-------------------------------------------------------------------*/


/*HOME - Slider Revolution*/

.tp-leftarrow{
    left: 140px !important;
}
.tp-bullets{
    left: 55% !important;
}
.absolute-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
}
.sr-caps h1{
    font-family: 'Montserrat', sans-serif; font-weight:700;
    text-transform: uppercase;
    font-size: 200px;
    line-height: 207px;
}

.sr-caps h5{
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; font-weight:300;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 31px;
}

.sr-caps h5 > span{
    padding: 15px;
    font-size: 20px;
    line-height: 27px;
    border:solid 2px #fff;
}
.sr-caps  h2{
    font-size: 84px;
    line-height: 91px;
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; font-weight:400;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.sr-caps h6.minimal > span{
    padding: 20px;
}
.sr-caps h6.minimal.dark > span{
    border:solid 2px #2D2D2D;
}
.sr-caps h6.minimal.white > span{
    border:solid 2px #fff;
}
.sr-caps h6.minimal{
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; font-weight:300;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 39px;
}
.sr-caps h6{
    margin-top: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; font-weight:300;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 39px;
}
.sr-caps h6.dark > span{
    border-top:solid 2px #2D2D2D;
}
.sr-caps h6.white > span{
    border-top:solid 2px #fff;
}
.sr-caps h6 > span{
    padding-top: 20px;
}


/*portfolio MASONRY*/
.portfolio-grid{
            width: 100%; 
            position: relative;
            font-size: 25px;
            font-family: 'Helvetica';
            color: #eaeaea;
        }
        .portfolio-grid .box {
            float: left;
            position: relative;
            text-align: center;
        }
       .portfolio-grid .box a{
            opacity: 0;
            display: block;
            width: 100%;
            height: 100%;
            padding: 10px;
            -webkit-transition: all .4s ease-in-out;
               -moz-transition: all .4s ease-in-out;
                -ms-transition: all .4s ease-in-out;
                 -o-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
        }
        .portfolio-grid .box a:hover{
            opacity:1;
            -webkit-transition: all .4s ease-in-out;
               -moz-transition: all .4s ease-in-out;
                -ms-transition: all .4s ease-in-out;
                 -o-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
        }
        .portfolio-grid .box h3{ 
            font-family: 'Montserrat',Arial,Helvetica,sans-serif;
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 8px;
            line-height: 27px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .portfolio-grid .box p > span{  
            font-family: "Montserrat",Arial,Helvetica,sans-serif;
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 8px;
            line-height: 20px;
            padding: 7px;
            padding-left: 15px;
            text-transform: uppercase;
        }
        .boxup{

        }
        #fillers{
            display: none;
        }
        .fillerBox {
            float: left;
            position: relative;
        }
.novamason{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.portfolio-filter{
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.portfolio-filter li{
    display: inline-block;
    -webkit-transition: all .8s ease-in-out;
       -moz-transition: all .8s ease-in-out;
        -ms-transition: all .8s ease-in-out;
         -o-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
}
.portfolio-filter li a > span{
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 8px;
    line-height: 22px;
    text-transform: uppercase;
    padding: 5px;
}
.portfolio-filter li:hover{
    cursor: pointer;
    opacity: 0.4;
    -webkit-transition: all .8s ease-in-out;
       -moz-transition: all .8s ease-in-out;
        -ms-transition: all .8s ease-in-out;
         -o-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
}
.portfolio-filter li:after{
    content: "/";
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 23px;
    margin-left: 10px;
    margin-right: 10px;
}
.portfolio-filter li a.active > span{
    background: #fff;
    color: #000;
    padding-left: 16px;
}
.portfolio-filter li:last-child:after{
    display: none;
}
.novamason{
    opacity: 1;
    -webkit-transition: all .8s ease-in-out;
       -moz-transition: all .8s ease-in-out;
        -ms-transition: all .8s ease-in-out;
         -o-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
}
.fade-out{
    opacity: 0.1 !important;
    -webkit-transition: all .8s ease-in-out;
       -moz-transition: all .8s ease-in-out;
        -ms-transition: all .8s ease-in-out;
         -o-transition: all .8s ease-in-out;
            transition: all .8s ease-in-out;
}
.fade-out > a{
    display: none;
}



/*AGENCY*/

.about-bg{
    height: 100%;
    background: url('../images/about/bg.jpg') no-repeat center center; 
    background-size: cover;
}
.service-item{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.service-item a{
    display: block;
}
.testimonial-wrap > img{
    border-radius: 50%;
}
.testimonial-wrap > h6 {
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 19px;
    margin: 20px 0;
    text-transform: uppercase;
}
.testimonial-wrap > p {
    margin-top: 20px;
}
.service-details-switcher{
    list-style: none;
    padding: 0;
}
.service-details{
    display: none;
}
.service-details p {
	color: #CCC;
}
.service-details:first-child{
    display: block;
}
.service-item{
    padding: 50px 0 !important;
}
.carousel-item{
    padding: 50px 0;
}

.carousel-item > .triangle-arrow-up{
    display: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #1c1c1e transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}
.triangle-arrow-down{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0px 20px;
	border-color: #1c1c1e transparent transparent transparent;
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
}

.active-service{
    display: block !important;
}
.triangle-arrow-right{
    width: 0;
height: 0;
border-style: solid;
border-width: 15px 26.0px 15px 0;
border-color: transparent #fff transparent transparent;
position: absolute;
    bottom: 0;
    left: -26px;
    top: 50%;
    margin-top: -15px;
}
.triangle-arrow-left{
    width: 0;
height: 0;
border-style: solid;
border-width: 15px 0 15px 20px;
border-color: transparent transparent transparent #1c1c1e;
position: absolute;
    bottom: 0;
    right: -20px;
    top: 50%;
    margin-top: -15px;
}
.triangle-arrow{
    z-index: 50;
}

/* QUICK PACKS */
.packs-pad {padding:15%;}
.quick-packs {
    height: 100%;
    padding: 0px;
}
.snug {padding:0px;}
.quick-packs .owl-item {
	transition: background-color 0.2s linear;
}
p.pack-price {
	font-size: 50px;
	line-height: 50px;
	margin-bottom: 25px;
}
p.pack-price sup {
	font-size: 20px;
	margin-left: 0px;
}

/* PACKAGE BUTTONS MACROS */
.btn-sk-price {
	display: inline-block;
}
span.price {
    display: block;
    font-size: 200%;
    line-height: 150%;
}
span.price > small {
	font-size: 50%;
	line-height: 30px;
	vertical-align: top;
}

.quick-packs .owl-item:hover .packs-pad p,
.quick-packs .owl-item:hover .packs-pad h4 {
    color: #171717;
}
@media (max-width: 991px) {
	.btn-sk-price {
		display: inline-block;
		width: 46%;
	}
}
@media (max-width: 768px) {
	.btn-sk-price {
		display: inline-block;
		width: 90%;
	}
	.quick-packs .packs-pad {
		text-align: center;
	}
	.quick-packs .newsflash-title {
		letter-spacing: 4px;
		font-size: 17px;
		margin-top: 20px;
	}
	p.pack-price {
		font-size: 42px;
		line-height: 42px;
		margin-bottom: 22px;
	}
	.quick-packs .btn-default {
		padding: 10px 12px;
		letter-spacing: 2px;
	}
	.visible-xs {
		display: block !important;
	}
	#top-one {
		border-bottom: 1px solid #DEDEDE;
	}
}


/* NEWS*/
.news-container{
    padding: 0;
}
.news-item {
  margin: 0;
}
.news-item-one-third {
    width: 33.3% !important;
}
.news-item-one-half {
    width: 50% !important;
}
.news-item-two-third {
    width: 66.6% !important;
}

 .news-image{
    padding: 0;
 }
 .news-item-inner{
    padding: 60px;
 }
        .news-item h1{ 
            font-family: 'Montserrat',Arial,Helvetica,sans-serif;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 6px;
            line-height: 32px;
            text-transform: uppercase;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .news-item h3{ 
            font-family: 'Montserrat',Arial,Helvetica,sans-serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 4px;
            line-height: 21px;
            text-transform: uppercase;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .news-item p > span, .tags > span {  
            font-family: "Montserrat",Arial,Helvetica,sans-serif;
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 2px;
            line-height: 26px;
            padding: 0px 7px;
            text-transform: uppercase;
			display:inline-block;
			margin: 1px;
        }



/* TAGS */
.tags {
	margin-bottom: 0px;
}
.tags > span a,
.tags > span a:visited {
	color: #AAA;
}
.tags > span a:hover,
.tags > span a:visited:hover {
	color: #DDD;
}

/* Tags Search Results */
#limit {height: 50px;width:60px;font-weight:700;text-align:center;}
.chzn-container-single .chzn-single {
	font-weight: 400;
	border-color: #ACACAC;
	border-radius: 0px;
	padding:9px 0 10px 8px;
	height: 45px;
	background: none;
	background-color: #FFF;
	background-clip: padding-box;
	box-shadow: none;
}
.chzn-container-single .chzn-single div b {
	background-position: 0px 12px;
}
ul.category {list-style-type: none; padding-left: 0px;}

ul.category .tag-body .white {color: #444;}
ul.category .tag-body .sub-heading {font-size:12px; letter-spacing: 2px; margin-bottom: 10px;}

		
/* portfolio*/
.portfolio-container{
    padding: 0;
}
.portfolio-container img {
	width: 100%;
}
.portfolio-item {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #121212;
}
       .portfolio-item a.blok{
            opacity: 0;
            display: block;
            width: 100%;
            height: 100%;
            padding: 10px;
            position: absolute;
            top: 0;
            z-index: 10;
            text-align: center;
            -webkit-transition: all .4s ease-in-out;
               -moz-transition: all .4s ease-in-out;
                -ms-transition: all .4s ease-in-out;
                 -o-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
        }
        .portfolio-item a.blok:hover{
            opacity:1;
            -webkit-transition: all .4s ease-in-out;
               -moz-transition: all .4s ease-in-out;
                -ms-transition: all .4s ease-in-out;
                 -o-transition: all .4s ease-in-out;
                    transition: all .4s ease-in-out;
        }
        .portfolio-item-inner{
            text-align: center;
        }
        .portfolio-item-inner h3{ 
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 4px;
            line-height: 23px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .portfolio-item-inner p > span{  
            font-size: 18px;
            font-weight: 200;
            line-height: 25px;
            padding: 7px;
        }
		.portfolio-container {
			padding-left: 0px !important;
			padding-right: 0px !important;
		}
@media (max-width:768px){
		
		.portfolio-item a.blok{
            opacity: 0;
        }
        .portfolio-item a.blok:hover{
            opacity:0;
        }
}

.portfolio-filter li a > span {
  color: #ffffff;
}
		
/* Portfolio Isotope Transitions */ 

    .isotope, .isotope .isotope-item {
        -webkit-transition-duration: 0.8s;
        -moz-transition-duration: 0.8s;
        -ms-transition-duration: 0.8s;
        -o-transition-duration: 0.8s;
        transition-duration: 0.8s;
    }
    
    .isotope {
        -webkit-transition-property: height, width;
        -moz-transition-property: height, width;
        -ms-transition-property: height, width;
        -o-transition-property: height, width;
        transition-property: height, width;
    }
    
    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        -ms-transition-property: -ms-transform, opacity;
        -o-transition-property: -o-transform, opacity;
        transition-property: transform, opacity;
    }
    
    .isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
        -webkit-transition-duration: 0s;
        -moz-transition-duration: 0s;
        -ms-transition-duration: 0s;
        -o-transition-duration: 0s;
        transition-duration: 0s;
    }
	


/*CREDITS*/
.credits-ticker{
    text-align: center;
    margin: 0;
}
.credits-ticker ul{
    list-style: none;
}
.credits-ticker h3{
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 31px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.credits-ticker h6{
            font-family: 'Montserrat',Arial,Helvetica,sans-serif;
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 4px;
            line-height: 19px;
            text-transform: uppercase;
}
.credit-ticker .social-wrap{
    margin-top: 0;
}


/*CLIENTS*/
.clients-container{
    padding: 100px;
}
.client-logo{
}
.client-logo-inner{
    opacity: 0.3;
    border-right:solid 2px #ccc;
    border-bottom:solid 2px #ccc;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.client-logo-inner:hover{
    opacity: 1;
    border-right:solid 2px #eee;
    border-bottom:solid 2px #eee;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}

.client-logo:last-child .client-logo-inner{
    border-right:none;
}
.client-logo-row:last-child .client-logo-inner{
    border-bottom:none;
}



/*AWARDS*/
.awards-container{
    padding: 100px;
}
.awards-item{
    border-right: solid 1px #ccc;
    padding: 60px;
    opacity: 0.5;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.awards-item:hover{
    opacity: 1;
    border-right: solid 1px #eee;
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
}
.owl-item:last-child .awards-item{
    border-right: none;
}
.awards-item h3{
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.awards-item h1{
    margin-top: 0px;
}
.awards-item h1 > span{
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 31px;
    text-transform: uppercase;
    border-top: solid 1px #000;
    padding-top: 10px;
}

/*SERVICES OWL*/
/* 
 * 	Core Owl Carousel CSS File
 *	v1.24
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:grabbing;
}

@media(max-width:380px){
	.carousel-item {
		padding:50px 0px;
	}
}

.text-anim-container .sp-content small {
    color: #FFF;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/* Owl theme Overides */
.owl-theme .owl-controls{
	text-align: center;
	margin-top: 30px;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.3;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #000;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../images/bx_loader.gif) no-repeat center center
}

.owl-prev{
	position: absolute;
	width: 50px;
	height: 50px;
	background: transparent url(../images/prev.png) no-repeat center center !important;
	top: 50%;
}
.owl-next{
	position: absolute;
	width: 50px;
	height: 50px;
	background: transparent url(../images/next.png) no-repeat center center !important;
	top: 50%;
}
.owl-nav-sticky-wide .owl-prev{
	left: 20px;
}
.owl-nav-sticky-wide .owl-next{
	right: 20px;
}

.owl-nav-sticky-extra-wide .owl-prev{
	left: -50px;
}
.owl-nav-sticky-extra-wide .owl-next{
	right: -50px;
}
.owl-nav-sticky-center .owl-prev{
	margin-left: -60px !important;
}
.owl-nav-sticky-center .owl-next{
	margin-right: -60px !important;
}

.owl-nav-sticky-left .owl-prev{
	left: 20px;
}
.owl-nav-sticky-left .owl-next{
	left: 120px;
}
.owl-nav-sticky-right .owl-prev{
	right: 120px;
}
.owl-nav-sticky-right .owl-next{
	right: 20px;
}



/*SINGLE-PROJECT*/
.single-project-content-inner{
    padding: 80px 40px;
}
.single-project-slider-wrap{
    margin-bottom: 30px;
}
.single-project-block a > .zoom-icon-wrap{
    position: absolute;
    background:  url('../images/zoom.png') center center no-repeat;
    top: 0;
    width:  92%;
    height: 100%;
}

.zoom-icon-wrap{
    opacity: 0;
}
.single-project-block a:hover > img{
    opacity: 0.2;
}
.single-project-block a:hover > .zoom-icon-wrap{
    opacity: 1;
}

/*CONTACT*/
.gmap {padding: 32px 0px 0px 0px;}

.contact-container{
}
.aside-contact h4 {margin-bottom: 10px;}
.contact{
}

/*contact form*/

.email-wrap{
    padding-top: 20px;
}
.contact-mail{
    font-size: 18px;
    line-height: 25px;
    font-family: 'Montserrat', sans-serif; font-weight:300;
    color: #fff;
}
.contact-form-wrap{
    display: none;
    padding-top: 30px;
}
.contact-item{
    padding: 0px;
}
.address-heading{
    padding: 0px;
    margin-bottom: 0;
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 21px;
    text-transform: uppercase;
}
.email-heading{
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 27px;
    margin-bottom: 0;
    padding: 0;
}
.ba-btn-submit {text-align:center !important;}
input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    color: #444 !important;
    font-family: 'Montserrat',sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 25px !important;
    height: 50px !important;
    margin-bottom: 10px !important;
    padding: 10px !important;
    width: 100%;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
input:focus, textarea:focus {
    border-bottom: none !important;
    color: #444 !important;
    background: #f2f2f2 !important;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    color: #444 !important;
    font-family: 'Montserrat',sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 25px !important;
    margin-top: 0;
    padding: 10px !important;
    resize: none;
    width: 100%;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
input[type="checkbox"], input[type="radio"] {
	width: auto;
	height: 20px !important;
}
input.send_message {
    background: none repeat scroll 0 0 #EF4A4A;
    color: #FFFFFF;
    cursor: pointer;
    float: left;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    width: 120px;
}
input.send_message:hover {
    background: none repeat scroll 0 0 #262932;
}
fieldset {
    border: 0 none;
    float: left;
    padding: 0;
    position: relative;
    width: 100%;
}
fieldset h1 {
    color: #000000;
    font-size: 24px;
}

/* Search Page */
.searchForm .only label, .searchForm .phrases label {
	display: inline-block;
	margin: 0px 10px;
}
.search-results .sub-heading.white {
	color: #686868;
	letter-spacing: 1px;
	margin-bottom: 7px;
}
.search-results {
	margin-bottom: 20px;
}

.result-title {text-transform: uppercase; margin-bottom: 7px;}
.result-category {text-transform: uppercase;margin-bottom: 7px;}
.result-text {margin-bottom: 7px;}
.result-created {font-size:10px; margin-bottom: 20px;}
.result-category, .result-text, .result-created {padding-left: 15px;}


/* Quick Contact Form Styles */
.quick-contact input {
	color: #FFF !important;
	border-bottom-color: #FFF;
}
.quick-contact input:focus, .quick-contact textarea:focus {
	
}
.quick-contact textarea {
	color: #FFF !important;
	border-bottom-color: #FFF;
}
.quick-contact input:focus, .quick-contact textarea:focus {
    border-bottom: none !important;
    color: #FFF !important;
    background: rgba(255,255,255, 0.25) !important;
	opacity: 1;
}
.quick-contact input[type="submit"], .quick-contact input[type="reset"],
.quick-contact .btn-prev, .quick-contact .btn-next {
	background: transparent !important;
	border: 1px solid #FFFFFF !important;
	color: #FFFFFF !important;
	font-weight: 700;
}
.quick-contact input[type="submit"]:hover, .quick-contact input[type="reset"]:focus,
.quick-contact .btn-prev:hover, .quick-contact .btn-next:hover {
	background: #FFF !important;
	color: #4c4c4c !important;
}
.quick-contact .btn-prev {display: none;}

.quick-contact-mod .page-header {
	color: #FFF !important;
	margin: 5px 0px 10px;
	border-bottom: 0px !important;
}
.quick-contact .ba-form .tool {
	margin: 15px 0px;
}
#recaptcha > div {
	margin: 0px auto;
}

/* Quote Request */
.snug .ba-form {padding: 0px;}
.quote_request input, .quick-contact input {
	margin-bottom: 0px !important;
}
.quote_request .tool.ba-captcha {text-align:right;}
.quote_request .g-recaptcha.g-recaptcha {display:inline-block;}

.quote_request input[type="submit"], .quote_request input[type="reset"] {
	background: transparent !important;
	border: 1px solid #171717 !important;
	color: #171717 !important;
	font-weight: 700;
}
.quote_request input[type="submit"]:hover, .quote_request input[type="reset"]:focus {
	background: #171717 !important;
	color: #f1f1f1 !important;
}
@media (max-width:1199px){
	.gmap {padding: 23px 0px 0px 0px;}
}
@media (max-width:480px){
	.quote_request .span6 {
		width: 100%;
	}
}


/* Article Body Styles */
.article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6{
    margin-top: 40px;
    font-weight: normal;
    font-family:  'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}





.contact-label-box {
    color: #222;
    font-family: 'Montserrat', sans-serif; font-weight:300;
    font-size: 24px;
    line-height: 31px;
    padding: 30px 20px;
    text-align: center;
}
.contact-label-box > span {
    display: block;
    margin-right: 10px;
}
.contact-label-box > span > img {
    height: 60px;
    width: 60px;
}
.contact-label-box a:hover {
    color: #CCCCCC;
    text-decoration: none;
}
.contact .alert{
    box-shadow: none;
    border:none;
    border-radius: 0;
    text-shadow:none;
    font-size: 12px;
    line-height: 19px;
        font-family: 'Montserrat', sans-serif; font-weight:300;
    margin-bottom:10px;
    padding:10px;
    background:#000;
    color: #fff;
    text-align: left;
}
.btn-wrap{
    margin-top: 60px;
}
.space-left{
    margin-left: 1%;
}

#sys-message {
    display: block;
    position: fixed;
    z-index: 99999;
    width: 90%;
    top: 61px;
    margin: 0px auto;
    left: 5%;
    background-color: #FFF;
}

.alert{
	text-align: center;
    margin-top: 0px;
	margin-bottom: 0px;
    border-radius: 0px;
	border: 0px none;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
.alert .close {
	float: none;
	position: absolute;
	top: 0px;
	right: 0px;
	opacity: 0.4;
	font-size: 33px;
	line-height: 50px;
	width: 50px;
}
.alert .close:hover {
	opacity: 0.8;
}
.alert-heading {
	margin-bottom: 15px;
}
.alert-heading, .alert h4, .alert-message, .alert .close {
	color: #FFF;
}
.alert-error {
	background-color: #db6460;
}
.alert-warning {
	background-color: #f1b55f;
}
.alert-info {
	background-color: #6bc6e1;
}
.alert-success {
	background-color: #6cbf6d;
}


.alert > p{
    padding: 5px;
    text-shadow:none;
    font-size: 14px;
    line-height: 21px;
        font-family: 'Montserrat', sans-serif; font-weight:300;
}

.alert-message {
	margin-bottom: 0px;
}

/*NEWS POST*/
.news-post-content .news-post-img{
    margin-bottom: 40px;
}
.news-post-inner h2, h2.imgcap {
    font-size: 36px;
    line-height: 48px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;

}
/*ERROR PAGE*/
.error-content-inner h2{
    font-size: 72px;
    line-height: 86px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;

}

/*FOOTER*/
.master-footer h3{
    font-size: 22px;
    line-height: 29px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
}
.footer-column{
    padding: 100px;
}
.foot-links{
    list-style: none;
    padding: 0;
}
.foot-links .footer-hide {
	display:none;
}
.foot-links li > a >span,
.foot-links li > span.main-nav-link{
    margin: 5px 0;
    border-bottom: solid 1px #ccc;
}
.foot-links li > a > span,
.foot-links li > span.main-nav-link{
    display: block;
    font-family: 'Montserrat',Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 10px 0;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}
.foot-links li > span.main-nav-link {
	cursor: default;
}
.foot-links li.divider {
	display:none;
}
.foot-links li > a:hover > span,
.foot-links li > span.main-nav-link:hover{
    opacity: 0.5;
    -webkit-transition: all .8s linear;
       -moz-transition: all .8s linear;
        -ms-transition: all .8s linear;
         -o-transition: all .8s linear;
            transition: all .8s linear;
}

.twitter-handle{
    font-size: 24px;
    line-height: 31px;
    font-family:  "Montserrat", sans-serif;
    font-weight: 600;
}
.copyright-text{
    margin-top: 15px;
    font-size: 12px;
}





.white {
  color: #ffffff;
}
.silver {
  color: #f2f2f2;
}
.dark {
  color: #4c4c4c;
}
.black {
  color: #1c1c1e;
}
.grey {
  color: #cccccc;
}
.color {
  color: #fff22d;
}
.white-bg {
  background-color: #ffffff;
}
.silver-bg {
  background-color: #f2f2f2;
}
.dark-bg {
  background-color: #4c4c4c;
}
.black-bg {
  background-color: #1c1c1e;
}
.grey-bg {
  background-color: #cccccc;
}
.color-bg {
  /*background-color: #fff22d;*/
}
.trans-dark {
  background-color: rgba(0, 0, 0, 0.5);
}
.trans-dark-low {
  background-color: rgba(0, 0, 0, 0.3);
}
.trans-white {
  background-color: rgba(255, 255, 255, 0.9);
}
.trans-white-low {
  background-color: rgba(255, 255, 255, 0.7);
}
.trans-color {
  background-color: rgba(255, 242, 45, 0.8);
}
/*
.ajax-loader-html {
  background: #fff22d;
}
.pace .pace-progress {
  background-color: #1c1c1e;
}*/
.ms-overlay {
  background-color: rgba(255, 242, 45, 0.8);
}
.main-nav-menu li .main-nav-link {
  color: #ffffff !important;
}
.main-nav-menu-effect li .sub-nav .main-nav-link {
  color: #757575 !important;
}
.main-nav-menu-effect li .sub-nav .main-nav-link:hover {
  color: #ffffff !important;
}
.main-nav-menu-effect li .sub-nav .main-nav-link:after {
  color: #757575 !important;
}
.active-nav, .active {
  color: #4c4c4c !important;
}



.page-head h1.white > span {
  border-color: #ffffff;
}

.team-info h6 > span {
  border-color: #1c1c1e;
}
.foot-links li > a > span,
.foot-links li > span.main-nav-link {
  color: #4c4c4c;
}
.carousel-item:hover {
  /*background-color: #fff22d;*/
}
.team-info:hover {
  background-color: #fff22d;
}
.team-info:hover .triangle-arrow-left {
  border-color: transparent transparent transparent #fff22d;
}
.team-info:hover .triangle-arrow-right {
  border-color: transparent #fff22d transparent transparent;
}
.alert > p {
  background-color: #fff22d;
}

.article-body .sub-heading.white {
	color: #444;
}



/* HOME */
.split-container h2 > span{
    font-size: 18px;
    line-height: 28px;
    font-family:  'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 4px;

}

.split-right-background{
    background: url('../images/bg/split-bg.jpg') no-repeat center center; 
    background-size: cover;
}

.items-more .nav-tabs {border: 0px;}



.blue, .purple, .pink, .yellow, .orange, .green, .carousel-item {
	-webkit-transition: all .16s linear;
       -moz-transition: all .16s linear;
        -ms-transition: all .16s linear;
         -o-transition: all .16s linear;
            transition: all .16s linear;
}
.blue {background-color: #81d4fa;}
.purple {background-color: #8c9eff;}
.pink {background-color: #ff80ab;}
.yellow {background-color: #ffd740;}
.orange {background-color: #ffab91;}
.green {background-color: #9ccc65;}






/*---------------------------------------------------------------------------------------
 WEBSITE MACROS
 ---------------------------------------------------------------------------------------*/
 
 .intro-bg{
    background: url('../images/bg/01.jpg') no-repeat center center; 
    background-size: cover;
}
.text-anim-container{
	width: 100%;
	position: relative;
	overflow:hidden;
}

a {
  text-decoration:none;
}
.article-body a {
	font-weight: 600;
}

/* Horizontal Rules: [hr] */
hr.dark {
	border: 0px;
	height: 1px;
	width: 100%;
	margin: 34px auto;
	background-color: #373737;
}

hr.light {
	border: 0px;
	height: 1px;
	width: 100%;
	margin: 34px auto;
	background-color: #E1E1E1;
}

/* File Type Icon: [file /] */

.file-type {
	display: inline-block;
	width: 80px;
	height: 80px;
	background: no-repeat center center transparent;
	background-size: cover;
}

/* Captions: [cap] */
.article-cap {
	text-align: center;
	padding: 34px;
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
	color: #888;
	font-style: italic;
	line-height: 150%;
	text-transform: none !important;
	letter-spacing: 1px !important;
}

/* Lists: [list] */
.list1 ul {
	list-style-type: none;
	padding: 0px;
	margin: 20px auto 10px;
	text-align: center;
	max-width: 450px;
}
.list1 li {
	display: block;
	border-bottom: 1px solid #F5F5F5;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.list1 li:last-child {
	border-bottom: 0px;
}


.list2 ul {
	list-style-type: square;
	padding: 0px 43px;
	margin: 20px 0px;
	text-align: left;
}
.list2 li {
	color: #686868;
	font-size: 14px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
	padding-left: 10px;
}



.list3 ul {
	margin: 20px 0px 10px;
	text-align: left;
}
.list3 li {
	display: inline;
	color: #888;
	font-size: 85%;
	text-transform: uppercase;
	font-weight: 700;
}
.list3 li:after {
	content:"/";
	color: #CCC;
	padding: 0px 5px;
}
.list3 li:last-child:after {
	content:"";
	padding: 0px;
}


/* Package Table [package] */
.package * {
	-webkit-transition: all .4s linear;
       -moz-transition: all .4s linear;
        -ms-transition: all .4s linear;
         -o-transition: all .4s linear;
            transition: all .4s linear;
}
.package {
	margin-top: -70px;
	display: block;
	padding: 0px 10px 40px;
}
.package .sub {
	letter-spacing: 1px;
}
.package p.pack-price {
	font-size: 70px;
	line-height: 110px;
}
.package p.pack-price sup {
	font-size: 20px;
	margin-left: 0px;
}
.package ul {
	list-style-type: none;
	cursor: default;
	letter-spacing: 1px;
	margin: 0px auto;
	padding: 0px;
	line-height: 30px;
}
.package ul li:hover {
	letter-spacing: 4px;
	color: #DDD;
}
.package:hover .sub {
	letter-spacing: 3px;
}



@media (max-width:1199px) {
	.moduletable.inner-pad-small {
		padding: 40px 10px !important;
	}
}
@media(max-width: 768px) {
	.custom.inner-pad-small,
	.moduletable.inner-pad-small {
		padding: 40px 0px !important;
	}
	.package {
		padding: 0px;
	}
	.package ul li {
		color: #787878;
	}
	.package ul li:hover {
		letter-spacing: 1px;
		color: #787878;
	}
	.lineheight {
		margin-top: 40px;
		line-height:18px;
	}
}
@media(max-width: 480px) {
	
	.package:hover .sub {
		letter-spacing: 2px;
	}
	.custom.inner-pad-small {
		padding: 40px 0px !important;
	}
	.moduletable.inner-pad-small {
		padding: 20px !important;
	}
	.package {
		margin-top: -80px;
	}
	.sub {
		margin-bottom: 40px;
	}
}
/* Media List: [media] */
.media-box {
	margin-top: 10px;
}
.media-box .media-img {
	float:left;
	margin-right: 10px;
}
.media-box .media-body {
	overflow: hidden;
	text-align: left;
}
.media-box .media-heading {
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0px 0px 7px;
}

@media (max-width:768px) {
	.media-box  {
		font-size: 90%;
		line-height: 120%;
	}
	.media-img {
		max-width: 60px;
		width: 60px;
		position: relative;
		display: none;
	}
	.media-img img {
		max-width: 100%;
		width: 100%;
	}
}



/* Frame by Frame: [frame] */
.sp-container ul,
.sp-container ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.sp-container {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.sp-content {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1000;
}
.sp-container h2 {
	position: absolute;
	top: 50%;
	line-height: 50px;
	height: 40px;
	margin-top: -25px;
	font-size: 38px;
	width: 100%;
	text-align: center;
	color: #FFF;
	opacity: 0;
	 font-family: "Montserrat", sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.sp-content h2:last-of-type {
	-webkit-animation-fill-mode: forwards !important;
	-moz-animation-fill-mode: forwards !important;
	-ms-animation-fill-mode: forwards !important;
	animation-fill-mode: forwards !important;
}
@media (max-width: 768px) {
	.sp-container h2 {
		letter-spacing: 4px;
	}
}


/**/
@-webkit-keyframes blurFadeInOut{
	0%{
		opacity: 0;
		-webkit-transform: scale(1.2);
	}
	20%,85%{
		opacity: 1;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(0.8);
	}
}
@-webkit-keyframes blurFadeIn{
	0%{
		opacity: 0;
		-webkit-transform: scale(1.3);
	}
	50%{
		opacity: 0.8;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 1;
		-webkit-transform: scale(1);
	}
}
@-webkit-keyframes fadeInBack{
	0%{
		opacity: 0;
		-webkit-transform: scale(0);
	}
	50%{
		opacity: 0.4;
		-webkit-transform: scale(2);
	}
	100%{
		opacity: 0.2;
		-webkit-transform: scale(5);
	}
}
@-webkit-keyframes fadeInRotate{
	0%{
		opacity: 0;
		-webkit-transform: scale(0) rotate(360deg);
	}
	100%{
		opacity: 1;
		-webkit-transform: scale(1) rotate(0deg);
	}
}
/**/
@-moz-keyframes blurFadeInOut{
	0%{
		opacity: 0;
		-webkit-transform: scale(1.2);
	}
	20%,85%{
		opacity: 1;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(0.8);
	}
}
@-moz-keyframes blurFadeIn{
	0%{
		opacity: 0;
		-moz-transform: scale(1.3);
	}
	50%{
		opacity: 0.8;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 1;
		-moz-transform: scale(1);
	}
}
@-moz-keyframes fadeInBack{
	0%{
		opacity: 0;
		-moz-transform: scale(0);
	}
	50%{
		opacity: 0.4;
		-moz-transform: scale(2);
	}
	100%{
		opacity: 0.2;
		-moz-transform: scale(5);
	}
}
@-moz-keyframes fadeInRotate{
	0%{
		opacity: 0;
		-moz-transform: scale(0) rotate(360deg);
	}
	100%{
		opacity: 1;
		-moz-transform: scale(1) rotate(0deg);
	}
}
/**/
@keyframes blurFadeInOut{
	0%{
		opacity: 0;
		-webkit-transform: scale(1.2);
	}
	20%,85%{
		opacity: 1;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(0.8);
	}
}
@keyframes blurFadeIn{
	0%{
		opacity: 0;
		transform: scale(1.2);
	}
	50%{
		opacity: 0.8;
		-webkit-transform: scale(1);
	}
	100%{
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes fadeInBack{
	0%{
		opacity: 0;
		transform: scale(0);
	}
	50%{
		opacity: 0.4;
		transform: scale(2);
	}
	100%{
		opacity: 0.2;
		transform: scale(5);
	}
}
@keyframes fadeInRotate{
	0%{
		opacity: 0;
		transform: scale(0) rotate(360deg);
	}
	100%{
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

