/* Global */

* {
	margin: 0;
	padding: 0;
	border: none;
}

h1, h2, h3 {
    font-family: Roboto, 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.screen_reader_shortcut {
    position: fixed;
    top: -1000em;
    color: #FFF;
    background-color: #527a7a;
}

.screen_reader_shortcut:focus {
    display: block;
    top: 6px;
    left: 6px;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 15px 23px 14px;
    background-color: #527a7a;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    line-height: normal;
    -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    text-decoration: none;
    outline: 2px solid #FFF;
    color: #FFF;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    background-color: #FFF;
    color: #000;
}

a, a:focus, a:visited, a:hover {
	color: inherit;
	background-color: inherit;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: #000;
	background-color: #FFF;
}

img {
	max-width: 100%;
	height: auto;
}

#header {
	background-color: white;
	padding: 1vw 1vw;
	max-width: 100%;
	color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
	
}

#header .logo {
	display: flex;
	flex-direction: row;
	flex-basis: 25%;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	text-decoration: none;
	font-family: inherit;
}

#header .logo img {
	padding: .5vw .5vw;
	max-height: 40px;
	margin-right: 10px;
}

#footer{
	margin-top: -40px;
    z-index: 999;
    position: relative;
}

#footer .footer-container{
	padding-left: 10vw;
	padding-right: 10vw;
	margin-top: 50px;
}

#footer .footer_text{
	width: 300px;
	margin-bottom: 20px;
}

#footer .logo {
	display: flex;
	flex-direction: row;
	flex-basis: 25%;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	text-decoration: none;
	font-family: inherit;
}


#header .mobile_nav {
	display: none;
}

#header .mobile_nav button #burger{
	padding-top: 25px;
}

#header .mobile_nav button.active #burger{
	padding-top: 20px;
}

#header .desktop_nav {
	display: flex;
	flex-direction: row;
    flex-basis: 100%;
}

#header nav#navbar {
    display: flex;
    flex-basis: 75%;
    align-items: center;
	text-align: center;
	min-width: 100%;
}

#header #navbar div {
	display: flex;
	flex-basis: 100%;
	list-style: none;
}

#header #navbar div div {
	display: inline-block;
}

#header #navbar div div .nav_link {
	text-decoration: none;
	position: relative;
	font-family: inherit;
	font-size: 1.5vw;
}

#header #navbar div div .nav_link:after {
	background-color: #527a7a;
	height: 2px;
	width: 0;
	content: ' ';
	position: absolute;
	bottom: -5px;
    left: 0;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#header #navbar div div .nav_link:hover:after {
	width: 100%;
}

#header .cta,
#footer .cta {
	display: flex;
    flex-basis: 25%;
    justify-content: center;
	padding: 10px 25px;
}

.do_not_sell {
	font-family: inherit;
	text-align: left;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
	font-family: inherit;
	position: relative;
    z-index: 1;
}

#main h1 {
	margin-bottom: 5vw;
}

#main_2 {
	background: white;
	color: black;
	text-align: left;	
	font-family: inherit;

}

#main_2 h1 {
	font-size: 3.3vw;
}

.cta {
	border: 2px solid #14C993;
	background: #14C993;
	color: white;
	border-radius: 5px;
	text-decoration: none;
	max-width: 200px;
	text-transform: uppercase;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	font-family: inherit;
	display: inline-block; 
	position: absolute;
}

.cta:visited {
	color: white;
}

.cta:hover {
	background-color: #6b9d9d;
}


.cta2 {
	border: 2px solid #4558FF;
	background: #4558FF;
	color: white !important;
	border-radius: 3px;
	text-decoration: none;
	width: 150px;
	/* height: 40px; */
	text-transform: uppercase;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	font-family:inherit;
	display: inline-block;
	padding-top: 5px;
    padding-bottom: 5px;
}

.cta2:hover {
	color: #000 !important;
}


#footer {
    display: flex;
    flex-direction: column;
	font-size: 1rem;
	color: white;
	text-align: left;
	font-family: inherit;
	background-image: url(images/Rectangle-60.png);
	background-repeat: no-repeat;
	background-size: cover;
}

#footer table.input-group{
	display: inline-block;
}

#footer p {
	text-align: left;
}

#footer input.form_box{
	font-size: 2.3vw;
	font-family: inherit;
	color:gray;
	border-radius: 3px;
}

