/* General
==========================*/
*,
:focus {
    outline: 0!important;
}
@font-face {
    font-family: "myfont";
    src: url('../css/font/myfont.woff2') format('woff2'), url('../css/font/myfont.woff') format('woff'), url('../css/font/myfont.eot') format('eot'), url('../css/font/myfont.ttf') format('truetype'), url('../css/font/myfont.otf') format('opentype');
}
@font-face {
    font-family: "myfontxlt";
    src: url('../css/font/myfontxlt.otf') format('opentype');
}
body {
    font-family: "myfont";
    overflow-x: hidden;
    overflow-y: hidden;
    line-height: 25px;
    font-weight: 100;
    letter-spacing: .5px;
    color: #666;
}

/* Link
==========================*/
a,
a:hover,
a:focus {
    text-decoration: none;
}

/* Lists
==========================*/
ul,
li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.dot-lists {
    overflow: hidden;
    text-align: right;
    margin: 10px 0px;
}
.dot-lists li {
    padding-left: 25px;
    line-height: 35px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 15px;
    text-align: left;
    position: relative;
}
.dot-lists li:before {
    content: " ";
    position: absolute;
    left: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: #e6c412;
    transform: rotate(45deg);
}

/*Images
==========================*/
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Forms
==========================*/
.form-title {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    color: #425e90;
}
.form-group {
    position: relative;
    overflow: hidden;
    margin: 10px auto;
}
.form-group label {
    display: block;
    text-align: left;
    font-weight: 100;
    font-size: 13px;
    line-height: 25px;
    margin: 10px 0;
    color: #666;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.form-control {
    color: #425e90;
    border: 1px solid #e8e8e8;
    margin: 0 auto;
    padding: 0 15px;
    height: 45px;
    font-weight: 400;
    line-height: 45px;
    background-color: #fff;
    border-radius: 0;
    font-size: 13px;
    letter-spacing: 1px;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.form-control:hover,
.form-control:focus {
    outline: 0;
    border: 1px solid #f1f1f1;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
textarea.form-control {
    height: 120px!important;
    resize: none;
    overflow-x: hidden;
    line-height: 30px;
}
input[type=radio],
input[type=checkbox] {
    display: none;
}
input[type=radio]+label,
input[type=checkbox]+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    margin: 0;
    line-height: 20px;
}
input[type=radio]+label::before,
input[type=checkbox]+label::before {
    content: "";
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: inherit;
    background: #fff;
    border: 1px solid #e5e3e3;
    border-radius: 50%;
    font-size: 12px;
}
input[type=checkbox]+label::before {
    top: 0;
    border-radius: 0;
}
input[type=radio]+label::before {
    border-radius: 50%
}
input[type=radio]+label:empty,
input[type=checkbox]+label:empty {
    width: 22px!important;
    padding-left: 0;
    margin: 0!important;
}
input[type=radio]:checked+label::before,
input[type=checkbox]:checked+label::before {
    background: #425e90;
    border-color: #425e90;
}
.form-group label.error {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    color: #ec1c2a;
    text-align: left;
    overflow: hidden;
    background: #fff;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 1px;
    z-index: 9999;
}
.upload-form .form-group{
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed #425e90;
    cursor: pointer;
}
.upload-form p{
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 170px;
    color: #425e90;
    font-family: Arial;
}
.upload-form input{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}
.upload-form span.hint{
    display: block;
    font-size: 11px;
    font-style: italic;
    color: #505050;
    letter-spacing: 0.5px;
}

/*Radio Buttin Custom
===========================*/
.radio-wrap {
    display: inline-block;
    margin: 0px auto;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
}
.radio-wrap label img{
    display:block;
    max-width: 100px;
}
.radio-wrap label span{
    display: block;
    font-size: 12px;
    margin: 5px auto;
    letter-spacing: 0.5px;
}
.radio-wrap input[type="radio"]:empty, 
.radio-wrap input[type="checkbox"]:empty {
    display: none;
}
.radio-wrap input[type="radio"]:empty ~ label,
.radio-wrap input[type="checkbox"]:empty ~ label {
    position: relative;
    display: block;
    border: 1px solid #f1f1f1;
    line-height: 25px;
    overflow: hidden;
    cursor: pointer;
    padding: 15px 10px 10px;
    text-align: center;
    color: #425e90;
    font-weight: 100;
    font-size: 12px;
    margin: 0 auto!important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.radio-wrap input[type="radio"]:empty ~ label:before, 
.radio-wrap input[type="checkbox"]:empty ~ label:before {
    position: relative;
    display: block;
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #c1c1c1;
    top: 10px;
}
.radio-wrap input[type="radio"]:hover:not(:checked) ~ label,
.radio-wrap input[type="checkbox"]:hover:not(:checked) ~ label ,
.radio-wrap input[type="radio"]:checked ~ label, 
.radio-wrap input[type="checkbox"]:checked ~ label ,
.radio-wrap input[type="radio"]:checked ~ label:before, 
.radio-wrap input[type="checkbox"]:checked ~ label:before{
    background: #f1f1f1;
    color: #425e90;
}

/* Button
==========================*/
.custom-btn {
    display: inline-block;
    position: relative;
    line-height: 40px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 3px;
    padding: 0 15px;
    min-width: 140px;
    border: 0;
    overflow: hidden;
    text-align: center;
    background: #425e90;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    z-index: 9998;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.custom-btn:hover,
.custom-btn:focus {
    color: #fff;
}
.custom-btn:before {
    content: '';
    position: absolute;
    left: -51%;
    top: 0;
    width: 51%;
    background: #384c61;
    height: 100%;
    z-index: -1;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.custom-btn:after {
    content: '';
    position: absolute;
    right: -51%;
    top: 0;
    width: 51%;
    background: #384c61;
    height: 100%;
    z-index: -1;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.custom-btn:hover:before {
    left: 0;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.custom-btn:hover:after {
    right: 0;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

/*Page Heading
==============================*/
.page-heading {
    display: block;
    position: relative;
    text-align: center;
    background-image:url(../images/home-bc.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    padding: 130px 0px 60px;
}
.page-heading:before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 94, 144,.7);
}
.page-heading h2 {
    font-size: 36px;
    display: block;
    position: relative;
    line-height: 40px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin: 0;
    letter-spacing: 3px;
}
.page-heading h2 span{
    display: block;
    font-size: 16px;
    text-transform: lowercase;
    letter-spacing: 0;
}

/*Page Setting
==========================*/
#wrapper {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main {
    display: block;
    position: relative;
    width: 100%;
}
.page-content {
    position: relative;
    display: block;
    width: 100%;
}
.section-setting {
    display: block;
    position: relative;
    width: 100%;
    padding: 70px 0;
    overflow: hidden;
}
.section-color {
    background: #f9f9f9;
}

/*Section title
==========================*/
.section-title {
    display: block;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
.section-title h3 {
    color: #333;
    display: block;
    position: relative;
    font-size: 30px;
    line-height: 35px;
    margin: 10px auto;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title p {
    display: block;
    position: relative;
    font-size: 13px;
    color: #777;
    line-height: 25px;
    letter-spacing: .5px;
    text-transform: lowercase;
    max-width: 767px;
    margin: 0 auto;
}
@media all and (max-width:767px){
    .section-title h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

/* Spacer
==========================*/
.spacer-5 {
    width: 100%;
    height: 5px;
    overflow: hidden;
    clear: both;
    display: block;
}
.spacer-10 {
    width: 100%;
    height: 10px;
    overflow: hidden;
    clear: both;
    display: block;
}
.spacer-15 {
    width: 100%;
    height: 15px;
    overflow: hidden;
    clear: both;
    display: block;
}
.spacer-20 {
    width: 100%;
    height: 20px;
    overflow: hidden;
    clear: both;
    display: block;
}

/* Login-Register
============================*/
.log-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/home-bc.jpg) bottom center;
    background-size: cover;
    overflow: hidden;
    overflow-y: auto;
}
.log-wrap .container-fluid{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    background: rgba(0,0,0,.5);
}
.login-register{
    width: 100%;
    max-width: 440px;
    margin: 0px auto;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    position: relative;
    padding-top: 15px;
}
.big-wide{
    max-width:600px;
}
.login-register .logo{
    display: block;
    position: relative;
}
.login-register .form-box{
    display: block;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 5px;
}
.login-register .form-title{
    text-align: center;
    line-height: 45px;
    border-bottom: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
    margin: 15px auto;
}
.login-register .login-form{
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.login-register .remmeber{
    float: left;
    margin-top: 10px;
}
.login-register .forget-pass {
    float: right;
    color: #6c6b69;
    line-height: 30px;
    margin-top: 5px;
}
.login-register .forget-pass a{
    color: #6c6b69;
}
.login-register .form-group{
    overflow: hidden;
    margin: 0;
    padding: 5px 15px;
}
.login-register .custom-btn{
    margin-bottom: 10px;
}
.login-register .form-group .form-control:hover , 
.login-register .form-group .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;  
       -moz-box-shadow: none;
            box-shadow: none;
}
.login-register .form-footer {
    display: block;
    border-top: 1px solid #f1f1f1;
    overflow: hidden;
    font-size: 14px;
    padding: 10px 10px;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #6c6b69;
}
@media all and (max-width:991px) {
    .auto-scroll {
        overflow-y: auto;
    }
    .login-register .login-register-head {
        display: none;
    }
    .login-form {
        height: auto;
    }
}
@media all and (max-width:420px) {
    .login-form {
        padding: 10px;
    }
    .login-form .remmeber,
    .login-form .forget-pass {
        float: none;
        width: 100%;
        display: block;
        text-align: left;
    }
}
 
/*Loading
============================*/
.loading-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right: 0;
    text-align: center;
    background: rgb(66, 94, 144);
    overflow: hidden;
    z-index: 999999999;
}
.loading-wrap .box {
    position: relative;
    display: block;
    height: 200px;
    width: 100%;
    margin: 300px auto;
}
.loading-wrap .box .icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 10px auto;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .2);
    border-width: 40px;
    border-style: double;
    border-color: transparent #fff;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform-origin: 50% 50%;
       -moz-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation: icon 2s linear infinite;
       -moz-animation: icon 2s linear infinite;        
            animation: icon 2s linear infinite;
}
@-webkit-keyframes icon{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}
@keyframes icon{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

/*Error Page
==========================*/
.error-page{
    padding-top: 50px;
    position: relative;
    text-align: center;
    z-index: 9999;
    display: block;
    width: 100%;
}
.error-page svg{
    font-size: 100px;
    color: #666;
}
.error-page .head-title{
    text-align: center;
    font-size: 100px;
    line-height: normal;
}
.error-page .info-text{
    text-align: center;
    font-size: 25px;
    text-transform: capitalize;
}

/* Header
==========================*/
.header{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgb(0,0,0,.1);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.header.col{
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
    background: rgb(66, 94, 144);
}
.header > .container-fluid {
    position: relative;
    margin-bottom: -80px;
    padding: 0;
}
.header .navbar-collapse > .container-fluid {
    position: relative;
    padding: 0;
    text-align: center;
}
.navbar-collapse.collapse{
    padding:0;
}
.header .logo {
    position: relative;
    float: left;
    display: block;
    margin: 0px auto;
    z-index: 9999;
    background: #fff;
    padding: 5px;
    border-bottom: 2px solid #425e90;
}
.user-icon{
    float: right;
    margin: 0;
    position: relative;
    display: block;
    z-index: 9999;
}
.user-icon > a {
    line-height: 80px;
    padding: 0 15px;
    margin: 0px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    position: relative;
    background: transparent;
    color: #fff;
    border-left: 1px solid rgb(0,0,0,.1);
}
.user-icon > a > svg{
    margin-right:5px;
}
.user-icon > a:hover,
.user-icon > a:focus {
    color:#fff;
    background: rgb(0,0,0,.1);
}
.btn-responsive-nav {
    display: none;
}
.header nav {
    float: none;
    width: 100%;
    text-align: center;
}
@media all and (min-width:992px) {
    .nav-main > ul.navbar-nav{
        float: none;
        text-align: center;
        width: 100%;
    }
    .nav-main > ul.navbar-nav > li{
        display: inline-block;
        float: none;
        margin-left: -5px;
    }
    .nav-main > ul.navbar-nav > li > a {
        line-height: 80px;
        padding: 0 15px;
        margin: 0px;
        font-size: 13px;
        color: #ffffff;
        letter-spacing: 2px;
        border-left: 1px solid rgb(0,0,0,.1);
        text-transform: uppercase;
    }
    .nav>li>a:focus,
    .nav>li>a:hover ,
    .nav-main > ul.navbar-nav > li > a:focus,
    .nav-main > ul.navbar-nav > li:hover > a,
    .nav-main > ul.navbar-nav > li.active > a {
        background: rgb(0,0,0,.1);
        color: #fff;
    }
}
@media all and (max-width:991px) {
    .header {
        clear: both;
    }
    .header ul.navbar-nav {
        float: none;
    }
    .header > .container-fluid {
        margin-bottom: 0;
    }
    .btn-responsive-nav {
        background: transparent;
        top: 0;
        display: block;
        position: absolute;
        right: 0;
        color: #ffffff;
        z-index: 9999;
        font-size: 35px;
        width: 60px;
        height: 80px;
        border-radius: 0;
        border-left: 1px solid rgb(0,0,0,.1);
        -webkit-transition: background ease 0.4s;
        -moz-transition: background ease 0.4s;
        transition: background ease 0.4s;
    }
    .btn-responsive-nav:hover,
    .btn-responsive-nav:active,
    .btn-responsive-nav:focus {
       box-shadow: none;
       color:#fff;
        background: rgb(0,0,0,.1);
    }
    .user-icon{
         margin-right: 60px;
    }
    .header .nav-main-collapse {
        top: -3px;
        position: relative;
        background: #425e90;
        max-height: 300px;
        width: 100%;
        overflow: hidden;
    }
    .header.colored .nav-main-collapse {
        top: -13px;
    }
    .header .nav-main-collapse.collapse {
        display: none !important;
    }
    .header .nav-main-collapse.collapse.in {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        display: block !important;
    }
    .header .nav-main {
        padding: 10px 0;
        clear: both;
        display: block;
        float: none;
        width: 100%;
    }
    .header .nav-main ul li {
        clear: both;
        float: none;
        display: block;
    }
    .nav-main .navbar-nav li a {
        position: relative;
        display: block;
        z-index: 9999;
        overflow: hidden;
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0 15px;
        line-height: 40px;
        letter-spacing: 2px;
    }
    .nav-main .navbar-nav li a:focus {
        background: none;
    }
    .nav-main .navbar-nav li:hover > a,
    .nav-main .navbar-nav li.active > a,
    .nav-main .navbar-nav li.active > a:hover,
    .nav-main .navbar-nav li.open > a,
    .nav-main .navbar-nav li.open > a:hover {
        background: white !important;
        color: #384c61; !important;
    }
    .nav-main > ul.navbar-nav > li > a> svg {
        margin-right: 5px;
    }
}
@media all and (max-width:380px){
    .header .logo {
        width: 150px;
        padding: 12px 5px;
        border-bottom: 0;
    } 
    .user-icon {
        margin-right: 50px;
    }
    .user-icon > a{
        width: 50px;
        height: 80px;
    }
    .user-icon > a >svg{
        font-size: 22px;
        display: block;
        line-height: 80px;
        text-align: center;
        width: 100%!important;
        height: 80px;
    }
    .user-icon > a >span{
        display: none;
    }
    .btn-responsive-nav{
        font-size: 20px;
        width: 50px;
    }
}

/*Footer
======================*/
.footer{
    display: block;
    position: relative;
    width: 100%;
    padding: 45px 0px 20px;
    background: #425e90;
}
.footer .widget .widget-content{
    font-size: 12px;
    line-height: 25px;
    color: #fff;
}
.footer .widget .widget-title {
    display: block;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 30px;
    text-transform: capitalize;
}
.footer .subacribe-wrap{
    display:block;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    padding: 25px 5px;
    margin-top: -90px;
    margin-bottom:30px;
}
.footer .subacribe-wrap .title {
    text-transform: uppercase;
    display: block;
    font-size: 20px;
    color: #425e90;
    position: relative;
    line-height: 30px;
    margin: 5px 0px;
    letter-spacing: 2px;
}
.footer .subacribe-wrap p{
    color: #425e90;
    margin: 5px 0px;
    font-size: 13px;
    letter-spacing: .5px;
}
.footer .subacribe-wrap .subscribe-form{
    overflow: hidden;
    position: relative;
    display: block;
}
.subscribe-form .form-group .form-control{
    display: block;
    margin: 0;
    background: #f9f9f9;
}
.subscribe-form .form-group .icon-btn {
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    background: #e6c412;
    border: 0;
    margin: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    font-size: 20px;
} 
.subscribe-form .form-group .icon-btn:hover {
    background:#425e90;
}
.footer .dot-lists li{
    display: inline-block;
    width: 48%;
    padding-left: 15px;
}
.footer .dot-lists li a{
    display: block;
    position: relative;
    font-size: 13px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.footer .dot-lists li:before{
    width: 5px;
    height: 5px;
}
.footer .dot-lists li a:hover{
    transform: translateX(3px);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.footer .address span{
    display: block;
}
.footer .address span.email{
    color: #2749c9;
    font-size: 14px;
}
.footer .share{
    padding: 5px 0px;
}
.footer .share li{
    display: inline-block;
}
.footer .share li a{
    font-size:17px;
    color: #425e90;
    padding:0;
    line-height: 35px;
    text-align: center;
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.footer .share li a:hover{
    color:#fff;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.footer .share li.face a:hover{
    background:#454c98;
}
.footer .share li.twitt a:hover{
    background:#65a2ea;
}
.footer .share li.linked a:hover{
    background:#0077b5;
}
.footer .share li.google a:hover{
    background:#e20909;
}
@media all and (max-width:380px){
    .subscribe-form .form-group .form-control, .subscribe-form .form-group .icon-btn{
        width:100%;
        position: relative;
    }
}

/* Copy Rights
====================*/
.copyrights{
    text-align: center;
    color: #fff;
    background: #425e90;
    font-size: 12px;
    word-spacing: 1px;
    line-height: 30px;
    padding: 5px 0px;
    border-top: 1px solid #3c5582;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* Side Help
======================*/
.side-help{
    display: block;
    margin-bottom: 15px;
    background: #fff;
    padding: 20px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 35px;
}
.side-help img{
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}
.side-help span{
    display: block;
    color: #425e90;
    text-transform: lowercase;
}

/*Welcome Home 
==========================*/
.welcome-home {
    position: relative;
    min-height: 635px;
    overflow: hidden;
    background: url(../images/map.png) center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 140px;
}
.welcome-home .head-title{
    display: block;
    position: relative;
    color:  #fff;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0px;
}
.welcome-home .info-text{
    display: block;
    position: relative;
    line-height: 35px;
    font-size: 18px;
    color: #d4d4d4;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 10px 0px;
}
.welcome-home .custom-btn{
    background: #384c61;
    margin: 10px 0px;
}
.welcome-home .custom-btn:before ,
.welcome-home .custom-btn:after{
    background: #314254;
}
@media all and (max-width: 991px){
    .welcome-home{
        padding-top: 100px;
    }
    .wel-home-img img{
        max-height: 320px;
        margin-bottom: 10px;
    }
}
@media all and (max-width: 767px){
    .wel-home-img img{
        display: none;
    }
    .welcome-home{
        min-height:auto;
    }
}
@media all and (max-width: 480px){
    .welcome-home .head-title{
        font-size: 26px;
        line-height: 34px;
        margin: 10px auto;
    }
    .welcome-home .info-text{
        font-size: 15px;
        line-height: 20px;  
    }
}

/* Domain
=======================*/
.pattern{
    background:url(../images/pattern-dark.png) repeat center center;
}
.domain-head{
    margin: 5px auto;
}
.domain-head .title{
    text-transform: uppercase;
    display: block;
    font-size: 20px;
    color: #425e90;
    position: relative;
    line-height: 30px;
    margin: 5px 0px;
    letter-spacing: 2px;
}
.domain-head p{
    color: #425e90;
    margin: 5px 0px;
    font-size: 13px;
    letter-spacing: .5px;
}
.domain-form{
    margin: 25px auto;
}
.domain-form .form-group{
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}
.domain-form .form-group .form-control{
    width: 50%;
    float: left;
}
.domain-form .form-group .form-control:nth-child(2){
    width: 24%;
    padding: 0 5px;
    border-left: 0;
}
.domain-form .form-group .custom-btn{
    width: 25%;
    float: left;
    border-radius: 0;
    line-height: 45px;
}
@media all and (max-width: 580px){
    .domain-form .form-group .form-control{
        width: 70%;
    }
    .domain-form .form-group .form-control:nth-child(2){
        width: 30%;
    }
    .domain-form .form-group .custom-btn{
        width: 100%;
    }
}
@media all and (max-width: 320px){
    .domain-form .form-group .form-control,
    .domain-form .form-group .form-control:nth-child(2),
    .domain-form .form-group .custom-btn{
        width: 100%;
        margin: 2px auto;
        border:1px solid #f1f1f1;
    }
}

/* About
========================*/
.about-img img{
    margin: -10px auto;
}
.about-content .head-title{
    display: block;
    position: relative;
    color: #e6c412;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0px 20px;
}
.about-content .info-text{
    display: block;
    position: relative;
    line-height: 25px;
    font-size: 14px;
    color: #777;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 15px 0px;
    max-width: 590px;
}
@media all and (max-width:380px){
    .about-content{
        margin-bottom: 10px;
    }
    .about-content .head-title{
        font-size: 20px;
        line-height: 30px;
        margin: 5px auto;
    }
    .about-content .info-text{
        font-size: 12px;
        max-width: 100%;
        margin: 5px auto;
    }
}

/* Features
=======================*/
.feat-item {
    display: block;
    position: relative;
    text-align: center;
    margin: 15px auto;
    padding: 15px;
    background: #fff;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.17);
}
.feat-item .feat-icon  {
    float: left;
    position: relative;
    margin: 5px auto;
    height: 64px;
    width: 64px;
    transition: 0.5s all;
    background: #fff;
    border-radius: 50%;
}
.feat-item .feat-icon img{
    transition:0.5s all;
}
.feat-item .feat-content {
    padding: 0 0 0 80px;
    display: block;
    position: relative;
    margin: 5px auto;
    text-align: left;
}
.feat-item .feat-content h3{
    color: #425e90;
    display: block;
    position: relative;
    font-size: 17px;
    line-height: 30px;
    margin: 0px auto 5px;
}
.feat-item .feat-content p{
	margin: auto;
	font-size: 12px;
	color: #474c62;
	line-height: 25px;
}
.feat-head-img img{
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.17);
    height: 530px;
    width: 100%;
}

/* Price Table  
=================================*/
.hosting-table {
    display: block;
    position: relative;
    padding: 0;
    border: 1px solid #f1f1f1;
    width:100%;
    margin: 15px auto;
}
.hosting-table .hosting-icon{
    position: absolute;
    left: 20px;
    top: -37px;
    width: 64px;
    height: 64px;
    padding: 6px;
}
.hosting-table .hosting-icon:before{
    content:" ";
    position: absolute;
    background: #e6c412;
    width: 74px;
    height: 74px;
    padding: 5px;
    transform: rotate(45deg);
    left: 0;
    top: 0;
}
.hosting-table .hosting-icon img{
    position: relative;
    margin: 5px;
    padding: 1px;
}
.hosting-table .hosting-heading {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background: #425e90;
}
.hosting-table .hosting-heading .price {
    font-style: normal;
    color: #ffffff;
    border-radius: 50%;
    display: block;
    font-size: 28px;
    padding: 15px;
    text-align: right;
    letter-spacing: 1px;
}
.hosting-table .hosting-heading .price span {
    display: block;
    text-align: right;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 5px;
}
.hosting-table .hosting-heading h3 {
    display: block;
    margin: 0;
    line-height: 50px;
    color: #e6c412;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    border-top: 1px solid #425971;
}
.hosting-table .hosting-heading .custom-btn{
    background: #fff;
    color: #3373de;
}
.hosting-table .hosting-features {
    display: block;
    position: relative;
    overflow: hidden;
}
.hosting-table .hosting-features .title {
    display: block;
    position: relative;
    color: #171616;
    font-size: 17px;
    font-weight: 600;
    margin-bottom:20px;
}
.hosting-table .hosting-features li {
    line-height: 50px;
    margin: 0;
    padding: 0px 15px;
    font-size: 14px;
    color: #4a647f;
    border-bottom: 1px solid #f1f1f1;
    text-transform: capitalize;
    letter-spacing: 1px;
    background: #fff;
}
.hosting-table .hosting-features li:last-child{
    border-bottom: 0;
}
.hosting-table .hosting-features .custom-btn {
    display: block;
    margin: 0;
    color:#fff;
    width: 100%;
    border-radius: 0;
    line-height: 50px;
}
.table-active .hosting-heading h3{
    color: #425e90;
    border-top-color: #c7aa10;
    background: #e6c412;
}
@media all and (min-width:992px) and (max-width:1200px){
    .hosting-table .hosting-heading .price{
        font-size: 20px;
    }
    .hosting-table .hosting-features li{
        font-size: 12px;
        letter-spacing: .5px;
    }
}
@media all and (max-width:991px){
    .hosting-table{
        margin-top: 60px;
    }
}

/* Testmonia Shap 1
============================*/
.opinion-box {
    display: block;
    width: 100%;
    margin: 5px;
    padding: 25px;
    overflow: hidden;
    background: #f9f9f9;
}
.opinion-box .opinion-img {
    position: relative;
    float: left;
    width: 115px;
    height: 115px;
    
}
.opinion-box .opinion-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.opinion-box .opinion-details {
    position: relative;
    display: block;
    float: left;
    text-align: left;
    padding-top: 10px;
}
.opinion-box .opinion-details p {
    text-transform: capitalize;
    line-height: 25px;
    font-size: 16px;
}
.opinion-box .opinion-details h6 {
    color: #e6c412;
    font-size: 13px;
    letter-spacing: 1px;
}
@media all and (max-width: 767px) {
    .opinion-box {
        padding: 5px 10px;
        margin: 0px;
    }
    .opinion-box .opinion-img {
        float: inherit;
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .opinion-box .opinion-details {
        width: 100%;
        text-align: center;
        padding-left: 10px;
    }
    .opinion-box .opinion-details p {
        line-height: 25px;
        font-size: 13px;
    }
}
@media all and (min-width: 768px) and (max-width: 991px) {
    .opinion-box {
        margin: 0px;
        padding: 5px 10px;
       
    }
    .opinion-box .opinion-details {
        padding-left: 10px;
    }
}

/*FAQS
==============================*/
.faqs-wrap .toggle-container {
    border: none;
}
.inner-faqs .toggle-container{
    margin:15px auto;
}
.faqs-wrap .toggle-container .panel {
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    position: relative;
    background: #f6f6f6;
}
.faqs-wrap .toggle-container .panel .panel-content {
	padding: 10px;
}
.faqs-wrap .toggle-container .panel {
    position: relative;
	margin-bottom: 15px;
    background-color: transparent;
    border: none;
    overflow: hidden;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}
.faqs-wrap .toggle-container .panel > a {
    color: #fff;
    font-size: 14px;
    position: relative;
    white-space: normal;
    display: block;
    padding: 10px 15px;
    line-height: 24px;
    background: #e6c412;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.faqs-wrap .toggle-container .panel > a:before {
    display: block;
    content: " + ";
    line-height: 20px;
    font-size: 20px;
    float: right;
    width: 24px;
    height: 24px;
    text-align: center;
    color: #425e90;
    background: #f9f9f9;
    transition: all 0.4s ease;
}
.faqs-wrap .toggle-container .panel > a.collapsed {
    background: #ffffff;
    border-left: 3px solid #425e90;
    color: #425e90;
}
.faqs-wrap .toggle-container .panel > a.collapsed:before {
    content: " - ";
    color: #425e90;
    background: #f9f9f9;
}
.faqs-wrap .toggle-container .panel .panel-content {
    padding: 10px;
    line-height: 25px;
    background: #ffffff;
    font-size: 12px;
}

.inner-faqs .toggle-container .panel .panel-content ,
.inner-faqs .toggle-container .panel > a.collapsed{
    background: #f1f1f1;
}

/* Contact Info
===========================*/
.contact-wrap .section-title{
    text-align: left;
    margin-bottom: 15px;
}
.contact-info{
    text-align: center;
    background: #f9f9f9;
    padding: 15px 25px;
    margin: 3px auto;
}
.contact-info svg{
    display: block;
    margin: 5px auto;
    font-size: 30px;
    color: #425e90;
}
.contact-info span.head{
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #425e90;
	margin-top: 10px;
	font-size: 15px;
}
.contact-info span{
    display: block;
    margin: 5px auto;
    font-size: 14px;
    letter-spacing: 1px;
}
/*Category
===========================*/
.side-filter{
    display: block;
    position: relative;
    -webkit-transition: .3s all;
       -moz-transition: .3s all;
            transition: .3s all;
}
.side-filter .panel {
    margin-bottom: 15px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;
}
.side-filter .panel h4.panel-title {
    background: #425e90;
    line-height: 40px;
    color: #ffffff;
    padding: 0 15px;
    text-transform: capitalize;
}
.side-filter .panel h4.panel-title a{
    display: block;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: left;
}
.side-filter .panel .panel-title > a:before {
    position: absolute;
    content: " + ";
    line-height: 35px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    right: 0;
    background: #e6c412;
    color: #fff;
    font-weight: 100;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.side-filter .panel .panel-title > a.collapsed:before {
    content: " - ";
}
.side-filter .panel .panel-content .form-group{
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}
/* Price Range
========================*/
.widget-range {
    position:relative;
    display: block;
    margin: 10px;
}
.widget-range input {
    border:0;
    color: #425e90;
    background: none;
    margin-bottom: 5px;
}
.ui-slider-horizontal {
    height: 0;
    margin-top: 5px;
}
.ui-slider-horizontal .ui-slider-range {
    top: -3px;
    height: 100%;
    height: 0;
    border: 3px solid #e6c412;
    border-radius: 0;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    top: -7px;
    z-index: 2;
    width: 12px;
    height: 12px;
    cursor: default;
    background: #425e90;
    border: none;
    border-radius: 0;
    transform: rotate(45deg);
}
.widget-range .first_limit,
.widget-range .last_limit {
    width: 90px;
    text-align: left;
    float: left;
    margin-bottom: 4px;
}
.widget-range .last_limit {
    float: right;
    text-align: right;
}
.domain-item{
    display: block;
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 15px;
    margin-bottom: 15px;
}
.domain-item .domain-head{
    display: block;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: left;
}
.domain-item .price{
    display: block;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: left;
    text-transform: capitalize;
    color: #e6c412;
}
.domain-item .price span{
    margin-left: 3px;
}
.domain-item .custom-btn{
    position: absolute;
    top: 25px;
    right: 15px;
}
@media all and (max-width:480px){
    .domain-item .custom-btn{
        position:relative;
        top:0;
        left:0;
        line-height: 30px;
        margin: 5px auto;
    }
}


/*Only Hosting 
================================*/
.only-host-icon {
    background: #425e90;
    border-radius: 0;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 15px auto;
    padding: 15px;
}
.only-host-icon h3{
    display: block;
    position: relative;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #ffffff;
    margin: 10px auto 0px;
    letter-spacing: 1px;
}
.only-host-cont{
    position: relative;
    text-align: left;
}
.only-host-cont h3 {
    color: #425e90;
    display: block;
    position: relative;
    line-height: 40px;
    font-size: 23px;
    margin: 10px auto 0px;
    letter-spacing: 2px;
}
.only-host-cont p {
    display: block;
    position: relative;
    margin: 0;
    line-height: 30px;
    font-size: 14px;
    color: #777;
    max-width: 700px;
}
.host .dot-lists li {
    display: block;
    position: relative;
    padding-right:25px;
    line-height: 35px;
    color: #777;
}
/* Price Table  
=================================*/
.offer-table {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 15px auto;
    background: #fff;
    width:100%;
}
.offer-table .offer-heading {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    border: 1px solid #f9f9f9;
    color:#4b4d54;
    text-align: center;
    font-size: 21px;
    background: #ffffff;
}
.offer-table .offer-heading i:before{
    display: block;
    position: relative;
    line-height: 40px;
    font-size: 70px;
    color: #fff;
    margin:25px auto;
}
.offer-table .offer-heading .price {
    background: #425e90;
    color: #ffffff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 10px;
    font-size: 22px;
    padding: 35px 0px;
}
.offer-table .offer-heading .price span {
    display: inline-block;
    text-align: center;
    font-size: 35px;
}
.offer-table .offer-heading h3 {
    display: block;
    line-height: 35px;
    color: #425e90;
    text-transform: uppercase;
    font-size: 17px;
    margin: 5px auto;
}
.offer-table .offer-heading .custom-btn{
    background: #fff;
    color: #3373de;
}
.offer-table .offer-features {
    display: block;
    position: relative;
    overflow: hidden;
    border-top: 0;
}
.offer-table .offer-features .title {
    display: block;
    position: relative;
    color: #171616;
    font-size: 17px;
    font-weight: 600;
    margin-bottom:20px;
}
.offer-table .offer-features .title:after {
    content: " ";
    position: absolute;
    bottom: -17px;
    left: 40%;
    right: 40%;
    width: 20%;
    height: 3px;
    background: #171616;
    margin: 0 auto;
    text-align: center;
}
.offer-table .offer-features li {
    line-height: 45px;
    margin: 0;
    padding: 0px 10px;
    font-size: 13px;
    color: #3a3a3a;
    border-bottom: 1px solid #f9f9f9;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.offer-table .offer-features li:last-child{
    border-bottom: 0;
}
.offer-table .offer-features .custom-btn {
    display: block;
    padding: 0 15px;
    color:#fff;
    background: #e6c412;
    width: 100%;
    border-radius: 0;
    line-height: 50px;
    letter-spacing: 2px;
}

/*Order
=======================*/
.order-wrap {
    margin-bottom:15px;
}
.order-wrap .order-title{
    background: #fff;
    display: block;
    width: 100%;
    position: relative;
    line-height: 50px;
    color: #425e90;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #f1f1f1;
    border-left: 3px solid #425e90;
}
.order-wrap .order-cont{
    border: 1px solid #f1f1f1;
    overflow: hidden;
    background: #fff;
    border-top: 0;
}
.order-wrap .order-cont .form-group .form-control{
    margin: 5px auto;
}
.order-wrap .order-cont .custom-btn{
    vertical-align: top;
    margin-bottom: 20px;
}
.order-details{
    background: #fff;
    padding: 15px;
}
.order-details .title{
    font-size: 20px;
    display: block;
    position: relative;
    line-height: 40px;
    text-transform: uppercase;
    color: #425e90;
    margin: 0;
    letter-spacing: 3px;
}
.order-details .order-feat{
    padding-left: 15px;
}
.order-details .order-feat span{
    font-size: 16px;
    display: block;
    position: relative;
    line-height: 40px;
    text-transform: capitalize;
    color: #e6c412;
    margin: 0;
    letter-spacing: 3px;
}
.order-details .order-feat .dot-lists li{
    color: #555;
}
.bill h3 {
    margin: 0 auto 15px;
    display: block;
    line-height: 50px;
    font-size: 21px;
    color: #425e90;
    padding: 0 15px;
    background: #ffffff;
    letter-spacing: 1px;
}
.bill ul li {
    position: relative;
    text-align: left;
    padding: 0 10px;
    overflow: hidden;
    line-height: 50px;
    font-size: 14px;
    text-transform: capitalize;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    letter-spacing: 1px;
}
.bill ul li span {
    float: right;
    color: #252525;
    border-left: 1px solid #f9f9f9;
    padding: 0 10px;
    min-width: 80px;
    font-size: 13px;
    text-align: right;
}

.bill ul li:last-child {
    border-bottom: 0;
    background: #425e90;
    color: #fff;
}
.bill ul li:last-child span{
    color:#fff;
}
/*Profile
=====================*/
.profile-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #f4f4f4;
    margin-bottom: 15px;
}
.profile-card .profile-img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 5px auto;
    border: 5px solid #f1f1f1;
}
.profile-card .profile-img img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.profile-card .profile-name {
    display: block;
    position: relative;
    line-height: 25px;
    font-size: 18px;
    color: #425e90;
    text-align: center;
    margin: 10px auto;
}
.profile-card .profile-menu ul {
    display: block;
    position: relative;
    padding: 0;
}
.profile-card .profile-menu ul li a {
    display: block;
    position: relative;
    color: #1a1a1a;
    border-top: 1px solid #f4f4f4;
    padding: 0;
    line-height: 45px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 10px;
}
.profile-card .profile-menu ul li a svg{
    font-size: 15px;
    color: #e6c412;
    line-height: 45px;
    text-align: center;
    margin-right: 5px;
}
.profile-card .profile-menu ul li.active a, 
.profile-card .profile-menu ul li:hover a {
    color: #ffffff;
    background: #425e90;
}
.profile-card .profile-menu ul li.active a svg, 
.profile-card .profile-menu ul li:hover a svg{
    color: #fff;
}
.profile-content .title{
    border: 1px solid #f1f1f1;
    line-height: 45px;
    padding: 0 15px;
    font-size: 16px;
    color: #425e90;
    margin-bottom: 15px;
    border-left: 3px solid #e6c412;
}
.profile-content .custom-btn{
	margin:10px auto;
}
.step-content{
    border: 1px solid #f1f1f1;
    padding: 15px;
    display: block;
    overflow: hidden;
    background: #fff;
}
.step-content .form-group{
    margin-bottom: 10px;
    padding: 0 10px;
}
.step-content .form-control{
    border-radius:0;
}
.step-content .img-block {
    padding: 0;
    margin: 10px auto;
    display: block;
    width: 100%;
    background: #f4f4f4;
    padding: 15px;
}
.step-content .img-block img {
    margin-bottom: 5px;
    height: 150px;
    background: #fff;
    padding: 10px;
}
.step-content .img-block .custom-file-upload {
    cursor: pointer;
    display: block!important;
    height: 35px;
    line-height: 35px;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    font-size: 11px;
    min-width: 100px;
}
.step-content .img-block input[type="file"] {
    display: none;
}
.upload-img-hint{
    margin-top: 5px;
}
.upload-img-hint li.head{
    font-weight: 600;
    font-size: 13px;
}
.upload-img-hint li{
    display: block;
    line-height:25px;
    font-size: 12px;
}
.step-content label.inline{
    display: inline-block;
    line-height: 25px;
    vertical-align: top;
}
.order-item{
    display: block;
    position: relative;
    margin: 10px auto;
    border: 1px solid #f1f1f1;
    padding: 0;
}
.order-item .order-item-title{
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 50px;
    background: #fdfdfd;
    color: #425e90;
    padding: 0 15px;
    letter-spacing: 1px;
}
.order-item .order-item-info{
    display: block;
    line-height: 25px;
    padding: 10px 15px;
    overflow: hidden;
    border-top: 1px solid #f1f1f1;
    font-size: 13px;
    text-transform: capitalize;
}
.order-item .order-item-info span{
	display:block;
	color: #e6c412;
}
/*up-btn 
===========================*/
.up-btn {
    display: none;
    position: fixed;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 40px;
    padding: 5px;
    overflow: hidden;
    background: #e6c412;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
}
.up-btn img{
    text-align: center;
    cursor: pointer;
    width: 10px;
}
.up-btn:hover{
    background: #e6c412;
}
.support{
    position: fixed;
    bottom: 5px;
    left: 5px;
    padding: 0 15px;
    border-radius: 50px;
    background: #425e90;
    height: 67px;
    z-index: 9998;
    overflow: hidden;
}
.support .phone-icon{
    position: relative;
    background: #ffffff;
    width: 60px;
    height: 60px;
    display: inline-block;
    padding: 12px;
    text-align: center;
    text-transform: inherit;
    overflow: hidden;
    border-radius: 50%;
    margin: 3px 0px 0 -10px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.support .phone-icon:before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(0 ,0 ,0 , .09);
    border-left-color: #cacaca;
    -webkit-animation: loader2 3s linear infinite;
    -moz-animation: loader2 3s linear infinite;
    animation: loader2 3s linear infinite;
}
.support .phone{
    display: inline-block;
    position: relative;
    line-height: 64px;
    font-size: 13px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 2px;
    vertical-align: top;
}
@keyframes loader2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader2 {
  0% {
      -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}


/* Scroll
============================*/
::-webkit-scrollbar {
    width: 3px;
}
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow:none; 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background:#e6c412; 
    -webkit-box-shadow:none; 
}
::-webkit-scrollbar-thumb:window-inactive {
  background:#e6c412; 
}

.welcome-home .head-title{
    opacity: 0;
    animation-delay: .4s;  
}
.welcome-home .info-text{
    opacity: 0;
    animation-delay: .6s;  
}
.welcome-home .dot-lists{
    opacity: 0;
    animation-delay: .8s;  
}
.welcome-home a.custom-btn{
    opacity: 0;
    animation-delay: 1.1s;  
}
.wel-home-img{
    opacity: 0;
    animation-delay: 1.2s;  
}
.support{
    opacity: 0;
    animation-delay: 1.4s;  
}
.animated{
    opacity: 1!important;
    visibility: visible!important;
}