html {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	height: 100%;
	background-color: #fff;
	color: #000;
	box-sizing: content-box;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	line-height: 1.4;
	font-family: 'Calibri', sans-serif;
}

#page-container {
	position: relative;
	padding: 0;
	min-height: 100%;
}

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 14;
}

/********************************/
/**************Divs**************/
/********************************/

#logo {
	width: 160px;
}

.social-container {
    position: absolute;
    right: 0;
    top: 15px;
}

.social-link {
    margin-right: 5px;
    color: #4b4d3f;
    font-size: 1.4rem;
    transition-duration: 0.15s;
}

.social-link:hover {
    color: #fff;
    text-decoration: none;
}

.header-slider-overlay {
	position: relative;
	margin-top: -120px;
	z-index: 2;
}

.service {
	height: 100%;
	padding: 10px 15px;
    /*
    background: linear-gradient(
		to bottom right,
		rgba(101, 162, 18, 1),
		rgba(155, 212, 70, 1)
	);
    */
	background: linear-gradient(to bottom right, #b9bd9c, #a2a77c);
	color: #2f2f2f;
	border-radius: 5px;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 300;
	font-style: italic;
}

.service a.link-button {
	background-color: transparent;
	color: #4b4d3f;
	border-color: #4b4d3f;
}

.service a.link-button:hover {
	background-color: #4b4d3f;
	/*color: #b9bd9c;*/
	color: #ffffff;
}

.intro h1,
.intro h3 {
	color: #4b4d3f;
}

.intro h2 {
	color: #4b4d3f;
}

.people {
	padding: 30px 0;
	/*background: linear-gradient(to right, rgb(1, 48, 98), rgb(36, 87, 142));*/
    background: linear-gradient(to right, #4b4d3f, #a7ab82);
	color: #fff;
}

.people h1,
.people h2,
.people h3 {
	color: #fff;
}

.person {
	display: flex;
	width: auto;
	white-space: nowrap;
	align-items: center;
}

.person .img {
	margin: 0 15px 0 0;
	width: 200px;
	height: 200px;
	max-width: 90vw;
	border-radius: 50%;
	background-position: center;
	background-size: cover;
}

.person .txt {
    /*color: #b9bd9c;*/
    color: #fff;
}

.person .social-link {
    /*color: #b9bd9c;*/
    color: #fff;
}

.person .social-link:hover {
    color: #fff;
}

.news {
	padding-top: 15px;
	padding-bottom: 15px;
}

.news h1,
.news h2 {
	color: #4b4d3f;
}

.news h3 {
	color: #4b4d3f;
}

.quote {
	padding: 45px 0;
    /*
	background: linear-gradient(
		to right,
		rgba(101, 162, 18, 1),
		rgba(155, 212, 70, 1)
	);
    */
	background: linear-gradient(to bottom right, #b9bd9c, #a2a77c);
	color: #fff;
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	font-style: italic;
}

/********************************/
/************Footer**************/
/********************************/

footer {
	min-height: 600px;
	color: #282828;
	background-position: center;
	background-size: cover;
}

footer h1,
footer h2,
footer h3 {
	color: #4b4d3f;
}

.footer-align {
	display: inline-block;
	width: 60px;
}

.contact-form input[type='text'],
.contact-form input[type='tel'],
.contact-form input[type='email'],
.contact-form textarea {
	width: 100%;
	margin-bottom: 10px;
	padding: 0 10px;
	line-height: 32px;
	background-color: #fff;
	border: none;
	border-radius: 5px;
}

.contact-form textarea {
	height: calc(2 * 32px + 10px);
	resize: none;
}

.contact-form input[type='submit'] {
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	background-color: #4b4d3f;
	color: #fff;
	border: solid 2px #4b4d3f;
	border-radius: 5px;
	text-decoration: none;
	line-height: 28px;
	font-size: 1rem;
	font-weight: 300;
	font-style: normal;
	transition-duration: 0.15s;
}

.contact-form input[type='submit']:hover {
	background-color: #fff;
	color: #7397bc;
	text-decoration: none;
}

.footer-legal {
	text-align: right;
}

/********************************/
/**********Other Pages***********/
/********************************/

/********************************/
/**************Menu**************/
/********************************/

#nav {
	display: inline-block;
	position: relative;
	width: auto;
	padding: 5px 20px;
	background-color: #4b4d3f;
	color: #fff;
	border-radius: 5px;
}

#nav > ul {
	margin: 0;
	width: auto;
	padding: 0;
	list-style: none;
}

#nav > ul > li {
	display: inline-block;
    position: relative;
	margin: 0 5px;
}

#nav > ul > li > a {
	line-height: 1.6rem;
	font-size: 0.9rem;
	font-weight: 900;
	text-decoration: none;
	transition-duration: 0.15s;
}

#nav > ul > li > a:hover {
	color: #7397bc;
	text-decoration: none;
}

#nav > ul > li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: auto;
    margin: 0;
    padding: 5px 10px;
    background-color: #4b4d3f;
    white-space: nowrap;
    list-style: none;
    text-align: left;
}