#footer input.cta{
	color:white;
	padding: .7vw 1.5vw;
}

#footer div.copyright{
	text-align: right;
}

#footer img.bulb {
    max-height: 35px;
	margin-bottom: 20px;
}

body.page-home .home-top-text{
	background-image:url('images/highlight.png'); 
	background-repeat:no-repeat; background-size: 85%; 
	position:absolute; 
	margin-top: 7vh; 
	margin-left:26vw;
}

@media (max-width: 767px){
	
	body.page-home .home-top-text{
		margin-top: 3vh;
	}
	

	#header {
		display: block;
		flex-direction: column;
		padding: 1vh 25px 1vh;
		position: inherit;
		min-height: 6vh;
		position: sticky;
		z-index: 9999;
		position: sticky;
		position: -webkit-sticky;
		top: 0;
		left: 0;
		z-index: 9999;
		-webkit-transform: translateZ(2px);
		transform: translateZ(2px);
	}
	
	#header .desktop_nav {
		display: none;
	}
	
	#header .mobile_nav {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: center;
		transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
		position: absolute;
		z-index: 45;
		left: 0;
		background: #fff;
	}
	
	#header .mobile_nav .nav_button {
		margin-top: -64px; 
		margin-right: 75vw;
	}

	#header .nav_link_mobile {
		text-decoration: none;
		position: relative;
		font-family: inherit;
		font-size: large;
	}
	
	.hamburger_icon {
		padding-top: 25px;
	}

	.bar1, .bar2, .bar3 {
		height: 4px;
		background-color: #547D7D;
		margin: 4px 0;
		transition: 0.3s;
		width: 30px;
	}
	
	.change .bar1 {
		-webkit-transform: rotate(-45deg) translate(-5px, 4px);
		transform: rotate(-45deg) translate(-5px, 4px);
		background-color: #547D7D;
	}

	.change .bar2 {opacity: 0;}

	.change .bar3 {
		-webkit-transform: rotate(45deg) translate(-7px, -7px);
		transform: rotate(45deg) translate(-7px, -7px);
		width: 30px;
		background-color: #547D7D;
	}
	
	#header #navbar_mobile {
		text-align: center;
		display: none;
		transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
		overflow: hidden;
		padding-bottom: 30px;
	}
	
	#header #navbar_mobile div {
		list-style: none;
		/* margin-left: 12vw; */
	}
	
	#header #navbar_mobile div div {
		width: 100%;
		padding: 20px 0;
		font-size: 1.125rem;
	}
	
	#header #navbar_mobile div div .nav_link {
		text-decoration: none;
	}
	
	.header_cta.mobile {
		margin: 20px;
		margin-left: -7px;
		height: 45px;
	}
	
	.header_cta.mobile .cta {
		background-color: #6b9d9d;
		color: #000;
	}
	
	#footer .footer-container{
		text-align: center;
	}
	
	#footer .footer_text{
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	
	#footer .cta{
		font-size: 1rem !important;
		margin-left: auto;
		margin-right: auto;
	}
	
	#footer div.copyright{
		text-align: center;
		margin-right: 0px !important;
		margin-top: 20px;
	}

}

@media (min-width: 768px) and (max-width: 1100px){
	#header .desktop_nav {
		display: block;
		position: relative;
	}
	
	#header .header_cta {
		margin-top: 20px;
		position:fixed ;

	}
}

@media (min-width: 768px){
	#header .desktop_nav {
		display: block;
		position: relative;
		top: 5px;
	}	
}

/* Home Page */

.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	margin: 40px 0;
}

.hero_left {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
}

.hero_left .hero_text {
    color: #527a7a;
    font-size: 2.2rem;
    font-family: inherit;
    margin-bottom: 25px;
	position: relative;
}

.hero_left .hero_text:before {
    content: ' ';
    position: absolute;
    top: -95px;
    left: -50px;
    background: url(images/Go-Live-in-A-Week-Badge.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 85px;
}

.hero_left .hero_subtext {
    margin-bottom: 40px;
}

.hero_right {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
}


.top_banner .banner_text {
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}

.top_banner .banner_text:after {
	content: ' ';
	position: absolute;
	background-image: url('images/platform-arrow-down.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 5vw;
	height: 10vw;
	left: 50%;
	margin-left: -4vw;
	top: 6vw;
}

.top_banner .banner_text.no_arrow:after {
	display: none;
}

.top_banner svg{
	display: block;
}

#integration_partners {
	text-align: center;
	background-color: #f8f7f7;
	padding: 100px 0;
	width: 100%;
}

#integration_partners img {
	max-width: 42%;
	margin: 0 auto 50px;
}

