@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
}
*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
html {
    max-width: 100vw;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
	font-family: "Comfortaa", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #313239;
	background: #fff;
	position: relative;
	max-width: 100vw;
	overflow: hidden;
	min-height: 100vh;
}
a{
	cursor: pointer;
	text-decoration: none;
}
img{
	display: block;
	max-width: 100%;
}
.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1260px;
	padding: 0 15px;
}
.flex{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	align-content: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.nowrap{
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.justify-content-between{
    -webkit-justify-content:space-between;
    -ms-justify-content:space-between;
    -moz-justify-content:space-between;
    justify-content:space-between;
}
.justify-content-around{
    -webkit-justify-content:space-around;
    -ms-justify-content:space-around;
    -moz-justify-content:space-around;
    justify-content:space-around;
}
.justify-content-center{
    -webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.justify-content-end{
    justify-content:flex-end;
    -webkit-justify-content:flex-end;
    -ms-justify-content:flex-end;
    -moz-justify-content:flex-end;
}
.align-items-center{
    -webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.align-items-stretch{
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
}
.align-items-end{
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.align-content-stretch{
	-webkit-align-content: stretch;
	-moz-align-content: stretch;
	-ms-align-content: stretch;
	align-content: stretch;
}
.align-content-end{
	-webkit-align-content: flex-end;
	-moz-align-content: flex-end;
	-ms-align-content: flex-end;
	align-content: flex-end;
}
.align-content-center{
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	align-content: center;
}
.page-template-content{
	min-height: 500px;
}
.standard-content{
	margin-top: 200px;
	text-align: center;
	font-size: 25px;
	line-height: 1.6;
}
/********************************************************************************************************************************************************************************/
/**************************************************** LIGHTBOX ******************************************************************************************************************/
/********************************************************************************************************************************************************************************/

#fancybox-overlay {
	background: #29292E !important;
	opacity: 0.8 !important;
}
#fancybox-wrap,
#fancybox-outer,
#fancybox-content{
	background: #F9F9F9;
	border-radius: 20px;
}
#fancybox-outer{
	box-shadow: none !important;
}
#fancybox-content {
	border: none !important;
	padding: 10px;
}
#fancybox-content > *{
	border-radius: 10px;
	box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.06);
}
.form-lightbox{
	display:none;
	position: fixed;
	width:100vw;
	height:100vh;
	z-index: 3000;
	left: 0;
	top: 0;
	cursor: pointer;
	background: rgba(0,0,0,0.7);
	overflow: scroll;
}
.form-lightbox.active{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.form-lightbox-container{
	width: calc(100% - 30px);
	margin: 0 15px;
	background: #383CA3;
	border-radius: 20px;
	overflow: auto;
	position: relative;
	padding: 0;
	cursor: unset;
	max-width: 1226px;
	max-height: 100vh;
}
.form-lightbox-close {
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	transition: transform .25s ease-in-out;
}
.form-lightbox-close:hover{
	transform: rotate(-90deg);
}
.form-lightbox-close{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 20px;
	height: 20px;
	transition: transform .25s ease-in-out;
	background-image: url('images/close.svg');
	background-size: 20px;
	background-position: center;
}
.lightbox-form{
	font-family: "Comfortaa", sans-serif;
	background-color: #383CA3;
	padding: 132px 75px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 100%;
	border-radius: 14px;
}
.contacts-form-theform{
	max-width: 526px;
}
.lightbox-form-title {
	font-weight: 700;
	font-size: 39px;
	line-height: 45px;
	color: #fff;
	margin-bottom: 20px;
}
.lightbox-form-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 27px;
	color: #fff;
	margin-bottom: 40px;
}
.contacts-form-flex{
	gap: 10px;
}
.contacts-form-field{
	width: calc(50% - 5px);
}
.contacts-form-field.big{
	width: 100%;
}
.contacts-form-field input:not([type="submit"]) {
	font-family: "Comfortaa", sans-serif;
	display: block;
	width: 100%;
	max-width: 100%;
	background: rgba(255,255,255,.21);
	backdrop-filter: blur(12px);
	border: none;
	border-radius: 4px;
	padding: 20px 30px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
}
.contacts-form-field input[type="submit"]{
	font-family: "Comfortaa", sans-serif;
	display: block;
	width: 100%;
	max-width: 100%;
	background: #FBF7F3;
	border-radius: 4px;
	padding: 20px 0;
	font-weight:700;
	font-size: 18px;
	line-height: 20px;
	color: #383CA3;
	width: 100%;
	border: none;
	cursor: pointer;
}
.contacts-form-field input[type="submit"]:hover {
	color: #18292B;
	box-shadow: 0 0 3px #000 inset;
}
.wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
	display: block;
}
.wpcf7-not-valid-tip {
	max-width: 100%;
	margin-top: 0px;
	position: absolute;
	bottom: 0;
	width: 100%;
	display: block;
	background: #fff;
	line-height: 1;
	font-size: 15px;
	padding: 1px 10px;
	border-radius: 4px;
}
.wpcf7 form .wpcf7-response-output{
	width: 100%;
	max-width: unset;
	margin: 10px 0 0;
	border-radius: 4px;
	background: #fff;
}
#fancybox-close{
	top: 30px !important;
	right: 30px !important;
	width:20px;
	height:20px;
	transition: transform .25s ease-in-out;
	background-image: url('images/close.svg');
	background-size: 20px;
	background-position: center;
}
#fancybox-close:hover{
	transform: rotate(-90deg);
}
.lightbox-form .wpcf7-spinner,
#fancybox-close span{
	display: none !important;
}
@media screen and (max-width: 990px){
	.lightbox-form {
		padding: 40px 20px 50px;
	}
	.lightbox-form-title {
		font-size: 24px;
		line-height: 28px;
	}
	.lightbox-form-subtitle {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	.lightbox-form .wpcf7-response-output {
		margin-left: 0;
	}
	.contacts-form-flex{
		gap: 10px;
	}
	.contacts-form-field {
		width: 100%;
	}
	.form-lightbox-close {
		top: 20px;
		right: 20px;
	}
}
@media screen and (max-width: 600px){
	#fancybox-wrap {
		width: calc(100vw - 30px) !important;
		left: 15px !important;
	}
	#fancybox-img{
		width: auto !important;
		margin: auto !important;
	}
	.wpcf7-not-valid-tip,
	.lightbox-form .wpcf7-response-output {
		max-width: unset;
	}
}
/********************************************************************************************************************************************************************************/
/**************************************************** HEADER ********************************************************************************************************************/
/********************************************************************************************************************************************************************************/

