/* Reset */
*,
*::before,
*::after {padding: 0; margin: 0; border: 0; -webkit-box-sizing: border-box; box-sizing: border-box;}
a {text-decoration: none; color: inherit;}
ul, ol, li {list-style: none;}
img {vertical-align: top;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}
html, body {line-height: 1;}
textarea, button, input, select {font-family: inherit; font-weight: inherit; font-size: inherit; color: inherit; outline: none;}
button {cursor: pointer; background-color: inherit;}

/* Variables */
:root {
	--light-brown-color: #F6F1EB;
	--light-brown-color-2: #ded6ce;
	--body-bgcolor: var(--light-brown-color);

	--dark-color: #332E2A;
	--brown-color: #8C8074;
	--brown-color-2: #bfb0a1;

	--white-color: #FFFFFF;
	--hover-color: #6D655C;

	--border-radius-16: 16px;
	--border-radius-20: 20px;
	--border-radius-24: 24px;
	--header-height-pc: 92px;
	--header-height-mob: 76px;
	--head-top-padding-pc: calc(24px * 2 + var(--header-height-pc));
	--head-top-padding-mob: calc(20px * 2 + var(--header-height-mob));
}

/*-------------START---------------*/
/*---------------------------------*/

::-webkit-input-placeholder {
	opacity: 1;
	color: var(--brown-color);
}
::-moz-placeholder {
	opacity: 1;
	color: var(--brown-color);
}
:-ms-input-placeholder {
	opacity: 1;
	color: var(--brown-color);
}
::-ms-input-placeholder {
	opacity: 1;
	color: var(--brown-color);
}
::placeholder {
	opacity: 1;
	color: var(--brown-color);
}
::selection {
	background-color: var(--hover-color);
	color: var(--white-color);
}

body {
	background: var(--body-bgcolor);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
	font-style: normal;
	color: var(--dark-color);
	scroll-behavior: smooth;
	min-width: 360px;
	overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	display: block;
	font-family: 'Bodoni Seventytwo ITC', serif;
	font-weight: 400;
	line-height: 1.1;
	text-transform: none;
	color: var(--dark-color);
	margin: 0;
}

h1, .h1 {
	font-size: 42px;
}

h2, .h2 {
	font-size: 38px;
}

h3, .h3 {
	font-size: 34px;
}

h4, .h4 {
	font-size: 30px;
}

h5, .h5, h6, .h6 {
	font-size: 26px;
}

.txt_page h1, .txt_page .h1 { margin-bottom: 10px;}
.txt_page h2, .txt_page .h2,
.txt_page h3, .txt_page .h3,
.txt_page h4, .txt_page .h4,
.txt_page h5, .txt_page .h5,
.txt_page h6, .txt_page .h6 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span {
	display: inline-block;
}


b, strong { font-weight: 600; }
i, em { font-style: normal; }

a {
	color: var(--dark-color);
	transition: all 0.3s ease;
}

a:hover, a:active {
	color: var(--hover-color);
}

img { max-width: 100%; }
video { max-width: 100%; }

p:not(:last-child) {
	margin-bottom: 10px;
}

hr {
	border: none;
	border-top: 1px solid var(--hover-color);
	text-align: center;
	height: 1px;
	margin: 20px auto;
	max-width: 90%;
}

.txt_page ol, .txt_page ol,
.txt_page ul, .txt_page ul {
	margin: 10px 0;
	padding-left: 23px;
}

.txt_page ul li {
	list-style: disc;
}

.txt_page ol li {
	list-style: decimal;
}

