/*
Theme name: GetTeplohod
Description: Прогулка по реке Нева на эргономичных теплоходах
Author: Aleksandrlao
Author URI: http://alao.cfd
*/


:root {
	--white: #fff;
	--black: #191919;
	--blue: #4C526B;
}


@font-face {
	font-family: 'TT Hoves';
	src: url('fonts/TTHoves-Regular/TTHoves-Regular.eot');
	src: local('TT Hoves Regular'), local('TTHoves-Regular'),
	url('fonts/TTHoves-Regular/TTHoves-Regular.eot?#iefix') format('embedded-opentype'),
	url('fonts/TTHoves-Regular/TTHoves-Regular.woff2') format('woff2'),
	url('fonts/TTHoves-Regular/TTHoves-Regular.woff') format('woff'),
	url('fonts/TTHoves-Regular/TTHoves-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'TT Hoves';
	src: url('fonts/TTHoves-Bold/TTHoves-Bold.eot');
	src: local('TT Hoves Bold'), local('TTHoves-Bold'),
	url('fonts/TTHoves-Bold/TTHoves-Bold.eot?#iefix') format('embedded-opentype'),
	url('fonts/TTHoves-Bold/TTHoves-Bold.woff2') format('woff2'),
	url('fonts/TTHoves-Bold/TTHoves-Bold.woff') format('woff'),
	url('fonts/TTHoves-Bold/TTHoves-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 'TT Hoves', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1200px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, textarea, select, button {
	font-family: 'TT Hoves', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--black);
}
input::-webkit-input-placeholder {
	color: var(--black);
}
input::-moz-placeholder {
	color: var(--black);
}
input:-moz-placeholder {
	color: var(--black);
}
input:-ms-input-placeholder {
	color: var(--black);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, .text h3, .text h4, .text h5 {
	margin-bottom: 20px;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.33rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--gray);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}




.subhead {
	margin-bottom: 25px;
	color: #D9D9D9;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.05;
}
.head {
	margin-bottom: 45px;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
}
.desc {
	max-width: 580px;
	margin-bottom: 45px;
	font-size: 18px;
}


.button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 64px;
	border-radius: 5px;
	background: var(--blue);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	padding: 12px 32px;
	border: 2px solid var(--blue);
	outline: none;
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
.button--white,
.button:hover {
	background: var(--white);
	color: var(--blue);
}
.button--white:hover {
	background: var(--blue);
	color: var(--white);
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}



/* Header ----------------------------------------------------------------------------- */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	background: var(--white);
	border-bottom: 1px solid rgba(25, 25, 25, 0.40);
	transition: all .3s ease;
}
.header--front {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}
.header--fixed {
	position: fixed;
	background: var(--white);
}
.header .container {
	align-items: stretch;
}
.header__logo {
	display: block;
	width: 226px;
	height: 22px;
	margin-top: 24px;
	margin-bottom: 24px;
	background: url('i/bg-logo.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	position: relative;
}
.header--front .header__logo {
	background: var(--white);
	-webkit-mask: url('i/bg-logo.svg') center no-repeat;
	mask: url('i/bg-logo.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.header--fixed .header__logo {
	background: #303030;
	-webkit-mask: url('i/bg-logo.svg') center no-repeat;
	mask: url('i/bg-logo.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.header__logo span {
	position: absolute;
	top: 0;
	right: -130px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 5px;
	padding: 4px;
	background: #1559DE;
	color: var(--white);
	font-size: 13px;
	line-height: 1.1;
	text-align: center;
}


.header-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 68px;
	padding: 25px;
	border-left: 1px solid rgba(25, 25, 25, 0.20);
	border-right: 1px solid rgba(25, 25, 25, 0.20);
	margin-left: auto;
}
.header--front .header-social {
	border-left: 1px solid rgba(255, 255, 255, 0.20);
	border-right: 1px solid rgba(255, 255, 255, 0.20);
}
.header-social__item {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0 15px;
	background: var(--black);
	-webkit-mask: url('i/bg-icon-whatsapp.svg') center no-repeat;
	mask: url('i/bg-icon-whatsapp.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.header--front .header-social__item {
	background: var(--white);
}
.header-social__item--tg {
	-webkit-mask: url('i/bg-icon-telegram.svg');
	mask: url('i/bg-icon-telegram.svg');
}
.header-social__item--vk {
	-webkit-mask: url('i/bg-icon-vk.svg');
	mask: url('i/bg-icon-vk.svg');
}
.header__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 400px;
	min-height: 68px;
	padding: 25px;
	border-right: 1px solid rgba(25, 25, 25, 0.20);
}
.header--front .header__contact {
	border-right: 1px solid rgba(255, 255, 255, 0.20);
}
.header__phone {
	display: block;
	color: var(--black);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.05;
	text-decoration: none;
}
.header--front .header__phone {
	color: var(--white);
}



.header__nav-btn {
	display: block;
	width: 40px;
	height: 18px;
	border: none;
	background-color: transparent;
	outline: none;
	margin-top: 25px;
	margin-left: 60px;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	background: var(--black);
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before, .header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--black);
	transition: all 0.4s ease;
}
.header--front .header__nav-btn span,
.header--front .header__nav-btn span::before,
.header--front .header__nav-btn span::after {
	background: var(--white);
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}


.header__nav {
	position: absolute;
	top: 80%;
	left: 0;
	width: 100%;
	background: var(--white);
	padding: 50px 0;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}
.nav-active .header__nav {
	top: 100%;
	opacity: 1;
	pointer-events: auto;
}
.header__nav-contact {
	display: none;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	list-style: none;
	width: calc(100% + 16px);
	margin-left: -8px;
}
.header__nav li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 8px 16px;
}
.header__nav li.menu-item-has-children {
	min-width: 360px;
}
.header__nav a {
	display: block;
	color: rgba(25, 25, 25, 0.80);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	transition: all .3s ease;
}
.header__nav a:hover {
	color: #1559DE;
}
.header__nav .sub-menu {
	display: inline-block;
	vertical-align: top;
	max-width: 210px;
	padding-top: 4px;
}
.header__nav .sub-menu li {
	display: block;
}
.header__nav .sub-menu a {
	color: #191919;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}
.header__nav .sub-menu a:hover {
	text-decoration: underline;
}











	/* Hero ----------------------------------------------------------------------------- */
.hero {
	height: 700px;
}
.hero__slider {
	height: 100%;
	overflow: hidden;
}
.hero__slider .slick-list {
	height: 100%;
}
.hero__slider .slick-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	height: 100%;
}
.hero__slider .slick-arrow {
	position: absolute;
	bottom: 100px;
	right: calc(50% - 580px);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--white);
	background-color: transparent;
	outline: none;
	font-size: 0;
	cursor: pointer;
	transition: all .3s ease;
	z-index: 40;
}
.hero__slider .slick-prev {
	right: calc(50% - 420px);
}
.hero__slider .slick-arrow::before {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	left: calc(50% - 5px);
	width: 10px;
	height: 12px;
	background: var(--white);
	-webkit-mask: url("i/bg-icon-arrow-right.svg") center no-repeat;
	mask: url("i/bg-icon-arrow-right.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.hero__slider .slick-prev::before {
	transform: rotate(180deg);
}
.hero__slider .slick-arrow:hover {
	background: var(--white);
}
.hero__slider .slick-arrow:hover::before {
	background: var(--black);
}
.hero-item {
	width: 100%;
	height: 100%;
	position: relative;
}
.hero-item .container {
	height: 100%;
	z-index: 10;
}
.hero-item__bottom {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	height: 100%;
}
.hero-item__head {
    width: 100%;
    max-width: 859px;
    margin-bottom: 100px;
    color: var(--white);
    font-size: 68px;
    font-weight: 600;
    line-height: 1.2;
}
.hero-item__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero-item__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.hero__slider-counter {
	position: absolute;
	bottom: 120px;
	right: calc(50% - 520px);
	width: 100px;
	color: var(--white);
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
}








/* Start ----------------------------------------------------------------------------- */
.start {
	min-height: 455px;
	padding-top: 160px;
	padding-bottom: 80px;
	background: #1559DE url("i/bg-start.svg") center no-repeat;
		background: #4c526b url("i/bg-start.svg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.start__head {
	max-width: 950px;
	color: #FFF;
	font-size: 64px;
	font-weight: 400;
	line-height: 1.2;
}


.breadcrumbs {
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.70);
	font-size: 16px;
	line-height: 1.2;
}
.breadcrumbs a {
	color: rgba(255, 255, 255, 0.70);
}
.breadcrumbs a:hover {
	color: rgba(255, 255, 255, 1);
}












	/* Middle ----------------------------------------------------------------------------- */
