
@font-face {
    font-family: 'Tangerine';
    src: url('/assets/fonts/Tangerine.woff2') format('woff2'), url('/assets/fonts/Tangerine.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins.woff2') format('woff2'), url('/assets/fonts/Poppins.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


html {
	-webkit-text-size-adjust: 100%;
	height: 100%;
	padding: 0;
}

html, body {
	margin: 0;
	line-height: 1.2em;
}

body {
	min-height: 100%;
	box-sizing: border-box;
	position: relative;
	font-family: 'Poppins';
	background-color: #fcf7e7;
	color: #1e294e;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;

}


a {
	color: #f8ac2a;
	text-decoration: none;
	display: block;
	margin: 5px auto;
	font-size: 18px;
	text-align: center;
	transition: all .25s ease;
}

a:hover, a:focus {
	text-decoration: underline;
}

h1 {
	font-family: 'Tangerine';
	font-size: 55px;
	line-height: 1em;
	margin: 0;
}

h2 {
	font-family: 'Poppins';
	font-size: 53px;
	line-height: 1em;
	margin-top: 0;
}

main {
	width: 100%;
	min-height: 450px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

main section {
	width: 48%;
	height: 100%;
	box-sizing: border-box;
	display: block;
	float: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5% auto;
	position: relative;
}

.logo-wrapper {
	max-height: 450px;
	max-width: 356px;
	overflow: hidden;
	box-sizing: border-box;
}

.logo-wrapper .logo {
	height: 100%;
	max-width: 100%;
}

.socials {
	margin-bottom: 45px;
}

.socials h3 {
	display: inline-block;
	margin: 0 5px;
}
.socials a.linktree {
	display: flex;
	justify-content: center;
}

.socials a:before {
	content: ' ';
	display: block;
	width: 48px;
	height: 48px;
}

.socials a.fb:before {
	content: url(assets/img/facebook.svg);
}

.socials a.insta:before {
	content: url(assets/img/insta.svg);
}

.socials a.linktree:before {
	content: url(assets/img/linktree-ok.svg);
	width: 200px;
	height: 41px;
	transform: scale(0.75);
}


.copyright p {
	margin: 0!important;
}

.copyright p.nkc, .copyright p.nkc a {
	display: inline-block;
	font-size: 16px;
}

@media screen and (max-width: 1199px) {
	h1 {
		font-size: 50px;
		letter-spacing: -0.5px;
	}

	h2 {
		font-size: 48px;
	}
}

@media screen and (max-width: 1023px) {
	main section {
		width: 96%;
	}

	h1 {
		font-size: 38px;
		letter-spacing: 0;
	}

	h2 {
		font-size: 36px;
	}
}

@media screen and (min-width: 1024px) {
	main section:first-of-type:after {
		content: ' ';
		display: block;
		height: 130%;
		width: 2px;
		background-color: #f8ac2a;
		position: absolute;
		right: -2.5%;
		top: -15%;
	}
}