@font-face {
    font-family: 'inglobal';
    src: url('../fonts/inglobal/inglobal.woff2') format('woff2'),
        url('../fonts/inglobal/inglobal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Garamond';
    src: url('../fonts/GARAMOND/Garamond.eot');
    src: url('../fonts/GARAMOND/Garamond.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GARAMOND/Garamond.woff2') format('woff2'),
        url('../fonts/GARAMOND/Garamond.woff') format('woff'),
        url('../fonts/GARAMOND/Garamond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	/* color: #1D1511; */
	color: #333d5e;
	font-family: 'Manrope', Arial, sans-serif;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {-webkit-font-smoothing: antialiased;}


:focus::-webkit-input-placeholder,
:focus::-moz-placeholder,
:focus:-moz-placeholder,
:focus:-ms-input-placeholder {
	color: transparent
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea,
select,
button,
a {
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {outline: none;}

input[type=submit],
button,
a {
	cursor: pointer;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(239,227,203,.8);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(239,227,203,.0);
  }
}
.pulse .widget-btn {
  box-shadow: 0px 0px 1px 1px rgba(239,227,203,.8);
  animation: pulse-animation 2s infinite;
}

#widget {}
.widget-btn {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: fixed;
    z-index: 200;
    bottom: 30px;
    right: 30px;
    background-color: #3c4562;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transform: scale(1);
    transition: transform .2s ease;
    /*box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .05);*/
}
.widget-btn img {
    width: 100%;
    height: auto;
    filter: invert(1);
}
.widget-btn:hover {
    transform: scale(1.2);
}
.widget-btn:hover img {}
.widget-popup {
    position: fixed;
    bottom: 70px;
    right:  70px;
    z-index: 190;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .05);
    
    display: none;
}
.widget-popup .phone {
    font-size: 28px;
}
.widget-popup .phone:hover {
    text-decoration: none;
    opacity: .8;
}
.widget-popup .soc {}
.widget-popup .soc a {
    margin: 5px 0;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.widget-popup .soc a:hover {
    text-decoration: none;
    opacity: .8;
}
.widget-popup .soc a img {
    width: 18px;
}
.widget-popup .soc-tg {
    background-color: #2699D1;
}
.widget-popup .soc-wa {
    background-color: #62C936;
}
.widget-popup .btn {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    background-color: #3c4562;
}
.widget-popup .btn:hover {
    opacity: .8;
}
#widget.active {}
#widget.active .widget-btn {
    background-color: #f1e9d9;
}
#widget.active .widget-btn img {
    filter: invert(0);
    opacity: .4;
}
#widget.active .widget-popup {
    display: block;
}


/* mix */
.error {
	border-color: #f00 !important;
	/* box-shadow: inset 0 0 0px 3px #f00 !important; */
	/*border: 1px solid #f00;*/
}

.transition {
	transition: all 0.2s ease;
}

@-webkit-keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    100% {
        left: 110%;
        margin-left: 80px
    }
}

.btn {
	text-transform: uppercase;
	display: inline-block;
	padding: 10px 25px;
	background-color: #d2b06a;
	border: 1px solid #D2B06A;
	color: #fff;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	
	position: relative;
    overflow: hidden;
}
.btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    opacity: .5;
    position: absolute;
    left: -90px;
    top: -150px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all .1s;
    animation-name: slideme;
    animation-duration: 5s;
    animation-delay: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.btn:hover {
	text-decoration: none;
	color: #fff;
	background-color: #d2a344;
}
.btn:active, .btn:visited, .btn:focus {
	text-decoration: none;
	color: #fff;
}
.btn-lg {
	font-size: 14px;
	padding: 15px 30px;
}

.btn-border {
	background-color: transparent;
	color: #d2b06a;
}
.btn-border:hover {
	background-color: #d2b06a;
	color: #fff;
}

.heading {}
.heading h2 span {
	font-family: 'Garamond', Arial, sans-serif;
}
.heading h2 {
	text-transform: uppercase;
	font-family: 'Garamond', Arial, sans-serif;
	/* font-size: 86px; */
	/* font-size: 60px; */
	font-size: 50px;
	line-height: 1.1;
	font-weight: normal;
	margin: 50px 0;
}

html {
	/* font-size: 62.5%; */
}

body {
	position: relative;
	min-height: 100vh;
	/* background-color: #171d2d; */
	background-color: #f1e9d9;
}

/* styles */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 30px 0;
	z-index: 100;
}
#header .header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
#header .logo {}
#header .logo img {}
#header .nav {}
#header .nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-left: 30px;
}
#header .nav ul li {}
#header .nav ul li a {
	display: block;
	font-size: 16px;
	color: #f1e5ca;
	margin: 0 20px;
}
#header .nav ul li a::after {
	content: '';
	display: block;
	width: 0%;
	height: 1px;
	margin: 0 auto;
	background-color: #f1e5ca;
	transition: width 0.2s ease;
}
#header .nav ul li a:focus,
#header .nav ul li a:hover {
	text-decoration: none;
}
#header .nav ul li a:hover::after {
	width: 100%;
}
#header .callback {
	text-align: right;
	margin-left: auto;
}
#header .callback .phone {
	color: #eedebc;
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
}
#header .callback .phone b {
	color: #eedebc;
	display: inline-block;
    font-family: monospace;
}
#header .callback .phone img {
	margin-right: 3px;
	margin-left: 10px;
	transform: translateY(0px);
}
#header .callback .phone:hover {
	text-decoration: none;
}
#header .callback .phone span {
	display: block;
	color: #eedebc;
	font-size: 14px;
	font-weight: normal;
}
#header .btn {}
#header .btn:after {
	display: none;
}

#main {
	/* background: url(../img/bg-main-2.jpg) center top no-repeat, #171D2D; */
	background: url(../img/bg-main-1.jpg) center top no-repeat, #171D2D;
	background-size: cover;
	/* background: #3c4562; */
	/* min-height: 100vh; */
	/* height: 100%; */
	/* min-height: 865px; */
	/* padding-top: 160px; */
	padding-top: 130px;
	padding-bottom: 100px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}
