:root {
  --blue: #1a348a;
  --green: #48a240;
  --cut: 24px; 
  --tri: 22px; 
}

body {
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-size: 19.15px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
}

h1, h2, h3 {
	font-family: "Space Grotesk", sans-serif;
}

h2 {
	font-size: 44px;
	font-weight: 600;
	line-height: 1.2;
}

h3 {
	font-size: 31.33px;
	font-weight: 500;
}

.g-container {
	width: 1450px;
	max-width: calc(100% - 100px);
}

.home .g-container, #g-footer .g-container {
	width: 1680px;
	max-width: calc(100% - 100px);
}

.button {
	display: inline-block;
	position: relative;
	font-size: 18.5px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	background: var(--green);
	color: #fff;
	clip-path: polygon(
		0 0, 100% 0,
		100% calc(100% - var(--cut)),
		calc(100% - var(--cut)) 100%,
		0 100%
	);
	padding: 15px 70px 15px 35px;
	overflow: hidden;
	isolation: isolate;
}

.button:hover {
	color: #fff;
}

.button:before {
	content: '';
	position:absolute; top:0; left:0;
	width: var(--tri); height: var(--tri);
	background: var(--blue);  
	clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: -1;
	transition: all 520ms cubic-bezier(.2,.7,.2,1);
}

.button:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  height: 100%;
}

.button:after {
	content: '';
	width: 20px;
	height: 20px;
	background: url('images/button_arrows.webp') center center no-repeat;
	position: absolute;
	right: 35px;
	top: 50%;
	margin-top: -10px;
	z-index: 1;
}

.card {
	display: inline-block;
	background: #fff;
	color: #000;
	font-size: 27px;
	font-weight: 300;
	clip-path: polygon(
		0 0, 100% 0,
		100% calc(100% - 30px),
		calc(100% - 30px) 100%,
		0 100%
	);
	padding: 25px 15px;
	position: relative;
}

.card:hover {
	background: #161616;
	color: var(--green);
}

.card:before {
	content: '';
	display: block;
	height: 9px;
	width: 0;
	background: var(--green);
	position: absolute;
	left: 0;
	top: 0px;
	transition: all 520ms cubic-bezier(.2,.7,.2,1);
}

.card:hover::before {
	width: 100%;

}

.card:after {
	content: '';
	display: block;
	height: 33px;
	width: 31px;
	background: url(images/card_arrows.webp) center center no-repeat;
	position: absolute;
	right: 25px;
	bottom: 25px;
	transition: all 520ms cubic-bezier(.2,.7,.2,1);
	font-size: 16px;
	z-index: -1;
}



/* Navigation */

#g-navigation {
    padding: 45px 0 15px  0;
}

#g-navigation .g-logo img {
	filter: brightness(0%);
}

#g-navigation .g-container {
	width: 100%;
	max-width: calc(100% - 80px);
}

#g-navigation .g-content {
	margin: 0;
	padding: 0;
}

#g-navigation .g-main-nav {
    text-align: center;
}

#g-navigation .g-main-nav .g-toplevel > li {
	margin: 0 30px;
}

#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
	padding: 0;
}

#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
}

#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
	color: #000;
	font-size: 20px;
	font-weight: 400;
}

#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container:hover > .g-menu-item-content,
#g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-menu-item-content {
	color: var(--green);
}

#g-navigation .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
    opacity: 0;
    font-size: 14px;
}

#g-navigation .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator {
	background: url('images/arrow_drop_down_black.webp') center center no-repeat;
	height: 24px;
	display: inline-block;
}

#g-navigation .g-main-nav .g-toplevel > li.g-parent.g-selected > .g-menu-item-container > .g-menu-parent-indicator  {
    background: none;
}

#g-navigation .g-main-nav .g-toplevel > li.g-parent.g-selected > .g-menu-item-container > .g-menu-parent-indicator:after {
	opacity: 1 !important;	
}

#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
    font-size: 18px;
	font-weight: 400;
	color: #fff;
}