#integration_partners h2 {
	font-size: 2.5rem;
	margin-bottom: 35px;
}

.a11y-slider, .a11y-slider-container {
	max-width: 100%;
}

.slider {
	display: flex;
	list-style: none;
}

.slider > * {
	width: 100%;
	flex: 0 0 auto;
}

.slider li {
    text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

button.a11y-slider-prev, button.a11y-slider-next {
	position: absolute;
    top: 160px;
	width: 60px;
    height: 60px;
	cursor: pointer;
	background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;  
	background-color: transparent;
}

button.a11y-slider-prev {
    left: 12%; 
	background-image: url(images/prev_arrow.png);
    
}

button.a11y-slider-next {
    right: 12%;
	background-image: url(images/next_arrow.png);
}

.comment_top {
	text-transform: uppercase;
	font-size: 1.5rem;
	margin: 60px auto 30px;
}

.comment_middle {
	font-size: 2.5rem;
	color: #00556C;
	margin: 25px auto; 
	font-family: inherit;
}

.comment_middle span {
	position: relative;
	display: inline-block;
}

.comment_middle span:before {
    content: ' ';
    width: 150px;
    height: 70px;
    left: -25px;
    top: -10px;
    background: url(images/Circle-Badge.png);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

.comment_cta {
	margin: 25px auto 75px;
}

/* Platform page */

.top_banner {
    width: 100%;
    text-align: left;
    /* background-color: white; */
	color: black;
	font-size: 1.25rem;
	font-family: inherit;
}

.platform_list {
    max-width: 1200px;
    margin: 80px auto 50px;
}

.platform_list ul {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	-ms-column-count: 2;
	-o-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 2rem;
	-moz-column-gap: 2rem;
	-ms-column-gap: 2rem;
	-o-column-gap: 2rem;
	column-gap: 2rem;
	padding: 25px 0;
	list-style: none;
    white-space: pre-line;
	font-size: 1.15rem;
}

.platform_list ul li {
	margin: 0 0 25px 0;
	display: flex;
	flex-direction: row;
	break-inside: avoid-column;
}

.platform_list ul li .number strong {
    background: url(images/Teal-Circle.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
    padding: 5px 30px;
	margin-right: 20px;
}

/* Contact Page */

.contact_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1200px;
	padding: 50px 0;
}

.contact_left, .contact_right {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
	position: relative;
}

.contact_left:before {
	content: ' ';
	background-image: url(images/Go-Live-in-A-Week-Badge.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 200px;
	height: 90px;
	position: relative;
	top: 0;
	left: 50%;
	margin-left: -140px;
}

.contact_left h2 {
	margin: 30px 0 15px 25px;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: normal;
}

.contact_left .contact_list {
	list-style: none;
}

.contact_left .contact_list li {
    margin: 20px 0;
	display: flex;
	flex-direction: row;
}

.contact_left .contact_list li .checkmark {
	background-image: url(images/checkmark-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30px;
	height: 25px;
	display: flex;
	flex-direction: column;
	flex-basis: 8%;
}

.contact_left .contact_list li .list_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-basis: 92%;
}

.contact_right #contact_form {
	width: 100%;
}

.contact_right #contact_form input {
	border: 1px solid #000;
	padding: 10px;
	margin-bottom: 20px;
}

.contact_right #contact_form .form_top {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}

.contact_right #contact_form .form_left, .contact_right #contact_form .form_right {
	display: flex;
	flex-direction: row;
    flex-basis: 45%;
	justify-content: space-evenly;
}

.form_left div, .form_right div {
	display: flex;
	flex-direction: column; 
	align-items: center;
}

.form_bottom {
    margin: 25px 0;
}

.form_bottom legend {
	text-align: center;
}

ul.checkbox_list {
    text-align: center;
}

.checkbox_list li {
    display: inline-block;
    text-align: center;
    margin: 25px;
}

#contact_form input.cta {
	background-color: #FFF;
	padding: 10px 45px;    
	margin: 0 auto;
    display: block;
}

#contact_form input.cta:hover {
	background-color: #6b9d9d;
	cursor: pointer;
}

#contact_form label {
    margin-bottom: 5px;
}