#main .slider {
	width: 100%;
	max-width: 1160px;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 0px;
}
#main .slider .slide {
	/* background: url(../img/pattern-left.svg) bottom left no-repeat, url(../img/pattern-right.svg) bottom right no-repeat; */
	/* height: 60vh; */
	text-align: left;
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	background-color: #333d5e;
	background-color: #171D2D;
	/* background: url(../img/bg-main-2.jpg) center top no-repeat, #171D2D; */
	
	/* box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1); */
}
#main .slider .slide-1 {
	/* background: url(../img/slide-1.jpg) center no-repeat; */
	/* background-size: cover; */
	/* padding: 40px 120px; */
}
#main .slider .slide picture {
	position: relative;
	display: block;
	width: 45%;
}
#main .slider .slide picture::after {
	content: '';
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(to left, #333d5e, transparent); */
	background: linear-gradient(to left, #171D2D, transparent);
}
#main .slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .slider .slide-info {
	width: 55%;
	height: 100%;
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	padding: 10px 60px;
}
#main .slider .slide-img {}
#main .slider .slide-img picture {
	width: 100%;
}
#main .slider .slide-img img {
	width: 100%;
	height: auto;
}
#main .slider .slide-img .img-desktop {}
#main .slider .slide-img .img-mobile {
	display: none;
}
#main .owl-dots {
	text-align: center;
	margin-top: 30px;
}
#main .owl-dots .owl-dot {
	width:  10px;
	height: 10px;
	border-radius: 100%;
	margin: 3px;
	display: inline-block;
	background-color: #333d5e;
}
#main .owl-dots .owl-dot.active {
	background-color: #cbb36f;
}
#main .owl-dots .owl-dot span {
	display: none;
}
#main h1 {
	font-family: 'Garamond', Arial, sans-serif;
	font-weight: bold;
	color: #CBB36F;
	/* font-size: 2.5vw; */
	/* line-height: 1.2; */
	/* font-size: 52px; */
	font-size: 42px;
	line-height: 1;
	font-weight: lighter;
	margin: 0 0 20px;
}
#main .btn {
	border-radius: 5px;
	font-weight: bold;
	min-width: 240px;
}
#main .order {
	border-radius: 0px;
	max-width: 660px;
	padding: 30px;
	gap: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 40px auto 0;
	backdrop-filter: blur(10px);
    background-color: #4d6ec72e;
}
#main .order p {
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	margin: 0;
	color: #efe3cb;
}
#main .order b {
	color: #efe3cb;
}

#about {
	/* height: 1142px; */
	/* height: 1140px; */
	text-align: center;
	background: url(../img/bg-about.jpg) center top no-repeat, #171D2D;
	background-size: cover;
	background: #3c4562;

	padding-top: 120px;
	padding-bottom: 100px;
	margin-top: -60px;
}
#about .heading {}
#about .heading img {
	display: none;
}
#about .heading h2 {
	color: #efe3cb;
}
#about .items {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 60px;
}
#about .items .item {
	position: relative;
	border-radius: 20px;
	background-color: rgba(255,255,255,.2);
	padding: 10px;
	max-width: 256px;
}
#about .items .item picture {
	display: block;
}
#about .items .item picture img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	height: auto;
}
#about .items .item .info {
	position: absolute;
	text-align: left;
	bottom: 30px;
	left: 10px;
	width: 100%;
	padding: 0 20px;
}
#about .items .item .info .num {
	color: #fff8ea;
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	display: none;
}
#about .items .item .info .text {
	color: #fff8ea;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
}
#about .items .item-1 {}
#about .items .item-2 {}
#about .items .item-3 {}
#about .items .item-4 {}

#photo {
	background: #3c4562;
	padding-top: 0px;
	padding-bottom: 100px;
}
#photo.page {
	margin-top: 100px;
}
#photo .heading {
	text-align: center;
}
#photo .heading img {}
#photo.page .heading img {
	display: none;
}
#photo .items {
	margin-top: 80px;
	position: relative;
}
#photo .items .item {
	position: relative;
	border-radius: 20px;
	background-color: rgba(255,255,255,.2);
	padding: 10px;
	display: block;
}
#photo .items .item img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	height: auto;
}
#photo .items .item:hover {
	opacity: 0.7;
}
#photo .owl-dots {
	text-align: center;
	margin-top: 50px;
}
#photo .owl-dots .owl-dot {
	display: inline-block;
	width:  8px;
	height: 8px;
	margin: 5px;
	border-radius: 50%;
	background-color: rgba(255,255,255,.2);
}
#photo .owl-dots .owl-dot.active {
	background-color: rgba(255,255,255,.8);
}
#photo .owl-dots .owl-dot span {
	display: none;
}
#photo .owl-nav {
	position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -30px;
}
#photo .owl-nav .owl-prev,
#photo .owl-nav .owl-next {
	width:  65px;
	height: 65px;
	border-radius: 100%;
	border: 2px solid #D2B06A;
	display: inline-block;
	margin-right: 15px;
	cursor: pointer;
}
#photo .owl-nav .owl-prev {
	background: url(../img/arr-prev.svg) center no-repeat;
	background-size: 25px;
}
#photo .owl-nav .owl-next {
	background: url(../img/arr-next.svg) center no-repeat;
	background-size: 25px;
}
#photo .owl-nav .owl-prev:hover,
#photo .owl-nav .owl-next:hover {
	opacity: 0.7;
}

#catalog {
	/* background-color: #f1e9d9; */
	/* background-color: #f00; */
	position: relative;
	z-index: 3;
	margin-top: -60px;
	padding-bottom: 0px;
}
#catalog .caption {
	background-color: #f1e9d9;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	padding-top: 60px;
}
#catalog .heading {
	display: flex;
	gap: 60px;
	align-items: center;
}
#catalog .heading h2 {}
#catalog .heading p {
	font-size: 15px;
	margin: 0;
}
#catalog .menu {
	display: flex;
	gap: 20px;
	margin: 10px 0 30px;
}
#catalog .menu a {
	position: relative;
	display: flex;
	gap: 20px;
	padding: 20px 30px;
	padding-left: 0;
	border: 1px solid #D2B06A;
	border-radius: 5px;
	justify-content: center;
	width: 100%;
}
#catalog .menu a img.icon {}
#catalog .menu a p {
	text-transform: uppercase;
	font-size: 14px;
	color: #323232;
	font-weight: 600;
	margin: 0;
}
#catalog .menu a:hover,
#catalog .menu a.active {
	text-decoration: none;
	background-color: #d2b06a;
}
#catalog .menu a:focus {
	text-decoration: none;
}
#catalog .menu a:hover img.icon,
#catalog .menu a.active img.icon {
	filter: contrast(100) grayscale(100);
}
#catalog .menu a:hover p,
#catalog .menu a.active p {
	color: #fff;
}
#catalog .menu a span {
	position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    pointer-events: none;
    background-color: #ff8d00;
    color: #fff;
    line-height: 1;
    font-size: 12px;
    padding: 3px 6px;
    overflow: hidden;
}
#catalog .menu a span:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    opacity: .5;
    position: absolute;
    left: -90px;
    top: -150px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all .1s;
    animation-name: slideme;
    animation-duration: 4.5s;
    animation-delay: 5.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
