@font-face {
	font-family: "Canvas Light";
	src: url("/fonts/made_canvas_light-webfont.woff");
}


*,
*::after,
*::before {
	box-sizing: border-box;
	position: relative;
}

body {
	font-family: "montserrat", sans-serif;
	font-weight: 300;
	font-style: normal;
	background: #fff;
	color: #fff;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: .5px;
	margin: 0;
	padding: 0;
}

h2 {
	margin: 20px 0;
	font-family: "Canvas Light";
	font-style: normal;
	font-size: 40px;
	line-height: 1.1;
	text-transform: uppercase;
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	display: block;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
}

.block {
	max-width: 1200px;
	margin: 0 auto;
}

section {
	padding: 10px;
}

.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 10px;
	height: 100vh;
}

.half {
	text-align: center;
	background: #000;
	height: 100%;
	display: grid;
	align-items: center;
	transition: .5s;
	overflow: hidden;
	background: #323232;
}

.half:before {
	content: '';
	position: absolute;
	top: -10px;
	bottom: -10px;
	right: -10px;
	left: -10px;
	background-size: cover !important;
	transition: .5s;
	filter:blur(3px);
}

.half.studio:before {
	background: url(/img/03.jpg);
}

.half.agency:before {
	background: url(/img/04.jpg);
}

.half:hover:before {
	opacity: .3;
	filter:blur(10px);
}

.half .box {
	max-width: 400px;
	margin: 0 auto;
	opacity: .7;
	filter: blur(3px);
	transition: .5s;
}

.half:hover .box {
	opacity: 1;
	filter: blur(0px);
}

a.button {
	display: block;
	max-width: fit-content;
	margin: 40px auto 0 auto;
	border-radius: 50px;
	border: 1px solid #fff;
	padding: 10px 20px;
}



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