::-moz-selection {
	background: #fff;
	columns: #000;
}

::selection {
	background: #fff;
	columns: #000;
}

body, html {
	background: #222023;
	color: #d7d7d7;
	font-family: 'Atlas Grotesk', Arial, sans-serif;
}


body {
	margin: 0;
	padding: 0;
}


h1 {
	font-size:  28px;
	z-index: 2;
	margin: 0;
}

h2 {
	font-size: 45px;
}



.texture-bg {
	height: 120%;
	width: 120%;
	position: absolute;
	display: block;
	top: -10% !important;
	left: -10% !important;

	background-image: url(../images/K_texture.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	pointer-events: none;
}

#texture-parallax {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: block;	
	overflow: hidden;

	pointer-events: none;
}


.container {
	width: 80%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    box-sizing: border-box;
    padding: 50px 0;
}


.first-col, .second-col {
	display: flex;
	min-height: 1%;
	flex-direction: column;
}

.first-col {
	width: 60%;
	flex: 0 0 60%;
	margin-right: 5%;
	position: relative;
}

.second-col {
	width: 35%;
	flex: 0 0 35%;
	align-self: center;
}

.logo, 
.background {
	width: 100%;
	flex: 0 0 100%;
	position: absolute;
}

.logo {
	z-index: 1;
}


.background {
	z-index: 0;
}

.background img {
	max-width: 95%;
}

.row {
	width: 100%;
}

.social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-list li {
	display: inline-block;
	margin-right: 20px;
}
.social-list li img {
	width: 70px;
}


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

	h1 {
		font-size: 18px;
	}
	h2 {
		font-size: 28px;
	}

	.container {
		flex-direction: column;
	}

	.first-col, .second-col {
		width: 100%;
		flex: 0 0 100%;
	}

	.background {
		position: relative;
	}

	.cursor {
		display: none;
	}

	.first-col {
		margin-right: 0%;
	}
}



/*

* Cursor

*/
body, body a {
    cursor: none;
}
.cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11000;
    pointer-events: none;
    transition: transform .1s cubic-bezier(.23,1,.32,1);
    mix-blend-mode: difference;
}
.cursor--small {
    width: 70px;
    height: 70px;
    left: -35px;
    top: -35px;
    border-radius: 50%;
    background: #d7d7d7;
    position: absolute;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
    mix-blend-mode: difference;
}