.custom-list ul,
.custom-list ol {
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.custom-list ul.twocols,
.custom-list ol.twocols {
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
}

.custom-list ul.twocols li,
.custom-list ol.twocols li {
	flex: 0 1 calc(50% - 10px);
}

.custom-list ul:last-child,
.custom-list ol:last-child {
	margin-bottom: 0;
}

.custom-list ul > li,
.custom-list ol > li {
	position: relative;
	line-height: 1.4;
	display: flex;
}

.custom-list ul > li::before,
.custom-list ol > li::before {
	flex: 0 0 4px;
	display: inline-block;
	content: '';
	margin-top: 10px;
	margin-right: 10px;
	width: 4px;
	height: 4px;
	line-height: 1;
	border-radius: 2px;
	background-color: var(--dark-color);
	overflow: hidden;
}

blockquote {
	border-left: 4px solid var(--hover-color);
	margin: 0 0 10px;
	padding: 6px 10px;
	font-style: normal;
}

.table-wrap {
	overflow-x: auto;
	width: 100%;
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--hover-color);
	margin-bottom: 10px;
}

tr, td {
	border: 1px solid var(--hover-color);
	padding: 6px 12px;
	vertical-align: top;
}

.hidden {
	display: none;
}

@media only screen and (max-width: 1199.98px) {
	h1, .h1 {font-size: 38px;}
	h2, .h2 {font-size: 34px;}
	h3, .h3 {font-size: 28px;}
	h4, .h4,
	h5, .h5, h6, .h6 {font-size: 24px;}
}

@media only screen and (max-width: 767.98px) {
	h1, .h1 {font-size: 36px;}
	h2, .h2 {font-size: 32px;}
	.custom-list ul.twocols,
	.custom-list ol.twocols {
		flex-direction: column;
		flex-wrap: nowrap;
		column-gap: 0;
	}
	.custom-list ul.twocols li,
	.custom-list ol.twocols li {
		flex: 0 1 auto;
	}
}

/*-------------BUTTONS-------------*/

.btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 25px;
	min-width: 230px;
	background-color: var(--dark-color);
	border: none;
	outline: none;
	border-radius: var(--border-radius-20);
	color: var(--white-color);
	height: 52px;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1.3;
	box-shadow: none;
	cursor: pointer;
	transition: all 0.3s ease;
	max-width: 100%;
	overflow: hidden;
}

.btn > .btn__icon {
	font-size: 22px;
	line-height: 0;
}

.btn > .btn__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.btn:active, .btn:focus {
	background-color: var(--dark-color);
	color: var(--white-color);
}

.btn:hover {
	background-color: var(--hover-color);
	color: var(--white-color);
}

/*---------Header-Main-Footer---------*/
/*------------------------------------*/

.wrapper {
	padding-top: var(--head-top-padding-pc);
	background-color: var(--body-bgcolor);
	background-image: url('../img/bg-pattern-04.png');
	background-size: 500px auto;
	background-repeat: repeat;
	background-position: 0 0;
	position: relative;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}

.wrapper > .main-content {
	flex-grow: 1;
}

[class*="__container"] {
	position: relative;
	max-width: 1300px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}

[class*="__container"].c--xs {
	max-width: 1180px;
}

[class*="__container"].c--xl {
	max-width: 1920px;
}

[class*="__container"].no--padding {
	padding-left: 0;
	padding-right: 0;
}

[class*="__container-ff"] {
	position: relative;
	max-width: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
}

.fancybox__container {
	position: fixed;
	max-width: inherit;
	padding-left: inherit;
	padding-right: inherit;
	margin: inherit;
	--fancybox-bg: rgba(12, 12, 12, 0.7);
}

.header {
	position: fixed;
	width: 100%;
	padding: 0 20px;
	top: 24px;
	left: 0;
	z-index: 50;
}

/*.header.open-menu::before {
	opacity: 1;
}

.header.header--scroll::before {
	opacity: 1;
}*/

