/* --------------------------------------------------------------------------------------------- */
/*  00.  Reset & Normalize
/* --------------------------------------------------------------------------------------------- */
:root {
    --primary-color: #ea9500;
}
*,
*:after,
*:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-font-smoothing:antialiased;
    font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
body{
    margin: 0;
    padding: 0;
    background: #fff;
    color: #2f2f2f;
    font-family: 'neo';
}
a{
    color: #2f2f2f;
    text-decoration: none;
}
a:hover{
    color: var(--primary-color);
    text-decoration: none;
}
a:focus{
    text-decoration: none;
}
a,input,textarea,button,input:focus,textarea:focus,select:focus{
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
}
a:hover,a:active,a:focus,input:focus,textarea:focus,button:focus,select:focus{
    outline:0;
}
input[type="submit"],button,select{
    cursor: pointer;
}
p{
    line-height: 1.8em;
    font-size: 18px;
}
h1,h2,h3,h4,h5,h6{
    line-height: 1.4em;
    font-weight: bold;
}
@font-face {
    font-family: 'neo';
    src: url('../fonts/NeoSans-bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'neo';
    src: url('../fonts/NeoSans-regular.ttf');
    font-weight: normal;
}


/* --------------------------------------------------------------------------------------------- */
/*  03.  Header
/* --------------------------------------------------------------------------------------------- */

.headerbg{
    display: block;
    background-color: #ffffff;
    padding: 15px 0px;
    position: relative;
}
.fixedheader,
.headerbg{
    min-height: 197px;
}
.headerlogo{
    display: block;
    float: right;
    width: 20%;
}
.headerlogo img{
    width: auto;
    height: auto;
    display: block;
    max-width: 70%;
}
.headerbg .navbar-collapse{
    float: right;
    width: 80%;
    padding: 0;
}
.headernav {
    margin: 60px 0 0;
    padding: 0;
    display: block;
    text-align: center;
}
.headernav > li {
    display: inline-block;
    margin: 0 6px;
}
.headernav > li > a {
    font-size: 14px;
    color: #f39100;
    display: block;
    position: relative;
    font-weight: bold;
}
.headernav > li > a:hover,
.headernav > li.active > a{
    color: #000;
}
.headerbg .navbar-toggle.collapsed .fa-bars{
    color: #fff;
}
.headerbg .navbar-toggle .fa-bars{
    font-size: 30px;
    color: #2f2f2f;
}
.headersocial{
    display: block;
    margin: 0;
    padding: 0;
}
.headersocial li{
    display: inline-block;
    margin: 0;
}
.headersocial.colorblack li a{
    color: #737c8d;
}
.headersocial.sm li a{
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
}
.headersocial li a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #f39100;
    border-radius: 50%;
}
.headersocial li a:hover{
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.headersocial li a.fa-facebook-f:hover{
    color: #fff;
    background: #3b5998;
}
.headersocial li a.fa-twitter:hover{
    color: #fff;
    background: #55acee;
}
.headersocial li a.fa-google-plus-g:hover{
    color: #fff;
    background: #dd4b39;
}
.headersocial li a.fa-linkedin:hover{
    color: #fff;
    background: #007bb5;
}
.headersocial li a.fa-youtube:hover{
    color: #fff;
    background: #bb3330;
}
.headersocial li a.fa-instagram:hover{
    color: #f39100;
}
.headersocial li a.fa-whatsapp:hover{
    color: #fff;
    background: #4dc247;
}
.headersocial li a.fa-search:hover{
    color: #fff;
    background: var(--primary-color);
}
.headersocial.colored li a.fa-facebook-f{
    color: #fff;
    background: #3b5998;
}
.headersocial.colored li a.fa-twitter{
    color: #fff;
    background: #55acee;
}
.headersocial.colored li a.fa-google-plus-g{
    color: #fff;
    background: #dd4b39;
}
.headersocial.colored li a.fa-linkedin{
    color: #fff;
    background: #007bb5;
}
.headersocial.colored li a.fa-youtube{
    color: #fff;
    background: #bb3330;
}
.headersocial.colored li a.fa-instagram{
    color: #fff;
    background: #8a3ab9;
}
.headersocial.colored li a.fa-whatsapp{
    color: #fff;
    background: #4dc247;
}
.headersocial.colored li a.fa-search{
    color: #fff;
    background: var(--primary-color);
}
.headerbg.sticky{
    top: 0;
    position: fixed;
    width: 100%;
    min-height: auto;
    z-index: 99;
    padding: 5px 0;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-animation:headerbgf 1s;
	   -moz-animation:headerbgf 1s;
    -o-animation:headerbgf 1s;
    animation:headerbgf 1s;
}
.headerbg.sticky .headerlogo img{
    height: 70px;
}
.headerbg.sticky .headernav{
    margin: 22px 0 0;
}
@keyframes headerbgf{
    from{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to{
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-webkit-keyframes headerbgf{
    from{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to{
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}


/* --------------------------------------------------------------------------------------------- */
/*  04.  Footer
/* --------------------------------------------------------------------------------------------- */

.footertop{
    background-color: #fff;
    color: var(--primary-color);
    position: relative;
    padding: 60px 0;
}
.footertop .footertop-about img{
    display: block;
    max-width: 100%;
    height: 110px;
    margin: 30px auto 0px auto;
}
.footertop .footertitle {
    color: #ea8122;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 30px;
    display: block;
}
.footertop .headersocial{
    text-align: center;
    margin-top: 60px;
}
.footertop .headersocial li a{
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.footertop .footertop-links{
    margin: 40px 0 0;
    padding: 0;
}
.footertop .footertop-links li {
    display: inline-block;
    margin: 0 -3px 10px;
    width: 50%;
    font-size: 14px;
    margin-bottom: 10px;
}
.footertop .footertop-links li a {
    color: #f39100;
    font-weight: bold;
}
.footertop .footertop-links li:hover a {
    color: #255035;
}
.footertop .footertop-links li:before {
    content: '\f053';
    font-size: 18px;
    line-height: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #f39100;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.footertop .footertop-links li:hover:before {
    margin-left: 12px;
}
.footerbottom{
    display: block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footerbottom .text{
    display: block;
    font-weight: bold;
    font-size: 15px;
    margin: 0;
}

/* --------------------------------------------------------------------------------------------- */
/*  05.  All Pages
/* --------------------------------------------------------------------------------------------- */

.section01,
.section02,
.section03{
    display: block;
    padding: 80px 0;
    color: #2f2f2f;
    background-color: #fff;
}
.section02{
    background: var(--primary-color);
    color: #fff;
}
.section03{
    background: #f5f5f5;
    color: #2f2f2f;
}
.section01.p20,
.section02.p20,
.section03.p20{
    padding: 20px 0;
}
.section01.p40,
.section02.p40,
.section03.p40{
    padding: 40px 0;
}
.section01.section_thu,
.section02.section_thu,
.section03.section_thu{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section01.fixed,
.section02.fixed,
.section03.fixed{
    background-attachment: fixed;
}
.section01title,
.section02title{
    text-align: center;
    display: block;
    position: relative;
    margin-bottom: 80px;
}
.section01title.mb40,
.section02title.mb40{
    margin-bottom: 40px;
}
.section01title.mb20,
.section02title.mb20{
    margin-bottom: 20px;
}
.section01title.mb0,
.section02title.mb0{
    margin-bottom: 0;
}
.section01title p.big,
.section02title p.big{
    font-size: 20px;
}
.section01title.noborder:after,
.section02title.noborder:after{
    display: none;
}
.section01title.right,
.section02title.right{
    text-align: right;
}
.section01title h2,
.section02title h2{
    margin: 0;
    color: var(--primary-color);
    font-size: 26px;
}
.section01title.fsmall h2,
.section02title.fsmall h2{
    font-size: 20px;
}
.section01title.fbig h2,
.section02title.fbig h2{
    font-size: 36px;
}
.section02title h2{
    color: #fff;
}
.section01title p,
.section02title p{
    margin: 30px auto 0;
    font-size: 16px;
    color: #2f2f2f;
    width: 80%;
}
.section01title.fullweight p,
.section02title.fullweight p{
    width: 100%;
}
.section01title.right p,
.section02title.right p{
    margin: 30px 0 0;
}
.section02title p{
    color: #a7a7a7;
}
.section01title h2:after,
.section02title h2:after{
    display: block;
    position: relative;
    content: '';
    width: 170px;
    margin: 30px auto 0;
    border-bottom: 3px dashed var(--primary-color);
}
.section01title.morelink h2,
.section02title.morelink h2{
    float: right;
    width: 80%;
}
.section01title.morelink a,
.section02title.morelink a{
    display: block;
    float: left;
    width: 20%;
    text-align: left;
    font-size: 18px;
    color: var(--primary-color);
    margin: 6px 0 0;
}
.section01title.morelink a:hover,
.section02title.morelink a:hover{
    color: #2f2f2f;
}
.section01title.morelink a .fa,
.section02title.morelink a .fa{
    margin-right: 10px;
}
.section01title_img.right img{
    margin: 0;
}
.section01title_img img{
    height: 60px;
    display: block;
    margin: 0 auto 10px;
    background-color: #fff;
    padding: 0 10px;
    z-index: 2;
    position: relative;
}
.section01title_img:before{
    display: inline-block;
    position: relative;
    top: 40px;
    content: '';
    width: 400px;
    margin: 0 auto;
    border-bottom: 3px dashed var(--primary-color);
    z-index: 1;
}
.section01title_img{
    position: relative;
    display: block;
}
.sliderhome{
    display: block;
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
}
.sliderhome:before{
    display: block;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 60%;
    z-index: 1;
    background-color: var(--primary-color);
}
.sliderhome:after{
    display: block;
    position: absolute;
    content: '';
    bottom: 30px;
    right: 0;
    width: 100%;
    height: 40%;
    background-image: url(../images/section01.png);
    background-repeat: repeat-x;
    background-position: center top;
    z-index: 2;
    /*    border-bottom: 2px solid var(--primary-color);*/
}
.sliderhome .container{
    position: relative;
    z-index: 3;
}
.sliderhome img{
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.sliderhome h1{
    font-size: 50px;
    margin: 0 0 10px;
    display: block;
}
.sliderhome h2{
    font-size: 26px;
    margin: 0;
    display: block;
}
.sliderhome p{
    display: block;
    margin: 20px 0 40px;
    font-size: 16px;
    line-height: 1.7em;
}
.sliderhome_buttons{
    text-align: center;
    display: block;
}
.sliderhome_buttons a{
    display: inline-block;
    width: 110px;
    height: 110px;
    line-height: 108px;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin: 0 0 10px 20px;
    font-size: 60px;
}
.featuresbox{
    display: block;
}
.featuresbox .featuresbox_thu{
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 140px auto 0;
}
.featuresbox_box{
    display: block;
    margin: 0 0 15px;
    background-color: #f8f8f8;
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    width: 70%;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
}
.featuresbox_box:hover{
    border-color: var(--primary-color);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.16);
}
.featuresbox_box img{
    display: block;
    margin: 0 auto;
    height: 60px;
}
.featuresbox_box h3{
    display: block;
    margin: 15px 0;
    color: var(--primary-color);
    font-size: 20px;
}
.featuresbox_box p{
    font-size: 14px;
    line-height: 1.6em;
    margin: 0;
    height: 100px;
    overflow: hidden;
}
.featuresbox_posR .featuresbox_box:nth-child(1),
.featuresbox_posR .featuresbox_box:nth-child(3){
    float: left;
}
.featuresbox_posR .featuresbox_box:nth-child(2){
    float: right;
}
.featuresbox_posL .featuresbox_box:nth-child(1),
.featuresbox_posL .featuresbox_box:nth-child(3){
    float: right;
}
.featuresbox_posL .featuresbox_box:nth-child(2){
    float: left;
}
.howiswork_bg{
    display: block;
}
.howiswork_bg img{
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.howiswork_box{
    display: block;
    margin: 0 0 30px;
    background-color: #f8f8f8;
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    height: 200px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
}
.howiswork_box span{
    font-size: 70px;
    font-weight: bold;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
}
.howiswork_box:hover{
    border-color: var(--primary-color);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.16);
}
.howiswork_box img{
    display: block;
    margin: 0 auto;
    height: 60px;
}
.howiswork_box h3{
    display: block;
    margin: 15px 0;
    color: var(--primary-color);
    font-size: 20px;
}
.howiswork_box p{
    font-size: 15px;
    line-height: 1.6em;
    margin: 0;
}
.buttonscenter{
    display: block;
    text-align: center;
}
.buttonscenter a{
    display: inline-block;
    margin: 10px;
}
.screenblock{
    margin-top: 60px;
    padding-bottom: 120px;
}
.screenblock:before{
    position: absolute;
    content: '';
    top: -57px;
    right: 0;
    display: block;
    background-image: url(../images/phone01-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.screenblock .slick-prev,
.screenblock .slick-next{
    top: 40%;
    z-index: 6;
}
.screenblock .slick-prev{
    left: -30px;
}
.screenblock .slick-next{
    right: -30px;
}
.screenblock .slick-dots{
    bottom: 20px;
}
.screenblock img{
    display: block;
    width: 100%;
    height: 364px;
    max-width: 100%;
    max-height: 100%;
}
.boxteamwork{
    display: block;
    text-align: center;
    position: relative;
    padding-top: 1px;
    margin-bottom: 40px;
}
.boxteamwork span{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    display: block;
    background-color: rgba(0, 162, 168, 0.72);
    padding: 30px;
    padding-top: 100px;
    top: 0;
    right: 0;
    width: 100%;
    height: 252px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
}
.boxteamwork:hover span{
    visibility: visible;
    opacity: 1;
}
.boxteamwork span .headersocial li a{
    font-size: 24px;
}
.boxteamwork img{
    width: 100%;
    height: 250px;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px var(--primary-color);
}
.boxteamwork h3{
    margin: 15px 0 0;
    color: var(--primary-color);
    font-size: 22px;
}
.boxteamwork p{
    margin: 0;
    display: block;
    font-size: 16px;
}
.boxnews10{
    display: block;
    margin: 0 0 30px;
    color: #2f2f2f;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
}
.boxnews10:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.boxnews10_thu{
    display: block;
    overflow: hidden;
}
.boxnews10:hover .boxnews10_thu img{
    transform: rotate(8deg) scale(1.2);
    -webkit-transform: rotate(8deg) scale(1.2);
}
.boxnews10_thu img,
.boxnews10_thu{
    border-radius: 6px 6px 0 0;
    width: 100%;
    height: 260px;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
}
.boxnews10_content{
    display: block;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
}
.boxnews10_content > h3{
    display: block;
    font-size: 18px;
    margin: 0 0 10px;
}
.boxnews10_content > p{
    font-size: 14px;
    line-height: 1.6em;
    margin: 0 0 20px;
}
.boxnews10_data{
    display: block;
}
.boxnews10_data p{
    display: inline-block;
    margin: 0 0 0 20px;
    border-left: 1px solid #8b8b8b;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.4em;
}
.boxnews10_data p [class^="fa"]{
    margin-left: 10px;
    color: var(--primary-color);
}
.boxnews10_data p:last-child{
    margin: 0;
    border-left: 0 none;
    padding-left: 0;
}
.panel-group .panel+.panel{
    margin-top: 20px;
}
.panel-default{
    border: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    border-radius: 6px;
}
.panel-group .panel{
    border-radius: 0;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body{
    border: 3px solid var(--primary-color);
    box-shadow: none;
    padding: 30px;
    font-size: 17px;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body p{
    font-size: 17px;
}
.panel-default>.panel-heading{
    background-color: var(--primary-color);
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    border-bottom: 1px solid var(--primary-color);
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.panel-default>.panel-heading>.panel-title a{
    display: block;
    padding: 20px 20px 20px 80px;
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.panel-default>.panel-heading>.panel-title a:before{
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Font Awesome 5 Free';
    content: '\f056';
    font-weight: 900;
    font-size: 20px;
}
.panel-default>.panel-heading>.panel-title a.collapsed{
    color: #fff;
}
.panel-default>.panel-heading>.panel-title a:hover{
    color: #2f2f2f;
}
.panel-default>.panel-heading>.panel-title a.collapsed:before{
    content: '\f055';
}
.boxreviews10{
    display: block;
    margin: 30px 0;
}
.boxreviews10 .boxreviews10_box{
    display: block;
    background-color: #fff;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    padding: 30px;
    position: relative;
    min-height: 117px;
}
.boxreviews10_box:before{
    position: absolute;
    content: '';
    right: 40px;
    bottom: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid var(--primary-color);
    z-index: 2;
}
.boxreviews10_box p{
    font-size: 16px;
    line-height: 1.6em;
    text-align: right;
    position: relative;
    margin: 0;
}
.boxreviews10_box p:before,
.boxreviews10_box p:after{
    position: relative;
    display: inline-block;
    margin-left: 5px;
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
}
.boxreviews10_box p:after{
    margin-right: 5px;
    margin-left: 0;
    content: '\f10d';
}
.boxreviews10_name{
    display: block;
    margin-top: 30px;
}
.boxreviews10_name img{
    float: right;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}
.boxreviews10_name .boxreviews10_nameR{
    float: right;
    display: block;
    padding-right: 20px;
    width: 80%;
    margin-top: 23px;
}
.boxreviews10_name .boxreviews10_nameR h3{
    display: block;
    margin: 0px 0 0;
    font-size: 18px;
}
.boxreviews10_name .boxreviews10_nameR i{
    font-style: normal;
}

/* --------------------------------------------------------------------------------------------- */
/*  06.  Responsive Private
/* --------------------------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .screenblock:before{
        top: -57px;
        background-image: url(../images/phone01-2.png);
    }
    .screenblock .slick-prev{
        left: 30px;
    }
    .screenblock .slick-next{
        right: 30px;
    }
}

/* --------------------------------------------------------------------------------------------- */

@media (max-width: 992px) {
    .section01,
    .section02,
    .section03{
        padding: 40px 0;
    }
    .section01title p,
    .section02title p{
        width: 100%;
    }
    .section01title.morelink h2, .section02title.morelink h2,
    .section01title.morelink a, .section02title.morelink a{
        float: inherit;
        width: 100%;
    }
    .section01title.morelink a, .section02title.morelink a{
        margin-top: 15px;
        display: block;
        text-align: right;
    }
    .headernav,
    .headernav.headernav_searchleft{
        float: none;
        width: 100%;
        margin: 0;
    }
    .headernav li{
        float: inherit;
        display: block;
        margin: 0 0 5px;
    }
    .headernav li a{
        padding: 10px;
        border: 1px solid transparent;
    }
    .headernav > li > a:hover:after,
    .headernav > li.active > a:after{
        display: none;
    }
    .headerbg .navbar-toggle{
        margin: 0 0 0 0;
    }
    .headerbg .navbar-collapse{
        float: inherit;
        width: 100%;
    }
    .headerlogo{
        width: 15%;
    }
    .headerbg .navbar-toggle{
        width: 30%;
        text-align: left;
        padding: 0;
        margin-top: 38px;
    }
    .headerbg{
        padding: 15px 0;
    }
    .headerbg .navbar-collapse{
        padding: 0 15px;
        overflow: inherit;
        clear: right;
    }
    .screenblock:before{
        display: none;
    }
    .screenblock{
        margin-top: 0;
        padding-bottom: 0;
    }
    .fixedheader, .headerbg{
        min-height: 138px;
    }
    .sliderhome{
        padding-top: 25px;
    }
    .sliderhome img{
        margin-top: 20px;
    }
    .featuresbox_posR .featuresbox_box:nth-child(1),
    .featuresbox_posR .featuresbox_box:nth-child(3),
    .featuresbox_posR .featuresbox_box:nth-child(2),
    .featuresbox_posL .featuresbox_box:nth-child(1),
    .featuresbox_posL .featuresbox_box:nth-child(3),
    .featuresbox_posL .featuresbox_box:nth-child(2){
        float: inherit;
        width: 100%;
    }
    .featuresbox .featuresbox_thu{
        margin: 20px auto;
    }
}

/* --------------------------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .section01title_img:before{
        width: 100%;
    }
    .headerbg .navbar-toggle{
        margin-top: 18px;
    }
    .fixedheader, .headerbg{
        min-height: 100px;
    }
}

/* --------------------------------------------------------------------------------------------- */

@media (max-width: 480px) {

}


.btn-primary {
    background-color: #f39100 !important;
    color: #fff;
    border-color: #f39100 !important;
}

.btn-primary:hover ,.btn-primary:focus, .btn-primary:active{
    background-color: #333333 !important;
    color: #fff;
    border-color: #333333 !important;
}

.slidercolors .slick-prev, .slidercolors .slick-next, .slidercolors-lg .slick-prev, .slidercolors-lg .slick-next, .slidercolors-sm .slick-prev, .slidercolors-sm .slick-next {
    background-color: #f39100;
    width: 40px;
    height: 40px;
}
.slidercolors .slick-prev:hover:before, .slidercolors .slick-next:hover:before, .slidercolors-lg .slick-prev:hover:before, .slidercolors-lg .slick-next:hover:before, .slidercolors-sm .slick-prev:hover:before, .slidercolors-sm .slick-next:hover:before {
    color: #f39100;
}
.form-register .img-thumbnail{
    width: 150px;
    height: 100px;
}
.text-color{
    color: #f39100;
    cursor: pointer;
}