@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=PT+Sans:wght@400;700&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	background: #EEEEEE;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'PT Sans', sans-serif;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 16px 0;
	font-weight: 900;
	color: #2b3139;
	line-height: 1.3;
}
h1{
	font-size: 36px;
}
h2{
	font-size: 32px;
}
h3{
	font-size: 28px;
}
h4{
	font-size: 26px;
}
h5{
	font-size: 24px;
}
h6{
	font-size: 18px;
}
p {
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: #8090AA;
	margin: 0 0 25px 0;
}
strong{
	font-weight: 500;
}
p a{
	text-decoration: underline;
	color: #004394;
}
p a:hover{
	text-decoration: none;
}
p:last-child{
	margin-bottom: 0;
}
img{
	display: block;
	max-width: 100%;
}
a{
	outline: none;
	text-decoration: none;
	font-weight: 500;
	color: #004394;
}
ul , ol{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
li{
	list-style: none;
}
ol{
	padding: 0 0 0 20px;
}
ol li{
	list-style: decimal;
}
/* buttons */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}
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;
	box-shadow: none;
	text-decoration: none;
}
.btn-blue{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 47px;
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0 41.2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #1448E2;
	border-radius: 33px;
	transition: 0.3s;
	text-decoration: none;
}
.btn-blue:hover{
	text-decoration: none;
	color: #FFFFFF;
	background: #3769fb;
	transition: 0.3s;
}
.btn-blue:active , .btn-blue:focus{
	background: #1f49c3;
	text-decoration: none;
	color: #FFFFFF;
	transition: 0.3s;
}

.b-link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	color: #8090AA;
	font-family: 'Ubuntu', sans-serif;
	text-decoration: none;
	transition: 0.3s;
}
.b-link:after{
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e909";
	display: block;
	font-size: 15px;
	line-height: 1;
	color: #111ED3;
	margin: 2px 0 0 11px;
	transition: 0.3s;
}
.b-link:hover{
	color: #111ED3;
	text-decoration: none;
	transition: 0.3s;
}
.b-link:hover:after{
	transform: translateX(5px);
	transition: 0.3s;
}

.swiper-button-disabled{
	color: gray !important;
	border-color: gray !important;
	pointer-events: none;	
}
/* inputs */
input{
	outline: none;
	border: none;
}
.b-input{
	position: relative;
	margin: 0 0 26px 0;
}
.b-input__title{
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	color: #000000;
	margin: 0 0 10px 0;
}
.b-input__text{
	width: 100%;
	height: 48px;
	background: #FAFAFA;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 5px;
	padding: 0 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #333;
}
.b-input__text::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #CCCCCC;
}
.b-input__text:-moz-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #CCCCCC;
}
textarea{
	width: 100%;
	height: 128px;
	background: #ffffff;
	border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 16px 32px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	min-height: 70px;
	height: auto;
	max-height: 128px;
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	opacity: 0.75;
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	opacity: 0.75;
}
.b-input__btn{
	width: 400px;
	height: 48px;
	background: #5DC9D8;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	color: #000000;
}
.b-input__btn:hover{
	opacity: 0.8;
}
.btn-forgot{
	font-weight: 400;
	font-size: 14px;
	line-height: 48px;
	display: flex;
	align-items: center;
	text-align: center;
	text-decoration-line: underline;
	color: #000000;
	justify-content: center;
}
.btn-forgot:hover{
	opacity: 0.8;
	text-decoration-line: none;
}

/* checkbox , radio */
.b-checkbox{
	margin: 21px 0 0 120px;
}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label span{
	width: 20px;
	height: 20px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-checkbox input[type="checkbox"] + label span:after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #000000;
	border-radius: 2px;
	opacity: 0;
}
.b-checkbox input[type="checkbox"]:checked + label span:after{
	opacity: 1;
}
.b-checkbox label i{
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	font-style: normal;
}
/* radio */
.b-radio{
	
}
.b-radio:not(:last-child){
	margin-right: 5px;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label{
	margin: 0;
	background: #F2F2F2;
	border-radius: 3px;
	width: 80px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 11px;
	line-height: 1;
	color: #000000;
	cursor: pointer;
}
.b-radio input[type="radio"]:checked + label{
	background: #29ABD5;
	color: #ffffff;
}
.b-radio input[type="radio"] + label:hover{
	background: #29ABD5;
	color: #ffffff;	
}
.b-radio input[type="radio"] + label i{

}

select{
	outline: none;
}
.b-select{
	width: 155px;
	height: 34px;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	padding: 0 10px;
	background: #F5F5F5 url('../images/chevron-down.svg');
	background-repeat: no-repeat;
	background-position: right 7px center;
	background-size: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.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;
}
.p-relative{
	position: relative;
}
.text-transform-none{
	text-transform: none !important;
}
.text-transform-uppercase{
	text-transform: uppercase !important;
}
.text-transform-lowercase{
	text-transform: lowercase !important;
}
.text-transform-capitalize{
	text-transform: capitalize !important;
}
.container{
	max-width: 1010px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0;
}
/* End Total css ====*/
.b-container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}
/* -------------- page index -------------- */
.b-header{
	background: #445580;
}
.b-header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.b-logo{
	text-align: center;
	width: 250px;
	height: 60px;
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	letter-spacing: -0.01em;
	color: #999999;
}
.b-logo:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: url("../images/logo_bg.png");
	width: 100%;
	height: 120px;
	z-index: 1;
}
.b-logo__wrap{
	position: relative;
	z-index: 2;
	padding: 30px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-logo span{
	font-family: 'Orbitron', sans-serif;
	font-weight: 400;
	font-size: 52px;
	line-height: 58px;
	text-align: center;
	letter-spacing: -0.03em;
	color: #000000;
	display: block;
}
.b-header__left ,
.b-header__right{
	flex-grow: 1;
}
.b-header__right{
	text-align: right;
}
.b-header__phone{
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: -0.01em;
	color: #A6BBF2;
}
.b-header__phone:hover{
	opacity: 0.8;
}
.b-content{
	flex-grow: 1;
}
.b-login{
	max-width: 400px;
	margin: 0 auto 0;
	padding: 130px 0 80px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-title{
	font-family: 'Orbitron', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	text-transform: uppercase;
	color: #000000;
	border-bottom: 1px solid #CCCCCC;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 0 11px 0;
	margin: 0 0 35px 0;
}
/* -------------- b-footer -------------- */
.b-footer{
	width: 100%;
	height: 40px;
	background: #383F52;
}
