body {
	background-image: url("../land_img/bg.webp");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.header {
	margin: 20px 0;
}

.header__container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.center {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.title {
	text-align: center;
	text-transform: uppercase;
	margin: 30px 0;
	font-size: 2rem;
	font-weight: bold;
	line-height: 2.5rem;
}

.slogan {
	text-align: center;
	color: #2657AB;
	font-weight: normal;
	line-height: 2.2rem;
}

.header__logo {
	text-align: center;
}

.header__logo img {
	width: 150px;
}

.header__description {
	text-align: center;
}

.why__container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wlist {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wlist__item {
	display: flex;
	gap: 30px;
	align-items: center;
}

.wlist__image {
	flex-shrink: 1;
	font-size: 3rem;
	color: #2657AB;
}

.wlist__content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.wlist__name {
	font-weight: bold;
}

.partner__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 800px;
	width: 100%;
	margin: 30px auto 0;
}

.partner__field {
	width: 100%;
}

.partner__control {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 15px 20px;
	transition: .3s;
}

.partner__control:focus,
.partner__control:hover {
	border-color: #2657AB;
}

.partner__button {
	border: 2px solid #2657AB;
	border-radius: 10px;
	color: #2657AB;
	background: #fff;
	padding: 15px 40px;
	cursor: pointer;
	transition: .3s;
}

.partner__button:active,
.partner__button:hover {
	background: #2657AB;
	color: #fff;
}

.partner__message {
	font-weight: bold;
	color: #ff0000;
}

.partner__message.hidden {
	display: none;
}

.footer {
	text-align: center;
	margin: 20px 0;
	font-size: .8rem;
	color: #ccc;
}