* {
	font-family: 'Istok Web', sans-serif;
}
*::selection {
	background: #feb800; /* WebKit/Blink Browsers */
	color: white;
}
*::-moz-selection {
	background: #feb800; /* Gecko Browsers */
	color: white;
}
*:hover {
	-webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
}
nav, img, .button, .number, .date {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none; /* Microsoft */
	user-select: none;
}
a {
	text-decoration: none;
	cursor: pointer;
}
img {
	width: 100%;
}
.hidden {
	display: none;
}
.bg1 {
	background-color: #2d2d2f;
	background-image: url(../images/bg-1.jpg);
}
.bg2, .bg3 {
	background-color: #daddd1;
}
.bg2 {
	background-image: url(../images/bg-2.jpg);
}
.bg3 {
	background-image: url(../images/bg-3.jpg);
}
.section-pad {
	padding: 80px 0;
}
.button {
	background-color: #f26522;
	border: none;
	padding: 8px 12px;
	border-radius: 5px;
	font-size: 0.75em;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
}
.button:focus {
    outline: none;
}
button:active {
    transform: scale(0.95);
}
h1, h2, h3, h4, h5 {
	font-weight: 700;
}
h1 {
	font-size: 2.813em;
	text-transform: uppercase;
}
/* !------------------- Grid Basics Start --------------- */
.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}
.gap {
	grid-gap: 50px 5%;
}
.gallery-gap {
	grid-gap: 30px 5%;
}
.container {
	grid-column: 2 / span 10;
}
.whole {
	grid-column-start: span 12; 
}
.two-thirds {
	grid-column-start: span 8;
}
.halves {
	grid-column-start: span 6; 
}
.thirds {
	grid-column-start: span 4; 
}
.fourths {
	grid-column-start: span 3; 
}
/* !------------------- Fixed Icon Start --------------- */
.fixed-wrapper {
	border-radius: 50%;
	background-color: black;
	width: 44px;
	height: 44px;
}
.fixed {
	position: fixed;
	z-index: 5;
	bottom: 5%;
}
.fixed.right {
	right: 2%;
}
.caret-container, .caret-container a {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.caret {
	color: #9f9f9f;
}
.caret-container:hover .caret {
	color: #feb800;
}
#caret:active {
	transform: scale(0.95);
}
/* !------------------- Nav Start --------------- */
nav#top {
	height: 150px;
}
.navbar {
	grid-column: 2 / span 10;
	height: 100px;
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
}
.nav-border {
	border-bottom: 1px solid rgba(221,225,220,.2);
}
.navs {
	position: relative;
}
.nav-left {
	left: 17%;
}
.nav-right {
	right: 17%;
}
#hamburger {
	display: none;
	margin: 5%;
}
.hamburger-navigation {
	position: relative;
}
.hamburger-icon {
	color: white;
	font-size: 2em;
}
.hamburger-content {
	display: none;
	position: absolute;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border: 1px solid rgba(221,225,220,.2);
	z-index: 1;
	top: 100%;
}
.hamburger-content li {
	margin-bottom: 5px;
}
.hamburger-content li:last-child {
	margin-bottom: 0;
}
.hamburger-content a {
	color: #9f9f9f;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 0.875em;
	font-weight: 400;
	padding: 10px;
	display: block;
	width: 100%;
	height: 100%;
	text-align: start;
}
.hamburger-navigation:hover .hamburger-content {
	display: block;
}
.hamburger-content li:hover,
.hamburger-content li.active {
	background-color: #feb800;
}
.hamburger-content li:hover .nav,
.hamburger-content li.active .nav {
	color: white;
}
.nav-left {
	display: flex;
	align-items: center;
}
.nav-wrapper {
	height: 100%;
}
.navigation {
	height: 90%;
	display: flex;
	justify-content: space-around;
}
.navigation li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 80px;
	margin: 0 1%;
}
.navigation li:first-child {
	margin-left: 0;
}
.navigation li:last-child {
	margin-right: 0;
}
.navigation li.active {
	background-color: #feb800;
}
.navigation li:hover {
	background-color: #feb800;
}
nav a {
	text-transform: uppercase;
	color: white;
	font-size: 0.75em;
	font-weight: 700;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 50px;
}
/* !------------------- Carousel Start --------------- */
#carousel {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
#slide-container {
	height: 100%;
	overflow: hidden;
	margin: auto;
}
#slider {
	height: 100%;
	-webkit-transition:all 1.0s ease-in-out;
	-moz-transition:all 1.0s ease-in-out;
	-o-transition:all 1.0s ease-in-out;
	transition:all 1.0s ease-in-out;
}
.slide {
	float: left;
	margin: 0;
	padding: 0;
	width: 33.33%;
	height: 100%;
	position: relative;
}
.slide img {
	width: 100%;
}
.carousel-text {
	width: 615px;
	text-transform: uppercase;
	position: absolute;
	z-index: 1;
	left: calc(50% - (615px/2));
	top: calc(50% - (173px/2));
}
.slide p {
	text-align: center;
	color: white;
}
#slide-selector {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 5%;
	left: calc(50% - (69px/2));
}
.dash {
	background-color: white;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	margin: 0 5px;
}
#slide-selector div.active {
	background-color: #feb800;
}
.dash:hover {
	background-color: #feb800;
}
.text1 {
	font-size: 2.25em;
	font-weight: 700;
}
.text2 {
	font-size: 4.875em;
	font-weight: 700;
	line-height: 1;
}
.text3 {
	font-size: 1.875em;
	font-weight: 500;
}
/* !------------------- Values Start --------------- */
#values {
	padding-top: 60px;
}
h2 {
	font-size: 1.875em;
}
.block-half:first-child {
	padding: 36px 11px 33px 36px;
}
.block-half.bottom {
	position: absolute;
	bottom: 0;
}
.block-half p {
	font-size: 0.813em;
	font-weight: 400;
	color: #676766;
	margin-top: 15px;
}
.value-block {
	max-width: 300px;
	justify-self: center;
	position: relative;
	min-height: 384px;
}
.value-block:hover {
	background-image: none;
	background-color: #feb800;
	cursor: pointer;
}
 .value-block:hover .block-half h2, .value-block:hover .block-half p {
	 color: white;
 }
