* {
	font-family: 'Rubik', sans-serif;
	scroll-behavior: smooth;
}

header {
	width: 100%;
	height: 80px;
	background: #f2f2f2;

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 80px;
}

.header_logo {
	display: flex;
}

.header_nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header_nav_title {
	color: #878f98;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

.active_nav {
	color: #17252f;
	font-weight: 500;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 20px;
}

.language-switch > a {
	color: #878f98;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}

.language-switch > a.active {
	color: #142e50;
	position: relative;
}

.language-switch > a.active:after {
	display: flex;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #142e50;
	height: 2px;
	border-radius: 10px;
}

footer {
	display: flex;
	background: #17252f;

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 80px;
	gap: 10px;
}

.footer_left {
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 60px;
}

.footer_address {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer_address_left {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-inline: 16px;

	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
}

.footer_address_right {
	display: flex;
	align-items: center;
}

.footer_right {
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 28px;
}

.footer_links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer_links > a {
	padding: 9px 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
}

.footer_left > img {
	width: 226px;
}

.footer_call-back {
	width: 60%;
	border: 2px solid #ffffff;
	border-radius: 90px;
	padding: 18px;
	background: transparent;

	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
}

.footer_leave-request {
	width: 60%;

	background: #c2f52f;
	box-shadow: 0px 0px 15px rgba(14, 64, 130, 0.8);
	border-radius: 90px;
	padding: 18px;

	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #17252f;
}

.mobile-burger,
.mobile-nav {
	display: none;
}

@media screen and (max-width: 767px) {
	header {
		position: relative;
		padding: 10px 24px;
		justify-content: flex-end;
	}

	.header_logo {
		justify-content: center;
	}

	.header_nav {
		display: none;
	}

	.language-switch {
		display: none;
	}

	.mobile-burger {
		display: block;
		position: absolute;
		left: 35px;
	}

	footer {
		padding: 40px;
		align-items: center;
		white-space: nowrap;
		flex-direction: column;
	}

	.footer_left {
		gap: 36px;
		width: 100%;
		align-items: center;
	}

	.footer_address {
		flex-direction: column;
		gap: 28px;
		align-items: center;
	}

	.footer_address_left {
		padding-left: 0;
	}

	.footer_address_right {
		gap: 20px;
	}

	.footer_call-back,
	.footer_leave-request {
		width: 100%;
	}

	.mobile-nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #f2f2f2;
		padding: 10px 24px;
		z-index: 10;
	}

	.active {
		display: block;
	}

	#mobile-close {
		position: absolute;
		top: 24px;
		left: 40px;
	}

	.mobile-content {
		display: flex;
		position: relative;

		flex-direction: column;
		gap: 32px;
		align-items: center;
	}

	.mobile-content > a:nth-child(2) {
		margin-top: 85px;
	}

	.language-switch-mobile {
		display: flex;
		margin-top: 50px;
	}

	.footer_links {
		width: 100%;
		overflow-x: auto;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	header {
		position: relative;
		padding: 10px 24px;
		justify-content: center;
	}

	.header_logo {
		justify-content: center;
	}

	.header_nav {
		display: none;
	}

	.language-switch {
		display: none;
	}

	.mobile-burger {
		display: block;
		position: absolute;
		left: 35px;
	}

	footer {
		align-items: flex-start;
		white-space: nowrap;
	}

	.footer_left {
		gap: 36px;
		width: 30%;
	}

	.footer_address {
		flex-direction: column;
		gap: 28px;
	}

	.footer_address_left {
		padding-left: 0;
	}

	.footer_address_right {
		gap: 20px;
	}

	.footer_call-back,
	.footer_leave-request {
		width: 80%;
	}

	.mobile-nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #f2f2f2;
		padding: 10px 24px;
		z-index: 10;
	}

	.active {
		display: block;
	}

	#mobile-close {
		position: absolute;
		top: 24px;
		left: 40px;
	}

	.mobile-content {
		display: flex;
		position: relative;

		flex-direction: column;
		gap: 32px;
		align-items: center;
	}

	.mobile-content > a:nth-child(2) {
		margin-top: 85px;
	}

	.language-switch-mobile {
		display: flex;
		margin-top: 50px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
	header {
		padding: 24px;
	}

	footer {
		align-items: flex-start;
		white-space: nowrap;
	}

	.footer_left {
		gap: 36px;
		width: 30%;
	}

	.footer_address {
		flex-direction: column;
		gap: 28px;
	}

	.footer_address_left {
		padding-left: 0;
	}

	.footer_address_right {
		gap: 20px;
	}
}
