/*
	Theme Name: bsaspolar
	Theme URI: bsaspolar.com
	Description: Custom theme bsaspolar
	Version: 1.8
	Author: Vlad
	Author URI: vlad.com
	Tags: Blank, HTML5, CSS3
	License: MIT
	License URI: vlad.com
*/
/*------------------------------------*\
    MAIN
\*------------------------------------*/
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.ttf')  format('truetype');
}

@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Black.ttf')  format('truetype');
	font-style: normal;
	font-weight: 900;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-BlackItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 900;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Bold.ttf')  format('truetype');
	font-style: normal;
	font-weight: 700;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-BoldItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 700;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-ExtraBold.ttf')  format('truetype');
	font-style: normal;
	font-weight: 800;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-ExtraBoldItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 800;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-ExtraLight.ttf')  format('truetype');
	font-style: normal;
	font-weight: 200;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-ExtraLightItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 200;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Italic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 400;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Light.ttf')  format('truetype');
	font-style: normal;
	font-weight: 300;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-LightItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 300;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Medium.ttf')  format('truetype');
	font-style: normal;
	font-weight: 500;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-MediumItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 500;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Regular.ttf')  format('truetype');
	font-style: normal;
	font-weight: 400;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-SemiBold.ttf')  format('truetype');
	font-style: normal;
	font-weight: 600;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-SemiBoldItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 600;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-Thin.ttf')  format('truetype');
	font-style: normal;
	font-weight: 100;
}
@font-face {
	font-family: 'Barlow';
	src: url('fonts/Barlow/Barlow-ThinItalic.ttf')  format('truetype');
	font-style: italic;
	font-weight: 100;
}

/* admin - logged in */ 
.post-edit-link {display:none;}
/* VARIABLES */
:root {
	/* COLORS */ 
 --main-font-color: #253857;
 --primary-color: #004866;
  --primary-color-light: #106aaf;
 --secondary-color:#253857;
 --tertiary-color: #d44519;
 --red:#dc1f26;
 --cool-gray:#dbdbdb;
 --green: #73c77c;
 --light-gray:#e6e7e9;
 --lightest-gray:#f9f9f9;
 --dark-gray:#232020;
 --gray:#666; 
 --border-width: 1px;
 --border-color: #666;
 --white-opacity:rgba(255,255,255,0.5);
/* FONT SIZES */
 --small-font: 15px;
 --standard-font: 17px;
 --medium-font: 24px;
 --large-font: 24px;
 --larger-font: 33px;
 --largest-font: 75px;
 --hero-font: 8vw;
 /* Font Styles */
 /*--normal-font: "Roboto", serif;
 --heading-font: "Roboto", serif;*/
 --normal-font: "Barlow", serif;
 --heading-font: "Barlow", serif;
 --main-space: 94px;
 /* Standard Pads */
}
.primary {
	color: var(--primary-color);
}
.secondary {
	color: var(--dark-green);
}
.white {
	color:#fff; 
} 
.red {
	color:var(--red);
}
.primary-back {
	background-color: var(--primary-color);
	color: #fff;
}
.secondary-back {
	background-color: var(--secondary-color);
	color: #fff;
}
.cool-gray-back {
	background-color: var(--cool-gray);
}
.light-gray-back {
	background: var(--light-gray);
}
.dark-gray-back {
	background: var(--dark-gray);
	color: #fff;
}
.blue-back {
	background-color: var(--primary-color);
	color: #fff;
}
.black-back {
	background-color: #000;
	color: #fff;
}
.small {
	font-size:var(--small-font);
}
.large {
	font-size: var(--large-font);
}
.larger {
	font-size: var(--larger-font);
}
.largest {
	font-size: var(--largest-font);
}
.medium {
	font-size: var(--medium-font);
}
/* global box-sizing */
*, *:after, *:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size: 62.5%;
}
body {
	position: relative;
	font-family: var(--normal-font);
	font-weight: 300;
	color: var(--main-font-color);
	margin: 0;
	padding: 0;
	line-height: 1.4;
	font-size: var(--standard-font);
}
img {
	max-width: 100%;
	vertical-align: bottom;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	margin: 1.5rem 0;
	line-height: 1.1;
}
h1 {
	font-size: var(--largest-font);
	margin: 0.5vw 0;
	font-weight: 800;
}
h2 {
	font-size: var(--larger-font);
}
h3 {
	font-size: var(--large-font);
}
h4 {
	font-size: var(--medium-font);
}
/* clear */
.clear:before, .clear:after {
	content: ' ';
	display: table;
}
.clear:after {
	clear: both;
}
.clear {
 *zoom:1;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color 0.5s ease;
}
a:hover {
	color: inherit;
	text-decoration: none;
}
a:focus {
	outline: 0;
}
a:hover, a:active {
	outline: 0;
}
p a {
	color: var(--primary-color-light);
	font-weight: bold;
}
input:focus {
	box-shadow: 0 0 0 2px var(--secondary-color);
	border-color: transparent;
}
blockquote {
	font-size: 120%;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 5rem 0 1em;
	margin: 1em 0em 1.3em 3rem;
	border-left: 6px solid var(--primary-color);
	font-style: italic;
}
/*scroll bars for chrome webkit */
/************************** FONTS ******************************/
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
main {
	display: inline-block;
	width: 100%;
	position: relative;
	background: #fff;
}
/* GRID */
.section {
	width: 100%;
}
.full-width, .main {
	box-sizing: border-box;
	width: 100%;
}
.row {
	margin-left: -10px;
	margin-right: -10px;
}
.container{
	margin-left: 10px;
	margin-right: 10px;
}
.ten {
	width: 10%;
}
.twenty {
	width: 20%;
}
.twenty-five {
	width: 25%;
	
}
.thirty {
	width: 30%;
}
.thirty-three {
	width: 33.33%;
}
.forty {
	width: 40%;
}
.fifty {
	width: 50%;
}
.sixty {
	width: 60%;
	
}
.sixty-six {
	width: 66.66%;
}
.seventy {
	width: 70%;
}
.seventy-five {
	width: 75%;
}
.eighty {
	width: 80%;
}
.ninety {
	width: 90%;
}
.full {
	width: 100%;
}
.hero-left{
	
}
.hero-right{
	width: 100%;
}

main .wrapper.flex > div:first-child {
	padding-left:0;
}

