/*
Theme Name: RITUAL
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400..700;1,14..32,400..700&display=swap');

:root {
	--bottom-margin: 80px;
}
body {
    margin: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
	font-size: 14px;
	background-color: #F7F7F7;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: "IBM Plex Sans", serif;
}
h1 {
	font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
    color: #2C2C2C;
}
h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 16px;
}
h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}
ul, ol, li {
	margin: 0;
}
main {
	min-height: 90vh;
}

.container {
	width: 1260px;
	margin: auto;
}
.flex-row {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.popup-overlay {
	background: rgba(80, 80, 80, 0.5);
	position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;    
    right: 0;
    top: 0;
    z-index: 99;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}
.popup-overlay.active {
	position: fixed;
	visibility: visible;
	opacity: 1;
}
#popup-menu {
	width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
	left: -350px;
    overflow: inherit;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 100;
}
#popup-menu.active {
	left: 0;
}
.popup-inner {
	padding: 20px 25px;
}
.popup-inner .menu_popup ul {
	padding-left: 0;
	margin: 30% 0 36px 0;
}
.popup-inner .menu_popup ul .sub-menu {
	margin: 12px 0 16px 12px;
}
.popup-inner .menu_popup ul li {
	list-style-type: none;
    margin-bottom: 12px;
    white-space: nowrap;
}
.popup-inner .menu_popup ul li:last-child {
    margin-bottom: 0;
}
.popup-inner .menu_popup ul li a {
    color: #2C2C2C;
	font-size: 16px;
	text-decoration: none;
	transition: color .3s;
}
.popup-inner .menu_popup ul li a:hover {
	color: #F68E13;
}
.popup-inner .location {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	margin-top: 36px;
}
.popup-inner .location img {
	width: 24px;
	margin-right: 8px;
}
.popup-inner .location .address div {
	font-size: 18px;
	font-weight: 700;
}
.popup-inner .phone a {
	color: #2C2C2C;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: color .3s;
}
.popup-inner .phone a:hover {
	color: #F68E13;
}
.popup-inner .phone div {
	color: #2C2C2C;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 12px;
}
.popup-inner .icons {
	justify-content: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
}
.popup-inner .icons a:first-child {
	margin-left: 0;
}
.burger-close {
	width: 100%;
	text-align: right;
}
.burger-close img {
	cursor: pointer;
}
.scroll-up {
	display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}
.scroll-up:hover {
	background-color: #2C2C2C;
}
.scroll-up .ico-up {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(./assets/images/to-top.svg);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
}

#header {
	position: fixed;
	top: 0; left: 0;
	z-index: 50;
	width: 100%;
	transition: all .3s ease;
}
#header.out {
	transform: translateY(-100%);
}
header {
	height: 60px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
}
header .burger:hover {
	cursor: pointer;
}
header .logo {
	max-width: 130px;
    height: 48px;
	margin-left: 30px;
}
header .logo a {
	color: #000000;
	font-size: 13px;
	text-decoration: none;
	transition: color .3s;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
header .logo img {
	width: 44px;
	margin-right: 12px;
}
header .menu_top ul {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	padding-left: 0;
}
header .menu_top ul li {
	list-style-type: none;
    margin-right: 20px;
    white-space: nowrap;
}
header .menu_top ul li:last-child {
    margin-right: 0;
}
header .menu_top ul li a {
    color: #000000;
	font-size: 13px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .3s;
}
header .menu_top ul li.current-menu-item a {
	color: #F68E13;
}
header .menu_top ul li.current-menu-item.menu-item-6 a,
header .menu_top ul li.current-menu-item.menu-item-7 a {
	color:#000000;
}
header .menu_top ul li a:hover,
header .menu_top ul li.current-menu-item.menu-item-6 a:hover,
header .menu_top ul li.current-menu-item.menu-item-7 a:hover {
	color: #F68E13;
}

header .menu_top .sub-menu {
	display: block;
	position: absolute;
    z-index: 500;
    padding-top: 8px;
	margin-left: -8px;
    overflow: hidden;
	transition: all 0.3s;
	background-color: #FFFFFF;
	transform: scaleY(0);
    transform-origin: top;
	min-width: 180px;
}
header .menu_top .sub-menu li {
	width: 100%;
	padding: 8px 8px;
	line-height: 0;
    border-top: 1px solid #2C2C2C;
	transition: all 0.3s;
}
header .menu_top .sub-menu li:last-child {
	border-bottom: 1px solid #2C2C2C;
}
header .menu_top li.hover a,
header .menu_top ul li.current-menu-item.menu-item-6.hover a {
	color: #F68E13;
}
header .menu_top li.hover .sub-menu {
	transform: scaleY(1);
    transform-origin: top;
}
header.out .menu_top li.hover .sub-menu {
	transform: scaleY(0);
}
header .menu_top li.hover .sub-menu li {
	line-height: 1.2;
}
header .menu_top .sub-menu li a,
header .menu_top ul li.current-menu-item.menu-item-6.hover .sub-menu li a {
	text-transform: none;
	color:#000000;
}
header .menu_top .sub-menu li a:hover,
header .menu_top ul li.current-menu-item.menu-item-6.hover .sub-menu li a:hover {
	color: #F68E13;
}

header .phone {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: column;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	align-items: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
}
header .phone a {
	color: #2C2C2C;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: color .3s;
}
header .phone a:hover {
	color: #F68E13;
}
header .phone span {
	color: #2C2C2C;
	font-size: 13px;
	font-weight: 400;
}
.icons a {
	display: block;
    width: 30px;
    height: 30px;
	margin-left: 8px;
	transition: background .5s;
}
.icons a:first-child {
	margin-left: 30px;
}
.icons .icon-mail { background: url('./assets/images/icon_mail.svg'); }
.icons .icon-mail:hover { background: url('./assets/images/icon_mail_active.svg'); }
.icons .icon-viber { background: url('./assets/images/icon_viber.svg'); }
.icons .icon-viber:hover { background: url('./assets/images/icon_viber_active.svg'); }
.icons .icon-telegram { background: url('./assets/images/icon_telegram.svg'); }
.icons .icon-telegram:hover { background: url('./assets/images/icon_telegram_active.svg'); }

.cover-block__text .icons a:first-child {
	margin-left: 0;
}
.cover-block__text .icons a:last-child {
	margin-right: 8px;
}

.btn {
	display: block;
	background-color: #2C2C2C;
	width: fit-content;
    padding: 10px 40px 12px 40px;
	border-radius: 18px;
	color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
	overflow: hidden;
}
.btn:hover {
	cursor: pointer;
}
.btn span {
	position: relative;
	left: 0;
	-webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.btn span::after {
	content: ' ';
    background-image: url(./assets/images/call-ico.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 18px;
    height: 38px;
    position: absolute;
    right: -56px;
    top: -10px;
	opacity: 0;
	-webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.btn:hover span {
	left: -12px;
}
.btn:hover span::after {
	right: -32px;
	opacity: 1;
}
.cover-block-desktop { display: flex; }
.cover-block-mobile { display: none; }
.cover-block {
	-webkit-box-pack: end;
    -ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 40px;
	margin-bottom: -60px;
}
.cover-block .cover {
	height: 600px;
    width: 50%;
    border-radius: 0 0 0 160px;
	background-position: top center;

	width: 540px;
    border-radius: 1000px 1000px 0 0;
}
.cover-block__text {
	position: relative;
	width: calc((1260px / 2) + 24px);
}
.cover-block__text h1,
.cover-inner__text h1 {
	font-family: "IBM Plex Sans", serif;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.1;
	color: #2C2C2C;
	margin-bottom: 20px;
}
.cover-block__text .cover-add-block {
	margin-bottom: 32px;
	justify-content: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
}
.cover-block-desktop .cover-block__text .cover__benefits {
	padding: 10px 24px 0px 0px;
    width: fit-content;
	margin-right: 38px;
}
.cover-block-mobile .cover__benefits {
	background-color: #FFFFFF;
	border-radius: 18px;
	padding: 20px 24px 16px 0px;
    width: fit-content;
	margin-right: 38px;
	margin-bottom: 24px;
	font-size: 16px;
}
.cover-block__text .cover__benefits ul {
	list-style-image: url(./assets/images/list_image.svg);
}
.cover-block__text .cover__benefits ul li {
	margin-bottom: 10px;
}
.cover-block-desktop .cover__benefits ul {
	padding-left: 20px;
}
.cover-block-mobile .cover__benefits ul li {
	padding-left: 4px;
	margin-bottom: 8px;
}
.cover-block__text .description,
.cover-inner__text .description {
	font-size: 16px;
	max-width: 400px;
	margin-bottom: 24px;
}
.cover-block__text .contact {
	justify-content: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
}
.cover-block__text .contact .icons a {
	width: 40px;
    height: 40px;
    background-size: contain;
}
.cover-block__text .contact .icons {
	display: none;
}
.cover-block-desktop .rating-block {
    padding: 13px 24px 15px 24px;
}
.cover-block-mobile .rating-block {
	position: absolute;
    bottom: -18px;
    right: -54px;
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 13px 24px 15px 24px;
}
.cover-block .rating-block .rating {
	font-size: 26px;
	font-weight: bold;
	margin-right: 8px;
}
.cover-block .rating-block .stars div {
	width: 22px;
    height: 21px;
    background-size: contain;
    background-image: url(./assets/images/star.svg);
}
.cover-block .rating-block .rating_text {
	font-size: 13px;
    line-height: 1.2;
}
.cover-inner {
	-webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
	margin-top: 140px;
    margin-bottom: calc(var(--bottom-margin) + 20px);
}
.cover-inner__text {
	max-width: 560px;
}
.cover-inner__text h1,
.cover-inner__text .description {
	text-align: center;
	max-width: unset;
}
.cover-inner__text .contact {
	justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
}
.cover-inner__text .contact .icons {
	display: none;
}

.services {
	margin-bottom: var(--bottom-margin);
}
.services-blocks-wrapper .block {
	display: block;
	width: calc(380px - 48px);
	height: 120px;
	background-color: #FFFFFF;
	color: #000000;
    text-decoration: none;
	border-radius: 18px;
	padding: 26px 24px;
	transition: all 0.3s ease;
}
.services-blocks-wrapper .block:first-child {
	margin-right: 60px;
}
.services-blocks-wrapper .block:hover {
	cursor: pointer;
	-webkit-box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 2px 2px 6px 0px rgba(34, 60, 80, 0.2);
}
.services-blocks-wrapper .block h3 {
	font-size: 17px;
}
.services-blocks-wrapper .block div {
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 8px;
}
.services-blocks-wrapper .block .link {
	font-size: 13px;
	color: #F68E13;
	text-decoration: underline;
}
.services-blocks-wrapper .block .link:hover {
	text-decoration: none;
}
.gratuity-block {
	width: 260px;
    margin-right: 72px;
	background: #FFFFFF;
    padding: 24px;
    border-radius: 18px;
    padding: 26px 24px;
    height: 120px;
}
.gratuity-block h2 {
	margin-bottom: 10px;
}
.gratuity-block .gratuity {
	font-family: "IBM Plex Sans", serif;
	font-size: 26px;
	font-weight: 700;
	color: #F68E13;
}
.gratuity-block .gratuity_text {
	font-size: 13px;
    line-height: 1.2;
}
.gratuity-block a {
	display: none;
	color: #F68E13;
	text-decoration: underline;
}
.gratuity-block a:hover {
	text-decoration: none;
}
.page-description {
	width: calc(100% - ((100% - 1260px) / 2));
	height: 600px;
	position: relative;
	margin-bottom: var(--bottom-margin);;
}
.page-description .lilies {
	height:100%;
	margin-right: 366px;
	background-repeat: no-repeat;
	background-position: right;
	border-radius: 0 160px 0 0;
}
.page-description_text {
	position: absolute;
    bottom: 32px;
    right: 0;
    width: calc(630px - 48px);
    padding: 26px 24px 22px 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
}
.page-description_text h2 {
	font-size: 22px;
}
.prices {
	margin-bottom: var(--bottom-margin);
}
.prices .price_block_title {
	max-width: 300px;
	margin-left: 24px;
}
.prices .price_block_description {
	max-width: 410px;
	margin-left: 24px;
	margin-bottom: 36px;
}
.prices_table .package {
	width: 420px;
	min-height: 420px;
    padding: 12px 0;
	border-right: 1px solid #F68E13;
	flex-direction: column;
    align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
}
.prices_table .package:last-child {
	border: 0;
}
.prices_table .package h3 {
	margin-left: 24px;
    text-transform: uppercase;
}
.prices_table .package ul {
	list-style-image: url('./assets/images/list_image.svg');
}
.prices_table .package ul li {
	margin-bottom: 12px;
}
.prices_table .package ul li:last-child {
	margin-bottom: 0;
}
.prices_table .package .package_tax {
    margin-left: 24px;
    margin-top: 24px;
    width: calc(100% - 48px);
}
.prices_table .package .package_tax .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.prices_table .package .package_tax .row > div:nth-child(1) {
    margin-right: 24px;
}
.prices_table .package .package_tax .row span {
    font-size: 13px;
}
.prices_table .package .package_tax .row .package_tax_summ {
    font-family: "IBM Plex Sans", serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.prices_table .package .package_tax .row div:nth-child(2) .package_tax_summ  {
    color: #F68E13;
}
.price-tabs-wrapper {
    width: 100%;
    overflow: hidden;
}
.price-tabs {
    align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
    width: calc(100% * 2);
    position: relative;
    transition: all 0.6s;
}
.price-tabs-left {
    left: 0;
}
.price-tabs-right {
    left: -100%;
}
.price-tabs .price-tabs-inner {
    width: 100%;
}
.contact_us {
	width: calc(820px - 32px);
    background-color: #2C2C2C;
    border-radius: 18px;
    padding: 36px 24px;
    color: #FFFFFF;
    margin-top: 36px;
}
.contact_us h2 {
	margin: 0;
}
.contact_us .phone {
	margin-right: 24px;
}
.contact_us .phone a {
	color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: color .3s;
}
.contact_us .phone a:hover {
	color: #F68E13;
}
.contact_us .icons .icon-viber { background-image: url('./assets/images/icon_viber_white.svg'); }
.contact_us .icons .icon-telegram { background-image: url('./assets/images/icon_telegram_white.svg'); }
.contact_us .icons .icon-viber:hover { background-image: url('./assets/images/icon_viber_active.svg'); }
.contact_us .icons .icon-telegram:hover { background-image: url('./assets/images/icon_telegram_active.svg'); }

.transport {
	position: relative;
	height: 348px;
	overflow: hidden;
	margin-bottom: var(--bottom-margin);
}
.transport img {
	position: absolute;
	right: 0;
	bottom: 0;
}
.transport .transport_text-wrapper {
	width: calc(830px - 184px);
    padding: 26px 160px 22px 24px;
    border-radius: 18px;
    background-color: #FFFFFF;
}
.transport .transport_text-wrapper .btn {
	margin-top: 24px;
	position: relative;
	z-index: 30;
}
.faq-wrapper {
	width: 100%;
	background-color: #2C2C2C;
	color: #FFFFFF;
	padding: 80px 0;
	margin-bottom: var(--bottom-margin);
}
.faq {
	align-items: flex-start;
    -webkit-box-align: start;
	-ms-flex-align: start;
}
.faq .left {
	max-width: 360px;
	margin-right: 30px;
}
.faq .right {
	width: 100%;
}
.faq .question-wrapper {
	width: auto;
	border-bottom: 1px solid #FFFFFF;
    margin-bottom: 8px;
}
.faq .question {
	width: auto;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
	transition: all 0.3s;
}
.faq .question .minus {
	display: none;
}
.faq .question:hover {
	cursor: pointer;
	opacity: 0.8;
}
.faq .answer {
	font-size: 13px;
	padding: 0 24px 20px 24px;
	display: none;
}
.faq .answer a {
	color: #FFFFFF;
	text-decoration: underline;
	transition: all 0.3s;
}
.faq .answer a:hover {
	text-decoration: none;
}

.benefints {
	margin-bottom: var(--bottom-margin);
}
.benefints h2 {
	font-size: 48px;
    font-weight: bold;
    color: #2C2C2C;
}
.benefints .description {
	max-width: 440px;
}
.benefits-row {
	margin-top: 36px;
}
.benefits-row .item {
	width: 300px;
	height: 120px;
	background-color: #FFFFFF;
	border-radius: 18px;
	font-size: 16px;
	font-weight: 600;
}
.benefits-row .item .item_text {
	padding: 26px 24px;
}
footer {
	background-color: #FFFFFF;
	padding: 20px 0;
}
footer  .container {
	align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
}
footer .logo {
	max-width: 130px;
    height: 48px;
}
footer .logo a {
	color: #000000;
    font-size: 13px;
    text-decoration: none;
    transition: color .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
footer .logo img {
	width: 44px;
    margin-right: 12px;
}
footer .menu_bottom ul {
	padding-left: 0;
}
footer .menu_bottom ul li {
	list-style-type: none;
    margin-bottom: 8px;
}
footer .menu_bottom ul li:last-child {
	margin: 0;
}
footer .menu_bottom ul li a {
	color: #000000;
    font-size: 13px;
    text-decoration: none;
    transition: color .3s;
}
footer .menu_bottom ul li a:hover {
	color: #F68E13;
}
footer .details-col a {
	color: #F68E13;
	text-decoration: underline;
}
footer .details-col a:hover {
	text-decoration: none;
}
footer .contact_us {
	width: calc(340px - 48px);
    margin-top: 0;
    position: relative;
    top: -40px;
    padding: 26px 24px;
	margin-bottom: -40px;
}
footer .contact_us .phone {
	margin: 36px 0 12px 0;
}
footer .contact_us .icons {
	justify-content: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
}
footer .copyright {
	font-size: 11px;
}

.breadcrumbs {
	margin-top: 80px;
	padding-left: 24px;
    box-sizing: border-box;
	color: #7E7E7E;
}
.breadcrumbs a {
	color: #7E7E7E;
	transition: all 0.3s;
}
.breadcrumbs a:hover {
	color: #F68E13;
}
main.container {
	align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	margin-top: 24px;
}
main .content-wrapper {
	background-color: #FFFFFF;
    width: calc(100% - 400px);
	margin-bottom: 80px;
}
main .content-left-wrapper {
	width: calc(100% - 400px);
}
main .content-left-wrapper .content-wrapper {
	width: 100%;
}
main .content-wrapper .content {
	padding: 24px;
	font-size: 16px;
    line-height: 1.5;
}
main .content-wrapper .content-article__info {
	color: #7E7E7E;
	font-size: 12px;
	margin-bottom: 8px;
}
main .content h1 {
	font-size: 28px;
    margin-bottom: 18px;
}
main .content h2 {
	margin: 12px 0;
	font-size: 22px;
}
main .content.contacts h2 {
	margin-top: 0;
}
main .content p img {
	max-width: 100%;
	height: auto;
}
main .content a {
	color: #F68E13;
	text-decoration: underline;
}
main .content a:hover {
	text-decoration: none;
}
main .content blockquote {
    padding: 1em 24px;
    border-radius: 18px;
    margin: 24px 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
}
main .content hr {
	width: 100%;
    height: 1px;
    border: none;
    background-color: #7E7E7E;
    margin: 0;
}
main #gallery-1 img {
	border: none;
	width: 94%;
    height: auto;
}
main .content .review-wrapper {
	padding: 20px;
    border-top: 1px solid #7E7E7E;
}
main .content .review-wrapper .review-title {
	margin-bottom: 8px;
	align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
}
main .content .review-wrapper .review-title span {
	font-weight: bold;
}
main .content .review-wrapper .review-title .stars {
	margin-right: 4px;
}
main .content .review-wrapper .review-title .stars div {
	width: 16px;
    height: 16px;
    background-size: contain;
	background-image: url('./assets/images/star.svg');
}
main .articles_wrap a {
	color: #2C2C2C;
	text-decoration: none;
	transition: all 0.3s;
}
main .articles_wrap a:hover {
	color: #F68E13;
}
main .articles_wrap a h4 {
	font-size: 22px;
	line-height: 1.3;
}
main .articles_wrap .article {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin-bottom: 36px;
}
main .articles_wrap .article__info {
	width: calc(100% - 260px);
}
main .articles_wrap .article__info .article__exerpt p {
	margin-top: 8px;
}
main .articles_wrap .article__img {
	display: block;
	width: 240px;
	height: 180px;
	margin-right: 20px;
	overflow: hidden;
}
main .articles_wrap .article__img div {
	width: 100%;
	height: 100%;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	transition: all 0.3s;
}
main .articles_wrap a:hover .article__img div {
	transform: scale(1.1);
}
main .pagination-wrapper {
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
main .pagination-wrapper ul {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
}
main .pagination-wrapper ul li {
	list-style: none;
    margin: 0 4px;
	font-weight: 500;
}
main .pagination-wrapper ul li a {
	text-decoration: none;
	transition: color .3s;
}
main .pagination-wrapper ul li a:hover {
	color: #000000;
	transition: color .3s;
}

main.page-prices {
	min-height: auto;
}
.page-prices h2 {
	font-size: 24px;
}
.page-prices .price_block_title {
	max-width: 360px;
}
.page-prices .price-tabs-title {
	justify-content: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	padding-left: 24px;
	margin-bottom: 24px;
}
.page-prices .price-tab {
	width: 220px;
	margin-right: 24px;
	border-bottom: 1px solid #7E7E7E;
	transition: all 0.3s;
}
.page-prices .price-tab h2 {
	color: #7E7E7E;
	margin-left: 0;
	margin-bottom: 12px;
	cursor: pointer;
	transition: all 0.3s;
}
.page-prices .price-tab-active {
	border-bottom: 1px solid #F68E13;
}
.page-prices .price-tab-active h2 {
	color: #F68E13;
	cursor: default;
}
.page-prices .price-tab:hover {
	border-bottom: 1px solid #F68E13;
}
.page-prices .price-tab:hover h2 {
	color: #F68E13;
}
.page-prices .price-tabs-title a,
.page-prices .price-tabs-title a h2 {
	color: #F68E13;
}
.page-prices .price-tabs-title a:hover {
	text-decoration: none;
}


.sidebar .services {
	width: auto;
	flex-direction: column-reverse;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;

}
.sidebar .services-blocks-wrapper {
	flex-direction: column;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
}
.sidebar .services-blocks-wrapper .block {
	margin: 0;
}
.sidebar .services-blocks-wrapper .block:first-child {
	margin: 20px 0;
}

@media (max-width:1300px) {
	.container {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	.cover-block__text {
		width: 50%;
		margin-left: 20px;
	}
	.cover-block__text h1,
	.benefints h2 {
		font-size: 44px;
	}
	.gratuity-block {
		margin-right: 20px;
	}
	.page-description {
		width: calc(100% - 20px);
	}
	.contact_us {
		width: calc(100% - 48px);
	}
	.transport .transport_text-wrapper {
		width: 50%;
	}
	.benefits-row {
		flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		justify-content: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
	}
	.benefits-row .item {
		width: 420px;
		margin-right: 20px;
		margin-bottom: 20px;
	}
	.benefits-row .item:nth-child(2n) {
		margin-right: 0;
	}
}
@media (max-width:1200px) {
	.services-blocks-wrapper .block:first-child {
		margin-right: 20px;
	}
	.page-description .lilies {
		margin-right: 260px;
	}
	.transport,
	.transport img {
		height: 320px;
	}
}
@media (max-width:1160px) {
	.gratuity-block {
		width: 240px;
		margin-right: 0;
	}
	.gratuity-block h2 {
		font-size: 18px;
	}
}
@media (max-width:1100px) {
	.menu_top {
		display: none;
	}
	.cover-block {
		margin-bottom: var(--bottom-margin);
	}
	.services-blocks-wrapper {
		width: 70%;
	}
	.services-blocks-wrapper .block {
		width: calc(50% - 10px);
		height: auto;
	}
	.services-blocks-wrapper .block div {
		font-size: 12px;
	}
	.gratuity-block {
    	background: transparent;
    	height: auto;
	}
	.page-description .lilies {
		margin-right: 240px;
		background-position: center;
	}
	.transport,
	.transport img {
		height: 280px;
	}
	main.container {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
	}
	main .content-left-wrapper {
		width: 100%;
	}
	main .content-wrapper {
		width: 100%;
		margin-bottom: 0;
	}
	main .sidebar {
		margin-top: 36px;
	}
	main .sidebar .services {
		flex-direction: row-reverse;
		-webkit-box-orient: horizontal;
		-ms-flex-direction: row-reverse;
		justify-content: flex-end;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
	}
	main .sidebar .gratuity-block {
		width: 280px;
	}
	main .sidebar .services-blocks-wrapper {
		width: 70%;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		margin-left: 36px;
	}
}
@media (max-width:1050px) {
	.cover-block .cover {
		width: calc(100% - 460px);
	}
	.cover-block__text {
		width: 580px;
	}
	.transport img {
		right: -50px;
	}
	.benefits-row .item {
		width: 380px;
	}
	footer .logo {
		display: none;
	}
}
@media (max-width:900px) {
	:root {
		--bottom-margin: 60px;
	}
	.cover-block-desktop { display: none; }
	.cover-block-mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		padding: 0;
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		margin-bottom: 60px;
	}
	.cover-block .cover {
		width: 100%;
        height: 340px;
        background-size: cover;
		background-position: center top;
		border-radius: 0 0 0 160px;
	}
	.cover-block__text {
        margin-top: 48px;
        margin-left: 130px;
		max-width: 480px;
	}
	.cover-block__text h1,
	.benefints h2 {
		font-size: 38px;
		margin-bottom: 16px;
	}
	.cover-block__text .description {
		font-size: 13px;
	}
	.cover-block__text .contact .icons {
		display: flex;
	}
	.cover-block .rating-block {
		top: -90px;
		bottom: auto;
		right: 0;
	}
	.services {
		flex-direction: column-reverse;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.services-blocks-wrapper {
		width: 100%;
	}
	.services-blocks-wrapper .block div {
		font-size: 13px;
	}
	.gratuity-block {
		width: 260px;
		margin-bottom: 28px;
        margin-left: 130px;
		padding: 0;
	}
	.gratuity-block h2 {
		font-size: 20px;
	}
	.page-description {
		width: 100%;
		height: auto;
	}
	.page-description .lilies {
		height: 340px;
		margin-right: 0;
		background-size: cover;
	}
	.page-description_text {
		position:static;
    	width: calc(100% - 48px);
    	border-radius: 0;
	}
	.prices_table .package {
		min-height: 350px;
	}
	.transport .transport_text-wrapper {
		width: 60%;
        padding-right: 50px;
	}
	.transport img {
		right: -150px;
	}
	.benefits-row .item {
		width: 280px;
	}
	.benefits-row .item .item_text {
		padding: 26px 16px;
	}
	.faq {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
	}
	.faq .left {
		margin-left: 24px;
		margin-right: 0;
	}
	.faq .right {
		margin-top: 36px;
	}
	main .sidebar .gratuity-block {
		margin-left: 0;
	}
	main .sidebar .services-blocks-wrapper .block {
		width: auto;
	}
}
@media (max-width:756px) {
	.prices.container {
		width: 100%;
    	padding: 0;
	}
	.prices .price_block_description {
		margin-bottom: 4px;
	}
	.prices_table {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.prices_table .package {
		width: 100%;
		height: auto;
		min-height: auto !important;
		padding: 20px 0;
		border-right: 0;
		border-bottom: 1px solid #F68E13;
	}
	.prices .contact_us {
		border-radius: 0;
	}
	.transport {
		overflow: hidden visible;
	    min-height: 400px;
    	align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.transport .transport_text-wrapper {
		width: calc(100% - 48px);
        padding: 26px 24px 22px 24px;
	}
	.transport img {
		height: 258px;
		top: 140px;
        right: -120px;
		bottom: auto;
	}
	.benefits-row {
		margin-top: 24px;
	}
	.benefits-row .item {
		width: calc(50% - 10px);
	}
	footer .menu_bottom {
		display: none;
	}
	.faq.container {
		width: 100%;
    	padding: 0;
	}
	main .articles_wrap .article {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	main .articles_wrap a h4 {
		font-size: 26px;
    	line-height: 1.2;
	}
	main .articles_wrap .article__img {
		margin: 0;
	    margin-bottom: 20px;
    	width: 100%;
    	height: 320px;
	}
	main .articles_wrap .article__info {
		width: 100%;
	}
	main .content ul,
	.faq .answer ul {
		padding-left: 20px;
	}
	main .content .review-wrapper {
		padding: 20px 0;
	}
	main #gallery-1 .gallery-item {
		float: none;
		width: 100%;
	}
	main #gallery-1 img {
		width: 100%;
	}
}
@media (max-width:640px) {
	footer .container {
		width: 100%;
		padding: 0;
		flex-direction: column-reverse;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
	}
	footer .contact_us {
		width: 100%;
		box-sizing: border-box;
		border-radius: 0;
	}
	footer .details-col {
		padding: 20px;
	}
	footer .copyright {
		padding: 0 20px;
		box-sizing: border-box;
	}
}
@media (max-width:600px) {
	.cover-block-mobile .cover__benefits {
		width: calc(100% - 24px);
		margin-right: 0;
	}
	.scroll-up {
		display: none !important;
	}
	h2 {
		font-size: 24px;
	}
	header .logo {
		margin-left: 20px;
	}
	header .icons {
		display: none;
	}
	.cover-block__text {
		width: calc(100% - 48px);
        margin-left: 24px;
	}
	.cover-block__text h1,
	.benefints h2 {
		font-size: 30px;
	}
	.services-blocks-wrapper {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.services-blocks-wrapper .block {
		width: calc(100% - 48px);
	}
	.services-blocks-wrapper .block:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.gratuity-block {
		margin-left: 24px;
		width: auto;
	}
	.prices .price_block_title,
	.price_block_description {
		max-width: fit-content;
		padding-right: 20px;
	}
	.contact_us,
	.contact_us .contacts {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.contact_us .phone {
		margin: 24px 0;
	}
	.contact_us .phone a {
		font-size: 30px;
	}
	.contact_us .icons a {
		margin-left: 12px;
	}
	.contact_us .icon-24-7,
	.contact_us .icons a {
		width: 40px;
		height: 40px;
		background-size: contain;
	}
	.transport {
		min-height: 440px;
	}
	.transport img {
		top: 180px;
	}
	.benefits-row .item {
		height: 140px;
	}
	main .sidebar .services {
		padding: 0;
		flex-direction: column-reverse;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
	}
	main .sidebar .services-blocks-wrapper {
		margin-left: 0;
		width: 100%;
	}
	main .sidebar .gratuity-block {
		margin-left: 24px;
		margin-top: 0;
	}
	main .articles_wrap .article__img {
		height: 280px;
	}
	main .content .review-wrapper .review-title {
		flex-direction: column;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
	}
}
@media (max-width:480px) {
	.transport {
		min-height: 460px;
	}
	.transport img {
		top: 200px;
	}
	.benefits-row .item {
		height: 160px;
	}
	.breadcrumbs {
		box-sizing: content-box;
	}
	main.container {
		width: 100%;
		padding: 0;
	}
	main .content-wrapper {
		border-radius: 0;
	}
	main .sidebar .services-blocks-wrapper {
		padding: 0 20px;
        width: calc(100% - 40px);
	}
	main .sidebar .gratuity-block {
		margin-left: 44px;
	}
}
@media (max-width:420px) {
	.cover-block-mobile .btn {
		width: 100%;
    	text-align: center;
	}
	.transport {
		min-height: 520px;
	}
	.transport img {
		top: 260px;
	}
	main .articles_wrap .article__img {
		height: 220px;
	}
	.cover-block__text .btn span {
		content: "Вызвать агента";
	}
}
@media (max-width:370px) {
	.cover-block .cover {
        height: 300px;
	}
	.cover-block-mobile .cover__benefits {
		margin-bottom: 16px;
	}
	header .logo {
		width: 60px;
	}
	header .logo a {
		color: #FFFFFF;
	}
	.cover-block__text h1,
	.benefints h2 {
		font-size: 28px;
	}
	h2 {
		font-size: 22px;
	}
	.transport {
		min-height: 540px;
	}
	.transport img {
        top: 280px;
        right: -140px;
    }
	.benefits-row .item {
		font-size: 14px;
	}
}