#catalog .items {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	justify-content: start;
	gap: 10px;
	flex-wrap: wrap;
}
#program .item,
#catalog .items .item {
	/* max-width: 486px; */
	width: 100%;
	/* background-color: #364058; */
	background-color: #3c4562;
	padding: 20px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: calc(33.333% - 10px);
	position: relative;
	opacity: 1;
	transform: scale(1);
	transition: transform .2s ease, opacity .2s ease !important;
}
#program .item *,
#catalog .items .item * {
	color: #f1e9d9;
}
#program .item picture,
#catalog .items .item picture {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 180px;
	position: relative;
}
#program .item picture img,
#catalog .items .item picture img {
	width: 100%;
	height: auto;
	max-height: 180px;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #F1E9D9;
	object-fit: cover;
}
#catalog .items .item picture span,
#program picture span {
	position: absolute;
    display: block;
    top: 20px;
    right: 1px;
    padding: 5px 20px;
    background: #d72d2d;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    height: 24px;
}
#catalog .items .item picture span:before,
#program picture span:before,
#catalog .items .item picture span:after,
#program picture span:after {
	content: '';
    display: block;
	position: absolute;
}
#catalog .items .item picture span:before,
#program picture span:before {
	top: 0px;
    left: -20px;
    border: 12px solid transparent;
    border-top: 12px solid #d72d2d;
    border-right: 12px solid #d72d2d;
}
#catalog .items .item picture span:after,
#program picture span:after {
	top: 0px;
    left: -20px;
    border: 12px solid transparent;
    border-bottom: 12px solid #d72d2d;
    border-right: 12px solid #d72d2d;
}
#catalog .items .item picture span:empty,
#program picture span:empty {
	display: none;
}
#program picture span {
	/*display: none;*/
}
#program .item .info,
#catalog .items .item .info {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	flex-direction: column;
	height: 100%;
}
#program .item .info-wrap,
#catalog .items .item .info-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
}
#program .item .top,
#catalog .items .item .top {
	display: flex;
	gap: 5px;
	justify-content: space-between;
	align-items: start;
	flex-direction: row;
	margin: 0px 0 15px;
}
#program .item .top h3,
#catalog .items .item .top h3 {
	/* font-family: 'Garamond', Arial, sans-serif; */
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1;
	margin: -3px 0 0;
}
#program .item .top .time,
#catalog .items .item .top .time {
	text-transform: uppercase;
	color: #364058;
	background-color: #f1e9d9;
	font-size: 14px;
	margin: 0;
	border-radius: 5px;
	line-height: 1;
	font-weight: 600;
	padding: 4px 7px;
	text-wrap: nowrap;
}
#program .item .top .time img,
#catalog .items .item .top .time img {
	vertical-align: middle;
	margin-right: 2px;
}
#program .item .tags,
#catalog .items .item .tags {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 35px;

	display: none;
}
#program .item .tags p,
#catalog .items .item .tags p {
	font-size: 14px;
	border: 1px solid #F1E9D9;
	padding: 5px 15px;
	border-radius: 5px;
	margin: 0;
}
#catalog .item .short-text {
	display: block;
	color: #f1e9d9;
	font-size: 14px;
    margin: 5px 0;
    line-height: 1.2;
    
    position: absolute;
    z-index: 995;
    top: calc(20px);
    right: -290px;
    margin: 0;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    pointer-events: none;
    
    opacity: 0;
	transform: translateX(-20px);
	transition: transform .3s ease, opacity .3s ease;
}
#catalog .item .short-text:before {
	content: '';
	border: 20px solid transparent;
	border-right: 20px solid rgba(0, 0, 0, .8);
	position: absolute;
	top: calc(50% - 20px);
	left: -40px;
}
#catalog .item:hover .short-text {
    display: block;
    opacity: 1;
	transform: translateX(0px);
}
@media (min-width: 868px) {
	#catalog .items:hover .item {
		opacity: .5 !important;
		filter: blur(2px);
		transform: scale(1) !important;
	}
	#catalog .items .item:hover {
		opacity: 1 !important;
		filter: blur(0px);
		transform: scale(1.15) !important;
		box-shadow: 0 0 10px 10px rgba(0,0,0,.2);
	}
}
#catalog .item:nth-child(3n) .short-text {
	left: -290px;
	right: auto;
}
#catalog .item:nth-child(3n) .short-text:before {
	left: auto;
	right: -40px;
	display: none;
}
#program .item .short-text {
	font-size: 14px;
	border: none;
	padding: 0px;
	border-radius: 0px;
	margin: 0px 0 15px;	
}
@media (max-width: 868px) {
	#catalog .item .short-text {
		display: none !important;
	}
	#program .item {
		overflow-x: hidden;
	}
	#program .item .short-text {
		text-align: left;
		line-height: 1.1;
		padding: 0px;
		font-size: 12px;
		margin: -10px 0 10px;	
	}
}
#catalog .item:hover,
#program .item:hover {
	z-index: 990;
}
#program .item .bottom,
#catalog .items .item .bottom {
	width: 100%;
	max-width: 400px;
	/* border-top: 1px solid #F1E9D9; */
	/* padding: 35px; */
	padding-bottom: 0;
	/* margin-left: -35px; */
	/* margin-right: -35px; */
	/* padding-top: 35px; */
	/* margin-top: 35px; */
	margin-top: auto;
	text-align: right;
}
#program .item .price,
#catalog .items .item .price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: auto;
}
#program .item .price p,
#catalog .items .item .price p {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}
#program .item .price span,
#catalog .items .item .price span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	font-weight: 900;
}
#program .item .btn,
#catalog .items .item .btn {
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	border-radius: 5px;
	padding: 15px 20px;
}
#program .item .btn-border,
#catalog .items .item .btn-border {
	margin-bottom: 10px;
}

#program .item .btn-border:after,
#catalog .items .item .btn-border:after {
	display: none;
}
#catalog .items-wide {
	flex-wrap: nowrap;
    flex-direction: column;
}
#catalog .items .item-wide {
    width: 100%;
    flex-direction: row;
}
#catalog .items .item-wide picture {
	width: 30%;
}
#catalog .items .item-wide picture img {}
#catalog .items .item-wide .info {
	width: 70%;
}
#catalog .items .item-wide .info .info-wrap {}
#catalog .items .item-wide .info .top {}
#catalog .items .item-wide .info .top . {
    margin-bottom: 0;
}
#catalog .items .item-wide .info .top h3 {}
#catalog .items .item-wide .info .top .time {}
#catalog .items .item-wide .info .text {}
#catalog .items .item-wide .info .text p {
	font-size: 15px;
}
#catalog .items .item-wide .info .text p b {}
#catalog .items .item-wide .info .tags {
    display: flex;
    gap: 3px;
    margin-top: 10px;
}
#catalog .items .item-wide .info .tags p {}
#catalog .items .item-wide .info .price {
    justify-content: start;
}
#catalog .items .item-wide .info .price p {}
#catalog .items .item-wide .info .price span {}
#catalog .items .item-wide .info .bottom {
    text-align: left;
}
#catalog .items .item-wide .info .bottom .btn-border {}
#catalog .items .item-wide .info .bottom .btn {
    max-width: 300px;
}
#catalog.catalog-new {
	margin-top: 0px;
	padding-top: 80px;
}
#catalog.catalog-new .caption {
    background-color: transparent;
}
#catalog.catalog-new .caption h2,
#catalog.catalog-new .caption p {
	color: #F1E9D9;
}
#catalog.catalog-new .items .item {
	border: 1px solid #F1E9D9;
	background-color: #F1E9D9;
}
#catalog.catalog-new .items .item * {
	color: #3c4562;
}
#catalog .items .item picture span {
	color: #F1E9D9 !important;
}

