/* 
Theme Name: Al Kalid
Version: 1.0
Author: Adlouni Web Solutions
Author URI: http://www.awebs.ca
Template: twentytwentyone */

:root{
	--accent: #f1ec40;
	--footer--color-text: #fff;
	--footer--color-link: #fff;
	--footer--color-link-hover: var(--accent);
	--global--color-background: #fff;
	--global--line-height-body: 42px;
	/* Font Family */
	--global--font-primary: var(--font-headings, -apple-system, 'Roboto', sans-serif);
	--global--font-secondary: var(--font-base, -apple-system, 'Roboto', sans-serif);
	--form--border-width: 2px;
	
}
@media only screen and (min-width: 822px) {

	:root {
		--responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px);
	}
}
* {
  box-sizing: border-box;
}
::selection {
	background: var(--accent);
}
input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, .site textarea:focus, select:focus, input[type=checkbox]:focus {
	outline: none;
	border: var(--accent) solid 2px;
}
textarea {
	min-height: 100px;
}
a, a:hover, a:active {
	text-decoration: none;
}
a:hover {
	color: var(--accent);
}
a:focus {
	background: none !important;
	color: var(--accent) !important;
	text-decoration: none !important;
}
h2.section-title { text-transform: uppercase; position: relative; margin-bottom: var(--global--spacing-vertical); padding-bottom: var(--global--spacing-vertical); }
h2.section-title:after { content: ""; position: absolute; bottom: 15px; width: 50px; height: 5px; background: var(--accent); left: 50%; transform: translateX(-50%); transition: all .3s; }
h2.section-title:hover:after { width: 85px; }
h2.section-title.left:after { left: 0; transform: translateX(0);}

.site .button:focus, button:focus, input[type=submit]:focus, input[type=reset]:focus, .wp-block-search .wp-block-search__button:focus, .wp-block-button .wp-block-button__link:focus, .wp-block-file a.wp-block-file__button:focus {
	outline: none;
}
.form-control:focus {
	box-shadow: none;
}
.site-main {
	padding-bottom:0;
}

/* top banner */
.topbanner {
	display: none;
}

/* logo */
.site-header > .site-logo {
	width: auto;
	padding: 0;
	border: none;
	text-align: left;
}

/* header */

.home .site-logo {
	float: left;
}

.home .site-logo img {
	width: 70%;
}


.home .header-outer {
	width: 100%;
}




.home .primary-navigation .sub-menu a {
	color: #000;
}
.home .primary-navigation .current-menu-item > a:first-child, .home .primary-navigation .current_page_item > a:first-child {
	color: var(--accent);
}
.home .primary-navigation .current-menu-item > a:first-child, .home .primary-navigation .current_page_item > a:first-child {
	text-decoration: none;
}


.site-header {
	padding: 0;
}

.primary-navigation li a {
	text-transform: uppercase;
	font-weight: 500;
	transition: all .1s;
}
.primary-navigation .sub-menu a:hover, .primary-navigation .sub-menu a:focus {
	text-decoration: underline;
}
.primary-navigation li a:hover, .primary-navigation li a:focus {
	text-decoration: none;
	color: var(--accent);
	background: none;
}
.primary-navigation li button {
	display: none !important;
}
.primary-navigation .menu-cto {
	background: var(--accent);
}
.primary-navigation .menu-cto a:hover {
	color: #000;
}

.hero-image {
	height: 80px;
	background: #28303d;
}
.inner-page-header .entry-title {
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 48px;
	line-height: 80px;
}

.homehero {
	overflow: hidden;
	height: calc(100vh - 92px);
	width: 100%;
	position: relative;
}