#header{
	background:#FCF6F4;
	position: relative;
	z-index: 3000;
}
.header-inner{
	position: relative;
}
.header-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index:2;
	top: -35px;
}
.header-logo img {
	max-width: 282px;
	max-height: 282px;
}
.header-content {
	width: 100%;
	position: relative;
	z-index: 1;
}
.header-row-1{
	padding: 18px 0;
}
.header-row-2 {
	padding: 17px 0;
	background: #383CA3;
}
.header-row-1-left,
.header-row-1-right{
	width:calc(50% - 141px);
	gap: 15px;
}
.header-row-1-right{
	margin-left:auto;
}
.header-row-separator{
	height:1px;
	width:100%;
	background: #E3E3E3;
}
.main-menu{
	width:calc(50% - 141px);
	gap: 17px 5px;
}
.main-menu-right{
	margin-left:auto;
}
.main-menu a.main-menu-link {
	font-size: 16px;
	line-height: 1;
	color: #fff;
}
.main-menu a.main-menu-link:hover{
	color: #F5E5E5;
}
.header-lang{
	margin-left: 50px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
}
.header-lang-desktop{
	margin-left:0;
}
.header-lang-mobile{
	display:none;
}
.header-lang a{
	color:#69696C;
}
.header-lang-current{
	color: #18292B;
}
.header-lang-separator{
	width:2px;
	height:19px;
	background:#69696C;
	margin: 0 5px;
	display: inline-block;
	position: relative;
	top: 3px;
}
.header-burger{
	display: none;
	background-color: #383CA3;
	background-image: url('images/burger.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
}
.header-burger.active{
	background-image: url('images/burger-open.svg');
}
.pensionlp-menu-bg{
	display:none;
	position: fixed;
	z-index: 1010;
	background: #000;
	opacity: 0.7;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}
.header-phone,
.t-header-phone,
.header-address{
	display:none;
}
.header-phone.withico,
.t-header-phone.withico,
.header-address.withico{
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: 0 center;
	padding-left:50px;
}
.header-phone,
.t-header-phone{
	margin-bottom: 20px;
}
.header-phone a,
.t-header-phone a{
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	color: #383CA3;
}
.header-phone a:hover,
.t-header-phone a:hover{
	color: #383CA3 !important;
}
.header-address{
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 1%;
}
.header-phone.header-phone-desktop,
.t-header-phone.t-header-phone-desktop{
	display:block;
	margin: 0;
	padding-left: 50px;
	background-size: auto;
	line-height: 40px;
}
.header-phone.header-phone-desktop a,
.t-header-phone.t-header-phone-desktop a{
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #313239;
}
.header-phonesmultiple a{
	display:block;
}
.header-address.header-address-desktop{
	display: block;
	min-height: 40px;
	background-size: auto;
}
.header-address-content{
	position: relative;
}
.header-address-switchers {
	display: none;
	position: absolute;
	top: calc(100% + 5px);
	left:-10px;
	background: #fff;
	box-shadow: 0px 10px 44px 0px #390C0C1F;
	border-radius: 10px;
	padding: 10px;
	font-size: 14px;
	line-height: 28px;
	font-weight: 700;
	min-width: 147px;
	text-transform: uppercase;
}
.header-address-switcher{
	cursor:pointer;
	display: block;
}
.header-address-switcher:hover{
	color:#383CA3;
}
.header-address-item-city{
	cursor:pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	padding-right:15px;
	background-image: url('images/arrow-down.svg');
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: 100% center;
}
.header-address-item-address{
	font-size: 14px;
	line-height: 20px;
}
.header-socials{
	gap: 10px;
}
.header-socials a{
	transition: transform .25s ease-in-out;
}
.header-socials a:hover{
	transform:rotate(15deg);
}
.header-socials img {
	max-height: 40px;
	max-width: 40px;
}

.main-doit-btn{
	background: #FFFFFF;
	color:#18292B;
	border-radius: 4px;
	padding: 12px 20px;
	font-size: 14px;
	line-height: 1;
	text-align: center;
}
.main-doit-btn:hover{
	box-shadow: 0 0 2px #000;
}
.main-doit-btn.main-doit-btn-header {
	margin-left: 0;
	margin-right: 0;
	background: #383CA3;
	color: #fff;
}
.main-doit-btn.main-doit-btn-header.main-doit-btn-header-mobile {
	display:none;
}
.main-doit-btn-header-mobile{
	display:none;
}
.header-socials-separator{
	display:none;
	height:2px;
	width:100%;
	background-image: url('images/header-socials-separator.svg');
	background-size: auto 100%;
	background-position: 0 center;
	margin:15px 0;
}
@media screen and (max-width: 990px){
	#header{
		padding: 15px 0 30px;
	}
	#header.active{
		background: #FCF6F4;
	}
	.header-logo {
		left: 50px;
		top: -25px;
	}
	.header-logo img {
		max-width: 100px;
		max-height: 100px;
	}
	.main-doit-btn.main-doit-btn-header-desktop{
		display:none;
	}
	.header-content {
		display: none;
		position: absolute;
		z-index: 2020;
		left: 0;
		top: 70px;
		width: 100%;
		background: #FBF7F3;
		padding: 10px 15px 20px;
		border-radius: 0 0 20px 20px;
	}
	.header-content .container{
		padding:0;
	}
	#header.active .header-content {
		display: flex;
		max-width: unset;
		flex-wrap: wrap;
		background: #FCF6F4;
	}
	.header-row-1 {
		order: 2;
		padding: 0;
	}
	.header-row-2 {
		order: 1;
		background: none;
		padding: 0;
	}
	.header-row-1-left,
	.header-row-1-right {
		width: 100%;
		gap: 0;
	}
	.main-menu {
		width: 100%;
		gap: 24px 0;
	}
	.main-menu-right{
		margin-top: 24px;
	}
	.main-menu > .menu-item{
		width: 100%;
	}
	.main-menu a.main-menu-link {
		font-size: 16px;
		line-height: 1;
		margin: 0;
		color: #313239;
	}
	.main-menu a.main-menu-link:hover {
		color: #000;
	}
	.header-lang-desktop{
		display:none;
	}
	.header-lang-mobile,
	.header-burger,
	.header-phone,
	.t-header-phone,
	.header-address,
	.header-socials-separator{
		display:block;
	}
	.header-phone,
	.t-header-phone,
	.header-address{
		width:100%;
	}
	.header-lang {
		margin-left: 0;
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 17px;
	}
	.header-lang-separator {
		height: 17px;
	}
	.header-mobile-visible{
		padding-left: 75px;
		gap:15px;
	}
	.main-doit-btn.main-doit-btn-header.main-doit-btn-header-mobile{
		display:block;
		font-size: 12px;
		padding: 13px 10px;
	}
	.header-socials {
		order: 1;
	}
	.header-address.header-address-desktop {
		order: 2;
		margin-bottom: 15px;
	}
	.header-socials-conteiner{
		width:100%;
	}
}


