body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 140%;
	color: var(--dark-text, #0D3356);
	overflow-y: auto;
}

/*==== scroll ===============*/
body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background-color: #DCE0E4;
}

body::-webkit-scrollbar-thumb {
	background-color: #87A7D0;
	border-radius: 5px;
}


/*========================*/
.wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #F7FBFF;
	overflow-y: auto;
	overflow-x: hidden;
}

.content {
	flex: 1 0 auto;
	padding-top: 120px;
	padding-bottom: 80px;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

/*========header============*/
.header {
	height: 80px;
	background: linear-gradient(266deg, #0298CA -2.63%, #194E91 106.03%);
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
	position: fixed;
	z-index: 555;
	width: 100%;
}

.header__container {
	flex-grow: 1;
	display: flex;
}

.header__row {
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-header {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-family: 'Merriweather', serif;
	color: #F7FBFF;
	font-weight: 700;
}

.header__btns {
	display: flex;
	column-gap: 15px;
}


/*===== titles ======*/
.page-title,
.section-title {
	font-family: 'Merriweather', serif;
	letter-spacing: 1px;
}

.page-title {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.20);
	font-family: Merriweather;
	font-size: 5.8rem;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

.page-subtitle {
	/* head shadow */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.20);
	font-family: Merriweather;
	font-size: 2rem;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	/* 41.6px */
	letter-spacing: 0.32px;
}

@media (max-width: 1000px) {
	.page-title {
		font-size: 4rem;
	}

	.page-subtitle {
		/* head shadow */
		font-size: 1.5rem;

	}

}

@media (max-width: 500px) {
	.page-title {
		font-size: 3rem;
	}

	.page-subtitle {
		/* head shadow */
		font-size: 1.5rem;
		line-height: 130%;
	}

}

/* ====== breadscrum ====== */

.breadcrump__container {}

.container {}

.breadcrump__row {
	flex: 1 0 100%;
	display: flex;
	column-gap: 10px;
	flex-wrap: wrap;
}

.breadcrump__link {
	color: #01B1F7;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.20);
	transition: 0.3s;
}

.breadcrump__link:hover {
	color: #01B1F7;
}

.breadcrump__devide {
	color: #01B1F7;
}

.breadcrump__item {}

/* ====== button red ====== */
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 12px 22px 12px;
	border-radius: 20px;
	background: #f8bf11;
	color: #0d3356;
	font-weight: 700;
	letter-spacing: 0.2px;
	line-height: 110%;
	transition: 0.3s ease;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

.btn:hover {
	background: #f5e77d;
}

/* ====== button rose ====== */
.btn-rose {
	/* background: #E27894;
	color: #FAFCFF; */
	background: #f5e77d;
	color: #0d3356;
}

.btn-rose:hover {
	background: #e6d557;
}

/* ====== button red transparent ====== */
.btn-red-transparent {
	background: transparent;
	color: #0d3356;
	border: 1px solid #0d3356;
	padding-top: 9px;
	padding-bottom: 9px;
}

.btn-red-transparent:hover {
	background: #d0e3f5;
	color: #296cab;
	border: 1px solid #296cab;
}

/* ====== button white transparent ====== */
.btn-white-transparent {
	background: transparent;
	color: #F7FBFF;
	border: 1px solid var(--light, #F7FBFF);
	padding: 9px 40px;
}

.btn-white-transparent:hover {
	background: transparent;
	color: #98cee4;
	border: 1px solid #98cee4;
}

/* ====== button text with arrow ====== */
.btn-text {
	display: flex;
	align-items: center;
	column-gap: 15px;
	color: #01B1F7;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.20);
	transition: 0.3s;
}

.icon-arrow {
	position: relative;
	top: 3px;
	color: #01B1F7;
	font-size: 1.5rem;
}

.btn-text:hover,
.icon-arrow:hover {
	color: #87A7D0;
}

/* ====== form inputs =========== */
.input-blok {
	display: flex;
	flex-direction: column;
}

.input-blok {
	margin-bottom: 20px;
}

.input-blok label {
	padding-left: 10px;
	margin-bottom: 5px;
}

.input-blok input {
	border-radius: 10px;
	border: 1px solid var(--unable, #859fb1);
	width: 300px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.input-blok input:focus {
	border-radius: 10px;
	border: 1px solid var(--unable, #068BC0);
	width: 300px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.input-blok textarea {
	border-radius: 10px;
	border: 1px solid var(--unable, #859fb1);
	width: 300px;
	height: 100px;
	resize: none;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.input-blok textarea:focus {
	border-radius: 10px;
	border: 1px solid var(--unable, #068BC0);
	width: 300px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}


/* ===== .groups-page__footer === */
.footer {
	background: linear-gradient(266deg, #0298CA -2.63%, #194E91 106.03%);
	padding-top: 60px;
	padding-bottom: 0px;
}

.footer__container {
	align-items: start;
	column-gap: 20px;
}

.footer__ozp-column {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
}

.footer__logo {
	width: 267px;
	height: 113px;
	position: relative;
	margin-bottom: 40px;
}

.footer__logo img {
	position: absolute;
	object-fit: contain;
	top: 0;
	left: 0;
	width: 100%;
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	color: #F7FBFF;
	margin-bottom: 30px;
}

.footer__contacts span:first-child {
	padding-right: 10px;
	position: relative;
	top: 3px;
	font-size: 1.25rem;
}

.footer__contacts .icon-map_point {
	font-size: 1.5rem;
}

.footer__contacts a,
.footer__social-links a {
	color: #F7FBFF;
	transition: 0.3s;
}

.footer__contacts a:hover,
.footer__social-links a:hover {
	color: #98cee4;
}


.social-links {
	display: flex;
	column-gap: 20px;
}

.social-links a {
	font-size: 2.5rem;
	position: relative;
	transition: 0.5s;
}

.social-links a:hover {
	color: #98cee4;
	transform: translateY(-5px);
}

/*===================================*/
.footer__form-column {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	row-gap: 25px;
	padding-bottom: 40px;
}

.form-column__title {
	font-family: Merriweather;
	font-size: 2rem;
	font-weight: 700;
	line-height: 120%;
	color: #F7FBFF;
}

.form-column__form {
	width: 300px;
	display: flex;
	flex-direction: column;
}

.form-column__form label {
	color: #F7FBFF;
}

.footer-form__btn {
	padding-top: 20px;
}

.footer-form__btn .btn {
	width: 100%;
}

.copyright__container {
	padding: 20px;
	border-top: 1px solid #F7FBFF;
}

.copyright__container p {
	color: #F7FBFF;
	text-align: center;
}

@media (max-width: 650px) {
	.footer__container {
		flex-direction: column;
		row-gap: 40px;
		align-items: center;
	}

	.footer__form-column {
		order: 1;
		align-items: center;
	}

	.footer__ozp-column {
		order: 2;
		margin-bottom: 40px;
	}

	.form-column__title {
		text-align: center;
	}
}