.value {
	grid-column-start: span 12;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.value h1 {
	color: white;
	margin: 15px 0;
}
.value div, .value hr {
	width: 100%;
}
.value hr {
	border-top: 1px solid rgba(255,255,255,.3);
}
/* !------------------- Middle Section Start --------------- */
#middle-section {
	padding: 70px 0;
}
.more-values {
	text-align: center;
}
.flex-centering {
	display: flex;
	justify-content: center;
}
.outer-circle {
	border: 1px solid #dde1dc;
	border-radius: 50%;
	padding: 10px;
}
.inner-circle {
	background-color: #dde1dc;
	border-radius: 50%;
	padding: 40px;
}
.inner-circle span {
	font-size: 3.438em;
}
.more-values:hover .outer-circle {
	border-color: #feb800;
}
.more-values:hover .inner-circle {
	background-color: #feb800;
}
.more-values:hover .inner-circle span {
	color: white;
}
.first {
	margin-bottom: 25px;
}
.third {
	margin-top: 12px;
}
.more-values h3 {
	font-size: 1.5em;
	font-weight: 400;
	color: white;
}
.more-values p {
	font-size: 0.813em;
	color: #9f9f9f;
	line-height: 2;
	max-width: 375px;
	margin: 0 auto;
}
#middle-section .button:hover {
	background-color: #dde1dc;
	color: black;
}
/* !------------------- Offers Start --------------- */
#offers .button:hover {
	background-color: black;
}
.whole h1 {
	text-align: center;
}
.blocks .first {
	margin-bottom: 35px;
}
.blocks .third {
	margin-top: 25px;
}
.blocks h4 {
	text-transform: uppercase;
	font-size: 0.875em;
}
.blocks h4:hover {
	color: #feb800;
	cursor: pointer;
}
.blocks p {
	font-size: 0.813em;
	color: #676766;
}
/* !------------------- Pipes Start --------------- */
#pipes {
	background-color: #4b4b4b;
	background-image: url(../images/bg-4.jpg);
	background-size: cover;
	background-position: center;
}
.pipe-blocks {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}
.pipe-top span {
	font-size: 4.063em;
	margin-bottom: 25px;
}
.pipe-bottom h5 {
	font-size: 1.5em;
}
.pipe-bottom h5:hover {
	color: #feb800;
	cursor: pointer;
}
.pipe {
	font-size: 0.875em;
}
/* !------------------- Footer Start --------------- */
.bottom-stripe {
    background: url(../images/bottom-stripe.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 10px;
}
/* !------------------- Contact Info Start --------------- */
#contact-info {
	padding: 25px 0;
}
.contact-us {
	padding: 25px 5%;
}
.divider {
	border-right: 1px solid #bdc0b5;
}
.contact-us p {
	font-style: normal;
	font-weight: 400;
	font-size: 1.125em;
}
.contact-us p:last-child, .contact-us p a {
	color: #343434;
}
.contact-us p a:hover {
	color: #feb800;
}
.contact-us p:first-child {
	font-weight: 700;
	margin-bottom: 30px;
}
.social-media ul {
	display: flex;
}
.media {
	padding: 0 4%;
}
.media:first-child {
	padding-left: 0;
}
.social-media span {
	font-size: 1.5em;
}
.social-media span:hover {
	color: #b28100;
	cursor: pointer;
}
/* !------------------- Copyright Start --------------- */
#copyright {
	text-align: center;
	color: white;
}
#rox-copy {
	font-size: 1.125em;
}
.copyright-year, .rights, .policy, .copyright {
	font-size: 0.75em;
}
.copyright-year {
	color: #feb800;
}
.policy {
	color: white;
}
.policy:hover, .copyright a {
	color: #feb800;
}
.copyright a {
	font-size: 1.5em;
}
.copyright a:hover {
	color: #9f9f9f;
}
.copyright2 {
	width: 100%;
	margin-top: 75px;
	margin-bottom: 25px;
}
.copyright2 hr {
	width: 100%;
	margin: 0 auto;
	border-top: 1px solid #9f9f9f;
}
/* !------------------- About Page Start --------------- */
/* !------------------- Commitment Start --------------- */
#commitment h1 {
	text-align: center;
	text-transform: none;
	margin-bottom: 10px;
}
.qualtiy p, .custom-list p {
	font-size: 0.813em;
	font-weight: 400;
	color: #676766;
}
.quality {
	margin-bottom: 25px;
}
.list.grid.gap {
	row-gap: 0;
}
h2.subheading {
	font-size: 1.125em;
	display: inline-block;
	margin-bottom: 15px;
}
h2.subheading:hover {
	color: #feb800;
	cursor: pointer;
}
.custom-list li {
	    border-bottom: 1px dashed #bdbdbd;
	    margin-bottom: 15px;
	    padding-bottom: 15px;
}
.custom-list li:last-child {
	    border-bottom: none;
}
a.c-list {
	display: flex;
	align-items: baseline;
}
.right-arrow {
	/* !------ Make A Triangle With CSS ------ */
	width: 0;
	height: 0;
	border-width: 4px 0 4px 4px;
	border-style: solid;
	border-color: transparent #f26522;
	/* End Triangle CSS */
	margin-right: 5%;
}
a.c-list:hover .right-arrow {
	border-left-color: #676766;
}
a.c-list:hover p {
	color: #feb800;
}
.values {
	display: flex;
}
.number-wrapper {
	margin-right: 2.5%;
}
.number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: #f26522;
}
.number h3 {
	font-size: 1.875em;
	color: white;
	text-align: center;
	padding-left: 10%;
}
.values:nth-of-type(2) {
	margin: 15px 0;
}
.context-link h4 {
	font-size: 0.875em;
	display: inline-block;
	margin-bottom: 2.5px;
}
.context-link:hover h4 {
	color: #feb800;
} 
.context p {
	font-size: 0.813em;
	font-weight: 400;
	color: #676766;
	line-height: 1.75;
}
/* !------------------- Environment Start --------------- */
#environment .button:hover {
	background-color: #dde1dc;
	color: black;
}
#environment h1 {
	color: white;
	text-transform: none;
}
.environment h4 {
	color: white;
}
.environment p {
	color: #949491;
}
/* !------------------- Risk Start --------------- */
#risk h1 {
	text-align: center;
	text-transform: none;
}
.recent {
	max-width: 750px;
    margin: auto;
}
.manage, .recent {
	margin-top: 40px;
}
.manage.grid.gap {
	grid-gap: 25px 2.5%;
}
.mang-img {
	justify-self: center;
}
.mang-text .context:last-child {
	margin-top: 20px;
}
.awards .context-link h4 {
	margin-bottom: 15px;
}
.awards .third {
	margin-top: 25px;
}
.awards .button:hover {
	background-color: black;
}
/* !------------------- Projects Page Start --------------- */
#projects h1 {
	text-transform: none;
}
.gal-text-wrap {
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: rgba(159,159,159,.5);
	padding: 25px;
}
.overlay-container {
	position: relative;
	height: 100%;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	opacity: 0;
	transition: .4s ease;
}
.overlay-container:hover .overlay {
	opacity: 1;
}
.magnify {
	color: #feb800;;
	font-size: 3em;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}
