@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #18292B;
	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;
}
.customfont{
	font-family: "Bitter", serif;
}
/********************************************************************************************************************************************************************************/
/**************************************************** 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: 2222;
	left: 0;
	top: 0;
	cursor: pointer;
	background: rgba(41,41,46,0.8);
	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: #FBF7F3;
	border-radius: 20px;
	overflow: auto;
	position: relative;
	padding: 10px;
	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: "Bitter", serif;
	background-color: #2F676D;
	padding: 60px 90px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 100%;
	border-radius: 14px;
}
.lightbox-form-title {
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #fff;
	margin-bottom: 5px;
}
.lightbox-form-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	margin-bottom: 30px;
}
.contacts-form-field{
	width: calc(33.33% - 20px);
}
.contacts-form-field input:not([type="submit"]) {
	font-family: "Open Sans", sans-serif;
	display: block;
	width: 100%;
	max-width: 100%;
	background: rgba(255,255,255,.21);
	border: none;
	border-radius: 4px;
	padding: 20px 30px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
}
.contacts-form-field input[type="submit"]{
	font-family: "Bitter", 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: #2F676D;
	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{
	position: absolute;
	width: 100%;
	z-index: 100;
	padding: 4px 0;
	top: 0;
	z-index: 2020;
}
.header-logo{
	margin-right: 38px;
	max-width: 166px;
}
.header-logo img{
	max-width: 100%;
	max-height: 100px;
}
.header-content{
	max-width: calc(100% - 204px);
	width:100%;
}
.header-row-1,
.header-row-2{
	padding: 15px 0;
}
.header-addresses{
	width:100%;
	max-width: calc(100% - 290px);
}
.header-address:not(:last-child),
.header-address.header-address-desktop:not(:last-child){
	margin-bottom: 5px;
}
.header-all-else{
	width:100%;
	max-width: 275px;
	gap: 5px;
}
.header-all-else-separator{
	width:100%;
}
.header-row-separator{
	height:1px;
	width:100%;
	background: #E3E3E3;
}
.main-menu{
	width:100%;
}
.main-menu > .menu-item:not(:last-child){
	margin-right: 5px;
}
.main-menu a.main-menu-link {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	transition: all 0.5s ease;
	color: #2F676D;
}
.main-menu a.main-menu-link:hover{
	color: #18292B;
}
.header-lang{
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
}
.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: #2F676D;
	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: #18292B;
	opacity: 0.8;
	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: 30px;
	background-repeat: no-repeat;
	background-position: 0 center;
	padding-left:40px;
}
.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: #2F676D;
}
.header-phone a:hover,
.t-header-phone a:hover{
	color: #18292B !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: 40px;
	background-size: auto;
}
.header-phone.header-phone-desktop a,
.t-header-phone.t-header-phone-desktop a{
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	color: #2F676D;
}
.header-address.header-address-desktop{
	display:block;
	margin: 0 60px 0 0;
	font-size: 16px;
	line-height: 30px;
	padding-left: 40px;
	background-size: auto;
}

.main-doit-btn{
	background: #FFFFFF;
	color:#18292B;
	border-radius: 4px;
	padding: 12px 30px;
	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: 20px;
	margin-right: 0;
	background: #2F676D;
	color: #fff;
}
.main-doit-btn.main-doit-btn-header.main-doit-btn-header-mobile {
	display:none;
	margin-right: 20px;
	margin-left: auto;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	color: #2F676D;
	background: #C2DDDA;
	padding: 0px 10px;
	min-height: 40px;
}
.main-doit-btn-header-mobile{
	display:none;
}
@media screen and (max-width: 1200px){
	.header-address.header-address-desktop {
		margin: 0 30px 0 0;
	}
}
@media screen and (max-width: 990px){
	#header{
		padding: 15px 0;
	}
	.header-row{
		flex-wrap: nowrap;
	}
	.header-row-1, .header-row-2 {
		padding: 0;
	}
	#header.active{
		background: #FBF7F3;
	}
	.header-logo {
		margin-right: 15px;
		max-width: unset;
	}
	.header-logo img {
		max-height: 40px;
		max-width: 100px;
	}
	.header-row-1,
	.header-row-separator,
	.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.active .header-content{
		display:block;
		max-width: unset;
	}
	.main-menu {
		border-bottom: 1px solid #E3E3E3;
		margin-bottom: 30px;
		width: 100%;
	}
	.main-menu > .menu-item{
		width: 100%;
		margin: 0 0 20px;
	}
	.main-menu > .menu-item:last-child{
		margin: 0 0 30px;
	}
	.main-menu a.main-menu-link {
		font-size: 16px;
		line-height: 20px;
		margin: 0;
	}
	.header-lang-mobile,
	.header-burger,
	.header-phone,
	.t-header-phone,
	.header-address{
		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;
	}
	.main-doit-btn.main-doit-btn-header.main-doit-btn-header-mobile{
		display:flex;
	}
}


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

#footer{
	background: #FBF7F3;
}
.footer-row{
	padding: 22px 0;
}
.footer-logo img{
	max-width: 180px;
	max-height: 75px;
}
.footer-content{
	width:calc(100% - 210px);
}
.footer-menu{
	margin-left:auto;
	gap: 10px 30px;
}
.footer-menu a.footer-menu-link{
	color:#18292B;
}
.footer-menu a.footer-menu-link:hover{
	text-decoration: underline;
}
.footer-bottom{
	padding: 19px 0;
	background: #F6F2ED;
}
.footer-copywright{
	font-size: 12px;
	line-height: 1;
	opacity: .5;
}

@media screen and (max-width: 768px){
	.footer-row {
		padding: 45px 0 30px;
	}
	.footer-logo{
		width: 100%;
		margin-bottom:25px;
	}
	.footer-logo img {
		max-width: 100px;
		max-height: 50px;
	}
	.footer-content {
		width: 100%;
	}
	.footer-menu {
		gap: 15px;
	}
	.footer-menu .menu-item{
		width: calc(50% - 8px);
	}
	
}

/********************************************************************************************************************************************************************************/
/**************************************************** MAIN PAGE *****************************************************************************************************************/
/********************************************************************************************************************************************************************************/
/* HERO */
.main-hero{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.main-hero > .container{
	padding: 190px 15px 96px;
	position: relative;
}
.main-hero-thecontent{
	position: relative;
	z-index:2;
}
.main-hero-right-image{
	position: absolute;
	z-index:1;
	left:calc(50% + 30px);
	bottom:0;
	max-height: calc(100% - 150px);
	max-width: unset;
}
.main-hero-title{
	font-size: 60px;
	font-weight: 700;
	line-height: 72px;
	max-width: 731px;
	color: #2F676D;
	margin-bottom: 20px;
}
.main-hero-subtitle{
	font-size: 24px;
	line-height: 32.68px;
	margin-bottom: 62px;
}
.main-hero-new-content-flex-left{
	width: 50%;
	padding-right:15px;
}
.main-hero-new-content-flex-right{
	width: 50%;
	padding-left:15px;
}
.main-hero-advantages{
	gap:30px;
}
.main-hero-advantage{
	width:100%;
	gap: 10px;
}
.main-hero-advantage-ico{
	width: 80px;
	height: 80px;
	background:#2F676D;
	border-radius: 100%;
}
.main-hero-advantage-ico img{
	max-width:48px;
	max-height:48px;
}
.main-hero-advantage-text{
	width:calc(100% - 90px);
	font-size: 20px;
	line-height: 27.24px;
}
.main-hero-new-content-flex-right .main-hero-advantage{
	box-shadow: 0px 24px 34px 0px #0000000D;
	backdrop-filter: blur(14px);
	background: rgba(255,255,255,.35);
	padding: 28px 19px 28px 28px;
	border-radius: 20px;
	gap: 18px;
}
.main-hero-new-content-flex-right .main-hero-advantage-ico{
	width: 100px;
	height: 100px;
	border-radius: 10px;
}
.main-hero-new-content-flex-right .main-hero-advantage-ico img{
	max-width:50px;
	max-height:50px;
}
.main-hero-new-content-flex-right .main-hero-advantage-text{
	width:calc(100% - 118px);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
@media screen and (max-width: 990px){
	.main-hero > .container{
		padding: 85px 15px 20px;
	}
	.main-hero-title {
		font-size: 30px;
		line-height: 36px;
		margin-bottom: 15px;
	}
	.main-hero-subtitle {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 24px;
	}
	.main-hero-advantages {
		gap: 15px;
	}
	.main-hero-advantage-ico {
		width: 50px;
		height: 50px;
	}
	.main-hero-advantage-ico img {
		max-width: 30px;
		max-height: 30px;
	}
	.main-hero-advantage-text {
		width: calc(100% - 60px);
		font-size: 16px;
		line-height: 22px;
	}
	.main-hero-new-content-flex-left,
	.main-hero-new-content-flex-right {
		width: 100%;
		padding:0;
	}
	.main-hero-new-content-flex-right .main-hero-advantage {
		padding: 15px;
		gap: 10px;
		margin-top: 260px;
	}
	.main-hero-new-content-flex-right .main-hero-advantage-ico {
		width: 50px;
		height: 50px;
	}
	.main-hero-new-content-flex-right .main-hero-advantage-ico img {
		max-width: 25px;
		max-height: 25px;
	}
	.main-hero-new-content-flex-right .main-hero-advantage-text {
		width: calc(100% - 60px);
		font-size: 14px;
		line-height: 20px;
	}
	.main-hero-right-image {
		left: 0;
		max-height: 350px;
		max-width: 100%;
	}
}
@media screen and (max-width: 400px){
	.main-hero-right-image {
		max-height: 400px;
	}
}

/* CTA */
.main-doit{
	padding: 40px 0;
	background: #2F676D;
}
.main-doit-2{
	padding: 60px 0;
}
.main-doit-left{
	width: calc(100% - 340px);
}
.main-doit-right{
	width: 240px;
}
.main-doit-title{
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #fff;
	margin-bottom: 10px;
}
.main-doit-subtitle{
	font-size: 24px;
	line-height: 29px;
	color: #fff;
}
.cta-btn{
	color: #2F676D;
	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;
}
@media screen and (max-width: 990px){
	.main-doit{
		padding: 50px 0;
	}
	.main-doit-left,
	.main-doit-right{
		width: 100%;
	}
	.main-doit-title{
		font-size: 24px;
		line-height: 29px;
	}
	.main-doit-subtitle{
		font-size: 16px;
		line-height: 19px;
		margin-bottom:20px;
	}
	.cta-btn{
		max-width: 290px;
	}
}


/* SERVICES */
.main-services{
	padding: 120px 0;
}
.main-services-title{
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-services-blocks{
	gap:30px;
}
.main-services-block{
	width:calc(33.33% - 20px);
	gap: 15px;
}
.main-services-block-ico{
	width: 120px;
	height: 120px;
	background:#2F676D;
	border-radius: 100%;
	border: 12px solid #EAEFF0;
}
.main-services-block-ico img{
	max-width:50px;
	max-height:50px;
}
.main-services-block-text{
	width:calc(100% - 135px);
	font-size: 18px;
	line-height: 24px;
}
.main-services-second{
	margin-top: 50px;
	padding: 40px 80px;
	background: rgba(47,103,109,.05);
	border-radius: 20px;
	margin-left: -80px;
	margin-right: -80px;
}
.main-services-title-2{
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	color: #2F676D;
	margin-bottom: 15px;
}
.main-services-second .main-services-block-ico-outer{
	width: 140px;
	height: 140px;
	border-radius: 100%;
	background:#E6EDEE;
}
.main-services-second .main-services-block-text{
	width:calc(100% - 155px);
}
.main-services-second .main-services-block-ico{
	border: 12px solid #D4E0E2;
}
.main-services-second .main-services-block-ico img{
	max-width:52px;
	max-height:52px;
}
@media screen and (max-width: 1200px){
	.main-services{
		padding: 50px 0;
	}
	.main-services-title {
		font-size: 24px;
		line-height: 29px;
		margin-bottom: 20px;
	}
	.main-services-title-2{
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 10px;
	}
	.main-services-second {
		margin-top: 30px;
		padding: 30px 10px;
		margin-left: 0;
		margin-right: 0;
	}
	.main-services-block-ico {
		width: 70px;
		height: 70px;
		border: 7px solid #EAEFF0;
	}
	.main-services-block-ico img {
		max-width: 30px;
		max-height: 30px;
	}
	.main-services-block-text {
		width: calc(100% - 85px);
		font-size: 16px;
		line-height: 22px;
	}
	.main-services-second .main-services-block-ico-outer {
		width: 80px;
		height: 80px;
	}
	.main-services-second .main-services-block-ico {
		border: 7px solid #D4E0E2;
	}
	.main-services-second .main-services-block-ico img {
		max-width: 30px;
		max-height: 30px;
	}
}
@media screen and (max-width: 990px){
	.main-services-blocks {
		gap: 10px;
	}
	.main-services-block {
		width: 100%;
	}
}


/* SUPPORT */
.main-support{
	background-color: #FBF7F3;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 120px 15px;
}
.main-support-title{
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	color: #2F676D;
	margin-bottom: 40px;
}
.main-support-flex{
	gap:30px;
}
.main-support-flex-left{
	width:calc(50% - 15px);
}
.main-support-flex-right{
	width:calc(50% - 15px);
}
.main-support-text{
	font-size: 18px;
	line-height: 25px;
}
.main-support-text *:not(:last-child){
	margin-bottom: 25px;
}
.main-support-text ul{
	list-style:none;
}
.main-support-text ul li:not(:last-child){
	margin-bottom: 10px;
	padding-left: 27px;
	position: relative;
}
.main-support-text ul li::after {
	content: '';
	position: absolute;
	top: 11px;
	left: 10px;
	width: 4px;
	height: 4px;
	background: #000;
	border-radius: 100%;
}
.main-support-subtitle{
	font-size: 24px;
	line-height: 32.68px;
	margin-bottom: 28px;
	font-weight: 700;
	color: #2F676D;
}
.main-support-blocks{
	gap:30px;
}
.main-support-block{
	width:calc(50% - 15px);
	padding: 20px;
	background: #fff;
	border-radius:20px;
	box-shadow: 0px 14px 44px 0px #3D090914;
	height: auto;
	aspect-ratio: 1/1;
}
.main-support-block img{
	max-width: 100%;
	max-height: 100%;
}
@media screen and (max-width: 990px){
	.main-support{
		padding: 50px 0;
	}
	.main-support-title{
		font-size: 24px;
		line-height: 29px;
		margin-bottom: 20px;
	}
	.main-support-flex{
		gap:40px;
	}
	.main-support-flex-left,
	.main-support-flex-right{
		width:100%;
	}
	.main-support-text{
		font-size: 14px;
		line-height: 18px;
	}
	.main-support-text *:not(:last-child){
		margin-bottom: 18px;
	}
	.main-support-text ul{
		list-style:none;
	}
	.main-support-text ul li:not(:last-child){
		padding-left: 22px;
	}
	.main-support-text ul li::after {
		left: 7px;
		width: 4px;
		height: 4px;
	}
	.main-support-subtitle{
		font-size: 20px;
		line-height: 27px;
		margin-bottom: 15px;
	}
	.main-support-blocks{
		gap:10px;
	}
	.main-support-block{
		width:calc(50% - 5px);
		padding: 10px;
	}
}

/* PERSON */
.main-person{
	background-color: #2F676D;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 120px 15px;
}
.main-person-flex{
	gap:30px;
}
.main-person-flex-left{
	width:calc(50% - 15px);
}
.main-person-flex-right{
	width:calc(50% - 15px);
}
.main-person-image{
	max-width: 100%;
	border-radius: 20px;
	display: block;
}
.main-person-title{
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	color: #fff;
	margin-bottom: 10px;
}
.main-person-subtitle{
	font-size: 24px;
	line-height: 32.68px;
	margin-bottom: 40px;
	font-weight: 700;
	color: #fff;
}
.main-person-text{
	margin-top: 40px;
	font-size: 18px;
	line-height: 25px;
	color:#fff;
}
.main-person-text *:not(:last-child){
	margin-bottom: 25px;
}
.main-person-text ul{
	list-style:none;
}
.main-person-text ul li:not(:last-child){
	margin-bottom: 10px;
	padding-left: 27px;
	position: relative;
}
.main-person-text ul li::after {
	content: '';
	position: absolute;
	top: 11px;
	left: 10px;
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 100%;
}
.main-person-quote{
	padding: 27px 33px;
	color: #FFFFFF;
	background-color: #FFFFFF1A;
	border-radius: 20px;
	margin-top: 40px;
	box-shadow: -1px -1px 2px rgba(255,255,255,.5);
	background-image: url('images/quote.svg');
	background-repeat: no-repeat;
	background-size: 95px auto;
	background-position: calc(100% - 20px) calc(100% - 30px);
}
.main-person-quote-text{
	font-size: 18px;
	line-height: 25px;
	font-style: italic;
	max-width: 525px;
}
.main-person-quote-name {
	font-size: 20px;
	line-height: 25px;
	margin-top: 20px;
	padding-left: 40px;
	position: relative;
	font-weight: 700;
}
.main-person-quote-name::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 30px;
	height: 1px;
	background: #fff;
}
.main-person-image-mobile{
	display:none;
	max-width: 400px;
}
@media screen and (max-width: 990px){
	.main-person{
		padding: 50px 0;
	}
	.main-person-flex{
		gap:0;
	}
	.main-person-flex-left{
		display:none;
	}
	.main-person-flex-right{
		width:100%;
	}
	.main-person-image-mobile{
		display:block;
		margin: 20px auto;
	}
	.main-person-title{
		font-size: 24px;
		line-height: 29px;
	}
	.main-person-subtitle{
		font-size: 20px;
		line-height: 27px;
		margin-bottom: 25px;
	}
	.main-person-text{
		margin-top: 20px;
		font-size: 14px;
		line-height: 18px;
	}
	.main-person-text *:not(:last-child){
		margin-bottom: 18px;
	}
	.main-person-text ul li:not(:last-child){
		padding-left: 22px;
	}
	.main-person-text ul li::after {
		left: 7px;
		width: 4px;
		height: 4px;
	}
	.main-person-quote{
		padding: 30px 20px;
		margin-top: 25px;
		background-size: 65px auto;
	}
	.main-person-quote-text{
		font-size: 16px;
		line-height: 20px;
	}
	.main-person-quote-name {
		font-size: 16px;
		line-height: 20px;
	}
	.main-person-quote-name::after {
		top: 10px;
	}
}
@media screen and (max-width: 430px){
	.main-person-image-mobile{
		max-width: 100%;
	}
}

/* STAFF */
.main-staff{
	background-color: #FBF7F3;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
}
.main-staff > .container{
	padding: 120px 15px 110px;
	position: relative;
}
.main-staff-thecontent{
	position: relative;
	z-index:2;
}
.main-staff-right-image{
	position: absolute;
	z-index:1;
	left:calc(50% + 30px);
	bottom:0;
	max-height: calc(100% - 90px);
	max-width: unset;
}
.main-staff-title{
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	max-width: 716px;
	color: #2F676D;
	margin-bottom: 20px;
}
.main-staff-subtitle{
	font-size: 24px;
	line-height: 32.68px;
	max-width: 716px;
	margin-bottom: 63px;
}
.main-staff-new-content-flex-left{
	width: 50%;
}
.main-staff-advantages{
	gap:25px 44px;
}
.main-staff-advantage{
	width:calc(50% - 22px);
	gap: 20px;
}
.main-staff-advantage-ico{
	width: 80px;
	height: 80px;
	background:#C2DDDA;
	border-radius: 10px;
}
.main-staff-advantage-ico img{
	max-width:50px;
	max-height:50px;
}
.main-staff-advantage-text{
	width:calc(100% - 100px);
	font-weight: 700;
	font-size: 20px;
	line-height: 27.24px;
}
@media screen and (max-width: 1200px){
	.main-staff-advantage-text {
		font-size: 16px;
		line-height: 22px;
	}
}
@media screen and (max-width: 990px){
	.main-staff > .container {
		padding: 50px 15px 0;
	}
	.main-staff-title {
		font-size: 24px;
		line-height: 28px;
		max-width: unset;
		margin-bottom: 10px;
		text-align: center;
	}
	.main-staff-subtitle {
		font-size: 16px;
		line-height: 22px;
		max-width: unset;
		margin-bottom: 25px;
		text-align: center;
	}
	.main-staff-right-image {
		position: static;
		max-height: 310px;
		max-width: unset;
		margin: auto;
	}
	.main-staff-new-content-flex-left {
		width: 100%;
	}
	.main-staff-advantages {
		gap: 25px 10px;
		margin-bottom: 15px;
	}
	.main-staff-advantage {
		width: calc(50% - 5px);
		gap: 10px;
		justify-content: center;
	}
	.main-staff-advantage-ico{
		width: 70px;
		height: 70px;
	}
	.main-staff-advantage-ico img{
		max-width:45px;
		max-height:45px;
	}
	.main-staff-advantage-text {
		font-size: 16px;
		line-height: 22px;
		width: 100%;
		text-align: center;
	}
	
}


/* CARE */
.main-care{
	padding: 120px 0;
}
.main-care-title{
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-care-blocks{
	gap:30px;
}
.main-care-block{
	width:calc(33.33% - 20px);
	border-radius:20px;
	background:#FBF7F3;
	padding:30px;
}
.main-care-block-flex{
	gap: 20px;
	margin-bottom: 30px;
}
.main-care-block-ico{
	width: 90px;
	height: 90px;
	background:#2F676D;
	border-radius: 100%;
}
.main-care-block-ico img{
	max-width:46px;
	max-height:46px;
}
.main-care-block-title{
	width:calc(100% - 110px);
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	color:#2F676D;
}
.main-care-block-content ul,
.main-care-block-content ol{
	margin: 0;
	padding: 0 0 0 15px;
}
.main-care-block-content li{
	margin: 0 0 10px;
	padding: 0;
}
@media screen and (max-width: 1200px){
	.main-care-block{
		width:calc(50% - 15px);
	}
}
@media screen and (max-width: 990px){
	.main-care {
		padding: 50px 0;
	}
	.main-care-title {
		margin-bottom: 20px;
		font-size: 24px;
		line-height: 28px;
	}
	.main-care-block {
		padding: 25px 15px;
		min-height: 344px;
	}
	.main-care-block-flex {
		gap: 15px;
		margin-bottom: 15px;
	}
	.main-care-block-ico{
		width: 70px;
		height: 70px;
	}
	.main-care-block-ico img{
		max-width:36px;
		max-height:36px;
	}
	.main-care-block-title{
		width:calc(100% - 85px);
		font-size: 20px;
		line-height: 24px;
	}
	.main-care-block-content {
		font-size: 14px;
		line-height: 17px;
	}
}
@media screen and (max-width: 768px){
	.main-care-blocks {
		gap: 10px;
	}
	.main-care-block{
		width:calc(50% - 5px);
	}
}
@media screen and (max-width: 650px){
	.main-care-block {
		width: 100%;
	}
}


/* TRUST */
.main-trust{
	padding: 120px 0;
	background-color: #2F676D;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.main-trust-flex{
	margin-bottom: 60px;
}
.main-trust-title{
	width:calc(50% - 30px);
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
}
.main-trust-righttext{
	width:calc(50% - 30px);
	font-size: 24px;
	line-height: 32.68px;
	color: #fff;
}
.main-trust-righttext > *:not(:last-child){
	margin-bottom: 35px;
}
.main-trust-blocks{
	gap:60px;
}
.main-trust-block{
	width:calc(50% - 30px);
}
.main-trust-block-image{
	margin-bottom: 20px;
	border-radius: 20px;
}
.main-trust-block-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 31px;
	margin-top: auto;
	width:100%;
	color: #fff;
}
@media screen and (max-width: 990px){
	.main-trust {
		padding: 50px 0;
	}
	.main-trust-title {
		width:100%;
		margin-bottom: 25px;
		font-size: 24px;
		line-height: 28px;
	}
	.main-trust-righttext {
		width: 100%;
		font-size: 16px;
		line-height: 21.79px;
	}
	.main-trust-righttext > *:not(:last-child){
		margin-bottom: 15px;
	}
	.main-trust-flex {
		margin-bottom: 30px;
	}
	.main-trust-blocks {
		gap: 30px;
	}
	.main-trust-block {
		width: 100%;
	}
	.main-trust-block-image {
		margin-bottom: 10px;
	}
	.main-trust-block-title {
		font-size: 18px;
		line-height: 22px;
		max-width: 570px;
	}
}


/* LOVE */
.main-love{
	padding: 120px 0;
}
.main-love-new-content-flex-left{
	width: calc(50% + 15px);
}
.main-love-new-content-flex-right{
	width: calc(50% - 15px);
}
.main-love-title{
	font-size: 48px;
	font-weight: 700;
	line-height: 60px;
	color: #2F676D;
	margin-bottom: 20px;
}
.main-love-subtitle{
	font-size: 24px;
	line-height: 32.68px;
	margin-bottom: 40px;
	padding-right: 25px;
}
.main-love-advantages{
	gap:30px;
}
.main-love-advantage{
	width:100%;
	gap: 20px;
}
.main-love-advantage-ico{
	width: 80px;
	height: 80px;
	background:#C2DDDA;
	border-radius: 10px;
}
.main-love-advantage-ico img{
	max-width:50px;
	max-height:50px;
}
.main-love-advantage-text{
	width:calc(100% - 100px);
	font-weight: 700;
	font-size: 24px;
	line-height: 27.24px;
}
@media screen and (max-width: 990px){
	.main-love{
		padding: 50px 0;
	}
	.main-love-new-content-flex-left,
	.main-love-new-content-flex-right{
		width: 100%;
	}
	.main-love-right-image{
		margin-top: 20px;
	}
	.main-love-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 10px;
	}
	.main-love-subtitle {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 30px;
		padding:0;
	}
	.main-love-advantages {
		gap: 20px;
	}
	.main-love-advantage-ico {
		width: 70px;
		height: 70px;
	}
	.main-love-advantage-ico img {
		max-width: 44px;
		max-height: 44px;
	}
	.main-love-advantage-text {
		width: calc(100% - 90px);
		font-size: 16px;
		line-height: 22px;
	}
}


/* GALLERY */
.main-gallery{
	padding: 120px 0;
}
.main-gallery-title{
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-gallery-blocks{
	gap:30px;
}
.main-gallery-block{
	width:calc(25% - 23px);
	gap: 10px;
}
.main-gallery-block-ico-outer{
	width: 140px;
	height: 140px;
	border-radius: 100%;
	background:#F0F4F5;
}
.main-gallery-block-ico{
	width: 118px;
	height: 118px;
	background:#2F676D;
	border-radius: 100%;
	border: 11px solid #DDE6E8;
}
.main-gallery-block-ico img{
	max-width:52px;
	max-height:52px;
}
.main-gallery-block-text{
	width:calc(100% - 150px);
	font-size: 18px;
	line-height: 24px;
}
.main-gallery-content{
	margin-top: 50px;
	padding-bottom: 70px;
}
.main-gallery-slide{
	text-align: center;
}
.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:#C2DDDA;
	background-image: url('images/slide-arrow.svg');
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	width: 40px;
	height: 40px;
	border-radius:100%;
	cursor: pointer;
	position: absolute;
	z-index:2;
	bottom:0;
	border:none;
	box-shadow:none;
}
.main-gallery-content .slick-arrow:hover{
	opacity:.8;
}
.main-gallery-content .slick-arrow.slick-prev{
	left: 0;
}
.main-gallery-content .slick-arrow.slick-next{
	transform: rotate(180deg);
	right: 0;
}
.main-gallery-progress-wrap{
	position: relative;
}
.progress-bar {
	width:calc(100% - 140px);
	position: absolute;
	top:-18px;
	left:70px;
	height: 4px;
	border-radius:2px;
	background: rgba(47,103,109,.2);
	overflow: hidden;
}
.progress-bar .progress {
	height: 4px;
	background: #2F676D;
	width: 0;
	transition: width 0.3s ease;
	border-radius:2px;
	overflow: hidden;
}
.main-gallery-videos{
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.main-gallery-videos iframe{
	border-radius: 20px;
	overflow: hidden;
	width: 600px;
	max-width: 100%;
	height: 400px;
}
@media screen and (max-width: 990px){
	.main-gallery{
		padding: 50px 0;
	}
	.main-gallery-title {
		font-size: 24px;
		line-height: 29px;
		margin-bottom: 20px;
	}
	.main-gallery-blocks {
		gap: 10px;
	}
	.main-gallery-block {
		width: 100%;
	}
	.main-gallery-block-ico-outer{
		width: 80px;
		height: 80px;
	}
	.main-gallery-block-ico{
		width: 67px;
		height: 67px;
		border: 7px solid #DDE6E8;
	}
	.main-gallery-block-ico img{
		max-width:30px;
		max-height:30px;
	}
	.main-gallery-block-text{
		width:calc(100% - 90px);
		font-size: 16px;
		line-height: 20px;
	}
	.main-gallery-content{
		margin-top: 30px;
		padding-bottom: 60px;
	}
	.main-gallery-slide.slick-slide img{
		display: inline-block;
	}
	.progress-bar {
		width:calc(100% - 110px);
		left:55px;
	}
	.main-gallery-videos iframe {
		height: 300px;
	}
}


/* SECURITY */
.main-security{
	background-color: #30676E;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 120px 0;
}
.main-security-wrapper{
	max-width: 500px;
}
.main-security-title{
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	color: #fff;
	margin-bottom: 40px;
}
.main-security-blocks{
	gap:30px;
}
.main-security-block{
	width:100%;
	gap: 20px;
}
.main-security-block-image{
	width: 80px;
	height: 80px;
	background:#FBF7F3;
	border-radius: 10px;
}
.main-security-block-image img{
	max-width:50px;
	max-height:50px;
}
.main-security-block-title{
	width:calc(100% - 100px);
	font-weight: 700;
	color: #fff;
	font-size: 20px;
	line-height: 27.24px;
}
@media screen and (max-width: 990px){
	.main-security{
		padding: 50px 0;
	}
	.main-security-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 10px;
	}
	.main-security-blocks {
		gap: 20;
	}
	.main-security-block {
		gap: 10px;
	}
	.main-security-block-image{
		width: 70px;
		height: 70px;
	}
	.main-security-block-image img{
		max-width:45px;
		max-height:45px;
	}
	.main-security-block-title{
		width:calc(100% - 90px);
		font-size: 16px;
		line-height: 22px;
	}
}
@media screen and (max-width: 500px){
	.main-security {
		padding-bottom: 120vw;
	}
}


/* PRICING */
.main-pricing{
	padding: 120px 0;
}
.main-pricing-title {
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-pricing-blocks{
	gap: 30px;
	margin-bottom: 25px;
}
.main-pricing-block{
	width: calc(33.33% - 20px);
	padding:40px 50px;
	background-color:#2F676D;
	border-radius: 20px;
	background-image: url('images/main-pricing-block.png');
	background-repeat: no-repeat;
	background-position: 100% 100%;
	color:#fff;
}
.main-pricing-block-bottom{
	font-size: 24px;
	font-weight: 400;
	line-height: 28.8px;
}
.main-pricing-block-title{
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 10px;
}
.main-pricing-block-price{
	font-size: 60px;
	font-weight: 700;
	line-height: 65px;
}
.main-pricing-block-period{
	font-size: 24px;
	line-height: 28.8px;
}
@media screen and (max-width: 990px){
	.main-pricing{
		padding: 50px 0;
	}
	.main-pricing-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	.main-pricing-blocks {
		gap: 10px;
		margin-bottom: 20px;
	}
	.main-pricing-block{
		width: 100%;
		padding:30px;
		background-image: url('images/main-pricing-block-mob.png');
	}
	.main-pricing-block-title{
		font-size: 24px;
		line-height: 28px;
	}
	.main-pricing-block-price{
		font-size: 50px;
		line-height: 60px;
	}
	.main-pricing-block-period{
		font-size: 20px;
		line-height: 24px;
	}
	.main-pricing-block-bottom {
		font-size: 20px;
		line-height: 24px;
	}
}


/* RESERVE */
.main-reserve{
	padding: 120px 0;
	background-color: #FBFBFB;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.main-reserve-wrapper{
	max-width: 790px;
}
.main-reserve-title{
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-reserve-block{
	width:calc(50% - 20px);
	padding:30px;
	padding: 20px;
	box-sizing: border-box;
    border-bottom: 1px solid #E2E2E2;
}
.main-reserve-block:nth-child(2n + 1) {
    padding-left: 0;
    border-right: 1px solid #ccc;
}
.main-reserve-block:nth-child(2n) {
    padding-right: 0;
    width: calc(50% - 21px);
}
.main-reserve-block:nth-child(-n+2) {
    padding-top: 0;
}
.main-reserve-block:nth-last-child(-n+2) {
    padding-bottom: 0;
    border-bottom: none;
}
.main-reserve-block-flex{
	gap: 20px;
	margin-bottom: 15px;
}
.main-reserve-block-ico{
	width: 80px;
	height: 80px;
	background:#C2DDDA;
	border-radius: 10px;
}
.main-reserve-block-ico span{
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
	color: #2F676D;
}
.main-reserve-block-title{
	width:calc(100% - 100px);
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
}
.main-reserve-block-content{
	font-size: 18px;
	line-height: 24.51px;
	opacity: .8;
}
.main-reserve-block-content ul,
.main-reserve-block-content ol{
	margin: 0;
	padding: 0 0 0 15px;
}
.main-reserve-block-content li{
	margin: 0 0 10px;
	padding: 0;
}
@media (max-width: 990px) {
	.main-reserve{
		padding: 50px 0;
		position: relative;
	}
	.main-reserve > .container{
		position: relative;
		z-index:2;
	}
	.main-reserve::after{
		position: absolute;
		z-index:1;
		content:'';
		background: rgba(255,255,255,.5);
		width:100%;
		height:100%;
		left:0;
		top:0;
	}
	.main-reserve-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 30px;
		max-width: 70%;
	}
	.main-reserve-blocks{
		gap: 30px;
	}
    .main-reserve-block {
        padding: 0 !important;
        border: none !important;
    }
	.main-reserve-block-ico {
		width: 60px;
		height: 60px;
	}
	.main-reserve-block-ico span {
		font-size: 40px;
		line-height: 48px;
	}
	.main-reserve-block-title {
		font-size: 18px;
		line-height: 22px;
	}
	.main-reserve-block-content {
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 768px) {
    .main-reserve-block {
        width: 100% !important;
		max-width: 290px;
    }
}
@media (max-width: 500px) {
	.main-reserve {
		background-position: center 100%;
		padding-bottom: 150vw;
	}
	.main-reserve::after{
		display:none;
	}
	.main-reserve-title {
		max-width: 100%;
	}
}


/* FAQ */
.main-faq{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding:120px 0;
}
.main-faq-title {
	color: #2F676D;
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 40px;
}
.main-faq-item:not(:last-child)::after{
	content:'';
	display:block;
	width:100%;
	height: 1px;
	margin: 25px 0;
	background:#E3E3E3;
}
.faq-question{
	cursor:pointer;
}
.q-question-inner {
	width: calc(100% - 176px);
}
.q-number{
	width: 80px;
	height: 80px;
	background: #C2DDDA;
	border-radius: 100%;
	margin-right: 25px;
}
.q-number span {
	font-size: 50px;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
	color: #2F676D;
}
.q-question-text{
	font-size: 24px;
	font-weight: 700;
	line-height: 28.8px;
	color: #2F676D;
}
.q-marker{
	width: 46px;
	height: 46px;
	border-radius: 100%;
	margin-left: auto;
	background-color: #2F676D;
	position: relative;
}
.q-marker-horizontal{
	position: absolute;
	width:16px;
	height:2px;
	left:15px;
	top:22px;
	background:#fff;
}
.q-marker-vertical{
	position: absolute;
	height:16px;
	width:2px;
	top:15px;
	left:22px;
	background:#fff;
}
.main-faq-item.active .q-marker-vertical{
	display:none;
}
.faq-answer{
	margin-top: 10px;
	font-size: 18px;
	line-height: 24.51px;
	display: none;
}
@media (max-width: 990px) {
	.main-faq{
		padding: 50px 0;
	}
	.main-faq-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 30px;
	}
	.q-number{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	.q-number span {
		font-size: 40px;
		line-height: 48px;
	}
	.q-marker{
		width: 40px;
		height: 40px;
	}
	.q-marker-horizontal{
		left:12px;
		top:19px;
	}
	.q-marker-vertical{
		top:12px;
		left:19px;
	}
	.q-question-inner {
		width: calc(100% - 130px);
	}
	.q-question-text{
		font-size: 18px;
		line-height: 22px;
	}
	.faq-answer {
		margin-top: 15px;
		font-size: 14px;
		line-height: 19px;
		display: none;
	}
}