main {
	padding-top: 88px;
}

.body-wrapper {
	overflow: hidden;
}

.section {
	margin-bottom: 100px;
}

.text-30 {
	font-size: 30px;
	line-height: 130%;
}

.text-14 {
	font-size: 14px;
	line-height: 200%;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.content p {
	margin: 0;
}

.content p:not(:last-child) {
	margin-bottom: 1em;
}

.content ul {
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
}

.content ul:not(:last-child) {
	margin-bottom: 1em;
}

.content ul>li::marker {
	font-size: 0.5em;
}

.footer {
	background-color: #275078;
	color: #fff;
	padding: 90px 0 100px;
}

.footer__wrapper {
	display: flex;
	justify-content: space-between;
}

.footer__body {
	max-width: 50%;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	column-gap: 60px;
}

.footer__links {
	display: flex;
	gap: 25px;
}

.footer__link {
	display: flex;
	width: 40px;
	height: 40px;
}

.footer__link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.footer__location {
	display: flex;
	gap: 15px;
}

.footer__location-icon {
	display: flex;
}

.footer__logo {
	display: flex;
	height: 100px;
	width: fit-content;
}

.footer__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tile__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.tile__item {
	display: grid;
	grid-template-columns: 38fr 58fr;
}

.tile__link {
	display: flex;
	position: relative;
}

.tile__img {
	display: flex;
	width: 100%;
	height: 100%;
}

.tile__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tile__link-img {
	display: flex;
	width: 100%;
	height: 100%;
}

.tile__link-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tile__link-img:nth-child(1) {
	position: absolute;
	top: 0;
	left: 0;
	transition: all ease 0.5s;
}

.tile__link:hover .tile__link-img:nth-child(1) {
	opacity: 0;
}

.tile__item:nth-child(even) {
	grid-template-columns: 58fr 38fr;
}

.tile__item:nth-child(even) .tile__link {
	order: -1;
}


.about__border {
	padding: 33px 30px;
	border: 1px solid #828282;
	margin-bottom: 57px;
}

.about__title {
	color: #2C5A88;
}

.about__heading {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 74px;
}

.about__wrapper {
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr 1fr;
}

.about__content {
	line-height: 180%;
}

.header {
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0;
	width: 100%;
	height: fit-content;
	background-color: #2C5A88;
	color: #fff;
	padding: 15px 0;
}

.header a {
	color: inherit;
}

.header ul {
	list-style: none;
}

.header a:hover {
	color: inherit;
}

.header__wrapper {
	display: flex;
}

.header .nav {
	width: 100%;
}

.header .nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 45px;
	margin: 0;
}

.header__logo {
	display: flex;
	width: fit-content;
}

.header .nav__list {
	position: relative;
}

.header .nav__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: fit-content;
	padding: 30px 40px 50px;
	background-color: #2C5A88;
	display: flex;
	flex-direction: column;
	gap: 5px;
	pointer-events: none;
	opacity: 0;
	transition: all ease 0.5s;
}

.header .nav__item {
	display: flex;
	align-items: center;
	height: 100%;
}

.header .nav__item_has-child:hover .nav__submenu {
	opacity: 1;
	pointer-events: all;
}

.header .nav__submenu-title {
	text-decoration: underline;
}

.header .nav__item_has-child .nav__link_lvl1 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header .nav__link:hover {
	text-decoration: underline;
}

.header .nav__item_has-child .nav__link_lvl1::after {
	display: block;
	content: '';
	min-width: 13px;
	width: 13px;
	height: 13px;
	transition: all ease 0.5s;
	background-image: url(../images/header-caret.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.header .nav__item_has-child:hover .nav__link_lvl1::after {
	transform: rotate(180deg);
}


.header__menu-btn {
	display: none;
}

html,
body {
	overflow-x: unset;
}

@media screen and (max-width: 768px) {
	main {
		padding-top: 75px;
	}

	.section {
		margin-bottom: 50px;
	}

	.footer {
		padding: 25px 0 35px;
	}

	.footer__logo {
		height: 44px;
	}

	.footer__wrapper {
		flex-direction: column;
		align-items: center;
		gap: 14px;
	}

	.footer__body {
		max-width: none;
		column-gap: 35px;
		width: fit-content;
		justify-content: center;
		grid-template-columns: auto;
	}

	.footer__subtitle:nth-child(1) {
		grid-column: span 2;
		text-align: center;
	}

	.footer__subtitle:nth-child(2) {
		display: none;
	}

	.footer__links {
		gap: 20px;
	}

	.tile {
		margin-bottom: 27px;
	}

	.tile__wrapper {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.about__wrapper {
		display: flex;
		flex-direction: column;
	}

	.about__border {
		border: none;
		padding: 17px 15px;
		background-color: #19517617;
		margin-bottom: 46px;
	}

	.about__heading {
		margin-bottom: 46px;
		gap: 36px;
	}

	.header .nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #2C5A88F5;
		z-index: -1;
		padding: 75px 15px 15px;
		transition: all ease 0.5s;
		transform: translateY(-100%);
	}

	.header .nav__list {
		flex-direction: column;
		justify-content: flex-start;
		margin-top: 7px;
		gap: 0;
		overflow-y: auto;
		height: 100%;
	}

	.header .nav__link {
		width: 100%;
	}

	.header .nav__item_lvl1 {
		height: auto;
		padding: 10px 16px;
		width: 100%;
		flex-direction: column;
	}

	.header .nav__item_lvl1:not(:last-child) {
		border-bottom: 1px solid #C0C4EC66;
	}

	.header .nav__link_lvl1 {
		text-decoration: underline;
	}

	.header__logo svg {
		height: 45px;
	}

	.header__menu-btn {
		display: flex;
	}

	.header__menu-btn svg:nth-child(2) {
		display: none;
	}

	.header__wrapper {
		justify-content: space-between;
		align-items: center;
	}

	.header-open {
		overflow: hidden;
	}

	.header-open .header__menu-btn svg:nth-child(1) {
		display: none;
	}

	.header-open .header__menu-btn svg:nth-child(2) {
		display: block;
	}

	.header-open .header__nav {
		transform: none;
	}

	.header .nav__submenu {
		position: static;
		opacity: 1;
		pointer-events: all;
		padding: 0;
	}

	.header .nav__submenu::before {
		display: block;
		content: '';
		height: 12px;
		width: 100%;
	}

	.header .nav__submenu-title {
		display: none;
	}
}

@media screen and (max-width: 570px) {
	.text-30 {
		font-size: 20px;
		line-height: 130%;
	}
}