/*
Theme Name: VortexTube
Author: VortexTube
Text Domain: vortextube

VortexTube is based on Underscores https://underscores.me/, (C) 2012-2022 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* 
All style editing is done via css/main.scss
*/


/* LOAD IN TEMPORARY JASON TWEAKS */
@import "jason.css"; 


/* TPX CSS ADDITIONAL */



header{ background-position: center top; }
header .container .header-top{ display: flex; justify-content: space-between; }
header .header-right{ padding-top: 10px; }
.header__contact .header-phone{ 
	/* background: url(img/phone-icon.png) no-repeat; padding-left: 44px; background-position-y: center; */ 
	display: flex;
}
.header__contact .header-phone .fa-phone-rotary{
	margin-right: 25px;
}
/*
.header-phone .fa-phone-rotary::before {
	color: #fff;
	font-size: 28px;
}
.header-phone a:hover .fa-phone-rotary::before {
	color: #C5470F;
}
*/
.header__contact .header-phone a{
	font-size: 28px;
	color: #fff;
	margin-bottom: 0;
	transition: 0.5s;
	flex-direction: row;
	opacity: 0.9;
}
.header__contact .header-phone a:hover{ opacity: 1; transition: 0.5s;}
@media (min-width: 1300px) {
	.header__logo .logo {
		height: 73px;
	}
}

