/*=================================== Total css ===================================*/
html{
    -webkit-overflow-scrolling: touch;
}
body {
    position: relative;
    margin: 0;
    padding: 60px 0 0 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: normal;
    line-height: 1.333;
    min-height: 100vh;
    min-width: 320px;
    font-size: 17px;
    -webkit-overflow-scrolling: touch;
    color: #2e2e42;
    background: url("../images/bg.jpg") center top repeat-y;
    background-size: 100%;
}

.clear{
    clear: both;
    height: 1px;
    visibility: hidden;
}
a{
    text-decoration: none;
    transition: 0.2s;
    color: #292828;
}
a:hover,
a:focus{
    cursor: pointer;
    text-decoration: underline;
    outline: none;
    color: #292828;
}
button{
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
    outline: none;
}
button:focus{
    outline: none;
}
::-webkit-input-placeholder{
    color: #858b9a;
    opacity: 1;
}
::placeholder{
    color: #858b9a;
    opacity: 1;
}
:focus::placeholder{
    opacity: 0;
    transition: 0.3s ease;
}
button.button::-moz-focus-inner{
    padding: 0;
    border: 0;
}
/* FF Fix */
button.button{
    -webkit-border-fit: lines;
}
/* <- Safari & Google Chrome Fix */

h1, h2, h3, h4, h5, h6, .h1, .h3{
    line-height: 1.2;
    position: relative;
    margin: 0;
    color: #2e2e42;
    font-weight: bold;
}
h1, .h1{
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.333;
}
h2{
    font-size: 50px;
    margin-bottom: 10px;
}
h3, .h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.text-black{
    color: #000000;
}
.text-white{
    color: #ffffff;
}

.input-text,
textarea{
    padding: 25px 50px 25px 50px;
    width: 100%;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    transition: 0.3s;
    border: 1px solid transparent;
    outline: none;
    background-color: white;
    border-radius: 40px;
    box-shadow: 0 10px 10px rgba(228, 228, 228, 0.45);
}
select.input-text{
    /*width: 50px;*/
}
input,
textarea{
    -webkit-appearance: none;
}
textarea{
    min-height: 120px;
    resize: none;
}
input.input-text:focus,
textarea:focus,
input.input-text:hover,
textarea:hover {
    outline: none;
    border-color: #999;
}
.input-container{
    position: relative;
}
.input-container_icon .icon{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    color: #888888;
    font-size: 18px;
}
.input-container_icon .input-text{
    padding-left: 38px;
}
.input-container.error .input-text{
    border-color: #cf0000;
}
.input-container_text{
    background: #f7f7f8;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
}
.input-container .placeholder{
    font-size: 14px;
    padding: 0 2px;
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    z-index: 2;
    transition: 0.2s;
    pointer-events: none;
    color: #231f20;
}
.input-container textarea + .placeholder{
    align-items: flex-start;
    align-content: flex-start;
    top: 12px;
}
.input-text:focus + .placeholder,
.input-text.status-active + .placeholder,
.input-text.status-success + .placeholder{
    font-size: 12px;
    top: -7px;
    background: #403f3d;
    z-index: 2;
    height: auto;
}
p{
    margin: 0 0 30px 0;
}
p:last-child {
    margin-bottom: 0;
}
blockquote{
    font-style: italic;
}

ul,
ol{
    padding: 0 0 0 17px;
    margin: 0 0 20px 0;
}
ul:last-child,
ol:last-child{
    margin-bottom: 0;
}
.tab-content > .tab-pane{
    display: none
}
.tab-content > .active{
    display: block
}
img{
    max-width: 100%;
}
label{
    font-weight: normal;
}
#container{
    position: relative;
    overflow: hidden;
}
.container{
    position: relative;
    max-width: 100%;
}
.row-flex{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    margin: -15px -15px -15px -15px;
}
.row-flex_no-wrap{
    flex-flow: row nowrap;
}
.row-flex_col-wrap{
    flex-flow: column wrap;
}
.row-flex_fluid{
    margin: 0;
}
.row-flex_center{
    justify-content: center;
}
.row-flex_full{
    justify-content: space-between;
}
.row-flex_start{
    justify-content: flex-start;
}
.row-flex_end{
    justify-content: flex-end;
}
.row-flex_vertical-center{
    align-items: center;
    align-content: center;
}
.row-flex_vertical-bottom{
    align-items: flex-end;
    align-content: flex-end;
}
.row-flex_stretch{
    align-items: stretch;
    align-content: stretch;
}
.row-flex > .col{
    float: none;
    padding: 15px;
}
/* inline line */
.lg-inline,
.md-inline,
.sm-inline{
    display: block;
}
@media (max-width: 1199px){
    .lg-inline{
        display: inline;
    }
}
@media (max-width: 992px){
    .md-inline{
        display: inline;
    }
}
@media (max-width: 767px){
    .sm-inline{
        display: inline;
    }
}