#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container:hover > .g-menu-item-content,
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-menu-item-content {
	color: var(--green);
}

#g-navigation .g-main-nav .g-standard  .g-dropdown {
     background-color: var(--blue);
	 padding: 5px 15px;
	 box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

#g-navigation  .menu-button {
	text-align: right;
}

#g-navigation  .menu-button .button {
	top: -10px;
}

/* Main */

#g-mainbar {
    padding: 0;
}

#g-mainbar .g-content {
	margin: 0;
	padding: 0;
}

.home #g-navigation {
	position: absolute;
	width: 100%;
	z-index: 20;
	background: url('images/home_nav_bg.webp');
	background-size: cover;
}

.home #g-navigation .g-logo img {
	filter: none;
}

.home #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
	color: #fff;
}

.home #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container:hover > .g-menu-item-content,
.home #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-menu-item-content {
	color: var(--green);
}

.home #g-navigation .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator {
	filter: invert(100%);
} 

#sliderRow {
	height: 100vh;
	max-height: 1080px;
	overflow: hidden;
}

#sliderRow h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    padding: 50px 0 50px 335px;
    background: url('images/USG.webp') top left no-repeat;
}

#sliderRow h1 strong {
	display: block;
	color: var(--green);
}

#sliderRow .text {
	position: absolute;
	z-index: 10;
	width: 100%;
	bottom: 58px;
	padding: 0 35px;
	color: #fff;
	font-size: 21px;
	line-height: 1.25;
}

#sliderRow h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
	margin: 0;
}


#sliderRow .text ul li:hover {
	background: #161616;
}

#sliderRow .text ul li a {
	color: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
    top: 0;
    padding: 25px 15px;
}

#sliderRow .text ul li:hover a {
	color: var(--green);
}

#sliderRow .text ul li:before {
	content: '';
	display: block;
	height: 9px;
	width: 0;
	background: var(--green);
	position: absolute;
	left: 0;
	top: 0px;
	transition: all 520ms cubic-bezier(.2,.7,.2,1);
}

#sliderRow .text ul li:hover::before {
	width: 100%;

}

#sliderRow .text ul li:after {
	content: 'Learn More';
	display: block;
	height: 40px;
	width: 100%;
	color: #fff;
	background: url(images/button_arrows.webp) top right 50px no-repeat;
	position: absolute;
	left: 15px;
    bottom: -10px;
	transition: all 520ms cubic-bezier(.2,.7,.2,1);
	opacity: 0;
	font-size: 16px;
	z-index: -1;
}

#sliderRow .text ul li:hover::after {
	opacity: 1;
}

#about {
	padding: 100px 0;
} 

#about h2 strong {
	color: var(--green);
}

#about .intro, .intro {
	font-size: 24.89px;
	font-weight: 300;
}

#locations .text-column {
	background: rgba(36,43,109,0.41);
	margin: 85px 0;
	color: #fff;
	padding: 40px;
}

#locations h2 {
	margin: 0;
}

#locations:after {
	content: '';
	display: block;
	width: 562px;
	height: 410px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: url('images/worker.webp') center center no-repeat;
	background-size: contain;
}

#locations .intro {
	width: 60%;
	font-size: 22px;
}

#locations .card, #locations .button {
	width: 100%;
}

#projects {
	margin: 35px 0 65px 0;
}

#projects .text {
	margin: 0;
}

#projects .text  h2 {
	display: inline-block;
	color: #fff;
	font-weight: 400;
	line-height: 1;
	background: var(--green);
	clip-path: polygon(
	  30px 0,         
	  100% 0,
	  100% 100%,
	  0 100%,
	  0 30px
	);
	margin: 0 25px 0 95px;
	padding: 35px 35px 15px 35px;
}

#projects .text p {
	display: inline-block;
	margin: 0;
	vertical-align: top;
}

/* Footer */

#g-footer {
	background: #1f1f1f;
	font-size: 21.73px;
	color: #fff;
}

#g-footer a {
	color: #fff;
}