@media (min-width:450px) {
	.homehero {
		height: calc(100vh - 110px);
	}
}
.homehero .overlay {
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 1s;
}
.homehero .heroimg {
	position: absolute;
	z-index: -2;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.homehero:hover .overlay {
	background: rgba(0,0,0,0.2);
}
.homehero .hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}
.homehero .hero-text h3 {
	font-weight: bold;
	font-size: 40px;
	text-shadow: 2px 2px 2px #000;
	margin-bottom: 50px;
}
.herobtn {
	background: var(--accent);
	padding: 15px 25px;
	font-weight: bold;
	display: inline-block;
	border: solid 2px var(--accent);
	transition: all .3s;
}
.herobtn:hover {
	background: rgba(0,0,0,0.35);
}

@media (min-width:768px) {
	.home.site-header {
		margin-top: 70px;
	}
	.home .header-outer {
		position: relative;
		margin-left: auto;
		margin-right: auto;
		width: fit-content;
	}
	.home .site-logo {
		padding: 0;
		margin: 0;
		text-align: center;
		border: none;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 2;
		top: -53px;
	}
	.home .primary-navigation {
		background: #292929;
		height: 80px;
		display: flex;
		align-items: center;
		padding: 25px;
		margin: 0;
		z-index: 1;
		justify-content: space-evenly;
	}
	.home .primary-navigation:before {
		content: '';
		position: absolute;
		z-index: -1;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 40px 21px 40px 0;
		border-color: transparent #292929 transparent transparent;
	}

	.home .primary-navigation:after {
		content: '';
		position: absolute;
		z-index: -1;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 40px 0 40px 21px;
		border-color: transparent transparent transparent #292929;
	}
	.homehero {
		overflow: hidden;
		height: calc(100vh - 110px);
		width: 100%;
		margin-top: -40px;
		position: relative;
	}
}

