@import url('https://fonts.googleapis.com/css2?family=Inder&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400;1,500;1,800&display=swap');

:root {
	--lightblue: #264DEC;
	--darkblue: #000c61;
	--gray: #f6f6f6;
	--white: #FFFFFF;
	--offwhite: #f8f8f8;
	--gold: #f2c85a;
	--graytext: #d9d9d9;
	--darkgray: #838080;
	--green: #3db588;
		
	--body-font-size: 0.9em;
	--body-font-weight: 500;
	
	--body-font: 'albula_proregular', sans-serif;
	--bold-font: 'albula_probold', sans-serif;

	
	--select-border: #777;
	--select-focus: blue;
	--select-arrow: var(--select-border);
}

@font-face {
    font-family: 'albula_proregular';
    src: url('../fonts/vendor/albulapro/albulapro-regular-webfont.woff2') format('woff2'),
         url('../fonts/vendor/albulapro/albulapro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'albula_probold';
    src: url('../fonts/vendor/albulapro/albulapro-bold-webfont.woff2') format('woff2'),
         url('../fonts/vendor/albulapro/albulapro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
    /* font-size: 0.75em;  - 12px */
    /* font-size: 0.875em; - 14px */
    /* font-size: 1em;     - 16px */
    font-size: var(--body-font-size); /* - 18px */
    font-family: var(--body-font);
    font-weight: var(--body-font-weight);
    color: #363636;
/*     line-height: 1.65em; */
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

html {
	background: var(--white);
    padding: 0;
    margin: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--graytext);
}

b {
    font-family: var(--bold-font);	
}

p {

}

h1 {
	
}

h2 {
	font-family: var(--bold-font);
	 font-size: 1.5em;
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 2.5em;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
	
}

img {
	display: block;
	width: 100%;
	height: auto;
}

body:after {
	position: fixed;
	z-index: 999999;
	content: 'mobile';
	display: none;
	left: 0;
	top: 0;
	padding: 0.5em;
	font-size: 0.6em;
	color: #FFF;
}

.yellow_bg {
	background: var(--lightblue);
}

.white_bg {
	background: var(--white);
}

.gray_bg {
	background: var(--gray) !important;
}

.black_bg {
	background: var(--darkblue) !important;
}

.yellow_col {
	color: var(--lightblue);
}

.white_col {
	color: var(--white);
}

.gray_col {
	color: var(--gray) !important;
}

.black_col {
	color: var(--darkblue);
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/*-LIST STYLING-*/
/*-()--------------------------------------------------------------------------*/

.content_block ol {
	padding-left: 1.9em;
}

.content_block ul {
	list-style: none;
	padding: 0;
}

.content_block ul li {
	position: relative;
	padding-left: 1.8em;
	margin: 1em 0;
}

.content_block ul li:after {
	position: absolute;
	background: var(--darkblue);
	border-radius: 20px;
	left: 5px;
	top: 5px;
	content: '';
	display: block;
	width: 10px;
	height: 10px;
}

.content_block ol li {
	padding: 0;
}

.content_block ol li:after {
	display: none;
}

.content_block ul.icon {
	list-style-type: none;
    margin-left: 10px;
}

.content_block ul.icon li {
    margin-bottom: 12px;
    margin-left: -10px;
    display: flex;
    align-items: center;
	padding-left: 0;
}

.content_block ul.icon li::before {
    color: transparent;
    font-size: 1px;
    content: " ";
    margin-left: -1.3em;
    margin-right: 15px;
    padding: 10px;
    background-color: var(--lightblue);
    -webkit-mask-size: cover;
}

.content_block ul.icon.tick li::before {
    -webkit-mask-image: url("../assets/tick_icon.svg");
}


.content_block ul.icon li:after {
	display: none;
}

/*-MENU-*/
/*-()--------------------------------------------------------------------------*/

.img_50_left {
	width: 100%;
	float: left;
	margin: 2em 0;
}

.img_50_right {
	width: 100%;
	float: right;
	margin: 2em 0;
}

/*-BODY-*/
/*-()--------------------------------------------------------------------------*/

.wrapper {
	background: var(--white);
	/*overflow: hidden;*/
}

.container {
	width: 100%;
    max-width: 1325px;
    margin: 0 auto;
    overflow: hidden;
}

/*-HEADER-*/
/*-()--------------------------------------------------------------------------*/

.header_wrap {
	background: var(--lightblue);
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;		
}


.header_wrap.active {
	background: var(--darkblue);
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;	
}

.black_header {
	display: block;
}

.black_header a {
	width: 32px;
	height: 32px;
	font-size: 0;
	color: transparent !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pho {
	background: url('../assets/phone.svg') center center no-repeat;
	background-size: 80%;
}

/*.dem {*/
/*	background: url('../assets/demo.svg') center center no-repeat;*/
/*	background-size: 80%;*/
/*}*/

.log {
	background: url('../assets/login.svg') center center no-repeat;
	background-size: 80%;
}

.bil {
	background: url('../assets/billing.svg') center center no-repeat;
	background-size: 80%;
}

.black_header {
/* 	background: var(--darkblue); */
	color: var(--white);
	position: relative;
	border-bottom: 1px solid #708cff;
}



.black_header .container {
	padding: 1em 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.black_header .container .number {
	padding-bottom: 1em;
}

.black_header .container a {
	text-align: center;
	color: var(--gold);
/* 	margin: 0 auto; */
	display: block;
	font-size: 1em;
	font-family: var(--bold-font);
	text-decoration: none;

	display: flex;
	align-items: center;
	justify-content: center;
}

.black_header .container .login {
	display: flex;
	margin:  0 auto;
}

.black_header .container span {
	font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;	
}

.black_header .container a:hover {
	color: var(--white)
}

.black_header .container a.dem {
	/*outline: white solid 1px;*/
	background: #3db588;
	color: var(--white) !important;
	line-height: 1.6;
	border-radius: 3px;
	font-size: 1em;
	display: block;
	padding: 3px 10px;
	width: 100%;
	max-width: 170px;
}



.black_header .social {
	position: absolute;
	right: 0;
	top: 0;
}

.black_header .social ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.black_header .social ul li {
	display: block;
	width: 42px;
	height: 52px;
	float: left;
	font-size: 0;
	color: transparent;
}

.black_header .social ul li a {
	position: relative;
	float: left;
	display: block;
	width: 100%;
	height: 100%;
}

.black_header .social ul li a.linkedin {
	background: url('../assets/linkedin.svg') center center no-repeat;
	background-size: 40%;
}

.black_header .social ul li a.twitter {
	background: url('../assets/twitter.svg') center center no-repeat;
	background-size: 40%;
}

.black_header .social ul li a.facebook {
	background: url('../assets/facebook.svg') center center no-repeat;
	background-size: 40%;
}

.black_header .social ul li a.instagram {
	background: url('../assets/instagram.svg') center center no-repeat;
	background-size: 40%;
}

.black_header .social ul li a:hover {
	background-color: var(--lightblue);
}

.header {
	position: relative;
}

.header .logo {
	width: 140px;
	height: 52px;
	display: block;
	margin: 0.5em 0;
	float: left;
}

.header .logo a {
	background: url('../assets/white-logo.svg') center center no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100%;
	display: block;
	color: transparent;
	font-size: 0;
}

.header .container {
	padding: 0 0.5em;
	overflow: visible;
}

.sign_up {
	position: relative;
	margin: 0.5em 0;
	float: right;
	height: 52px;
	
	padding-right: 50px;
}

.sign_up .menu {
	position: absolute;
	width: 40px;
	right: 0;
	bottom: 0;
	top: 0;
}

.sign_up .menu a {
	color: transparent;
	background: url('../assets/menu.svg') center center no-repeat;
	background-size: 80%;
	width: 100%;
	height: 100%;
	font-size: 0;
	display: block;
}

.sign_up a {
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	line-height: 52px;
	color: var(--darkblue)
}

.sign_up a span {
	display: none;
}

.sign_up a:hover {
	color: var(--darkgray);
}

.discount-banner {
	background-color: var(--lightblue);
}

.discount-img {
	width: 500px;
}

/*-MENU-*/
/*-()--------------------------------------------------------------------------*/

.menuWrapper {
	width: 100%;
	display: none;
}

.menuWrapper.on_off {
	display: inline-block;
}

.menuWrapper nav.navi {
/* 	display: none; */
	float: left;
	width: 100%;
}

.menuWrapper  nav.navi.open {
	display: block;
}

.menuWrapper nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
/* 	width: auto; */
	width: 100%;
}

.menuWrapper nav ul li {
	position:relative;
	float:left;
	margin:0;
	padding:0;
	width: 100%;
}

.menuWrapper nav ul li a, .menuWrapper nav ul ul li a {
	position: relative;
	display: block;
	float: left;
	width: 100%;
/* 	color: #5f6368 ; */
/*     font-weight: 500; */
}


.menuWrapper nav ul ul li a {
/* 	font-family: var(--bold-font); */
}

.menuWrapper nav ul li a {
	box-sizing: border-box;
	padding: 1.2em 0.8em 1em 0.8em;
	font-size: 1em;
}

.menuWrapper nav ul li a {
    text-transform: uppercase;
}

.menuWrapper nav > ul > li {
    border-top:1px solid #2a34b7;
}

.menuWrapper nav ul li > a {
    color: var(--white);
}

.menuWrapper nav ul li.menuActive {

}

.menuWrapper nav ul li.menuActive a {
/* 	color: #333333; */
}

.menuWrapper nav ul > li a:hover {
    transition: background-color 0.8s ease;
	text-decoration: none;
	color: var(--gold);
}

.menuWrapper nav ul ul > li {
    border-top:1px solid #2a34b7;
}

.menuWrapper nav ul ul li a {
	box-sizing: border-box;
	font-size: 0.8em;
	padding: 1.8em 0.8em 1.8em 0.8em;
/* 	color: #5f6368; */
}

/*
.menuWrapper nav ul li:hover ul li:hover a {
	background: var(--darkblue);
	color: var(--lightblue);
}
*/

/*
.menuWrapper nav ul ul li:first-child {
	border-top:0;
}
*/

.menuWrapper nav ul ul {
	padding-left: 2em;
}

.menuWrapper nav ul ul li {
	width: 100%;
}

.menuWrapper nav ul .subNav {
	visibility: visible;
/* 	visibility: hidden; */
	position: relative;
	top:100%;
	left:0;
	width: 250px;
/* 	background:#fff; */
	padding:0;
	
	-webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.19);
	-moz-box-shadow: 0 0 5px 1px rgba(0,0,0,0.19);
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.19);

/* 	transition: 0.2s 0.2s; /* delay of 1 seconds on hover off */
	opacity: 1;
	display: none;
	z-index: 9999;
}

.menuWrapper nav ul li:last-child .subNav {
	right: 0;
	left: auto;
	outline: red solid 1px;
}

.menuWrapper nav ul ul .subNav {
	top:0;
	left:100%;
}

.menuWrapper nav ul li:hover > .subNav {
	visibility: visible;
/* 	transition-delay: 0s; /* react immediately on hover */
	opacity: 1;
}

.subNav.open {
	display: inline !important;
}

.rsp_button {
	position: absolute !important;
    font-size: 1.8em;
	right: 0;
	width: 43px !important;
	height: 48px;
/*     max-height: 48px; */
	text-align: center;
    padding: 0;
    cursor: pointer;
}

.rsp_button:hover {
/* 	background: #6e8486; */
	color: #FFF;
}

/*-Footer-*/
/*-()--------------------------------------------------------------------------*/

.footer {
	background: var(--darkblue);	
}

.footer .container > div {
	padding: 2em 2em 0 2em;
}

.footer h2, .footer p, .footer a{
	color: var(--white);
}

.footer h2 {
	margin-top: 0;
}

.footer p {
	color: var(--graytext);
}

.footer ul {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

.footer ul li {
	margin-bottom: 10px;
	display: block;
	width: 100%;
}

.footer .social {
	display: inline-block;
	width: 100%;
}

.footer .social li {
	display: block;
	width: 52px;
	height: 52px;
	float: left;
	font-size: 0;
	color: transparent;
	margin: 0 10px 10px 0;
}

.footer .social li a {
	background-color: var(--lightblue);
	color: transparent;
	font-size: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.footer .quick_links li a {
	text-decoration: none;
}

.footer .quick_links li a:hover {
	color: var(--gold);
}

.footer span {
	text-align: left;
	display: block;
	color: var(--white);
	width: 100%;
	padding-bottom: 2em;
}

.footer .social li a.linkedin {
	background:  url('../assets/linkedin.svg') center center no-repeat;
	background-size: 40%;
}

.footer .social li a.twitter {
	background: url('../assets/twitter.svg') center center no-repeat;
	background-size: 40%;
}

.footer .social li a.facebook {
	background: url('../assets/facebook.svg') center center no-repeat;
	background-size: 40%;
}

.footer .social li a.instagram {
	background: url('../assets/instagram.svg') center center no-repeat;
	background-size: 40%;
}

.footer img {
	max-width: 200px;

	filter: grayscale(100%); /* Standard */
	-webkit-filter: grayscale(100%); /* Webkit */		
}

.footer .container .mind {
	max-width: 150px;
	width: 100%;
	margin-bottom: 2em;
}

.footer .container .mind span {
	text-align: left;
	padding-bottom: 2em;
	color: var(--gray);
}

/*-Form Styling-*/
/*-()--------------------------------------------------------------------------*/

/* Style inputs with type="text", select elements and textareas */
.form_container input[type=text], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */  
	border: 1px solid #ccc; /* Gray border */
	border-radius: 0; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
.form_container input[type=submit] {
	clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
	text-align: center;
	text-transform: uppercase;
	background: var(--darkblue);
	margin: 0 auto 0 auto;
	padding: 1em 2em;
	color: var(--white);
	font-weight: 700;
	font-size: 1.3em;
	text-decoration: none;
	display: block;
	max-width: 300px;
	border: none;
	cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
.form_container input[type=submit]:hover {
	background-color: var(--lightblue);
	color: var(--darkblue);
}

/* Add a background color and some padding around the form */
.form_container {
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    background: var(--white);
	border-radius: 5px;
	padding: 2em;
}

/*-SLIDER-*/
/*-()--------------------------------------------------------------------------*/

.subtleSlider, .gifbanner {
	background: var(--lightblue);
/* 	overflow: hidden; */
	position: relative;
	display: block;
/* 	height: 600px; */
	width: 100%;
}

#slideshow, #slideshow2 {
	position: absolute !important; /* 'relative' or 'absolute' will also work. */
	position: relative !important; /* 'relative' or 'absolute' will also work. */	
	overflow: hidden;  /* Necessary. Otherwise you would see the slides sticking out the sides while being animated. */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	
	height: 300px;
	width: 100%;
}

.ken-burns-slideshow__slide {
	width: 100%;
}

img.ken-burns-slideshow__slide-img {
	width: 100% !important;
	height: auto;
}

.subtle_text_block {
	color: var(--black);
	background: var(--yellow);
/* 	padding: 2em; */
	width: 100%;
}

.subtleSlider > .subtle_text_block {
/*
	position: absolute;
	z-index: 999;
	bottom: 0 !important;
*/
}

.subtle_text_block .container {
	padding: 2em;
}

.subtle_text_block h1 {
	font-family: var(--bold-font);
	margin-top: 0;
	color: var(--gold);
}

.subtle_text_block p, .subtle_text_block li {
	font-weight: 400;
	color: var(--white);
/* 	width: 60%; */
}

.subtle_text_block ul {
	padding: 0 0 0 20px;
}

#slideshow .static-content {
	top: auto !important;
}

.call_us,
.subtle_text_block .call_us,
.banner_text_block .call_us {
	position: relative;
	background: var(--gold);
	display: flex;
	justify-content: center;
	width: auto;
	padding: 15px;
	border-radius: 6px;
	font-family: var(--bold-font);
	color: var(--white);
	margin-bottom: 1em;	
}

.subtle_text_block .call_us.gold_bg {
	color: var(--black);
}

.subtle_text_block .call_us.gold_bg:hover {
	color: var(--white);
}

.call_us span {
	display: none;
}

.call_us a,
.subtle_text_block .call_us a,
.banner_text_block .call_us a {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
}

.call_us:hover,
.subtle_text_block .call_us:hover,
.banner_text_block .call_us:hover {
	background: var(--darkblue);
}

.call_us.reverse {
	background: var(--darkblue);
}

.call_us:hover {
	background: var(--lightblue);
}

.new_link {
	display: inline-flex;
	width: 100%;
	margin-top: 0.7em;
}

.new_link a, .new_link button {
	background: var(--darkblue);
	padding: 1.5em 2em;
	color: var(--white);
	font-family: var(--bold-font);
	width: 100%;
	text-align: center;
	border-radius: 6px;
	text-decoration: none;
}

.new_link a:hover {
	background: var(--gold);
}

.new_link.yellow_link a {
	background: var(--gold);
}
.new_link.yellow_link a:hover {
	background: var(--darkblue);
}

.btn-md {
	font-family: albula_probold, sans-serif;
	border: unset;
	border-radius: 5px;
	padding: 20px;
	cursor: pointer;
	font-weight: bold;
	font-size: 16px;
}

.btn-gold {
	background: var(--gold) ;
	color: white;
}

.btn-gold:hover {
	background: var(--darkblue);
}

.banner {
	background: var(--lightblue);
/* 	overflow: hidden; */
	position: relative;
	display: block;
/* 	height: 600px; */
	width: 100%;
}

.banner.banner_green {
	background: var(--green);
}

.banner_green {
	background: var(--green);
}

.banner_green.greentext {
	background-image: url('../assets/greenbg2.png');
	background-repeat: no-repeat;
	background-position: left bottom;
}

.banner_green.greentext h2 {
	color: var(--white);
	font-size: 1.4em;
	line-height: 30px;
	/*padding-left: 50px;*/
}



.banner_green.greentext h3 {
	font-size: 1.4em;
	color: var(--white);
}

.banner_green.greentext p {
	font-size: 1.2em;
	color: var(--white);
}

.banner_green.greentext h2 {
	position: relative;
	padding-right: 20px;
	/*padding-left: 50px;*/
}

.banner_green.greentext .content_dowm h2:after {
	position: absolute;
	content: '';
	background: url('../assets/tick-gold.svg') center center no-repeat;
	background-size: 35px;
	display: block;
	width: 40px;
	height: 40px;
	left: 0;
	top: 0;
}

.banner_green.greentext .content_dowm h2 {
    padding-left: 50px;
}

.company {
    display: flex;
    flex-direction: column;
    max-width: 150px;
}




.banner.mapimg {
	background: var(--darkblue);
}

.banner.banner_gold {
	background: var(--gold);
}

.banner_text_block {
	color: var(--black);
	background: var(--yellow);
/* 	padding: 2em; */
	width: 100%;
}

.banner_text_block .container {
	padding: 2em;
}

.banner_text_block h2 {
	font-family: var(--bold-font);
	margin-top: 0;
	color: var(--gold);
}

.banner.banner_green .banner_text_block h2 {
	color: var(--lightblue);

}

.what > div {
	padding-left: 20px;
}

.what_people h2 {
	text-align: left;
}

img.headshot {
	border-radius: 100px;
	width: 100px;
	height: 100px;
	display: block;
	margin: 40px auto 0 auto;
}


.banner_text_block p {
	font-weight: 400;
	color: var(--white);
	/*width: 60%;*/
}


/*-SLIDER-*/
/*-()--------------------------------------------------------------------------*/

.titleBlock {
	text-align: center;
	padding: 2em 2em;
}

.titleBlock h2 {
	font-size: 1.3em;
}

/*-SLIDER-*/
/*-()--------------------------------------------------------------------------*/

.six_by_six {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}

.six_by_six > div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 50%;
	margin-bottom: 3em;
	
}

.six_by_six > div img {
	width: auto;
	height: 100%;
	max-height: 40px;
	opacity: 0.5;

	filter: grayscale(100%); /* Standard */
	-webkit-filter: grayscale(100%); /* Webkit */	
}

/*-TWO BY TWO -*/
/*-()--------------------------------------------------------------------------*/

.two_by_two {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.two_by_two > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top:var(--bs-gutter-y)
}

.col-sm-6 {
	display: flex;
	justify-content: space-between;
	background: var(--white);
	border-radius: 10px;	
	overflow: hidden;
}

.col-sm-6.content_dowm {

}

.col-sm-6 div {
	padding: 2em;
	display: flex;
	align-items: center;
}

.col-sm-6.content_dowm div {
	width: 100%;	
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.full {
	padding: 2em;
}

.full .col-sm-6  {
	margin: 0;
	padding-top: 0;
	width: 100%;
}

.full .col-sm-6 > div {
	display: flex;
	flex-direction: column;
	width: 100% !important;
}

.full .col-sm-6 > div h3 {
	font-family: var(--bold-font);

}

.full .col-sm-6 > div h2 {
	font-family: var(--body-font);
	text-align: center;
}

.two_by_two.mb0 {
	margin-bottom: 0;
	padding-bottom: 0;
}

.two_by_two.mb0 > div {
	margin-bottom: 0;
	padding-bottom: 0;
	box-shadow: none !important;
}

.col-sm-6.content_dowm div ul {
	padding-left: 20px;
}

.col-sm-6.content_dowm div li,
.col-sm-6.content_dowm div p {
	font-size: 1.2em;
}

.col-sm-6 div img {
    max-width: 200px;
}	


.col-sm-6 div:nth-child(1) {
	width: 30%;
}

.col-sm-6.content_dowm div:nth-child(1) {
	width: 100%;
}

.col-sm-6 div:nth-child(2) {
	width: 70%;
}


.gray_bg_img {
	background: url('../assets/grey-background.jpg') center center no-repeat;
	background-size: cover;
}


.two_by_two {
	padding: 0 2em 2em 2em;
}


.col-sm-6 {
    margin: 2em 0 2em 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/*-TWO BY PERSONEL -*/
/*-()--------------------------------------------------------------------------*/

.two_by, .people_content > div {
	display: flex;
/* 	flex-wrap: wrap; */
	flex-direction: column;
}

.personel span {
	width: 150px;
	max-width: 150px;
/* 	height: 120px; */
	display: flex;
	align-items: center;
	justify-content: center;
}


.personel {
	padding: 0 2em;
}


.personel .container > div {
	margin-bottom: 2em;
}

/*-SIX ICONS-*/
/*-()--------------------------------------------------------------------------*/

.six_by {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.six_by > div {
	flex: 1 0 31%; /* explanation below */
/* 	border: 1px solid var(--white); */
}




.six_section_1 > div {
	text-align: center;
	padding: 2em;
}

.six_section_1 span {
	box-shadow: 0 3px 15px rgba(0,0,0,0.2);
	border-radius: 100px;
	background: var(--white);
	margin: 0 auto;
	width: 100px;
	height: 100px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.six_section_1 span > div {
	background: var(--gold);	
	border-radius: 100px;	
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.six_section_1 span > div a {
	color: var(--darkblue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.six_section_1 a {
	/*color: var(--darkblue);*/
}

.six_section_1 span img {
	width: 60%;
}

.six_section_1 h3 {
	font-family: var(--bold-font);
	font-size: 1.3em;
}

.six_section_1 p {
	font-size: 1.2em;
}

.six_by.ul_list p {
	padding-right: 20px;
}
.lightblue_banner .six_by.ul_list p,
.white_banner .six_by.ul_list p {
	position: relative;
	padding-right: 20px;
	padding-left: 50px;
	/*max-width: 70%;*/
}

.lightblue_banner .six_by.ul_list p:after,
.white_banner .six_by.ul_list p:after {
	content: '';
	position: absolute;
	background: url('../assets/tick-gold.svg') center center no-repeat;
	background-size: 35px;
	display: block;
	width: 40px;
	height: 40px;
	left: 0;
	top: 0;
}
.lightblue_banner .six_by.ul_list.bull p:after,
.white_banner .six_by.ul_list.bull p:after {
	content: '';
	position: absolute;
	background: url('../assets/bullet.svg') center center no-repeat;
	background-size: 30px;
	display: block;
	width: 40px;
	height: 40px;
	left: 0;
	top: -5px;
}

/*-MAP-*/
/*-()--------------------------------------------------------------------------*/

.map {
	background: url('../assets/blue-backgroud.jpg') center center no-repeat;
	background-size: cover;
}

.map > div {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.map div > div {
/* 	padding: 2em; */
}

.map h2 {
	color: var(--gold);
}

.map p {
	color: var(--white);
}

.map .container {
	padding: 2em;
}

/*-EXPERIENCED TEAM-*/
/*-()--------------------------------------------------------------------------*/

.image_banner {
	position: relative;
	background: var(--yellow);
}

.image_banner_image {
	background-color: var(--black);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	position: relative;
	display: none;
	height: 500px;
	width: 100%;
}

.image_banner_text {
	padding: 2em;
}

.image_block > div {
	padding: 2em 1em 2em 2em;
}

.four_white {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

}

.four_white > div {
	width: 49%;
	padding: 1em;
	text-align: center;
	background: var(--white);
	font-family: var(--bold-font);
	color: var(--lightblue);
	margin-bottom: 10px;
	font-size: 1.3em;
}

/*-EXPERIENCED TEAM-*/
/*-()--------------------------------------------------------------------------*/

.plan > div {
	background: var(--white);
	position: relative;
	border-radius: 6px;
	padding: 2em;
	margin-bottom: 40px;
}

.plan.gold > div:after {
	background: var(--gold) url("../assets/crown.svg") no-repeat left 15px center;
	background-size: 20px;
	text-align: center;
	position: absolute;
	display: block;
	content: 'Most Popular';
	border-radius: 100px;
	font-family: var(--bold-font);	
/* 	height:  30px; */
	width: 80%;
	padding: 10px;
	top:-20px;
	left:10%;
}



.plan h2 {
	color: var(--darkblue);
	text-align: center;
	font-size: 5.5em;
	margin:0;
}

.banner_text_block .plan_wrap .plan h2 {
	margin:0;
}

.plan h3 {
	text-align: center;
	margin-top: 0;
	font-size: 1.5em;
	font-family: var(--bold-font);
}

.plan ul {
	list-style: none;
	padding: 0;
	margin:2em 0;
}

.plan ul li {
	margin-bottom: 1em;
	position: relative;
	line-height: 30px;
	padding-left:35px;

}

.plan .plan_book {
	background: var(--darkblue) url("../assets/arrow-long-right.svg") no-repeat right 20px center;
	background-size: contain;
	position: relative;
	border-radius: 100px;
	color: var(--white);
	display: flex;
	align-items: end;
	padding: 0.5em;
	transition: 0.3s;	
}

.plan.gold .plan_book {
	background: #dcdee0 url("../assets/arrow-long-right-blue.svg") no-repeat right 20px center;
	background-size: contain;
}

.plan .plan_book:hover {
	background-color: var(--lightblue);
}

.plan .plan_book span {
	text-align:center;
	background: var(--white);
	border-radius: 100px;
	padding: 1em 0;
	color: var(--darkblue);
	font-family: var(--bold-font);
	max-width:60%;
	width: 100%;
}

.plan.gold .plan_book span {
	background: var(--gold);
	color: var(--darkblue);
}

.plan ul li:after {
	position: absolute;
	content:'';
	display: block;
	width: 30px;
	height: 30px;
	background: url('../assets/arrow.svg') center center no-repeat;
	background-size: cover;
	left:0;
	top:0;
}

.plan .plan_book a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

/* Latest News */

.news_block {
	background: #264dec;
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}

.news_block > div > div > div:nth-child(1) {
	background-size: cover;
	height: 200px;
}

.news_block > div > div > div:nth-child(2) {
	padding: 2em;
}

.news_block > div > div > div {
	background: #264dec;
}

.news_block h3 {
	color: #fff;
	font-size: 1.6em;
	margin-top: 0;
	line-height: 1.3;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_block p {
	color: #fff;
	margin-top: 0;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_block a {
	clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
	text-align: center;
	text-transform: capitalize;
	background: #000;
	margin: 2em  0 ;
	padding: 1em 0;
	color: #fff;
	font-family: 'albula_probold', sans-serif;
	font-size: 0.7em;
	text-decoration: none;
	display: block;
	max-width: 200px;
}

.news_block a:hover {
	background: #fff;
	color: #000;
}

/*-EXPERIENCED TEAM-*/
/*-()--------------------------------------------------------------------------*/

#roiCalculatorForm h3 {
		font-family: var(--bold-font);
		color: var(--lightblue);
		font-size: 1.5em;
	}
	
.calculatorForm_box {
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.07);
    background: var(--white);
	border-radius: 5px;
	padding: 2em;
	margin-bottom: 20px;
}

/* Style inputs with type="text", select elements and textareas */
.calculatorForm_box  input[type=text], input[type=email], input[type=tel], input[type=date], input[type=time], input[type=number], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */  
	border: 1px solid #ccc; /* Gray border */
	border-radius: 0; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

.calculatorForm_box .input-icon {
	position: relative;
}

.input-icon {
    position: relative !important;
}

.input-icon > i {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 44px;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
    opacity: 0.7;
}

.input-icon > input {
    padding-left: 25px;
    padding-right: 0;
}

.input-icon-right > i {
    right: 0;
}

.input-icon-right > input {
    padding-left: 0;
    padding-right: 25px;
    text-align: right;
}


.dark_banner {
	background: var(--darkblue);
	position: relative;
}

.dark_banner .container {
	padding: 2em;
}

.dark_banner h2 {
	font-family: var(--bold-font);
	margin-top: 0;
	color: var(--gold);
}

.dark_banner p {
	font-weight: 400;
	color: var(--white);
}

.white_banner {
	background: var(--darkblue);
	position: relative;
}

.white_banner .container {
	padding: 2em;
}

.white_banner h2 {
	font-family: var(--bold-font);
	margin-top: 0;
	color: var(--white);
}

.white_banner p {
	color: var(--white);
}

.white_banner p b {
	font-weight: 400;
/* 	color: var(--lightblue); */
}











.lightblue_banner {
	background: var(--white);
	position: relative;
}

.lightblue_banner .container {
	padding: 2em;
}

.full_banner h2,
.lightblue_banner h2 {
	font-family: var(--bold-font);
	margin-top: 0;
	color: var(--darkblue);
}

.full_banner,
.lightblue_banner p {
	color: var(--darkblue);
}

.lightblue_banner p b {
	font-weight: 400;
	/* 	color: var(--lightblue); */
}

.gifslide #slideshow .slide span {
	text-align: center;
	position: relative;
}

.gifslide #slideshow .slide span h2,
.gifslide span h2 {
	text-align: center;
	color: var(--white);
}

.mobile_links {
	display: block;
}

.desktop_links {
	display: none;
}


.blocker {
	z-index: 999 !important;
	padding: 0 !important;
}

.modal {
	position:relative; 
	border:none; 
	background: #fff;
	color: #264DECFF;
	border: 3px solid #264DECFF;
	padding:0 !important;
	max-width:684px;
	z-index: 999 !important;
}

.modal-sm {
	max-width: 300px !important;
}

#myModal > div {
	background: var(--darkblue);
	padding: 2em;
}

#myModal > div:after {
	content: '';
	display: block;
	width: 100%;
	height: 80px;
	position: absolute;
	left: 0;
	top: -40px;
	background:url("../assets/head2.png") no-repeat center center;
	background-size: contain;
}

#myModal > div h2 {
	color: var(--white);
	text-align: center;
}

.modal > div a {
	background: var(--gold);
	display: block;
	width: 100%;
	padding: 10px 0;
	border-radius: 6px;
	text-decoration: none;
}

.modal > div > div {
	text-align: center;
}

.fag_tab_wrapper {
	padding: 2em 0;
}

.faqtabs button {
	background: var(--darkblue);
	padding: 1.5em 2em;
	color: var(--white);
	font-family: var(--bold-font);
	width: 100%;
	text-align: center;
	border-radius: 6px;
	text-decoration: none;
	border: 0;
}

.faqtabs button:hover {
	background: var(--lightblue);
}

/*-campaign-*/
/*-()--------------------------------------------------------------------------*/

.campaign .two_col, .campaign .three_col {
	max-width: 90%;
	margin: 0 auto;
}

.campaign .two_col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.campaign .three_col {
	display: flex;
	flex-direction: column;
/* 	outline: red solid 1px; */
}


.campaign .cp_one .img  {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	position: relative;
}

.campaign .cp_one .img a {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 1;
	color: transparent;
	font-size: 0;
}

.campaign .cp_one .img img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 0px 0px rgba(0,0,0,0.2);
}

.campaign .cp_one  h1 {
	font-family: var(--bold-font);
	margin-top: 0;
	font-size: 3.5em;
}

.campaign .cp_one.dark_text  h1,
.campaign .cp_one.dark_text  h2,
.campaign .cp_one.dark_text  h4,
.campaign .cp_one.dark_text ul li {
	color: var(--darkblue);
}


.campaign .three_col h2 {
	font-family: var(--body-font);
	margin-top: 0;
	margin-bottom: 60px;
	font-size: 2.6em;
	max-width: 50%;
}

.campaign .three_col h3 {
	font-family: var(--bold-font);
	margin-top: 0;
	font-size: 1.1em;
}

.campaign .cp_one.dark_text h4 {
	font-family: var(--bold-font);
	margin-top: 0;
}

.campaign .three_col * div {
	max-width: 100%;
	margin-bottom: 20px;
}

.campaign .cp_one {
	color: var(--white);
}

.campaign .cp_one ul {
	list-style: none;
	padding: 0;
	margin:2em 0;
}

.campaign .cp_one ul li {
	margin-bottom: 1em;
	position: relative;
	line-height: 30px;
	padding-left:35px;
	font-size: 1.3em;
}

.campaign .cp_one ul li:after {
	position: absolute;
	content:'';
	display: block;
	width: 30px;
	height: 30px;
	background: url('../assets/arrow-2.svg') center center no-repeat;
	background-size: cover;
	left:0;
	top:0;
}

.campaign .cp_one.dark_text ul li:after {
	position: absolute;
	content:'';
	display: block;
	width: 30px;
	height: 30px;
	background: url('../assets/arrow-3.svg') center center no-repeat !important;
	background-size: cover !important;
	left:0;
	top:0;
}

.campaign .cp_one,
.campaign .cp_two,
.campaign .cp_three {
	padding: 2em 0;
}

.campaign .cp_image {
	max-width: 200px;
	border-radius: 300px;
	margin: 0 auto;
	margin-top: 2em;
}

.campaign .cp_ipad {
	max-width: 60%;
	margin: 0 auto;
	margin-top: 4em;
}

.cp_three.cp_comment {
	background: var(--darkblue);
	padding: 4em 0;
}

.cp_comment p {
	text-align: center;
	padding: 0 2em;
	max-width: 60%;
	margin: 0 auto;
	color: var(--white);
	margin-top: 2em;
	font-size: 1.3em;
}

.cp_comment.white p {
	color: var(--black);
}

.block_four {
	display: flex;
	justify-content: space-between;;
	flex-direction: column;
}

.block_four > div {
	width: 100%;

	background: var(--white);
	border-radius: 10px;
	overflow: hidden;

	padding: 20px;
	/*margin: 2em 0 2em 0;*/
	box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.block_four > div h2 {
	font-size: 1.4em;
}

.block_four > div img {
	max-width: 64px;
	margin-bottom: 20px;
}

/*-Features Table-*/
/*-()--------------------------------------------------------------------------*/

.features_bg {
	background-color: var(--darkblue);
	background-image: url('../assets/glow.png'), url('../assets/glow-2.png');
	background-position: left top, right bottom;
	background-repeat: no-repeat;
	background-size: 70%;
	padding: 20px;
}

.features_table > div {
	border-top: 1px solid #6372da;
	display: flex;
	/*flex-direction: row;*/
	flex-direction: column;
}

.features_table div > div {
	padding: 10px 0;
	/*width: 33%;*/
	width: 100%;
}



.features_table div div span {
	color: var(--white);
	font-size: 1em;
	padding-right: 20px;
	display: flex;
}

.features_table div:nth-child(2) div:nth-child(1) span {
	justify-content: center;
}

.features_table div:nth-child(1) div:nth-child(1) {
	/*outline: 1px solid red;*/
	/*max-width: 20%;*/
}

.features_table > div:nth-child(1) > div:nth-child(2) {
	/*outline: yellow 1px solid ;*/
	width: 80%;
}

.features_table > div:nth-child(1) > div:nth-child(2) {
	/*outline: yellow 1px solid ;*/
	width: 100%;
}

.features_table > div:nth-child(1) > div:nth-child(2) span {
	padding: 0;
	text-align: center;
}

.features_table div:nth-child(1) div:nth-child(1) span {
	padding: 0;
	max-width: 100%;
}



.features_table div > div:nth-child(1) span {
	font-family: var(--bold-font);
	/*min-height: 80px;*/
	font-size: 1.6em;
}

.features_table div > div:nth-child(3) span,
.features_table div > div:nth-child(4) span,
.features_table div > div:nth-child(5) span{
	color: var(--gold);
	flex-direction: column;
}

.features_table div > div span b {
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
}

.features_table div > div:nth-child(3) span b:after,
.features_table div > div:nth-child(4) span b:after,
.features_table div > div:nth-child(5) span b:after {
	content: '';
	background: url('../assets/tick-green.svg') center center no-repeat;
	position: absolute;
	display: block;
	height: 15px;
	width: 15px;
	left: 0;
	top: 2px;
}

.features_table div:nth-child(2) > div:nth-child(3) span {
	/*outline: red solid 1px;*/
}

.features_table .top span {
	font-family: var(--bold-font);
	font-size: 1.6em;
	display: flex;
	height: 100%;
	justify-content: center;
}

.features_table .table_logo {
	display: flex;
	flex-direction: column;
}

.features_table .table_logo img {
	/*max-width: 350px;*/
}

.features_table .logo_title {
	font-family: var(--body-font);
	text-align: center;
	padding-top: 10px;
	font-size: 0.7em;
}

.features_table .green_title {
	color: #01be62 !important;
	font-size: 2em;
	justify-content: left;
	text-align: center;
}


p .green_section {
	line-height: 3.1 !important;
}

h2 .green_section {
	line-height: 1.5 !important;
}

.green_section {
	background-color: #3db588;
	padding:10px 13px 10px 13px;
	border-radius: 6px;
}
.green_section span {
	color: white;
	font-size: 22px;
}


/*-Responsive Starts-*/
/*-()--------------------------------------------------------------------------*/

@media (min-width: 800px) {

	body:after {
		content: '800px';
		background: grey;
	}


	.three_blocks .container > div {
		display: flex;
	}

	.three_blocks .container div > .block {
		padding: 0 4em;
		width: 33%;
	}

	.three_blocks_black .container > div {
		display: flex;
	}

	.three_blocks_black .container div > .block {
		padding: 0 4em;
		width: 33%;
	}

	.three_blocks_yellow .container > div {
		display: flex;
	}

	.three_blocks_yellow .container div > .block {
		padding: 0 1em;
	}

	.showcase .project > div p {
		display: block;
	}

	.showcase .container > div {
		padding: 2em;
	}

	.three_blocks_yellow .container .icon.three:after {
		background-size: 100px;
	}

	.img_50_left {
		width: 50%;
		margin: 1em 2em 2em 0;
	}

	.img_50_right {
		width: 50%;
		margin: 1em 0 2em 2em;
	}

	.column.block {
		-webkit-box-align: stretch;
		align-items: stretch;
		align-content: flex-start;
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		justify-content: flex-start;
	}

	.column_block {
		flex-grow: 0;
		flex-shrink: 0;
		padding-top: 0;
		padding-right: 0.5rem;
	}

	.column_block > div {
		padding: 0 1.5em;
	}

	.width_25 {
		flex-basis: 25%;
	}

	.width_25 {
		max-width: 25%;
	}

	.width_33 {
		flex-basis: 33.333333%;
	}

	.width_33 {
		max-width: 33.333333%;
	}

	.width_50 {
		flex-basis: 50%;
	}

	.width_50 {
		max-width: 50%;
	}

	.left_col.w30 {
		width: 20%;
	}

	.right_col.w70 {
		width: 75%;
	}

	.campaign .two_col {
		flex-direction: row;
	}

	.campaign .two_col > div.w49 {
		width: 49%;
	}

	.campaign .two_col > div.w49_pad {
		/*padding: 40px 20px;*/
		padding: 0 5%;
		width: 49%;
	}

	.campaign .three_col > div {
		/*padding: 40px 20px;*/
	}

	.campaign .three_col * div {
		max-width: 50%;
	}

	.campaign .cp_one,
	.campaign .cp_two {
		padding: 4em 0;
	}
	
	.campaign .new_link {
		font-size: 100%;
	}
	

	.block_four {
		display: flex;
		justify-content: space-between;;
		flex-direction: row;
	}

	.block_four > div {
		width: 22%;
	}







	.content_block .left_col ul li {
		margin-bottom: 1em;
	}

	.column_block.width_25 .final_hold, .column_block.width_33 .final_hold, .column_block.width_50 .final_hold  {
		padding: 0;
	}


	.footer .container .mind {
		max-width: 250px;
	}

	.black_header .mind {
		display: flex;
	}
	
	.black_header .container {
		padding: 1em 2em;
		flex-direction: row;
	}

	.black_header .container .number {
		padding-bottom: 0;
	}

	.black_header .container a[href^="tel"] {
		color: inherit; /* Inherit text color of parent element. */
		text-decoration: none; /* Remove underline. */
		/* Additional css `propery: value;` pairs here */
	}

	.black_header .container .login {
		margin: 0;
	}
	
	.black_header a {
		background: none;
		width: auto;
		height: auto;
		font-size: inherit;
		color: var(--white) !important;
	}

	.black_header .container a.dem {
		line-height: 2.4;
	}

	.black_header .container a.bil {
		min-width: 110px;
	}

	.white_banner .six_by.ul_list p {
		max-width: 70%;
	}
	
	.call_us span {
		display: block;
	}
	
	.black_header .container span {
		font-size: 1.4em;
	}
	
	.black_header .container span br {
		display: none;
	}
	
	.call_us,
	.subtle_text_block .call_us, .banner_text_block .call_us {
		display: inline-flex;
	}

    .features_bg {
        padding: 60px 20px;
    }

	.features_table > div {
		flex-direction: row;
	}

	.features_table div > div {
		width: 33%;
	}

	.features_table .top span {
		align-items: center;
	}

	.features_table .table_logo img {
		max-width: 350px;
	}

	.features_table > div:nth-child(1) > div:nth-child(2) {
		width: 100%;
	}

	.features_table div:nth-child(1) div:nth-child(1) {
		width: 20%;
	}

	.features_table div:nth-child(2) div:nth-child(1) span {
		justify-content: left;
	}

	.features_table div > div:nth-child(1) span {
		min-height: 80px;
	}
	
	.column-reverse {
	  flex-direction: column-reverse !important;
	}
	
	.row-reverse {
	  flex-direction: row-reverse !important;
	}
}

@media (min-width: 900px) {

	body:after {
		content: '900px';
		background: brown;
	}

	.sign_up {
		padding-right: 0;
	}

	.sign_up .menu {
		display: none;
	}

	.menuWrapper.on_off, .menuWrapper {
		display: block;
        float: none;
/*         margin: 0 auto; */
/*         width: 60%; */
/*         max-width: 70%; */
    }

    .menuWrapper nav.navi {
	    padding-top: 1.5em;
        display: block;
    }

    .menuWrapper nav > ul {
        width: auto;
        float: none;
        display: flex;
        justify-content: flex-end;
    }

    .menuWrapper nav ul > li {
        border-top: 0;
        float: none;
    }

    .menuWrapper nav ul li {
        width: auto;
        margin-left: 1em;
    }

    .menuWrapper nav ul li a {
    	text-transform: capitalize;
		border-radius: 6px;
	}

    .menuWrapper nav ul > li  a {
        border-top:0;
/*         font-weight: 500; */
    }

	.menuWrapper nav ul ul {
		background: var(--white);
		padding: 0.5em;
		border-radius: 6px;
	}

    .menuWrapper nav ul ul li {
        /*border-top:1px solid #e4e3e3;*/
        float: left;
		margin-left: 0;        
    }

	.menuWrapper nav ul ul > li {
		border-top: 0;
		/*border-bottom:1px solid #e4e3e3;*/
	}
	
	.menuWrapper nav ul ul > li:last-child {
		border-bottom: 0;
	}	

    .menuWrapper nav ul .subNav {
        position: absolute;
        display: inherit;
    }

    .menuWrapper nav ul .subNav {
        /* 		transition: 0.1s 0.1s; /* delay of 1 seconds on hover off */
        margin-top: -1px;
        visibility: hidden;
        opacity: 0;
		border-radius: 6px;
    }

    .menuWrapper nav ul li:hover > .subNav {
        visibility: visible;
        transition-delay: 0s; /* react immediately on hover */
        opacity: 1;
        z-index: 999999;
    }

    .menuWrapper nav ul li a {
        padding:0.5em 0 0.5em 0;
        font-size: 0.8em;
        color: var(--white);
    }

	.menuWrapper nav > ul li.menuActive a {
		background: url('../assets/down.svg') right center no-repeat;
		background-size: 18px;
		padding-right: 30px;
	}

	.menuWrapper nav > ul li.menuActive a.sublink {
		list-style: none;
		background: url('../assets/right.svg') left 10px center no-repeat;
		background-size: 12px;
		padding-left: 35px;
	}

    .menuWrapper nav ul li:hover ul li a {
/* 		font-family: var(--bold-font);     */
        color: var(--darkblue);
    }
    
    .menuWrapper nav ul li ul li:hover a {
        color: var(--gold);
    }

    .menuWrapper nav ul li a.rsp_button {
	    display: none;
    }

	.menuWrapper nav ul ul li a {
		padding: 0.5em 0.5em;
		font-size: 1.2em;
	}

	.menuWrapper nav ul ul li:hover a.sublink {
		background: var(--gray) url('../assets/right.svg') left 10px center no-repeat;
		background-size: 12px;
		padding-left: 35px;
	}


    .login {
	    display: flex;
    }

	.black_header .container a.dem {
		line-height: 2.4;
		font-size: 1.2em;
		max-width: 280px;
		padding: 0 1em;
	}


	.footer .container > div {
		display: flex;
		justify-content: space-between;
	}

	.footer .container > div div {
		padding-right: 4em;
		width: 25%;
	}
	
	.footer .test > div {
		padding-right: 4em;
		width: 50% !important;
		display: inline;
	}

	.six_by_six {
		justify-content: space-between;
	}

	.six_by_six > div {
		width: 16%;
	}
	
	.six_section_1 {
		padding-bottom: 4em;
	}	

	.six_section_1 > div {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.six_section_1 > div > div {
		max-width: 80%;
	}
	
	
	.six_section_1 > div:nth-child(1) {
		border-bottom: 1px solid #dcdee0;
		border-right: 1px solid #dcdee0;
		
	}
	
	.six_section_1 > div:nth-child(2) {
		border-bottom: 1px solid #dcdee0;
	}
	
	.six_section_1 > div:nth-child(3) {
		border-bottom: 1px solid #dcdee0;
		border-left: 1px solid #dcdee0;
	}
	
	.six_section_1 > div:nth-child(4) {
		border-right: 1px solid #dcdee0;
	}
	
	
	.six_section_1 > div:nth-child(6) {
		border-left: 1px solid #dcdee0;
	}

	.two_by_two {
		padding: 6em 2em 6em 2em;
	}
	
	.faq-wrapper .two_by_two	{
		padding-top: 0;
	}


    .col-sm-6 {
        flex: 0 0 auto;
        width:49%
    }

	.faq-column-1 div {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.banner_green.greentext .faq-column-1 > div {
		justify-content: center;
	}

	.faq-column-1 div > div {
		width: 49%;
	}

	.banner_green.greentext  .faq-column-1 div div  {
		padding: 0 20px 0 0;
	}

	.six_by, .two_by {
		flex-direction: row;
	}
	
	 .personel span {
		 width: 30%;
	 }
	
	.two_by > div:nth-child(1) {
		width: 30%;
		
	}
	
	
	.two_by > div:nth-child(2) {
		width: 70%;
		
		display: flex;
		justify-content: center;
	}
	
	.personel h2  {
		margin-top: 0;
		width: 100%;
	}
	
	.personel p  {
		margin-top: 0;
		font-size: 1.4em;
		
	}
	
	.personel .title p  {
		font-size: 1em;
	}		
	
	.personel .title  {
		display: block !important;
		padding: 0 1em;		
	}	
	
	.personel .container > div {
		margin-bottom: 4em;
	}	

		
	.header .container {
		padding: 0 1.5em;
		display: flex;
		justify-content: space-between;
	}

	.banner_content .container .plan_wrap {
		width: 100%;
		max-width:100%;
		display: flex;
		justify-content: space-between;
	}

	.banner.plan_banner {
		height: 700px;
	}
	
	.banner.plan_banner .banner_content .container {
		overflow: visible !important;
	}

	.plan_wrap {
		display: flex;
		justify-content: space-between;
		position: relative;
		overflow: visible;
	}

	.banner_text_block .plan_wrap h2 {
		font-size: 2.5em;
	}

	.plan_wrap > div:first-child {
		max-width: 25%;
	}

	.plan_wrap > div:last-child {
		max-width: 75%;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.plan h3 {
		margin-bottom:0;
	}

	.plan {
		max-width: 32%;
		width: 100%;
		margin: 0 0.5em;
	}

	.plan.gold {
		position: relative;
		margin-top: -2em;
	}


	.plan > div {
		min-height: 530px;
		margin-bottom: 0;
	}	
	
	.plan.gold > div {
	padding: 4em 2em 6em 2em;
	}  

	.plan ul li {
		margin-bottom: 0.2em;
	}

	.banner_text_block .plan_wrap .plan h2 {
		font-size: 4em;
	}

	.showcase .container > div {
		display: flex;
		justify-content: space-between;
	}

	.news_block {
		width: 32%;
	}
	
	
	.three_column {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.three_column > div {
	flex-grow: 1;
	width: 100%;		
	max-width: 30%;
	margin: 0 0 20px 0;
	}
	
	
	
	.two_two {
		width: 100%;
		display: flex;
		justify-content: space-between;

	}
	
	.two_two > * {
		width: 49%;
	}
	
	.calculatorForm_box {
		margin-bottom: 0;
	}
	
	#roiCalculatorForm .two_two > div {
		align-self: flex-end;
	}
	
	#roiCalculatorForm > div {
		padding: 40px 0;
	}

	.fag_tab_wrapper {
		padding: 4em 0;
	}

	.tabs {
		display: grid;
	}

	[role=tablist] {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		grid-gap: 10px;
	}

}

@media (min-width: 1000px) {
	
	body:after {
		content: '1000px';
		background: orange;
	}
	
    .header_wrap {
        position: sticky;
        z-index: 1000;
        width: 100%;
        top:0
    }
    

	
	.header .logo {
		margin: 1.5em 0;
	}
	
    .menuWrapper nav.navi {
	    padding-top: 2em;
    }

    .menuWrapper nav ul li a {
    	font-size: 1.1em;
	}
		
	.content_block .container {
		padding: 4em 2em;
	}
	
	.content_block p, .content_block ul li, .column_block span {
		font-size: 1.2em;
		line-height: 1.5em;
	}
	
	.two_thirds {
		max-width: 75%; 
	}
	
	.one_third {
		max-width: 33%; 
	}
	
	.w_50 {
		max-width: 50%;
	}
	
	.center {
		margin: 0 auto;
	}
	
	.pl2 {
		padding-left: 2em;
	}
	
	.pr2 {
		padding-right: 2em;
	}
	
	.column_3 {
	  column-count: 3;
	  column-gap: 40px;
	}
	
	.column_3 p:first-child {
		margin-top: 0;
	}

	.subtleSlider, .banner, .gifbanner {
		height: 600px;
	}

	.subtleSlider.oneshot {
		height: 700px;
	}

	.subtleSlider.two, .banner, .gifbanner {
		/*height: 800px;*/
	}

	#slideshow, #slideshow2 {
		position: absolute !important; /* 'relative' or 'absolute' will also work. */
		
		
		height: auto;
		width: auto;
	}


	.gifbanner > .subtle_text_block,
	.subtleSlider > .subtle_text_block {
		position: absolute;
		z-index: 999;
		bottom: 0 !important;
	}
	
	.banner > .banner_text_block {
		position: absolute;
		z-index: 999;
		bottom: 0 !important;
	}
	
	.subtleSlider:after {
		background: url('../assets/background.webp') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	
	.banner:after {
		background: url('../assets/test.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}

	.banner.banner_gold:after {
		background: url('../assets/gold.webp') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	

	

	.banner.mapimg:after {
		background: url('../assets/blue-backgroud.jpg') center center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}
	
	.banner.mapimg > div:after {
		background: url('../assets/map.png') top center no-repeat;
		background-size: contain;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: -1;
		top: 0;
		bottom: 0;
		right: 0;
	}
	
	.banner.banner_green:after {
		background: url('../assets/green.webp') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}		

	.banner.banner_green:before {
		background: url('../assets/man-and-women-contractors-on-computer.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: 1;
		top: 0;
		bottom: 0;
		left: 0;
	}
	
	
	.banner.banner_dbr:after {
		background: url('../assets/background-db.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}		

	.banner.banner_dbr:before {
		background: url('../assets/banner-6.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: 1;
		top: 0;
		bottom: 0;
		right: 0;
	}
	
	
	.banner.banner_dbl:after {
		background: url('../assets/background-db.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}		

	.banner.banner_dbl:before {
		background: url('../assets/background-10.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: 1;
		top: 0;
		bottom: 0;
		right: 0;
	}	
	
	
	.banner.banner_blue:after {
		background: url('../assets/background-lbr.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}		

	.banner.banner_blue:before {
		background: url('../assets/background-7.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: 1;
		top: 0;
		bottom: 0;
		left: 0;
	}
	
	.banner.banner_blue2:after {
		background: url('../assets/background-lbr.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 9;
	}		

	.banner.banner_blue2:before {
		background: url('../assets/background-7.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 50%;
		z-index: 1;
		top: 0;
		bottom: 0;
		left: 0;
	}	
	
	.dark_banner:after {
		background: url('../assets/background-db.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 2;
		left: 0;
		top: 0;
	}		

	.dark_banner:before {
		background: url('../assets/banner-6.jpg') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 70%;
		z-index: 1;
		top: 0;
		bottom: 0;
		right: 0;
	}
	.white_banner:after {
		background: url('../assets/background-db.png') top center no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 100%;
		z-index: 2;
		left: 0;
		top: 0;
	}		

	.white_banner:before {
		background: url('../assets/woman-and-a-man-on-a-computer-5.jpg') bottom right no-repeat;
		background-size: contain;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 70%;
		z-index: 1;
		top: 0;
		bottom: 0;
		right: 0;
	}

	.white_banner.cashflow {
		background: var(--green);
	}

	.white_banner.cashflow:before {
		background: url('../assets/save_money.png') bottom right no-repeat;
		background-size: contain;

	}

	.groundwork:before {
		background: url('../assets/groundwork.jpg') bottom right no-repeat;
		background-size: contain;
		position: absolute;
		display: block;
		content: '';
		height: 100%;
		width: 70%;
		z-index: 1;
		top: 0;
		bottom: 0;
		right: 0;
	}


	/*.lightblue_banner:after {*/
	/*	background: url('../assets/background-db.png') top center no-repeat;*/
	/*	background-size: cover;*/
	/*	position: absolute;*/
	/*	display: block;*/
	/*	content: '';*/
	/*	height: 100%;*/
	/*	width: 100%;*/
	/*	z-index: 2;*/
	/*	left: 0;*/
	/*	top: 0;*/
	/*}*/

	/*.lightblue_banner:before {*/
	/*	background: url('../assets/woman-and-a-man-on-a-computer-5.jpg') bottom right no-repeat;*/
	/*	background-size: contain;*/
	/*	position: absolute;*/
	/*	display: block;*/
	/*	content: '';*/
	/*	height: 100%;*/
	/*	width: 70%;*/
	/*	z-index: 1;*/
	/*	top: 0;*/
	/*	bottom: 0;*/
	/*	right: 0;*/
	/*}*/


	.banner.banner_green.banner_right:before {
		opacity: 0.5;
	}

	
	#slideshow {
/* 		height: 600px; */
		width: 70%;
		left: auto !important;
	}
	
	.subtle_text_block,
	.banner_text_block {
		top: 0;
		width: 100%;
	}
	
	.subtle_block,
	.banner_block {
		display: table;
		width: 100%;
		height: 100%;
		margin: 0 auto;
	}
	
	.subtle_content,
	.banner_content {
		display: table-cell; 
		vertical-align: middle;
	}

	.subtle_content .container,
	.banner_content .container {
		padding: 0 1.5em;
	}
	
	
	
	.fifthy_fifthy .subtle_content .container {
	}
	
    .fifthy_fifthy .subtle_content .container {
        display: flex;
        justify-content: space-between;
    }

    .fifthy_fifthy .subtle_content .container > div {
        width: 49%;
    }
	
	
	.gifslide {
		position: relative;
	}
	
	.gifslide #slideshow {
		max-width: 100% !important;
		width: 100%;
	}

	.mobile_links {
		display: none;
	}

	.desktop_links {
		display: block;
	}



	.lightblue_banner .container > div,
	.dark_banner .container > div,	
	.white_banner .container > div,	
	.banner_content .container > div {
		max-width: 75%;
	}
	
	.full_banner .container > div {
		max-width: 100%;
	}

	.full_banner .container,
	.lightblue_banner .container,
	.faq-wrapper .container,
	.dark_banner .container,
	.white_banner .container {
		padding: 5% 2em;
		position: relative;
		z-index: 3;
	}




	.lightblue_banner,
	.dark_banner
	.white_banner {
		position: relative;
	}
	
	.dark_banner p {
		
	}
	
	
	
	
	
	
	
	.subtle_text_block h1,
	.banner_text_block h2 {
		font-size: 3em;
		margin: 0.7em 0;
	}


	.full_banner p,
	.lightblue_banner p,
	.subtle_text_block p,
	.banner_text_block p,
	.dark_banner p,
	.white_banner p,
	.subtle_text_block li {
		font-size: 1.3em;
	}
	
	.call_us {
		max-width: 350px;
	}
	
	.call_us,
	.subtle_text_block .call_us,
	.banner_text_block .call_us {
		font-size: 1.3em;
		text-align: center;
		margin-top: 0.7em;
		margin-right: 0.7em;
		min-width: 250px;
	}

	.new_link {
		width: auto;
		/*min-width: 300px;*/
		font-size: 1.3em;
		margin-right: 0.7em;
	}
	.faq-wrapper h2,
	.titleBlock h2,
	.map h2 {
		font-size: 2em;
	}
	
	.titleBlock p {
		font-size: 1.3em;
	}
	
	.map {
		display: flex;
		justify-content: space-between;
	}
	
	.map > div {
		flex-direction: row;
	}	
	
	.map .container {
		padding: 2em 0;
	}	
	
	.map .container > div {
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.map .container div > div  {
		
	}
	
	.map img {
		max-width: 400px;
	}
	
	.plan.gold > div:after {
		width: 80%;
		left:10%;
	}
	
	
}

@media (min-width: 1200px) {
	
	
	body:after {
		content: '1200px';
		background: blue;
	}

	.header .logo {
		width: 250px;
		height: 60px;
	}

	.header .logo a {
		background: url('../assets/white-logo.svg') left center no-repeat;
		background-size: 100%;
	}
	
    .menuWrapper nav ul li a {
    	font-size: 1.2em;
	}
	
	.footer .container > div {	
		padding:  6em 2em 0 2em;
	}
	
	.footer span {
		padding-bottom: 6em;
	}
	.full_banner h2
	.lightblue_banner h2
	.subtle_text_block h1,
	.banner_text_block h2,
	.dark_banner h2,
	.white_banner h2 {
		font-size: 3.5em;
	}

	.lightblue_banner h3,
	.titleBlock h2,
	.map h2,
	.dark_banner h3,
	.white_banner h3 {
		font-size: 2.8em;
	}
	
	
	.plan > div:after {
		width: 60%;
		left:20%;
	}

}

@media (min-width: 1400px) {
	
	body:after {
		content: '1400px';
		background: green;
	}
	
	.header .logo {
		width: 348px;
	}
	
}

@media (min-width: 1600px) {
	

}