/********************************************************************************************************************************************************************************/
/**************************************************** FOOTER ********************************************************************************************************************/
/********************************************************************************************************************************************************************************/

#footer{
	background: #FCF6F4;
}
.footer-row{
	padding: 50px 0;
}
.footer-logo img {
	max-width: 142px;
	max-height: 113px;
}
.footer-menus{
	gap: 15px 60px;
}
.footer-menu a.footer-menu-link{
	color:#18292B;
	font-size: 16px;
	line-height: 1;
}
.footer-menu .menu-item:not(:last-child) a.footer-menu-link{
	margin-bottom: 15px;
}
.footer-menu a.footer-menu-link:hover{
	text-decoration: underline;
}
.header-address.forfooter{
	margin-top: 15px;
}
.main-doit-btn.forfooter{
	display: block;
	margin-top: 15px;
}
.footer-separator{
	height:2px;
	width:100%;
	background-image: url('images/footer-separator.svg');
	background-size: auto 100%;
	background-position: center;
}
.footer-copywright{
	padding: 20px 0;
	font-size: 12px;
	line-height: 1;
	opacity: .5;
}
@media screen and (max-width: 990px){
	.footer-row {
		padding: 30px 0 15px;
	}
	.footer-logo{
		margin-bottom: 30px;
	}
}

/********************************************************************************************************************************************************************************/
/**************************************************** MAIN PAGE *****************************************************************************************************************/
/********************************************************************************************************************************************************************************/

/* HERO */
.main-hero{
	background: #FCF6F4;
	position: relative;
	z-index: 1;
}
.main-hero > .container{
	padding: 67px 15px 171px;
	position: relative;
}
.main-hero-thecontent{
	position: relative;
	z-index:2;
}
.main-hero-center-image{
	position: absolute;
	z-index:1;
	left: 50%;
	transform: translateX(-50%);
	bottom:0;
	max-height: calc(100% - 15px);
	max-width: 58%;
}
.main-hero-thecontent-left{
	width:100%;
	max-width: 408px;
}
.main-hero-title {
	font-size: 60px;
	font-weight: 700;
	line-height: 67px;
	color: #383CA3;
	margin-bottom: 30px;
}
.main-hero-subtitle {
	font-size: 24px;
	line-height: 36px;
	max-width: 239px;
	font-weight: 700;
}
.main-hero-thecontent-right{
	width:100%;
	max-width: 360px;
}
.main-hero-advantages{
	gap:62px;
}
.main-hero-advantage{
	width:100%;
}
.main-hero-advantage:nth-child(2){
	margin-left:25px;
}
.main-hero-advantage:nth-child(3){
	margin-left:50px;
}
.main-hero-advantage:nth-child(4){
	margin-left:75px;
}
.main-hero-advantage-ico{
	width: 74px;
	height: 74px;
	background:#E5AA8F;
	border-radius: 10px;
}
.main-hero-advantage-ico img{
	max-width:40px;
	max-height:40px;
}
.main-hero-advantage-text{
	width:calc(100% - 94px);
	font-size: 16px;
	line-height: 20px;
	font-weight:700;
}
@media screen and (max-width: 990px){
	.main-hero > .container{
		padding: 0px 15px 305px;
	}
	.main-hero-thecontent-left,
	.main-hero-thecontent-right{
		max-width: 100%;
	}
	.main-hero-title {
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 10px;
	}
	.main-hero-subtitle {
		font-size: 16px;
		line-height: 20px;
		max-width:unset;
	}
	.main-hero-advantages {
		margin-top:20px;
		gap: 5px;
	}
	.main-hero-advantage:nth-child(2),
	.main-hero-advantage:nth-child(3),
	.main-hero-advantage:nth-child(4){
		margin-left:0;
	}
	.main-hero-advantage-ico {
		width: 60px;
		height: 60px;
	}
	.main-hero-advantage-ico img {
		max-width: 32px;
		max-height: 32px;
	}
	.main-hero-advantage-text {
		width: calc(100% - 70px);
		font-size: 14px;
		line-height: 18px;
	}
	.main-hero-center-image {
		max-height: 300px;
		max-width: calc(100% - 30px);
		left: 15px;
		transform: unset;
	}
}