.empty {
	padding: 0.01em;
}
.relative {
	position: relative;
}
.spads {
	padding: 0 0.15rem;
}
.pad {
	padding: 1rem;
}
.padt {
	padding: 1rem 0;
}
.pads {
	padding: 0 1rem;
}
.pad2 {
	padding: 2rem;
}
.pad2s {
	padding: 0 2rem;
}
.pad2t {
	padding: 2rem 0;
}
.pad2r {
	padding: 0 2rem 0 0;
}
.pad2l {
	padding: 0 0 0 2rem;
}
.pad4 {
	padding: 4rem;
}
.pad4s {
	padding: 0 4rem;
}
.pad4t {
	padding: 4rem 0;
}
.pad8t {
	padding: 8rem 0;
}
/* alignments */
.center {
	text-align: center;
}
.clear {
	clear: both;
}
.hidden {
	display: none;
}
.show {
	display: block;
}
.right {
	float: right;
}
 
.v-center {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.v-off-center {
	position: absolute;
	top: 40%;
	transform: translateY(-60%);
}
.narrow {
	width: 769px;
	max-width: 100%;
	margin: auto;
}
.thin {
	font-weight: 300;
}
.normal {
	font-weight: 400;
}
.bold {
	font-weight:600;
}
.heavy {
	font-weight:800;
}
.underline {
	border-bottom: 1px solid;
}
.flex {
	display: flex;
	flex-flow: wrap;
}
.flex-column {
	display: flex;
	flex-flow: column;
}
.flex-row {
	display: flex;
	flex-flow: row;
}
.flex-center {
	align-self: center;
}
.flex-bottom {
	align-self: baseline;
}
.flex-top {
	align-self: initial;
}
.align-center {
	align-items: center;
}
.flex-grow {
	flex-grow: 1;
}
.just-center {
	justify-content: center;
}
.just-right {
	justify-content:flex-end;
}
.flex-right {
	flex-flow: row-reverse wrap;
}
.flex-left {
	align-items: left;
}
.spaced {
	justify-content: space-between;
}
.float-right {
	float: right;
}
.parallax {
	background-attachment: fixed;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}
.parallax-content {
	padding: 2em 0;
}
/* STICKY HEADER */
.sticky-padding {
	position:relative;
}
/* IFRAME AND VIDEOS */
iframe {
	width: 100%;
}
.video-container, .video-container-pop {
	box-sizing: border-box;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	width: 100%;
	cursor: pointer;
}

.video-container iframe, .video-container > .ytvideo, .video-container-pop iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.video-container img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	position:absolute;
	top:0;
	left:0;
}
.play-button {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #fff;
	font-size: 80px;
	height: 80px;
	width: 80px;
	z-index: 9;
	line-height: 80px;
	cursor: pointer;
	opacity: 0.5;
	pointer-events: none;
}
video {
	max-width: 100%;
}
.italic {
	font-style: italic;
}
.serif {
	font-family: var(--normal-font);
}
/* Chart Widths */
.eighth {
	width:12.5%;
}
.ninth {
	width:11.11%;
}
.eight-ninths {
	width:88.88%;
}
/* FONT SIZES */
.title-area {
	font-size: 60px;
	margin-bottom: 0.5em;
}
/* wrapper */
.wide-wrapper {
	width: 1600px;
	margin: auto;
	max-width: 100%;
}
.wrapper {
	max-width: 1539px;
	width: 100%;
	margin: 0 auto;
	padding: 0 94px;
	box-sizing: border-box;
	clear: both;
}
.overlay {
	color: #fff;
}
.overlay::before {
	background-color: rgba(0, 0, 0, 0.33);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
	top: 0;
}
.cover-image {
	background-size: cover;
}
.background-image img {
	width: 100%;
}
.background-image {
	position: relative;
}
.upper {
	text-transform: uppercase;
}
.edge-bottom-before, .edge-bottom-after{
    content: "";
    height: 0;
    width: 0;
    bottom: 0;
    position: absolute;
    z-index: 9
}
.edge-bottom > .edge-bottom-before, .edge-bottom > .edge-bottom-after{
	border-top: 20px solid transparent;
    border-bottom: 40px solid #fff;
    opacity: 0.5;
}
.edge-bottom > .edge-bottom-before{
	border-left: 50px solid #fff;
}
.edge-bottom > .edge-bottom-after{
	border-right: 50px solid #fff;
}
.edge-top > .edge-before{
	border-bottom: 5px solid transparent;
    border-right: 5px solid #f00;
    border-top: 5px solid #f00;
    left: 0;
    top: 0;
    bottom: 0;
}
.edge-top > .edge-after{
    left: 5px;
    top: 0;
    bottom: 0;
    border-left: 5px solid #f00;
    border-bottom: 5px solid transparent;
}