.header__container {
	background-color: var(--white-color);
	box-shadow: 0 0 7px 0 rgba(11,7,6,0.05);
	border-radius: var(--border-radius-20);
	height: var(--header-height-pc);
	padding-top: 8px;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.header__container::before {
	background-color: var(--white-color);
	border-radius: var(--border-radius-20);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: 3;
}

.header__logo,
.header__menu,
.header__buttons,
.header__mobile-nav {
	position: relative;
}

.header__logo {
	display: inline-block;
	line-height: 0;
	flex: 0 0 82px;
	z-index: 4;
	transition: all 0.3s ease;
}

.header__logo img {
	max-width: 82px;
}

.header__logo-text {
	color: var(--dark-color);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	max-width: 120px;
	overflow: hidden;
	z-index: 4;
}

.header__buttons {
	display: flex;
	gap: 12px;
	z-index: 4;
}

.header__btn-mob {
    display: none;
    min-width: 120px;
}

.header__menu {
	z-index: 4;
	margin-left: auto;
}

.header__menu-list {
	display: flex;
	column-gap: 30px;
	align-items: center;
	justify-content: end;
	flex-wrap: wrap;
}

.header__menu-list .menu-item {
	line-height: 24px;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.header__menu-list .menu-item > a {
	color: var(--dark-color);
	padding: 8px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.header__menu-list > li.menu-item-has-children > a::after {
	position: relative;
	display: inline-block;
	content: '\e901';
	line-height: 1;
	font-family: 'icons_font' !important;
	font-size: 12px;
	font-weight: normal;
	pointer-events: none;
}

.header__menu-list .menu-item.current-menu-item > a {
	color: var(--brown-color);
	pointer-events: none;
}

.header__menu-list .menu-item:not(.current-menu-item):hover > a {
	color: var(--brown-color);
}

.header__menu-list .menu-item.menu-item-has-children:hover > .sub-menu {
	display: flex;
}

.header__menu-list .sub-menu {
	background-color: var(--white-color);
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-direction: column;
	gap: 3px;
	width: 260px;
	padding-top: 24px;
	padding-bottom: 12px;
	border-radius: 0 0 var(--border-radius-20) var(--border-radius-20);
	overflow: hidden;
	z-index: 2;
}

.header__menu-list .sub-menu > li {
	position: relative;
}

.header__menu-list .sub-menu > li > a {
	position: relative;
	background-color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 8px 20px 8px 20px;
	color: var(--dark-color);
	line-height: 22px;
	font-size: 16px;
	font-weight: 500;
	border: none;
}

.header__menu-list .sub-menu .menu-item:hover > a {
	color: var(--brown-color);
}

.header__mobile-nav {
	position: relative;
	display: none;
}

.header__mobile-menu {
	display: none;
}

.header__mobile-burger {
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: -5px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	z-index: 4;
}

.burger__icon {
	padding-top: 2px;
	font-size: 26px;
	line-height: 1;
	color: var(--dark-color);
}

.header__mobile-burger.active .burger__icon {
	color: var(--dark-color);
}

.burger__icon::before {
	font-family: 'icons_font';
	content: '\e900';
}

.header__mobile-burger.active .burger__icon::before {
	content: '\e90b';
}

/*-----mobile-menu-----*/

.header__mobile-menu {
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--light-brown-color);
	overflow: auto;
	padding: 120px 30px 30px;
	transition: all 0.3s;
	z-index: 2;
}

.header__mobile-menu.active {
	top: 0;
}

.mobile-menu__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.mobile-menu__list .menu-item {
	position: relative;
	text-align: center;
	width: 100%;
	padding: 0;
}

.mobile-menu__list .menu-item > a {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--dark-color);
	display: inline-block;
	padding: 7px 0;
}

.mobile-menu__list .menu-item.current-menu-item > a,
.mobile-menu__list .menu-item > a:hover {
	color: var(--hover-color);
}

.mobile-menu__list .menu-item.current-menu-item > a {
	pointer-events: none;
}

.mobile-menu__list .sub-menu {
	margin-top: 5px;
	border: 2px dashed var(--light-brown-color-2);
	border-radius: var(--border-radius-20);
	padding: 8px 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu__list .sub-menu li > a {
	padding: 7px 10px;
	font-size: 17px;
	line-height: 1.3;
}

/*---end mobile-menu---*/

.header__mobile-buttons {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

@media only screen and (max-width: 1199.98px) {
	.header__menu-list {
		column-gap: 26px;
	}
	.header__btn2 {
		display: none;
	}
}

@media only screen and (max-width: 1079.98px) {
	.wrapper {
		padding-top: var(--head-top-padding-mob);
	}
	.header {
		top: 20px;
	}
	.header__container {
		height: var(--header-height-mob);
		gap: 25px;
	}
	.header__buttons {
	    margin-left: auto;
	}
	.header__menu,
	.header__btn {
		display: none;
	}
	.header__btn-mob {
	    display: inline-flex;
	    height: 42px;
	}
	.header__logo {
		flex: 0 0 70px;
	}
	.header__logo img {
		max-width: 70px;
	}
	.header__mobile-nav {
		display: block;
		position: relative;
	}
	.header__mobile-menu {
		display: flex;
	}
}

.footer {
	position: relative;
	background-color: var(--brown-color);
	padding: 75px 0 30px;
	color: var(--white-color);
	font-size: 18px;
	line-height: 1.4;
	z-index: 2;
}

.footer a {
	display: inline-block;
	color: var(--white-color);
}

.footer a:hover {
	color: var(--light-brown-color-2);
}

.grid-four {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.footer__info {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.footer__logo > img {
	max-width: 160px;
	line-height: 1;
}

.footer__info-title {
	font-size: 30px;
	color: var(--white-color);
}

.footer__info-content p:not(:last-child) {
	margin-bottom: 13px;
}

.conts-list,
.footer__info ul:not(.soc-list),
.footer__info ul.footer-menu__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.conts-list > li,
.footer__info ul:not(.soc-list) > li,
.footer__info ul.footer-menu__list > li {
	position: relative;
	line-height: 1.4;
	display: flex;
	gap: 10px;
}

ul.footer-menu__list > li.current-menu-item a {
	color: var(--light-brown-color-2);
	pointer-events: none;
}

.conts-list li > span {
	margin-top: 1px;
	display: inline-block;
	font-size: 24px;
	line-height: 1;
}

.conts-list li a {
	color: var(--white-color);
}

.conts-list li a:hover {
	color: var(--light-brown-color-2);
}

.footer__bottom {
	margin-top: 45px;
	text-align: center;
	line-height: 1.2;
}

.footer__copy {
	display: flex;
	flex-wrap: wrap;
	column-gap: 24px;
	justify-content: center;
	font-size: 16px;
	color: var(--brown-color-2);
}

.footer__copy a {
	color: var(--brown-color-2);
}

.footer__bottom p:not(:last-child) {
	margin-bottom: 7px;
}

.scroll-top {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--brown-color-2);
	border-radius: var(--border-radius-16);
	bottom: 60px;
	right: -100%;
	color: var(--white-color);
	line-height: 1;
	height: 44px;
	width: 44px;
	padding: 3px;
	transition: all 0.8s ease;
	overflow: hidden;
	z-index: 7;
	cursor: pointer;
}

.scroll-top:hover {
	color: var(--light-brown-color);
}

.scroll-top.visible {
    right: 20px;
}

.scroll-top > span {
	font-size: 18px;
	line-height: 0;
}

@media only screen and (max-width: 1199.98px) {
	.footer {
		padding-top: 65px;
		font-size: 16px;
	}
	.footer__info-title {
		font-size: 28px;
	}
	.footer__info ul.footer-menu__list > li::before {
		margin-top: 10px;
	}
	.conts-list li > span {
		font-size: 22px;
	}
}

@media only screen and (max-width: 991.98px) {
	.grid-four {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
}

@media only screen and (max-width: 599.98px) {
	.grid-four {
		grid-template-columns: 1fr;
	}
	.footer__logo > img {
		max-width: 160px;
	}
	.footer__info {
		gap: 16px;
		text-align: center;
	}
	.footer__conts,
	.footer-menu__list {
		align-items: center;
	}
	.footer__copy {
		column-gap: 12px;
	}
}

/*---------All CSS----------*/
/*--------------------------*/

.sects-wrapper {
	padding: 25px 0;
}

.sects-wrapper-2 {
	padding-bottom: 25px;
}

.sect {
	position: relative;
	padding: 55px 0;
}

.sect.default-sect {
	padding: 45px 0 60px;
}

.sect .text-18 {
	font-size: 18px;
}

.sect .text-18 strong,
.sect .text-18 b {
	color: var(--dark-color);
}

.sect .text-18.custom-list ul > li::before,
.sect .text-18.custom-list ol > li::before {
	margin-top: 11px;
}

.default__content-text {
	margin-top: 30px;
}

.content-404 {
	padding: 80px 0;
	text-align: center;
}

.number-404 {
	font-size: 110px !important;
	font-weight: 700;
	line-height: 0.8;
	color: var(--brown-color);
	margin-bottom: 25px;
}

.title-404 {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 35px !important;
	text-transform: capitalize;
}

.title-404 span {
	display: inline-block;
}

.button-back {
	margin-top: 30px;
	text-align: center;
}

.btn__back,
.btn__404 {
	min-width: 200px;
}

.sect-header {
	position: relative;
	max-width: 940px;
	margin: 0 auto 35px;
	text-align: center;
}

.h--decor::after {
	position: absolute;
	content: '';
	display: block;
	background-color: var(--brown-color);
	border-radius: 50%;
	width: 260px;
	height: 4px;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	filter: blur(2px);
	opacity: 0.3;
	z-index: 1;
}

.sheader__logo {
	max-width: 62px;
	margin: 0 auto 10px;
	line-height: 0;
	overflow: hidden;
}

.sheader__title {
	font-size: 56px;
	line-height: 1.1;
	color: var(--dark-color);
	text-transform: none;
}

.sheader__desc {
	margin-top: 15px;
	font-size: 20px;
	color: var(--dark-color);
}

.sheader__desc span,
.sheader__title span {
	color: var(--dark-color);
}

.sect__buttons {
	margin-top: 40px;
	position: relative;
	text-align: center;
}

.two-cols {
	display: flex;
	gap: 40px;
}

.two-cols__col {
	flex: 0 1 calc(100% / 2 - 20px);
}

.carousel__navigation {
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.carousel__navigation:has(.swiper-pagination-lock) {
	display: none;
}

.carousel__pagination {
	display: inline-flex;
	gap: 6px;
	justify-content: center;
	align-items: center;
	width: auto !important;
	min-width: 180px;
}

.carousel__pagination .swiper-pagination-bullet {
	background-color: var(--brown-color-2);
	width: 9px;
	height: 9px;
	border-radius: 3px;
	margin: 0 !important;
	opacity: 1;
	overflow: hidden;
	transition: all 0.3s ease;
}

.carousel__pagination .swiper-pagination-bullet:hover {
	background-color: var(--hover-color);
}

.carousel__pagination span.swiper-pagination-bullet-active:hover,
.carousel__pagination span.swiper-pagination-bullet-active {
	background-color: var(--brown-color);
	width: 20px;
	opacity: 1;
}

.carousel__btn-prev,
.carousel__btn-next {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	line-height: 0;
	font-size: 20px;
	color: var(--brown-color);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.carousel__btn-prev:hover,
.carousel__btn-next:hover {
	color: var(--hover-color);
}

/*------------------------------------------*/

.hero-sect.sect {
	background-color: var(--light-brown-color-2);
	padding: 65px 0;
	min-height: 500px;
	height: calc(100svh - var(--head-top-padding-pc));
	overflow: hidden;
}

.hero-sect::before {
	background-color: var(--white-color);
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	z-index: 2;
}

.hero-sect.hero--overlay::before {
	opacity: 0.6;
}

.hero__bgs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 80% 45%;
	transition: opacity 1.2s ease;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 45%;
	position: absolute;
	top: 0;
	left: 0;
}

/*.hero__img.img--fallback,
.hero__video {
	display: none;
}*/

.hero__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	z-index: 4;
}

.hero__content {
	max-width: 940px;
	color: var(--dark-color);
	display: none;
}

.hero__title {
	font-size: 60px;
	color: var(--dark-color);
	text-transform: none;
}

.hero__desc {
	margin-top: 15px;
	color: var(--dark-color);
	font-size: 20px;
}

.hero__desc p:not(:last-child) {
	margin-bottom: 6px;
}

.hero__buttons {
	margin-top: 35px;
}

.courses__carousel,
.servs__carousel {
	position: relative;
	overflow: hidden;
}

.courses__carousel .swiper-slide,
.servs__carousel .swiper-slide {
	position: relative;
	width: calc(100% / 3 - 13.33px);
	box-sizing: border-box;
	height: auto;
}

.courses__card,
.servs__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 30px 30px;
	border-radius: var(--border-radius-20);
	aspect-ratio: 1 / 1.2;
	overflow: hidden;
	height: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.card--default {
	cursor: default;
}

.courses__card-bg,
.servs__card-bg {
	background-color: var(--dark-color);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.card--default .courses__card-bg {
	background-color: var(--brown-color);
}

.courses__card-bg > img,
.servs__card-bg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	transform: scale(1);
	transition: all 0.5s ease;
	opacity: 0.9;
}

.courses__card:hover .courses__card-bg > img,
.servs__card:hover .servs__card-bg > img {
	transform: scale(1.03);
}

.courses__card-info,
.servs__card-info {
	position: relative;
	padding-right: 35px;
	z-index: 1;
	color: var(--white-color);
}

.courses__card-info::before,
.servs__card-info::before {
	position: absolute;
	top: 5px;
	right: 0;
	display: inline-block;
	font-family: 'icons_font';
	font-weight: normal;
	font-size: 18px;
	line-height: 1;
	content: '\e90f';
	z-index: 1;
	pointer-events: none;
}

.card--default .courses__card-info::before {
	display: none;
}

.courses__card-title,
.servs__card-title {
	max-width: 265px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 500;
}

.servs__card-price {
	margin-top: 10px;
	background-color: transparent;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--white-color);
	border-radius: var(--border-radius-16);
	height: 36px;
	min-width: 90px;
	padding: 0 12px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	transition: all 0.5s ease;
}

.servs__card:hover .servs__card-price {
	background-color: rgba(255, 255, 255, 0.2);
}

.about-sect.sect {
	padding-bottom: 55px;
	background-image: url('../img/bg_texture-01.png');
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}

.about__content {
	margin-top: 60px;
	display: flex;
	gap: 40px;
}

.about__left {
	flex: 0 1 55%;
}
.about__right {
	flex: 0 1 45%;
}

.about__text {
	position: relative;
	overflow: hidden;
	max-height: inherit;
	transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.about__text.about--active {
	max-height: 1500px;
}

.about__text-buttons {
	display: none;
	position: relative;
	padding-top: 20px;
	transition: all 1s ease;
	z-index: 2;
}

.about__text-btn {
	pointer-events: none;
}

.about__text-btn.btn--active .btn__text,
.about__text-btn .btn__text2 {
	display: none;
}

.about__text-btn.btn--active .btn__text2 {
	display: inherit;
}

.about__text-btn .btn__icon {
	font-size: 12px;
	transform: rotateX(0);
	transition: all 0.3s ease;
}
.about__text-btn.btn--active .btn__icon {
	transform: rotateX(180deg);
}

.about__person {
	position: absolute;
	bottom: -54px;
	right: 20px;
	width: 26%;
	text-align: center;
}

.about__person > img {
	max-width: 400px;
	width: 100%;
}

.courses-sect.sect {
	padding-top: 80px;
}

.addition-sect.sect {
	background-image: url('../img/bg_texture-02.png');
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.addition__card {
	background-color: var(--white-color);
	display: flex;
	gap: 6px;
	border: 6px solid var(--white-color);
	border-radius: var(--border-radius-20);
	overflow: hidden;
}

.addition__card-img {
	flex: 0 1 50%;
}

.addition__card-img > img {
	pointer-events: none;
}

.addition__text {
	margin-top: 30px;
	text-align: center;
}

.addition__slogan {
	margin: 35px auto 0;
	max-width: 940px;
	font-size: 36px;
	text-align: center;
}

.works-sect.sect {
	background-image: url('../img/bg_texture-03.png');
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}

.works__carousel {
	position: relative;
	overflow: hidden;
}

.works__carousel .swiper-slide {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	height: auto;
}

/*.carousel__navigation.works--navi {
	margin-top: 20px;
}*/

.reviews__carousel {
	position: relative;
	overflow: hidden;
}

.reviews__carousel .swiper-slide {
	position: relative;
	width: calc(100% / 4 - 15px);
	box-sizing: border-box;
	height: auto;
}

.reviews__card {
	background-color: var(--white-color);
	padding: 20px 20px;
	border-radius: var(--border-radius-20);
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease;
}

.reviews__card-header {
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.reviews__card-icon {
	flex: 0 0 24px;
}

.reviews__card-name {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--dark-color);
}

.reviews__card-date {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.2;
	color: var(--brown-color);
}

.reviews__card-rating {
	margin-top: 14px;
	margin-left: -3px;
	max-width: 118px;
	line-height: 0;
}

.reviews__card-body {
	margin-top: 5px;
	font-size: 16px;
	color: var(--dark-color);
}

.works-sect.sect,
.addition-sect.sect,
.about-sect.sect {
	max-width: 1920px;
	margin: 0 auto;
}

.psingle-sect.sect {
	padding-top: 45px;
	background-image: url('../img/bg_texture-02.png');
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}

.psingle--service {
	flex-direction: row-reverse;
}

.psingle__info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.psingle__img {
	line-height: 0;
	text-align: center;
	overflow: hidden;
}

.psingle__img > img {
	border-radius: var(--border-radius-20);
	pointer-events: none;
}

.psingle__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.psingle__item {
	display: flex;
	gap: 12px;
}

.psingle__item-icon {
	flex: 0 0 38px;
	width: 38px;
	overflow: hidden;
	text-align: center;
}

.psingle__item-icon {
	pointer-events: none;
}

.psingle__item-text {
	flex: 0 1 100%;
}

.psingle__item-text p {
	margin-bottom: 0;
}

.photos__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.photos__card {
	display: block;
	position: relative;
	width: calc(100% / 4 - 15px);
	aspect-ratio: 1 / 1;
	border-radius: var(--border-radius-20);
	cursor: pointer;
	overflow: hidden;
}

.photos__card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	transform: scale(1);
	transition: all 0.5s ease;
	opacity: 1;
}

.photos__card:hover > img {
	transform: scale(1.03);
}

.form-sect.sect {
	padding-top: 45px;
}

.form__wrap {
	max-width: 520px;
	margin: 0 auto;
	overflow: hidden;
}

/*-------------------------------------------*/
/*------------------MEDIA--------------------*/

@media only screen and (min-width: 991.99px) {
	/*.def-carousel .swiper-wrapper {
		gap: 24px;
	}
	.def-carousel .swiper-slide {
		flex: 0 1 calc(100% / 4 - 18px);
	}*/
	/*.hero__video {
		display: block;
	}*/
}

@media only screen and (max-width: 1199.98px) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}
	.two-cols {
		gap: 24px;
	}
	.sect .text-18 {
		font-size: 16px;
	}
	.sect .text-18.custom-list ul > li::before,
	.sect .text-18.custom-list ol > li::before {
		margin-top: 9px;
	}
	.sect {
		padding: 50px 0;
	}
	/*.sect-header {
		margin-bottom: 30px;
	}*/
	.h--decor::after {
		bottom: -16px;
		width: 200px;
	}
	.sheader__title {
		font-size: 48px;
	}
	.hero__desc,
	.sheader__desc {
		margin-top: 10px;
		font-size: 18px;
	}
	.hero__buttons,
	.sect__buttons {
		margin-top: 30px;
	}
	.hero-sect.sect {
		padding: 50px 0;
		min-height: 360px;
		height: calc(100vw / 1.4);
	}
	.hero__title {
		font-size: 52px;
	}
	.reviews__carousel,
	.courses__carousel,
	.servs__carousel {
		overflow: inherit;
	}
	.courses__carousel .swiper-slide,
	.servs__carousel .swiper-slide {
		width: calc(100% / 2 - 100px);
	}
	.courses__card,
	.servs__card {
		padding: 25px 25px;
	}
	.courses__card-info::before,
	.servs__card-info::before {
		top: 4px;
	}
	.courses__card-title,
	.servs__card-title {
	    max-width: 235px;
		font-size: 20px;
	}
	.servs__card-price {
		height: 32px;
		min-width: 84px;
		font-size: 16px;
	}
	.about__content {
		margin-top: 0;
	}
	.addition__slogan {
		font-size: 32px;
	}
	.reviews__carousel .swiper-slide {
		width: calc(100% / 3 - 13.33px);
	}
	.psingle-sect.sect {
		background-image: none;
	}
}

@media only screen and (max-width: 1079.98px) {
	/*.hero-sect.sect {
		height: calc(100svh - var(--head-top-padding-mob));
	}*/
	.works__carousel {
		overflow: inherit;
	}
}

@media only screen and (max-width: 991.98px) {
	.two-cols {
		flex-direction: column;
		gap: 25px;
	}
	.two-cols__col {
		flex: 0 1 auto;
		width: 100%;
	}
	.psingle--service,
	.psingle--course {
		flex-direction: column-reverse;
	}
	.sheader__title {
		font-size: 42px;
	}
	.hero__desc,
	.sheader__desc {
		font-size: 16px;
	}
	/*.hero__content {
		display: block;
	}
	.hero-sect::before {
		opacity: 0.6;
	}*/
	.hero__title {
		font-size: 46px;
	}
	/*.hero__img.img--fallback {
		display: block;
	}*/
	.courses__carousel .swiper-slide,
	.servs__carousel .swiper-slide {
		width: calc(100% / 2 - 50px);
	}
	.courses__card,
	.servs__card {
		padding: 20px 20px;
	}
	.courses__card-info::before,
	.servs__card-info::before {
		font-size: 16px;
	}
	.courses__card-title,
	.servs__card-title {
		max-width: 215px;
		font-size: 18px;
	}
	.about__content {
		gap: 20px;
	}
	.about__left {
		flex: 0 1 64%;
	}
	.about__right {
		flex: 0 1 32%;
	}
	.about__person {
		width: 29%;
	}
	.reviews__carousel .swiper-slide {
		width: calc(100% / 2 - 10px);
	}
	.photos__card {
		width: calc(100% / 2 - 10px);
	}
}

@media only screen and (max-width: 859.98px) {

}

@media only screen and (max-width: 767.98px) {
	.courses__carousel .swiper-slide,
	.servs__carousel .swiper-slide {
		width: calc(100% / 1 - 30%);
	}
	.works-sect.sect,
	.addition-sect.sect,
	.about-sect.sect {
		background-size: auto 320px;
	}
	.about__content {
		flex-direction: column;
	}
	.about__left,
	.about__right {
		flex: 0 1 auto;
		width: 100%;
	}
	.about__person {
		position: relative;
		bottom: inherit;
		right: inherit;
		width: 215px;
		margin: 0 auto -54px;
	}
	.about__text {
    	max-height: 250px;
	}
	.about__text-buttons {
		display: block;
		text-align: center;
	}
	.about__text-btn {
		pointer-events: inherit;
	}
}

@media only screen and (max-width: 599.98px) {
	/*.carousel__pagination {
		display: none;
	}*/
	.sheader__title {
		font-size: 38px;
	}
	.hero__title {
		font-size: 42px;
	}
	.reviews__carousel .swiper-slide,
	.courses__carousel .swiper-slide,
	.servs__carousel .swiper-slide {
		width: calc(100% / 1 - 10%);
	}
	.addition__card {
		flex-direction: column;
	}
	.addition__card-img {
		flex: 0 1 auto;
		width: 100%;
	}
	.addition__slogan {
		font-size: 28px;
	}
	.photos__cards {
		gap: 12px;
	}
	.photos__card {
		width: calc(100% / 2 - 6px);
	}
}

@media only screen and (max-width: 479.98px) {
	.psingle__btn,
	.sect__btn,
	.hero__btn {
		width: 100%;
	}
	
}