.main-travel {
	margin-top: -40px;
	padding-top: 120px;
	padding-bottom: 100px;
}
.main-travel__list {
	padding-top: 40px;
}
.travel__list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 62px;
}
.travel-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	border-radius: 10px;
	border: 1px solid #D9D9D9;
	box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.07);
	background: url("i/bg-travel-item.svg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.travel-item__info {
	width: 60%;
	padding: 60px 60px 36px 60px;
}
.travel-item__title {
	max-width: 480px;
	margin-bottom: 35px;
	color: #191919;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
}
.travel-item__desc {
	max-width: 440px;
	min-height: 92px;
	padding-bottom: 12px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}
.travel-item__advant {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	max-width: 300px;
	margin-bottom: 76px;
}
.travel-item__advant-item {
	display: inline-block;
	vertical-align: middle;
	border-radius: 2px;
	border: 1px solid #191919;
	padding: 9px 8px 10px;
	color: #191919;
	font-size: 14px;
	line-height: 1.05;
	text-align: center;
	text-decoration: none;
}

.travel-item__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}



.travel-item__schedule {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: 40%;
	padding: 70px 60px 32px;
	border-left: 1px solid #D9D9D9;
}
.travel-item__schedule-head {
	width: 100%;
	margin-bottom: 25px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.travel-item__schedule-time {
	width: 100%;
	margin-bottom: 32px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.travel-item__schedule-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin-bottom: auto;
}
.travel-item__schedule-item {
	display: inline-block;
	vertical-align: middle;
	min-width: 50px;
	min-height: 30px;
	border-radius: 2px;
	background: rgba(21, 89, 222, 0.40);
	padding: 8px 5px 7px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-decoration: none;
}
.travel-item__schedule-price {
	margin-top: 30px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.travel-item__schedule-price span {
	font-size: 36px;
	line-height: 1;
}










/* Main about ----------------------------------------------------------------------------- */
.main-about {
	padding-top: 100px;
	padding-bottom: 110px;
    background: #ffffff url(i/bg-main-about.svg) left bottom no-repeat;
    color: #2c2c2c;
}
.main-about__desc {
	margin-bottom: 88px;
}
.main-about__list {
	gap: 50px;
}
.main-about-item {
	width: 33%;
	max-width: 260px;
}
.main-about-item__title {
	margin-bottom: 50px;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.5;
}



.rules_box{
    padding-bottom: 2rem;
}






/* Main place ----------------------------------------------------------------------------- */
.main-place {
	padding-top: 60px;
	padding-bottom: 100px;
	/*border-bottom: 1px solid #191919;*/
}
.main-place__map {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.main-place__map-ins {
	position: relative;
	width: 100%;
	/*padding-top: 52%;*/
}
.main-place__map-ins iframe,
.main-place__map-ins img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main-place__map-ins img {
	object-fit: cover;
}













/* Main event ----------------------------------------------------------------------------- */
.main-event {
	padding-top: 60px;
	padding-bottom: 80px;
	border-bottom: 1px solid #191919;
}

.event__list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 40px;
}
.event-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	border-radius: 8px;
	border: 2px solid #D9D9D9;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.event-item__thumb {
	width: 360px;
}
.event-item__thumb-ins {
	display: block;
	width: 100%;
	padding-top: 82%;
	position: relative;
}
.event-item__thumb-ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.event-item__info {
	width: calc(100% - 360px);
	padding: 30px 40px 20px 100px;
}
.event-item__title {
	display: block;
	margin-bottom: 25px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
}
.event-item__desc {
	max-width: 480px;
	min-height: 112px;
	padding-bottom: 12px;
	color: #191919;
	font-size: 18px;
	line-height: 1.5;
}
.event-item__button-list {
	gap: 36px;
}







/* FAQ ----------------------------------------------------------------------------- */
.faq {
	padding-top: 72px;
	padding-bottom: 100px;
}
.faq__list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.faq-item {
	border-radius: 8px;
	border: 1px solid #000;
	width: 100%;
}
.faq-item__head {
	padding: 26px 70px 26px 60px;
	position: relative;
	font-size: 24px;
	line-height: 1.1;
	cursor: pointer;
}
.faq-item__head::before {
	content: '';
	position: absolute;
	top: 34px;
	right: 60px;
	width: 10px;
	height: 12px;
	background: var(--black);
	-webkit-mask: url('i/bg-icon-arrow-right.svg') center no-repeat;
	mask: url('i/bg-icon-arrow-right.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
	transform: rotate(90deg);
}
.faq-item.active .faq-item__head::before {
	transform: rotate(-90deg);
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.faq-item.active .faq-item__body {
	max-height: 8000px;
}
.faq-item__text {
	padding: 20px 70px 36px 60px;
}
.faq-item__text *:last-child {
	margin-bottom: 0;
}











/* What ----------------------------------------------------------------------------- */
.what {
	padding-top: 60px;
	padding-bottom: 40px;
}
.what__text {
	columns: 2;
}





.service-gallery {
	padding-top: 40px;
	padding-bottom: 88px;
}
.service-gallery__slider {
	padding-left: 48px;
	padding-right: 48px;
	position: relative;
}
.service-gallery__slider .slick-track {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.service-gallery__slider .slick-arrow {
	position: absolute;
	top: calc(50% - 30px);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--black);
	background-color: transparent;
	outline: none;
	font-size: 0;
	cursor: pointer;
	transition: all .3s ease;
	z-index: 40;
}
.service-gallery__slider .slick-prev {
	left: 18px;
}
.service-gallery__slider .slick-next {
	right: 18px;
}
.service-gallery__slider .slick-arrow::before {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	left: calc(50% - 5px);
	width: 10px;
	height: 12px;
	background: var(--black);
	-webkit-mask: url("i/bg-icon-arrow-right.svg") center no-repeat;
	mask: url("i/bg-icon-arrow-right.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.service-gallery__slider .slick-prev::before {
	transform: rotate(180deg);
}
.service-gallery__slider .slick-arrow:hover {
	background: var(--black);
}
.service-gallery__slider .slick-arrow:hover::before {
	background: var(--white);
}
.service-gallery-item {
	margin: 0 48px;
	overflow: hidden;
	border-radius: 40px;
}
.service-gallery-item__ins {
	display: block;
	width: 100%;
	padding-top: 68%;
	position: relative;
}
.service-gallery-item__ins img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}







.service-time {
	padding-top: 60px;
	padding-bottom: 100px;
}
.service-time::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	width: 1290px;
	height: 720px;
	background: url('i/bg-service-time.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.service-time .container {
	z-index: 10;
}
.service-time__top {
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(29, 29, 29, .5);
}
.service-time__days {
	margin-bottom: 4px;
	margin-right: auto;
	color: rgba(25, 25, 25, 0.80);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}
.service-time__price {
	margin-bottom: 4px;
	margin-left: 60px;
	color: rgba(25, 25, 25, 0.80);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}
.service-time__price span {
	font-size: 36px;
	line-height: 1.3;
}
.service-time__bottom {
	padding-top: 60px;
}
.service-time__schedule {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	width: 50%;
}
.service-time__schedule-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-width: 96px;
	min-height: 58px;
	border: 1px solid var(--black);
	border-radius: 3px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
.service-time__bottom-info {
	width: 38%;
}
.service-time__bottom-text {
	min-height: 120px;
	margin-bottom: 24px;
	font-size: 18px;
	line-height: 1.5;
}
.service-time__button {
	display: flex;
	width: 100%;
}





.rent-advant {
	padding-top: 60px;
	padding-bottom: 100px;
}



.rent-applic {
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--blue) url('i/bg-rent-applic.svg') right bottom no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	color: var(--white);
}
.rent-applic__info {
	width: 49%;
	max-width: 460px;
}
.rent-applic__desc {
	margin-bottom: 60px;
}
.rent-form__label {
	position: relative;
	margin-bottom: 26px;
}
.rent-form__label input {
	display: block;
	width: 100%;
	height: 64px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.80);
	border: 1px solid rgba(255, 255, 255, 0.80);
	outline: none;
	padding-left: 12%;
	padding-right: 8%;
	color: #191919;
	font-size: 18px;
	line-height: 1.5;
}
.rent-form__submit {
	position: relative;
}
.rent-form__submit input {
	display: flex;
	width: 100%;
	border-radius: 5px;
	border: 2px solid #FFF;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.rent-form__submit input:hover {

}


.rent-applic__cost {
	width: 48%;
	max-width: 460px;
	padding: 56px 60px;
	border-radius: 8px;
	border: 1px solid #FFF;
	margin-top: 40px;
}
.rent-applic__cost-head {
	margin-bottom: 32px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}
.rent-applic__cost-desc {
	padding-bottom: 40px;
	font-size: 18px;
	line-height: 1.5;
}
.rent-applic__cost-item {
	margin-top: 40px;
}
.rent-applic__cost-time {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 1.5;
}
.rent-applic__cost-price {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
}




.single-charact {
	padding-top: 60px;
	padding-bottom: 100px;
}
.single-charact .container {
	align-items: stretch;
}
.single-charact__info {
	width: 43.2%;
}
.single-charact__list {
	padding-top: 40px;
}
.single-charact-item + .single-charact-item {
	margin-top: 80px;
}
.single-charact-item__head {
	margin-bottom: 40px;
	font-size: 36px;
	font-weight: 400;
	line-height: 1.5;
}
.single-charact-item__desc {

}

.single-charact__block {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: 43.2%;
	border-left: 1px solid #D9D9D9;
	padding-left: 40px;
}
.single-charact__desc {
	width: 100%;
}
.single-advantage__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	margin-top: auto;
	margin-bottom: 100px;
}
.single-advantage__item {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 4px 8px;
	border-radius: 2px;
	border: 1px solid #191919;
	color: #191919;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
}