#certificate {
	height: 904px;
	background: url(../img/bg-certificate3.jpg) right bottom no-repeat;
	background-size: cover;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
	position: relative;
	z-index: 2;
	/* margin-top: -300px; */
}
#certificate .heading {
	margin-top: 140px;
}
#certificate .heading h2 {}
#certificate .heading p {
	font-size: 26px;
	text-transform: uppercase;
	font-weight: bold;
}
#certificate .text {
	font-size: 15px;
}
#certificate .btn {
	font-weight: 600;
	font-size: 18px;
	padding: 20px 60px;
	margin-top: 30px;
}
#certificate picture {
	display: none;
}

#features {
	background: url(../img/bg-features.jpg) bottom center no-repeat;
	background-size: cover;
	background: #3c4562;
	position: relative;
	z-index: 1;
	/* margin-top: -60px; */
	/* padding-top: 80px; */
	padding-top: 0px;
	padding-bottom: 100px;
	/* height: 2376px; */
	height: auto;
}
#features .heading {
	text-align: center;
}
#features .heading h2 {
	color: #efe3cb;
}
#features .heading h2 span {
	/* color: #807F80; */
	color: #efe3cb;
}
#features .items {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin-top: 10px;
}
#features .items .item {
	background-color: #364058;
	background-color: #D6AE72;
	width: 50%;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
}
#features .items .item i:nth-child(1),
#features .items .item i:nth-child(2),
#features .items .item i:nth-child(3),
#features .items .item i:nth-child(4) {
	display: block;
	width:  72px;
	height: 72px;
	position: absolute;
	background: url(../img/pattern-features.svg) center no-repeat;
}
#features .items .item i:nth-child(1) {
	top: 30px;
	left: 30px;
}
#features .items .item i:nth-child(2) {
	top: 30px;
	right: 30px;
	transform: rotate(90deg);
}
#features .items .item i:nth-child(3) {
	bottom: 30px;
	left: 30px;
	transform: rotate(270deg)
}
#features .items .item i:nth-child(4) {
	bottom: 30px;
	right: 30px;
	transform: rotate(180deg)
}
#features .items .item:nth-child(4) {
	background-color: #aeb7cb;
}
#features .items .item:nth-child(4) * {
	color: #171d2d;
}
#features .items .item:nth-child(2) i,
#features .items .item:nth-child(6) i {
	/* filter: contrast(100) invert(1); */
}
#features .items .item:nth-child(2),
#features .items .item:nth-child(6) {
	background-color: #aeb7cb;
}

#features .items .item:nth-child(2) *,
#features .items .item:nth-child(6) * {
	color: #171d2d;
}
#features .items .item img {
	width: 100%;
	height: auto;
}
#features .items .item h3 {
	font-size: 86px;
	color: #f1e9d9;
	margin: 0;
	font-weight: normal;
}
#features .items .item p {
	font-size: 25px;
	color: #f1e9d9;
	margin: 20px 0;
	padding: 0 80px;
}
#features .items .item-1 { order: 1; }
#features .items .item-2 { order: 1; }
#features .items .item-3 { order: 2; }
#features .items .item-4 { order: 1; }
#features .items .item-5 { order: 1; }
#features .items .item-6 { order: 3; }

#reviews {
	/* height: 763px; */
	height: auto;
	background: url(../img/bg-reviews.png) top center no-repeat;
	background-size: cover;
	background: #3c4562;
	padding-top: 20px;
	padding-bottom: 120px;
	overflow: hidden;

	/* border-bottom-left-radius: 60px; */
	/* border-bottom-right-radius: 60px; */
}
#reviews .reviews-wrap {
	display: flex;
	gap: 40px;
	
	justify-content: center;
}
#reviews .heading {}
#reviews .heading h2 {
	color: #efe3cb;
	margin-top: 20px;
	margin-bottom: 20px;
}
#reviews .heading h2 span {
	/* color: #807F80; */
	color: #efe3cb;
}
#reviews .slider {
	position: relative;
	margin-top: -20px;
}
#reviews .slider-wrap {
	/*display: flex;*/
	position: relative;
}
#reviews .slider .slide {
	position: relative;
	width: 380px;
	aspect-ratio: 1/1;
	background-color: #b1bad018;
	border-radius: 20px;
	margin: 0px;
	/*margin-right: 15px;*/
	padding: 60px;
	padding-bottom: 30px;
}
#reviews .slider .slide i {
	width:  72px;
	height: 72px;
	background: url(../img/pattern-reviews.svg) center no-repeat;
	position: absolute;
}
#reviews .slider .slide::after {
	content: '';
	display: block;
	pointer-events: none;
	position: absolute;
	top:    20px;
	bottom: 20px;
	left:  calc(55px + 72px);
	right: calc(56px + 72px);
	border-top: 2px solid #454D61;
	border-bottom: 2px solid #454D61;
}
#reviews .slider .slide::before {
	content: '';
	display: block;
	pointer-events: none;
	position: absolute;
	left:  20px;
	right: 20px;
	top:  calc(55px + 72px);
	bottom: calc(56px + 72px);
	border-right: 2px solid #454D61;
	border-left: 2px solid #454D61;
}
#reviews .slider .slide i:nth-child(1) {
	top: 20px;
	left: 20px;
}
#reviews .slider .slide i:nth-child(2) {
	top: 20px;
	right: 20px;
	transform: rotate(90deg);
}
#reviews .slider .slide i:nth-child(3) {
	bottom: 20px;
	left: 20px;
	transform: rotate(270deg);
}
#reviews .slider .slide i:nth-child(4) {
	bottom: 20px;
	right: 20px;
	transform: rotate(180deg);
}
#reviews .slider .slide img.avatar {
	border-radius: 100%;
	width: 100px;
	height: auto;
}
#reviews .slider .slide::after,
#reviews .slider .slide::before {
	/* #AEB7CB */
	border-color: #fff;
	opacity: .6;
	border-width: 2px;
}
#reviews .slider .slide::after,
#reviews .slider .slide::before,
#reviews .slider .slide i {
	opacity: .4 !important;
}
#reviews .slider .slide i,
#reviews .slider .slide i {
	filter: contrast(100) invert(1);
	opacity: .6;
}
#reviews .slider .slide .name {
	color: #F1E9D9;
	/* text-transform: uppercase; */
	font-size: 18px;
	font-weight: 600;
	margin: 10px 0;
}
#reviews .slider .slide .desc {
	color: #F1E9D9;
	font-size: 14px;
	margin-top: 10px;
	opacity: 0.7;
}
#reviews .slider-nav {}
#reviews .slider-nav .owl-prev,
#reviews .slider-nav .owl-next {
	width:  65px;
	height: 65px;
	border-radius: 100%;
	border: 2px solid #D2B06A;
	display: inline-block;
	margin-right: 15px;
	cursor: pointer;
}
#reviews .slider-nav .owl-prev:hover,
#reviews .slider-nav .owl-next:hover {}
#reviews .slider-nav .owl-prev {
	background: url(../img/arr-prev.svg) center no-repeat;
	background-size: 25px;
}
#reviews .slider-nav .owl-next {
	background: url(../img/arr-next.svg) center no-repeat;
	background-size: 25px;
}
#reviews .slider-nav .owl-prev:hover,
#reviews .slider-nav .owl-next:hover {
	opacity: 0.7;
}
#reviews .block {}
#reviews .block .heading {}
#reviews .block .heading h2 {}
#reviews .block .block-inner {
	margin: 40px auto 0;
}
#reviews .block iframe {}