#g-footer a:hover {
	color: var(--green);
}

#g-footer  h3 {
	color: #fff;
	font-size: 33px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#g-footer .menu li {
	margin-bottom: 10px;
}

.copyright-footer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
    left: 0;
    bottom: 0;
	background: #000;
	color: #7a7a7a;
	border-top: 1px solid #666666;
}

.copyright-footer .g-content {
	margin: 0;
	padding: 0;
}

.footer-logo {
	margin: 0 auto;
	display: table;
}

/* Posts Carousel */

.wd-swiper-nav {
    position: absolute;
    top: 0%;
    left: 0;
    z-index: 5;
    width: 90px;
    height: 100%;
    background: var(--green);
    padding: 55px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}

.wd-swiper-btn {
	pointer-events: auto;
	border: none;
	width: 15px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.wd-swiper-prev {
	background: url('images/chevron_left.webp') center center no-repeat;
}

.wd-swiper-next {
	background: url('images/chevron_right.webp') center center no-repeat;
}

.wd-swiper-btn:hover {
	transform: scale(1.04)
}

.wd-swiper-btn:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px
}

.wd-city-carousel {
	position: relative;
}

.wd-city-card {
	display: block;
	overflow: hidden;
	background: #fff;
	text-decoration: none;
}


.wd-city-thumb {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
}

.wd-city-meta {
	padding: 40px;
	position: absolute;
	left: 25px;
	bottom: 30px;
	width: 60%;
}

.wd-city-title {
	margin: 0 0 6px;
	
}

.wd-city-field {
	font-size: 22px;
}

body .swiper {
    padding: 0 89px;
}

body .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.swiper-slide:hover img {
	filter: grayscale(100%); 
	transition: filter 0.6s ease-in-out;
}

/* Sticky Menu */

body.sticky #g-page-surround {
	padding-top: 76px;
}

body.sticky.home #g-page-surround {
	padding-top: 0px;
}

#g-navigation.pre {
    position: fixed;
    width: 100%;
    left: 0;
    top: -210px;
    background: #fff;
    opacity: 0;
    box-shadow: 2px 2px 2px rgb(0 0 0 / .2);
    display: flex;
    align-items: center;
	padding: 20px 0 0 0;
	transition: .45s cubic-bezier(.05,.21,.41,.95)!important;
}


#g-navigation.sticky {
    top: 0;
    opacity: 1;
    z-index: 500;
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgb(255 255 255 / .8);
}

.home #g-navigation.sticky .g-logo img {
    filter: brightness(0%);
}

.home #g-navigation.sticky .g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
    color: #000;
}

.home #g-navigation.sticky .g-main-nav .g-toplevel > li > .g-menu-item-container:hover > .g-menu-item-content,
.home #g-navigation.sticky .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-menu-item-content {
    color: var(-green);
}

.home #g-navigation.sticky .g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator {
    filter: none;
}

#g-footer .g-totop.uptown a {
    color: #fff;
    background: var(--blue);
    border-radius: 40px;
    line-height: 36px;
    position: fixed;
    right: 10px;
    bottom: 15px;
    display: block;
    font-size: 16px;
    width: 39px;
    height: 39px;
    text-align: center;
    z-index: 50;
}

#g-footer .g-totop {
    padding: 0
}

/* Featured Image */

#page-fi-wrap {
    height: 190px;
    clear: both;
    display: table;
    width: 100%
}

#page-fi {
    background-size: cover!important;
    height: 190px;
    position: absolute;
    width: 100%;
    left: 0;
}

#page-fi:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('images/fi_over.webp') top center no-repeat;
	background-size: cover;
    width: 100%;
    height: 100%;
}

#title-wrap {
    text-align: center;
    margin: 85px 0;
}

#title-wrap h1 {
    font-size: 48px;
    line-height: 1.2;
	font-weight: 600;
}

/* Accordion */

body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a,
body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a {
    color: #272727;
	font-size: 26px;
	padding: 35px 0;
}