/* HEADER AREA */
.admin-bar .header {
	margin-top: 0;
}
.main-header .logo img{
	width: 100%;
	max-width: 288px;
}
.header{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: 99;
	background-color: transparent;
}
.header.hover{
	background: #106aafe6;
}
#top-menu{
	margin-top: 50px;
}
.nav ul{
	list-style: none;
    padding: 0;
    text-align: right;
    margin: 0;
}
.top-nav ul li{
	display: inline-block;
	margin: 0 9px;	
}
.nav ul li{
	position: relative;
}
.nav ul li:last-child{
	margin: 0;
}
.nav ul li a{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
}
.nav ul li a:hover{
	color: var(--main-font-color);
}
.main-nav ul li{
	display: inline-block;
    margin: 0 15px;
    text-align: right;
    padding: 30px 0;
}
.main-nav ul li a{
	font-size: 24px;
	font-weight: 600;
}
.nav ul li.current-menu-item a,
.nav ul li.current-menu-parent > a{
	color: var(--main-font-color);
}
.nav ul li.menu-item-has-children > span{
	position: absolute;
    height: 4px;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    display: none;
}
.nav ul li.menu-item-has-children:hover > span{
	display: block;
}
.nav ul li.menu-item-has-children ul.sub-menu{
	position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    padding-top: 10px;
    display: none;
}
.nav ul li.menu-item-has-children:hover ul.sub-menu{
	display: block;
}
.nav ul li.menu-item-has-children ul.sub-menu li{
	display: block;
    margin: 0;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px dashed #fff;
}
.nav ul li.menu-item-has-children ul.sub-menu li a{
	font-size: 19px;
	color: #fff;
	font-weight: normal;
}
.nav ul li.menu-item-has-children ul.sub-menu li a:hover,
.nav ul li.menu-item-has-children ul.sub-menu li.current-menu-item a{
	color: var(--main-font-color);
}
.sub-menu-back{
	position: relative;
    height: 265px;
    z-index: -1;
    border-top: 1px solid var(--primary-color);
    display: none;
}
.header.hover .sub-menu-back{
	display: block;
}
.header.hover-menu-1 .sub-menu-back{
	height: 210px;
}
.header.hover-menu-2 .sub-menu-back{
	height: 320px;
}
.header.hover-menu-3 .sub-menu-back{
	height: 90px;
}
/* FOOTER */
footer{
	border-top: 1px solid var(--primary-color);
}
footer .footer-widget{
	padding-top: 40px;
    position: relative;
    z-index: 1;
}
.footer-widget .widget1 .section-title{
	font-size: var(--larger-font);
	font-weight: bold;
}
.footer-widget .widget1 p{
	font-size: var(--larger-font);
}
.footer-widget .section-title{
	font-size: 17px;
	font-weight: bold;
}
.footer-widget .widget2 p{
	font-size: 17px;
}
.footer-widget .widget2 ul{
	list-style: none;
	padding: 0;
}
.footer-widget .widget2 ul li{
	display: inline-block;
	margin-right: 10px;
}
.footer-widget .widget2 ul li a{
	font-size: 17px;
}
.footer-widget .widget2 ul li a i.fa{
	margin-right: 10px;
}
.footer-widget .widget3{
	font-size: 17px;
}
.footer-widget .widget3 ul{
	list-style: none;
	padding: 0;
}
footer .footer-bottom{
	position: relative;
    background-color: #256884;
    margin-top: -80px;
}
footer .footer-bottom .hero-edge{
	margin-bottom: 50px;
}
footer .footer-bottom .hero-edge img{
	width: 100%;
	margin-bottom: 50px;
}
.footer-info{
	margin-top: -50px;
	padding-bottom: 40px;
}
.footer-info .footer-logo{
	max-width: 300px;
    width: 100%;
}
.footer-info .footer-menu{
	flex-grow: 1
}
.footer-info .footer-menu .footer-nav{
	padding: 20px 50px;
}
.footer-info .footer-menu .footer-nav ul{
	text-align: center;
}
.footer-info .footer-menu .footer-nav ul li{
	display: inline-block;
	margin: 0 15px;
}
.footer-info .footer-menu .footer-nav ul li a{
	text-transform: capitalize;
	font-size: var(--small-font);
	font-weight: bold;
}
.footer-info .copyright{
	font-size: var(--small-font);
	color: #fff;
}
/* sidebar */
.sidebar {
	padding-right: 5%;
}
.sidebar a:hover {
	color: var(--primary-color);
}
aside {
	padding: 0;
}
.sidebar > div > div {
	/* margin-bottom: 1em; */
	padding: 0.5em 1em;
}
.sidebar-widget h3 {
	border-bottom: 1px solid;
	margin: 0;
	padding: 0;
}
.sidebar-widget ul {
	margin: 1em 0;
	padding: 0;
}
.sidebar-widget li::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-left: -1em;
	position: absolute;
	top: 4px;
	color: var(--primary-color);
}
.sidebar-widget li {
	display: block;
	padding-left: 1em;
	position: relative;
	margin-bottom: 0.5em;
}
.widget_search {
	padding-bottom: 1.5em;
}
form.search{
    width: 340px;
    max-width: 100%;
    position: relative;
}
.search-input[type="search"] {
	width: 100%;
	box-sizing: border-box;
}
.search-submit {
	background: transparent;
	color: var(--secondary-color);
	position: absolute;
	right: 17px;
	padding: 0;
	top: 50%;
	transform: translatey(-50%);
}
.search-submit:hover {
	background: transparent;
	color: #333;
}
.search-box {
	display: flex;
	position:relative;
	justify-content: flex-end;
}
div.wpcf7 .ajax-loader {
	display: none;
}
/*------------------------------------*\
  SEARCH PAGE
\*------------------------------------*/

