:root {
	--clip-width: 1260px;

	--light-color: #FFFFFF;
	--dark-color: #000000;
	--gray-blue-color: #707483;
	--gray-color: #707070;
	--gray-light-color: #CBCBCB;
	--blue-light-color: #52A4ED;
	--blue-dark-color: #35475D;
	--dark-light-color: #3C3C3C;

	--light-back-color-f3: #F3F3F3;
	--light-back-color-fa: #FAFAFA;

	--common-font: 'Lato', sans-serif;
	--title-font: 'Playfair Display', serif;

	--logos-opacity: 0.7;
}

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
	font-family: var(--common-font);
}

body {
	height: 100%;
	width: 100%;
	min-width: 360px;
	margin: 0px;
	background-color: var(--light-color);
}

.clip {
	max-width: var(--clip-width);
	margin: auto;
	padding: 0px 40px;
}

.overlap {
	margin-top: -1px;
	padding-top: 1px;
}

a {
	text-decoration: none;
	color: var(--blue-light-color);
}

a:visited {
	color: var(--blue-dark-color);
}

h1, h2 {
	color: var(--blue-dark-color);
	font-family: var(--title-font);
	font-size: 56px;
	line-height: 68px;
	letter-spacing: 0px;
	font-weight: normal;
	margin: 20px 0px;
}

h2 {
	font-size: 44px;
	line-height: 50px;
	font-weight: normal;
	margin: 20px 0px;
}

@media screen and (max-width: 550px) {
	h1 {
		font-size: 40px;
		line-height: 47px;
	}

	h2 {
		font-size: 36px;
		line-height: 30px;
	}
}

@media screen and (max-width: 400px) {
	h1 {
		font-size: 30px;
		line-height: 37px;
	}

	h2 {
		font-size: 16px;
		line-height: 20px;
	}
}

h3 {
	font-size: 31px;
	line-height: 25px;
	color: var(--blue-dark-color);
	font-family: var(--title-font);
	font-weight: normal;
	margin: 20px 0px;
}

h4, h5 {
	color: var(--blue-dark-color);
	font-weight: normal;
	font-family: var(--title-font);
	margin: 20px 0px;
}

h6 {
	font-size: 20px;
	line-height: 23px;
	letter-spacing: 1px;
	color: var(--gray-color);
	text-transform: uppercase;
	font-weight: normal;
	margin: 20px 0px;
}

section {
	margin: 80px auto 0px auto;
}

@media screen and (max-width: 480px) {
	section {
		margin: 40px auto 0px auto;
	}
}

.gauzy {
	position: relative;
	z-index: 0;
}

.gauzy:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: var(--light-back-color-fa);
	opacity: 0.8;
	z-index: -1;
}
/* ----------------------------------------------------------------[ button ] */
.button {
	display: inline-block;
	border: 1px solid var(--dark-color);
	color: var(--dark-color);
	border-radius: 20px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.8px;
	/* origin: 16px/19px */
	font-size: 14px;
	line-height: 17px;
	padding: 11px 23px 10px 23px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: all 0s;
	cursor: default;
	background: none;
}

.button.gray {
	border: 1px solid var(--gray-blue-color);
	color: var(--gray-blue-color);
}

.button.light {
	border: 1px solid var(--light-color);
	color: var(--light-color);
}

.button.blue-light {
	border: 1px solid var(--blue-light-color);
	color: var(--blue-light-color);
}

.button.blue-dark {
	border: 1px solid var(--blue-dark-color);
	color: var(--blue-dark-color);
}

.button:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0px;
	height: 100%;
	background: var(--blue-light-color);
	transition: all 0s;
	z-index: -1;
	border-radius: 20px;
}

.button:hover:not(.current) {
	color: var(--light-color);
	border-color: rgba(0, 0, 0, 0) !important;
	transition: all .3s;
}

.button:hover:not(.current):before {
	width: 100%;
	transition: all .3s;
}

.button.solid {
	border: none;
	color: var(--light-color);
	background: var(--gray-color);
}

.button.solid.blue-light {
	background: var(--blue-light-color);
}

.button.solid:before {
	background: var(--light-color);
}

.button.solid:hover {
	background: none;
	color: var(--blue-dark-color);
}

.form-field-button {
	background-color: var(--light-color);
	border: 1px solid var(--dark-color);
	border-radius: 20px;
	height: 40px;
	display: flex;
	align-items: center;
}

.form-field-button input {
	font-size: 16px;
	line-height: 21px;
	border: none;
	flex-grow: 1;
	margin-left: 30px;
	margin-right: 10px;
	width: 100%;
}

.form-field-button input::placeholder {
	color: var(--gray-light-color);
}

.form-field-button button {
	border-radius: 20px;
	text-transform: uppercase;
	background: none;
	color: var(--dark-color);
	border: none;
	font-size: 16px;
	height: 40px;
	padding: 0px 30px;
	letter-spacing: 0.8px;
	position: relative;
	z-index: 1;
	transition: all 0s;
}

.form-field-button button:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0px;
	height: 100%;
	background: var(--dark-color);
	transition: all 0s;
	z-index: -1;
	border-radius: 20px;
}

.form-field-button button:hover {
	color: var(--light-color);
	transition: all .3s;
}

.form-field-button button:hover:before {
	width: 100%;
	transition: all .3s;
}

.menu ul {
	margin: 0px;
	padding: 0px;
}

.menu ul li {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	list-style-type: none;
}
/* ------------------------------------------------------------------[ link ] */
.link {
	position: relative;
	padding-left: 25px;
	text-transform: uppercase;
	color: var(--blue-dark-color);
	letter-spacing: 0.8px;
	font-size: 16px;
	display: inline-block;
}

.link:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0px;
	top: 3px;
	border-radius: 15px;
	background: var(--blue-light-color);
	display: block;
}
/* ------------------------------------------------------------------[ form ] */
.form {
	width: 100%;
}

.form .form_field {
	margin-bottom: 20px;
}

.form .form_field .field_label {
	font-size: 20px;
	line-height: 23px;
	padding: 10px 15px;
	color: var(--blue-dark-color);
}

.form .form_field .field_input {
	border-style: solid;
	border-color: var(--blue-light-color);
	border-width: 0px 0px 0px 16px;
}

.form .form_field .field_input input,
.form .form_field .field_input textarea,
.form .form_field .field_input select {
	background: var(--light-color);
	border: 2px solid var(--blue-dark-color);
	margin: 0px 0px 0px -1px;
	padding: 10px;
	width: calc(100% - 1px);
	display: block;
}

.form .form_field .field_input select:required:invalid {
	color: gray;
}

.form .form_field .field_input select option {
	color: black;
}

.form .invalid {
	position: relative;
}

.form .invalid input,
.form .invalid textarea,
.form .invalid select {
	border-color: #FF0000 !important;
}

.form .invalid:after {
	content: attr(data-error);
	display: block;
	position: absolute;
	left: 0px;
	top: 100%;
	text-align: right;
	color: #FF0000;
	width: 100%;
}
/* ----------------------------------------------------------------[ splash ] */
.splash {
	margin-top: 88px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.splash img {
	width: 100%;
}
/* -------------------------------------------------------------[ flex-grid ] */
.flex-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex-grid > * {
	margin: 20px 40px;
}