#nav > ul > li:hover > ul{
    display: block;
}

#nav > ul > li > ul > li {

}

#nav > ul > li > ul > li > a {
	line-height: 1.6rem;
	font-size: 0.9rem;
	font-weight: 900;
	text-decoration: none;
	transition-duration: 0.15s;
}

#nav > ul > li > ul > li > a:hover {
	color: #7397bc;
	text-decoration: none;
}

#nav .divider {
	display: inline-block;
	margin: 0;
	line-height: 1.6rem;
	font-size: 1rem;
}

#nav .divider:last-of-type{
    display: none;
}

#but-menu {
	display: none;
}

/********************************/
/**************Heads*************/
/********************************/

h1,
h2 {
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: 900;
}

h3 {
	font-size: 1.2rem;
	font-weight: 900;
	font-style: normal;
}

/********************************/
/************Paragraphs**********/
/********************************/

/********************************/
/**************Buttons***********/
/********************************/

a,
a:hover {
	color: inherit;
	cursor: pointer;
}

a.link-button {
	display: inline-block;
	margin: 5px 11px 10px 0;
	padding: 4px 10px 6px 8px;
	background-color: #4b4d3f;
	color: #fff;
	border: solid 2px #4b4d3f;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 300;
	font-style: normal;
	transition-duration: 0.15s;
}

a.link-button svg {
	margin-right: 5px;
}

a.link-button:hover {
	background-color: #fff;
	color: #4b4d3f;
	text-decoration: none;
}

/********************************/
/**************Sliders***********/
/********************************/

#header-slider {
	position: relative;
	padding: 250px 0 300px;
	color: #fff;
	z-index: 1;
}

#header-slider .title {
	color: #c2e6fb;
	line-height: normal;
	text-shadow: 0 0 3px #555;
	font-size: 2.2rem;
	font-weight: 900;
	font-style: italic;
}

#header-slider .sub-title {
	margin-bottom: 15px;
	line-height: normal;
	text-shadow: 0 0 3px #222, 0 0 6px #222;
	font-size: 2rem;
	font-weight: 700;
}

#header-slider-shape {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	fill: #fff;
	z-index: 1;
    display: none;
}

#header-slider.alt {
    margin-bottom: 15px;
    padding: 295px 0 30px;
}

#header-slider.alt #header-slider-shape{
    display: none;
}

#header-slider-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#header-slider-slider > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background-position: center;
	background-size: cover;
    opacity: 0;
    transition-duration: 1s;
}

#header-slider-slider > div:nth-of-type(1) {
    opacity: 1;
}


/********************************/
/**************Colors************/
/********************************/

/********************************/
/********************************/
/********************************/

.underlined {
	text-decoration: underline !important;
}

.intro ul {
    margin-left: -25px;
}

.clear {
    width: 100%;
    clear: both;
}

.intro a {
    text-decoration: underline;
}

.textDiv {
    margin: 10px auto;
}

.grecaptcha-badge{
    visibility: collapse !important;  
}

@media only screen and (min-width: 1600px) {
    #header-slider {
        padding: 300px 0 400px;
    }
}

@media only screen and (max-width: 1399px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 991px) {
	.person {
		flex-direction: column;
		text-align: center;
	}

	.person .img {
		margin: 0 0 15px 0;
	}

	.footer-legal {
		color: #fff;
	}
}

@media only screen and (max-width: 767px) {

    header {
    	padding: 10px 0;
    }

	#logo {
		display: block;
		margin: 0 auto;
		width: 80px;
	}

	#nav {
		display: block;
		width: 100%;
		padding: 5px 20px;
        padding: 0px 20px !important;
		text-align: center;
	}

	#nav > ul {
		width: 100%;
		height: 0;
		overflow: hidden;
	}

	#nav > ul > li {
		display: list-item;
		margin: 0;
	}

	#nav > ul > li > a {
		line-height: 1.6rem;
		font-size: 0.9rem;
	}

	#nav > ul > li > a:hover {
	}

	#nav > ul > li > ul {
        display: block;
        position: static;
		width: 100%;
		height: 0;
        padding: 0;
		overflow: hidden;
        text-align: center;
	}

	#nav > ul > li > ul > li {
		display: list-item;
		margin: 0;
	}

	#nav > ul > li > ul > li > a {
	}

	#nav > ul > li > ul > li > a:hover {
	}

	#nav .divider {
		display: none;
	}

	#but-menu {
        position: absolute;
        top: 10px;
        right: 10px;
		display: inline-block;
		margin: 5px 0;
		width: 30px;
		cursor: pointer;
		transition-duration: 0.15s;
	}

	#but-menu:hover {
		transform: scale(1.1);
	}

	#header-slider {
		padding: 150px 0 200px;
	}

	#header-slider .title {
		font-size: 1.8rem;
	}

	#header-slider .sub-title {
		font-size: 1.4rem;
	}

	.quote {
		padding: 30px 0;
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 575px) {
}

@media only screen and (max-width: 400px) {
}