.search-title {
	font-size: var(--medium-font);
	font-weight: 600;
}
.search-list {
	margin: 0;
	padding: 0;
}
.search-list li:nth-child(2n+1) {
	background: var(--lightest-gray);
}
/*------------------------------------*\
    Forms
\*------------------------------------*/
input, select, textbox, button, textarea {
	padding: 0.5em 1em;
	border: none;
}
select {
	box-sizing: border-box;
	width: 100%;
}
/* Contact Us Form & Contact Form 7 Styling */
.wpcf7-form .form-field label{
	font-size: 13px;
}
.wpcf7-form-control-wrap {
	box-sizing: border-box;
	display: inline-block;
	padding: 0.25em;
	width: 100%;
}
.wpcf7-form-control {
	border-width: var(--border-width);
	border-style: solid;
	border-color: var(--border-color);
	width: 100%;
}
.wpcf7-form-control.wpcf7-text::placeholder {
 font-style: italic;
 color:#000;
}
.wpcf7-form .form-field .check-field{
	position: relative;
}
.wpcf7-form .form-field .check-field .checkbox{
	border: none;
}
.wpcf7-form .form-field .check-field .checkbox span.wpcf7-list-item{
	margin: 0;
}
.wpcf7-form .form-field .check-field .checkbox span.wpcf7-list-item input[type="checkbox"]{
	margin-right: 7px;
    width: 23px;
    height: 23px;
    float: left;
}
.wpcf7-form .form-field .check-field .checkbox span.wpcf7-list-item .wpcf7-list-item-label{
	opacity: 0;
}
.wpcf7-form .form-field .check-field p{
	position: absolute;
    top: -13px;
    left: 40px;
}
.wpcf7-form .form-field .comment-field{
	float: right;
}
.wpcf7-form .form-field .comment-field p{
	margin: 0;
}
.wpcf7-form .form-field .wpcf7-submit {
	background-color: var(--primary-color-light);
    color: #fff;
    width: auto;
    padding: 1rem 2rem;
    position: relative;
    margin-top: 40px;
}
/*------------------------------------*\
    Buttons
\*------------------------------------*/
.btn {
	color: var(--primary-color);
    background-color: #fff;
    transition: all 0.5s ease;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    padding: 0.33em 1em;
    text-align: center;
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 17px;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid #fff;
}
.btn:after{
	position: relative;
    display: inline-block;
    font-family: Font Awesome\ 5 Free;
    content: "\f105";
    margin-left: 0.5em;
}
.btn:hover {
	color: #fff;
	background-color: var(--dark-gray);
}
.btn.alt {
	background-color: var( --secondary-color);
}
.btn.alt:hover {
	background-color: var( --dark-gray);
}
.btn.outline {
	background-color:transparent;
	border-width:var(--border-width);
	border-color:var(--primary-color);
	border-style:solid;
	color:inherit;
}
.btn.outline:hover {
	background-color:var(--primary-color);
	color:#fff;
}
.btn .icon {
	padding: 0 0.5em;
}
.cta-link {
	color: var(--light-gray);
	text-transform: uppercase;
	border-bottom: 2px solid;
	display: inline-block;
	position: relative;
	z-index: 2;
	padding: 0.25em;
}
.cta-link a:hover::after {
	height: 100%;
}
.cta-link:hover {
	border-bottom: 2px solid transparent;
}
.cta-link a::after {
	background: var(--primary-color);
	content: "";
	height: 0;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: height 0.5s ease;
}
.text-link {
	color: var(--primary-color);
}
/*------------------------------------*\
    Special Lists
\*------------------------------------*/
ul.arrow-list {
	margin: 0;
	padding: 0;
}
.arrow-list li {
	list-style: none;
	position: relative;
	padding-left: 25px;
}
.arrow-list li::before {
	color: var(--primary-color);
	content: "\f0da";
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.over-wrapper{
	z-index: 1;
}
.page-hero{
	position: relative;
	background-color: #106aaf;
}
.background-img{
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-hero .hero-wrapper{
    padding-top: 0;
    min-height: 25vw;
}
.page-hero.home-hero .hero-wrapper{
    padding-top: 110px;
    min-height: 30vw;
}
.page-hero .hero-main{
	position: absolute;
    padding: 20px 0;
    margin-left: auto;
    margin-top: 0;
    text-transform: uppercase;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}
.page-hero .hero-main .page-title{
	color: #fff;
}
.page-hero .hero-main .page-sub-title{
	font-size: 28px;
	color: #000;
	font-weight: 300;
}
.page-hero .featured-img{
	position: relative;	
    padding: 0;
	margin: 0 0 0 20vw;
}
.page-hero.home-hero .featured-img{
	padding: 50px 50px 0 0;
    margin: 0 7vw 0 37vw;
}
.page-hero .featured-img .featured-img-wrapper{
	max-width: 80%;
}
.page-hero .featured-img-overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.page-hero .featured-img img{
	width: 100%;
}
.page-hero .hero-edge{
	position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}
.page-hero .hero-edge img{
	width: 100%;
}
.section{
	position: relative;
	padding: 30px 0;
}
.section .section-title{
	font-weight: 300;
}
.full-width-row{
	padding: 0 20px;
}
/****************** HOME PAGE *******************/
body.page-template-pageHome .section .section-title{
	opacity: 0.5;
}
.services-section .single-service{
	position: relative;
    padding: 6.5em 3.2em 2.5em 3.2em;
    align-items: flex-end;
    margin: 10px 0;
    color: #fff;
}
.services-section .single-service:hover{
	color: var(--main-font-color);
}
.services-section .single-service::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
	transition: color 0.5s ease;
}
.services-section .single-service:hover::before{
	opacity: 0.4;
}
.services-section .single-service a{
	position: relative;
	text-transform: uppercase;
}
.services-section .single-service .service-sub-title{
	font-weight: 300;
}
.trans-request-section{
	margin-bottom: 260px;
}
.trans-request-section .trans-inner-wrapper, .trans-request-section .request-inner-wrapper{
	color: #fff;	
	text-transform: uppercase;
	position: relative;
}
.trans-request-section .trans-inner-wrapper .trans-edge-before,
.trans-request-section .request-inner-wrapper .request-edge-before{
	content: "";
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    position: absolute;
	border-bottom: 20px solid transparent;    
    border-top: 40px solid #004866;
    opacity: 0.6;
}
.trans-request-section .request-inner-wrapper .request-edge-before{
	border-right: 50px solid #004866;
}
.trans-request-section .trans-inner-wrapper .trans-edge-before{
	border-top: 40px solid var(--main-font-color);
	border-left: 50px solid var(--main-font-color);
	opacity: 0.8;
}
.trans-request-section .trans-inner-wrapper .trans-wrapper, .trans-request-section .request-inner-wrapper .request-wrapper{
	position: relative;
	padding: 3.2em;
}
.trans-request-section .trans-content{
	margin-bottom: 20px;
}
.trans-request-section .trans-content h4{
	font-weight: 300;
	margin-top: 0;
}
.trans-request-section .trans-inner-wrapper .section-cta{
	text-align: right;
}
.trans-request-section .trans-inner-wrapper .section-cta a.btn{
	background-color: transparent;
}
.trans-request-section .request-inner-wrapper .section-sub-title{
	margin-bottom: 1.7em;
	margin-top: 0;
}
.trans-request-section .req-content p{
	font-size: var(--small-font);
}
.trans-request-section .req-content p:last-child{
	margin-bottom: 0;
}
.blog-section{
	background-color: var(--light-gray);
}
.blog-section .wrapper{
	margin-top: -260px;
	margin-bottom: 60px;
}
.blog-section .single-blog .blog-featured-img{
	position: relative;
}
.blog-section .single-blog .blog-featured-img .blog-before{
	content: "";
    height: 0;
    width: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    opacity: 0.7;
}
.thirty-three:first-child .single-blog .blog-featured-img .blog-before{
	border-top: 40px solid transparent;
    border-right: 20px solid var(--lightest-gray);
}
.thirty-three:nth-child(2) .single-blog .blog-featured-img .blog-before{
	border-top: 40px solid transparent;
    border-right: 20px solid var(--lightest-gray);
    border-bottom: 40px solid var(--lightest-gray);
}
.thirty-three:last-child .single-blog .blog-featured-img .blog-before{
	border-top: 60px solid transparent;
    border-left: 20px solid var(--lightest-gray);
    border-bottom: 20px solid var(--lightest-gray);
}
.blog-section .single-blog .blog-featured-img .blog-img-inner{
	width: 100%;
    padding-top: 63.5%;
}
.blog-section .single-blog .blog-content{
	font-size: var(--small-font);
	padding: 3.2em;
    background-color: #fff;
}
.single-blog .blog-content .blog-title{
	margin-top: 0;
	text-transform: uppercase;
}
.single-blog .blog-content .more-read{
	text-transform: uppercase;
	text-align: right;
    display: block;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    opacity: 0.5;
}
.single-blog .blog-content .more-read:hover{
	color: var(--primary-color-light);
}
.single-blog .blog-content .more-read i{
	margin-left: 5px;
}
.team-section{

}
.team-section .team-wrapper{
	position: relative;
}
.team-section .team-inner{
	position: relative;
	padding: 9.2em 3.2em 3.2em 3.2em;
    color: #fff;
    align-items: flex-end;
    justify-content: space-between;
}
.team-section .team-wrapper .edge-team-before,
.team-section .team-wrapper .edge-team-after{
	content: "";
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    position: absolute;
	border-bottom: 20px solid transparent;    
    border-top: 40px solid #fff;
    opacity: 0.5;
}
.team-section .team-wrapper .edge-team-before{
	border-right: 50px solid #fff;
}
.team-section .team-wrapper .edge-team-after{
	border-left: 50px solid #fff;
}
.team-section .team-inner .team-content{
	text-transform: uppercase;
}
.team-section .team-inner .team-content h4{
	font-weight: 300;
}
.team-section .team-inner .team-content h2{
	margin-bottom: 0;
}
.team-section .team-inner .team-cta{
	margin-top: 20px;
}
.social-section{

}
.social-section .social-content{
	border-bottom: 1px dashed var(--primary-color-light);
	border-top: 1px dashed var(--primary-color-light);
    display: block;
    margin-top: 40px;
    padding: 20px 0;
}
/************* Single Service *****************/
article.type-services{

}
article.type-services .single-blog .service-content,
article.type-transports .single-blog .transports-content{
	padding-right: 40px;
}
article.type-services .single-blog .service-content h3,
article.type-transports .single-blog .transports-content h3{
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 300;
}
article.type-services .single-blog .service-content h2,
article.type-transports .single-blog .transports-content h2{
	font-size: 38px;
    color: var(--primary-color-light);
}
main .widget_nav_menu .section-title{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 20px;
	color: var(--primary-color);
}
main .widget_nav_menu{
	padding-left: 50px;
}
main .widget_nav_menu .menu{
	list-style: none;
	padding: 0;
}
main .widget_nav_menu .menu li{
	text-transform: uppercase;
	border-bottom: 1px dashed var(--primary-color-light);
	padding: 14px 0;
	display: block;
	font-size: 19px;
	font-weight: normal;
}
main .widget_nav_menu .menu li a:hover,
main .widget_nav_menu .menu li.current-menu-item a{
	color: var(--primary-color-light);
}
.archive-services{

}
.archive-services .service-request{
	padding: 40px;
	margin-top: 40px;
	color: #fff;
	text-transform: uppercase;
}
.archive-services .service-request .section-title{
	font-weight: bold;
}
.archive-services .service-request .req-cta{
	text-align: right;
}
.archive-services .service-list,
.archive-transports .transports-list{
	padding-right: 40px;
}
.archive-services .service-list article.type-services,
.archive-services .service-list article.type-page,
.archive-transports .transports-list article.type-transports{
	padding: 45px 0;
    border-bottom: 1px dashed var(--primary-color-light);
    position: relative;
}
.archive-services .service-list article.type-services:first-child,
.archive-services .service-list article.type-page:first-child,
.archive-transports .transports-list article.type-transports:first-child{
	border-top: 1px dashed var(--primary-color-light);
}
.archive-services .service-list article .post-summary,
.archive-services .transports-list article .post-summary{
	margin: 10px 0;
	padding-right: 20px;
}
.archive-services .service-list article .post-summary h2,
.archive-services .service-list article .post-summary h3,
.archive-transports .transports-list article .post-summary h2,
.archive-transports .transports-list article .post-summary h3,
.archive-services .service-list article .post-summary .more-read,
.archive-transports .transports-list article .post-summary .more-read{
	text-transform: uppercase;
}
.archive-services .service-list article .post-summary h3,
.archive-transports .transports-list article .post-summary h3{
	font-size: 21px;
	font-weight: 300;
}
.archive-services .service-list article .post-summary h2,
.archive-transports .transports-list article .post-summary h2{
	color: var(--primary-color-light);
	font-size: 29px;
}
.archive-services .service-list article .post-summary .more-read,
.archive-transports .transports-list article .post-summary .more-read {
    color: var(--primary-color);
    font-weight: bold;
}
.archive-transports .transports-list article .post-summary .more-read{
	text-align: right;
    display: block;
    margin-top: 40px;
}
.archive-transports .transports-list article .image-container{
	padding: 0 20px;
    max-width: 230px;
    margin: 0 auto;
}
.archive-services .service-list article .image-container img,
.archive-transports .transports-list article .image-container img{
	width: 100%;
}

/************* Company Page *****************/
article.type-page, article.type-post{
	padding-right: 40px;
}
article.type-page h2{
	text-transform: uppercase;
	color: var(--primary-color-light);
}
body.parent-pageid-213 article.type-page h2{ /* Companies pages */
	text-transform: initial;
}
article.type-page h3{
	text-transform: uppercase;
}
article.type-page .image-container{
	margin: 30px 0;
	position: relative;
}
.service-list article.type-page .image-container{
	margin: 0;
}
.sponsoring-list{
	margin-top: 50px;
}
.sponsoring-list .single-sponsoring .sponsoring-logo{
	position: relative;
    padding-bottom: 74%;
    background: #f6f6f6;
}
.sponsoring-list .single-sponsoring .sponsoring-logo img{
	position: absolute;
    max-width: 160px;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sponsoring-list .single-sponsoring .sponsoring-name{
	text-align: center;
}
.vehicle-list, .management-list{
	margin-top: 50px;
}
.vehicle-list .single-vehicle,
.management-list .single-management,
.blog-archieve .single-blog{
	padding: 40px 0;
	border-bottom: 1px dashed var(--primary-color-light);
}
.blog-archieve .single-blog:first-child{
	border-top: 1px dashed var(--primary-color-light);
}
.management-list .single-management .management-image{
	position: relative;
}
.vehicle-list .single-vehicle img,
.blog-archieve .single-blog img,
.management-list .single-management img{
	width: 100%;
}
.vehicle-list .single-vehicle .vehicle-property,
.blog-archieve .single-blog .blog-content,
.management-list .single-management .management-property{
	padding: 0 50px;
}
.management-list .single-management .management-property .management-name{
	color: var(--primary-color-light);
	text-transform: uppercase;
}
.management-list .single-management .management-property .management-role{
	font-size: 22px;
}
.vehicle-list .single-vehicle .vehicle-property p.vehicle-manufacture,
.management-list .single-management .management-property .management-content p:last-child{
	margin-bottom: 0;
}
.vehicle-list .single-vehicle .vehicle-property p{
	margin: 10px 0;
}
.blog-archieve .single-blog .blog-content .meta-info{
	font-size: 21px;
	margin-bottom: 15px;
}
.blog-archieve .single-blog .blog-content .blog-title{
	color: var(--primary-color-light);
}
.blog-archieve .single-blog .blog-content .more-read{
	text-align: left;
	color: var(--primary-color);
}
.pagination{
	padding: 10px 0;
}
.pagination .page-numbers{
	margin: 0 7px;
    font-size: var(--small-font);
    padding: 1px 6px;
    background: #b2b2b2;
    color: #fff;
}
.pagination .page-numbers:first-child{
	margin-left: 0;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current{
	background: var(--primary-color-light);
}
.article.type-post h3{
	font-size: 21px;
	font-weight: 300;
	text-transform: uppercase;
}
article.type-post h2{
	color: var(--primary-color-light);
}
article.type-post img{
	width: 100%;
	margin: 20px 0;
}
article.type-post .meta-info{
	margin: 30px 0;
	padding: 12px 0;
	border-top: 1px dashed var(--primary-color-light);
	border-bottom: 1px dashed var(--primary-color-light);
	font-size: var(--small-font);
}
article.type-post .back-up{
	text-transform: uppercase;
	font-weight: bold;
}
article.type-post .back-up i{
	margin-right: 10px;
}
/************* BLOG POST PAGES *****************/
/************* Job Page *****************/
.job-list{
	margin-top: 50px;
	border-top: 1px dashed var(--primary-color-light);
}
.job-list .single-job .job-sub-title,
.job-list .single-job .meta-info p{
	margin: 10px 0;
}
.job-list a.more-info {
	display: block;
    width: 100%;
    padding: 1rem 0;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px dashed var(--primary-color-light);
    text-align: right;
}
.job-list a.more-info:hover,
.job-list a.more-info:hover::after {
	cursor: pointer;
	color: var(--primary-color-light);
}
.job-list a.more-info.active {
	color: var(--primary-color-light);
}
.job-list a.more-info::after {
	position: relative;
    display: inline-block;
    font-family: Font Awesome\ 5 Free;
    content: "\f107";
    font-weight: 900;
    margin-left: 7px;
}
.job-list a.more-info.active::after {
    content: "\f106";
}
.job-list a.more-info .less{
	display: none;
}
.job-list a.more-info.active .less{
	display: inline-block;
}
.job-list a.more-info.active .more{
	display: none;
}
.job-list .job-description {
	display: none;
	overflow: hidden;
}

/************* CONTACT US ****************/

/*------------------------------------*\
    404 PAGES
\*------------------------------------*/
.not-found-page {
	padding: 6% 20%;
}
.not-found-page h1 {
	font-size: var(--hero-font);
	color:var(--primary-color);
}
.not-found-page h2 {
	font-size: var(--largest-font);
	color:var(--secondary-color);
}
.not-found-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.not-found-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:320px) {
}
@media only screen and (min-width:480px) {
}
@media only screen and (min-width:768px) {
}
@media only screen and (min-width:1024px) {
}
@media only screen and (min-width:1140px) {
}
@media only screen and (min-width:1280px) {
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (min-resolution:144dpi) {
}
/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}
::-webkit-selection {
 background:#999;
 color:#FFF;
 text-shadow:none;
}
::-moz-selection {
 background:#999;
 color:#FFF;
 text-shadow:none;
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
	margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}
.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
.alignleft {
	
	margin: 5px 20px 20px 0;
}
a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}
.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}
.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}
.wp-caption .wp-caption-text, .gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}
/*------------------------------------*\
    Mobile Menu
\*------------------------------------*/
#mobileMenu {
	height: 100%;
	position: fixed;
	top: -100%;
	transition: all 0.5s ease 0s;
	width: 100%;
	z-index: 998;
	font-size: var(--medium-font);
	overflow: auto;
	background: #ffffffe6;
	padding-top: 40px;
}
#mobileMenu.opened {
	top: 0;
}
#mobileMenu h2 {
	padding: 0 0.5em;
	color: #fff;
}
.mobile-menu > ul {
	padding: 3vw 0;
	margin: 0;
	border-bottom: 1px solid #fff;
	font-size: var(--medium-font);
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-weight: 600;
}
.mobile-menu > ul > li {
	display: block;
	position: relative;
}
.mobile-menu > ul > li a {
	color: var(--primary-color-light);
	display: block;
	padding: 0.5em 1em;
}
.mobile-menu .top-nav{
	padding-left: 40px;
}
.mobile-menu .top-nav ul{
	list-style: none;
	padding: 0
}
.mobile-menu .top-nav ul li{
	display: block;
}
.mobile-menu .top-nav ul li a{
	color: var(--primary-color-light);
}
.mobile-menu .sub-menu {
	display: none;
	list-style: none;
}
.mobile-menu .sub-menu li a {
	font-size: 20px;
}
.mobile-menu ul li.current-menu-item > a, .mobile-menu ul li.current-menu-ancestor > a{
    color:var(--primary-color);
}
.mobile-menu ul li.current-page-parent ul.sub-menu li.current-page-parent > a{
    color:inherit;
}
.mobile-menu > ul > li.menu-item-has-children > span::after {
	color: var(--primary-color-light);
	content: "\f067";
	cursor: pointer;
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	height: 100%;
	padding: 13px 45px;
	position: absolute;
	right: 8px;
	top: 0;
	z-index: 2;
	height: 35px;
	line-height: 8px;
}
.mobile-menu > ul >  li.menu-item-has-children > span.open::after {
	content: "\f068";
}
.mobile-menu .btn {
	background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
	font-weight: inherit;
	padding: inherit;
}
#mobileClose {
	color: #fff;
	font-size: 25px;
	padding: 0.5em;
	text-align: right;
	cursor: pointer;
}
#mobile-navigation li {
	display: inline-block;
	color: #fff;
	cursor: pointer;
}
#mobile-navigation li i {
	padding: 0 0.5em;
	font-size: 23px;
	vertical-align: middle;
}
#mobile-navigation {
	background: #0d0f0b none repeat scroll 0 0;
	display: none;
	padding: 0.5em;
	position: relative;
}
#mobile-navigation > ul {
	padding: 0;
	margin: 0;
	text-align: right;
}
 
