@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body
{
	width:100%;
	padding:0px;
	margin:0px;
	overflow-x:hidden;
	position:relative;
	
	font-family: "Work Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	
	color: #fff;
	font-size: 19px;
}

*
{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

html
{
	width:100%;
	padding:0px;
	margin:0px;
	height: 100%;
	overflow-y:scroll;
}

a
{
	text-decoration:none;
	color:inherit;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 300ms ease-out 0s;
    -moz-transition: all 300ms ease-out 0s;
    -o-transition: all 300ms ease-out 0s;
    transition: all 300ms ease-out 0s;
}

img
{
	max-width: 100%;
}

.top_bar
{
	background: #00946e;
	color: #fff;
	text-align: center;
	padding: 20px 40px;
	font-size: 30px;
}

.main
{
	background-image: url('../images/bg.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	padding-top: 5%;
	padding-bottom: 5%;
	padding-left: 30px;
	padding-right: 30px;
}

.page
{
	height: 100%;
	display: flex;
	flex-direction: column;
}

.logo
{
	text-align: center;
	margin-bottom: 40px;
}

p
{
	font-weight: 300;
	text-align: center;
	margin-top: 0px;
}

.main_middle
{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.services
{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	margin-top: 40px;
}

.services_green
{
	color: #00946e;
	text-transform: uppercase;
	font-size: 27px;
	font-weight: 600;
	
}

.services_list
{
	border-left: solid 3px #00946e;
	margin-left: 30px;
	padding-left: 30px;
}

.services_list ul
{
	list-style: none;
	display: flex;
	flex-direction: column;
	margin: 0px;
	padding: 0px;
}

.services_list ul > li
{
	display: flex;
	align-items: center;
}

.services_list ul > li:before
{
	content: "+";
	color: #00946e;
	margin-right: 10px;
	font-size: 30px;
	font-weight: 700;
}

.mail_box,
.tel_box,
.rbq_box
{
	text-align: center;
}

a.btn_mail
{
	background: #00946e;
	color: #fff;
	padding: 10px 10px 10px 10px;
	position: relative;
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}

a.btn_mail > i
{
	font-size: 30px;
}

a.social_facebook > i
{
	font-size: 40px;
	color: #00946e;
}

.tel_box
{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.phone_link
{
	font-size: 24px;
	font-weight: 500;
}

b
{
	font-weight: 700;
}

@media (max-width: 1600px)
{
	.top_bar
	{
		font-size: 24px;
	}
}

@media (max-width: 1200px)
{
	.top_bar
	{
		font-size: 20px;
	}
}

@media (max-width: 800px)
{
	.top_bar
	{
		font-size: 18px;
	}
	
	.services_green
	{
		font-size: 23px;
	}
	
	.services_list
	{
		margin-left: 15px;
		padding-left: 15px;
	}
	body
	{
		font-size: 16px;
	}
}