/* FONT */
@font-face {
	font-family: Calistoga;
	src: url('./fonts/Calistoga-Regular.ttf');
}


/* RESET STYLE */

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul li {
	list-style: none;
}

a {
	text-decoration: none;
}

/* END RESET STYLE */

body {
	font-family: sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	color: #484a55;
}

.container {
	max-width: 1110px;
	margin: 0 auto;
	padding: 0 20px;
}

main {
	flex: 1;
}

/* HEADER */
.nav-description {
	background-color: #9daaf2;
	width: 100%;
	height: 65px;
}

.header-descr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	padding: 25px 0;
}

.header-descr ul {
	display: flex;
	gap: 30px;
	text-transform: uppercase;
	left: 0;
}

.header-descr .logo a {
	font-family: Calistoga;
	font-size: 24px;
	color: #fff;
	font-weight: 500;
}

.header-descr ul li a {
	color: #fff;
	text-transform: uppercase;
	transition: .3s ease all;
	font-weight: 500;
}

.header-descr ul li a:hover {
	opacity: .8;
}

/* END HEADER */

/* SECTION DESCRIPTION */

.description-content h1 {
	padding: 50px 0 20px;
}

.description-content {
	padding-bottom: 50px;
}

.description-content p {
	line-height: 1.5;
}

/* END SECTION DESCRIPTION */

/* FOOTER */

.footer-descr {
	background-color: #1a2238;
	min-height: 60px;
	width: 100%;
}

.footer-content-descr {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 100%;
	color: #fff;
}

.footer-content-descr a {
	color: #fff;

}

/* FOOTER */

/* RESPONSIVE */
@media (max-width:768px) {
	.header-descr ul {
		gap: 10px;
	}

	.description-content h1 {
		font-size: 20px;
		text-align: center;
		padding-bottom: 30px;
	}

	.footer-content-descr {
		font-size: 12px;
		flex-direction: column;
		gap: 20px;
		padding-bottom: 20px;
	}
}

@media (max-width:425px) {
	.nav-description {
		height: 40px;
	}

	.header-descr {
		padding: 10px 0 0 0;
	}

	.header-descr .logo a {
		font-size: 14px;
	}

	.description-content h1 {
		padding: 20px 0 10px 0;
	}

	.description-content p {
		font-size: 12px;
	}

	.header-descr ul li a {
		font-size: 10px;
	}
}