/* Sitemap */


div.sitemap {
	list-style: none;
	font-family: inherit;
	background-color: #13566B;
	color:white;
}

div.sitemap2 {
	list-style: none;
	font-family: inherit;
	background-color: #13566B;
	color:white;
	display: flex;
}

ul.sitemap1 {
	list-style: none;
	font-family:inherit;
	background-color: #13566B;
	color:white;
}

ul.sitemap h1 {
	font-family: inherit;
	font-size: 3.2vw;
}

ul.sitemap li {
	margin: 10px;
}


@media (max-width: 767px) {
	
	.toCenter {
		font-size: 3.7vw;
		text-align: center;
		/* the first two elements don't work with text-align for some reason so this was my solution */
		margin-left: 22vw;
		margin-right: auto;

	}

	.toCenter2 {
		font-size: 3.7vw;
		text-align: center;
		/* the first two elements don't work with text-align for some reason so this was my solution */
		margin-left: 30vw;
		margin-right: auto;

	}

	#partnersImage {
		content: url("images/Platform-BULB-Integration-Partners-Logos-Mobile.png");
	}
	
	/* Global */
	
	.desktop_only {
		display: none;
	}
	
	.mobile_only {
		display: block;
	}
	
	#footer {
		padding: 0vw;
	}
	
	/* Home page */ 
	
	.hero {
		flex-direction: column;
		text-align: center;
	}
	
	.hero_left {
		margin-top: 75px;
		padding: 10px;
	}
	
	.hero_left .hero_text:before {
		left: -5px;
	}
	
	.hero_right {
		margin-top: 50px;
	}
	
	.hero_left, .hero_right {
		flex-direction: column;
		flex-basis: 100%;
	}
	
	#integration_partners {
		padding: 60px 0;
	}
	
	#integration_partners img {
		max-width: 90%;
	}
	
	button.a11y-slider-prev, button.a11y-slider-next{
		position: absolute;
		height: 100%;
		width: 40px;
		top: 0;
	}
	
	button.a11y-slider-prev {
		left: 1%;
	}
	
	button.a11y-slider-next {
		right: 1%;
		left: unset;
	}
	
	.comment_top {
		margin: 50px auto 0px;
		font-size: 1.25rem;
		padding: 0 10px;
	}
	
	.comment_middle {
		margin: 25px auto;
		font-size: 2rem;
		padding: 0 20px;
	}
	
	.comment_middle span:before {
		width: 110px;
		height: 85px;
		left: -19px;
		top: -5px;
	}
	
	.comment_cta {
		margin: 25px auto 50px;
	}
	
	/* Platform page */
	
	.top_banner h2 {
		font-size: 2.5rem;
	}
	
	.top_banner .banner_text {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.platform_list {
		padding: 15px 15px 15px 0;
		margin-bottom: 0;
	}
	
	.platform_list ul {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		-ms-column-count: 1;
		-o-column-count: 1;
		column-count: 1;
	}
	
	.top_banner .banner_text:after {
		top: 100px;
	}
	
	/* Get Started */
	.contact_left:before {
		margin-left: -100px;
	}
	
	.contact_content {
		flex-direction: column;
	}
	
	.contact_left, .contact_right {
		flex-direction: column;
		padding: 15px;
	}
	
	.contact_right #contact_form .form_left, .contact_right #contact_form .form_right {
		flex-direction: column;
		align-items: center;
		flex-basis: 100%;
	}
	
	.contact_left .contact_list li .checkmark {
		flex-basis: 12%;
	}
	
	.contact_left .contact_list li .list_text {
		flex-basis: 88%;
	}
	
	.form_left div, .form_right div {
		align-items: flex-start;
		width: 100%;
	}
	
	.contact_right #contact_form input {
		width: 90%;
	}
	
	.contact_right #contact_form input[type="submit"] {
		width: 100%;
		max-width: 100%;
	}
}


@media (min-width: 768px) {
	.desktop_only {
		display: block;
	}
	
	.mobile_only {
		display: none;
	}
	
	button.a11y-slider-prev, button.a11y-slider-next{
		opacity: 1;
	}
	
	.top_banner .banner_text:after {
		top: 75px;
	}
}

/* Case Studies */
.row {
	display: flex;
}

/** resturant photo **/ 
.column {
	flex: 50%;
	object-fit: cover;
}
.column img {
	position: relative;
	width: 100%;
	height: 100%;
	filter: brightness(55%);
	opacity: 0.9;
}