body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a {
	color: #fff;
}

body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-body,
body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:first-child:not(:last-child) .vc_tta-panel-heading {
    border: 0;
	background: none;
}

body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-body,
body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:not(:first-child):not(:last-child) .vc_tta-panel-heading {
    border-radius: 0;
    border: 0;
	background: none;
}

body .vc_tta.vc_general .vc_tta-panel.vc_active, 
body .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
    display: block;
    background: var(--green);
    color: #fff;
	padding: 0 30px 30px 30px;
	top: -1px;
    position: relative;
}

body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
    background-color: transparent;
    border-color: transparent;
}

body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-body, 
body .vc_tta-shape-rounded.vc_tta-o-shape-group:not(.vc_tta-o-no-fill) .vc_tta-panel:last-child:not(:first-child) .vc_tta-panel-heading {
    border: 0;
}

body .vc_tta  .vc_tta-panel-title {
    border-bottom: 1px solid #132544;
	margin-bottom: 1px !important;
}
body .vc_tta.vc_general .vc_active .vc_tta-panel-title {
    border-bottom: 1px solid transparent ;
}


body .vc_tta-color-white.vc_tta-style-classic .vc_tta-controls-icon:after,
body .vc_tta-color-white.vc_tta-style-classic .vc_tta-controls-icon:before {
    border-color: #fff;
}

body .vc_tta-color-white.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon:after,
body .vc_tta-color-white.vc_tta-style-classic .vc_active .vc_tta-panel-heading .vc_tta-controls-icon:before {
	border-color: #111;
}

body .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
	background: #111;
    padding: 20px;
    border-radius: 100px;
}

body .vc_tta.vc_tta-accordion  .vc_active .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
	background: #fff;
	right: -10px;
}

body  .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus:before {
    border-width: 4px 0 0;
    left: 10px;
    right: 10px;
}

body .vc_tta .vc_tta-controls-icon.vc_tta-controls-icon-plus:after {
    border-width: 0 0 0 4px;
    bottom: 10px;
    top: 10px;
}

/* Responsive Fix */

@media  (min-width: 1200px) {
	
	#sliderRow .text ul {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0;
	}

	#sliderRow .text ul li {
		display: inline-block;
		background: #fff;
		width: 13.8%;
		height: 132px;
		clip-path: polygon(
			0 0, 100% 0,
			100% calc(100% - 30px),
			calc(100% - 30px) 100%,
			0 100%
		);
		padding: 25px 15px;
		position: relative;
	}
	
	.svc-list { list-style: disc; padding-left: 1.2rem; }

}

@media  (max-width: 1850px) {
	
	#sliderRow .text ul {
		font-size: 20px;
	}
	
}

@media  (max-width: 1620px) {
	
	#g-navigation .g-main-nav .g-toplevel > li {
		margin: 0 15px;
	}
	
	#g-navigation .menu-button 	.button {
		font-size: 17.5px;
		padding: 15px 60px 15px 25px;
	}
	
	#g-navigation .menu-button .button:after {
		right: 25px;
	}
	
	#sliderRow .text ul {
		font-size: 19px;
	}
		
}


@media  (max-width: 1500px) {	
	
	#g-navigation .menu-button 	.button {
		font-size: 16.5px;
	}
	
	#g-footer {
		font-size: 19px;
	}
	
		#sliderRow .text {
		padding: 0 20px;
	}
	
	#sliderRow .text ul {
		font-size: 17px;
	}
	

}

@media  (max-width: 1400px) {
	
	#g-navigation .g-container {
		max-width: calc(100% - 40px);
	}
	
	#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
		font-size: 19px;
	}
	
	#g-navigation .g-main-nav .g-toplevel > li {
		margin: 0 10px;
	}
	
	#g-navigation .menu-button 	.button {
		font-size: 15.5px;
	}
	
	.card {
		font-size: 24px;
	}
	
	.home .g-container, #g-footer .g-container {
		max-width: calc(100% - 40px);
	}
	
	#about .intro, .intro {
		font-size: 23px;
	}
	
	#g-footer  h3 {
		font-size: 29px;
	}
	
	body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title>a, body .vc_tta-color-white.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title>a {
		font-size: 24px;
		padding-right: 25px;
	}
	
	body .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
		position: absolute;
		right: -20px;
	}

}
 