.mobile-menu .menu-title {
    width: calc(100% - 130px); 
}
/* MOBILE MENU */
#closeSlideMenu {
	cursor: pointer;
	font-size: 25px;
	padding: 1vw;
	text-align: right;
}
#mobileMenuToggle {
	cursor: pointer;
	position: absolute;
	z-index: 999;
	margin-top: 6px;
	padding: 6px;
	right: 20px;
	top: 20px;
}
#mobileMenuToggle span {
	float: right;
	height: 3px;
	position: relative;
	width: 24px;
	background: #fff;
}
#mobileMenuToggle span::after {
	content: "";
	display: block;
	height: 3px;
	position: relative;
	top: 5px;
	width: 24px;
	transition: all 0.5s ease 0s;
	background: #fff;
}
#mobileMenuToggle span::before {
	content: "";
	display: block;
	height: 3px;
	position: relative;
	top: -7px;
	width: 24px;
	transition: all 0.5s ease 0s;
	background: #fff;
}
#mobileMenuToggle.close span::after {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotateZ(-45deg);
	background: var(--primary-color-light);
}
#mobileMenuToggle.close span::before {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotateZ(45deg);
	background: var(--primary-color-light);
}
#mobileMenuToggle.close span {
	height: 0;
}
#mobileToggle > span {
	transition: all 0.5s ease;
}
.toggle-text {
	opacity: 0;
	font-size: 0;
}
.close .toggle-text {
	opacity: 100;
	font-size: inherit;
}
.close .initial-text {
	opacity: 0;
	font-size: 0;
}
/* MOBILE ICON NAVIGATION */
.mobile-icons {
	padding: 0.5em;
	z-index: 999;
	background: var(--dark-gray);
	position: relative;
}
.mobile-icons ul {
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: space-between;
	width: 100%;
	color: #fff;
	font-size: 22px;
}
.mobile-icons > li {
	cursor: pointer;
}
.mobile-icons .search-input[type="search"] {
    width: 100%;
}
.search-toggle {
	cursor: pointer;
	display: inline-block;
}
.m-search-box {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
	font-size: 14px;
	/* border: 3px solid var(--primary-color); */
	background: var(--dark-gray);
	padding: 0.5em;
}
.m-search-box .search-input {
	border: 3px solid var(--primary-color);
}
.close i::before {
	content: "\f00d";
}
.header-mobile-multilg .wpml-ls{
    width: 7em;
}
.header-mobile-multilg .wpml-ls li a{
    padding: 3px 10px;
}
.header-mobile-multilg .wpml-ls li a span{
    font-size: 18px;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a, a:visited {
		text-decoration: underline;
	}
	 
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
		content: "";
	}
	pre, blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr, img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	 @page {
	 margin:0.5cm;
	}
	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}
	h2, h3 {
		page-break-after: avoid;
	}

	/* SITE SPECIFIC PRINT STYLES */
	#mobileMenu {
	    display: none;
	}
	main .wrapper.flex .twenty-five {
	    display: none;
	}
	.main-nav .nav > ul > li {  
	    border-left: none;
	}
	.mobile-icons {
	    display: none;
	}

	footer {
		display:none;
	} 
}
@media only screen and (max-width: 1440px) {
	.services-section .single-service {
	    padding: 6.5em 20px 20px 20px;
	}
	.services-section .single-service h2{
		font-size: 25px;
	}
	.services-section .single-service h4{
		font-size: 20px;
	}
	.trans-request-section .trans-inner-wrapper .trans-wrapper, 
	.trans-request-section .request-inner-wrapper .request-wrapper,
	.blog-section .single-blog .blog-content{
		padding: 20px;
	}
	.team-section .team-inner{
		padding: 7em 20px 20px 20px;
	}
}
@media only screen and (max-width: 1279px) {
    :root {
	 --larger-font: 30px;
	 --largest-font: 50px;
	 --hero-font: 8vw;
	}
	.main-nav ul li {
	    margin: 0 10px;
	    padding: 20px 0;
	}
	.main-nav ul li a {
	    font-size: 20px;
	}

}
@media only screen and (max-width: 1024px) {
	.wrapper {
	    padding: 0 2em;
	}
    .main-nav nav{
        padding: 0;
    }
    .page-hero .featured-img{
		max-width: 100%;
	}
    :root{
		--medium-font: 18px;
		--large-font: 20px;
		--larger-font: 30px;
    }
    .services-section .single-service h2{
		font-size: 20px;
	}
	.services-section .single-service h4{
		font-size: 18px;
	}
	main .widget_nav_menu {
	    padding-left: 0;
	}
	footer .footer-bottom {
	    margin-top: -20px;
	}
}
@media only screen and (max-width: 896px) {
	.main-nav ul li {
	    margin: 0 5px;
	    padding: 15px 0;
	}
	.main-nav ul li a {
	    font-size: 18px;
	}
	.nav ul li.menu-item-has-children ul.sub-menu li a{
		font-size: 16px;
	}
}