/* CTA */
.main-doit{
	padding: 60px 0;
	background: #383CA3;
}
.main-doit.main-doit-1 {
	padding: 30px 0;
	background: rgba(243,230,225,.7);
	backdrop-filter: blur(10px);
	position: relative;
	top: -120px;
	z-index: 2;
	min-height: 120px;
	margin-bottom: -120px;
}
.main-doit-left{
	width: calc(100% - 320px);
}
.main-doit-right {
	width: 284px;
}
.main-doit-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 1;
	color: #fff;
}
.main-doit-1 .main-doit-title {
	font-size: 30px;
	color: #313239;
	margin-bottom: 5px;
}
.main-doit-subtitle{
	font-size: 20px;
	line-height: 26px;
	color: #fff;
}
.main-doit-1 .main-doit-subtitle{
	color: #313239;
}
.cta-btn{
	color: #383CA3;
	padding: 20px 10px;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	display: block;
}
.cta-btn:hover {
	color: #18292B;
	box-shadow: 0 0 3px #000 inset;
}
.main-doit-1 .cta-btn{
	color: #fff;
	background:#383CA3;
}
.main-doit-1 .cta-btn:hover {
	color: #fff;
	box-shadow: 0 0 2px #000;
}
@media screen and (max-width: 990px){
	.main-doit{
		padding: 50px 0;
	}
	.main-doit.main-doit-1 {
		background: #F3E6E1;
		backdrop-filter: unset;
		position: static;
		margin-bottom: 0;
	}
	.main-doit-left,
	.main-doit-right{
		width: 100%;
	}
	.main-doit-title{
		font-size: 24px;
		line-height: 29px;
	}
	.main-doit-1 .main-doit-title {
		font-size: 20px;
		line-height: 26px;
	}
	.main-doit-subtitle{
		font-size: 16px;
		line-height: 19px;
		margin-bottom:20px;
	}
	.main-doit-1 .main-doit-subtitle {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 15px;
	}
	.cta-btn{
		max-width: 290px;
	}
}


/* TRANSPORT */
.main-transport{
	padding: 100px 0;
}
.main-transport-new-content-flex-left{
	width: calc(50% - 15px);
}
.main-transport-new-content-flex-right{
	width: calc(50% - 15px);
	position: relative;
}
.main-transport-title{
	font-size: 50px;
	font-weight: 700;
	line-height: 56px;
	color: #383CA3;
	margin-bottom: 30px;
}
.main-transport-text{
	font-size: 20px;
	line-height: 30px;
}
.main-transport-text >*:not(:last-child){
	margin-bottom: 30px;
}
.main-transport-text strong, .main-transport-text b {
	color: #383CA3;
	padding: 4px;
	background: #F5E9E5;
	border-radius: 4px;
}
.main-transport-btn-wrap{
	margin-top:40px;
}
.main-transport-btn{
	display: inline-block;
	color: #fff;
	background: #383CA3;
	font-size: 18px;
	line-height: 20px;
	padding:20px 40px;
	border-radius: 4px;
}
.main-transport-btn:hover{
	box-shadow: 0 0 2px #000;
}
.main-transport-right-image{
	border-radius: 20px;
	position: relative;
	z-index:1;
	top: 60px;
}
.main-transport-advantage {
	max-width: 152px;
	padding: 20px;
	box-shadow: 0px 10px 44px 0px #0000001F;
	background: #FFFFFF;
	border-radius: 20px;
	position: absolute;
	z-index: 2;
	left: 30px;
	top: 0;
}
.main-transport-advantage-ico{
	width: 74px;
	height: 74px;
	background:#E5AA8F;
	border-radius: 10px;
	margin-bottom: 20px;
}
.main-transport-advantage-ico img{
	max-width:40px;
	max-height:40px;
}
.main-transport-advantage-text{
	font-size: 16px;
	line-height: 20px;
}
.main-transport-advantage-text span{
	display:block;
	font-weight: 700;
	font-size: 24px;
	line-height: 20px;
}
@media screen and (max-width: 990px){
	.main-transport{
		padding: 50px 0;
	}
	.main-transport-title {
		font-size: 20px;
		line-height: 27px;
		margin-bottom: 15px;
		order: 1;
		width: 100%;
	}
	.main-transport-new-content-flex-left,
	.main-transport-new-content-flex-right{
		width: 100%;
	}
	.main-transport-new-content-flex-left{
		order:3;
	}
	.main-transport-new-content-flex-right{
		order:2;
	}
	.main-transport-right-image {
		top: 45px;
		margin-bottom: 65px;
	}
	.main-transport-advantage {
		display: flex;
		justify-content: space-between;
		align-items:center;
		width: calc(100% - 40px);
		margin: 0 20px;
		max-width: 250px;
		left: unset;
		padding: 10px;
	}
	.main-transport-advantage-ico {
		width: 60px;
		height: 60px;
		margin:0;
	}
	.main-transport-advantage-ico img {
		max-width: 33px;
		max-height: 33px;
	}
	.main-transport-advantage-text {
		width: calc(100% - 70px);
		font-size: 16px;
		line-height: 20px;
	}
	.main-transport-advantage-text span{
		font-size: 24px;
	}
	.main-transport-text {
		font-size: 16px;
		line-height: 24px;
	}
	.main-transport-text > :not(:last-child) {
		margin-bottom: 20px;
	}
	.main-transport-btn-wrap {
		margin-top: 15px;
	}
}