/* !------------------- 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 {
	max-width: 80vw;
	max-height: 80vh;
}
/* The Close Button */
.close {
	color: white;
	position: absolute;
	top: 1.5%;
	right: 3%;
	font-size: 2.188em;
	font-weight: bold;
	user-select: none;
	-webkit-user-select: none;
}
.close:hover,
.close:focus {
	color: #feb800;
	text-decoration: none;
	cursor: pointer;
}
.gallery-slides {
	display: none;
}
.cursor {
	cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 1.25em;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
	color: #feb800;
}
/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 0.75em;
	position: absolute;
	bottom: -5%;
	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)}
}
/* !------------------- Blog Page Start --------------- */
.headline {
	text-align: center;
	margin-bottom: 25px;
}
.headline h1 {
	text-transform: none;
}
.entries {
	border-bottom: 1px solid #bdc0b5;
}
.blog-entry {
	display: flex;
	margin-bottom: 50px;
}
.date {
	background-color: #feb800;
	height: 60px;
	padding: 10px;
	margin-right: 30px;
	text-align: center;
	color: white;
}
.day, .month {
	font-weight: 700;
}
.day {
	font-size: 2.25em;
	line-height: 0.7;
	margin-top: 3px;
}
.month {
	font-size: 0.875em;
	text-transform: uppercase;
}
.date-content h2 {
	font-size: 1.5em;
	line-height: 0.8;
}
.date-content h2:hover {
	color: #feb800;
	cursor: pointer;
}
.date-content h3 {
	font-weight: 500;
	font-size: 1.125em;
	display: inline-block;
}
.date-content h3:nth-of-type(1) {
	margin-right: 25px;
}
.user:hover {
	color: #feb800;
}
.date-content img {
	margin-top: 10px;
	margin-bottom: 20px;
}
.date-content p {
	color: #676766;
	font-size: 0.813em;
	margin-bottom: 20px;
}
.more button:hover {
	background-color: black;
}
/* ! --- Blog Form Search Start --- */
.form-wrap {
	position: relative;
}
.form-wrap input,
.form-wrap textarea {
	width: 100%;
	background: transparent;
	border: 1px solid #9f9f9f;
	padding: 5px 15px;
	font-size: 0.813em;
	font-weight: 400;
	color: #9f9f9f;
}
.form-wrap input:focus,
.form-wrap textarea:focus {
	outline: none;
}
.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
	color: #9f9f9f;
	opacity: 1; /* Firefox */
}
.form-wrap input:-ms-input-placeholder,
.form-wrap textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #9f9f9f;
}
.form-wrap input::-ms-input-placeholder,
.form-wrap textarea::-ms-input-placeholder { /* Microsoft Edge */
	color: #9f9f9f;
}
.search-button {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	line-height: 0;
	background: none;
	border: none;
	cursor: pointer;
}
.search-button:focus {
	outline: none;
}
.search-button:active {
    transform: scale(0.80);
}
.search-button span {
	font-size: 1.5em;
}
.search-button:hover span {
	color: #feb800;
}
.posts {
	display: flex;
	margin-bottom: 25px;
}
.post-img {
	min-width: 110px;
	margin-right: 2.5%;
}
/* !------------------- Services Page Start --------------- */
/* !------------------- Director Start --------------- */
.director h1 {
	text-transform: capitalize;
}
.director-img {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.director-img img {
	max-width: 370px;
}
blockquote {
	display: flex;
}
.quote-symbol-wrap {
	margin-right: 2%;
}
.quote-symbol {
	background: url(../images/quote.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
	height: 20px;
}
.quote h3 {
	font-size: 1.125em;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 15px;
}
.quote h4 {
	display: inline-block;
	font-size: 0.875em;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 5px;
}
.quotee:hover {
	color: #feb800;
	cursor: pointer;
}
.quote p {
	font-size: 0.813em;
	color: #676766;
}
/* !------------------- Services Start --------------- */
.services {
	display: flex;
}
.service-img {
	margin-right: 5%;
}
.service-img img {
	width: 170px;
}
.service-content h4 {
	color: white;
	text-transform: uppercase;
	font-size: 0.875em;
	margin-bottom: 5px;
}
.service-content p {
	color: #9f9f9f;
	font-size: 0.813em;
	margin-bottom: 15px;
}
.service-content .button:hover {
	background-color: #dde1dc;
	color: black;
}
/* !------------------- Contacts Page Start --------------- */
#find-us .container.grid.gap {
	column-gap: 2%;
}
address.us {
	font-style: normal;
	display: flex;
}
.map-wrap {
	width: 100%;
	margin-bottom: 15px;
}
#map {
	height: 385px;
}
.our-info {
	margin-left: 3%;
	min-width: 190px;
}
.company-name {
	font-weight: 700;
}
.our-info .company-name + ul {
	margin-bottom: 25px;
}
.our-info li {
	color: #676766;
	font-size: 0.813em;
	display: flex;
	justify-content: space-between;
	line-height: 1.8;
}
.our-info li span + span:hover {
	color: #feb800;
	cursor: pointer;
}
.mail {
	color: #676766;
}
.mail:hover {
	color: #feb800;
}
.contact-form-wrap input {
	margin-bottom: 10px;
}
.contact-form-wrap textarea {
	margin-bottom: 25px;
}
.contact-form-wrap .button:hover {
	background-color: black;
}
textarea {
    height: 297px;
    min-height: 20px;
    max-height: 230px;
	resize: vertical;
}
/* !------------------- Search Page Start --------------- */
#search.section-pad {
	padding: 150px 0;
}
.center-search {
	grid-column: 4 / span 6;
}
#search .form-wrap input {
	border-color: #bdc0b5;
	color: #686868;
	min-height: 42px;
	padding-right: 75px;
}
#search .form-wrap input::placeholder {
	color: #686868;
	opacity: 1; /* Firefox */
}
#search .form-wrap input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #686868;
}
#search .form-wrap input::-ms-input-placeholder { /* Microsoft Edge */
	color: #686868;
}
#search .button {
	position: absolute;
	min-height: 42px;
	top: 0;
	right: -1%;
}
#search .button:hover {
	background-color: black;
}
/* !------------------- Privacy Policy Page Start --------------- */
.privacy h1 {
	text-align: left;
	text-transform: capitalize;
}
.policy h2 {
	color: black;
	font-size: 1.125rem;
	font-weight: 400;
}
.policy p {
	color: #9f9f9f;
	line-height: 2.15;
	font-size: 0.813rem;
}
.privacy-link {
	color: #feb800;
	font-size: 0.813em;
	font-weight: 400;
}
.privacy-link:hover {
	color: #b28100;
}
/* !------------------- Media Queries Start --------------- */

