/*Fonts include*/
@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicLight.ttf');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicBook.ttf');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicDemi.ttf');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicMedium.ttf');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicBold.ttf');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicExtraBold.ttf');
	font-weight: 800;
	font-display: swap;
}

@font-face {
	font-family: 'futurapt';
	src: url('../fonts/FuturaCyrillicHeavy.ttf');
	font-weight: 900;
	font-display: swap;
}

/*Base CSS*/
*,
*::before,
*::after {
	font-family: futurapt, sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	min-width: 360px;
	font-weight: 400;
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
	color: #000;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #fff;
}

b,
strong {
	font-weight: 700;
}

img {
	max-width: 100%;
	display: inline-block;
}

a {
	text-decoration: none;
}

/*Main CSS*/
.container {
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

.content {
	padding: 0 20px;
}

.offer-link {
	display: table;
	margin: 40px auto;
	background: #e4cb91;
	color: #000;
	padding: 20px 40px;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 10px 20px rgb(203 185 142 / 50%);
	transition: all 0.3s ease;
}

.offer-link:hover {
	background: #ccb379;
}

.footer {
	padding: 50px 0;
	background: #116256;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	align-items: start;
	justify-content: center;
	gap: 0 50px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.logo-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.logo-wrap:after {
	content: '';
	position: absolute;
	top: 7px;
	left: 173px;
	width: 1px;
	height: 36px;
	background: #e4cb91;
}

.logo-wrap p {
	line-height: 18px;
	color: #fff;
	font-weight: 400;
	width: 130px;
}

.footer-menu {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer-menu a {
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.footer-menu a:hover {
	color: #e4cb91;
}

.footer h3 {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
}

.footer-contacts a {
	display: table;
	color: #fff;
	text-decoration: underline;
	font-weight: 300;
}

.footer-social img {
	margin-right: 10px;
}

.footer-social img:nth-of-type(3) {
	margin-right: 0;
}

.footer-social img:last-child {
	width: 48px;
	margin-right: 0;
	margin-top: 10px;
}

.copyright {
	color: #fff;
	font-size: 14px;
	line-height: 22px;
}

/* Media CSS */
@media (max-width: 1168px) {
	.footer-menu {
		flex-direction: column;
		gap: 0;
		margin-top: 0;
	}
}

@media (max-width: 1000px) {
	.footer-container {
		grid-template-columns: repeat(2, max-content);
		gap: 20px;
	}

	.footer-menu {
		align-items: start;
	}

	.footer-social br {
		display: none;
	}

	.footer-social img:nth-of-type(3) {
		margin-right: 10px;
	}

	.footer-social img:last-child {
		margin-top: 0;
	}
}

@media (max-width: 670px) {
	.footer-container {
		grid-template-columns: repeat(1, max-content);
	}

	.footer-menu {
		align-items: center;
	}

	.footer-contacts,
	.footer-social {
		justify-self: center;
		text-align: center;
	}
}