@media  (max-width: 1300px) {
	
	#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
		font-size: 18px;
	}
	
	#g-navigation .g-main-nav .g-toplevel > li {
		margin: 0 5px;
	}
	
	#g-navigation .menu-button 	.button {
		font-size: 15px;
		padding: 15px 50px 15px 20px;
	}
	
	#sliderRow h1 {
		font-size: 44px;
	}
	
	#g-footer {
		font-size: 17px;
	}
	
	
}
 
@media  (max-width: 1200px) {
	
	h2 {
		font-size: 38px;
	}
	
	#title-wrap h1 {
		font-size: 44px;
	}
	
   #title-wrap {
		margin: 35px 0;
	}
	
   #g-navigation .size-20 {
		flex: 0 40%;
		width: 40%;
	}
	
	.g-offcanvas-toggle {
		left: auto;
		right: 35px;
		top: 40px;
		color: #111;
	}
	
	.home .g-offcanvas-toggle {
		color: #fff;
	}
	
	#sliderRow h1 {
		font-size: 32px;
		padding: 50px 0 50px 285px;
		background: url('images/USG.webp') top left 24px no-repeat;
		background-size: contain;
	}
	
	#locations .text-column {
		width: 85%;
	}
	
	h3 {
		font-size: 27px;
	}
	
	#g-footer  h3 {
		font-size: 22px;
	}
	
	.g-offcanvas-open .g-nav-overlay {
		background: #1a348aa6;
	}

}

@media (max-width: 1199px) {

.svc-carousel { position: relative; }
  
  .svc-track {
    list-style: none;
    margin: 0;
    padding: 0;                 /* JS sets side padding */
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;

    /* smoother snap: only when close, and not too “sticky” */
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
	height: 135px;
	
	--ease-butter: cubic-bezier(.22, 1, .36, 1); /* smooth, plush ease-out */
	
  }
  
  .svc-track::-webkit-scrollbar { display: none; }
  
  .svc-track > li {
    flex: 0 0 auto;
    scroll-snap-align: center;
    transform: scale(.75);
    opacity: .85;
    transition: transform 320ms ease, opacity 320ms ease, box-shadow 320ms ease;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
	transition:
      transform 380ms var(--ease-butter),
      opacity   380ms var(--ease-butter),
      box-shadow 380ms var(--ease-butter);
    will-change: transform;
    backface-visibility: hidden;
  }
  
  .svc-track > li.is-active {
    transform: scale(1);
    opacity: 1;
	background: #161616;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  }
  
   
   
	#sliderRow .text ul li.is-active a {
		color: var(--green);
	}
	
	#sliderRow .text ul li.is-active:before {
		content: '';
		display: block;
		height: 9px;
		width: 100%;
		background: var(--green);
		position: absolute;
		left: 0;
		top: 0px;
		transition: all 520ms cubic-bezier(.2,.7,.2,1);
	}
	
	#sliderRow .text ul li.is-active:after {
		opacity: 1;
	}

  
  .svc-track.is-dragging { 
		cursor: grabbing; 
	}



}
 

@media (max-width: 960px) {
	
	#locations .text-column {
		width: 50%;
		padding: 25px;
	}
	
	#locations .intro {
		width: 100%;
		font-size: 22px;
	}
	
	#sliderRow h1 {
		font-size: 28px;
		padding: 50px 0 50px 225px;
		background: url('images/USG.webp') center left 24px no-repeat;
		background-size: 185px;
	}
	
	#projects .text  h2 {
		margin: 0 25px 0 0px;
	}
	
	#g-footer {
		text-align: center;
	}
	
	#g-footer .g-content {
		margin: 0;
		padding: 5px;
	}
	
	.g-container {
		max-width: calc(100% - 50px);
	}
	
}

