body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	overflow-y: auto;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background-color: #DCE0E4;
}

body::-webkit-scrollbar-thumb {
	background-color: #e4b0be;
	border-radius: 5px;
}

.lock-body {
	overflow-y: hidden;
}

.wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: #EFF3F8;
}

.content {
	flex: 1 1 auto;
	padding-top: 120px;
	padding-bottom: 80px;
}

.main {
	padding-top: 100px;
}

._container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

/*===== titles ======*/
.page-title,
.section-title {
	font-family: 'Merriweather', serif;
	letter-spacing: 1px;
}

/*====== bot-border-title ====== */
.bot-border-title {
	font-family: 'Merriweather', serif;
	font-size: 2.5rem;
	line-height: 120%;
	font-weight: 600;
	letter-spacing: 0.2px;
	padding-bottom: 30px;
	position: relative;
}

.bot-border-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	height: 1px;
	background: #73ADF4;
}






/* ====== bread-scrum ====== */
.bread-scrum {
	width: 100%;
	margin-bottom: 40px;
}

.bread-scrum__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 10px;
}

.bread-scrum__link {
	color: #73ADF4;
	cursor: pointer;
	transition: 0.3s;
}

.bread-scrum__devider {
	color: #73ADF4;
}

.bread-scrum__link:hover {
	color: #1B3E6A;
}

.bread-scrum__the-page {
	color: #1B3E6A;
}


/* ====== button red ====== */
.btn {
	display: inline-flex;
	padding: 8px 20px 8px 25px;
	border-radius: 20px;
	background: #CA0538;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 300px;
	color: #FAFCFF;
	letter-spacing: 0.2px;
	line-height: 130%;
	transition: 0.3s ease;
	cursor: pointer;
}

.btn span {
	line-height: 130%;
}

.btn i {
	font-size: 1.5rem;
	line-height: 100%;
	color: #FAFCFF;
}

.btn:hover {
	background: #CA6882;
}

/* ====== button transparent-red ====== */
.btn-transparent-red {
	background-color: transparent;
	border: 1px solid #CA0538;
	color: #CA0538;
}

.btn-transparent-red i {
	color: #CA0538;
}

.btn-transparent-red:hover {
	background: #f5ecee;
	border: 1px solid #CA6882;
	color: #CA6882;
}

.btn-transparent-red:hover i {
	color: #CA6882;
}

/* ====== button btn-transparent-white ====== */
.btn-transparent-white {
	background-color: transparent;
	border: 1px solid #fdfcfd;
	color: #fdfcfd;
}

.btn-transparent-white i {
	color: #fdfcfd;
}

.btn-transparent-white:hover {
	background: #CA6882;
	border: 1px solid #fdfcfd;
	color: #fdfcfd;
}

.btn-transparent-white:hover i {
	color: #fdfcfd;
}

@media (max-width: 400px) {
	.btn {
		width: 100%;
	}
}

/* ====== see more btn =========== */
.see-more-btn {
	padding: 0px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.see-more-btn span {
	font-weight: 600;
	color: #068bc0;
	cursor: pointer;
	transition: 0.3s;
}

.see-more-btn span:hover {
	color: #73adf4;
}

/* ===== header-link underline========== */
.home-page-item,
.services-page-item,
.events-page-item,
.articles-page-item,
.magazin-page-item {
	position: relative;
}

.home-page .home-page-item:after,
.services-page .services-page-item:after,
.events-page .events-page-item:after,
.articles-page .articles-page-item:after,
.magazin-page .magazin-page-item:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #73ADF4;
	animation: menu-link-underline 0.3s;
}

@keyframes menu-link-underline {
	0% {
		left: 50%;
		transform: scale(0);
	}

	100% {
		left: 0;
		transform: scale(1);
	}
}


/* ===== search block ==========*/
.serch-block {
	width: 100%;
}

.serch-block__row {
	display: flex;
}

.serch-block__btn {
	width: 70px;
	height: 40px;
	border-radius: 40px 0 0 40px;
	background: #CA6882;
	position: relative;
	transition: 0.3s;
}

.serch-block__btn:hover {
	background: #e6aaba;
}

.serch-block__btn img {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 90%;
	height: 90%;
}

.serch-block__input {
	border-radius: 0 35px 35px 0;
	display: block;
	flex: 1 1 auto;
	padding-left: 20px;
	display: flex;
	justify-content: start;
	align-items: center;
}

/*======== form style ===============*/
.input {
	width: 100%;
}

.input input {
	width: 100%;
	padding: 10px 20px;
	color: #06172d;
	border-radius: 30px;
	background: #fafcff;
}

.textarea {
	width: 100%;
}

.textarea textarea {
	width: 100%;
	height: 150px;
	padding: 20px 20px;
	color: #06172d;
	border-radius: 30px;
	background: #fafcff;
	overflow: hidden;
	resize: none;
}

.checkbox {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;

}

.checkbox label {
	padding-left: 15px;
	color: #eff3f8;
	font-size: 1rem;
	text-align: start;
}

.checkbox input {
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: #eff3f8;
}

.form__btn {
	width: 100%;
}

.form__btn .btn {
	width: 100%;
}