/** ***************************************
	@Author			Gomal Themes
	@Website		http://gomalthemes.com
	Version:	1.0
	@Created	10:35 PM Sunday, August 14, 2016
	TABLE CONTENTS
	---------------------------
		01. Font Families
		02. General Body, Links & Images
		03. Hamburg Menu
		04. Home Banner
		05. Pages
	---------------------------
 ** ************************************* **/
/**	01. Font Families
*************************************************** **/
@font-face {
    font-family: 'MyriadPro-Light';
    src: url('../fonts/MyriadPro-Light.eot');
    src: local('☺'), url('../fonts/MyriadPro-Light.woff2') format('woff2'),url('../fonts/MyriadPro-Light.woff') format('woff'), url('../fonts/MyriadPro-Light.ttf') format('truetype'), url('../fonts/MyriadPro-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../fonts/MyriadPro-Regular.eot');
    src: local('☺'), url('../fonts/MyriadPro-Regular.woff2') format('woff2'),url('../fonts/MyriadPro-Regular.woff') format('woff'), url('../fonts/MyriadPro-Regular.ttf') format('truetype'), url('../fonts/MyriadPro-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaNewBold-Reg';
    src: url('../fonts/FuturaNewBold-Reg.eot');
    src: local('☺'), url('../fonts/FuturaNewBold-Reg.woff2') format('woff2'),url('../fonts/FuturaNewBold-Reg.woff') format('woff'), url('../fonts/FuturaNewBold-Reg.ttf') format('truetype'), url('../fonts/FuturaNewBold-Reg.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaNewLight-Reg';
    src: url('../fonts/FuturaNewLight-Reg.eot');
    src: local('☺'), url('../fonts/FuturaNewLight-Reg.woff2') format('woff2'),url('../fonts/FuturaNewLight-Reg.woff') format('woff'), url('../fonts/FuturaNewLight-Reg.ttf') format('truetype'), url('../fonts/FuturaNewLight-Reg.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/** ************************************* **/
/**	02. General Body, Links & Images
*************************************************** **/
body {
    font-family: 'MyriadPro-Light';
    font-size: 18px;
    color: #333333;
}
body,
html {
    height: 100%;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
    text-decoration: none;
}
a{
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    color: #333333;
}
a:hover,a:focus,a:active{
    text-decoration: none;
    outline: none;
    color: #000;
}
img{
    max-width: 100%;
    height: auto;
}
section {
    width: 100%;
    padding: 80px 0;
    position: relative;
    clear: both;
    display: table;
}
h1{
    font-family: 'FuturaNewBold-Reg';
    font-size: 40px;
}
h2{
    font-family: 'FuturaNewBold-Reg';
    font-size: 30px;
}
h3{
    font-family: 'FuturaNewBold-Reg';
    font-size: 22px;
}
h4{
    font-family: 'MyriadPro-Regular';
}
h5{
    font-family: 'MyriadPro-Regular';
}
h6{
    font-family: 'MyriadPro-Regular';
}
div.middle {
    display: table;
    height: 100%;
    z-index: 10;
    position: relative;
}
div.middle > div {
    vertical-align: middle;
    display: table-cell;
    height: 100%;
}
/** ************************************* **/
/**	03. Hamburg Menu
*************************************************** **/
.hamburg-menu {
    position: absolute;
    width: 100%;
    z-index: 9999;
    top: 55px;
    height: 55px;
}
.hamburg-menu .menu-icon {
    width: 51px;
    height: 51px;
    float: right;
    border: 1px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
    text-align: center;
}
.hamburg-menu .menu-icon span {
    width: 30px;
    height: 6px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 22px auto 22px auto;
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-menu .menu-icon span:before {
    content: '';
    border-top: 1px solid #fff;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    top: -6px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-menu .menu-icon span:after {
    content: '';
    border-top: 1px solid #fff;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    bottom: -7px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-overlay {
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100%;
    right: 0;
    background: #333333;
    display: none;
    left: 0;
    opacity: 0;
}
.hamburg-overlay.open{
    display: block;
    opacity: 1;
}
.hamburg-overlay ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
}
.hamburg-overlay li a {
    padding: 7px 15px;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'FuturaNewBold-Reg';
    color: #cccccc;
    display: inline-block;
    position: relative;
    margin: 3px 0;
}
.hamburg-overlay li a:hover {
    color: #fff;
}
.hamburg-overlay li a:before {
    content: '';
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background: #cccccc;
    height: 1px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
}
.hamburg-overlay li a:after {
    content: '';
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #cccccc;
    height: 1px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
}
.hamburg-overlay li a:hover:after,.hamburg-overlay li a:hover:before,.hamburg-overlay li.active a:after,.hamburg-overlay li.active a:before{
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-overlay li.active a{
    color: #fff;
}
.hamburg-overlay div.middle > div,.hamburg-overlay div.middle {
    width: 100%;
}
.hamburg-menu .menu-icon.active span:before {
    margin-left: -15px;
    top: 4px;
    width: 32px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-menu .menu-icon.active span:after{
    margin-left: -16px;
    bottom: 0;
    width: 32px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transition: all 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}
.hamburg-menu .menu-icon.active span {
    border: 0;
}
/** ************************************* **/
/**	04. Home Banners
*************************************************** **/
.home-banner {
    height: 775px;
    color: #fff;
}
.overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
}
.home-banner .overlay {
    background: rgba(51, 51, 51, 0.5);
    z-index: 9;
}
.home-banner .caption-holder{
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.home-banner h1 {
    padding-bottom: 20px;
    font-size: 75px;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px #bbbbbb;
    margin: 0;
}
.home-banner h2 {
    font-size: 150px;
    font-family: 'Permanent Marker', cursive;
    padding: 65px 0;
    margin: 0;
    text-shadow: 0px 1px 1px #bbbbbb;
    text-align: center;
    border-right: 6px solid #fff;
}
.home-banner h1:first-of-type {
    border-bottom: 6px solid #fff;
}
.home-banner h1:last-of-type {
    float: right;
    text-align: right;
    display: inline-block;
    border-top: 6px solid #fff;
}
/** ************************************* **/
/**	05. Pages
*************************************************** **/
h1.title{
    display: inline-block;
    text-align: center;
    margin: 0 0 75px 0;
    padding: 7px 10px;
    position: relative;
}
h1.title:before {
    content: '';
    width: 50%;
    max-width: 130px;
    position: absolute;
    right: 0;
    top: 0;
    background: #333333;
    height: 1px;
}
h1.title:after {
    content: '';
    width: 50%;
    max-width: 130px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #333333;
    height: 1px;
}
.color-white h1.title:before,.color-white h1.title:after {
    background: #fff;
}
/* Services */
.services {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    cursor: crosshair;
}
.services .fa{
    font-size: 36px;
    color: #666666;
    margin-bottom: 25px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.services:hover .fa {
    margin-top: -5px;
    margin-bottom: 30px;
    color: #333;
}
/* Portfolio */
.portfolioFilter {
    margin-bottom: 75px;
}
.portfolioFilter a {
    font-size: 16px;
    font-family: 'MyriadPro-Regular';
    margin: 0 10px;
}
.portfolioFilter a.current {
    color: #000;
}
.box {
    position: relative;
    overflow: hidden;
}
.box img {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.box .overbox {
    background: rgba(51, 51, 51, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    color: #fff;
    z-index: 100;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
}
.box:hover .overbox {
    opacity: 1;
}
.box .overtext {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
}
.box .title {
    font-size: 2.5em;
    text-transform: uppercase;
    opacity: 0;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
}
.box:hover .title,
.box:focus .title {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -moz-transform: translateY(0px);
}
.box .tagline {
    font-size: 0.8em;
    opacity: 0;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
}
.box:hover .tagline,
.box:focus .tagline {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -moz-transform: translateX(0px);
}
.port-item .tagline{
    display: inline-block;
    width: 45px;
    height: 45px;
    background: url("../images/expand.png") no-repeat center center;
    background-size: 100%;
}
.port-item .overbox {
    text-align: center;
}
.port-item div.middle,.port-item div.middle > div {
    width: 100%;
}
/* Counters */
.border-top-bottom {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.counter {
    float: left;
    width: 100%;
    text-align: center;
}
.counter h1{
    color: #666666;
    margin-bottom: 25px;
    margin-top: 0;
}
.counter h3 {
    color: #333333;
}
div.br {
    border-right: 2px solid #ccc;
}
/* Team Members */
.team-member {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.team-meta {
    float: left;
    width: 100%;
    position: relative;
    transition: transform .35s ease-out;
    -webkit-transition: transform .35s ease-out;
    -o-transition: transform .35s ease-out;
    -moz-transition: transform .35s ease-out;
}
.team-member:hover .team-meta {
    position: absolute;
    background: #fafafa;
}
.team-meta .left{
    width: 50%;
    float: left;
    padding: 0 15px 10px 15px;
}
.team-meta .right{
    width: 50%;
    float: left;
    text-align: center;
    background: #333333;
    padding: 34px 0 35px 0;
    opacity: 0;
}
.team-meta .right a {
    font-size: 21px;
    color: #fff;
    display: inline-block;
    text-align: center;
    margin: 0 7px;
}
.client-logos {
    height: 150px;
    text-align: right;
}
.client-logos.text-center {
    text-align: center;
}
.clients-padding{
    padding: 150px 0 150px 0;
}
.clients-padding .max-550 {
    padding-right: 50px;
}
.clients-log-padding{
    padding: 50px 0 50px 0;
}
.client-logos div.middle,.client-logos div.middle > div{
    width: 100%;
}
/* Footer */
.footer {
    color: #fff;
}
.footer h3 {
    margin-top: 0;
    margin-bottom: 25px;
}
.widget {
    width: 100%;
    float: left;
}
.footer .widget input[type="text"],.footer .widget input[type="email"]{
    width: 85%;
    background: none;
    border: 2px solid #fff;
    outline: none;
    padding: 8px 15px;
    height: 60px;
    float: left;
}
.footer .widget button{
    float: left;
    width: 10%;
    margin-left: 5%;
    border: 2px solid #fff;
    border-radius: 50%;
    max-width: 35px;
    height: 35px;
    margin-top: 13px;
    background: none;
    position: relative;
    text-align: center;
    outline: none;
    line-height: 33px;
}
.footer .widget button .fa {
    margin-left: 2px;
}
.social {
    float: left;
    width: 100%;
}
.social a{
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #666666;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    font-size: 21px;
    margin-right: 15px;
}
.social a:hover {
    background: none;
    color: #fff;
}
/* Homepage 2 */
.navbar-nav>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 0 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
}
.navbar-nav>li:hover > ul {
    display: block;
}
.navbar-nav>li>ul>li>a {
    display: block;
    padding: 7px 20px;
    clear: both;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-family: 'FuturaNewBold-Reg';
    text-transform: uppercase;
}
.navbar-nav>li>ul>li {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.navbar-nav>li>ul>li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.navbar-nav>li>ul>li:hover:before, .navbar-nav>li>ul>li:focus:before, .navbar-nav>li>ul>li:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.navbar-nav>li>ul>li:hover > a {
    color: #fff;
}
.navbar-default a.navbar-brand {
    font-size: 60px;
    font-family: 'Permanent Marker', cursive;
    color: #fff;
    height: auto;
}
.navbar-default a.navbar-brand:hover,.navbar-default a.navbar-brand:active,.navbar-default a.navbar-brand:focus {
    color: #fff;
}
.navbar-default .navbar-nav>li>a{
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'FuturaNewBold-Reg';
}
.navbar-default{
    background: none;
    border: 0;
}
.nav-border {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: relative;
}
@media (min-width: 768px){
    .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
        margin-left: 0;
    }
}
.nav-border:before {
    content: '';
    width: 35%;
    height: 2px;
    background: #fff;
    top: 0;
    left: 0;
    position: absolute;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover{
    color: #fafafa;
}
.navbar-fixed-top.navbar-absolute-top {
    position: absolute;
}
.home-slider {
    position: relative;
    padding: 0;
    color: #fff;
    overflow: hidden;
}
.home-slider .bg-image{
    background-position: 50% 0 !important;
}
.home-slider .carousel-inner>.item {
    height: 775px;
}
.carousel-control{
    background-image: none !important;
    opacity: 1 !important;
}
.carousel-home div.middle,.carousel-home div.middle div {
    width: 100%;
    text-align: center;
}
.carousel-home h1 {
    font-size: 75px;
}
.carousel-home h1 > span {
    font-family: 'FuturaNewLight-Reg';
}
.carousel-home a.left,.carousel-home a.right {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 100px;
    background: #333333;
    color: #fff;
    line-height: 100px;
    font-size: 21px;
    margin-top: -50px;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.carousel-home a.left{
    border-top-right-radius: 50%;
    -webkit-border-top-right-radius: 50%;
    -o-border-top-right-radius: 50%;
    -moz-border-top-right-radius: 50%;
    left: -50px;
    border-bottom-right-radius: 50%;
    -webkit-border-bottom-right-radius: 50%;
    -moz-border-bottom-right-radius: 50%;
    -o-border-bottom-right-radius: 50%;
    padding-right: 30px;
    text-align: right;
}
.carousel-home a.right{
    border-top-left-radius: 50%;
    -webkit-border-top-left-radius: 50%;
    -o-border-top-left-radius: 50%;
    -moz-border-top-left-radius: 50%;
    right: -50px;
    border-bottom-left-radius: 50%;
    -webkit-border-bottom-left-radius: 50%;
    -moz-border-bottom-left-radius: 50%;
    -o-border-bottom-left-radius: 50%;
    padding-left: 30px;
    text-align: left;
}
.port-equal.space .box {
    margin: 7px;
}
.double-bg {
    background: linear-gradient(90deg, #fafafa 50%, #333333 50%);
}
.padding-design {
    padding: 55px 0 55px 0;
}
.max-550 {
    max-width: 550px;
    width: 100%;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}
.padding-design .max-550 {
    padding-left: 35px;
}
.testimonials-carousel a.left,.testimonials-carousel a.right {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 2px solid #333;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
}
.color-white .testimonials-carousel a.left,.color-white .testimonials-carousel a.right {
    border-color: #fff;
    color: #fff;
}
.testimonials-carousel .carousel-inner {
    margin-bottom: 30px;
}
.testimonials-carousel {
    padding-right: 30px;
}
.icon-testimonials {
    position: relative;
}
.icon-testimonials:before{
    content: '\f10e';
    font-family: FontAwesome;
    right: 10px;
    top: 10px;
    font-size: 150px;
    position: absolute;
    color: #525252;
    line-height: 125px;
}
/* Home Page 3 */
.home-banner2 {
    height: 775px;
    color: #fff;
}
.home-banner2 .overlay {
    background: rgba(0,0,0,0.85);
}
.home-banner2 h1{
    font-size: 75px;
}
.home-banner2 h1 > span {
    font-family: 'FuturaNewLight-Reg';
}
.home-banner2 .caption-holder {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
/* Progress Bar */
.progress-bar-tooltip {
    float: right;
    position: relative;
    right: 0;
    top: -30px;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    padding-right: 10px;
}
.progress {
    overflow: inherit;
    background: #222222;
    box-shadow: none;
    border-radius: 0;
    height: 4px;
    margin-bottom: 27px;
}
.progress-bar {
    background: #fff;
    width: 0;
}
.progress-bars p {
    font-family: 'FuturaNewBold-Reg';
    text-transform: uppercase;
}
.padding-skills {
    padding:  75px 0 66px 0;
}
.padding-skills .max-550 {
    padding-left: 50px;
}
/* Homepage 4 */
.home-banner3 {
    height: 775px;
    color: #fff;
}
.home-banner3.bg-image {
    background-position: 50% 0 !important;
}
.home-banner3 .overlay {
    background: rgba(0,0,0,0.50);
}
.home-banner3 h1{
    font-size: 75px;
    margin: 0;
    display: inline-block;
}
.home-banner3 h1 > span {
    font-family: 'FuturaNewLight-Reg';
    font-size: 72px;
}
.home-banner3 .caption-holder {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
    padding: 25px 25px 25px 35px;
    position: relative;
}
.home-banner3 .caption-holder:after {
    content: '';
    width: 50%;
    bottom: 0;
    left: 0;
    position: absolute;
    height: 5px;
    background: #fff;
}
div.middle.bottom > div {
    vertical-align: bottom;
}
.form-control{
    height: 45px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
.form-control:focus,.form-control:active,.form-control:hover{
    outline: none;
    border-color: #333333;
    box-shadow: none;
}
textarea.form-control{
    height: 200px;
}
.contact-widget {
    float: left;
    width: 100%;
}
.contact-widget ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 15px;
}
.contact-widget ul li {
    float: left;
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 25px;
    font-family: 'MyriadPro-Regular';
    font-size: 14px;
    border-bottom: 1px solid #cccccc;
}
.contact-widget ul li:last-child {
    border-bottom: 0;
}
.contact-widget h3 {
    margin-top: 0;
    text-transform: uppercase;
}
.contact-widget p,.contact-widget a {
    color: #666666;
}
.contact-form {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
/* About Page */
.home-banner2.small-banner {
    background-position: 50% 0 !important;
    height: 400px;
}
.home-banner2.small-banner .overlay {
    background: rgba(0, 0, 0, 0.5);
}
.home-banner2.small-banner h1{
    text-shadow: 0px 1px 1px #bbbbbb;
}
/* Services */
.play-btn a{
    color: #fff;
    font-size: 120px;
    margin-top: 25px;
    display: inline-block;
}
/* Pricing */
.pricing {
    float: left;
    width: 100%;
    text-align: center;
    border: 1px solid #333333;
    margin-top: 25px;
}
.pricing .price-head{
    float: left;
    width: 100%;
    padding: 30px;
}
.pricing.active .price-head{
    padding: 50px 30px;
}
.pricing .price-head h3 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.pricing .price-price {
    float: left;
    width: 100%;
    padding: 30px;
    background: #fafafa;
}
.pricing .price-price h2 {
    margin: 0;
    padding: 0;
}
.pricing .price-desc {
    float: left;
    width: 100%;
    padding: 35px;
}
.pricing.active .price-price{
    background: #fff;
    color: #333333;
}
.pricing .price-desc p {
    margin-bottom: 25px;
}
.pricing .price-desc .btn {
    margin-top: 15px;
}
.pricing.active .price-desc .btn {
    color: #fff;
}
.pricing.active {
    background: #333333;
    color: #fff;
    margin-top: 0;
    padding-bottom: 10px;
}
/* Blog Pages */
.blog-post {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}
.pagination>li:first-child>a, .pagination>li:first-child>span{
    border-radius: 0;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 0;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover,.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover{
    background: #333;
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.pagination>li>a, .pagination>li>span {
    color: #333;
    font-family: 'MyriadPro-Regular';
}
.blog-post.round img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
}
blockquote {
    padding: 20px 30px 20px 30px;
    margin: 35px 0;
    font-size: 20px;
    border: 0;
    font-family: 'MyriadPro-Regular';
    font-style: italic;
    position: relative;
}
blockquote:before,blockquote:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 35%;
    background: #333;
}
blockquote:before{
    left: 0;
    top: 0;
}
blockquote:after {
    right: 0;
    bottom: 0;
}
.share-icons {
    float: left;
    width: 100%;
    padding: 25px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin-top: 75px;
}
.share-icons h3 {
    float: left;
    margin: 0;
    padding: 0;
}
.social-share {
    float: right;
}
.social-share a {
    margin-right: 5px;
    color: #666666;
    width: 36px;
    height: 36px;
    line-height: 38px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
}
.social-share a:hover {
    background: #222222;
    color: #fff;
}
.social-share a:last-of-type {
    margin-right: 0;
}
.comments-sec .media-object {
    max-width: 150px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
}
.comments-sec .media-heading {
    font-size: 18px;
    margin-top: 25px;
}
.comments-sec .media-heading > span {
    font-size: 14px;
    color: #666666;
    font-family: 'MyriadPro-Light';
    padding-left: 30px;
}
.comments-sec .media-body{
    padding-left: 30px;
}
.comments-sec .media {
    margin-bottom: 25px;
}
.reply-title {
    margin-bottom: 40px;
}
.project-info {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.project-info li:first-child h3{
    margin-top: 0;
}
.contact-widget.cw2 {
    margin-top: 35px;
}
.contact-widget.cw2 ul li {
    width: 25%;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.contact-widget.cw2 ul li .fa {
    font-size: 16px;
    margin-right: 5px;
}