/* REHAB */
.main-rehab{
	padding: 100px 0;
	background: #FCF6F4;
}
.main-rehab-new-content-flex-left{
	width: calc(50% - 15px);
}
.main-rehab-new-content-flex-right{
	width: calc(50% - 15px);
	position: relative;
}
.main-rehab-title{
	font-size: 40px;
	font-weight: 700;
	line-height: 45px;
	color: #383CA3;
	margin-bottom: 30px;
}
.main-rehab-text{
	font-size: 20px;
	line-height: 30px;
	margin-bottom:36px;
	max-width: 555px;
}
.main-rehab-left-advantage{
	padding: 30px;
	box-shadow: 0px 10px 44px 0px #390C0C1F;
	background: #FFFFFF;
	border-radius: 20px;
	max-width: 580px;
}
.main-rehab-left-advantage-ico{
	width: 80px;
	height: auto;
	background:#383CA3;
	border-radius: 5px;
}
.main-rehab-left-advantage-ico img{
	max-width:40px;
	max-height:40px;
}
.main-rehab-left-advantage-text{
	width:calc(100% - 100px);
	font-size: 16px;
	line-height: 24px;
}
.main-rehab-advantages{
	gap:50px;
}
.main-rehab-advantage{
	padding: 30px 20px 20px;
	flex-direction: column;
	width: calc(50% - 25px);
	box-shadow: 0px 10px 44px 0px #390C0C1F;
	background: #FFFFFF;
	border-radius: 20px;
	gap:30px;
}
.main-rehab-advantage-ico {
	width: 80px;
	height: 80px;
	background: #E5AA8F;
	border-radius: 100%;
}
.main-rehab-advantage-ico img {
	max-width: 40px;
	max-height: 40px;
}
.main-rehab-advantage-text {
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
}
@media screen and (max-width: 990px){
	.main-rehab{
		padding: 50px 0;
	}
	.main-rehab-title {
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 15px;
	}
	.main-rehab-text {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 20px;
	}
	.main-rehab-new-content-flex-left,
	.main-rehab-new-content-flex-right{
		width: 100%;
	}
	.main-rehab-advantages{
		gap:10px;
	}
	.main-rehab-advantage {
		padding: 15px;
		flex-direction: initial;
		gap: 10px;
		width: calc(50% - 5px);
		align-items: center;
		align-content: center;
	}
	.main-rehab-advantage-ico {
		width: 50px;
		height: 50px;
	}
	.main-rehab-advantage-ico img {
		max-width: 25px;
		max-height: 25px;
	}
	.main-rehab-advantage-text {
		width: calc(100% - 60px);
		font-size: 14px;
		line-height: 20px;
	}
	.main-rehab-left-advantage {
		padding: 15px;
		margin-top: 10px;
		max-width: 100%;
	}
	.main-rehab-left-advantage-ico{
		height: 50px;
		width: 50px;
	}
	.main-rehab-left-advantage-ico img{
		max-width:25px;
		max-height:25px;
	}
	.main-rehab-left-advantage-text {
		width: 100%;
		font-size: 14px;
		line-height: 20px;
		margin-top: 10px;
	}
}
@media screen and (max-width: 768px){
	.main-rehab-advantage {
		width: 100%;
	}
}

/* FAQ */
.main-faq{
	padding:100px 0;
}
.main-faq-title {
	color: #383CA3;
	font-size: 50px;
	font-weight: 700;
	line-height: 57px;
	margin-bottom: 30px;
}
.main-faq-item{
	padding: 5px;
	border-radius: 30px;
	background: #FCF6F4;
}
.main-faq-item:not(:last-child){
	margin-bottom: 10px;
}
.faq-question{
	cursor:pointer;
	padding-left: 25px;
}
.q-question-inner {
	width: calc(100% - 60px);
}
.q-question-text{
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #383CA3;
	min-height: 50px;
}
.q-marker{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	margin-left: auto;
	background-color: #E5AA8F;
	position: relative;
}
.q-marker-horizontal {
	position: absolute;
	width: 20px;
	height: 2px;
	left: 15px;
	top: 24px;
	background: #fff;
}
.q-marker-vertical{
	position: absolute;
	height:20px;
	width:2px;
	top:15px;
	left:24px;
	background:#fff;
}
.main-faq-item.active .q-marker-vertical{
	display:none;
}
.faq-answer{
	display: none;
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 15px;
}
@media (max-width: 990px) {
	.main-faq{
		padding: 50px 0;
	}
	.main-faq-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	.main-faq-item {
		padding: 15px;
		border-radius: 20px;
	}
	.faq-question {
		align-items: center;
		padding-left: 0;
	}
	.faq-answer{
		margin-bottom: 0;
	}
	.q-marker{
		width: 40px;
		height: 40px;
	}
	.q-marker-horizontal{
		left:12px;
		top:19px;
		width:16px;
	}
	.q-marker-vertical{
		top:12px;
		left:19px;
		height:16px;
	}
	.q-question-inner {
		width: calc(100% - 50px);
	}
	.q-question-text{
		font-size: 18px;
		line-height: 20px;
	}
}