#order {
	background: url(../img/bg-order.jpg) center bottom no-repeat, #F1EADA;
	background-size: cover;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	padding-top: 100px;
	padding-bottom: 160px;
	/* height: 766px; */
	height: auto;
	margin-top: -60px;
}
#order .heading {
	position: relative;
}
#order .heading h2 {
	margin: 0;
}
#order .heading h2 span {
	color: #cdbb96;
}
#order .heading p {
	margin: 0;
	font-size: 15px;
	/* position: absolute; */
	/* bottom: 25px; */
	/* right: 0; */
	margin-top: 30px;
}
#order form {}
#order form input[type="text"],
#order form select {
	font-size: 18px;
	border: 2px solid #D2B06A;
	background-color: #f1eada;
	border-radius: 10px;
	padding: 25px 40px;
	padding-left: 70px;
	margin: 10px 0;
	width: 100%;
}
#order form select:focus,
#order form input[type="text"]:focus {
	border-color: #171d2d;
}
#order form select {
	cursor: pointer;
}
#order form input[name=name] {
	background: url(../img/icon-name.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
#order form input[name=phone] {
	background: url(../img/icon-phone.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
#order form input[name=date] {
	background: url(../img/icon-date.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
#order form [name=address] {
	background: url(../img/icon-address.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
#order form input::placeholder {
	color: #d2b06a;
}
#order form .btn {
	font-weight: bold;
	width: 100%;
	font-size: 18px;
	padding: 25px 40px;
	border-radius: 10px;
	margin-top: 10px;
}
#order form .accept {
	font-size: 12px;
	margin-top: 20px;
	text-align: center;
}
#order form .accept div {}
#order form .accept div input {
    display: inline-block;
    width: auto;
    margin: 0;
}
#order form .accept div p {
    display: inline-block;
    width: auto;
    margin: 0;
}
#order form .accept div p a {
	color: #3c4562;
    font-weight: bold;
    border-bottom: 1px solid #3c4562;
}
#order form .accept div p a:hover {
	text-decoration: none;
}
#order form .accept a {
	font-size: 12px;
}
#order form .accept input[type=checkbox] {
	vertical-align: middle;
	transform: translateY(-1px);
	margin-right: 3px;
}

#contacts {
	background: #F1EADA;
	padding: 180px 0 160px;
	margin-top: -60px;
}
#contacts .heading {}
#contacts .heading h2 {
	margin: -10px 0 0;
}
#contacts p {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	font-size: 18px;
	margin-right: 40px;
}
#map .soc,
#contacts .soc,
#footer .soc {
	display: inline-block;
}
#map .soc a,
#contacts .soc a,
#footer .soc a {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	background-color: #d2b06a;
	text-align: center;
	line-height: 50px;
	margin: 5px;
	padding: 5px;
}
#map .soc a img,
#contacts .soc a img,
#footer .soc a img {
	width: 30px;
	height: auto;
}
#map .soc a:hover,
#contacts .soc a:hover,
#footer .soc a:hover {
	text-decoration: none;
	opacity: 0.7;
}

#map {
	background-color: #ddd;
	background: #3c4562;
	/*height: 500px;*/
	padding-bottom: 90px;
	overflow: hidden;
	position: relative;
	z-index: 2;
	border-top-left-radius:  60px;
	border-top-right-radius: 60px;
	margin-top: -60px;
	/* filter: grayscale(1); */
}
#map .heading {}
#map .heading h2 {
	color: #efe3cb;
	margin-top: 50px;
	margin-bottom: 30px;
}
#map .desc b,
#map .desc span,
#map .desc span a {
	color: #efe3cb;
}
#map .desc {
	/* display: inline-block; */
	display: block;
	margin: 0;
	font-size: 18px;
	margin-right: 40px;
	color: #efe3cb;
	line-height: 1.3;
}
#map .soc {
	margin-top: 40px;
}
#map iframe {
	height: 300px !important;
	margin: 40px 0 0px;
	border-radius: 20px;
	overflow: hidden;
}

#footer {
	background-color: #171d2d;
	padding: 20px 0;
	margin-top: -60px;
	position: relative;
	z-index: 2;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
}
#footer * {
	color: #eedebc;
}
#footer .footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
#footer .logo {
	margin-right: 30px;
}
#footer .logo img {}
#footer .links {
	margin-right: auto;
}
#footer .links a {}
#footer .links a:hover {}
#footer .soc {}
#footer .soc a {
	width: 40px;
	height: 40px;
	line-height: 30px;
}
#footer .soc a img {
	width: 20px;
}
#footer .callback {
	text-align: right;
}
#footer .callback .phone {}
#footer .callback .phone:hover {
	text-decoration: none;
}
#footer .callback .phone span {}
#footer .button {}
#footer .button .btn {
	color: #171d2d;
}
#footer .req {
    font-size: 12px;
    opacity: .7;
    font-weight: lighter;
}


/* modals */
#modals {
	display: none;
}
.modal {
	background: #F1EADA;
	border-radius: 40px;
	padding: 50px 50px;
	width: 100%;
	max-width: 700px;
}
.modal .heading {
	text-align: center;
}
.modal .heading h2 {
	text-transform: none;
	font-family: 'Garamond', Arial, sans-serif;
	font-size: 36px;
	line-height: 1.1;
	font-weight: normal;
	margin: 0px 0;
}
.modal form {
	margin-top: 40px;
}
.modal form select,
.modal form input[type="text"] {
	font-size: 18px;
	border: 2px solid #D2B06A;
	background-color: #f1eada;
	border-radius: 10px;
	padding: 25px 40px;
	padding-left: 70px;
	margin: 10px 0;
	width: 100%;
}
.modal form select:focus,
.modal form input[type="text"]:focus {
	border-color: #171d2d;
}
.modal form select {
	cursor: pointer;
}
.modal form input[name=name] {
	background: url(../img/icon-name.svg) 30px center no-repeat, #f1eada;
	background-size: 20px;
}
.modal form input[name=phone] {
	background: url(../img/icon-phone.svg) 30px center no-repeat, #f1eada;
	background-size: 20px;
}
.modal form input[name=date] {
	background: url(../img/icon-date.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
.modal form [name=address] {
	background: url(../img/icon-address.svg) 30px center no-repeat, #f1eada79;
	background-size: 20px;
}
.modal form input::placeholder {
	color: #d2b06a;
}
.modal form .btn {
	width: 100%;
	font-size: 18px;
	padding: 25px 40px;
	border-radius: 10px;
	margin-top: 10px;
}
.modal .accept {
	font-size: 12px;
	margin-top: 20px;
	text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal .accept p,
.modal .accept a {
	font-size: 12px;
	margin: 0;
}
.modal .accept div {
    display: flex;
    gap: 5px;
}
.modal .accept input[type=checkbox] {
	vertical-align: middle;
	transform: translateY(-1px);
	margin-right: 3px;
}

#program.modal {
	padding: 0px;
	max-width: 500px;
}
#program.modal * {}
#program .item {
	flex-direction: column;
	max-width: 100%;
	width: 100%;
}
#program .item .info {
	flex-direction: column;
	width: 100%;
}
#program .item .info-wrap {
	flex-direction: column;
	width: 100%;
}
#program .item picture {
	width: 100%;
	max-width: 100%;
	max-height: 100%;
}
#program .item picture img {
	max-height: 300px;
	border-radius: 20px;
	overflow: hidden;
}
#program .item .top {}
#program .item .top h3 {
	font-size: 22px;
}
#program .item .top .time {}
#program .item .top .time img {}
#program .item .tags {
	display: flex;
}
#program .item .tags p {}
#program .item .bottom {
	text-align: center;
	max-width: 100%;
	padding-bottom: 10px;
}
#program .item .price {
	text-align: center;
	align-items: center;
	justify-content: center;
	border-top: 2px solid #f1e9d922;
	margin-left: -20px;
	margin-right: -20px;
	padding-top: 20px;
}
#program .item .price p {}
#program .item .price span {}
#program .item .btn {
	margin: 0 auto;
	max-width: 320px;
}
#program .item .btn-border {
	display: none;
}