.column .bottom-left_restaurant {
	position: absolute;
	bottom: 10px;
	left: 20px;
	font-size: large;
	color: white;
	word-wrap: break-word;
	width: 620px;
}

	
.column .centered_restaurant {
	position: absolute;
	bottom: 175px;
	left: 20px;
	font-size:xx-large;
	color: white;
	word-wrap: break-word;
	width: 795px;
}

/** glass photo **/
.column1 {
	flex: 50%;
	object-fit: cover;
}

.column1 img {
	width: 100%;
	height: 100%;
	position: relative;
	filter: brightness(55%);
	opacity: 0.9;
}

.column1 .bottom-left_glasses{
	position: absolute;
	bottom: 10px;
	left: 880px;
	font-size: large;
	color: white;
	word-wrap: break-word;
	width: 620px;
}

	
.column1 .centered_glasses{
	position: absolute;
	bottom: 150px;
	left: 880px;
	font-size:xx-large;
	color: white;
	word-wrap: break-word;
	width: 620px;
}


.top_image {
	position: relative;
	width: 100%;
	height: 100%;
	filter: brightness(55%);
	opacity: 0.9;
}

.top_image .bottom-left_pie {
	position: absolute;
	bottom: 400px;
	left: 20px;
	font-size: large;
	color: white;
	width: 777px;
	word-wrap: break-word;
}

	
.top_image .center_pie {
	position: absolute;
	top: 350px;
	left: 20px;
	font-size:xx-large;
	color: white;
}

.resources_container{
	font-size: 2.0vw;
	margin-left: 5vw;
}

.prices_container{
	display: flex;
	flex-wrap: wrap;
	background-color: #14C993;
	width: 100%;
	justify-content: center;
	padding-bottom: 10vh;
}

.prices_container .do_not_sell{
	background-color: #F5F8FD; 
	border-radius: 15px;
	margin-left: 0; 
	max-width: 450px;
	width: 40%;
	margin-top:0;
	flex: 1;
	margin-left: 5vw;
    margin-right: 5vw;
	position: relative;
}

.prices_container hr{
	height: 2px;
	background: #000;
	margin: 3vw 6vw;
}

.prices_container .pricebox-content{
	padding: 3vw 0vw 4.5vw 0vw;
}

.prices_container .pricebox-features{
	padding: 0vw 4vw 20px 4vw;
}

.prices_container .pricebox-features h3{
	margin-bottom: 10px;
}

.prices_container .pricebox-features ul{
	list-style: none;
	
}

.prices_container .pricebox-features ul li{
	padding-bottom: 20px;
}

.prices_container .pricebox-features strong{
	text-transform: uppercase;
	color: #14C993;
}

