:root {
	--primary: #fcc201;
	--primary-80: rgba(156, 48, 254, 0.8);
	--primary-light: #a25fde;

	--secondary: #fedb67;
	--secondary-light: #60a8f3;

	--bg: #fff;
	--text-color: #404040;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a, img {
	border: none;
}
a, input:focus, button:focus, textarea:focus, select:focus {
	outline: none;
}
button {
	cursor: pointer;
}
body {
	/*background: var(--bg);*/
	color: var(--text-color);
	font: 16px/1.4 Inter, Arial, Tahoma, sans-serif;
}

.wrapper {
	width: 100%;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
.container:after,
.cla:after {
	content: '';
	clear: both;
	display: block;
}

img {
	user-select: none;
}

h1, h2, h3 {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	font-size: 36px;
}

.btn {
	display: inline-block;
	padding: 0 32px;
	background: var(--primary);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 20px;
	line-height: 64px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}
.btn:hover {
	background: var(--primary-light);
}
.btn-w {
	background: #fff;
	color: var(--primary);
}
.btn-w:hover {
	background: rgba(255, 255, 255, 0.9);
}
.btn-b {
	background: var(--secondary);
}
.btn-b:hover {
	background: var(--secondary-light);
}

.btn-lg {
	padding: 0 48px;
	border-radius: 12px;
	font-size: 32px;
	line-height: 80px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.text-center {
	text-align: center;
}


/* header
*************************************************/
.logo {
	margin-bottom: 15px;
}
.logo a {
	display: inline-block;
	text-decoration: none;
}
.logo img {
	display: block;
	width: 64px;
	height: auto;
}


/* main
*************************************************/
.main {
	min-height: 100vh;
	background: url('../images/main-bg.jpg') center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 25px 0 15px;
	display: flex;
	text-align: center;
	position: relative;
}
.main .container {
	width: 100%;
	margin: auto;
}
.main-panel {
	max-width: 640px;
	margin: auto;
	color: #fbf8e5;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.main h1 {
	font-size: 80px;
	margin-bottom: 25px;
}
.main-desc {
	margin-top: 25px;
	font-size: 36px;
}
.hl {
	display: inline-block;
	background: rgba(254, 219, 103, 0.9);
	padding: 0 5px;
}


/* services
*************************************************/
.services {
	padding: 50px 0;
}
.services-item {
	float: left;
	width: 33.33%;
	padding: 0 8px 15px;
}
.services-pic {
	display: block;
	max-width: 80%;
	margin: 0 auto 15px;
}
.services-title {
	color: #000;
	margin-bottom: 8px;
}


/* contacts
*************************************************/
.contacts {
	position: relative;
	text-align: center;
}
.contacts .container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.8);
	padding-top: 25px;
	padding-bottom: 25px;
}

.contacts h2 {
	margin-bottom: 15px;
}

.contacts-items {
	display: inline-block;
	max-width: 480px;
	text-align: left;
}
.contacts-item img {
	width: 24px;
	height: 24px;
	vertical-align: bottom;
	margin-right: 6px;
}
.contacts-item + .contacts-item {
	margin-top: 10px;
}

.contacts-map {
	display: block;
	width: 100%;
	height: 450px;
	border: none;
}
.contacts-map:focus {
	border: none;
}


/* footer
*************************************************/
.footer {
	background: var(--secondary);
	padding: 30px 0;
	color: #404040;
}
.footer a {
	color: #404040;
}
.copyright {
	font-size: 14px;
	opacity: 0.8;
}

@media (max-width: 639px) {
	.main h1 {
		font-size: 48px;
	}
	.main-desc {
		font-size: 26px;
	}
	.services-item {
		float: none;
		width: auto;
	}
	.services-pic {
		max-width: 120px;
	}
}

@media (max-width: 360px) {
	.main h1 {
		font-size: 42px;
	}
}