/* !------------------- @Media 1200+ --------------- */
@media only screen and (min-width: 1200px) {
	.gallery-gap {
	    grid-gap: 30px 3%;
	}
	.blog-wrap {
		grid-row-start: span 3;
	}
	.blog-search,
	.recent-posts {
		grid-row-start: span 1;
	}
	#blog .container.grid.gap {
		row-gap: 25px;
	}
}
/* !------------------- @Media 992-1199 --------------- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.carousel-text {
		width: 365px;
		left: calc(50% - (365px/2));
		top: calc(50% - (98px/2));
	}
	.text1 {
		font-size: 1.5em;
	}
	.text2 {
		font-size: 2em;
	}
	.text3 {
		font-size: 1.375em;
	}
	.block-half:first-child {
		padding-bottom: 25px;
	}
	.gallery-gap {
	    grid-gap: 30px 3%;
	}
	.blog-wrap {
		grid-row-start: span 3;
	}
	.blog-search,
	.recent-posts {
		grid-row-start: span 1;
	}
	#blog .container.grid.gap {
		row-gap: 25px;
	}
	.headline h1 {
		font-size: 2em;
	}
}
/* !------------------- @Media 768-991 --------------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.two-thirds {
		grid-column-start: span 12;
	}
	.thirds {
		grid-column-start: span 6;
	}
	.two-thirds + .thirds {
		grid-column-start: span 12; 
	}
	.fourths {
		grid-column-start: span 6; 
	}
	.manage .two-thirds {
		grid-column-start: span 8; 
	}
	.manage .thirds {
		grid-column-start: span 4;
	}
	.carousel-text {
		width: 365px;
		left: calc(50% - (365px/2));
		top: calc(50% - (98px/2));
	}
	.text1 {
		font-size: 1.5em;
	}
	.text2 {
		font-size: 2em;
	}
	.text3 {
		font-size: 1.375em;
	}
	.wrap-center {
		grid-column-start: span 12;
	}
	.divider {
		border: none;
	}
	.contact-us {
		text-align: center;
	}
	.social-media ul {
		justify-content: center;
	}
	.entries {
		border-bottom: none;
	}
	.blog-entry:last-child {
		margin-bottom: 0;
	}
	.blog-search {
	    display: flex;
	}
	.blog-search > div {
	    width: 47.5%;
	    min-width: 235px;
	}
	.categories {
		margin-right: 5%;
	}
	.recent-posts.thirds {
	    grid-column-start: span 12;
	}
	.director-img.thirds {
	    grid-column-start: span 12;
	}
	.services {
		flex-direction: column;
	}
	.service-img {
		margin-right: 0;
		margin-bottom: 20px;
	}
}
/* !------------------- @Media 767 or less --------------- */
@media only screen and (max-width: 767px) {
	.two-thirds {
		grid-column-start: span 12;
	}
	.thirds {
		grid-column-start: span 6;
	}
	.two-thirds + .thirds {
		grid-column-start: span 12; 
	}
	.fourths {
		grid-column-start: span 6; 
	}
	.manage .thirds {
		grid-column-start: span 12;
	}
	h1 {
		font-size: 1.75em;
	}
	.carousel-text {
		width: 365px;
		left: calc(50% - (365px/2));
		top: calc(50% - (98px/2));
	}
	.text1 {
		font-size: 1.5em;
	}
	.text2 {
		font-size: 2em;
	}
	.text3 {
		font-size: 1.375em;
	}
	.value-block {
		min-height: 350px;
	}
	.wrap-center {
		grid-column-start: span 12;
	}
	.block-half:first-child {
	    padding: 15px;
	}
	.block-half h2 {
		font-size: 1.375em;
	}
	.more-values h3 {
		font-size: 1.25em;
	}
	.divider {
		border: none;
	}
	.contact-us {
		text-align: center;
	}
	.social-media ul {
		justify-content: center;
	}
	h2.subheading {
		font-size: 1em;
	}
	.manage, .recent {
		margin-top: 20px;
	}
	.numbertext {
		bottom: -8%;
	}
	.date-content h2 {
		font-size: 1.25em;
	}
	.date-content h3 {
		font-size: 1.125em;
	}
	.entries {
		border-bottom: none;
	}
	.blog-entry {
		flex-direction: column;
	}
	.blog-entry:last-child {
		margin-bottom: 0;
	}
	.date-container {
		margin: 0 auto 25px;
	}
	.blog-search.thirds {
	    display: flex;
	}
	.blog-search > div {
	    width: 47.5%;
	    min-width: 235px;
	}
	.categories {
		margin-right: 5%;
	}
	.recent-posts.thirds {
	    grid-column-start: span 12;
	}
	#search .form-wrap input {
		padding-right: 80px;
	}
	.center-search {
		grid-column: 3 / span 8;
	}
	.director-img.thirds {
	    grid-column-start: span 12;
	}
	.services {
		flex-direction: column;
	}
	.service-img {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.list .halves, .list .thirds {
		min-width: 250px;
	}
	address.us {
		flex-direction: column;
	}
	.our-info {
		margin-left: 0;
	}
}
/* !------------------- @Media 399 or less --------------- */