/** TABLET AND HIGHER **/
@media only screen and (min-width: 769px) {
	.show-tablet {
		display: none;
	}
	.text-right {
		text-align: right;
	}
}
@media only screen and (min-width: 641px) {
	.show-mobile {
		display: none !important;
	}
}
@media only screen and (max-width: 768px) {
	.hide-tablet {
		display: none !important;
	}
}
/* Tablet Portrait Only Sizes */
@media only screen and (min-width: 641px) and (max-width: 768px) and (orientation: portrait) {
	/* FONT SIZES */
	:root {
	 --larger-font: 28px;
	 --largest-font: 60px;
	 --hero-font: 8vw;
	}
	.hide-tablet {
		display:initial;
	}
	.fifty-t {
		width: 50%;
	}
	.thirty-three-t {
		width: 33.33%;
	}
	.sixty-six-t {
		width: 66.66%;
	}
	.twenty-five-t {
		width: 25%;
	}
	.pad2 {
		padding: 1em;
	}
	/* MAIN NAVIGATION */
	.main-nav .nav > ul > li > a {
		padding: 0.66em 0.33em;
	}
	/* FOOTER */
	.footer .widget_nav_menu li .menu-title {

		font-size: var(--medium-font);
	}
	/* Home Page */
	.home .inner-post {
		height: 300px;
	}
}
/* TABLET AND LOWER */
@media only screen and (max-width: 768px) {
	:root{
		--larger-font: 25px;
    }
	.header{
		position: relative;
		background-color: var(--primary-color-light);
		box-shadow: 0px 2px 15px 0px #000;
	}
	.mobile-menu li  {
		position: relative;
	}
	body.menu-open{
		overflow-y: hidden;
	}
	.menu-open .mobile-icons {
		position: fixed;
		top: 0;
		width: 100%;
	}
	.admin-bar.menu-open .mobile-icons{
		top: 46px;
	}
	.admin-bar #mobileMenu.opened {
		margin-top: 55px;
	}
	.alignnone{
		margin: 10px 0;
	}
	.page-hero .hero-wrapper{
		padding-top: 0;
	}
	.page-hero.home-hero .hero-wrapper{
		padding-top: 0;
	}
	.page-hero .hero-main{
		position: relative;
		margin-top: 20px;		
	}	
	.page-hero.home-hero .hero-main {
	    padding: 20px 0;
	}
	.page-hero.home-hero .featured-img{
		margin: 0;
	}
	.page-hero .featured-img .featured-img-wrapper {
	    max-width: 100%;
	}
	.services-section .single-service {
	    padding: 40px 20px 20px 20px;
	}
} 