.homehero .bouncearrow {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%,-10px);
	color: #fff;
	transition: all .3s;
	cursor: pointer;
}
.bouncearrow{
  animation: animationFrames linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
  0% {
    transform:  translate(-50%,0px)  ;
  }
  10% {
    transform:  translate(-50%,-10px)  ;
  }
  20% {
    transform:  translate(-50%,0px)  ;
  }
  75% {
    transform:  translate(-50%,0px)  ;
  }
  100% {
    transform:  translate(-50%,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    -moz-transform:  translate(-50%,0px)  ;
  }
  10% {
    -moz-transform:  translate(-50%,-10px)  ;
  }
  20% {
    -moz-transform:  translate(-50%,0px)  ;
  }
  75% {
    -moz-transform:  translate(-50%,0px)  ;
  }
  100% {
    -moz-transform:  translate(-50%,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform:  translate(-50%,0px)  ;
  }
  10% {
    -webkit-transform:  translate(-50%,-10px)  ;
  }
  20% {
    -webkit-transform:  translate(-50%,0px)  ;
  }
  75% {
    -webkit-transform:  translate(-50%,0px)  ;
  }
  100% {
    -webkit-transform:  translate(-50%,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    -o-transform:  translate(-50%,0px)  ;
  }
  10% {
    -o-transform:  translate(-50%,-10px)  ;
  }
  20% {
    -o-transform:  translate(-50%,0px)  ;
  }
  10% {
    -o-transform:  translate(-50%,0px)  ;
  }
  100% {
    -o-transform:  translate(-50%,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    -ms-transform:  translate(-50%,0px)  ;
  }
  10% {
    -ms-transform:  translate(-50%,-10px)  ;
  }
  20% {
    -ms-transform:  translate(-50%,0px)  ;
  }
  75% {
    -ms-transform:  translate(-50%,0px)  ;
  }
  100% {
    -ms-transform:  translate(-50%,0px)  ;
  }
}



/* slider */
.n2-active  {
	background: var(--accent) !important;
}

.widget-area a {
	text-decoration: none;
}

/* Title */
.section-title:after {
	
}

/* hexagon */
.hexagon {
	position: relative;
	width: 96px; 
	height: 55.43px;
	background-color: var(--accent);
	margin: 27.71px 0;
	border-left: solid 2px var(--accent);
	border-right: solid 2px var(--accent);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px !important;
	transition: all .3s;
}
.transparent {
	background-color: transparent;
}
.hexagon:hover {
	transform:rotate(90deg);
}
.hexagon:before,
.hexagon:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 67.88px;
	height: 67.88px;
	-webkit-transform: scaleY(0.5774) rotate(-45deg);
	-ms-transform: scaleY(0.5774) rotate(-45deg);
	transform: scaleY(0.5774) rotate(-45deg);
	background-color: inherit;
	left: 12.0589px;
}

.hexagon:before {
	top: -33.9411px;
	border-top: solid 2.8284px var(--accent);
	border-right: solid 2.8284px var(--accent);
}

.hexagon:after {
	bottom: -33.9411px;
	border-bottom: solid 2.8284px var(--accent);
	border-left: solid 2.8284px var(--accent);
}

.hex-container {
	display: none;
	position: absolute;
}

.hex-row {
	clear: left;
}
.hex {
    float: left;
    margin-right: 2px;
    margin-bottom: 31px;
	position: relative;
	width: 96px; 
	height: 55.43px;
	background-color: var(--accent);
	border-left: solid 2px var(--accent);
	border-right: solid 2px var(--accent);
	transition: all .3s;
}
.hex:before,
.hex:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 67.88px;
	height: 67.88px;
	-webkit-transform: scaleY(0.5774) rotate(-45deg);
	-ms-transform: scaleY(0.5774) rotate(-45deg);
	transform: scaleY(0.5774) rotate(-45deg);
	background-color: inherit;
	left: 12.0589px;
}

.hex:before {
	top: -33.9411px;
	border-top: solid 2.8284px var(--accent);
	border-right: solid 2.8284px var(--accent);
}

.hex:after {
	bottom: -33.9411px;
	border-bottom: solid 2.8284px var(--accent);
	border-left: solid 2.8284px var(--accent);
}
.hex:hover {
	opacity: 0.4;
}
/*
.hex{
  animation: hexanime 3s;
  animation-iteration-count: infinite;
}
*/
.hex-row div:nth-child(1) { 
	float: none; 
	margin-left: 96px; 
	animation-delay: 0s; 
}
.hex-row div:nth-child(2) { 
	margin-left: 48px; 
	animation-delay: .5s; 
}
.hex-row div:nth-child(3) { 
	clear: right; 
	animation-delay: 1s; 
}
.hex-row div:nth-child(4) { 
	clear: left; 
	animation-delay: 1.5s; 
}
.hex-row div:nth-child(5) { 
	animation-delay: 2s; 
}
.hex-row div:nth-child(6) { 
	clear: left; 
	margin-left: 48px; 
	animation-delay: 2.5s; 
}

@keyframes hexanime{
  50% {
      opacity:0.25  ;
  }
}


/* experience banner */
.experience {
	margin-bottom: var(--global--spacing-vertical);
	text-align: center;
	max-width: 100%;
	background: #eee;
}
.experience h4 {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 65px;
	transition: all .3s;
}
.exfeature:nth-child(1), .exfeature:nth-child(3) {
	background: #ccc;
}
.exfeature {
	width: 100%;
	padding: 50px 20px;
}
.exfeature:hover h4 {
	color: var(--accent);
	transform: rotateY(360deg)
}
.exfeature p {
	text-transform: uppercase;
}

/* services */
.services {
	text-align: center;
	margin-bottom: var(--global--spacing-vertical);
	margin-top: var(--global--spacing-vertical);
}

.service {
	width: 50%;
	position: relative;
	float: left;
	padding: 15px;
}

.service:hover .hexagon {
	transform:rotate(90deg);
}

.heroconsultation {
	height: 300px;
	text-align: center;
	background-image: url(assets/images/bathroom3.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	background-attachment: fixed;
	position: relative;
}
.heroconsultation .alignwide {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
}
.heroconsultation span {
	display: block;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 40px;
	text-shadow: 2px 2px 2px #000;
	padding: 10px 20px;
	color: #fff;
}
.heroconsultation.plain span {
	font-size: 18px;
}
.heroconsultation a, .heroconsultation a:active, .heroconsultation a:visited {
	display: inline-block;
	text-transform: uppercase;
	background: var(--accent);
	border: solid 3px var(--accent);
	color: #000;
	text-decoration: none;
	padding: 10px;
	transition: all .3s;
	font-weight: bold;
}
.heroconsultation a:hover {
	background: rgba(255,255,0,0.5);
}
.heroconsultation.plain a {
	display: inline-block;
	text-transform: uppercase;
	background: var(--accent);
	color: #000;
	text-decoration: none;
	padding: 10px;
	border: solid 2px #fff;
	transition: all .3s;
}
.heroconsultation.plain a:hover {
	background: #fff;
	color: #000;
}

/* hero section */
.hero-section .hero-content {
	position: relative;
}
.hero-section .hero-content .hero-text {

}

.hero-section .image {
	display: none;
}

/* contact form */
.contact-form label, .contact-form input {
	width: 100%;
}
.contact-form .input {
	margin-bottom: 10px;
}

/* our process */
.ourprocess {
	margin-bottom: var(--global--spacing-vertical);
	background: #eee;
	padding: 50px 0;
}
.ourprocess h2 {
	text-transform: uppercase;
	text-align: center;
}
.ourprocess h3 {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: var(--global--spacing-vertical);
	font-weight: 300;
	font-size: 26px;
}
.ourprocess h4 {
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 25px;
}

.opfeature {
	width: 100%;
	padding: 20px 0;
	position: relative;
}
.opfeature span {
	display: none;
}

/* Home office */
.homeoffice {
	margin-bottom: var(--global--spacing-vertical);
}
.homeoffice h2 {
	text-transform: uppercase;
	text-align: center;
}
.homeoffice h3 {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: var(--global--spacing-vertical);
	font-weight: 300;
	font-size: 26px;
}
.homeoffice h4 {
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 25px;
}
.homeoffice h4::after {
	display: block;
	content:"";
	width: 50px;
	height: 3px;
	background: var(--accent);
	transition: all .3s;
}
.hofeature:hover h4::after {
	width: 100px;
}
.hofeature {
	width: 100%;
	padding: 20px 0;
}
.hofeature img {
	margin-bottom: 25px;
}
.btn-outline {
	text-align: center;
}
.btn-outline a {
	text-decoration: none;
	background: #fff;
	color: #000;
	border: solid 2px var(--accent);
	padding: 10px 15px;
	margin-top: var(--global--spacing-vertical);
	margin-bottom: var(--global--spacing-vertical);
	display: inline-block;
	transition: all .3s;
	text-transform: uppercase;
}
.btn-outline a:hover {
	background: var(--accent);
	color: #fff;
}

/* figures */
figure {
	position: relative;
	overflow: hidden;
}
figure img {
	transition: all .3s;
}
figure:hover figcaption a {
	color: var(--accent);
}
figure:hover figcaption:after {
	width: 65px;
}
.wp-block-image figcaption {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 20px;
	text-align: left;
}
figcaption:after {
	content: "";
	width: 50px;
	height: 5px;
	background: var(--accent);
	position: absolute;
	left: 0;
	bottom: 10px;
	transition: all .3s;
}
figcaption a {
	color: #fff;
	text-decoration: none;
	padding: 10px 15px;
	display: inline-block;
	transition: all .3s;
}

/* Gallery */
.gallery {
	text-align: center;
}
.filters {
	margin-top: 20px;
	margin-bottom: 50px;
}
.projects {
	text-align: center;
	margin-bottom: var(--global--spacing-vertical);
}
.gallery a {
	width: 50%;
	height: 250px;
	float: left;
}
.gallery a:hover .magnify {
	opacity: 1
}
.gallery a div {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.magnify {
	opacity: 0;
	position: relative;
	background: rgba(241,236,64,0.55);
	transition: all .3s;
}
.magnify i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 40px;
}

/* gallery masonry */
.masonry {
	column-count: 3;
	column-gap: 10px;
	max-width: var(--responsive--aligndefault-width);
	margin-left: auto;
	margin-right: auto;
}

.masonry a {
	width: 100%;
	height: 100% !important;
	float: none;
	position: relative;
}

.masonry .masonry-item {
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}

.masonry .masonry-item .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(241,236,64,0.55);
	opacity: 0;
	transition: all .3s;
}
.masonry .masonry-item:hover .overlay {
	opacity: 1;
}
.masonry .masonry-item .overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 40px;
}

@media (max-width: 1199px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 991px) {
  .masonry {
    column-count: 2;
  }
}

.grey {
	background: #eee;
	padding: 50px 0;
}
.minus-margin {
	margin-top: -30px !important;
}
.nopadding {
	padding: 0 !important;
}

.cities {
	flex-basis: calc(50% - 1em) !important;
}

/* testimonials */
.testimonials {
	text-align: center;
	padding: 50px;
	background: #eee;
	margin-bottom: 0;
}
.testimonials h2 {
	margin-bottom: var(--global--spacing-vertical);
	text-transform: uppercase;
}
.testimonials .carousel-inner {
	min-height: 150px;
}
.testimonials .control {
	padding: 15px;
	background: #fff;
	margin: 10px;
}
.testimonial {
	position: absolute;
}
.testimonial span {
	display: block;
	font-weight: bold;
}
.testimonial i {
	color: #ccc;
}
/* contact form */
.contactform label, .contactform input, .contactform select {
	width: 100%;
}
.contactform input, .contactform select, .contactform textarea {
	border: solid 2px #ccc;
	outline: none !important;
	transition: all .3s;
}
.contactform input:focus, .contactform select:focus, .contactform textarea:focus {
	border-color: var(--accent);
}
/* map */
.map {
	height: 350px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* contact form */
.cf input[type=text], .cf input[type=email], .cf input[type=tel], .cf select, .cf textarea {
	display: block;
	width: 100%;
}
.cf label {
	width: 100%;
}
.cf input[type=checkbox] {
	display: inline-block;
}
.cf textarea {
	rows: 5;
}
/* Footer */
.footer {
	background-color: #252525;
}
.footer .widget-area {
	margin-top: 0;
}
.footer .widget-title {
	text-transform: uppercase;
}
.site-footer {
	padding-bottom: 0;
}
.site-footer .site-info {
	border-top: solid 1px #666;
}
.footer .wp-block-image figcaption {
	text-align: center;
	color: #fff;
}
.footer .wp-block-image figcaption:after {
	content: none;
}
.footer-social-block {
	padding-top: 20px;
}
.footer-social-block ul li {
	float: left;
	padding-right: 10px;
}
.footer-social-block ul li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	background: #4e4e4e;
	color: #fff !important;
	transition: all .3s;
	border-radius: 50%;
}
.footer-social-block ul li a:hover {
	background: var(--accent);
	color: #fff !important;
}
.footer-social-block ul li a i {
	font-weight: 400;
}
.footer-widget-contact {
	list-style: none;
	padding: 0;
}
.footer-widget-contact a {
	text-decoration: none;
}
.footer-widget-contact a:hover {
	color: var(--accent);
}
.footer-widget-contact li span {
	display: inline-flex;
	padding-left: 10px;
}
.footer-widget-contact .address::before {
	font-family: 'FontAwesome';
	content: "\f041";
	width: 15px;
	display: inline-block;
}
.footer-widget-contact .phone::before {
	font-family: 'FontAwesome';
	content: "\f095";
	width: 15px;
	display: inline-block;
}
.footer-widget-contact .mobile::before {
	font-family: 'FontAwesome';
	content: "\f10b";
	width: 15px;
	display: inline-block;
}
.footer-widget-contact .email::before {
	font-family: 'FontAwesome';
	content: "\f0e0";
	width: 15px;
	display: inline-block;
}
.footer-widget-contact .time::before {
	font-family: 'FontAwesome';
	content: "\f017";
	width: 15px;
	display: inline-block;
}
.footer-navigation-wrapper li .svg-icon:hover {
	fill:var(--footer--color-link-hover);
}
.site-footer .site-info .site-name {
	font-size: 16px;
}
.site-name a {
	text-decoration: none;
}

.awebs-container {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #111;
}
.awebs {
	width: 40px;
	height: 28px;
	overflow: hidden;
	margin: auto;
	transition: all .5s;
}
.awebs:hover {
	width: 120px;
}
.awebs a {
	display: inline-block;
}
.awebs img {
	width: 120px;
	opacity: 0.6;
	transition: all .5s;
	max-width: 120px;
	vertical-align: unset;
}
.awebs img:hover {
	opacity: 1;
}

@media only screen and (max-width: 481px) {
	.site-header.has-logo.has-title-and-tagline {
		align-items: center;
	}
	.site-branding {
		display: none;
	}
	.primary-navigation {
		margin-top: 30px;
	}
	.primary-navigation-open .menu-button-container {
		width: unset;
		padding-top: 0;
	}
}

@media (min-width: 640px){
	.homehero .hero-text h3 {
		font-size: 70px;
	}
	.hero-section .hero-content .hero-text {
		position: absolute;
		top: 50%;
		left: 0%;
		transform: translate(0,-50%);
	}

	.hero-section .image {
		display: block;
	}
}
 
@media (min-width: 768px){
	.home .primary-navigation a {
		color: #fff;
	}
	.exfeature {
		float: left;
		width: 33.33%;
	}
	/* top banner */
	.topbanner {
		display: block;
		max-width: var(--responsive--alignwide-width);
		margin: 20px auto 0 auto;
		text-align: right;
	}
	.topbanner a {
		text-decoration: none;
	}
	.topbanner .menu-cto {
		background: var(--accent);
		color: #fff;
		padding: 10px 20px;
		text-transform: uppercase;
		font-weight: 600;
		margin-left: 25px;
	}
	.wufeature {
		float: left;
		width: 50%;
		padding: 20px;
	}
	.heroconsultation.plain div {
		position: relative;
		left: 0;
		top: 0;
		transform: translate(0);
		height: 100%;
	}
	.heroconsultation.plain span {
		margin: 0;
		background: none;
		padding: 0;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		max-width: 50%;
		text-align: left;
		border-right: solid 2px #fff;
		padding-right: 25px;
		font-size: 40px;
	}
	.heroconsultation.plain a {
		position: absolute;
		top: 50%;
		left: 60%;
		transform: translate(-15%,-50%);
	}
	
	.hex-container {
		display: block;
		left: 5%;
	}
	.heroconsultation .alignwide {
		left: 60%;
	}
	.gallery a {
		width: 25%;
		height: 250px;
	}
}
 
@media (min-width: 1024px){
	.hofeature {
		float: left;
		width: 33.33%;
		padding: 20px;
	}
	.wufeature {
		float: left;
		width: 25%;
		padding: 20px;
	}
	.opfeature {
		float: left;
		width: 50%;
		padding: 20px;
	}
	.opfeature span {
		display: block;
		width: 96px;
		transition: all .3s;
		font-size: 100px;
		font-weight: 900;
		position: absolute;
		top: -15px;
		color: #999;
	}
	.opfeature:hover span {
		color: var(--accent);
	}
	.opfeature h4 {
		position: absolute;
		top: 45px;
		margin-bottom: 0;
		margin-left: 65px;
		transition: all .3s;
	}
	.opfeature:hover h4{
		top: 25px;
	}
	.opfeature p {
		margin-top: 100px;
	}
	.service {
		width: 33.33%;
	}
	
	.heroconsultation .alignwide {
		left: 55%;
	}
	.gallery a {
		height: 300px;
	}
}
 
@media (min-width: 1200px){
	.opfeature {
		width: 25%;
	}
	.hex-container {
		left: 7%;
	}
	.heroconsultation .alignwide {
		left: 50%;
	}
	.gallery a {
		height: 350px;
	}
}

@media (min-width: 1400px){
	.hex-container {
		left: 15%;
	}
}