.list-of-socials {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
	border-left: 2px solid #fff;
	padding-left: 28px;
	margin-left: 36px;

}
.list-of-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    opacity: 0.6;
    color: #1D394F;
    border-radius: 50%;
    font-size: 20px;
	text-decoration: none;
	margin-left: 8px;
	transition: 0.5s; 
}
.list-of-socials a:hover {
	background: #FFF;
	opacity: 1;
}
.navbar-nav .nav-link {
	color: #fff;
	padding-top: 2rem;
    text-transform: uppercase;
	font-weight: 500;
	transition: 0.8s; 
	opacity: 0.9;
}
.navbar-nav .fa-angle-down::before {
	color: #393432;
}
.navbar-nav .menu-item-has-children .nav-link:visited{
	color: #fff;
}
.navbar-nav .menu-item-has-children .nav-link:hover, .navbar-nav .menu-item-has-children .nav-link:focus{
	color: #393432;
}
.navbar-nav .nav-link:visited{
	color: #fff;	
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus{
	color: #393432;
	opacity: 1;
}
header .container .header-bottom{
	padding-top: 150px;
	min-height: 700px;
}
.header-bottom h1{
	color: #fff;
	font-size: 120px;
	font-weight: 700;
	line-height: 120px;
	padding-bottom: 30px;
}

.header-bottom .hero-button{
	padding: 16px 70px 20px;
	display: inline-block;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	text-decoration: none;
	margin-top: 30px;
	margin-left: 10px;
	transition: 0.5s; 
}

.header-bottom .hero-button:hover{
	border: 1px solid #C5470F;
	color: #C5470F;
}

.header-bottom .hero-button.solid-white{
	background: #FFF;
	border: none;
	text-align: center;
	color: #333;
	text-decoration: none;
	margin-top: 30px;
	margin-left: 10px;
	transition: 0.8s; 
}

.header-bottom .hero-button.solid-white:hover{
	background: #333;
	color: #FFF;
}

.header-bottom .hero-button.solid-grey{
	background: #444;
	border: none;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	margin-top: 30px;
	margin-left: 10px;
	transition: 0.8s; 
}

.header-bottom .hero-button.solid-grey:hover{
	background: #000;
}


.header-bottom .hero-button.ghost-white {
	padding: 16px 70px 20px;
	display: inline-block;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	text-decoration: none;
	margin-top: 30px;
	margin-left: 10px;
	transition: 0.8s; 
}

.header-bottom .hero-button.ghost-white:hover{
	background: #FFF;
	color: #333;
	border: 1px solid #fff;
}


.header-bottom .hero-button span{
	font-size: 25px;
	font-weight: 300;
}

.site-header{ border: none; margin-bottom: 100px; }
.py-lg-max{
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}

.parallax-tpx{
	position: relative;
	overflow: hidden;
	background-color: #fff;
}
.parallax-tpx .container{
	height: 100vh;
}
.parallax-bg{
	background-position: center top;
	background-repeat: no-repeat;
	max-height: 100vh;
}

.scroll-down__btn {
	position: absolute;
	bottom: 35px;
	left: 50%;
	transform: translate(-50%);
	background: #fff;
	display: inline-block;
	padding: 15px;
	border: none;
	border-radius: 15px;
	cursor: none !important;
}
svg.icon-tabler-arrow-narrow-down{
	position: absolute;
	bottom: 10px;
	right: 2px;
	animation: animateBtnArrow 1s infinite linear;
}
@keyframes animateBtnArrow {
	0%, 100% {
		transform: translateY(5px);
	}
	50% {
		transform: translateY(10px);
	}
}


.section.two-columns{
	padding-bottom: 90px;
	padding-top: 0;
}
.two-columns .content-item--full {
    width: 100%;
}
.d-flex {
    flex-wrap: wrap;
}
.two-columns .left-cl {
    width: 50%;
	/* padding-right: 100px; */
}
.two-columns.left .left-cl {
	padding-right: 20px;
}
.two-columns.right .left-cl{
	padding-left: 10px;
}
@media only screen and (min-width: 1024px) {
    .two-columns.right .image {
        margin-left: auto;
    }
	.two-columns.right .image img{
        width: 100%;
    }
}
.two-columns .content-item {
    position: relative;
    width: 50%;
}
.two-columns.right .content-item {
    padding-right: 55px;
}
.two-columns.left .content-item {
    padding-right: 40px;
    padding-left: 30px;
}
.two-columns .left-cl .image-item {
    width: auto;
}

/*quick dirty for containers */
.page-id-772 .two-columns h2{
	font-family: Oswald !important;
	font-weight: 500 !important;
	font-size: 28px !important;
	color: #EC4800;
	text-transform: uppercase;
	margin: 0 0 4px 0;
}

.page-id-772 .two-columns h5{
	margin: 1.7em 0 0 0;
}




.two-columns .content-item h2{
	font-family: Oswald;
	font-weight: 500;
	font-size: 28px;
	color: #EC4800;
	text-transform: uppercase;
	margin: 0 0 4px 0;
}
.two-columns .content-item h4{
	font-family: Roboto Condensed;
	font-weight: 500;
	font-size: 42px;
	line-height: 38px;
	color: #393432;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.two-columns.left .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.two-columns .content-item .wysiwyg{
	padding-bottom: 30px;
}
.two-columns .content-item .wysiwyg ul, .two-columns .left-cl .wysiwyg ul{
	padding: 0;
}
.two-columns .content-item .wysiwyg ul li, .two-columns .left-cl .wysiwyg ul li{
	list-style: none;
	padding-left: 18px;
	margin: 12px auto;
	background: url(img/li-bg.png) no-repeat left 12px;
}
.two-columns .content-item .link{
	border: 1px solid #393432;
	text-align: center;
	color: #393432;
	text-decoration: none;
	padding: 15px 40px;
	font-size: 18px;
	transition: 0.5s; 
}
.two-columns .content-item .link:hover{
	border: 1px solid #C5470F;
	color: #C5470F;
}

.section.two-columns-style-2{
	padding-bottom: 0;
	padding-top: 0;
}
.two-columns-style-2 .content-item--full {
    width: 100%;
}
.two-columns-style-2 .container{
	/* padding: 0; */
}
.two-columns-style-2.right{
	background-color: #393432;
}
.two-columns-style-2.left{
	background-color: #C5470F;
	margin-bottom: 100px;
}
.d-flex {
    flex-wrap: wrap;
}
.two-columns-style-2 .left-cl {
	display: none;
    /* width: 66%; */
}
.two-columns-style-2.left .left-cl {
	padding-right: 55px;
}
@media only screen and (min-width: 1024px) {
    .two-columns-style-2.right .image {
        margin-left: auto;
    }
}
.two-columns-style-2 .content-item {
    position: relative;
    width: 32%;
}
.two-columns-style-2.right .content-item {
    padding-right: 55px;
	padding-left: 0;
	padding-bottom: 100px;
}
.two-columns-style-2.left .content-item {
    padding-left: 80px;
	padding-bottom: 100px;
}
.two-columns-style-2 .left-cl .image-item {
    width: auto;
}
.two-columns-style-2 .left-cl .image-item img{
    width: 100%;
}
.two-columns-style-2 .content-item h2{
	font-family: 'Roboto';
	font-weight: 300;
	font-size: 50px;
	line-height: 50px;
	color: #fff;
	text-transform: none;
}
.two-columns-style-2 .content-item h4{
	font-family: 'Roboto';
	font-weight: 400;
	font-size: 36px;
	color: #393432;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.two-columns-style-2.left .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.two-columns-style-2 .content-item .wysiwyg{
	padding-bottom: 30px;
	color: #fff;
}
.two-columns-style-2 .content-item .wysiwyg.outer{
	padding-top: 50px;
}
.two-columns-style-2 .content-item .wysiwyg ul{
	padding: 0;
}
.two-columns-style-2 .content-item .wysiwyg ul li{
	list-style: none;
	padding-left: 18px;
	margin: 12px auto;
	background: url(img/li-bg.png) no-repeat left 12px;
}
.two-columns-style-2 .content-item .link{
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 15px 40px;
	font-size: 18px;
	transition: 0.5s; 
}
.two-columns-style-2 .content-item .link:hover{
	background: #FFF;
	color: #333;
}
.two-columns-style-2 .section__wrapper{
	position: relative;
}
.two-columns-style-2 .prl-img{
	height: 100%;
	position: absolute;
	width: 60%;
	left: 40%;
}
.two-columns-style-2.left .prl-img{
	left: 0;
}

.section.two-columns-style-3{
	padding-bottom: 90px;
	padding-top: 0;
}
.two-columns-style-3 .content-item--full {
    width: 100%;
}
.d-flex {
    flex-wrap: wrap;
}
.two-columns-style-3 .left-cl {
    width: 60%;
	/* padding-right: 100px; */
}
.two-columns-style-3.left .left-cl {
	/* padding-right: 20px; */
}
.two-columns-style-3.right .left-cl{
	/* padding-left: 10px; */
}
@media only screen and (min-width: 1024px) {
    .two-columns-style-3.right .image {
        margin-left: auto;
    }
	.two-columns-style-3.right .image img{
        width: 100%;
    }
}
.two-columns-style-3 .content-item {
    position: relative;
    width: 40%;
}
.two-columns-style-3.right .content-item {
    padding-top: 100px;
    padding-right: 100px;
}
.two-columns-style-3.left .content-item {
    padding-top: 100px;
    padding-left: 100px;
}
.two-columns-style-3 .left-cl .image-item {
    width: auto;
}
.two-columns-style-3 .content-item h2{
	font-family: Oswald;
	font-weight: 400;
	font-size: 24px;
}
.two-columns-style-3 .content-item h4{
	font-family: Roboto;
	font-weight: 400;
	font-size: 36px;
	color: #393432;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.two-columns-style-3.left .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.two-columns-style-3 .content-item .wysiwyg{
	padding-bottom: 30px;
}
.two-columns-style-3 .content-item .wysiwyg ul{
	padding: 0;
}
.two-columns-style-3 .content-item .wysiwyg ul li{
	list-style: none;
	padding-left: 18px;
	margin: 12px auto;
	background: url(img/li-bg.png) no-repeat left 12px;
}
.two-columns-style-3 .content-item .link{
	border: 1px solid #393432;
	text-align: center;
	color: #393432;
	text-decoration: none;
	padding: 15px 40px;
	font-size: 18px;
	transition: 0.5s; 
}
.two-columns-style-3 .content-item .link:hover{
	border: 1px solid #C5470F;
	color: #C5470F;
}

.single-case-studies .two-columns-style-3 .content-item h2{
	font-family: Oswald;
	font-weight: 400;
	font-size: 40px;
}

.single-case-studies .two-columns-style-3 .content-item p{
	font-size: 20px;
}

.single-case-studies .two-columns-text .left-cl h2 {
    font-size: 34px;
}

.single-case-studies .two-columns-text p {
    font-size: 20px;
}

.section-latest-case-studies .heading{
	font-family: Roboto;
	font-weight: 300;
	font-size: 60px;
	text-transform: none;	
	margin-bottom: 20px;
}
.case-studies-list{
	display: flex;
	justify-content: space-between;
}
.case-studies-list article{
	width: 32%; /* JASON ADDED BACK IN? */
	/*padding-right: 20px;*/
}
.case-studies-list article:last-child{
	/*padding-right: 0;*/
}

.case-studies-list article .cs-image{
	overflow: hidden;
}
.case-studies-list article .cs-image img{ width: 100%; transition: 2s; aspect-ratio: 1.777;}
.case-studies-list article .cs-image img:hover{
	scale: 1.05;
}
.case-studies-list article .entry-header{
	background: none;
}
.case-studies-list article .entry-header h4.cat-title{
	font-family: Oswald;
	font-weight: 500;
	font-size: 28px;
	color: #EC4800;
	text-transform: uppercase;
	margin: 20px 0 4px 0;
}
.case-studies-list article .entry-header h3.entry-title{
	font-family: 'Roboto Condensed';
	font-weight: 500;
	font-size: 42px;
	line-height: 38px;
	color: #393432;
	margin-bottom: 15px;
}
.case-studies-list article .entry-header .title-link{
	text-decoration: none;
	transition: 0.5s; 
}
.case-studies-list article .entry-header .title-link:hover h3.entry-title{
	color: #C5470F;
}
.case-studies-list article a.entry-link{
	font-size: 18px;
	text-decoration: none;
	border-bottom: 1px solid #EC4800;
	padding-bottom: 6px;
	transition: 0.5s; 
	line-height: 40px;
}
.case-studies-list article a.entry-link:hover span{
	color: #C5470F;
}
.section-latest-case-studies .bottom-button{ display: none; }

.section-let-talk{
	margin-top: 40px;
	padding-bottom: 0;
}
.section-let-talk .container .wrapper{
	background: #A1D3F3;
	display: flex;
	padding: 90px 0;
}
.section-let-talk .container .wrapper .col-lg-6{
	padding: 0 60px 0 120px;
}
.section-let-talk .section-title{
	font-family: Roboto;
	font-weight: 300;
	font-size: 60px;
	color: #393432;
	margin: 0;
}
.section-let-talk .introdution{
	margin-bottom: 50px;
}
.section-let-talk .link{
	background-color: #393432;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 15px 50px;
	font-size: 18px;
	transition: 0.5s; 
}
.section-let-talk .link:hover{
	background-color: #C5470F;

}
.section-let-talk .right-col{
	display: flex;
	flex-direction: column;
	margin: auto;
}
.section-let-talk .contact-link {
	font-family: Oswald;
	font-weight: 500;
	font-size: 2.2em;
	text-decoration: none;
	padding-bottom: 10px;
	transition: 0.5s;
	display: block;
}
.section-let-talk .contact-link:hover{
	color: #C5470F;
}

.section-let-talk.style2 .container .wrapper{
	background: none;
	padding-bottom: 135px;
}
.section-let-talk.style2 .container .wrapper .right-col.col-lg-6{
	/*padding-top: 110px !important; JASON*/
	padding-left: 75px;
	text-align: left;
}
.section-let-talk.style2 .wrapper .left-col.col-lg-6{
	padding-top: 61px;
	padding-right: 81px;
	padding-bottom: 61px ;
	text-align: right;
}
.section-let-talk.style2 .wrapper .left-col{
	background: url('img/let-talk-devider.png') no-repeat right bottom;
}
.section-let-talk.style2 .link{
	padding: 12px 45px;
}
.section-let-talk.style2 .section-title{
	font-size: 32px;
	font-weight: 400;
}

.section-let-talk.style1 .fa-envelope {margin: 0 6px 0 0;}
.section-let-talk.style1 .fa-phone-rotary {margin: 0 6px 0 0;}


.logo-swiper-container{
	display: flex;
	justify-content: space-between;
	margin: 60px auto 100px;
}
.logo-swiper { width: 75%; }
.logo-swiper-container h3.section-title{
	font-family: Roboto;
	font-weight: 300;
	font-size: 50px;
	color: #393432;
	padding-top: 60px;
}
.logo-swiper-container .swiper-button-next, .logo-swiper-container .swiper-button-prev{ top: 65%; }
@media (min-width: 1300px) {
	.footer__logo img {
		height: 100px !important;
	}
}
@media (min-width: 992px) {
	.swiper-initialized ~ .swiper-button-prev, .swiper-initialized ~ .swiper-button-next{
		display: none;
	}
}


footer .bg-dark{ background-color: #393431 !important; }
.footer__logo {
	max-width: 100%;
}
@media (min-width: 1300px) {
	.footer__logo img {
		height: 100px !important;
	}
}
.footer__top{ padding-top: 70px; }
.footer__top .col-lg-3{ color: #fff; }
.footer__body {
	border-top: none;
}
.footer-menu, .footer-services{ padding-top: 20px; }
.footer-menu h4, .footer-services h4{ color: #fff; font-weight: 400; }
.footer-phone, .footer-email { font-size: 24px; margin: 0;}
.footer-phone {margin-bottom: 20px;}
.footer-phone a, .footer-email a{ color: #fff; text-decoration: none; transition: 0.5s; }
.footer-phone a:hover, .footer-email a:hover{ color: #C5470F; }
.footer-nav {
	display: flex;
	flex-direction: column;
	color: #fff;
}
.footer-nav li, .services-nav li{
	margin: 12px auto 12px 0;
    line-height: 22px;
}
.footer-nav li a, .services-nav li a{
	color: #fff;
	/*text-decoration: none;*/
	line-height:
}

ul.services-footer-temp {color: #CCC; column-count: 2;}
.services-footer-temp li {margin: 0 0 24px 0;}


.site-footer .col-lg-4{ padding: 0; }
.services-nav{
	display: flex;
	flex-direction: row;
}
.services-nav div{ padding-right: 30px; width: 50%; }
.site-footer a{ transition: 0.5s; }
.site-footer a:hover{ color: #C5470F; }
.footer__top .list-of-socials { border: none; margin-left: -35px; }
.footer__top .list-of-socials a { 
	color: #393432; 
	width: 42px;
	height: 42px;
	font-size: 25px;
	margin-left: 10px;
}

.footer__info.bg-primary{ background-color: #F6F5EE !important; }
.footer__info a{
	color: #636360 !important;
	transition: 0.5s; 
}

.footer__info a:hover{
	color: #C5470F !important;
}
.footer__links li::before { display: none; }
.footer__links li{ margin: auto 15px; }
.footer__links li:first-child{ margin-left: 0; }


/* Contact Us page style */

.page-template-contact-us .header-bottom .col-lg-8{
	padding-right: 100px;
}
.page-template-contact-us .header-bottom h1 {
	font-size: 160px;
	font-family: Roboto;
	font-weight: 500;
	line-height: 150px;
	padding-bottom: 20px;
}
.page-template-contact-us .header-bottom .hero-button {
	padding: 15px 60px;
	text-align: center;
	background-color: #fff;
	color: #393432;
	border: none;
	transition: 0.5s; 
}
.page-template-contact-us .header-bottom .hero-button:hover{
	background-color: #C5470F;
}
.page-template-contact-us .site-header{ position: relative; z-index: 1; }
.page-template-contact-us .site-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(11,11,11,.25);*/
	z-index: 1;
}
.page-template-contact-us .site-header .container{ z-index: 2; }
.page-template-contact-us .section{ padding: 0; margin-bottom: 80px; }
.section-find-us h2.section-title {
	font-family: Oswald;
	font-weight: 400;
	font-size: 44px;
}
.section-find-us .description a{ font-style: italic; transition: 0.5s; }
.section-find-us .description a:hover{ #C5470F; }
.section-find-us .map{ margin-top: 50px; }
.section-find-us .map iframe{
	width: 100%;
	min-height: 800px;
}
.page-template-contact-us .section-find-us .container{ text-align: center; }
.section-contact .wrapper{ display: flex; }
.section-contact .left-col h4{  
	font-family: Oswald;
	font-weight: 500;
	font-size: 20px;
	color: #EC4800;
	text-transform: uppercase;
}
.section-contact .left-col p{
	margin-bottom: 30px;
}
.section-contact .description h2{
	font-family: Roboto;
	font-weight: 400;
	font-size: 36px;
	color: #393432;
	margin-bottom: 10px;
}
.section-contact .right-col .wpcf7-form h3{
	font-family: Roboto;
	font-weight: 400;
	font-size: 28px;
	color: #393432;
	margin-bottom: 10px;
}
.section-contact .section-form{
	background-color: #F6F6EE;
	padding: 30px;
}
.section-contact .section-form input{
	height: 50px;
	border: none;
	font-size: 18px;
}
.section-contact .section-form textarea{
	min-height: 220px;
	border: none;
	font-size: 18px;
}
.section-contact .section-form ::placeholder{ color: #393432; opacity: 1; }
.section-contact .section-form input, .section-contact .section-form textarea{ color: #393432; }
.section-contact .section-form input:focus, .section-contact .section-form textarea:focus{ color: #393432; }
.section-contact .section-form .form-bottom{ display: flex; }
.section-contact .form-bottom .submit-button-ctn, .section-contact .form-bottom .check-boxes{ width: 50%; }
.section-contact .section-form input.wpcf7-submit{
	float: right;
	margin-top: 20px;
	color: #fff;
	padding: 11px 45px 26px;
	background-color: #0B2B5C;
	transition: 0.5s; 
}
.section-contact .section-form input.wpcf7-submit:hover{
	background-color: #C5470F;
	color: #393432;
}
.section-contact .section-form span.wpcf7-list-item{
	display: grid;
	grid-template-columns: 2em auto;
	gap: 0.5em;
	margin-left: 0;
}
.section-contact .section-form span.wpcf7-list-item-label{
	padding-left: 15px;
	line-height: 18px;
	font-size: 14px;
}
.section-contact .form-bottom .check-boxes{ margin-top: 18px; }

/* .section-contact .section-form input[type=checkbox]
{
	width: 25px;
	height: 25px;
	
	-moz-appearance:none;
	-webkit-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
  
	outline: 1px solid #707070 !important;
	position: relative;
	top: 6px;
}
.section-contact .section-form input[type=checkbox]:checked{
	outline: 1px solid #707070 !important;
}
.section-contact .section-form input[type=checkbox]::before {
	content: "";
	width: 25px;
	height: 15px;
	transform: scale(0);
	display: block;
	position: relative;
	left: -4px;
	top: 2px;
}
.section-contact .section-form input[type=checkbox]:checked::before {
	-ms-transform: scale(1); 
	-moz-transform: scale(1); 
	-webkit-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1);
	border-bottom: 3px solid #707070; 
	border-right: 3px solid #707070; 
	transform: rotate(50deg); 
} */

.section-contact .section-form input[type=checkbox] {
	width: 2em;
	height: 2em;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: #818181;
	border: 0.15em solid currentColor;
	border-radius: 0.15em;
	display: grid;
	place-content: center;
	margin-top: 4px;
}

.section-contact .section-form input[type=checkbox]::before {
	background-color: CanvasText;
	content: "";
	width: .85em;
	height: .85em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--form-control-color);
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.section-contact .section-form input[type="checkbox"]:checked::before {
	transform: scale(1);
}



/* Case Studies Archive page style */

.post-type-archive-case-studies header .header-bottom{
	padding-top: 60px;
	padding-left: 50px;
}
.post-type-archive-case-studies .header-bottom .col-lg-8{
	padding-right: 100px;
}
.post-type-archive-case-studies .header-bottom h1 {
	font-size: 160px;
	font-family: Roboto;
	font-weight: 500;
	line-height: 150px;
	padding-bottom: 20px;
}


.post-type-archive-case-studies .header-bottom .hero-button {
	background: #FFF;
	border: none;
	text-align: center;
	color: #333;
	text-decoration: none;
	margin-top: 30px;
	margin-left: 10px;
	transition: 0.8s; 
}
.post-type-archive-case-studies .header-bottom .hero-button:hover{
	background: #333;
	color: #FFF;
}

.post-type-archive-case-studies .site-header{ position: relative; z-index: 1; margin-bottom: 80px; }
.post-type-archive-case-studies .site-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(11,11,11,.25);*/
	z-index: 1;
}
.post-type-archive-case-studies .site-header .container{ z-index: 2; }

.case-studies-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case-studies-archive-list article .cs-image img{ width: 100%; }
.case-studies-archive-list article .entry-header{
	background: none;
}
.case-studies-archive-list article .entry-header h4.cat-title{
	font-family: Oswald;
	font-weight: 500;
	font-size: 18px;
	color: #EC4800;
	text-transform: uppercase;
	margin-top: 20px;
}
.case-studies-archive-list article .entry-header h3.entry-title{
	font-family: Roboto;
	font-weight: 400;
	font-size: 36px;
	color: #393432;
	margin-bottom: 15px;
}
.case-studies-archive-list article a.entry-link{
	text-decoration: none;
	border-bottom: 1px solid #EC4800;
	padding-bottom: 6px;
}
.post-type-archive-case-studies .col-lg-6{ width: 49%; }
.post-type-archive-case-studies .cs-archive-title{
	font-family: Oswald;
	font-weight: 400;
	font-size: 36px;
	text-align: center;
}
.post-type-archive-case-studies .section-let-talk.style2{
	margin-top: 0;
	padding-top: 0;
}
.facetwp-facet-case_studies_categories.facetwp-facet{ margin-bottom: 0; }
.post-type-archive-case-studies .grid__column{ margin-top: 110px; }
.post-type-archive-case-studies .grid__column:first-child{ margin-top: 70px; }
.post-type-archive-case-studies .grid__column:nth-child(2){ margin-top: 70px; }
.post-type-archive-case-studies article.case-studies .entry-link{ display: none; }
.case-studies-archive-list article .entry-header .title-link{
	text-decoration: none;
}
.case-studies-archive-list article .entry-header .title-link h3.entry-title{ transition: 0.5s; }
.case-studies-archive-list article .entry-header .title-link:hover h3.entry-title{
	color: #C5470F;
}
#filter-by{ display: flex; justify-content: center; }
.facetwp-facet-case_studies_categories{ display: flex; }
.post-type-archive-case-studies .facetwp-radio{ 
	background: none; 
	text-decoration: underline;
	padding-left: 10px;
	transition: 0.5s; 
}
.post-type-archive-case-studies .facetwp-radio .facetwp-counter{ display: none; }
.post-type-archive-case-studies .facetwp-radio.checked, .post-type-archive-case-studies .facetwp-radio:hover{ 
	background: none; 
	color: #EC4800;
	text-decoration: none;
}
.post-type-archive-case-studies .loadmore-wrap{
	text-align: center;
	margin-top: 80px;
}
.post-type-archive-case-studies .loadmore-wrap .facetwp-facet{ margin-bottom: 20px; }
.post-type-archive-case-studies .loadmore-wrap .facetwp-load-more{
	padding: 13px 50px;
	font-size: 20px;
	background-color: #393432;
	color: #fff;
	transition: 0.5s; 
}
.post-type-archive-case-studies .loadmore-wrap .facetwp-load-more:hover{
	background-color: #C5470F;
	color: #393432;
}
.case-studies-archive-list article .cs-image{
	overflow: hidden;
}
.case-studies-archive-list article .cs-image img{ width: 100%; transition: 2s; aspect-ratio: 1.777;}
.case-studies-archive-list article .cs-image img:hover{
	scale: 1.05;
}



/* Case Studies single page style */

.single-case-studies .site-header {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.single-case-studies .site-header::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(11,11,11,.25);*/
	z-index: 1;
}
.single-case-studies .header-bottom .col-lg-8{ width: 92%; }
.single-case-studies .site-header .container{  
	z-index: 2;
}
.single-case-studies .header-bottom .hero-button {
	padding: 15px 60px;
	text-align: center;
	background-color: #fff;
	color: #393432;
	border: none;
	transition: 0.5s; 
}
.single-case-studies .header-bottom .hero-button:hover{
	background-color: #C5470F;
}
.single-case-studies .section-let-talk.style2 .container .wrapper{
	padding-bottom: 100px;
}
.section-related-case-studies .heading{
	font-family: Roboto;
	font-weight: 300;
	font-size: 44px;
	text-transform: none;	
	margin-bottom: 20px;
}
.section-related-case-studies{
	margin-bottom: 100px;
}

.single-case-studies #content{ padding: 0 !important; }
.section.two-columns-text{ padding: 0; }
.section.two-columns-text .section__wrapper{
	background-color: #F6F6F6;
	padding: 100px 0;
}
.two-columns-text .content-item .wysiwyg {
  padding-bottom: 0;
}
.two-columns-text .content-item, .two-columns-text .left-cl{ width: 48.5%; }
.two-columns-text .d-flex{ flex-flow: row-reverse; justify-content: space-between; }
.two-columns-text .left-cl h2{
	font-family: Oswald;
	font-weight: 400;
	font-size: 24px;
}
.two-columns-text .wysiwyg.outer{ padding-top: 36px; }

.section-statistics{ padding: 0; }
.section-statistics .section-statistics-container{
	background-color: #EC4800;
}
.section-statistics .wrapper{
	display: flex;
	justify-content: space-around;
	padding-top: 120px;
	padding-bottom: 120px;
}
.section-statistics .statistic__block{
	font-family: Oswald;	
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}
.section-statistics .statistic-title{  
	font-size: 30px;
}
.section-statistics .statistic-content{  
	font-size: 60px;
}
.section-statistics .statistic-sub-content{  
	font-size: 24px;
}

.section-single-testimonial{ margin-top: 50px; }
.section-single-testimonial .wrapper{
	background: url(img/start-quote.png) no-repeat left top;
	margin-left: 50px;
	margin-right: 50px;
}
.section-single-testimonial .wrapper-2nd{
	background: url(img/end-quote.png) no-repeat right bottom;
	padding: 10px 50px 0 80px;
}
.section-single-testimonial .testimonial-content{
	font-size: 28px;
	text-align: center;
	font-style: italic;
	font-family: Serif;
}
.section-single-testimonial .author{
	text-align: center;
	font-size: 18px;
	color: #EC4800;
}

.section-gallery .heading {
	font-family: Roboto;
	font-weight: 300;
	font-size: 60px;
	text-transform: none;
}
.section-gallery .arc-images::before{
	display: none;
}
.section-gallery .arc-link img{
	transition: 0.5s; 
}
.section-gallery .arc-link:hover img{
	opacity: 0.8;
}

.single-case-studies .section-let-talk{
	padding-top: 0;
	margin-top: 0;
}
.single-case-studies .section-latest-case-studies{ margin-bottom: 100px; }



/* Mega Menu customization */

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item{
	vertical-align: top;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item-has-children{
	max-width: 138px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item-72.mega-menu-item-has-children{
	max-width: 130px;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item-486.mega-menu-item-has-children{
	max-width: 180px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link{
	text-transform: uppercase;
	font-size: 1.125rem;
	font-weight: 500 !important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
	background: none;
	color: #C5470F;
	transition: 0.5s; 
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link{
	background: none;
	color: #C5470F;	
}


/*
@media (min-width: 768px) {
 .dropdown .dropdown-menu{
    display: block; 
  opacity:0;
-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-ms-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
} 
  
 .vrau{
    display:block;
    opacity:1;
  }
  
}
 */

.navbar-nav .dropdown-menu.depth_0 p {
	font-size: 16px;
}

.navbar-nav .dropdown-menu.depth_0 a {
	colour: #AAA;
}

.navbar-nav .dropdown-menu.depth_0 a:hover {
	colour: #222;
	transition: 1s;
}

.navbar-nav .dropdown-menu.depth_0{
	border-radius: 12px;
	border-bottom: none;
	padding-top: 0 !important;
}
.navbar-nav .dropdown-menu.depth_0 .yspl-widget-area a.cs-mn-link{
	font-size: 20px;
	font-weight: 500;
	transition: 0.5s; 
}
.navbar-nav .dropdown-menu.depth_0 .yspl-widget-area a.cs-mn-link:hover{
	text-decoration: none;
	color: #393432;
	text-decoration: underline;
}
.navbar-nav .nav-item-486 .dropdown-menu.depth_0{
	width: 600px;
	left: -20px;
	border-radius: 12px;
	border-bottom: none;
}
.navbar-nav .nav-item-486 .dropdown-menu.depth_0 .col{
	width: 50%;
	max-width: 50%;
	text-wrap: wrap;
}
.triangle-up {
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 30px solid #fff;
	position: relative;
	top: -15px;
}
.row.ctac{
	border-top: 2px solid #ccc;
	margin-left: 2px;
	margin-right: 2px;
}
.col.logo-mn{
	padding-left: 0;
	padding-right: 0;
	display: flex;
}
.col.logo-mn img{
	height: fit-content;
	width: 75px;
	padding-right: 10px;
	padding-top: 15px;
}
.col.logo-mn p{
	padding-top: 10px;
}
.row.ctac a.phone-mn{
	background: url('img/phone-icon-mn.png') no-repeat left center;
	padding-left: 40px;
	font-size: 26px;
	transition: 0.5s; 
}
.row.ctac a.phone-mn:hover{
	text-decoration: none;
	color: #C5470F;
}

.header-right .header__actions.d-flex{
	justify-content: right;
}
.navbar-nav > .nav-item:last-child{
	margin-right: 0;
}



/* Service template style */

.page-template-page-service .header-bottom .col-lg-8{
	padding-right: 100px;
}
.page-template-page-service .header-bottom h1 {
	font-size: 160px;
	font-family: Roboto;
	font-weight: 500;
	line-height: 150px;
	padding-bottom: 20px;
}
.page-template-page-service .header-bottom .hero-button {
	padding: 15px 60px;
	text-align: center;
	background-color: #fff;
	color: #393432;
	border: none;
	transition: 0.5s; 
}
.page-template-page-service .header-bottom .hero-button:hover{
	background-color: #C5470F;
}
.page-template-page-service .site-header{ position: relative; z-index: 1; }
.page-template-page-service .site-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*/*background-color: rgba(11,11,11,.25);*/*/
	z-index: 1;
}
.page-template-page-service .site-header .container{ z-index: 2; }
.page-template-page-service h2.we-provide{
	text-align: center;
	font-family: Roboto;
	font-weight: 400;
	font-size: 32px;
	color: #393432;
	margin-bottom: 30px;
}
.page-template-page-service .two-columns-text .section__wrapper{
	background-color: #fff;
	padding-top: 0;
}
.page-template-page-service .two-columns-text .wysiwyg p{
	line-height: 30px;
}
.page-template-page-service .section-let-talk{
	margin-top: 0;
	padding-top: 0;
}
.section-services{
	padding: 0;
}
.section-services .services-container{
/*	justify-content: space-around; jason */
}
.section-services .service__block{
	width: 32%;
	margin-bottom: 60px;
}
.section-services .service__block .service__link{
	display: block;
	height: 100%;
	text-decoration: none;
}
.section-services .service__link:hover .service-title, .section-services .service__link:hover .service-description{
	color: #C5470F; 
}
.section-services .service__block .service__link:hover img{
	scale: 1.1;
}
.section-services .service__block .image-container{
	height: 217px;
	overflow: hidden;
}
.section-services .service__block .image-container img{
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	transition: 1.5s;
}
.section-services .section-heading{
	text-align: center;
	font-family: Roboto;
	font-weight: 400;
	font-size: 32px;
	color: #393432;
	margin-bottom: 30px;
}
.section-services .service__block .service-title{
	text-align: left;
	font-family: Roboto;
	font-weight: 400;
	font-size: 26px;
	color: #393432;
	margin-top: 10px;
	
}
.page-template-page-service .two-columns, .page-template-page-service .two-columns .content-item .wysiwyg{
	padding-bottom: 0;
}
.page-template-page-service .section-latest-case-studies{
	margin-bottom: 100px;
}


.page-template-page-service .section-let-talk.style1{
	background-color: #A1D3F3;
}
.page-template-page-service .section-let-talk.style1 .container .left-col.col-lg-6{
	padding-left: 0;
}
.page-template-page-service .section-let-talk.style1 .container .right-col.col-lg-6{
	padding-right: 0;
}
.page-template-page-service .two-columns-style-2.left{
	margin-bottom: 10px;
}


.section-staff{
	padding: 0;
	margin-bottom: 50px;
}
.section-staff .staff-container{
	/*justify-content: space-around; jason */
}
.section-staff .member__block{
	width: 31.5%;
	margin-bottom: 60px;
}
.section-staff .member__block .member__wrapper{
	/* height: 100%; */
}
.section-staff .member__block .image-container:hover img{
	scale: 1.1;
	cursor: pointer;
}
.section-staff .member__block .image-container{
	height: 450px;
	overflow: hidden;
	border-radius: 10px;
}
.section-staff .member__block .image-container img{
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	transition: 1.5s;
}
.section-staff .section-heading{
	text-align: center;
	font-family: Roboto;
	font-weight: 400;
	font-size: 32px;
	color: #393432;
	margin-bottom: 30px;
}
.section-staff .member__block .member-name{
	text-align: left;
	font-family: Roboto;
	font-weight: 400;
	font-size: 26px;
	color: #393432;
	margin-top: 10px;
	
}
.section-staff .member__block .member-job-title{
	font-family: Oswald;
	font-weight: 500;
	font-size: 18px;
	color: #EC4800;
	text-transform: uppercase;
	line-height: 26px;
}


.section.section-timeline{
	padding-top: 30px;
}
.section-timeline .section-introduction{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 80px;
}
.section-timeline .d-flex{
	flex-direction: column;
}
.section-timeline .item__block.left{
	background: url(img/his-item-bg.png) 93.5% top no-repeat;
	width: 55%;
	text-align: right;
	padding-right: 10%;
	background-size: 43px;
}
.section-timeline .item__block.right{
	background: url(img/his-item-bg.png) 6.5% top no-repeat;
	width: 55%;
	text-align: left;
	margin-left: auto;
	padding-left: 10%;
	background-size: 43px;
}
.section-timeline .item__block:last-child{
	background-image: url(img/his-last-item-bg.png);
}
.section-timeline .item__block{
	padding-bottom: 50px;
}
.section-timeline .item__block .image-container:hover img{
	scale: 1.1;
	cursor: pointer;
}
.section-timeline .item__block .image-container{
	/* height: 250px; */
	overflow: hidden;
	margin-top: 20px;
}
.section-timeline .item__block .image-container img{
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	transition: 1.5s;
}
.section-timeline .section-heading{
	text-align: center;
	font-family: Roboto;
	font-weight: 400;
	font-size: 32px;
	color: #393432;
	margin-bottom: 30px;
}
.section-timeline .item__block .item-title{
	font-family: Roboto;
	font-weight: 400;
	font-size: 26px;
	color: #393432;
	margin-top: 10px;
	text-transform: capitalize;
	
}
.section-timeline .item__block .item-year{
	font-family: Oswald;
	font-weight: 500;
	font-size: 18px;
	color: #EC4800;
	text-transform: uppercase;
	line-height: 26px;
}