@media only screen and (min-width: 641px) {
	.show-mobile {
		display: none;
	}
	.align-right {
		text-align: right;
	}
	#mobileMenu .user-menu{
	    display: none;
	}
}
/* MOBILE */
@media only screen and (max-width: 640px) {
	:root {
        --medium-font: 24px;
        --large-font: 30px;
        --larger-font: 30px;
        --largest-font: 51px;
	}

	.hide-mobile {
		display: none !important;
	}
	.row, .container{
		margin: 0;
	}
	/* Chart Widths */
	.ninth, .eighth, .eight-ninths {
		width:100%;
	}
	.ten, .twenty, .twenty-five, .thirty, .thirty-three, .forty, .fifty, .sixty, .sixty-six, .seventy, .seventy-five, .eighty, .ninety, .hero-left, .hero-right {
		width: 100%;
	}
	.m-twenty-five {
		width:25%;
	}
	.m-thirty-three {
		width: 33.33%;
	}
	.m-sixty-six {
		width: 66.66%;
	}
	.m-fifty {
		width: 50%;
	}
	.m-seventy-five {
		width:75%; 
	}
	.pad2s {
		padding: 0 2rem;
	}
	.pad2 {
		padding: 2rem;
	}
	.pad2t {
		padding: 2rem 0;
	}
	.pad2r {
		padding: 0 2rem 0 0;
	}
	.pad4s {
		padding: 0 4rem;
	}
	.pad4t {
		padding: 4rem 0;
	}
	.pad8t {
		padding: 4rem 0;
	}
	.wrapper {
		padding: 0 80px;
	}
	.m-full .wrapper {
		width: 100%;
		padding: 0;
	}
	/* HEADER */	
	.logo {
		width: 75%;
		margin: 0;
	}
	.admin-bar .header {
		top: 0;
	}
	#mobileToggle {
		font-size: var(--larger-font);
		font-weight: 600;
		width: calc(100% - 198px);
		box-sizing: border-box;
		text-align: center;
		cursor: pointer;
	}
	#mobileMenuToggle {
	    right: 74px;
	}
	.main-nav {
		background-color: #000;
	}
	
	/* MINI HEADER */
	 
	body:not(.menu-open) .header.mini-head {
		position: fixed;
		top:0;
		transition:all 0.5s ease;
	}
	body:not(.menu-open) .header.mini-head.hide-me {
		top:-100%;
	}
	/* FOOTER */
	footer .footer-bottom .footer-edge{
		padding-top: 100px;
	}
	.footer-info {
	    margin-top: 0;
	    padding-bottom: 20px !important;
	}
	.footer-info .footer-menu .footer-nav{
		padding: 10px 0px;
	}
	.footer-info .footer-menu .footer-nav ul{
		text-align: left;
	}
	.footer-info .footer-menu .footer-nav ul li{
		display: inline-block;
		margin: 0 15px;
	}
	.footer-info .footer-menu .footer-nav ul li:first-child{
		margin-left: 0;
	}
	
	/* SIDEBAR */
	.sidebar {
		padding-right: 0;
	}

	/* HOME PAGE MOBILE */
	.services-section .single-service h2 {
	    font-size: var(--larger-font);
	}
	.services-section .single-service h4 {
	    font-size: var(--medium-font);
	}

	/*Single Service*/
	.type-services .single-blog .service-content,
	.type-transports .single-blog .transports-content,
	.archive-services .service-list,
	.archive-transports .transports-list,
	.archive-services .service-list article .post-summary,
	.archive-transports .transports-list article .post-summary{
		padding-right: 0;
	}
	.archive-services .service-list article .post-summary h3,
	.archive-transports .transports-list article .post-summary h3{
		font-size: 19px;
	}
	.archive-services .service-list article .post-summary h2,
	.archive-transports .transports-list article .post-summary h2{
		font-size: 26px;
	}
	.archive-services .service-list article.type-services,
	.archive-services .service-list article.type-page,
	.archive-transports .transports-list article.type-transports{
		padding: 40px 0 80px 0;
	}
	.archive-services .service-list article .post-summary .more-read,
	.archive-transports .transports-list article .post-summary .more-read{
		position: absolute;
		bottom: 24px;
	}
	main .widget_nav_menu{
		display: none;
	}
	.article.type-page, article.type-post{
		padding: 0;
	}
	.vehicle-list .single-vehicle .vehicle-property,
	.blog-archieve .single-blog .blog-content,
	.management-list .single-management .management-property{
		padding: 0;
	}
		
	/************** WORDPRESS CORE **************/
	.alignright, .alignleft {
		float: none !important;
	    margin: 0.5em auto !important;
	}
	img.alignright, img.alignleft {
		margin:1em auto;
		display: block;
	}
}
@media only screen and (max-width:480px) {
	#mobileMenuToggle {
	    right: 1.5rem;
	}
	.wrapper{
		padding: 0 1.5rem;
	}
}
/* IE HACK */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.main-nav .nav > ul > li.mega-menu > .sub-menu {
		left: -15vw;
		width: 50vw;
	}
	.image-container img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
	}
}