.prices_container .pricebox-content .cta2{
	position: absolute;
    bottom: 3vw;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

@media (max-width: 1000px) {
	.prices_container .do_not_sell{
		max-width: 325px;
	}
}

@media (max-width: 767px) {
	.prices_container{
		display: block;
	}
	
	.prices_container .do_not_sell{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

.resource_text {
	margin-left: 8vw;
	margin-right:8vw;
	margin-top:2.5vh;
	font-size: 2.3vw;
	line-height: 1.5;
}

.top-case-studies{
	z-index: 1;
    background-size: cover;
    color: white;
    height: 56vw;
    width: 100%;
    position: relative;
	height: 65vw;
}

.top-case-studies .top-case-studies-hero{
	position: relative;
	height: 65vw;
	background-size: cover;
}

.top-case-studies .tcs-text-background{
	background: url('/images/Rectangle-25.png') transparent;
	z-index: 1;
	background-size: cover; 
	color:white; 
	width:100%; 
	position: absolute;
	padding-top: 6vh;
    padding-bottom: 3vh;
	bottom: 0;
}


.top-case-studies .tcs-text{
	color: #FFF;
	font-size: 2vw;
	line-height: normal;
	margin-left: 8vw;
	border-radius: 1vw;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-right: 8vw;
}



.bottom-case-studies{
	color: #000;
	font-size: 2vw;
	font-weight: 400;
	line-height: 169.023%;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	padding-top: 100px;
	padding-bottom: 50px;
	padding-left: 8vw;
	padding-right: 25vw;
	position: relative;
}

.bottom-case-studies p{
	padding-bottom: 50px;
}

@media (max-width: 767px) {
	.top-case-studies{
		height: 90vw;
	}

	.top-case-studies .top-case-studies-hero{
		height: 90vw;
		background-position: center;
	}
	
		
	.top-case-studies .tcs-text {
		font-size: 1rem;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	
	.bottom-case-studies{
		padding-top: 30px;
		padding-right: 8vw;
	}
	
	.bottom-case-studies p{
		padding-bottom: 20px;
		font-size: 1rem;
		line-height: 1.5rem;
	}

}

.inquiry-section,
.inquiry-thank-you-section{
	background-color: #14C993;
	width: 100%;
	justify-content: center;
	padding-bottom: 80px;
}

.inquiry-section .inquiry-container{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

.inquiry-section .inquiry-content{
	width: 36%;
	margin-left: 2%;
	margin-right: 2%;
}

.inquiry-section .inquiry-content h2{
	margin-bottom: 10px;
}

.inquiry-section .inquiry-form{
	width: 56%;
	margin-left: 2%;
	margin-right: 2%;
}

.form-errors{
	width: 92%;
	margin-left: 4%;
	margin-right: 4%;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.inquiry-section .inquiry-form .form_top,
.inquiry-section .inquiry-form .form_footer{
	display: flex;
}

.inquiry-section .inquiry-form .form_left,
.inquiry-section .inquiry-form .form_right{
	width: 42%;
	margin-left: 4%;
	margin-right: 4%;
}

.inquiry-section .inquiry-form label{
	display: none;
}

.inquiry-section .inquiry-form input{
	padding: 10px;
}


.inquiry-section .inquiry-form input {
    padding: 15px 20px;
    width: 90%;
    margin-bottom: 20px;
    border-radius: 10px;
	font-size: 1rem;
}

.inquiry-section .inquiry-form .checkbox_list li{
	margin: 10px 10px 0px 10px;
}

.inquiry-section .inquiry-form input[type=radio]{
	width: 25px;
	height: 25px;
}

.inquiry-section .inquiry-form .form_bottom{
	margin-top: 0px;
	margin-bottom: 20px;
}

.inquiry-section .inquiry-form .form_bottom input{
	margin-bottom: 5px;
	cursor: pointer;
}

.inquiry-section .inquiry-form .form_bottom label{
	display: inline-block;
	cursor: pointer;
}

.inquiry-section .inquiry-form input[type=submit]{
	background-color: #000!important;
	float: right;
	position: static;
	margin: 15px 0 !important;
}


.inquiry-thank-you-section .inquiry-thank-you-container{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.inquiry-thank-you-section .inquiry-thank-you-content{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.inquiry-thank-you-section .inquiry-thank-you-content h2{
	margin-bottom: 10px;
}

@media (max-width: 1199px) {
	.inquiry-section .inquiry-content{
		width: 26%;

	}

	.inquiry-section .inquiry-form{
		width: 66%;
	}
}

@media (max-width: 767px) {
	.inquiry-section .inquiry-container{
		display: block;
	}
	
	.inquiry-section .inquiry-content{
		width: 88%;
		margin-left: 6%;
		margin-right: 6%;
		margin-top: 20px;
	}
	
	.inquiry-section .inquiry-form{
		width: 96%;
	}

	
	.inquiry-section .inquiry-content{
		margin-bottom: 40px;
	}
	
	.inquiry-section .inquiry-form .form_top, 
	.inquiry-section .inquiry-form .form_footer{
		display: block;
	}
	
	.inquiry-section .inquiry-form .form_left, 
	.inquiry-section .inquiry-form .form_right{
		width: 92%;
		text-align: center;
	}
	
	.inquiry-section .inquiry-form input[type=submit]{
		float: none;
	}
	
	.form_left div, 
	.form_right div{
		align-items: center;
	}
	
	.inquiry-section .inquiry-form input[type=submit]{
		margin: 30px auto !important;
	}
}


.sitemap_container{
	font-size: 2.0vw;
	margin-left: 5vw;
	padding-bottom: 5vw;
}

.sitemap_text {
	margin-left: 8vw;
	margin-right:8vw;
	margin-top:2.5vh;
	font-size: 2.3vw;
	line-height: 1.5;
}

.sitemap_text > ul{
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}

.sitemap_text ul ul{
	margin-left: 5vw;
}

@media (max-width: 767px){
	.sitemap_container{
		padding-bottom: 15vw;
	}
}