.input-important{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

/* b-btn
---------------------------------*/
.b-btn{
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background-color: #d04932;
    border-radius: 40px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
    padding: 27px 45px 27px 45px;
    line-height: 26px;
    min-width: 270px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.b-btn:hover,
.b-btn:focus{
    text-decoration: none;
    color: #ffffff;
    background-color: #ec6751;
}
.b-btn_small{
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px 12px 20px;
    min-width: 80px;
    border-radius: 10px;
    font-weight: 500;
}
.b-btn_blue{
    background-color: #181751;
}
.b-btn_blue:hover{
    background-color: #242385;
}
.b-btn_grey{
    background-color: #858b9a;
}
.b-btn_grey:hover{
    background-color: #9da5b4;
}
/* End Total css ====*/

/*=================================== Site-header ===================================*/
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    min-width: 320px;
    box-sizing: border-box;
    margin: 0 0 0 0;
    transition: 0.4s;
    background-color: #181751;
    box-shadow: 0 10px 10px rgba(228, 228, 228, 0.45);
    padding: 10px 0 10px 0;
}

/* b-logo
---------------------------------*/
.b-logo{
    display: table;
}
.b-logo__img{
    width: 40px;
    display: table-cell;
    vertical-align: middle;
}
.b-logo__content{
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 15px;
    font-weight: bold;
  /*  color: #75c0ce;*/
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}
.b-logo:hover,
.b-logo:focus{
    text-decoration: none;
}




/*=================================== Main ===================================*/
#main{
    position: relative;
    padding-bottom: 90px;
}

/* section
---------------------------------*/
.section{
    padding: 60px 0 60px 0;
}
.section__header{
    margin-bottom: 55px;
    text-align: center;
}


/*  b-search
-------------------------------------*/
.b-search .col_search{
    flex-grow: 1;
}
.b-search__content{
    position: relative;
}
.b-search__content .icon{
    position: absolute;
    left: 50px;
    top: 0;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 30px;
}
.b-search__content .input-text{
    padding-left: 115px;
    padding-right: 300px;
}
.b-search__content .b-btn{
    position: absolute;
    right: 0;
    top: 0;
}