/* CONDITIONS */
.main-condition-title-wrap{
	background-color: rgba(9,32,58,.5);
	padding: 494px 0 287px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 0;
}
.main-conditions-title{
	font-size: 60px;
	font-weight: 700;
	line-height: 66.9px;
	color: #fff;
}
.main-conditions-flex{
	background: #383CA3;
	box-shadow: 0px 20px 44px 0px #0A1C4B30;
	border-radius: 20px;
	padding: 50px 60px 40px;
	width: calc(100% + 120px);
	position: relative;
	left: -60px;
	margin-top: -257px;
}
.main-conditions-flex{
	gap: 30px;
}
.main-conditions-item{
	max-width: 180px;
}
.main-conditions-item-ico{
	width: 74px;
	height: 74px;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 10px;
}
.main-conditions-item-ico img{
	max-width: 40px;
	max-height: 40px;
}
.main-conditions-item-text{
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
}
@media (max-width: 1260px) {
	.main-condition-title-wrap {
		padding-top: 320px;
	}
	.main-conditions-flex {
		padding: 30px 15px;
		width: calc(100% + 30px);
		left: -15px;
		border-radius:0;
	}
	.main-conditions-item {
		max-width: 30%;
	}
}
@media (max-width: 990px) {
	.main-condition-title-wrap {
		padding: 120px 0 20px;
		min-height: 247px;
		display: flex;
		align-content: flex-end;
		align-items: flex-end;
	}
	.main-conditions-title {
		font-size: 24px;
		line-height: 27px;
	}
	.main-conditions-flex {
		margin-top:0;
		gap:20px;
	}
	.main-conditions-item {
		max-width: unset;
		width:100%;
		display:flex;
		justify-content:space-between;
	}
	.main-conditions-item-ico {
		width: 60px;
		height: 60px;
		border-radius: 10px;
	}
	.main-conditions-item-ico img{
		max-width: 33px;
		max-height: 33px;
	}
	.main-conditions-item-text {
		font-size: 14px;
		line-height: 20px;
		width: calc(100% - 70px);
	}
	
}


/* GALLERY */
.main-gallery{
	padding: 100px 0 125px;
}
.main-gallery-title{
	color: #383CA3;
	font-size: 50px;
	font-weight: 700;
	line-height: 56px;
	margin-bottom: 24px;
	text-align: center;
}
.main-gallery-slide{
	text-align: center;
}
.main-gallery-slide a{
	display:block;
}
.main-gallery-slide a:nth-child(2){
	margin-top:30px;
}
.main-gallery-slide.slick-slide img{
	border-radius: 20px;
}
.main-gallery-content .slick-slide {
    margin: 0 15px;
}
.main-gallery-content .slick-list {
    margin: 0 -15px;
	z-index:1;
}
.main-gallery-content .slick-arrow{
	font-size: 0;
	color: transparent;
	background-color:#F5E9E5;
	background-image: url('images/slide-arrow.svg');
	background-size: 10px 16px;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	border-radius:100%;
	cursor: pointer;
	position: absolute;
	z-index:2;
	top:calc(50% - 25px);
	border:none;
	box-shadow:none;
}
.main-gallery-content .slick-arrow:hover{
	opacity:.8;
}
.main-gallery-content .slick-arrow.slick-prev{
	left: -80px;
}
.main-gallery-content .slick-arrow.slick-next{
	transform: rotate(180deg);
	right: -80px;
}
.main-gallery-content .slick-dots {
	width:100%;
	padding: 0 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	list-style: none;
	min-height: 40px;
	gap: 10px;
	position: absolute;
	bottom:0;
}
.main-gallery-content .slick-dots li{
	display:block;
	width:10px;
	height:10px;
	border-radius:100%;
	background:#383CA3;
	opacity:.5;
	cursor: pointer;
}
.main-gallery-content .slick-dots li.slick-active{
	opacity:1;
}
.main-gallery-content .slick-dots button{
	display:none;
}
@media screen and (max-width: 1400px){
	.main-gallery-content{
		margin: 0 40px;
	}
	.main-gallery-content .slick-slide {
		margin: 0 5px;
	}
	.main-gallery-slide a:nth-child(2){
		margin-top:10px;
	}
	.main-gallery-content .slick-arrow {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
	}
	.main-gallery-content .slick-arrow.slick-prev{
		left: -50px;
	}
	.main-gallery-content .slick-arrow.slick-next{
		right: -50px;
	}
}
@media screen and (max-width: 990px){
	.main-gallery{
		padding: 50px 0;
	}
	.main-gallery-title {
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 15px;
	}
	.main-gallery-slide.slick-slide img{
		display: inline-block;
	}
}
@media screen and (max-width: 768px){
	.main-gallery-content {
		margin: 0;
		padding-bottom: 60px;
	}
	.main-gallery-content .slick-slide {
		margin: 0 15px;
	}
	.main-gallery-content .slick-arrow {
		top: unset;
		bottom:0;
	}
	.main-gallery-content .slick-arrow.slick-prev{
		left: 0;
	}
	.main-gallery-content .slick-arrow.slick-next{
		right: 0;
	}
}