.partner {
	background: transparent;
	color: var(--black);
}
.partner__info .rent-form__label input {
	border-color: var(--black);
}
.partner__info .rent-form__submit input {
	border-color: var(--blue);
}
.partner__box {
	border: none;
	padding: 0;
}
.partner__head {
	margin-bottom: 70px;
	color: rgba(25, 25, 25, .8);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.5;
}
.partner__phone {
	display: block;
	margin-bottom: 40px;
	color: #191919;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
}
.partner__email {
	display: block;
	margin-bottom: 40px;
	color: #191919;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none;
}












	/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--blue);
	color: var(--white);
	text-align: center;
}
.footer a {
	color: var(--white);
	text-decoration: none;
}
.footer__phone {
	display: block;
	margin-bottom: 45px;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.1;
}
.footer__email {
	display: block;
	margin-bottom: 50px;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.1;
}
.footer__line {
	margin-bottom: 70px;
	width: 100%;
	height: 25px;
	background: url('i/bg-icon-footer-line.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.footer__logo {
	display: block;
	width: 348px;
	height: 34px;
	margin: 0 auto 50px;
	background: var(--white);
	-webkit-mask: url('i/bg-logo.svg') center no-repeat;
	mask: url('i/bg-logo.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	position: relative;
}
.footer-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 110px;
}
.footer-social__item {
	display: block;
	width: 32px;
	height: 32px;
	background: var(--white);
	-webkit-mask: url('i/bg-icon-instagram.svg') center no-repeat;
	mask: url('i/bg-icon-instagram.svg') center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
}
.footer-social__item--vk {
	-webkit-mask-image: url('i/bg-icon-vkontakte.svg');
	mask-image: url('i/bg-icon-vkontakte.svg');
}
.footer__nav {
	margin-bottom: 40px;
}
.footer__nav ul {
	list-style: none;
}
.footer__nav li {
	margin-bottom: 10px;
}
.footer__nav a {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1;
}
.footer__nav a:hover {
	text-decoration: underline;
}

.footer__copyright {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1;
}







/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input,
.popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors {
	display: none !important;
}
.popup-body input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	.header__contact {
		max-width: 360px;
	}


	.hero {
		height: 640px;
	}
	.hero__slider .slick-arrow {
		bottom: 80px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	.hero__slider .slick-prev {
		right: 170px;
	}
	.hero__slider-counter {
		bottom: 96px;
		right: 70px;
	}


	.main-travel__list {
		padding-top: 0;
	}
	.travel-item__info {
		padding: 50px 40px 24px 40px;
	}
	.travel-item__schedule {
		padding: 60px 40px 30px;
	}


	.main-about__desc {
		margin-bottom: 48px;
	}


	.event-item__info {
		padding: 25px 30px 20px 70px;
	}

}











@media screen and (max-width:1050px) {

	.subhead {
		margin-bottom: 15px;
		font-size: 18px;
	}
	.head {
		margin-bottom: 30px;
		font-size: 44px;
	}


	.header__contact {
		max-width: 250px;
	}
	.header__nav-btn {
		margin-left: 20px;
	}


	.hero {
		height: 560px;
	}
	.hero-item__head {
		max-width: 600px;
		font-size: 56px;
	}


	.travel-item__info {
		padding: 40px 30px 20px 30px;
	}
	.travel-item__title {
		margin-bottom: 25px;
		font-size: 30px;
	}
	.travel-item__schedule {
		padding: 50px 30px 30px;
	}


	.main-about-item {
		width: 30%;
		max-width: 250px;
	}
	.main-about-item__title {
		margin-bottom: 16px;
		font-size: 32px;
	}


	.event-item__info {
		padding: 20px 20px 20px 40px;
	}
	.event-item__title {
		margin-bottom: 15px;
		font-size: 22px;
	}


	.faq-item__head {
		padding: 20px 50px 20px 40px;
		font-size: 22px;
	}
	.faq-item__head::before {
		content: '';
		position: absolute;
		top: 28px;
		right: 30px;
	}
	.faq-item__text {
		padding: 16px 50px 30px 40px;
	}


	.start__head {
		max-width: 800px;
		font-size: 56px;
	}


	.service-gallery__slider {
		padding-left: 32px;
		padding-right: 32px;
	}
	.service-gallery__slider .slick-arrow {
		top: calc(50% - 24px);
		width: 48px;
		height: 48px;
	}
	.service-gallery__slider .slick-prev {
		left: 8px;
	}
	.service-gallery__slider .slick-next {
		right: 8px;
	}
	.service-gallery-item {
		margin: 0 32px;
		border-radius: 32px;
	}


	.service-time__schedule {
		gap: 16px;
		width: 55%;
	}


	.rent-applic__cost {
		width: 46%;
		padding: 36px 40px;
		margin-top: 30px;
	}


	.footer {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.footer__phone {
		margin-bottom: 25px;
		font-size: 40px;
	}
	.footer__email {
		margin-bottom: 40px;
		font-size: 40px;
	}
	.footer-social {
		margin-bottom: 60px;
	}


}












@media screen and (max-width:900px) {

	html {
		font-size: 18px;
	}
	body {
		font-size: 0.9rem;
	}


	.button {
		min-height: 60px;
		padding: 8px 24px;
		font-size: 18px;
	}


	.header--front .header__logo {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.header__logo {
		width: 220px;
		height: 21px;
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.header__logo span {
		top: 110%;
		right: 0;
		font-size: 12px;
	}
	.header-social {
		min-height: 60px;
		padding: 20px;
	}
	.header__contact {
		max-width: 240px;
		min-height: 60px;
		padding: 20px;
	}
	.header__nav-btn {
		margin-left: 20px;
	}


	.hero {
		height: 520px;
	}
	.hero__slider .slick-arrow {
		bottom: 20px;
	}
	.hero__slider-counter {
		bottom: 35px;
	}


	.main-travel {
		margin-top: -20px;
		padding-top: 80px;
		padding-bottom: 60px;
	}

	.travel-item__info {
		width: 58%;
		padding: 20px;
	}
	.travel-item__button-list {
		gap: 20px;
	}
	.travel-item__schedule {
		width: 42%;
		padding: 25px 20px 20px;
	}


	.main-about {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.main-about__list {
		gap: 25px;
	}
	.main-about-item {
		width: 30%;
		max-width: 210px;
	}


	.main-place {
		padding-top: 50px;
		padding-bottom: 60px;
	}


	.main-event {
		padding-top: 50px;
		padding-bottom: 60px;
	}


	.event-item__thumb {
		width: 320px;
	}
	.event-item__info {
		width: calc(100% - 320px);
		padding: 20px;
	}
	.event-item__desc {
		min-height: 100px;
		font-size: 16px;
	}
	.event-item__button-list {
		gap: 20px;
	}


	.start__head {
		max-width: 700px;
		font-size: 48px;
	}


	.what {
		padding-top: 40px;
		padding-bottom: 20px;
	}


	.service-time {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.service-time__price {
		margin-left: 30px;
		font-size: 18px;
	}
	.service-time__bottom {
		padding-top: 30px;
	}
	.service-time__schedule {
		gap: 12px;
		width: 57%;
	}
	.service-time__schedule-item {
		min-width: 88px;
		min-height: 52px;
	}
	.service-time__bottom-info {
		width: 42%;
	}


	.rent-applic__cost {
		width: 46%;
		padding: 24px 30px;
		margin-top: 20px;
	}
	.rent-applic__cost-head {
		margin-bottom: 24px;
		font-size: 28px;
	}
	.rent-applic__cost-price {
		font-size: 32px;
	}


	.single-charact__list {
		padding-top: 0;
	}
	.single-charact-item + .single-charact-item {
		margin-top: 50px;
	}
	.single-charact-item__head {
		margin-bottom: 10px;
		font-size: 32px;
	}
	.single-charact__block {
		width: 48%;
		padding-left: 20px;
	}
	.single-advantage__list {
		margin-bottom: 50px;
	}


	.partner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.partner__box {
		padding: 0;
	}
	.partner__head {
		margin-bottom: 40px;
		font-size: 25px;
	}
	.partner__phone,
	.partner__email {
		margin-bottom: 20px;
		font-size: 24px;
	}


	.faq {
		padding-top: 50px;
		padding-bottom: 60px;
	}

}












@media screen and (max-width:750px) {

	.button {
		min-height: 52px;
		padding: 6px 20px 8px;
	}
	.head {
		margin-bottom: 25px;
		font-size: 40px;
	}


	.header-social__item {
		margin: 0 10px;
	}
	.header-social {
		padding: 20px 8px;
	}
	.header__contact {
		max-width: 180px;
		padding: 20px 10px;
	}
	.header__phone {
		font-size: 20px;
	}
	.header__nav-btn {
		margin-left: 10px;
	}


	.hero {
		height: 480px;
	}
	.hero-item__head {
		max-width: 600px;
		font-size: 50px;
	}


	.travel-item__advant {
		margin-bottom: 40px;
	}
	.travel-item__schedule-price {
		margin-top: 20px;
		font-size: 18px;
	}
	.travel-item__schedule-price span {
		font-size: 32px;
	}


	.event-item__thumb {
		width: 200px;
	}
	.event-item__thumb-ins {
		padding-top: 120%;
	}
	.event-item__info {
		width: calc(100% - 200px);
	}
	.event-item__title {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.event-item__button-list {
		gap: 12px;
	}


	.start {
		min-height: 400px;
		padding-top: 150px;
		padding-bottom: 40px;
	}
	.breadcrumbs {
		margin-bottom: 20px;
	}
	.start__head {
		max-width: 600px;
		font-size: 40px;
	}


	.what__text {
		columns: 1;
	}


	.service-time__days {
		width: 100%;
		font-size: 30px;
	}
	.service-time__price {
		margin-left: 0;
	}
	.service-time__price span {
		font-size: 30px;
		line-height: 1.3;
	}
	.service-time__schedule {
		gap: 12px;
		width: 100%;
		padding-bottom: 24px;
	}
	.service-time__bottom-info {
		width: 100%;
	}


	.rent-applic__info {
		width: 100%;
		max-width: 100%;
	}
	.rent-applic__cost {
		order: -1;
		width: 100%;
		max-width: 100%;
		margin-top: 0;
		margin-bottom: 32px;
	}


	.single-charact {
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.single-charact__info {
		width: 100%;
	}
	.single-charact__block {
		width: 100%;
		padding-top: 40px;
		padding-left: 0;
		border-left: none;
	}
	.single-charact-item + .single-charact-item {
		margin-top: 30px;
	}
	.single-charact-item__head {
		margin-bottom: 5px;
		font-size: 24px;
	}

}












@media screen and (max-width:600px) {

	.header__nav-contact {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		padding-bottom: 20px;
	}
	.header-social--desc,
	.header__contact--desc {
		display: none;
	}
	.header__nav {
		padding: 30px 0;
	}
	.header-social {
		margin-left: 0;
	}
	.header-social__item,
	.header--front .header-social__item {
		background: var(--black);
	}


	.hero-item__head {
		margin-bottom: 80px;
		font-size: 38px;
	}


	.travel-item__info {
		width: 100%;
		padding: 20px;
	}
	.travel-item__schedule {
		width: 100%;
		border-left: none;
		border-top: 1px solid #D9D9D9;
	}


	.main-about__list {
		justify-content: center;
		gap: 20px;
	}
	.main-about-item {
		width: 46%;
		max-width: 250px;
	}
	.main-about-item__title {
		margin-bottom: 0;
		font-size: 24px;
	}


	.event-item__thumb {
		width: 100%;
	}
	.event-item__thumb-ins {
		padding-top: 60%;
	}
	.event-item__info {
		width: 100%;
	}


	.start {
		min-height: 360px;
		padding-top: 130px;
	}
	.start__head {
		max-width: 420px;
		font-size: 36px;
	}


	.service-gallery {
		padding-top: 20px;
		padding-bottom: 64px;
	}
	.service-gallery__slider {
		padding-left: 20px;
		padding-right: 20px;
	}
	.service-gallery__slider .slick-arrow {
		top: calc(100% + 10px);
	}
	.service-gallery__slider .slick-prev {
		left: calc(50% - 60px);
	}
	.service-gallery__slider .slick-next {
		right: calc(50% - 60px);
	}
	.service-gallery-item {
		margin: 0 8px;
		border-radius: 24px;
	}


	.faq-item__head {
		padding: 16px 50px 16px 20px;
		font-size: 20px;
	}
	.faq-item__text {
		padding: 16px 20px 20px 20px;
	}


	.footer__phone {
		margin-bottom: 15px;
		font-size: 30px;
	}
	.footer__email {
		margin-bottom: 20px;
		font-size: 30px;
	}
	.footer__line {
		margin-bottom: 30px;
		height: 20px;
	}
	.footer__logo {
		width: 280px;
		height: 28px;
		margin: 0 auto 30px;
	}
	.footer__nav {
		margin-bottom: 20px;
	}
	.footer__copyright {
		font-size: 18px;
		line-height: 1.2;
	}

}












@media screen and (max-width:450px) {

	.button {
		min-height: 48px;
		padding: 4px 16px 6px;
		font-size: 17px;
		font-weight: 500;
	}
	.head {
		font-size: 32px;
	}
	.desc {
		margin-bottom: 30px;
		font-size: 17px;
	}


	.header {
		z-index: 80;
	}
	.header__nav ul,
	.header__nav li {
		display: block;
	}


	.hero {
		height: 440px;
	}
	.hero-item__head {
		font-size: 36px;
	}


	.travel-item__info {
		padding: 16px;
	}
	.travel-item__title {
		margin-bottom: 20px;
		font-size: 25px;
	}
	.travel-item__schedule {
		padding: 16px;
	}
	.travel-item__schedule-head {
		margin-bottom: 5px;
		font-size: 18px;
	}
	.travel-item__schedule-time {
		margin-bottom: 8px;
		font-size: 15px;
	}


	.main-about-item {
		width: 100%;
		max-width: 100%;
	}


	.event-item__info {
		padding: 16px;
	}


	.start {
		min-height: 300px;
		padding-top: 120px;
	}
	.start__head {
		max-width: 360px;
		font-size: 28px;
	}


	.service-gallery__slider {
		padding-left: 8px;
		padding-right: 8px;
	}


	.service-time__schedule-item {
		min-width: 85px;
	}


	.rent-applic {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.rent-applic__cost {
		width: calc(100% + 10px);
		max-width: calc(100% + 10px);
		margin-left: -5px;
		padding: 16px;
		text-align: center;
	}
	.rent-applic__cost-head {
		margin-bottom: 20px;
		font-size: 25px;
	}
	.rent-applic__cost-desc {
		padding-bottom: 20px;
		font-size: 16px;
		line-height: 1.4;
	}
	.rent-applic__cost-item {
		margin-top: 30px;
	}
	.rent-applic__cost-time {
		margin-bottom: 5px;
		font-size: 17px;
	}
	.rent-applic__cost-price {
		font-size: 30px;
	}
	.rent-form__label input {
		padding-left: 8%;
		padding-right: 4%;
	}


	.partner__box {
		padding: 0;
	}
	.partner__head {
		margin-bottom: 30px;
		font-size: 20px;
	}


	.faq-item__head {
		padding: 16px 40px 16px 12px;
	}
	.faq-item__head::before {
		top: 22px;
		right: 16px;
	}
	.faq-item__text {
		padding: 12px;
	}


	.footer__email {
		font-size: 22px;
	}
	.footer__nav a {
		font-size: 18px;
	}

}












/* END ============================================================= */