#modal-cert {
	display: flex;
    align-items: center;
	padding: 0px;
    width: 100%;
    max-width: 900px;
}
#modal-cert .pic {
	width: 40%;
	position: relative;
	background-color: #3c4562;
	align-self: stretch;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
#modal-cert .pic img {
	width: 500px;
    height: auto;
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 10;
    transform: translate(0%, -50%);
    pointer-events: none;
}
#modal-cert .form {
	width: 60%;
	padding: 40px;
    padding-right: 30px;
    padding-left: 30px;
}
.modal-cert-fancybox .fancybox-inner {
    overflow: visible !important;
}

form .select-address {
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    justify-content: space-around;
}
form .select-address label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
form .select-address label p {
    font-size: 18px;
    font-weight: 500;
}
form .select-address label input[type=radio] {}

/* meadia */
@media (max-width: 1350px) {
	.heading {}
	.heading h2 {
		font-size: 40px;
		margin: 30px 0;
	}

	#main {}
	
	#about {
		padding-top: 80px;
		padding-bottom: 60px;
	}
	#about .items {
		margin-top: 30px;
		gap: 15px;
	}

	#features {}
	#features .items {
		max-width: 960px;
		margin: 0 auto;
	}
	#features .items .item {}
	#features .items .item h3 {
		font-size: 46px;
	}
	#features .items .item p {
		font-size: 22px;
		line-height: 1.3;
	}

	#reviews .container,
	#order .container,
	#map .container {
		max-width: 960px;
	}

	#order .heading {}
	#order .heading h2 {
		margin-top: 30px;
	}
}
@media (max-width: 992px) {}
@media (max-width: 868px) {

	.btn {
		padding: 5px 15px;
		font-size: 10px;
	}
	.btn-lg {
		font-size: 14px;
		padding: 10px 15px;
	}

	.heading {}
	.heading h2 {
		font-size: 22px;
		margin: 20px 0;
	}

	body {}
	.container {
		overflow-x: hidden;
	}

	#header {
		padding: 15px 0;
	}
	#header .header-wrap {
		gap: 10px;
	}
	#header .logo {
		max-width: 100px;
	}
	#header .logo img {
		width: 100%;
		max-width: 80px;
	}
	#header .nav {
		display: none;
	}
	#header .nav ul {}
	#header .nav ul li {}
	#header .nav ul li a {}
	#header .callback {}
	#header .callback .phone {
		font-size: 12px;
		text-wrap: nowrap;
	}
	#header .callback .phone span {
		font-size: 10px;
	}
	#header .btn {
		display: none;
	}

	#main {
		padding-top: 80px;
		padding-bottom: 60px;
	}
	#main .slider {
		padding: 0 15px;
	}
	#main .slider .slide {
		min-height: 65vh;
		height: auto;
		margin-bottom: 15px;
		padding-bottom: 20px;
		flex-direction: column;
	}
	#main .slider .slide picture {
		width: 100%;
		max-height: 360px;
		overflow: hidden;
	}
	#main .slider .slide picture img {}
	#main .slider .slide picture::after {
		left: 0;
		right: 0;
		width: 100%;
		height: 40%;
		bottom: 0;
		top: auto;
		/* background: linear-gradient(to top, #333d5e, transparent); */
		background: linear-gradient(to top, #171D2D, transparent);
	}
	#main .slider .slide .slide-info {
		width: 100%;
		min-height: 200px;
		padding: 15px;
	}
	#main .slider .slide-img {}
	#main .slider .slide-img picture {}
	#main .slider .slide-img img {}
	#main .slider .slide-img .img-desktop {
		display: none;
	}
	#main .slider .slide-img .img-mobile {
		display: block;
	}
	#main .slider .owl-dots {
		margin-top: 0px;
	}
	#main .slider .owl-dots .owl-dot {
		width:  6px;
		height: 6px;
		margin: 2px;
	}
	#main h1 br {
		/* display: none; */
	}
	#main h1 {
		width: 100%;
		/* font-size: 6vw; */
		font-size: 28px;
		text-align: center;
		margin-bottom: 0;
	}
	#main .order {
		flex-direction: column;
		padding: 25px;
		width: 100%;
		max-width: 500px;
	}
	#main .order p br {
		/* display: none; */
	}
	#main .order p {
		font-size: 14px;
		text-align: center;
	}
	#main .btn {
		width: 80%;
		margin: 0 auto;
	}

	#about {
		height: auto;
		padding-top: 100px;
		/* padding-bottom: 40px; */
		padding-bottom: 0;

		/* background: linear-gradient(to bottom, #1D2536, #3B4050); */
	}
	#about .heading {}
	#about .heading img {
		max-width: 100px;
	}
	#about .items {
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 30px;
	}
	#about .items .item {
		width: calc(50% - 10px);
		border-radius: 15px;
		padding: 5px;
	}
	#about .items .item picture {
		border-radius: 15px;
	}
	#about .items .item picture img {
		border-radius: 10px;
	}
	#about .items .item .info {
		padding: 10px;
		bottom: 10px;
		max-width: calc(100% - 20px);
	}
	#about .items .item .info .num {}
	#about .items .item .info .text {
		line-height: 1.1;
		font-size: 12px;
	}
	#about .items .item-1 {}
	#about .items .item-2 {}
	#about .items .item-3 {}
	#about .items .item-4 {}
	#about .items .item:last-child {
		display: none;
	}
	
	#photo {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#photo.page {
	    margin-top: 40px;
	}
	#photo .heading {}
	#photo .heading img {
		max-width: 100px;
	}
	#photo .items {
		margin-top: 30px;
	}
	#photo .items .item {
		border-radius: 15px;
		padding: 5px;
	}
	#photo .items .item img {
		border-radius: 10px;
	}
	#photo .owl-dots {
	    margin-top: 30px;
	}
	#photo .owl-dots .owl-dot {}
	#photo .owl-nav {
		display: none;
	}

	#catalog {
		padding: 0px 0;
		margin-top: -30px;
	}
	#catalog .caption {
		border-top-left-radius:  30px;
    	border-top-right-radius: 30px;
		margin-left:  -0px;
		margin-right: -0px;
		padding-top: 20px;
	}
	#catalog .heading {
		display: block;
		text-align: center;
	}
	#catalog .heading h2 {
		margin-bottom: 10px;
	}
	#catalog .heading p {
		margin: 0;
		font-size: 16px;
		line-height: 1.1;
	}
	#catalog .menu {
		flex-wrap: wrap;
		gap: 5px;
		margin-top: 20px;
		margin-bottom: 0;
	}
	#catalog .menu a {
		width: calc(50% - 5px);
		padding: 10px 10px;
		gap: 5px;
	}
	#catalog .menu a img.icon {
		max-width: 15px;
	}
	#catalog .menu a p {}
	#catalog .menu a:last-child {
	    width: 100%;
	}
	#catalog .items::after {
		content: '';
		display: block;
		width: 60px;
		height: 100%;
		background: linear-gradient(to right, transparent, #f1e9d9);
		position: fixed;
		top: 0;
		right: 0;

		display: none;
	}
	#catalog .items {
		flex-direction: row;
		position: relative;
		margin-top: 20px;
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
		overflow-x: scroll;
		gap: 15px;
		flex-wrap: nowrap;
	}
	#catalog .items .item {
		width: 100%;
		min-width: 300px;
		border-radius: 20px;
		padding: 15px;
		margin-bottom: 10px;
		flex-direction: column;
	}
	#catalog .items .item picture {
		width: 100%;
	}
	#catalog .items .item picture img {
		max-height: 100%;
	}
	#catalog .items .item .info {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}
	#catalog .items .item .info-wrap {
		flex-direction: column;
	}
	#catalog .items .item .top {
		flex-direction: row;
		align-items: start;
		margin: 0px 0 0px;
	}
	#catalog .items .item .top h3 {
		font-size: 18px;
	}
	#catalog .items .item .top .time {
		font-size: 10px;
		padding: 5px 5px;
		margin-top: 0px;
	}
	#catalog .items .item .top .time img {
		width: 10px;
		margin-right: 3px;
	}
	#catalog .items .item .tags {
		margin: 5px 0 20px;
		gap: 3px;
	}
	#catalog .items .item .tags p {
		text-align: left;
		font-size: 12px;
		padding: 5px 10px;
		width: auto;
		line-height: 1.1;
		border: 1px solid #f1e9d957;
	}
	#catalog .items .item .bottom {
		padding-top: 10px;
		max-width: 100%;
		width: 100%;
	}
	#catalog .items .item .price {
		padding: 5px 0;
		margin-top: 10px;
	}
	#catalog .items .item .price p {
		font-size: 16px;
	}
	#catalog .items .item .price span {
		font-size: 16px;
	}
	#catalog .item .short-text,
	#program .item .short-text {
		font-size: 13px;
	}
	#catalog .items .item .btn {
		border-radius: 10px;
		padding: 10px 10px;
		width: 100%;
	}
	#catalog .items .item .btn-border {
		margin-bottom: 5px;
	}
	#catalog .items-wide {
		flex-direction: column;
	}
	#catalog .items .item-wide {}
	#catalog .items .item-wide picture {
		max-height: 300px;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid #F1E9D9;
	}
	#catalog .items .item-wide picture img {
        border: none;
        object-position: center;
	}
	#catalog .items .item-wide .info {}
	#catalog .items .item-wide .info .info-wrap {}
	#catalog .items .item-wide .info .top {}
	#catalog .items .item-wide .info .top . {}
	#catalog .items .item-wide .info .top h3 {}
	#catalog .items .item-wide .info .top .time {}
	#catalog .items .item-wide .info .text {}
	#catalog .items .item-wide .info .text p {
	    font-size: 13px;
	}
	#catalog .items .item-wide .info .tags {}
	#catalog .items .item-wide .info .tags p {}
	#catalog .items .item-wide .info .price {}
	#catalog .items .item-wide .info .price p {}
	#catalog .items .item-wide .info .price span {}
	#catalog .items .item-wide .info .bottom {}
	#catalog .items .item-wide .info .bottom .btn-border {}
	#catalog .items .item-wide .info .bottom .btn {
		max-width: 100%;
	}

	#certificate {
		background: #f1e9d9;
		height: auto;
		border-bottom-left-radius: 30px;
    	border-bottom-right-radius: 30px;
		padding: 30px 0 0;
		overflow: hidden;
		margin: 0;
	}
	#certificate picture {
		display: block;
		margin-left: -15px;
		margin-right: -15px;
	}
	#certificate picture img {
		width: 100%;
		height: auto;
	}
	#certificate .heading {
		text-align: center;
		margin: 0;
	}
	#certificate .heading h2 {
		margin: 0 0 10px;
	}
	#certificate .heading p {
		font-size: 16px;
		line-height: 1.1;
		margin: 0;
		font-weight: normal;
	}
	#certificate .text br {
		display: none;
	}
	#certificate .text {
		font-size: 16px;
		line-height: 1.4;
		text-align: center;
	}
	#certificate .btn {
		width: 100%;
		max-width: 300px;
		display: block;
		margin: 0px auto 0px;
		padding: 15px 20px;
		font-size: 16px;
	}

	#features {
		height: auto;
		padding: 20px 0 0px;
		/* background: #171d2d; */
	}
	#features .heading {
		text-align: center;
	}
	#features .heading h2 {}
	#features .heading h2 span {}
	#features .items {
		margin-top: 10px;
	}
	#features .items .item {
		width: 100%;
		max-width: 600px;
		margin: 0px 0;
		aspect-ratio: 1/1;
		order: 1 !important;
	}
	#features .items .item:has(img) {
		aspect-ratio: initial;
	}
	#features .items .item h3 {
		font-size: 38px;
	}
	#features .items .item p {
		font-size: 18px;
		line-height: 1.4;
	}

	#reviews {
		height: auto;
		padding: 30px 0;
		padding-bottom: 60px;
		/* background: #171d2d; */
	}
	#reviews .reviews-wrap {
		display: block;
	}
	#reviews .heading {
		text-align: center;
	}
	#reviews .heading h2 {}
	#reviews .heading h2 span {
		display: block;
	}
	#reviews .slider {
		margin-top: 30px;
	}
	#reviews .slider-wrap {
		padding: 0 15px;
	}
	#reviews .slider .slide {
		aspect-ratio: initial;
		padding: 35px;
		margin: 0 0 15px;
		width: auto;
	}
	#reviews .slider .slide::before {
		left: 15px;
		right: 15px;
		top: calc(50px + 15px);
		bottom: calc(50px + 15px);
		border-width: 1px;
	}
	#reviews .slider .slide::after {
		top: 15px;
		bottom: 15px;
		left: calc(50px + 15px);
		right: calc(50px + 15px);
		border-width: 1px;
	}
	#reviews .slider .slide i {
		width:  40px;
		height: 40px;
		background-size: contain;
	}
	#reviews .slider .slide i:nth-child(1) {
		left: 15px;
		top: 15px;
	}
	#reviews .slider .slide i:nth-child(2) {
		right: 15px;
		top: 15px;
	}
	#reviews .slider .slide i:nth-child(3) {
		left: 15px;
		bottom: 15px;
	}
	#reviews .slider .slide i:nth-child(4) {
		right: 15px;
		bottom: 15px;
	}
	#reviews .slider .slide img.avatar {
		max-width: 60px;
		margin-bottom: 5px;
	}
	#reviews .slider .slide .name {
		font-size: 20px;
		margin: 10px 0;
		line-height: 1.2;
	}
	#reviews .slider .slide .desc {
		font-size: 14px;
		line-height: 1.2;
		opacity: 0.7;
	}
	#reviews .slider-nav {
		display: none;
	}
	#reviews .slider-nav .slider-prev,
	#reviews .slider-nav .slider-next {}
	#reviews .slider-nav .slider-prev {}
	#reviews .slider-nav .slider-next {}
	#reviews .owl-dots {
		display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
	}
	#reviews .owl-dots .owl-dot {
		width: 5px;
        height: 5px;
        border-radius: 100%;
        border: 1px solid #f1eada;
	}
	#reviews .owl-dots .owl-dot.active {
		background-color: #f1eada;
	}
	#reviews .owl-dots .owl-dot span {
		display: none;
	}
	#reviews .block {}
	#reviews .block .heading {}
	#reviews .block .heading h2 {}
	#reviews .block .block-inner {
		margin: 20px auto 0;
		width: 100% !important;
	}
	#reviews .block iframe {}

	#order {
		background: #F1EADA;
		height: auto;
		padding: 40px 0 80px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		margin-top: -30px;
	}
	#order .heading {
		text-align: center;
		display: block;
	}
	#order .heading h2 {}
	#order .heading h2 br {
		display: none;
	}
	#order .heading h2 span {
		display: block;
	}
	#order .heading p {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 10px;
	}
	#order form {
		margin: 0 auto;
		margin-top: 20px;
		max-width: 320px;
	}
	#order form select,
	#order form input[type="text"] {
		margin: 5px 0;
		padding: 15px 20px;
		padding-left: 45px;
		background-position: 15px center !important;
		border-width: 1px;
		font-size: 16px;
	}
	#order form select {}
	#order form .btn {
		padding: 15px 20px;
		font-size: 16px;
		margin-top: 5px;
	}
	.modal .accept,
	#order form .accept {
		text-align: left;
		display: block;
	}
	.modal .accept div,
	#order form .accept div {
	    margin-bottom: 10px;
		display: block;
	}
	.modal .accept div p,
	#order form .accept div p {
		max-width: 90%;
		text-align: left;
		display: inline-block;
		margin: 0;
	}
	.modal .accept input[type=checkbox],
	#order form .accept input[type=checkbox] {
		vertical-align: top;
		transform: translateY(3px);
	}

	#contacts {
		padding: 30px 0 90px;
		margin: 0;
	}
	#contacts .heading h2 {
		margin: 0 0 10px;
	}
	#contacts .heading {
		text-align: center;
	}
	#contacts p {
		text-align: center;
		display: block;
		margin: 10px 0;
		font-size: 18px;
	}
	#contacts .soc {
		display: block;
		text-align: center;
	}
	#contacts .soc a {
		width: 40px;
		height: 40px;
		line-height: 27px;
	}
	#contacts .soc a img {
		width: 20px;
	}

	#map {
		border-radius: 30px;
		margin-top: -30px;
		height: auto;
		padding-bottom: 75px;
	}
	#map iframe {
		height: 370px !important;
	}
	#map .heading {}
	#map .heading h2 {
		margin-top: 40px;
	}
	#map .desc,
	#map .desc b {
		font-size: 16px;
	}
	#map .soc {
		margin-top: 20px;
	}

	#footer {
		padding: 40px 0;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
	}
	#footer .footer-wrap {
		flex-direction: column;
	}
	#footer .logo {
		margin-right: 0;
	}
	#footer .logo img {}
	#footer .links {
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}
	#footer .links a {}
	#footer .soc {
		display: none;
	}
	#footer .soc a {}
	#footer .soc a img {}
	#footer .callback {
		text-align: center;
	}
	#footer .callback .phone {}
	#footer .callback .phone span {}
	#footer .button {}
	#footer .button .btn {
		font-size: 20px;
		padding: 15px 20px;
		width: 100%;
		max-width: 330px;
	}
	#footer .req {}

	.modal {
		padding: 20px 30px;
		border-radius: 30px;
	}
	.modal .heading {}
	.modal .heading h2 {
		font-size: 22px;
		margin: 20px 0 0;
	}
	.modal form {
		margin-top: 30px;
	}
	.modal form select,
	.modal form input[type="text"] {
		margin: 5px 0;
		padding: 15px 20px;
		padding-left: 45px;
		background-position: 15px center !important;
		border-width: 1px;
		font-size: 16px;
	}
	.modal form select {}
	.modal form .btn {
		padding: 15px 20px;
		font-size: 16px;
		margin-top: 5px;
	}
	.modal .accept {
		text-align: left;
	}
	.modal .accept a,
	.modal .accept p,
	.modal .accept {
		font-size: 10px;
	}
	.fancybox-skin {
		padding: 0 !important;
	}

	#program .item {
		padding: 15px;
	}
	#program .item .tags {
		gap: 3px;
	}
	#program .item .tags p {
		text-align: left;
		line-height: 1;
		padding: 5px 10px;
	}
	
	#modal-cert {
		padding: 20px 30px;
		display: block;
	}
	#modal-cert .pic {
		display: none;
	}
	#modal-cert .pic img {}
	#modal-cert .form {
		padding: 0px;
		width: 100%;
	}
	
		
	#widget {}
	.widget-btn {
	    bottom: 10px;
        right:  10px;
        width: 60px;
        height: 60px;
	}
	.widget-popup {
	    bottom: 50px;
        right:  50px;
        padding: 10px;
        border-radius: 5px;
	}
	.widget-popup .phone {
	    font-size: 16px;
	}
	.widget-popup .soc {}
	.widget-popup .soc a {
        font-size: 16px;
        padding: 7px;
	}
	.widget-popup .soc a img {}
	.widget-popup .btn {
		border: none;
        font-size: 16px;
        border-radius: 5px;
        padding: 7px;
	}
	#widget.active {}
	#widget.active .widget-btn {}
	#widget.active .widget-popup {}

    form .select-address {
        flex-direction: column;
        margin: 10px;
    }
    form .select-address label {}
    form .select-address label p {
        margin: 8px 0;
        font-size: 15px;
    }
    form .select-address label input[type=radio] {}
    
}