/* BIGCTA */
.main-bigcta{
	padding: 100px 0 100px;
	background: #383CA3;
}
.main-bigcta-left{
	width: calc(50% - 90px);
	position: relative;
	z-index:2;
}
.main-bigcta-right {
	width: calc(50% + 90px);
	position: relative;
	z-index:1;
}
.main-bigcta-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 57px;
	margin-bottom: 30px;
	color: #fff;
}
.main-bigcta-subtitle{
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 50px;
	color: #fff;
}
.main-bigcta-right-img{
	position: absolute;
	left:0;
	bottom: -100px;
	max-width: unset;
	max-height: calc(100% + 330px);
}
.main-bigcta-btn{
	display: inline-block;
	padding: 20px 40px;
}
.main-bigcta-right-img.formob{
	display:none;
}
@media screen and (max-width: 1260px){
	.main-bigcta{
		padding: 50px 0;
	}
	.main-bigcta-left{
		width: calc(70% - 30px);
	}
	.main-bigcta-right {
		width: 30%;
	}
	.main-bigcta-title {
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 15px;
	}
	.main-bigcta-subtitle {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px;
	}
	.main-bigcta-right-img {
		right: 0;
		left: unset;
		bottom: -50px;
		max-width: 100%;
		max-height: calc(100% + 150px);
	}
}
@media screen and (max-width: 768px){
	.main-bigcta{
		padding: 50px 0 30px;
	}
	.main-bigcta-left,
	.main-bigcta-right{
		width: 100%;
	}
	.main-bigcta-subtitle {
		margin-bottom: 0;
	}
	.main-bigcta-btn{
		margin: 325px auto 0;
		display:block;
	}
	.main-bigcta-right-img {
		display:none;
		right: unset;
		bottom: -30px;
		max-height: 500px;
		left: 50%;
		transform: translateX(-50%);
		max-width: calc(100% + 60px);
	}
	.main-bigcta-right-img.formob{
		display:block;
	}
}




/* SECURITY */
.main-security{
	padding: 100px 0;
}
.main-security-left{
	width: calc(50% - 40px);
	position: relative;
	z-index:1;
}
.main-security-right {
	width: calc(50% - 15px);
	position: relative;
	z-index:2;
}
.main-security-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 57px;
	margin-bottom: 40px;
	color: #383CA3;
}
.main-security-item{
	width:100%;
}
.main-security-item:not(:last-child){
	margin-bottom: 30px;
}
.main-security-item-ico{
	width: 80px;
	height: 80px;
	background:#E5AA8F;
	border-radius: 10px;
}
.main-security-item-ico img{
	max-width:40px;
	max-height:40px;
}
.main-security-item-text{
	width:calc(100% - 100px);
	font-size: 18px;
	line-height: 24px;
}
.main-security-img-1{
	position: relative;
	z-index:1;
	border-radius: 20px;
	padding-bottom: 160px;
	padding-right: 45px;
}
.main-security-img-2{
	position: absolute;
	z-index:2;
	border-radius: 20px;
	bottom:0;
	right:0;
	box-shadow: 0px 10px 44px 0px #390C0C1F;
	border: 3px solid #FFFFFF;
	max-width: calc(100% - 80px);
	max-height: calc(100% - 120px);
}
@media screen and (max-width: 990px){
	.main-security{
		padding: 50px 0;
	}
	.main-security-left{
		width: 100%;
	}
	.main-security-right {
		margin-top:30px;
		width: 100%;
	}
	.main-security-title {
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 20px;
	}
	.main-security-item:not(:last-child){
		margin-bottom: 20px;
	}
	.main-security-item-ico{
		width: 60px;
		height: 60px;
	}
	.main-security-item-ico img{
		max-width:30px;
		max-height:30px;
	}
	.main-security-item-text{
		width:calc(100% - 80px);
		font-size: 14px;
		line-height: 20px;
	}
	.main-security-img-1 {
		padding-bottom: 80px;
		padding-right: 25px;
	}
}


/* CARE */
.main-care{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 100%;
	padding: 100px 0;
	overflow: hidden;
}
.main-care-content-left{
	width: calc(50% + 50px);
	position: relative;
	z-index:2;
}
.main-care-content-right{
	width: calc(50% - 50px);
	position: relative;
	z-index:1;
}
.main-care-big-img{
	position: absolute;
	left: -120px;
	bottom: -100px;
	max-width: unset;
	max-height: calc(100% + 200px);
	-webkit-filter: drop-shadow(40px -16px 34px rgba(54, 8, 8, 0.13));
	filter: drop-shadow(40px -16px 34px rgba(54, 8, 8, 0.13));
}
.main-care-title{
	font-weight: 700;
	font-size: 40px;
	line-height: 57px;
	margin-bottom: 47px;
	color: #383CA3;
	max-width:658px;
}
.main-care-about-item{
	max-width:600px;
}
.main-care-about-item:not(:last-child){
	margin-bottom: 30px;
}
.main-care-about-item-ico{
	width: 80px;
	height: 80px;
	background:#383CA3;
	border-radius: 100%;
}
.main-care-about-item-ico img{
	max-width:40px;
	max-height:40px;
}
.main-care-about-item-content{
	width: calc(100% - 100px);
	font-size: 18px;
	line-height: 24px;
}
@media (max-width: 1260px) {
	.main-care-big-img {
		left: 0;
	}
}
@media screen and (max-width: 990px){
	.main-care {
		padding: 50px 0;
	}
	.main-care-content-left,
	.main-care-content-right{
		width: 100%;
	}
	.main-care-content-right{
		min-height: 335px;
	}
	.main-care-title{
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 18px;
	}
	.main-care-about-item:not(:last-child){
		margin-bottom: 20px;
	}
	.main-care-about-item-ico{
		width: 50px;
		height: 50px;
	}
	.main-care-about-item-ico img{
		max-width:25px;
		max-height:25px;
	}
	.main-care-about-item-content{
		width: calc(100% - 60px);
		font-size: 14px;
		line-height: 20px;
	}
	.main-care-big-img {
		max-height: calc(100% + 45px);
		bottom: -50px;
	}
}
@media screen and (max-width: 500px){
	.main-care-big-img {
		left: 50%;
		transform: translateX(-50%);
	}
}


