html, body {
    height: 100%;
    margin: 0; padding: 0;
}

body {
    color: #000;
    background-color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px; line-height: 1.5;
}

a:link, a:visited {
    color: #000;
	text-decoration: none;
}

a:hover, a:active {
    color: #000;
	text-decoration: underline;
}

.wrapper {
    display: flex;
    width: 100%; height: 100%;
    justify-content: center;
    align-items: center;
}

.wrapper > * {
    flex: 0 0 50%;
    height: 100%;
}

@media only screen and (max-width: 1023px)  /* Tablet */ {
    .wrapper {
        flex-direction: column-reverse;
        height: unset;
		min-height: 100vh;
		background: url(../images/background.jpg) no-repeat center top/cover;
    }

    .wrapper > * {
        flex: 0 0 100%;
        width: 100%;
    }
}

.content-left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--color-white);
    text-align: center;
}

.content-left .inner {
    padding: 80px 40px;
}

@media only screen and (max-width: 1279px)  /*  1024  */ {
    .content-left .inner {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 1023px)  /* Tablet */ {

	.content-left {
		flex-direction: column;
		justify-content: center;
	}

	.content-left .inner {
		background: rgba(255, 255, 255, 0.8);
	}

}

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

	.content-left {
		width: auto;
		padding: 20px;
	}

	.content-left .inner {
		padding: 20px;
	}

	.content-left .inner p:last-of-type {
		margin-bottom: 0;
	}

}

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

	.content-left {
		width: auto;
		padding: 20px 15px;
	}

	.content-left .inner {
		padding: 20px 15px;
	}

}

.logo img {
    display: block;
    width: 320px; max-width: 100%; height: auto;
    margin: 0 auto 40px;
}

h2 {
    margin: 0 0 40px 0; padding: 0;
    font-size: 30px;
    font-weight: 600;
}


@media only screen and (max-width: 767px)  /* Mobile */ {
    .logo img {
		width: 220px;
        margin-bottom: 30px;
    }

    h2 {
		font-size: 20px;
        margin-bottom: 30px;
    }
}

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

    .logo img {
		width: 180px;
        margin-bottom: 20px;
    }

    h2 {
		font-size: 16px;
        margin-bottom: 20px;
    }

}

.content-right {
    background: transparent url('../images/background.jpg') no-repeat center top/cover;
}

@media only screen and (max-width: 1023px)  /* Tablet */ {

    .content-right {
        display: none;
    }
}

.contact ul {
	margin: 0 0 40px;
	padding: 0;
}

.contact ul li {
	line-height: 1.7;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact a.btn {
    font-family: Arial, sans-serif;
	display: inline-block;
	padding: 15px 20px;
	color: #fff;
	line-height: 1;
	background: #000;
	font-weight: 600;
	text-transform: uppercase;
    border: 1px solid black;
}

.contact a.btn.alt {
    background: white;
    color: black;
    border-color: black;
}

.contact a.btn:hover {
	text-decoration: none;
    background: white;
    color: black;
}

.contact a.btn + a.btn {
	margin-left: 30px;
}

.btn-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-list a.btn {
    white-space: nowrap;
    background: white;
    color: black;
}

.btn-list a.btn:hover,
.btn-list a.btn:active {
    background: black;
    color: white;
}

form.formtools {
    text-align: left;
}

form.formtools label.infield sup {
	top: 0;
}

form.formtools .input-wrap-textarea .chars_remain {
    display: none;
}

form.formtools input[type="submit"],
form.formtools input[type="submit"]:focus,
form.formtools input[type="submit"]:hover,
form.formtools input[type="submit"]:active {
    font-family: Arial, sans-serif;
	display: inline-block;
	padding: 15px 20px;
	color: #fff;
	line-height: 1;
	background: #000;
	font-weight: 600;
	text-transform: uppercase;
    border: 1px solid black;
}

form.formtools .required-label {
    margin-left: 0;
    font-size: 1rem;
}




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

	.contact ul li + li {
		margin-top: .25em;
	}

	.contact ul li:nth-of-type(n+3) {
		line-height: 1.4;
		max-width: 240px;
		margin-left: auto;
		margin-right: auto;
	}

	.contact ul li:nth-of-type(n+3) strong {
		display: block;
	}

}

@media only screen and (max-width: 413px)  /* Mobile */ {

	.contact ul {
		margin: 0 0 20px;
		font-size: 1em;
	}

	.contact a.btn {
		font-size: .8em;
		padding: 10px 15px;
	}

	.contact a.btn + a.btn {
		margin-left: 10px;
	}

}