/* b-page-nav
---------------------------------*/
.b-page-nav ul{
    margin: -15px;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.b-page-nav ul li{
    list-style: none;
    padding: 15px;
}
.b-page-nav ul li a,
.b-page-nav ul li > span.current{
    min-width: 70px;
    height: 70px;
    border: 1px solid #858b9a;
    border-radius: 10px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    color: #858b9a;
    font-weight: 500;
}
.b-page-nav ul li > span.current{
    border: 1px solid #d04932;
    color: #d04932;
}
.b-page-nav ul li > span.dots{
    font-size: 20px;
    line-height: 1;
}
.b-page-nav ul li a:hover,
.b-page-nav ul li a:focus{
    text-decoration: none;
    border-color:  #d04932;
}
.b-page-nav ul .ellipsis span{
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background-color: #0b242e;
    display: inline-block;
    margin-right: 3px;
}
.b-page-nav ul .ellipsis span:last-child{
    margin-right: 0;
}


/*  b-upload
-------------------------------------*/
.b-upload{
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.b-upload input{
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.b-upload .b-btn{
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.b-upload .b-btn .icon{
    font-size: 15px;
    margin: 2px 15px 0 0;
    display: inline-block;
}
.b-upload_loading .b-btn{
    background-color: #ec6751;
}
.b-upload__title{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #858b9a;
}

/*  b-steps
-------------------------------------*/
.b-steps{
    counter-reset: items;
}
.b-steps__item{
    padding: 0 0 0 100px;
    position: relative;
    margin-bottom: 40px;
}
.b-steps__item:before{
    counter-increment: items;
    content: counter(items);
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 1px solid #d04932;
    border-radius: 10px;
    font-size: 32px;
    font-weight: 600;
    color: #d04932;
    text-align: center;
    background: #fff;
}
.b-steps__item:after{
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -40px;
    border-left: 1px dashed #d04932;
}
.b-steps__item:last-child:after{
    display: none;
}

/*  b-popular-questions
-------------------------------------*/
.b-popular-questions__item{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(228, 228, 228, 0.45);
    min-height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: space-between;
    justify-content: flex-start;
    padding: 30px;
}
.b-popular-questions__item:hover,
.b-popular-questions__item:active,
.b-popular-questions__item:focus{
    text-decoration: none;
    background-color: #d04932;
    color: #fff;
}
.b-popular-questions__title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    width: 100%;
    text-decoration: underline;
}
.b-popular-questions__answer-counter{
    color: #858b9a;
    font-size: 14px;
    width: 100%;
}
.b-popular-questions__answer-counter-title{
    font-size: 30px;
    font-weight: 300;
}
.b-popular-questions__item:hover .b-popular-questions__answer-counter,
.b-popular-questions__item:active .b-popular-questions__answer-counter,
.b-popular-questions__item:focus .b-popular-questions__answer-counter{
    color: #fff;
    opacity: 0.6;
}

/*  b-faq
-------------------------------------*/
.b-request{
    font-size: 18px;
    color: #858b9a;
}
.b-request__btn-list > .row-flex{
    margin: -5px;
}
.b-request__btn-list > .row-flex > .col{
    padding: 5px;
}

/*  b-faq
-------------------------------------*/
.b-faq{

}
.b-faq__list{
    text-align: left;
    margin-bottom: 50px;
}
.b-faq__list:last-child{
    margin-bottom: 0;
}
.b-faq__list > .row-flex{
    margin: -10px;
}
.b-faq__list > .row-flex > .col{
    padding: 10px;
}
.b-faq__list-item{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(228, 228, 228, 0.45);
    padding: 50px;
}
.dropdown-container_open .b-faq__list-item-nav .icon{
    transform: rotate(180deg);
}
.b-faq__list-item-header{
    cursor: pointer;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.b-faq__list-item-header-title{
    position: relative;
    padding: 0 30px 0 60px;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
}
.b-faq__list-item-header-title:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 2px;
    background-color: #d04932;
}
.b-faq__list-item-content{
    padding: 25px 0 0 0;
}
.b-faq__list-item-nav{
    align-self: flex-start;
}
.b-faq__list-item-nav .icon{
    transition: 0.3s;
    color: #fff;
    background-color: #d04932;
    box-shadow: 0 5px 30px rgba(208, 73, 50, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}


/* b-tag-list
---------------------------------*/
.b-tag-list ul{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: -5px;
    padding: 0;
}
.b-tag-list ul li{
    padding: 5px;
    list-style: none;
}
.b-tag-list ul li a{
    display: block;
    color: #909196;
    border: 1px dashed #a2a3a7;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
}
.b-tag-list ul li a:hover{
    text-decoration: none;
    border-color: #2e2e42;
    color: #2e2e42;
}



/* b-modal
---------------------------------*/
.b-modal{
    display: none;
    position: relative;
    width: 380px;
    padding: 20px 40px 50px 40px;
    max-width: 100%;
    background-color: #e1e2e5;
    box-shadow: 20px 20px 50px 0 rgba(0, 0, 0, 0.1);
    min-height: 145px;
}
.b-modal_description{
    background: #ffffff;
    width: 900px;
    max-width: 100%;
    padding: 20px 40px;
}

/*  custom-select
--------------------------------*/
.custom-select{
    width: 100%;
}

/*=================================== Site-footer ===================================*/
#footer{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #181751;
    padding: 35px 0 35px 0;
}



/* dropdown-content
---------------------------------*/
.dropdown-content{
    display: none;
}

/*  b-copyright
---------------------------------*/
.b-copyright{
    color: #858b9a;
    text-align: center;
    font-weight: 500;
}



/* b-custom-checkbox
---------------------------------*/
.b-custom-checkbox{
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.b-custom-checkbox input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: 5;
}
.b-custom-checkbox__icon{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    vertical-align: top;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    color: #000000;
    position: relative;
    z-index: 1;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 10px;
}
.b-custom-checkbox__icon i{
    opacity: 0;
}
.b-custom-checkbox input:checked + .b-custom-checkbox__icon i{
    opacity: 1;
}
.b-custom-checkbox_big .b-custom-checkbox__icon{
    width: 27px;
    height: 27px;
    font-size: 14px;
}
.b-custom-checkbox_square .b-custom-checkbox__icon{
    border-radius: 8px;
}
/* --------------------------- */
.note{
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  max-width: 95%;
	background: #f0f0f0;
	padding: 20px;
	border: 1px solid transparent;
	border-radius: 40px;
	z-index: 10;
}
.note>div{
  margin: 20px auto 0;
  display: block;
  width: 260px;
  text-align: center;
}
.note .btn_close{margin-left: 10px;}
textarea.notetext{
  width: 500px;
  max-width: 100%;
  resize: both;
  border-radius: 20px;
  padding: 10px;
}
.empty_search{text-align: center;}
.err404 p.mess, p.empty_search {
  width: 100%;text-align: center;background: #fafafa;padding: 40px;border: 1px solid transparent;border-radius: 20px;margin: 20px auto;
}
.err404 p.mess {max-width: 900px;}
.container.bc {margin-top: 30px;}
.container.bc a, .b-copyright a {text-decoration: none;}
.container.bc a {
  display: inline-block;
  line-height: 0;
  letter-spacing: .4px;
  font-size: 1.1em;
  font-weight: 600;
  background-color: #9da5b4;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 15px 20px 20px 15px;
}
@media (min-width: 768px){
  .container.bc a {font-size: 1.3em;padding: 20px 20px 25px 15px;}
}