@media only screen and (max-width: 399px) {
	.slide img {
		width: 130%;
	}
	.carousel-text {
		width: 250px;
		left: calc(50% - (250px/2));
		top: calc(50% - (67px/2));
	}
	.text1 {
		font-size: 1em;
	}
	.text2 {
		font-size: 1.5em;
	}
	.text3 {
		font-size: 0.875em;
	}
	.center-search {
		grid-column: 2 / span 10;
	}
	#map {
		height: 250px;
	}
}
/* !------------------- @Media Special Media Breaks --------------- */
@media only screen and (max-width: 991px) {
	.list-wrap.thirds .custom-list li:last-child {
		border-bottom: 1px dashed #bdbdbd;
	}
	.list-wrap.thirds:nth-of-type(2) .custom-list li:last-child {
		border-bottom: none;
	}
	.list-wrap.thirds:last-of-type .custom-list li:last-child {
		border-bottom: none;
	}
}
@media only screen and (max-width: 900px) {
	.navbar {
		grid-column: span 12;
	}
	.nav-right {
		display: none;
	}
	#hamburger {
		display: block;
	}
	.nav-left {
	    left: 1%;
	}
}
@media only screen and (max-width:600px) {
	.list .halves, .list .thirds {
		grid-column-start: span 12;
	}
	.list-wrap .custom-list li:last-child,
	.list-wrap.thirds:nth-of-type(2) .custom-list li:last-child {
		border-bottom: 1px dashed #bdbdbd;
	}
	.list-wrap:last-of-type .custom-list li:last-child {
		border-bottom: none;
	}
	.blog-search.thirds {
	    display: block;
	}
	.blog-search > div {
	    width: 100%;
	}
	.categories {
		margin-right: 0;
	}
	.services {
		text-align: center;
	}
	.services.halves {
		grid-column-start: span 12; 
	}
}
@media only screen and (max-width:550px) {
	.thirds {
		grid-column-start: span 12;
	}
	.fourths {
		grid-column-start: span 12; 
	}
	.contact-us {
		padding: 30px 5%;
	}
	.navs {
		grid-column-start: span 12; 
	}
	#hamburger {
		margin: 2%;
	}
	.numbertext {
		bottom: -10%;
	}
}