@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@500&family=Raleway:ital,wght@0,500;0,600;1,500&display=swap");

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

header {
	position: fixed;
	z-index: 5;
	top: 0px;
	width: 100%;
	background-color: #fff;
	/* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
	transition: opacity 0.6s ease;
	opacity: 1;
}

header.hidden {
	z-index: -5;
	opacity: 0;
}

.container-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.logo {
	margin: 20px 0px 20px 60px;
}

.navigation {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 28px;
	align-items: center;
}

.navigation__item ul {
	display: flex;
	flex-direction: row;
	gap: 28px;
	/* padding-top: 42px; */
	color: #1f2023;
	font-family: Raleway;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14px;
}

.navigation__item ul a {
	color: #1f2023;
}

.navigation__item ul a:hover {
	text-decoration: underline;
	color: #01594d;
}

.language-change {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	width: 51%;
	height: 16%;
	/* margin-top: 40px; */
	color: #676767;
	font-family: Raleway;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.14px;
}

.language-change__image-row {
	cursor: pointer;
}

.custom-select {
	position: relative;
	/* width: 200px; */
	/* Встановіть ширину за вашим смаком */
}

.select-trigger {
	/* padding: 10px; */
	/* border: 1px solid #ccc; */
	/* border-radius: 5px; */
	/* cursor: pointer; */
	color: var(--black, #131415);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	letter-spacing: 0.16px;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	left: -30%;
	width: 50px;
	list-style: none;
	padding: 0;
	margin: 0;
	/* border: 1px solid #ccc; */
	border-radius: 5px;
	margin-top: 10px;
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	/* z-index: 20; */
}

.select-options li {
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	letter-spacing: 0.16px;
}

/* Показуємо випадаючий список при натисканні */
.custom-select.active .select-options {
	display: block;
}

.contacts-wrap {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	/* height: 40%; */
}

.contacts-wrap__button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	/* margin-top: 60px; */
	color: var(--black, #131415);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	/* 23.68px */
	letter-spacing: 0.16px;
	transition: all 0.5s ease;
}

.contacts-wrap__button:hover {
	text-decoration: underline;
	color: var(--green, #01594d);
}

.contacts-wrap__text {
	height: 24px;
	width: max-content;
}

.menu {
	/* display: flex; */
	margin-right: 26px;
	padding-left: 2px;
	/* margin: 26px; */
}

.menu__button {
	background: #cfe8d0;
	border-radius: 100px;
	height: 48px;
	padding: 17px 28px;
	/* overflow: hidden;
    z-index: 0;
    border: none; */
	transition: background-color 0.3s ease-in;
}

.menu__button:hover {
	background-color: rgba(207, 232, 208, 0.6);
	/* border: 2px solid #CFE8D0;
    padding: 15px 26px; */
}

.menu__button:active {
	transition: none;
	background: rgba(1, 89, 77, 0.2);
	border: none;
	padding: 17px 28px;
}

.menu__button span {
	color: var(--green, #01594d);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	letter-spacing: 0.16px;
	z-index: 10;
}

.page-navigation {
	display: flex;
	flex-direction: row;
	gap: 12px;
	margin-top: 160px;
	padding-left: 66px;
}

.page-navigation__main a {
	color: var(--black, #131415);
	font-family: Raleway;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: 0.12px;
}

.page-navigation__row {
	color: var(--black, #131415);
	font-family: Raleway;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.12px;
}

.page-navigation__reach a {
	color: var(--black, #131415);
	font-family: Raleway;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.12px;
	opacity: 0.6;
}

.page-navigation a:hover {
	opacity: 0.9;
	color: var(--green, #01594d);
	text-decoration-line: underline;
}

/* ------------------------------------------------------------------- */

.reach-wrap {
	position: relative;
	background-color: #01594d;
	margin: 0px 48px;
	margin-top: 20px;
	border-radius: 20px;
}

/* .reach-wrap::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 1;
	clip-path: ellipse();
} */

/* .bottom-row {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 44px;
	height: 44px;
	border-radius: 100%;
	background-color: #cfe8d0;
	z-index: 2;
	transition: opacity 0.3s;
} */

/* .bottom-row img {
	width: 100%;
	height: 100%;
	padding: 20%;
	border-radius: 100%;
	transition: transform 0.3s ease-in-out;
}

.bottom-row:hover {
	opacity: 0.8;
}

.bottom-row img.rotate {
	transform: rotate(180deg);
} */

.container-reach {
	margin-bottom: 160px;
}

.mainTitleBlock {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 50px;
}

.titleBlock {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	justify-content: center;
	gap: 30px;
	max-width: 550px;
	margin: 30px 0px 50px 90px;
}

.titleBlock__title {
	color: var(--white, #fbfbfb);
	font-family: "Alumni Sans";
	font-size: 76px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
}

.titleBlock p {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.18px;
}
.reach-img img {
	border-radius: 16px;
	width: 100%;
	height: 100%;
	/* min-width: 660px; */
}

.container {
	width: 100%;
	max-height: 100%;
	/* opacity: 0; */
	/* overflow: hidden; */
	transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

.show-container {
	max-height: 100%; /* Максимальна висота блоку, яку ви хочете встановити */
	opacity: 1;
	padding: 0px 185px;
	/* overflow: hidden; */
}
.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 160px;
	width: 100%;
	/* overflow: hidden; */
	padding: 0px 185px;
}

.container ::-webkit-scrollbar {
	display: none;
}

.navigationReach ul {
	display: flex;
	flex-direction: row;
	gap: 50px;
	/* width: 100%; */
}

.navigationReach li {
	color: var(--green, #01594d);
	font-family: "Alumni Sans";
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
	opacity: 0.4;
}

.container__navigationItems {
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
	overflow-y: visible;
	gap: 30px;
	padding-bottom: 20px;
	transition: all 0.5s ease;
	width: 100%; /* Ширина контейнера */
	margin-top: 40px;
	scroll-behavior: smooth;
}

.item {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 480px;
	justify-content: space-between;
	border-radius: 20px;
	background: var(--light-green, #cfe8d0);
	padding: 22px 0px 22px 61px;
	flex-shrink: 0;
	width: 100%;
	display: none;
	transition: opacity 0.5s ease;
}

.container__navigationItems .item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.container__navigationItems .item.show-item {
	opacity: 1;
	transform: translateY(0);
}

/* Стилі для підкреслення */
.navigationReach li {
	position: relative;
	overflow: hidden;
	opacity: 0.5; /* Задаємо початкову прозорість */
	transition: opacity 0.3s; /* Додаємо плавний перехід */
	cursor: pointer;
}

.navigationReach li.active {
	opacity: 1; /* Змінюємо прозорість для обраного елементу */
}

.navigationReach li:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--green, #01594d);
	transition: width 0.3s ease;
	opacity: 1;
}

.navigationReach li.active:after {
	width: 100%;
}

.item {
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.5s ease;
	transform: translateX(100%);
}

.show-item {
	display: flex;
	opacity: 1;
	transform: translateX(0%);
}

.hide-item {
	display: none;
	opacity: 0;
	transform: translateX(-100%);
}

.active {
	width: auto;
}

.itemImg {
	width: 100%;
	height: 100%;
	max-width: 850px;
}

.itemImgBlock {
	width: 100%;
	height: 100%;
	max-width: 510px;
	max-height: 360px;
	padding-right: 60px;
}

.titleWrap {
	max-width: 480px;
}

.titleWrap span {
	color: var(--black, #131415);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	letter-spacing: 0.56px;
	text-transform: uppercase;
	opacity: 0.7;
}

.titleWrap h2 {
	color: var(--black, #131415);
	font-family: "Alumni Sans";
	font-size: 72px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
}
.titleWrap p {
	color: var(--black, #131415);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.18px;
	margin-top: 28px;
}

.buttonTitle {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;

	width: fit-content;

	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	letter-spacing: 0.18px;

	border-radius: 100px;
	background: var(--green, #01594d);

	background-color: #01594d;

	margin-top: 40px;
	padding: 11px 28px;
}

@media screen and (max-width: 1330px) {
	.container {
		padding: 0px 60px;
	}

	.mainTitleBlock {
		gap: 2%;
		padding: 45px;
	}

	.titleBlock {
		margin: 0px;
		max-width: 50%;
	}

	.titleBlock__title {
		font-size: 56px;
	}

	.titleBlock p {
		font-size: 16px;
	}

	.item {
		padding: 22px 0px 22px 35px;
	}

	.itemImg {
		max-width: 80%;
		max-height: 80%;
	}

	.itemImgBlock {
		padding-right: 35px;
	}
}

@media screen and (max-width: 980px) {
	.mainTitleBlock {
		flex-direction: column;
	}

	.titleBlock {
		max-width: 100%;
	}

	.reach-img {
		margin-top: 5%;
	}

	.navigationReach li {
		font-size: 28px;
	}

	.item {
		flex-direction: column;
		height: 100%;
		overflow-y: visible;
		align-items: end;
	}

	.titleWrap {
		margin-right: 20%;
	}

	.itemImgBlock {
		/* padding: 0px auto; */
		margin: 5% auto;
	}
}

@media screen and (max-width: 600px){
	.titleBlock__title{
		font-size: 48px;
	}

	.mainTitleBlock{
		padding: 48px 10px 10px 10px;
	}

	.reach-wrap{
		margin: 0px;
		margin-top: 20px;
	}

	.navigationReach ul{
		gap: 12px;
	}

	.navigationReach li{
		font-size: 23px;
	}

	.container{
		padding: 0px 10px;
	}

	.titleWrap h2{
		font-size: 44px;
	}

	.titleWrap p{
		font-size: 16px;
	}

	.titleWrap a{
		font-size: 16px;
	}

	.buttonTitle{
		padding: 11px 13px;
	}

	.container__navigationItems{
		overflow-x: unset;
	}

	.item{
		padding: 40px 0px 0px 15px;
	}

	.container-reach{
		margin-bottom: 120px;
	}
}

@media screen and (max-width: 415px){
	.navigationReach li{
		font-size: 20px;
	}

	.itemImgBlock{
		padding-right: 15px;
	}
}

@media screen and (max-width: 375px){
	.navigationReach li{
		font-size: 19px;
	}
}

@media screen and (max-width: 355px){
	.navigationReach li{
		font-size: 17px;
	}
}

/* ------------------------------------------------------------------- */

.container-footer {
	background: #01594d;
}

.footer-content {
	/* margin-top: 160px; */
	display: flex;
	flex-direction: row;
	padding: 65px 185px;
}

.footer-logos {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 320px;
}

.footer-logos__main-info {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 22.4px */
	letter-spacing: 0.16px;
}

.footer-logos__partner-info {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 19.6px */
	letter-spacing: 0.42px;
	text-transform: uppercase;
}

.footer-logos__partner {
	display: flex;
	gap: 12px;
}

.footer-logos__partner img {
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	padding: 8px 12px;
	width: 50%;
	height: 100%;
}

.footer-navigation {
	display: flex;
	flex-direction: row;
	gap: 98px;
	margin-left: 80px;
	padding-top: 30px;
}

.footer-navigation__column1 {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer-navigation__column1 a {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;

	/* button 18 */
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	/* 26.64px */
	letter-spacing: 0.18px;
}

.footer-navigation__column1 a:hover {
	text-decoration: underline;
	color: var(--light-green, #cfe8d0);
}

.footer-navigation__column2 {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer-navigation__column2 a {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;

	/* button 18 */
	font-family: Raleway;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	/* 26.64px */
	letter-spacing: 0.18px;
}

.footer-navigation__column2 a:hover {
	text-decoration: underline;
	color: var(--light-green, #cfe8d0);
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-left: 120px;
	padding-top: 30px;
}

.footer-contacts a:hover {
	text-decoration: underline;
	color: var(--light-green, #cfe8d0);
}

.footer-contacts__phone {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white, #fbfbfb);
	font-family: Alumni Sans;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
}

.footer-contacts__email {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white, #fbfbfb);
	font-family: Alumni Sans;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
	/* 31.68px */
}

.footer-social-networks {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.footer-social-networks__instagram {
	border-radius: 100px;
	background: rgba(251, 251, 251, 0.1);
	padding: 16px;
	transition: background-color 0.3s ease-in;
}

.footer-social-networks__instagram:hover {
	background: #fff;
	padding: 16.5px;
}

.footer-social-networks__instagram:hover img {
	content: url(/image/icon-footer-instagram-green.svg);
}

.footer-social-networks__facebook {
	border-radius: 100px;
	background: rgba(251, 251, 251, 0.1);
	padding: 16px;
	transition: background-color 0.3s ease-in;
}

.footer-social-networks__facebook:hover {
	background: #fff;
	padding: 16px 20px;
	border-radius: 100px;
}

.footer-social-networks__facebook:hover img {
	content: url(/image/icon-footer-facebook-green.svg);
}

.white-line {
	border: none;
	height: 1px;
	opacity: 0.3;
	background: var(--white, #fbfbfb);
	margin: 0px 48px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding: 32px 185px;
}

.footer-bottom__laws {
	color: var(--white, #fbfbfb);
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	/* 19.6px */
	letter-spacing: 0.14px;
}

.footer-bottom__politic {
	color: var(--white, #fbfbfb);
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	/* 19.6px */
	letter-spacing: 0.14px;
}

.footer-bottom__designer {
	color: var(--white, #fbfbfb);
	text-align: right;
	font-family: Raleway;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	/* 19.6px */
	letter-spacing: 0.14px;
}

.mobile-header {
	background-color: #01594d;
	display: none;
	flex-direction: row;
}

.header-info {
	width: 100%;
}

.header-text {
	display: flex;
	flex-direction: row;
	gap: 240px;
	padding: 68px 0px 68px 60px;
}

.header-text ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header-text a {
	color: var(--white, #fbfbfb);
	font-family: Alumni Sans;
	font-size: 72px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
}

.header-text a:hover {
	text-decoration: underline;
	color: var(--light-green, #cfe8d0);
}

.header-white-line {
	border: none;
	height: 1px;
	opacity: 0.3;
	background: var(--white, #fbfbfb);
	margin: 0px 48px;
}

.header-navigation {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 48px;
	padding: 50px 60px;
}

.header-navigation a:hover {
	text-decoration: underline;
	color: var(--light-green, #cfe8d0);
}

.header-navigation :last-child {
	justify-content: end;
}

.header-contacts__phone {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white, #fbfbfb);
	font-family: Alumni Sans;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
	min-width: 228px;
}

.header-contacts__email {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white, #fbfbfb);
	font-family: Alumni Sans;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 88%;
}

.header-social-networks {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.header-social-networks__instagram {
	border-radius: 100px;
	background: rgba(251, 251, 251, 0.1);
	padding: 16px;
	transition: background-color 0.3s ease-in;
}

.header-social-networks__instagram:hover {
	background: #fff;
	padding: 16.5px;
}

.header-social-networks__instagram:hover img {
	content: url(/image/icon-footer-instagram-green.svg);
}

.header-social-networks__facebook {
	border-radius: 100px;
	background: rgba(251, 251, 251, 0.1);
	padding: 16px;
	transition: background-color 0.3s ease-in;
}

.header-social-networks__facebook:hover {
	background: #fff;
	padding: 16px 20px;
	border-radius: 100px;
}

.header-social-networks__facebook:hover img {
	content: url(/image/icon-footer-facebook-green.svg);
}

.header-language-change {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.header-language-change__layout {
	color: var(--white, #fbfbfb);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Raleway;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 148%;
	letter-spacing: 0.16px;
}

.header-image-wrap {
	width: 34%;
	background-image: url(/image/mobile-header-img.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.header-image {
	width: 100%;
	height: 100%;
	background-image: url(/image/logo-mobile-header.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	display: flex;
	justify-content: end;
}

.close-icon {
	width: 48px;
	height: 48px;
	margin: 28px 28px 0px 0px;
}

.close-icon img {
	padding: 16px;
	background-color: var(--light-green, #cfe8d0);
	width: 48px;
	height: 48px;
	border-radius: 100%;
	transition: background-color 0.3s ease-in;
}

.close-icon img:hover {
	background-color: rgba(207, 232, 208, 0.8);
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(70px);
	transition: opacity 1.5s ease, transform 2s ease;
}

/* -------------------------HEADER--------------------------- */
@media screen and (max-width: 995px) {
	.navigation__item {
		display: none;
	}

	.language-change {
		display: none;
	}

	.contacts-wrap {
		display: none;
	}
}

@media screen and (max-width: 426px) {
	.logo {
		margin: 20px 0px 20px 32px;
	}

	.menu {
		margin-right: 32px;
	}

	.page-navigation {
		padding-left: 32px;
	}
}

@media screen and (max-width: 376px) {
	.logo {
		margin: 10px 0px 10px 10px;
	}

	.menu {
		margin-right: 20px;
	}

	.page-navigation {
		padding-left: 10px;
	}
}

@media screen and (max-width: 348px) and (min-width: 322px) {
	.menu {
		margin-right: 10px;
	}
}

@media screen and (max-width: 340px) and (min-width: 322px) {
	.logo {
		margin-left: 0px;
	}

	.menu {
		margin-right: 0px;
	}
}

@media screen and (max-width: 321px) {
	.logo img {
		width: 158px;
		height: 48px;
	}

	.menu__button {
		padding: 12.5px 19.7px;
	}

	a.menu__button :where(span) {
		color: var(--green, #01594d);
		font-variant-numeric: lining-nums proportional-nums;
		font-family: Raleway;
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 148%;
		letter-spacing: 0.14px;
	}
}

/* -------------------------HEADER--------------------------- */

/* -------------------------FOOTER--------------------------- */
@media screen and (max-width: 1224px) {
	.footer-content {
		padding: 65px 60px;
	}

	.footer-logos__main-info {
		font-size: 14px;
	}

	.footer-logos__partner-info {
		font-size: 14px;
	}

	.footer-navigation__column1 a {
		font-size: 16px;
	}

	.footer-navigation__column2 a {
		font-size: 16px;
	}

	.footer-contacts__phone {
		font-size: 30px;
	}

	.footer-contacts__email {
		font-size: 30px;
	}
}

@media screen and (max-width: 1025px) {
	.footer-contacts {
		margin-left: 88px;
	}

	.footer-content {
		padding: 65px 45px;
	}

	.footer-bottom {
		padding: 32px 60px;
	}
}

@media screen and (max-width: 995px) {
	.footer-contacts {
		margin-left: 50px;
	}

	.footer-navigation {
		margin-left: 50px;
	}
}

@media screen and (max-width: 960px) {
	.footer-content {
		flex-direction: column;
		align-items: baseline;
	}
}

@media screen and (max-width: 426px) {
	.footer-content {
		flex-direction: column;
		padding: 68px 32px 0px 32px;
	}

	.footer-logos__partner {
		width: 100%;
	}

	.footer-logos__partner img {
		height: auto;
		width: 100%;
	}

	.footer-navigation {
		margin: 60px 0px 0px 0px;
		padding: 0px;
	}

	.footer-contacts {
		margin: 60px 0px 0px 0px;
		padding: 0px;
	}

	.container-footer :where(.white-line) {
		margin: 60px 32px 0px 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 28px;
		padding: 0px 32px 40px 32px;
		margin: 40px 0px;
	}

	.footer-bottom__designer {
		text-align: unset;
	}
}

@media screen and (max-width: 376px) {
	.footer-content {
		padding: 68px 10px 0px 10px;
	}

	.footer-logos__partner {
		width: 100%;
	}

	.footer-bottom {
		padding: 0px 10px 40px 10px;
	}

	.container-footer :where(.white-line) {
		margin: 60px 10px 0px 10px;
	}
}

@media screen and (max-width: 321px) {
	.footer-logos__main img {
		width: 100%;
		height: 65px;
	}

	.footer-logos__main-info {
		margin-top: 20px;
	}

	.footer-logos__partner-info {
		font-size: 12px;
	}

	.footer-logos__partner {
		width: 100%;
	}

	.footer-logos__partner img {
		width: 49%;
	}
}

@media screen and (max-width: 265px) {
	.footer-navigation {
		gap: 20px;
	}

	.footer-contacts__phone {
		font-size: 25px;
	}

	.footer-contacts__email {
		font-size: 25px;
	}
}

/* -------------------------FOOTER--------------------------- */