@media (max-width: 767px) {	

	h2 {
		font-size: 36px;
	}
	
	#g-navigation .size-20 {
		flex: 0 100%;
		width: 100%;
		margin-bottom: 35px;
	}
	
	#g-navigation .g-logo {
		max-width: calc(100% - 90px);
		display: inline-block;
	}
	
	#g-navigation.sticky .g-logo {
		max-width: 100%;
	}

	#g-navigation  .menu-button {
		text-align: center;
		margin-bottom: 0px;
	}
	
	.home  .ms-overlay-layers .ms-layer {
		top: 160px !important;
	}
	
	#sliderRow {
		align-content: flex-start;
	}
	
	#sliderRow h1 {
		font-size: 28px;
		padding: 165px 15px 0px 15px;
		background: url('images/USG.webp') center top 24px no-repeat;
		background-size: 160px;
		display: block;
	}
	
	#sliderRow h1 strong {
		display: inline;
	}
	
	#sliderRow h2 {
		font-size: 25px;
		margin-bottom: 30px;
	}
	#locations .text-column {
		width: 100%;
	}
	
	#g-navigation.sticky .size-20 {
		flex: 0 50%;
		width: 50%;
		margin-bottom: 0px;
	}
	
	#g-navigation.sticky .menu-button 	.button {
		font-size: 12px;
		padding: 15px 20px 15px 15px;
	}
	
	#g-navigation.sticky .menu-button  {
		text-align: right;
	}
	
	#g-navigation.sticky .menu-button .button:after, .mobile-hide {
		display: none;
	}
	
	#sliderRow .text ul {
		font-size: 16px;
	}
	
	#sliderRow .text ul li:after {
		background: url(images/button_arrows.webp) top right 30px no-repeat;
		font-size: 15px;
		background-size: 17px;
	}
	
	#about {
		padding: 25px 0;
	}
	
	#locations {
		overflow: visible;
	}
	
	#locations .button {
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		width:  auto;
		min-width: 70%;
	}
	
	#locations:after {
		width: 305px;
		height: 220px;
	}
	
	#locations .intro {
		position: relative !important;
	}
	
	#locations .text-column {
		margin: 0px 0 100px;
	}
	
	#locations .upb_video_class, #locations .vc_row, #locations .wpb_column, #locations .wpb_row {
		position: initial;
	}
	
	#projects {
		overflow: visible;
	}
	
	#projects .button.quote   {
		position: absolute;
		bottom: -65px;
		width: auto;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5;
		width:  auto;
		min-width: 70%;
	}
	
	#projects {
		margin: 35px 0 100px 0;
	}
	
}


@media (max-width: 600px) {
	
} 

@media (max-width: 500px) {
	
	.copyright-footer {
		font-size: 15px;
	}
	
	#g-navigation .g-container {
		max-width: calc(100% - 20px);
	}
	
	#sliderRow .text ul li:after {
		display: none;
	}
	
} 

@media (max-width: 450px) {

}

@media (max-width: 400px) {
	
	#sliderRow h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}
	
	#sliderRow .text ul {
		font-size: 13px;
	}
	
	#sliderRow h1 {
		font-size: 24px;
		padding: 150px 15px 0px 15px;
		background: url('images/USG.webp') center top 9px no-repeat;
		background-size: 160px;
		display: block;
	}
	
	#projects .button.quote {
		min-width: 77%;
		font-size: 15px;
	}
	
	.wd-city-meta {
		padding: 20px;
	}
	
	.wd-city-meta h3 {
		font-size: 20px;
	}
	
	.wd-city-field {
		font-size: 18px;
	}
	
	.card:after {
		height: 15px;
		width: 15px;
		right: 10px;
		bottom: 23px;
		font-size: 15px;
		background-size: contain;
	}
	
	.copyright-footer {
		font-size: 12px;
	}
	
	#sliderRow .text {
		margin: 0;
	}
	
}

