/* !------------------- General Styles Start --------------- */
*:hover {
	-webkit-transition: all 0.3s ease-in-out 0s; /* Safari */
	-moz-transition: all 0.3s ease-in-out 0s; /* Mozilla */
	-ms-transition: all 0.3s ease-in-out 0s; /* Microsoft */
	-o-transition: all 0.3s ease-in-out 0s; /* Opera */
	transition: all 0.3s ease-in-out 0s;
}
nav, img, button,
.button, .close, .arrows, .number,
.post-title h4, .blog-post a, .service-description a {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
body {
	color: #656565;
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	color: black;
}
h3 {
	font-size: 1.125em;
	letter-spacing: 1px;
	text-transform: capitalize;
}
a {
	text-decoration: none;
	color: black;
}
a:hover {
	color: rgb(251, 113, 88);
	cursor: pointer;
}
p {
	color: #656565;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 0.875em;
	line-height: 25px;
}
img {
	width: 100%;
}
button {
	margin: 0;
	transition: all 500ms ease;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	text-transform: capitalize;
	-webkit-appearance: button;
}
button:focus {
	outline: 0;
}
button:active, .button:active {
    transform: scale(0.95);
}
.button {
	padding: 10px 5%;
	letter-spacing: 3px;
	font-weight: 600;
	font-size: 0.813em;
	border: 2px solid #fb7158;
	background-color: #fb7158;
	color: white;
}
.button:hover {
	background-color: transparent;
	color: black;
	transition: all 500ms ease;
}
.bg {
	background-color: #f5f5f5;
}
.section-pad {
	padding: 100px 0;
}
.headline h2 {
	font-size: 2em;
	text-transform: uppercase;
	text-align: center;
}
.headline.white h2 {
	color: white;
}
.headline h2 span {
	color: rgb(251, 113, 88);
}
/* !------------------- General Styles End --------------- */
/* !------------------- Grid Styles Start --------------- */
.gap {
	grid-gap: 30px 5%;
}
/* !------------------- Grid Styles End --------------- */
/* !------------------- Fixed Icon Styles Start --------------- */
.fixed-wrapper {
	border-radius: 10%;
	width: 44px;
	height: 44px;
}
.fixed {
	position: fixed;
	z-index: 5;
	bottom: 2%;
	right: 2%;
}
.caret-container {
	background-color: rgb(251, 113, 88);
}
.caret-container, .caret-container a {
	border-radius: 10%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.caret {
	font-size: 1.5em;
	color: white;
}
.caret-container:hover {
	background-image: url(../images/favicon.ico);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
}
.caret-container:hover .caret {
	display: none;
}
#caret:active {
	transform: scale(0.95);
}
/* !------------------- Fixed Icon Styles End --------------- */
/* !------------------- Owl Carousel Styles Start --------------- */
.owl-theme .owl-dots .owl-dot span {
    height: 7px;
    width: 7px;
    background-color: rgb(255, 255, 255);
    margin: 3px;
    transition: all 0.2s linear;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: rgb(251, 113, 88);
    width: 15px;
}
/* !------------------- Owl Carousel Styles End --------------- */
/* !------------------- Navbar Styles Start --------------- */
nav {
	width: 100%;
	background-color: transparent;
	padding: 25px 0;
}
.fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 4px;
	font-size: 1.125em;
	color: white;
}
.hamburger-button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.5em;
	color: white;
}
.hamburger-button {
	outline: 0;
}
.navbar {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
}
.navbar-nav {
	display: flex;
}
.nav-item {
	padding-right: 20px;
	position: relative;
}
.nav-link {
	color: white;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 0.875em;
	letter-spacing: 1px;
}
.nav-link::before {
	content: '';
	position: absolute;
	margin-left: 0px;
	width: 0%;
	bottom: 0;
	left: 0;
	height: 2px;
	transition: all 500ms ease;
	background-color: white;
}
.invert {
	background-color: white;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
.invert a,
.invert .hamburger-button span {
	color: black;
}
.nav-link.active {
	color: rgb(251, 113, 88);
}
.nav-link.active::before {
	width: 10px;
	background-color: rgb(251, 113, 88);
}
.hamburger-button:hover span {
	color: rgb(251, 113, 88);
	transition: all 500ms ease;
}
a:hover {
	color: rgb(251, 113, 88);
}
a.nav-link:hover::before {
	width: 10px;
	background-color: rgb(251, 113, 88);
}
/* !------------------- Navbar Styles End --------------- */
/* !------------------- Home Styles Start --------------- */
.intro {
	background-image: url(../images/home-bg.jpg);
	background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    position: relative;
    z-index: 1;
}
.intro::after {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .9;
    z-index: -1;
    background-color: rgba(33, 32, 32, 0.7);
}
.home {
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-content {
	text-align: center;
}
.header {
	margin-bottom: 25px;
}
#skills {
	-moz-transition: all 1s ease-in-out 0s;
	-ms-transition: all 1s ease-in-out 0s;
	-o-transition: all 1s ease-in-out 0s;
	-webkit-transition: all 1s ease-in-out 0s;
	transition: all 1s ease-in-out 0s;
}
.skills {
	border-right: 5px solid white;
	overflow: hidden;
	width: 0;
	margin: 0 auto;
}
.header h1 {
	color: white;
	font-weight: 700;
	font-size: 4.688em;
}
.home-buttons {
	display: flex;
	justify-content: center;
}
.home-buttons a {
	display: inline-block;
	max-height: 44px;
}
.home-buttons a:first-child {
	margin-right: 15px;
}
.home-buttons .button {
	min-width: 158px;
}
.btn-1:hover {
	color: white;
}
.btn-2 {
	background-color: transparent;
	color: white;
}
.btn-2:hover {
	background-color: rgb(251, 113, 88);
	color: white;
}
.scroll-icon {
	background-color: transparent;
	border: 2px solid white;
	width: 20px;
	height: 30px;
	border-radius: 25px;
	position: absolute;
	bottom: 40px;
	left: calc(50% - (20px / 2));
	opacity: 0.75;
}
.scroll-icon:hover {
	opacity: 1;
	cursor: pointer;
}
.scroll-icon::before {
	content: "";
	background-color: white;
	width: 4px;
	height: 5px;
	border-radius: 4px;
	position: absolute;
	top: 6px;
	left: calc(50% - (4px / 2));
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scroll;
	animation-name: scroll;
}
@-webkit-keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateY(7px);
		transform: translateY(7px);
	}
}
@keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateY(7px);
		transform: translateY(7px);
	}
}
/* !------------------- Home Styles End --------------- */
/* !------------------- Work Styles Start --------------- */
.work-type {
	display: flex;
	justify-content: center;
}
.work-button-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #f7f7f7;
	box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.09);
	padding: 20px 20px;
	border-radius: 5px;
}
.work-button {
	padding: 10px 15px;
	border-radius: 5px;
	background-color: white;
	border: none;
	color: #858585;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.75em;
	height: 35px;
	margin: 10px;
}
.work-button.active,
.work-button:hover {
	background-color: rgb(251, 113, 88);
	color: white;
}
.gallery-wrap.grid.gap {
	column-gap: 3%;
}
.gal-img-wrap {
	padding: 10px;
}
.overlay-container {
	position: relative;
	height: 100%;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	opacity: 0;
}
.overlay-container:hover .overlay {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.77);
    -webkit-transform: scale(.90);
    -moz-transform: scale(.90);
    -ms-transform: scale(.90);
    -o-transform: scale(.90);
    transform: scale(.90);
    -webkit-transition: all .4s;
    transition: all .4s;
}
.portfolio-content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}
.portfolio-content h6 {
	letter-spacing: 2px;
}
.portfolio-content h6 {
	font-size: 0.813em;
	letter-spacing: 2px;
}
/* !------------------- Lightbox/Lightgallery Start --------------- */
/* The Modal (background) */
.modal {
	display: none;
	position: fixed;
	z-index: 200;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(1, 1, 1, 0.8);
}
/* Modal Content */
.modal-content {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: auto;
	padding: 0;
}
.box {
	width: auto;
	max-width: 80vw;
	max-height: 80vh;
}
/* The Close Button */
.close {
	color: white;
	position: absolute;
	top: -25px;
	right: 0;
	font-size: 2.188em;
	line-height: 0.55;
}
.close:hover,
.close:focus {
	color: rgb(251, 113, 88);
	text-decoration: none;
	cursor: pointer;
}
.gallery-slides {
	display: none;
}
.cursor {
	cursor: pointer;
}
.arrows {
	cursor: pointer;
	position: absolute;
	top: calc(50% - (20px / 2));
	width: 0;
	height: 0;
	border-width: 20px 20px 20px 20px;
	border-style: solid;
	border-color: transparent white;
	transition: 0.6s ease;
}
/* Next & previous buttons */
.prev {
	border-left: none;
	left: 2%;
}
/* Position the "next button" to the right */
.next {
	right: 2%;
	border-right: none;
}
/* On hover, change border color */
.arrows:hover {
	border-color: transparent rgb(251, 113, 88);
}
/* Number text (1/3 etc) */
.numbertext {
	color: white;
	font-size: 0.75em;
	position: absolute;
	bottom: -25px;
	right: 0;
}
/* Add Animation */
.modal-content {  
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)} 
	to {-webkit-transform:scale(1)}
}
@keyframes zoom {
	from {transform:scale(0)} 
	to {transform:scale(1)}
}
/* !------------------- Work Styles End --------------- */
/* !------------------- Client Logo Styles Start --------------- */
.owl-carousel .owl-item .client-img img {
	width: 130px;
	margin: 0 auto;
}
/* !------------------- Client Logo Styles End --------------- */
/* !------------------- Services Styles Start --------------- */
.services-wrap {
	padding: 40px 25px;
	background: #fff;
	border-radius: 5px;
	border-bottom: 3px solid #717171;
	transition: transform 0.4s ease;
	-webkit-transition: transform 0.4s ease;
	-moz-transition: transform 0.4s ease;
	-webkit-box-shadow: 0px 7px 50px 0px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 7px 50px 0px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 7px 50px 0px rgba(0, 0, 0, 0.07);
}
.services-wrap:hover {
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transition: transform 0.4s ease;
	-webkit-transition: transform 0.4s ease;
	-moz-transition: transform 0.4s ease;
}
.service-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.service-icon {
	font-size: 1.75em;
    color: rgb(251, 113, 88);
}
.service-info h3 {
	color: #616161;
}
.service-info .number {
	font-size: 3.125em;
	font-weight: 700;
	line-height: 24px;
}
.service-description {
	margin-top: 10px;	
}
.service-description p {
	margin-bottom: 15px;	
}
.service-description a {
	font-size: 0.875em;
    text-transform: uppercase;
    color: #656565;
}
.service-description a:hover {
    color: rgb(251, 113, 88);
}
/* !------------------- Services Styles End --------------- */
/* !------------------- About Styles Start --------------- */
.about-pic {
	grid-column-start: span 5;
}
.about-info {
	grid-column-start: span 7;
	display: flex;
	align-items: center;
}
.about-wrap h4,
.about-wrap p,
.about-wrap address {
	margin-bottom: 15px;
}
.about-wrap h4 {
	font-size: 1.875em;
	color: rgb(251, 113, 88);
}
address.about-contact-container {
	font-style: normal;
}
.about-contact-wrap:first-of-type {
	margin-bottom: 10px;
}
.about-contact-wrap ul {
	display: flex;
	justify-content: space-between;
}
.about-contact-wrap li {
	font-size: 0.813em;
}
.about-contact-wrap span {
	font-weight: 600;
	margin-right: 5px;
}
/* !------------------- About Styles End --------------- */
/* !------------------- Testimonials Styles Start --------------- */
.testimonial-bg {
	position: relative;
	background-color: black;
	background-image: url(../images/hire-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.testimonial-bg:after {
	content: "";
	background-color: rgba(33, 32, 32, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: .9;
}
.testimonial-bg .container.grid.gap {
	column-gap: 0;
}
.testimonial-section {
	grid-column: 3 / span 8;
}
.testimonial-container {
	background-color: #f5f5f5;
	padding: 50px 80px 40px;
}
.testimonial-wrap blockquote {
	background-color: white;
	border-left: 5px solid #e6e6e6;
	padding: 15px;
	margin-bottom: 15px;
}
.quotee {
	display: flex;
	align-items: center;
}
.testimonial-img-wrap {
	margin-right: 15px;
}
.owl-carousel .owl-item .testimonial-img-wrap img {
	width: 80px;
	border-radius: 50%;
	border: 5px solid white;
	box-shadow: 0 0 90px 10px rgba(0, 0, 0, 0.06);
}
/* !------------------- Testimonials Styles End --------------- */
/* !------------------- Experience Styles Start --------------- */
.timeline {
	position: relative;
	width: 794px;
	margin: 0 auto;
}
.timeline:before {
	position: absolute;
	left: calc(50% - (2px / 2));
	top: 0;
	content: ' ';
	display: block;
	width: 2px;
	height: 100%;
	background: rgb(213,213,213);
	background: -moz-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
	background: -webkit-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
	background: -o-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
	background: -ms-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
	background: linear-gradient(to bottom, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
	z-index: -1;
}
.direction {
	display: flex;
	margin-bottom: 50px;
}
.direction:last-of-type {
	margin-bottom: 0;
}
.f-right {
	justify-content: flex-end;
}
.f-left {
	justify-content: flex-start;
	text-align: right;
}
.exp-wrapper {
	width: 380px;
}
.flag-wrapper {
	display: flex;
	position: relative;
}
.f-left .flag-wrapper {
	justify-content: flex-end;
}
.hexagon {
	position: absolute;
	top: calc(50% - (10px / 2));
	left: -25px;
	background-color: #00c4f3;
	width: 16px;
	height: 10px;
}
.f-left .hexagon {
	left: auto;
	right: -25px;
}
.hexagon:before {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 0;
	border-bottom: 15px solid #f0f0f0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	top: -15px;
}
.hexagon:after {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 15px solid #f0f0f0;
	bottom: -15px;
}
.hexagon::before {
	border-bottom: 4px solid #00c4f3;
	border-left-width: 8px;
	border-right-width: 8px;
	top: -4px;
}
.hexagon::after {
	border-left-width: 8px;
	border-right-width: 8px;
	border-top: 4px solid #00c4f3;
	bottom: -4px;
}
.exp-date-wrapper {
	background-color: #00c4f3;
	padding: 5px 25px;
	color: white;
	text-align: center;
	letter-spacing: 3px;
	font-size: 0.938em;
}
.exp-info {
    background-color: white;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	padding: 15px;
	margin-top: 15px;
	margin-left: 12px;
}
.f-left .exp-info {
	margin-left: 0;
	margin-right: 12px;
}
/* !------------------- Experience Styles End --------------- */
/* !------------------- Blog Styles Start --------------- */
.blog-img-wrap {
	position: relative;
	overflow: hidden;
}
.blog-img-wrap img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.blog-img-wrap img:hover {
	-webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}
.tag {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: rgb(251, 113, 88);
	padding: 2px 10px;
	color: white;
}
.blog-info {
	background-color: white;
	padding: 25px;
}
.post-title h4 {
	font-size: 1.125em;
}
.post-title h4:hover {
	color: rgb(251, 113, 88);
	cursor: pointer;
}
.post-date {
	display: flex;
	justify-content: space-between;
	font-size: 0.75em;
}
.post-date span:last-child a:hover,
.post-date span:last-child a:hover .comment-icon {
	color: rgb(251, 113, 88);
	-webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.comment-icon {
	margin-right: 5px;
}
.blog-info > div {
	margin-bottom: 10px;
}
.blog-info > a {
	color: #ababab;
}
.blog-info > a:hover {
	color: rgb(251, 113, 88);
}
/* !------------------- Blog Styles End --------------- */
/* !------------------- Contact Styles Start --------------- */
form input,
form textarea {
	padding: 6px 12px;
	border: 1px solid #ced4da;
	color: #495057;
	font-weight: 400;
	font-size: 0.75em;
}
form input:focus,
form textarea:focus {
	outline: none;
	border: 1px solid red;
}
form input {
	height: 43px;
}
form textarea {
	height: 186px;
	min-height: 100px;
	max-height: 500px;
	resize: vertical;
}
/* !------------------- Contact Styles End --------------- */
/* !------------------- Map Styles Start --------------- */
#map {
	height: 50vh;
}
/* !------------------- Map Styles End --------------- */
/* !------------------- Footer Styles Start --------------- */
footer {
	background-color: black;
	font-size: 0.875em;
}
.copy {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.media {
	display: flex;
	justify-content: center;
}
.media li {
	margin-right: 5%;
}
.media li:last-child {
	margin: 0;
}
.media a,
.rights p,
.copyright a {
	color: white;
}
.ownership {
	text-align: center;
}
.copyright {
	color: rgb(251, 113, 88);
}
.copyright a {
	font-size: 1.5em;
}
.copyright a:hover, .media a:hover {
	color: rgb(251, 113, 88);
}
.copyright2 {
	width: 100%;
	margin-top: 75px;
	margin-bottom: 25px;
}
.copyright2 hr {
	width: 100%;
	margin: 0 auto;
	border-top: 1px solid #f5f5f5;
}
/* !------------------- Footer Styles End --------------- */
.hidden {
	display: none;
}


/* !------------------- Media Queries Start --------------- */

/* !------------------- @Media 1200+ --------------- */
@media only screen and (min-width: 1200px) {
	
}
/* !------------------- @Media 992-1199 --------------- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
}
/* !------------------- @Media 991 or less --------------- */
@media only screen and (max-width: 991px) {
	nav {
		padding: 15px 0;
	}
	nav.bkgrd {
		background-color: rgba(0, 0, 0, 0.6);
	}
	.nav {
		flex-direction: column;
	    align-items: stretch;
	}
	.hamburger-button {
		display: inline-block;
	}
	.navbar {
	    justify-content: flex-start;
	}
	.condensed {
		display: none;
	}
	.navbar-nav {
		flex-direction: column;
		margin-top: 10px;
	}
	.nav-item {
	    padding: 0px;
	    margin-bottom: 10px;
	}
	.nav-item:last-child {
	    margin-bottom: 0;
	}
	.about-pic {
		grid-column-start: span 12;
	}
	.about-info {
		grid-column-start: span 12;
	}
	.testimonial-container {
		padding: 50px 40px 40px;
	}
	.timeline {
		width: 634px;
	}
	.exp-wrapper {
	    width: 300px;
	}
}
/* !------------------- @Media 767 or less --------------- */
@media only screen and (max-width: 767px) {
	.header h1 {
		font-size: 2.5em;
	}
	.headline h2 {
		font-size: 1.5em;
	}
	.copy {
		flex-direction: column;
	}
	.copyright a {
		font-size: 1.25em;
	}
	.work-type {
		grid-column-start: span 12;
	}
	.service-icon {
		font-size: 1.25em;
	}
	.service-info h3 {
		font-size: 1em;
	}
	.service-info .number {
		font-size: 2em;
	}
	.about-wrap h4 {
	    font-size: 1.25em;
	}
	.testimonial-section {
		grid-column-start: span 12;
	}
	.timeline,
	.exp-wrapper {
		width: 100%;
	}
	.direction {
		justify-content: center;
		text-align: center;
		padding-top: 29px;
	}
	.direction .flag-wrapper {
		justify-content: center;
	}
	.flag-wrapper .hexagon {
		top: -25px;
		left: calc(50% - (16px / 2));
	}
	.direction .exp-info {
		margin-left: 0;
		margin-right: 0;
	}
	.blog-post {
		grid-column-start: span 12;
	}
	.contact {
		grid-column-start: span 12;
	}
}
/* !------------------- @Media 399 or less --------------- */
@media only screen and (max-width: 399px) {
	.header h1 {
		font-size: 2em;
	}
	.home-buttons {
		flex-direction: column;
		align-items: center;
	}
	.home-buttons a:first-child {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.testimonial-container {
		padding: 25px 20px 20px;
	}
	.exp-info h3 {
		font-size: 1em;
	}
	.blog-info {
		padding: 20px;
	}
}
/* !------------------- @Media Special Media Breaks --------------- */
@media only screen and (max-width: 1160px) {
	.services-wrap.thirds {
		grid-column-start: span 6; 
	}
}
@media only screen and (max-width: 1200px) {
    .intro {
        background-attachment: scroll;
    }
}
@media only screen and (max-width: 630px) {
	.services-wrap.thirds {
		grid-column-start: span 12; 
	}
}
@media only screen and (max-width: 500px) {
	.about-contact-wrap ul {
		flex-direction: column;
		justify-content: space-between;
	}
	.about-contact-wrap ul li:first-child {
		margin-bottom: 10px;
	}
	.gal-img-wrap {
	    padding: 0 10px;
	}
}