/* WHY US */
.main-whyus{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0 0;
	padding: 100px 0;
	overflow: hidden;
}
.main-whyus-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 57px;
	text-align: center;
	margin-bottom: 30px;
	color: #383CA3;
}
.main-whyus-about{
	gap: 30px;
}
.main-whyus-about-item{
	width:calc(25% - 23px);
	background: #FFFFFF;
	box-shadow: 0px 10px 44px 0px #390C0C1F;
	border-radius:20px;
	padding: 30px;
}
.main-whyus-about-item-ico{
	width: 74px;
	height: 74px;
	background:#E5AA8F;
	border-radius: 10px;
	margin-bottom: 25px;
}
.main-whyus-about-item-ico img{
	max-width:40px;
	max-height:40px;
}
.main-whyus-about-item-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 10px;
}
.main-whyus-about-item-text{
	font-size: 16px;
	line-height: 20px;
}
@media screen and (max-width: 1200px){
	.main-whyus-about-item{
		width:calc(50% - 15px);
	}
}
@media screen and (max-width: 990px){
	.main-whyus {
		padding: 50px 0;
	}
	.main-whyus-title{
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 20px;
	}
	.main-whyus-about-item{
		padding: 15px;
		display:flex;
		flex-wrap:wrap;
		align-items:center;
		align-content:center;
		justify-content: space-between;
	}
	.main-whyus-about-item-ico{
		width: 60px;
		height: 60px;
		margin:0;
	}
	.main-whyus-about-item-ico img{
		max-width:33px;
		max-height:33px;
	}
	.main-whyus-about-item-title{
		width:calc(100% - 74px);
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 0;
	}
	.main-whyus-about-item-text{
		width:100%;
		margin-top: 10px;
		font-size: 14px;
		line-height: 20px;
	}
}
@media screen and (max-width: 768px){
	.main-whyus-about{
		gap: 10px;
	}
	.main-whyus-about-item{
		width:100%;
	}
}


/* PRICING */
.main-pricing{
	padding: 100px 0;
}
.main-pricing-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 57px;
	text-align: center;
	margin-bottom: 40px;
	color: #383CA3;
}
.main-pricing-about{
	gap: 30px;
}
.main-pricing-about-item{
	width:calc(33% - 20px);
	background: #383CA3;
	border-radius:20px;
	padding: 50px 25px;
	color:#fff;
	text-align: center;
}
.main-pricing-about-item-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 27px;
	margin-bottom: 15px;
}
.main-pricing-about-item-text{
	font-size: 18px;
	line-height: 20px;
}
.main-pricing-about-item-text span{
	font-size: 24px;
	font-weight: 700;
}
@media screen and (max-width: 990px){
	.main-pricing {
		padding: 50px 0;
	}
	.main-pricing-title{
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 21px;
	}
	.main-pricing-about{
		gap: 10px;
	}
	.main-pricing-about-item{
		width:100%;
		padding: 40px 15px;
	}
	.main-pricing-about-item-title{
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 10px;
	}
	.main-pricing-about-item-text{
		width:100%;
		margin-top: 10px;
		font-size: 14px;
		line-height: 20px;
	}
}


/* RESERBE */
.main-reserve{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 100%;
	padding: 100px 0;
	overflow: hidden;
}
.main-reserve-content-left{
	width: 50%;
	position: relative;
	z-index:1;
}
.main-reserve-content-right{
	width: calc(50% - 15px);
	position: relative;
	z-index:2;
}
.main-reserve-big-img{
	position: absolute;
	right: -55px;
	bottom: -100px;
	max-width: unset;
	max-height: calc(100% + 200px);
	-webkit-filter: drop-shadow(40px -16px 34px rgba(54, 8, 8, 0.13));
	filter: drop-shadow(40px -16px 34px rgba(54, 8, 8, 0.13));
}
.main-reserve-title{
	font-weight: 700;
	font-size: 50px;
	line-height: 57px;
	margin-bottom: 30px;
	color: #fff;
	max-width:600px;
}
.main-reserve-about-item{
	max-width:600px;
	color:#fff;
}
.main-reserve-about-item:not(:last-child){
	margin-bottom: 30px;
}
.main-reserve-about-item-number-wrap{
	width: 100px;
	height: 100px;
	background:rgba(255,255,255,.1);
	border-radius: 100%;
}
.main-reserve-about-item-number{
	width: 82px;
	height: 82px;
	background:#fff;
	border-radius: 100%;
	color:#383CA3;
	font-weight: 700;
	font-size: 50px;
	line-height: 1;
}
.main-reserve-about-item-content{
	width: calc(100% - 120px);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
}
@media (max-width: 1260px) {
	.main-reserve-big-img {
		right: 0;
	}
}
@media screen and (max-width: 990px){
	.main-reserve {
		padding: 50px 0;
	}
	.main-reserve-content-left{
		order:2;
		width: 100%;
		min-height: 280px;
	}
	.main-reserve-content-right{
		width: 100%;
		order:1;
	}
	.main-reserve-title{
		font-size: 24px;
		line-height: 27px;
		margin-bottom: 25px;
	}
	.main-reserve-about-item:not(:last-child){
		margin-bottom: 20px;
	}
	.main-reserve-about-item-number-wrap{
		width: 60px;
		height: 60px;
	}
	.main-reserve-about-item-number{
		width: 50px;
		height: 50px;
		font-size: 30px;
	}
	.main-reserve-about-item-content{
		width: calc(100% - 70px);
		font-size: 14px;
		line-height: 20px;
	}
	.main-reserve-big-img {
		right:unset;
		left: -15px;
		max-height: calc(100% + 45px);
		bottom: -50px;
		max-width: calc(100% + 30px);
	}
}
@media screen and (max-width: 400px){
	.main-reserve-big-img {
		left: 50%;
		transform: translateX(-60%);
		max-width: unset;
	}
}




/* CONTACTS */
.main-contacts{
	min-height: 400px;
	position: relative;
}
.contacts-map{
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
}
.contacts-map iframe{
	width: 100%;
	height: 100%;
	border: none;
}
