:root {
	--wa: #32AB3E;
	--white: #FFF;
	--light-green: #448D75;
	--green: #20463B;
	--black: #000;
	--gray: #949494;
	--light-gray: #F7F7F7;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	line-height: 1.15;
	background-color: var(--light-gray);

	/*-webkit-font-smoothing: subpixel-antialiased;*/
}

img {
	display: block;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 48px;
}

.button {
	overflow: hidden;
	display: inline-block;

	height: 40px;
	padding: 0 28px;
	color: var(--white);
	font-size: 12px;
	font-weight: 400;
	font-family: 'Ubuntu', sans-serif;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-overflow: ellipsis;
	line-height: 38px;
	white-space: nowrap;
	background-color: var(--green);
	box-shadow: none;
	border: 1px solid var(--light-green);
	border-width: 1px 4px;
	border-radius: 40px;
	cursor: pointer;

	transition: color .25s linear, background-color .25s linear, border-color .25s linear, border-radius .25s linear;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.button:hover {
	background-color: var(--wa);
	border-color: var(--wa);
	border-radius: 0;
}

.button:active {
	line-height: 40px;
}

.button.black {
	background-color: var(--black);
	border-color: var(--black);
}

.button.black:hover {
	background-color: var(--wa);
	border-color: var(--wa);
}

.input {
	display: block;

	width: 100%;
	height: 40px;
	padding: 12px 20px 12px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'DM Sans', sans-serif;
	line-height: 19px;
	background-color: #FFF;
	border: 1px solid #C0C0C0;
	border-radius: 4px 0 0 4px;
	/*box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, .08);*/
	box-shadow: none;
	outline: none;

	transition: background-color .13s linear, border-color .13s linear;

	-webkit-appearance: none;
}

.input.err {
	border-color: #EE0C0C;
}

.input:hover {
	border-color: var(--boring);
}

.input:focus {
	background-color: #FFF;
	border-color: var(--blue);
	box-shadow: none;
}

.error {
	width: 100%;
	text-align: center;
}

.error span {
	color: #EE0C0C;
}

.input:-moz-placeholder {
	color: #7C7D7D !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

:-ms-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

::-moz-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

:-moz-placeholder {
	color: #7C7D7D;
	line-height: normal;
}


/* global */

.global_header {

}

.global_title {
	color: var(--green);
	font-size: 50px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
}

.global_descr {
	margin-top: 8px;
	color: var(--gray);
	font-size: 16px;
	line-height: 160%;
}

.global_header.center .global_title,
.global_header.center .global_descr {
	text-align: center;
}

.global_header.green .global_title,
.global_header.green .global_descr {
	color: var(--green);
}

/* global */



/* header */

.header {
	padding: 12px 0;
	background: linear-gradient(270deg, #20463B 0%, #266351 100%);
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header_logo {
	height: 32px;
}

.header_logo img {
	width: auto;
	height: 100%;
}

.header_nav {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 44px;
}

.header_nav a {
	color: var(--light-green);
	font-size: 12px;
	text-transform: uppercase;
	cursor: pointer;

	transition: color .23s ease-in-out;
}

.header_nav a:hover {
	color: var(--white);
}

.header_nav a.active {
	color: var(--white);
}

.header_phone {
	margin-right: 32px;
}

.header_phone a {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
	cursor: pointer;

	transition: color .23s ease-in-out;
}

.header_phone a:hover {
	color: var(--wa);
}

.header_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-right: 32px;
}

.header_soc {
	width: 32px;
	height: 32px;
	padding: 8px;
	background-color: rgba(255, 255, 255, .08);
	border-radius: 50%;

	transition: border-radius .23s ease-in-out, transform .23s ease-in-out;
}

.header_soc.wa {
	background-color: var(--wa);
}

.header_soc:hover {
	background-color: var(--wa);
	border-radius: 0;

	transform: scale(1.1);
}

.header_soc img {
	width: 100%;
	height: auto;
}

.header_button {

}

.header_bar {
	display: none;

	width: 88px;
	height: 40px;
	margin-left: 40px;
	background-image: url('../images/bar.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/* header */



/* bar */

.bar {
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;

	max-width: 600px;
	width: 100%;

	background-color: var(--green);
	z-index: 9;

	transition: transform .25s ease-out;
	transform: translateX(100%);
}

.bar_close {
	position: absolute;
	top: 20px;
	right: 50px;

	width: 44px;
	height: 40px;
	background: url('../images/close.svg') center center no-repeat;
	background-size: 100% auto;
	cursor: pointer;
}

.bar.active {
	transform: translateX(0) !important;
}

.bar_scroll {
	overflow-y: scroll;
	position: relative;

	width: calc(100% + 30px);
	height: 100vh;
	padding: 0 30px 0 0px;

	-webkit-overflow-scrolling: touch;
}

.bar_scroll::-webkit-scrollbar {
	width: 0;
}

.bar_scroll {
	-ms-overflow-style: none;
}

.bar_scroll {
	overflow: -moz-scrollbars-none;
}

.bar_nav {
	padding: 80px 32px;
}

.bar_nav_li {
	padding: 8px 0;
	text-align: center;
}

.bar_nav_li a {
	color: var(--white);
	font-size: 27px;
	text-align: center;
	line-height: 160%;

	transition: color .23s ease-out;
}

.bar_nav_li a:hover {
	color: var(--wa);
}

.bar_nav_li a.active {
	color: var(--wa);
}

.bar_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	gap: 20px;

	margin-top: 40px;
}

.header_signin {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

/* bar */



/* general */

.general {
	background-image: url('../images/general.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.general_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	min-height: calc(100vh - 68px);
	text-align: center;
}

.general_title {
	color: var(--white);
	font-size: 50px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
	line-height: 120%;
}

.general_author {
	margin-top: 16px;
	color: var(--white);
	font-size: 16px;
	font-style: italic;
}

.general_button {
	margin-top: 40px;
}

/* general */



/* perks */

.perks {
	padding-bottom: 80px;
}

.perks_group {
	display: flex;
	flex-wrap: wrap;

	margin: -54px -20px -20px;
}

.perks_block {
	width: calc(100% / 3 - 40px);
	margin: 20px;
	padding: 32px;
	background-color: var(--white);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

.perks_title {
	color: var(--green);
	font-size: 40px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
}

.perks_descr {
	color: var(--black);
	font-size: 21px;
	line-height: 160%;
}

/* perks */



/* why */

.why {
	background-color: var(--green);
}

.why_group {
	display: flex;
	flex-wrap: wrap;
}

.why_image {

}

.why_image img {
	width: 100%;
	max-width: 600px;
	height: auto;
}

.why_info {
	padding: 80px;
}

.why_title {
	color: var(--white);
	font-size: 50px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
	line-height: 120%;
}

.why_list {

}

.why_list_li {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

	margin-top: 40px;
}

.why_icon {
	width: 48px;
	height: 48px;
	text-align: center;
	border: 1px solid var(--light-green);
	border-radius: 50%;
}

.why_icon span {
	display: block;

	margin-top: -20px;
	color: var(--wa);
	font-size: 60px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
}

.why_text {
	color: var(--white);
	font-size: 36px;
	font-family: 'Teko', sans-serif;
	line-height: 120%;
}

/* why */



/* explore */

.explore {
	padding: 80px 0;
}

.explore_group {

}

.explore_header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
}

.explore_header_button {
	margin-top: 20px;
}

.explore_blocks {
	display: flex;
	flex-wrap: wrap;

	margin: -20px;
	padding-top: 40px;
}

.explore_block {
	width: calc(25% - 40px);
	margin: 20px;
	background-color: var(--white);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

.explore_image {

}

.explore_image img {
	width: 100%;
	height: auto;
	border-radius: 32px 32px 0 0;
}

.explore_info {
	padding: 32px;
	color: var(--green);
	font-size: 40px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
	line-height: 120%;
}

/* explore */



/* cta */

.cta {
	padding: 80px 0;
	background-image: url('../images/general.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.cta_group {
	width: 60%;
}

.cta_title {
	color: var(--white);
	font-size: 40px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
	line-height: 120%;
}

.cta_descr {
	margin-top: 20px;
	color: var(--white);
	font-size: 16px;
	line-height: 180%;
}

.cta_button {
	margin-top: 20px;
}

/* cta */



/* footer */

.footer {
	padding: 80px 0;
	background: linear-gradient(270deg, #20463B 0%, #266351 100%);
}

.footer_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.footer_logo {
	height: 32px;
}

.footer_logo img {
	width: auto;
	height: 100%;
}

.footer_descr {
	margin-top: 12px;
	color: var(--light-green);
	font-size: 12px;
}

.footer_phone {
	margin-top: 20px;
}

.footer_phone a {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;

	transition: color .23s ease-in-out;
}

.footer_phone a:hover {
	color: var(--wa);
}

.footer_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-top: 12px;
}

.footer_soc {
	width: 32px;
	height: 32px;
	padding: 8px;
	background-color: rgba(255, 255, 255, .08);
	border-radius: 50%;

	transition: border-radius .23s ease-in-out, transform .23s ease-in-out;
}

.footer_soc:hover {
	background-color: var(--wa);
	border-radius: 0;

	transform: scale(1.1);
}

.footer_soc img {
	width: 100%;
	height: auto;
}

.footer_copy {
	margin-top: 20px;
	color: var(--light-green);
	font-size: 12px;
}

/* footer */



/* about */

.about {
	padding: 80px 0;
	background-color: var(--white);
}

.about_group {

}

.about_header {

}

.about_image {
	margin-top: 40px;
}

.about_image img {
	width: 100%;
	height: auto;
	border-radius: 32px;
}

.about_label {
	position: relative;

	max-width: 380px;
	margin: -54px auto 0;
	padding: 20px;
	background-color: var(--white);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

.about_label_title {
	color: var(--green);
	font-size: 40px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
	text-align: center;
}

.about_label_suntitle {
	color: var(--gray);
	font-size: 16px;
	text-align: center;
}

.about_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;

	margin-top: 40px;
}

.about_block {
	width: calc(50% - 40px);
	color: var(--black);
	font-size: 18px;
	line-height: 180%;
}

/* about */



/* author */

.author {
	overflow: hidden;

	padding: 80px 0 40px;
}

.author_group {

}

.author_blocks {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
}

.author_image {
	width: calc(50% - 40px);
}

.author_image img {
	width: 100%;
	height: auto;
	border-radius: 32px;
	border: 8px solid var(--white);
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

.author_info {
	width: calc(50% - 40px);
}

.author_title {
	color: var(--green);
	font-size: 36px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;
}

.author_descr {
	margin-top: 28px;
	color: var(--black);
	font-size: 16px;
	line-height: 180%;
}

.author_serts {

}

.author_serts_title {
	position: relative;

	margin-top: 40px;
	text-align: center;
}

.author_serts_title:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 80px;
	right: 80px;

	height: 1px;
	background-color: #CACCCB;
}

.author_serts_label {
	display: inline-block;
	position: relative;

	padding: 0 80px;
	color: var(--green);
	font-size: 40px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
	background-color: var(--light-gray);
	z-index: 2;
}

.author_serts_blocks {
	display: flex;
	flex-wrap: wrap;

	margin: 20px -20px -20px;
}

.author_serts_block {
	width: calc(100% / 3);
	padding: 20px 20px 40px;
}

.author_serts_slide {
	padding: 32px 32px 24px;
	color: var(--green);
	font-size: 27px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
	line-height: 140%;
	background-color: var(--white);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

/* author */



/* feedback */

.feedback {
	overflow: hidden;

	padding: 80px 0;
	background-color: var(--white);
}

.feedback_group {
	max-width: 640px;
	margin: 0 auto;
}

.feedback_header {

}

.feedback_avatars {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	margin-top: 40px;
}

.feedback_avatar {
	width: 108px;
	cursor: pointer;
}

.feedback_avatar img {
	width: calc(100% - 16px);
	height: auto;
	margin: 8px;
	border: 2px solid transparent;
	border-radius: 50%;

	transition: border-color .23s ease-in-out;
}

.slick-current .feedback_avatar img {
	border-color: var(--light-green);
}

.feedback_texts {
	margin-top: 40px;
}

.feedback_slide {

}

.feedback_text {
	color: var(--green);
	font-size: 21px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
	text-align: center;
	line-height: 180%;

}

.feedback_name {
	margin-top: 40px;
	color: var(--black);
	font-size: 16px;
	text-align: center;
}

.feedback_who {
	margin-top: 4px;
	color: var(--gray);
	font-size: 14px;
	text-align: center;
}

/* feedback */



/* gallery */

.gallery {
	overflow: hidden;

	padding: 20px 0;
}

.gallery_group {
	display: flex;
	flex-wrap: wrap;
}

.gallery_block {
	width: 340px;
	padding: 20px;
}

.gallery_block img {
	width: 100%;
	height: auto;
	border-radius: 32px;
}

/* gallery */



/* services */

.services {
	padding: 80px 0;
}

.services_group {

}

.services_header {

}

.services_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;

	margin-top: 40px;
}

.services_block {
	width: calc(50% - 20px);
	background-color: var(--white);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
}

.services_image {

}

.services_image img {
	width: 100%;
	height: auto;
	border-radius: 32px 32px 0 0;
}

.services_info {
	padding: 32px;
}

.services_title {
	color: var(--green);
	font-size: 40px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
}

.services_title span {
	font-size: 27px;
}

.services_descr {
	color: var(--gray);
	font-size: 16px;
	line-height: 180%;
}

.services_descr.height {
	overflow: hidden;

	max-height: 58px;
}

.services_descr.active {
	max-height: inherit;
}

.services_etc {
	color: var(--green);
	font-size: 16px;
	line-height: 180%;
	text-decoration: underline;
	cursor: pointer;
}

.services_etc:hover {
	text-decoration: none;
}

.services_list {
	margin-top: 20px;
}

.services_list_li {
	margin-top: 8px;
	color: var(--black);
	font-size: 13px;
	line-height: 140%;
}

.services_list_li span {
	display: block;

	color: var(--green);
	font-size: 21px;
	font-weight: 500;
	font-family: 'Teko', sans-serif;
}

.services_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 20px;
}

/* services */



/* contacts */

.contacts {
	padding: 80px 0;
	background-image: url('../images/contacts.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.contacts_group {

}

.contacts_header {

}

.contacts_blocks {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 32px;

	margin-top: 40px;
}

.contacts_info {
	width: 400px;
	padding: 32px;
	background-color: rgba(255, 255, 255, .60);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
	backdrop-filter: blur(10px);
}

.contacts_block {
	margin-top: 20px;
}

.contacts_block:first-child {
	margin-top: 0;
}

.contacts_label {
	color: var(--gray);
	font-size: 16px;
}

.contacts_link {
	margin-top: 12px;
}

.contacts_link a {
	color: var(--green);
	font-size: 21px;
	font-weight: 700;
	font-family: 'Teko', sans-serif;

	transition: color .23s ease-in-out;
}

.contacts_link a:hover {
	color: var(--wa);
}

.contacts_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	margin-top: 8px;
}

.contacts_soc {
	width: 32px;
	height: 32px;
	padding: 8px;
	background-color: rgba(255, 255, 255, .08);
	border-radius: 50%;

	transition: border-radius .23s ease-in-out, transform .23s ease-in-out;
}

.contacts_soc.wa {
	background-color: var(--wa);
}

.contacts_soc.fb {
	background-color: #0057FF;
}

.contacts_soc.ig {
	background-color: #000;
}

.contacts_soc:hover {
	border-radius: 0;

	transform: scale(1.1);
}

.contacts_soc img {
	width: 100%;
	height: auto;
}

.contacts_widget {
	overflow: hidden;

	width: calc(100% - 432px);
	background-color: rgba(255, 255, 255, .60);
	border-radius: 32px;
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
	backdrop-filter: blur(10px);
}

.contacts_button {
	margin-top: 32px;
}

/* contacts */



@media only screen and (max-width: 1439px) {
	/* perks */

	.perks_descr {
		font-size: 18px;
	}

	/* perks */
}

@media only screen and (max-width: 1300px) {
	/* why */

	.why_image {
		background-color: #1C3F35;
	}

	.why_image img {
		max-width: 300px;
	}

	.why_info {
		width: calc(100% - 300px);
		padding-left: 60px;
		padding-right: 60px;
	}

	.why_title br {
		display: none;
	}

	.why_list {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}

	.why_list_li {
		width: 33%;
		padding-right: 20px;
	}

	.why_text {
		width: 100%;
		font-size: 21px;
	}

	.why_icon {
		width: 36px;
		height: 36px;
	}

	.why_icon span {
		margin-top: -10px;
		font-size: 40px;
	}

	/* why */
}

@media only screen and (max-width: 1300px) {
	/* header */

	.header_bar {
		display: block;
	}

	.header_nav {
		display: none;
	}

	.header_logo {
		flex-grow: 1;
	}

	/* header */



	/* bar */

	.bar_header .header_phone {
		margin-right: 0;
	}

	.bar_header .header_socs {
		margin-right: 0;
	}

	/* bar */



	/* explore */

	.explore_block {
		width: calc(50% - 40px);
	}

	/* explore */
}

@media only screen and (max-width: 1000px) {
	.bone {
		max-width: 600px;
		padding: 0 20px;
	}

	/* global */

	.global_title {
		font-size: 36px;
	}

	.global_descr {
		font-size: 14px;
	}

	.global_descr br {
		display: none;
	}

	/* global */



	/* header */

	.header .header_phone,
	.header .header_socs,
	.header .header_button {
		display: none;
	}

	/* header */



	/* general */

	.general_title {
		font-size: 36px;
	}

	.general_title br {
		display: none;
	}

	/* general */



	/* perks */

	.perks {
		padding-bottom: 20px;
	}

	.perks_group {
		margin: -43px -10px -10px;
	}

	.perks_block {
		width: 100%;
		margin: 10px;
		padding: 20px;
		border-radius: 20px;
	}

	.perks_descr br {
		display: none;
	}

	/* perks */



	/* explore */

	.explore {
		padding: 40px 0 20px;
	}

	.explore_blocks {
		margin: -10px;
	}

	.explore_block {
		width: 100%;
		margin: 10px;
		border-radius: 20px;
	}

	.explore_info {
		padding: 20px;
		font-size: 36px;
	}

	.explore_info br {
		display: none;
	}

	.explore_image img {
		border-radius: 20px 20px 0 0;
	}

	/* explore */



	/* cta */

	.cta_group {
		width: 100%;
		text-align: center;
	}

	.cta_title {
		font-size: 36px;
	}

	.cta_descr {
		font-size: 14px;
	}

	/* cta */



	/* why */

	.why_group {
		max-width: 600px;
		margin: 0 auto;
	}

	.why_image {
		display: none;
	}

	.why_info {
		width: 100%;
		padding: 40px;
	}

	.why_title {
		font-size: 36px;
		text-align: center;
	}

	.why_list_li {
		justify-content: center;

		width: 100%;
	}

	.why_text {
		text-align: center;
	}

	/* why */



	/* about */

	.about {
		padding: 40px 0;
	}

	.about_blocks {
		gap: 40px;
	}

	.about_block {
		width: 100%;
		font-size: 16px;
	}

	.about_image img {
		border-radius: 20px 20px 0 0;
	}

	.about_label {
		margin-top: 0;
		border-radius: 0 0 20px 20px;
	}

	/* about */



	/* author */

	.author {
		padding: 20px 0 0;
	}

	.author_blocks {
		gap: 40px;
	}

	.author_image {
		width: 100%;
	}

	.author_image img {
		border-radius: 20px;
	}

	.author_info {
		width: 100%;
	}

	.author_serts_label {
		padding: 0 20px;
		font-size: 36px;
	}

	.author_serts_title:before {
		left: 0;
		right: 0;
	}

	/* author */



	/* services */

	.services {
		padding: 40px 0;
	}

	.services_blocks {
		gap: 20px;
	}

	.services_block {
		width: 100%;
		border-radius: 20px;
	}

	.services_image img {
		border-radius: 20px 20px 0 0;
	}

	.services_buttons .button {
		width: 100%;
	}

	.services_info {
		padding: 20px;
	}

	.services_title {
		font-size: 36px;
	}

	/* services */



	/* feedback */

	.feedback {
		padding: 40px 0;
	}

	/* feedback */



	/* contacts */

	.contacts {
		padding: 40px 0;
	}

	.contacts_blocks {
		gap: 20px;
	}

	.contacts_info {
		padding: 20px;
		border-radius: 20px;
	}

	.contacts_widget {
		width: 100%;
		border-radius: 20px;
	}

	/* contacts */



	/* gallery */

	.gallery_group {
		padding: 0 10px;
	}

	.gallery_block {
		padding: 10px;
	}

	.gallery_block img {
		border-radius: 20px;
	}

	/* gallery */
}