* {
	font-family: 'Montserrat', sans-serif;
}

main {
	animation: fadeInAnimation ease 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

main.out {
	animation: fadeOutAnimation ease 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOutAnimation {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

h1 {
	color: #000;
	font-size: 7rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

h2 {
	color: #000;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 5.5rem;
	}

	h2 {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 576px) {
	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}

h3 {
	color: #000;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

header a {
	text-decoration: none;
}

header h1 {
	color: #000;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

header h1 span {
	display: block;
	font-size: 1rem;
	font-weight: 500;
}

footer p {
	color: #000;
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1rem;
}

.btn small {
	display: block;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: none;
}

nav.contacts {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1rem;
	background: #000 url('/assets/img/contacts-toggle.svg') no-repeat right center;
	padding-right: 65px !important;
	cursor: pointer;
	z-index: 3;
}

@media only screen and (max-width: 768px) {
	nav.contacts {
		font-size: 0;
		padding: 0 !important;
		width: 63px;
		height: 63px;
		bottom: 10vh;
		top: unset;
		border-radius: 20px 0 0 20px;
	}
}

.contacts-holder {
	display: block;
	overflow-x: hidden;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	box-shadow: -4px 0px 0px 0px #000;
	height: 100vh;
	width: 0;
	max-width: 100vw;
	-webkit-transition: width 1s ease-in-out;
	-moz-transition: width 1s ease-in-out;
	-o-transition: width 1s ease-in-out;
	transition: width 1s ease-in-out;
}

.contacts-holder .contacts-block {
	display: block;
	border-bottom: 2px solid #000;
	width: 100%;
}

.contacts-block h4 {
	font-size: 1rem;
	font-weight: 700;
}

.content-contacts h4 {
	border-radius: 4px 4px 0px 0px;
	background: #E2BD6A;
	margin: -1rem -1rem 0.5rem;
	padding: 1rem;
}

.contacts-block h5 {
	font-size: 0.7rem;
	font-weight: 300;
}

.contacts-block label {
	color: #000;
	font-size: 0.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}

.contacts-block address {
	color: #000;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.contacts-block .telephones a {
	border-radius: 30px;
	font-weight: 700;
}

.contacts-block .telephones a:hover {
	box-shadow: none;
}

.content-contacts .contacts-block .telephones a {
	margin: 0 0.5rem 0.5rem 0;
}

.contacts-block .emails a,
.contacts-block a.web {
	font-size: 1rem;
}

.content-contacts .contacts-block {
	height: 100%;
	border-radius: 4px;
	border: 1px solid #000;
	background: #FFF;
	box-shadow: 4px 4px 0px 0px #000;
}