.contact__node {
    background-color: #e3e3e3;
    margin-top: 5rem;
}
.contact__inner {
    max-width: 78rem;
    padding: 6rem 1rem;
}
.contact__form {
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
	margin-right: 5%;
}
.contact__info {
	position: relative;
	-ms-flex-preferred-size: 35%;
	flex-basis: 35%;
	background-color: var(--cream);
	background-image: url(../icons/dots.png);
	background-repeat: repeat;
	background-size: auto;
	padding: 2rem 2rem;
	height: 100%;
}
.contact__info > h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.contact__info > p, .contact__info > a {
    font-size: 1.1875rem;
    padding-bottom: 0.25rem;
    border-bottom: 0.0625rem solid var(--orange);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.form__item label {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: .1rem;
}
.form__item input {
    height: 4rem;
    padding-left: 0.5rem;
    background-color: var(--cream);
}
.form__item input , .form__item textarea {
    border: 0.063rem solid var(--cream);
}
.form__item input:focus , .form__item textarea:focus {
    border-color: var(--dark);
}
.form__item textarea {
	height: 10rem;
	padding: 1rem 0 0 .5rem;
    resize: none;
    background-color: var(--cream);
}
.form__item:not(:last-child) {
	margin-bottom: 1.5rem;
}
.accept__terms {
    margin-top: 1rem;
}
#check + label span {
    background-color: var(--cream);
	width: 2.375rem;
    height: 2.375rem;
	border-width: 0.0625rem;
	border-style: solid;
	border-color: var(--orange);
	display: inline-block;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-box-shadow: 0 0 0.125rem 0 rgb(0 0 0 / 25%);
    box-shadow: 0 0 0.125rem 0 rgb(0 0 0 / 25%);
    border-radius: 50%;
    -webkit-transition: background-color 150ms 0.2s, -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
    transition: background-color 150ms 0.2s, -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
    -o-transition: background-color 150ms 0.2s, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
    transition: background-color 150ms 0.2s, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
    transition: background-color 150ms 0.2s, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89), -webkit-transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
    cursor: pointer;
}
#check + label span:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-radius: 0.7125rem;
    background-color: var(--cream);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
	transform-origin: 0 0;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#check + label span + div {
    margin-left: 0.9rem;
    font-size: 1.025rem;
    font-weight: 300;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
#check + label span + div > a {
    display: inline-block;
    color: var(--orange);
}
#check + label span + div > a:hover {
    text-decoration: underline;
}
#check {
    display: none;
}
#check:checked + label span {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}
#check:checked + label span:before {
    background-color: var(--orange);
    width: 0.7125rem;
    height: 0.7125rem;
    -webkit-transition: width 150ms ease 0.1s,height 150ms ease 0.1s;
    -o-transition: width 150ms ease 0.1s,height 150ms ease 0.1s;
    transition: width 150ms ease 0.1s,height 150ms ease 0.1s;
}
.form__item:not(:last-child) {
	margin-bottom: 1.6875rem;
}
.send {
	border-radius: 0.0125rem;
	-webkit-box-shadow: 0 0.00625rem 0 rgb(0 0 0 / 20%);
	box-shadow: 0 0.00625rem 0 rgb(0 0 0 / 20%);
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	letter-spacing: .00625rem;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
	margin-top: 2rem;
	height: 3.5rem;
	font-size: 1.2rem;
	max-width: 17rem;
	background-color: var(--dark);
	color: var(--cream);
}
.send:hover {
    opacity: .9;
}
.contact__info .contact__social {
	margin-top: 0;
	margin-bottom: 0;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.contact__info .contact__social a {
	border: 0.0625rem solid var(--dark);
	width: 2.8125rem;
	height: 2.8125rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.contact__info .contact__social a svg {
    width: 50%;
    height: 50%;
}
.contact__info .contact__social a svg * {
    fill: var(--dark);
}
.contact__info .contact__social a:hover {
    background-color: var(--dark);
}
.contact__info .contact__social a:hover svg * {
    fill: var(--cream);
}
@media only screen and (min-width: 320px) and (max-width: 1600px){
	.contact__info .contact__social {
		margin-top: 1rem;
	}
}
@media only screen and (min-width: 320px) and (max-width: 991px){
	.contact__form, .contact__info{
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
	.contact__form {
		margin-right: 0;
		margin-bottom: 5rem;
	}
}
@media only screen and (min-width: 320px) and (max-width: 604px){
	.o--i--terms {
		margin-top: 2rem;
		width: 100%;
	}
}