@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Quicksand', sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
body.active{
	overflow: hidden;
}
.clear{
	clear: both;
	visibility: hidden;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

h1, h2, h3, h4, h5, h6{
	margin: 0 0 20px 0;
	color: #333333;
	font-weight: 700;
	line-height: 1.3;
}
h1{
	font-size: 32px;
}
h2{
	font-size: 24px;
}
h3{
	font-size: 18px;
}
h4{
	font-size: 16px;
}
h5{
	font-size: 14px;
}
h6{
	font-size: 12px;
}
p {
	font-weight: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #333333;
	margin: 0 0 20px 0;
}
p:last-child{
	margin-bottom: 0px;
}
img{
	display: block;
	max-width: 100%;
}
a{
	color: #66A9E5;
	outline: none;
	text-decoration: underline;
}
a:hover {
	color: #66A9E5;
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/*== buttons
---------------------------------*/
.b-link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #323131;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	opacity: 1;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.b-link:hover{
	text-decoration: none;
	color: #e83135;
	transition: 0.3s;
}
.b-link i{
	color: #e83135;
	font-size: 9px;
	margin: 0 0 0 13px;
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
.button{
	background: -webkit-linear-gradient(left, #63A8E8 0%, #8F69BE 78.36%);
	background: -o-linear-gradient(left, #63A8E8 0%, #8F69BE 78.36%);
	background: linear-gradient(to right, #63A8E8 0%, #8F69BE 78.36%);
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	color: #FFFFFF;	
}
.button:hover{
	text-decoration: none;
	transition: 0.3s;
	opacity: 0.8;
	box-shadow: none;
	color: #ffffff;
}
.button:active{
	text-decoration: none;
	transition: 0.3s;
	opacity: 0.6;
	box-shadow: none;
	color: #ffffff;
}
.disable{
	color: #CCCCCC !important;
	border-color: #E6E6E6 !important;
	pointer-events: none;
}
.disable i{
	color: #CCCCCC !important;
}
.disable:hover , .disable:active , .disable:focus{
	color: #CCCCCC;
	border-color: #E6E6E6;	
}
.disable:hover i, .disable:active i, .disable:focus i{
	color: #CCCCCC;
}
/*== ripple-effect
---------------------------------*/
.ripple {
   position: relative;
   overflow: hidden;
}
.ripple-effect {
   display: inline-block;
   position: absolute;
   top: 0;
   left: 0;
   border: 2px solid rgba(255, 255, 255, .3);
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-animation: ripple 1s ease forwards;
   animation: ripple 1s ease forwards;
   z-index: 3;
}
@-webkit-keyframes ripple {
   0% {
       -webkit-transform: scale(0);
       transform: scale(0);
   }
   100% {
       -webkit-transform: scale(200);
       transform: scale(200);
   }
}
@keyframes ripple {

    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(200);
        transform: scale(200);
    }
}



/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}
.b-input-text{
	width: 100%;
	height: 40px;
background: #E9EDEF;
border-radius: 6px;
padding: 0 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-weight: normal;
font-size: 12px;
line-height: 14px;
color: #5C6064;
	transition: 0.3s;
}
.b-input-text::-webkit-input-placeholder{
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #5C6064;
}
.b-input-text:-moz-placeholder{
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #5C6064;
}
.b-input-text.error{
	border-color: #EF4231;
}
.b-input-item label{
	position: absolute;
	bottom: -16px;
	left: 20px;
	font-size: 12px;
	margin: 0;
	color: #F54B48;
}

textarea{
	height: 80px;
	outline: none;
}
.b-textarea{
	width: 100%;
	height: 80px;
	background: #E9EDEF;
	border-radius: 6px;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #5C6064;
	transition: 0.3s;
}
.b-textarea::-webkit-input-placeholder{
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #5C6064;
}
.b-textarea:-moz-placeholder{
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #5C6064;	
}


/*== checkbox , raido
---------------------------------*/
.b-checkbox{

}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-checkbox input[type="checkbox"] + label span{
	background: url(../images/checkbox_off.png) top no-repeat;
	width: 22px;
	height: 23px;
	display: block;
	transition: 0.3s;
}
.b-checkbox input[type="checkbox"] + label strong{
    cursor: pointer;
    margin: 0;
   	width: 57px;
	height: 30px;
	background: #202a39;
	border: 1px solid #415169;
	border-radius: 15px; 
	position: relative;
	margin: 0 8px 0 0;
	display: flex;
	align-items: center;
	padding: 0 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-shrink: 0;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: url(../images/checkbox-on.png) top no-repeat;
	width: 22px;
	height: 23px;
	transform: translateX(120%);
	transition: 0.3s;
}
.b-checkbox input[type="checkbox"] + label i{
	color: #9499a2;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	font-style: italic;
	text-transform: uppercase;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.b-check{
	margin: 0 0 14px 0;
}
.b-check:last-child{
	margin-bottom: 0;
	margin-top: 0;
}
.b-check input[type="checkbox"]{
    display: none;
}
.b-check input[type="checkbox"] + label span{
	width: 20px;
	height: 20px;
	background: #F5F7FA;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	flex-shrink: 0;
	margin: 0 9px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: transparent;
	transition: 0.3s;
}
.b-check input[type="checkbox"] + label span:before{
	font-size: 10px;
}
.b-check:hover input[type="checkbox"] + label span{
	border-color: #2f95fe;
}
.b-check input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.b-check input[type="checkbox"]:checked + label span{
	color: #CF1E1F;
	transition: 0.3s;	
}
.b-check input[type="checkbox"] + label i{
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: #6B7999;
	font-style: normal;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.b-check input[type="checkbox"]:checked + label i{
	color: #1F2C4D;
}

/*== raido
---------------------------------*/
.b-radio{
	margin: 0 0 15px 0;
}
.b-radio:last-child{
	margin-bottom: 0;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label span{
	width: 20px;
	height: 20px;
	background: #F5F7FA;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	flex-shrink: 0;
	margin: 0 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-radio input[type="radio"] + label span:before{
	content: "";
	width: 10px;
	height: 10px;
	background: #CF1E1F;
	border-radius: 100%;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio:hover input[type="radio"] + label span{
	border-color: #2f95fe;
}
.b-radio input[type="radio"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.b-radio input[type="radio"]:checked + label span{

}
.b-radio input[type="radio"]:checked + label span:before{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-radio input[type="radio"] + label i{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #6B7999;
	font-style: normal;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.b-radio input[type="radio"]:checked + label i{
	color: #1F2C4D;
}

select{
	outline: none;
}
.b-select{
	width: 100%;
	height: 50px;
	background: #FFFFFF;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 21px;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #4D4C4C;		
	border: none; 	
/* 	background: #F5F7FA url(..//static/images/svg/arrow-down.svg);
background-repeat: no-repeat;
background-position: right 16px center;
background-size: 12px;
-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    appearance: none !important; */
    transition: 0.3s;
}
.b-select:hover{
	border-color: #2f95fe;
	transition: 0.3s;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
	position: relative;
}
.fancybox-container{
	z-index: 999999;
}
.b-mobile{
	display: none;
}
.modal-dialog{
	pointer-events: inherit;
}
.modal{
	z-index: 99999999;
}
.slick-slide , .slick-slide:hover , .slick-slide:focus{
	outline: none !important;
}
.animate-top , .animate-left , .animate-right , .animate-down , .animate-right__fast , .animate-left__fast{
	opacity: 0;
	transition: 1s;
}
/* End Total css ====*/
.container-fluid{
	max-width: 1630px;
}
.container-fluid{

}
.b-mobile{
	display: none;
}
.b-container{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: 100vh;
}
.wrapper{
	width: 990px;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0;
}
/* -------------- page index -------------- */
.b-header{
	padding: 10px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #FFFFFF;
	box-shadow: 0px 0px 30px #C9D9E4;
	position: relative;
	z-index: 5;
}
.b-header .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center
}
.b-logo{
	display: block;
}
.b-header-phone{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	text-transform: capitalize;
	text-decoration: none;
	color: #333333;
	opacity: 1;
	transition: 0.3s;	
}
.b-header-phone:hover , .b-header-phone:active , .b-header-phone:focus{
	text-decoration: none;
	color: #333333;
	opacity: 0.8;
	transition: 0.3s;
}
.b-header-phone i{
	font-size: 20px;
	margin: 0 10px 0 0;
}
.b-header-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-grow: 1;
}
.b-nav{
	margin: 0 20px 0 58px;
}
.b-nav-container > ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-nav-container > ul > li{
	list-style: none;
	margin: 0 25px 0 0;
}
.b-nav-container > ul > li:last-child{
	margin-right: 0px;
}
.b-nav-container > ul > li > a{
	display: block;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	text-transform: capitalize;
	text-decoration: none;
	color: #333333;	
	opacity: 1;
	transition: 0.3s;	
}
.b-nav-container > ul > li > a:hover , .b-nav-container > ul > li > a:active , .b-nav-container > ul > li > a:focus{
	text-decoration: none;
	color: #66A9E5;
	transition: 0.3s;
}
.btn-live{
	width: 80px;
	height: 30px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: capitalize;
	color: #000000;
	background: #E9ECEF;
	border-radius: 4px;	
}
.btn-live:hover , .btn-live:focus , .btn-live:active{
	text-decoration: none;
	color: #000000;
}
.btn-close{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	text-transform: capitalize;
	color: #333333;
	padding: 9.5px 11.3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-shrink: 0;
	background: #E9ECEF;
	border-radius: 4px;	
}
.btn-close:hover , .btn-close:focus , .btn-close:active{
	text-decoration: none;
	color: #000000;
}
/* -------------- b-content -------------- */
.b-content{
	position: relative;
	flex-grow: 1;
}
.b-content:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	min-height: 592px;
	background: -webkit-linear-gradient(#EFF7FD 87.5%, rgba(239, 247, 253, 0) 100%);
	background: -o-linear-gradient(#EFF7FD 87.5%, rgba(239, 247, 253, 0) 100%);
	background: linear-gradient(#EFF7FD 87.5%, rgba(239, 247, 253, 0) 100%);
	z-index: 1;
}
.b-content:after{
	position: absolute;
	top: 43px;
	left: 0;
	content: "";
	width: 100%;
	height: 386px;
	background-image: url(../images/content-bg.svg);
	background-repeat: no-repeat;
	background-position: center top 0px;
	z-index: 1;
}
.b-content .wrapper{
	position: relative;
	z-index: 2;
}
.b-main{
	padding: 65px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
.b-main-content{
	position: relative;
}
.b-main-left{
	width: 538px;
	flex-shrink: 0;
}
.b-main-title{
	display: block;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	color: #333333;	
	margin: 0 0 10px 0;
}
.b-main-left__top p{
	font-weight: normal;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #423F60;
	max-width: 458px;
}
.b-main-left__top b{
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: #333333;	
	margin: 15px 0;
}
.b-main-right{
	flex-shrink: 0;
	width: 420px;
	position: absolute;
	top: 0;
	right: 0;
}
.b-main-right img{
	max-width: inherit;
}
.b-main-left .b-block{
	max-width: 465px;
	margin: 50px 0 0 0;	
}
.b-block{
	background: #FFFFFF;
	box-shadow: 0px 0px 20px #CFDFE9;
	border-radius: 20px;
	padding: 15px 20px 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-block-top{
	display: flex;
	justify-content: space-between;
	align-items: center
}
.b-block-top__left{
	display: flex;
	justify-content: flex-start;
	align-items: center
}
.b-block-top__img{
	position: relative;
	width: 50px;
	height: 50px;
	background: #ECEEF0;
	border-radius: 100%;
	margin: 0 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.b-block-top__img img{
	border-radius: 100%;
}
.b-block-status{
	position: absolute;
	bottom: 2px;
	right: 2px;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	background: #5ECA76;
	border: 1px solid #FFFFFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
.b-block-top__text{

}
.b-block-top__name{
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	color: #333333;
	display: block;
	margin: 0 0 3px 0;
}
.b-block-top__info{
	font-weight: 500;
	font-size: 10px;
	line-height: 1.2;
	color: #BBBBBB;	
	display: block;
}
.b-block-content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	padding: 0 0 0 23px;
	margin: 10px 0 0 0;
}
.b-block-content__left{
	width: 4px;	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 32px 0 0;
}
.b-block-content__line{
	width: 4px;
	flex-grow: 1;
	background: #D7E6EF;
	border-radius: 4px;
	margin: 0 0 6px 0;
}
.b-block-content__dot{
	border-radius: 100%;
	width: 4px;
	height: 4px;
	background: #D7E5EF;
}
.b-block-content__text{
	padding: 4px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-block-content__text p{
	font-weight: normal;
	font-size: 16px;
	line-height: 1.2;
	color: #333333;
	margin: 0;
}
.b-block-bottom{
	position: relative;
	margin: 15px 0 0 0;
}
.b-block-input{
	width: 100%;
	height: 52px;
	background: #E9EDEF;
	border: none;
	border-radius: 10px;	
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	color: #5C6064;	
	padding: 15px 72px 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	 resize: none; 
}
.b-block-input::-webkit-input-placeholder{
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	color: #5C6064;	
}
.b-block-input:-moz-placeholder{
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	color: #5C6064;	
}
.b-block-btn{
	position: absolute;
	top: 49%;
	right: 6px;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	color: #ffffff;
	background: #5ECA76;
	border-radius: 10px;	
}
.b-file{
	position: absolute;
	top: 50%;
	right: 53px;
	transform: translateY(-50%);
	width: 15px;
	cursor: pointer;
	overflow: hidden;
}
.b-file .icon-file{
	font-size: 24px;
	color: #B1BCCA;
	transition: 0.3s;
	cursor: pointer;
}
.input__file {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}
.input__file-button{
	cursor: pointer;
	margin: 0 auto;
}

/* -------------- b-faq -------------- */
.b-faq{
	padding: 0 0 60px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-title{
	text-align: center;
	margin: 0 0 15px 0;
}
.b-title-item{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	text-align: center;
	letter-spacing: -0.04em;
	color: #000000;	
	margin: 0;
}
.b-faq-item{
	margin: 0 0 5px 0;
	background: #F0F6FB;
	border-radius: 10px;
}
.b-faq-item__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F0F6FB;
	border-radius: 10px 10px 0 0;
	padding: 0 0 0 20px;
	border-bottom: 1px solid #dde3e7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.b-faq-item__top.collapsed {
	border-bottom: none;
}
.b-faq-item__top__left{
	display: flex;
	justify-content: flex-start;
	align-items: center
}
.b-faq-item__top__left b{
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	color: #000000;	
	padding: 0 20px 0 0;
	margin: 0 20px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #CCD6E2;
}
.b-faq-item__top__left span{
	display: block;
	font-weight: normal;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #000000;	
}
.b-faq-item__top__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 60px;
	background: #5ECA76;
	border-radius: 0px 10px 0 0px;
	font-size: 18px;
	color: #ffffff;
	flex-shrink: 0;
}
.collapsed .b-faq-item__top__btn {
	border-radius: 0px 10px 10px 0px;
}
.b-faq-item__top__btn:before{
	display: none;
}
.b-faq-item__top.collapsed .b-faq-item__top__btn:before{
	display: block;
}
.b-faq-item__top .b-faq-item__top__btn:after{
	width: 20px;
	height: 6px;
	background: #ffffff;
	content: "";
	display: block;
	border-radius: 4px;
}
.b-faq-item__top.collapsed .b-faq-item__top__btn:after{
	display: none;
}
.b-faq-item__text{
	padding: 15px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-faq-item__text p{
	color: #000000;
	font-size: 16px;
}
.b-faq-bottom{
	margin: 20px 0 0 0;
}
.b-faq-bottom p{
	font-weight: normal;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	color: #000000;	
	margin: 0;
}
.b-faq-btn{
	width: 320px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto 0;
}


.b-footer{
	background: #34475F;
	padding: 40px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 5;
}
.b-footer .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: flex-start
}
.b-footer-left{

}
.b-footer-left b{
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.05em;
	text-transform: capitalize;
	color: #FFFFFF;
	margin: 0 0 6px 0;
}
.b-copyright{
	font-weight: 700;
	font-size: 8px;
	line-height: 1;
	text-transform: capitalize;
	color: #FFFFFF;
	opacity: 0.5;
}
.b-footer-right{

}
.b-footer-nav{
	margin: 0 0 15px 0;
}
.b-footer-nav ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer-nav ul li{
	list-style: none;
	margin: 0 25px 0 0;
}
.b-footer-nav ul li:last-child{
	margin-right: 0px;
}
.b-footer-nav ul li a{
	display: block;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-transform: capitalize;
	text-decoration: none;
	color: #FFFFFF;	
	opacity: 1;
	transition: 0.3s;
}
.b-footer-nav ul li a:hover , .b-footer-nav ul li a:active , .b-footer-nav ul li a:focus{
	text-decoration: underline;
	color: #FFFFFF;
	transition: 0.3s;
}
.b-footer-menu{

}
.b-footer-menu ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.b-footer-menu ul li{
	list-style: none;
	margin: 0 0 0 20px;
}
.b-footer-menu ul li:last-child{
	margin-right: 0px;
}
.b-footer-menu ul li a{
	display: block;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	text-transform: capitalize;
	text-decoration: none;
	color: #FFFFFF;	
	opacity: 1;
	transition: 0.3s;	
}
.b-footer-menu ul li a:hover , .b-footer-menu ul li a:active , .b-footer-menu ul li a:focus{
	text-decoration: underline;
	color: #FFFFFF;
	transition: 0.3s;
}


/* -------------- b-chat-page -------------- */
.chat-page .b-content{
	flex-grow: 1;
	overflow: auto;
}
.b-chat-page{
	padding: 40px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-chat-page__container{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start
}
.b-chat-page__container .b-block{
	margin: 0 0 20px 0;
}
.b-chat-page__container .b-block-content__text p{
	max-width: 590px;
}
.b-block-content{
	padding: 0 30px 0 23px;
}
.b-block-top__right{
	text-align: right;
}
.b-block-top__date{
	display: block;
	font-weight: 500;
	font-size: 10px;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #333333;
	margin: 0 0 3px 0;
}
.b-block-top__status{
	font-weight: 500;
	font-size: 10px;
	line-height: 1;
	text-align: right;
	letter-spacing: -0.04em;
	color: #BBBBBB;	
}
.b-chat-page__bottom{
	background: #FFFFFF;
	box-shadow: 0px 0px 20px #CFDFE9;	
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-chat-page__bottom .b-block-input{
	height: 80px;
	padding: 25px 120px 10px 20px;
}
.b-chat-page__bottom  .b-block-bottom{
	margin: 0;
}
.b-chat-page__bottom .b-block-btn{
	width: 60px;
	height: 60px;
	font-size: 30px;
}
.b-chat-page__bottom .b-file{
	right: 70px;
	width: 34px;
}
.b-chat-page__bottom .b-file .icon-file{
	font-size: 34px;
}
.b-chat-type{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.2;
	color: #B7C6CF;	
	margin: 25px 0 0 0;
	padding: 0 0 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* -------------- b-text-page -------------- */
.b-text-page{
	padding: 40px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-text-page p{
	margin: 25px 0;
}

/* -------------- page lost_packages -------------- */
.b-main__packeges{
	padding: 75px 0;
}
.b-main__packeges .b-main-content{
	display: flex;
	justify-content: space-between;
	align-items: flex-start
}
.b-main__packeges .b-main-left__top p{
	max-width: 595px;
	font-size: 16px;
	line-height: 1.5;
}
.b-main__packeges .b-main-right{
	display: flex;
	justify-content: flex-end;
	position: static;
	padding: 15px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main__packeges .b-main-right img{
	 
}
.b-main-form{
	background: #FFFFFF;
	box-shadow: 0px 0px 20px #CFDFE9;
	border-radius: 10px;
	padding: 20px 20px 15px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 35px 0 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.b-input-text__container{
	position: relative;
	margin: 0 0 5px 0;
}
.b-input-text__container__big{
	width: 100%;
}
.b-input-text__container__sm{
	width: 66.8%;
}
.b-input-btn{
	width: 160px;
	height: 40px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	flex-shrink: 0;
	margin: 0 0 0 5px;
}


/* -------------- page lost_packages -------------- */
.b-results{
	padding: 0 0 80px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
} 
.b-results-title{
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #333333;	
	padding: 0 0 15px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #D6E4ED;
	margin: 0 0 40px 0;
}
.b-results-content{

}
.b-results-item{
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	background: #FFFFFF;
	border-radius: 10px;
	filter: drop-shadow(0px 0px 20px #CFDFE9);	
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 15px 0;
}
.b-results-item:last-child{
	margin-bottom: 0px;
}
.b-results-item__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-results-item__img{
	flex-shrink: 0;
	width: 108px;
	margin: 0 20px 0 0;
}
.b-results-item__content{

}
.b-results-item__content ul{
	padding: 0;
	margin: 0;
}
.b-results-item__content ul li{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.005em;
	color: #000000;	
}
.b-results-item__content ul li span{
	font-weight: normal;
	padding: 0 0 0 5px;
}
.b-results-item__right{
	padding: 0 0 0 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 1px solid #D6E4ED;
	display: flex;
	align-items: center;
}
.b-results-item__btn{
	width: 180px;
	height: 40px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	color: #FFFFFF;	
}
.b-results-item__right span{
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 10px;
	line-height: 1;
	color: #B7C6CF;
	margin: 13px 0 0 0;	
}
.b-results-notfound {
	font-weight: 700;
	color: #5F0D25;
	text-align: center;
	padding: 25px;
	border-radius: 10px;
	background: #F9EAEE;
}

/* -------------- page chat_login -------------- */
.b-login-container{
	position: relative;
	z-index: 5;	
	padding: 30px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-login-title{
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #333333;	
}
.b-login{
	width: 400px;
	margin: 0 auto 0;

}
.b-login .b-main-form{
	display: block;
	padding: 20px 20px 13px 20px;
}
.b-login .b-input-btn{
	width: 100%;
	height: 52px;
	margin: 0;
}
.b-login .b-input-text__container{
	margin: 0 0 7px 0;
}
.b-login-container__bottom{
	text-align: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.2;
	color: #B7C6CF;	
	margin: 15px 0 0 0;
}
.xs-hidden{
	display: none;
}