/* General
======================*/
*,
:focus {
    outline: 0!important;
}
body {
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

/* Lists- Links
======================*/
a,a:hover,a:focus {
    text-decoration: none;
}
ul,li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Tab
=======================*/
.tab-wrapper {
    margin: 0px auto;
    background: #fff;
    overflow: hidden;
    padding: 0 10px;
}
@media all and (max-width:767px) {
    .tab-wrapper {
        margin-bottom: 15px
    }
}
.nav-tabs {
    border-bottom: 0;
    background: #f9f9f9
}
.nav-tabs>li {
    float: right;
    margin: 0
}
.nav-tabs>li>a {
    margin: 0;
    line-height: 40px;
    border: none;
    border-radius: 0;
    padding: 0 30px;
    color: #232333;
    background: #f9f9f9;
    border-left: 1px solid #e8e8e8;
    font-size: 12px;
    font-weight: 600;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li>a:focus,
.nav-tabs>li>a:hover {
    color: #efa000;
    background: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
}
.tab-content {
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-top: 0;
    overflow: hidden
}
.tab-content p {
    line-height: 25px;
    font-size: 12px;
    padding: 10px 15px;
    text-align: justify;
    margin: 0
}
.tab-content-title {
    line-height: 25px;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 600;
    color: #efa000;
}
.tab-content li {
    line-height: 30px;
    font-size: 13px;
    display: inline-block;
}
.full-wid{
    background:transparent;
}
.full-wid li{
    width: 50%;
    text-align: center;
}
.full-wid li a{
    background: #efa000;
    border:0;
}
.full-wid .tab-content{
    background: #fbfbfb;
    border: 0;
}

/* img
==========================*/
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Forms
======================*/
.form-group {
    position: relative;
    overflow: hidden;
    margin: 10px auto;
}
.form-grouplabel {
    display: block;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    margin: 0 0 10px 0;
    color: #121212;
    letter-spacing: 1px;
}
.form-control {
    color: #343434;
    border: 1px solid #f1f1f1;
    margin: 0 auto;
    padding: 0px 15px;
    height: 45px;
    font-weight: 400;
    line-height: 45px;
    background-color: #fff;
    border-radius: 0;
    font-size: 13px;
    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-right: 28px;
    cursor: pointer;
    margin: 0;
}
input[type=radio]+label::before,
input[type=checkbox]+label::before {
    content: "";
    display: block;
    text-align: center;
    position: absolute;
    right: 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: #009e32;
    border-color: #009e32;
}

/* Button
========================*/
.custom-btn {
    display: inline-block;
    position: relative;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 0;
    padding: 0 20px;
    min-width: 100px;
    border: 0;
    overflow: hidden;
    z-index: 999;
    text-align: center;
    background: #343434;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -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: -52%;
    top: 0;
    width: 50%;
    background: #f8a930;
    height: 100%;
    border-radius: 0;
    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: #f8a930;
    height: 100%;
    border-radius: 0;
    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;
}

/* Pagention
=============================*/
.pagination {
    display:block;
    text-align: center;
    margin: 0px auto;
    border-radius: 0px;
    overflow: hidden;
}
.pagination>li>a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 5px;
    padding:0;
    border-radius: 5px!important;
    background: #343434;
    color: #fff;
    border: none;
    font-family: sans-serif;
    font-weight: 600;
}
.pagination>li>a:hover,
.pagination>li>a:focus ,
.pagination>li.active>a ,
.pagination>li.active>a:hover ,
.pagination>li.active>a:focus{
    font-family: sans-serif;
    cursor:pointer;
    color: #fff;
    background-color: #f9a702;
}
.pagination > li:last-child > a{
    margin: 5px 0;
}

/* Page Setting
======================*/
#wrapper {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main {
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #f1f1f1;
}
.page-content {
    position: relative;
    display: block;
    width: 100%;
}
.section-setting{
    display: block;
    position: relative;
    padding: 70px 0px;
}
.section-color{
    background: #fbfbfb;
}
.owl-carousel .owl-wrapper-outer{
    direction: ltr;
}
.spacer-20{
    height: 20px;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Text
========================*/
.head-title{
    font-size: 19px;
    color: #e4af0f;
    line-height: 35px;
    padding: 10px 0px 0;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-text{
    color: #555;
    font-size: 14px;
    line-height: 30px;
    display: block;
    margin: 5px auto;
}
.dot-lists{
    overflow:hidden;
    text-align: right;
    margin-top: 10px;
}
.dot-lists li{
    padding-right: 20px;
    line-height: 35px;
    color: #343434;
    font-size: 14px;
    text-align: right;
    position: relative;
}
.dot-lists li:before{
    content: " ";
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    background: #f8a930;
}

/*Page Heading
================================*/
.page-heading {
    display: block;
    position: relative;
    text-align: center;
    background: url(../images/slider.jpg) center;
    width: 100%;
    overflow: hidden;
    padding: 70px 0px;
    background-attachment: fixed;
}
.page-heading:before{
    content: " ";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    top:0;
    left:0;
}
.page-heading h2 {
    font-size: 36px;
    margin: 0;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
}
.page-heading .breadcrumb {
    background: none;
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
    line-height: 40px;
}
@media (min-width: 992px) {
    .page-heading .breadcrumb {
        text-align: center;
    }
}
@media (max-width: 991px) {
    .page-heading {
        text-align: center;
        overflow: hidden;
    }
    .page-heading h2{
        font-size: 22px;
    }
}
.page-heading .breadcrumb > li + li:before {
    padding:0px 15px;
    color: #fff;
}
.page-heading .breadcrumb li ,
.page-heading .breadcrumb a {
    color: #f7f7f7;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.page-heading .breadcrumb a i{
    margin-right:5px;
}
.page-heading .breadcrumb > .active {
    color: #fff;
}

/*Section title
========================*/
.section-title{
    display: block;
    position: relative;
    margin-bottom: 25px;
    text-align: center;
    margin: 15px auto;
}
.section-title h3{
    display: block;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
    color: #13141a;
    margin: 0;
    line-height: 35px;
}
.section-title .border{
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 15px auto;
    background: #343434;
}
.section-title .border:before ,.section-title .border:after{
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    left: -30px;
    right: auto;
    top: 0;
    margin: auto;
    background: #f8a930;
}
.section-title .border:after{
    right: -30px;
    left: auto;
}
.section-title p {
    display: block;
    position: relative;
    font-size: 13px;
    color: #7d7d7d;
    line-height: 25px;
    max-width: 991px;
    margin: 10px auto;
}

/*Top Header
==========================*/
.top-header{
    position: relative;
    height: 50px;
    width: 100%;
    text-align: center;
}
.top-header .top-contact{
    height: 50px;
    background: #f8a930;
    color: #fff;
    position: relative;
}
.top-header .top-contact:before{
    content:" ";
    position:absolute;
    width: 20px;
    height: 100%;
    background: #fff;
    left: -10px;
    top: 0px;
    transform: skewX(-20deg);
    z-index: 9999;
}
.top-header .top-contact li{
    display: inline-block;
    font-size: 16px;
    direction: ltr;
    line-height: 50px;
    margin-left: 20px;
    letter-spacing: 0.5px;
}
.top-header .top-contact li svg{
    width: 35px;
    height: 35px;
    padding: 8px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    float: right;
    margin: 6px 0px 5px 5px;
}
.top-header .top-contact:after{
    content:" ";
    position:absolute;
    width: 20px;
    height: 40px;
    background: #e4af0f;
    left: -4px;
    top: 0;
    transform: skewX(-10deg);
    z-index: 9999;
    display: none;
}
.top-header .social-icons{
    background: #343434;
    height: 50px;
    padding: 7px 15px;
}
.social-icons li{
    display: inline-block;
}
.social-icons li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display:block;
    font-size: 14px;
    text-align: center;
    background: #f9a702;
    color: #fff;
}
.social-icons li a:hover{
    background:#de9604;
}

/*Header
===========================*/
.header{
    min-height: 80px;
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-bottom: 1px solid #f9f9f9;
}
.header > .container {
    position: relative;
}
.header .navbar-collapse > .container {
    position: relative;
    margin-top: -80px;
}
.header nav .navbar-nav{
    float: none !important;
    text-align: center;
    padding: 20px 0px;
    display: block;
}
.header .logo {
    position: relative;
    margin: 0 auto;
    z-index: 9999;
    background: #fff;
    float: right;
    display: block;
    padding: 10px;
    height: 80px;
    width: 200px;
}
.header .logo img{
    height: 100%;
}
.header .user-icon{
    position: relative;
    float: left;
    padding: 20px 0px;
    z-index: 9999;
}
.header .user-icon a{
    display: inline-block;
    position: relative;
    line-height: 40px;
    color: #343434;
    font-weight: 600;
    font-size: 11px;
}
.header .user-icon a svg{
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #f8a930;
    color: #fff;
    display: inline-block;
    padding: 6px;
    margin: 5px 0px 0px 5px;
    vertical-align: middle;
}
.btn-responsive-nav {
    display: none;
}
@media all and (min-width:992px) {
    .nav-main > ul.navbar-nav > li {
        float: none;
        display: inline-block;
    }
    .nav-main > ul.navbar-nav > li > a {
        line-height: 40px;
        padding: 0px 10px;
        margin: 0px auto;
        font-size: 12px;
        font-weight: 600;
        color: #13141a;
        position:relative;
        z-index:99;
    }
    .nav-main > ul.navbar-nav > li > a:before ,
    .nav-main > ul.navbar-nav > li > a:after {
        content: " ";
        position:absolute;
        width: 0;
        height: 2px;
        background: #f8a930;
        top: 0;
        right: 0;
        transition:.4s all;
    }
    .nav-main > ul.navbar-nav > li.active > a:before ,
    .nav-main > ul.navbar-nav > li.active > a:after ,
    .nav-main > ul.navbar-nav > li > a:hover:before ,
    .nav-main > ul.navbar-nav > li > a:hover:after{
        width:40px;
        transition:.4s all;
    }
    .nav-main > ul.navbar-nav > li > a:after{
        left:0;
        right:auto;
        bottom:0;
        top:auto;
    }
    .nav-main > ul.navbar-nav > li > a> svg {
        display: block;
        margin: 5px auto;
        text-align: center;
        font-size: 18px;
        color: #e4af0f;
        display: none;
    }
    .nav > li > a:hover,
    .nav > li > a:focus ,
    .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: transparent;
        color: #13141a;
    }
}
@media (max-width: 1200px) and (min-width: 992px){
    .header nav .navbar-nav{
        margin-right: -30px;
    }
    .nav-main > ul.navbar-nav > li > a {
        padding: 0 5px;
    }
}
@media all and (max-width:991px) {
    .header .navbar-collapse > .container{
        margin:0;
    }
    .btn-responsive-nav {
        background: transparent;
        top: 20px;
        display: block;
        position: absolute;
        left: 15px;
        color: #ffffff;
        z-index: 9999;
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 0;
        transform: skewX(-20deg);
        -webkit-transition: background ease 0.4s;
        -moz-transition: background ease 0.4s;
        transition: background ease 0.4s;
    }
    .btn-responsive-nav span{
        width: 100%;
        height: 3px;
        background: #f8a930;
        display: block;
        margin: 7px auto;
    }
    .btn-responsive-nav:hover,
    .btn-responsive-nav:active,
    .btn-responsive-nav:focus {
        background: #ffffff;
        box-shadow: none;
    }
    .btn-responsive-nav:hover span,
    .btn-responsive-nav:active span,
    .btn-responsive-nav:focus span{
        background:#343434;
    }
    .header {
        clear: both;
    }
    .header ul.navbar-nav {
        float: none!important;
        text-align: right;
        margin: 0;
    }
    .header .nav-main-collapse {
        position: relative;
        background: #343434;
        width: 100%;
        overflow: hidden;
        transition: .4s all;
    }
    .header .nav-main-collapse.collapse {
        display: none !important;
    }
    .header.colored .nav-main-collapse {
        top: -13px;
    }
    .header .nav-main-collapse.collapse.in {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        display: block !important;
        transition: .4s all;
    }
    .header .nav-main {
        padding: 0px 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: 2;
        overflow: hidden;
        font-size: 12px;
        color: #fff;
        text-decoration: none;
        padding: 0 15px;
        font-weight: 600;
        line-height: 35px;
    }
    .nav-main .navbar-nav li a svg{
        margin-left:10px
    }
    .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: #f8a930 !important;
        color: #ffffff !important;
    }
    .header .user-icon{
        margin-left: 50px;
        padding: 19px 0px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .top-header .top-contact li{
        margin-left: 0;
        font-size: 14px;
        letter-spacing: normal;
    }
    .top-header .top-contact li svg{
        margin-left: 3px;
    }
}
@media all and (max-width:767px){
    .top-header .top-contact{
        display: none;
    }
    .top-header .social-icons{
        width: 100%;
        padding: 5px;
    }
}
@media (max-width: 520px){
    .header .logo{
        width: 140px;
        height: 60px;
        padding: 5px;
        margin-top: 10px;
    }
    .header .user-icon a span{
        display: none;
    }
    .header .user-icon a svg{
        width: 35px;
        height: 40px;
        margin: 0;
        background: #fff;
        color: #f8a930;
        padding: 8px;
    }
    .header .user-icon a:hover svg{
        color:#343434;
    }
}

/* Footer
========================*/
.footer{
    display: block;
    position: relative;
    padding:25px 0;
    background: #343434;
}
.widget {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 5px auto;
}
.widget .widget-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color:#fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 4px solid #ec1c2a;
    padding-left: 10px;
}
.widget .widget-content {
    line-height: 35px;
}
.widget .widget-content p {
    line-height: 22px;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.5px;
}
/*Widget Links*/
.widget-links {
    overflow: hidden;
}
.widget-links li {
    display: inline-block;
    margin: 5px;
}
.widget-links li a {
    display: block;
    position: relative;
    color: #fff;
    text-transform: capitalize;
    font-size: 13px;
    line-height: 30px;
    padding: 0 15px 0 10px;
    letter-spacing: 0.5px;
}
.widget-links li a:hover{
    color: #ffffff;
}
.widget-links li a:before{
    content: " ";
    position: absolute;
    right: 0px;
    top: 12px;
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 0;
}

/*CopyRights
=====================*/
.copyrights{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    background: #f9a702;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

/*Slider
============================*/
.welcome-home {
    width: 100%;
    display: block;
    position: relative;
    background: url(../images/slider.jpg) center;
    background-size: cover;
    padding: 60px 0px;
    background-repeat: no-repeat;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all;
}
.welcome-home:before{
    content:" ";
    position:absolute;
    background:rgba(0,0,0,.75);
    width:100%;
    height:100%;
    left:0;
    top:0;
}
.welcome-home .head-title{
    font-size: 26px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 15px;
    padding: 0;
}
.welcome-home .info-text{
    color: #f1f1f1;
}
.wel-cont{
    margin: 15px auto;
}
.wel-cont .custom-btn{
    background: #fff;
    color: #343434;
    margin: 10px auto;
}
.wel-cont .custom-btn:hover{
    color: #fff;
}
.welcome-home .find-apartment {
    max-width: 480px;
    margin: 0px auto;
}
.welcome-home .find-apartment .form-title{
    display: block;
    position: relative;
    line-height: 50px;
    padding: 0 0 0 15px;
    color: #fff;
    font-weight: 600;
    background: #343434;
    word-spacing: 2px;
    font-size: 15px;
}
.welcome-home .find-apartment svg{
    width: 50px;
    height: 50px;
    background: #f8a930;
    float: right;
    margin-left: 15px;
    padding: 12px;
}
.welcome-home .find-apartment form{
    background: #fff;
    display: block;
    padding: 15px 15px 5px;
}
.welcome-home .find-apartment .form-title:after{
    content: " ";
    position:absolute;
    bottom:-20px;
    left:20px;
    border-top: 10px solid #343434;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.welcome-home .find-apartment .form-group .form-control{
    width: 99%;
}
.welcome-home .find-apartment .form-group .custom-btn{
    float:left;
}
@media all and (max-width:420px){
    .welcome-home .head-title{
        font-size: 16px;
        line-height: 30px;
    }
    .welcome-home .info-text{
        font-size: 12px;
    }
}

/*Serv-Item
==========================*/
.serv-item{
    display: block;
    position: relative;
    margin: 15px auto;
    background: #fff;
    padding: 5px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.serv-item .serv-img{
    display: block;
    position: relative;
    overflow: hidden;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: #fbfbfb;
    border: 3px dashed #ddd;
    padding: 14px;
    margin: 15px auto;
    -webkit-transition: 1.5s all;
    -moz-transition: 1.5s all;
    transition: 1.5s all;
}
.serv-item .serv-img img{
    padding: 13px;
}
.serv-item:hover .serv-img{
    transform:rotate(360deg);
    -webkit-transition: 1.5s all;
    -moz-transition: 1.5s all;
    transition: 1.5s all;
}
.serv-item .serv-content{
    display: block;
    position: relative;
    padding: 5px;
    text-align: center;
}
.serv-item .serv-content a.title{
    color: #f8a930;
    display: block;
    position: relative;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    text-align: center
}
.serv-item .serv-content p{
    font-size: 12px;
    line-height: 22px;
    margin: 10px auto;
    color: #444;
}

/* Proj Item
===========================*/
.proj-item{
    display: block;
    position: relative;
    margin: 20px auto;
    background: #fff;
    max-width: 420px;
}
.proj-item .proj-img{
    display: block;
    position: relative;
    width: 100%;
    height: 220px;
}
.proj-item .proj-img img{
    width: 100%;
    height: 100%;
}
.proj-item .proj-img .hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0,0,0,0);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.proj-item .proj-img .hover a{
    transition-delay: 1s;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.proj-item:hover .proj-img .hover{
    background: rgba(0,0,0,0.6);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.proj-item:hover .proj-img .hover a{
    transition-delay: 1s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.proj-item .proj-img .hover a{
    color: #fff;
    font-size: 40px;
    background: #f8a930;
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    margin: 90px auto;
    text-align: center;
}
.proj-item .proj-type{
    position:absolute;
    top:5px;
    left:5px;
    line-height:30px;
    font-size: 14px;
    font-weight:600;
    padding: 0 10px;
    background:#f8a930;
}
.proj-item .title{
    text-align: center;
    display: block;
    position: relative;
    line-height: 40px;
    font-size: 12px;
    color: #f8a930;
    font-weight: 600;
    border-bottom: 1px solid #fbfbfb;
}
.proj-item .proj-cont{
    overflow: hidden;
}
.proj-item .proj-cont li{
    border-bottom: 1px solid #fbfbfb;
    border-left: 1px solid #fbfbfb;
    font-size: 11px;
    line-height:45px;
    font-weight: 600;
    text-align: right;
    padding: 0 10px;
}
.proj-item .proj-cont li span{
    float: left;
    color: #f8a930;
}
.proj-item .proj-action {
    overflow:hidden;
}
.proj-item .proj-action .custom-btn{
    float: right;
    width: 75%;
    height: 40px;
    line-height: 40px;
}
.proj-item .proj-action .icon-btn{
    float: right;
    width: 25%;
    background: #f83030;
    color: #fff;
    border: 0;
    height: 40px;
    font-size: 20px;
}
.proj-item .proj-cont li.flash-item{
    -webkit-animation: glowing 1200ms infinite;
    -moz-animation: glowing 1200ms infinite;
    -o-animation: glowing 1200ms infinite;
    animation: glowing 1200ms infinite;
}
.proj-item .proj-cont li.flash-item span{
    color:#343434
}
@-webkit-keyframes glowing {
    0% { background-color: #ffffff; }
    50% { background-color: rgba(249, 167, 2 ,.4);}
    100% { background-color: #ffffff;}
}
@-moz-keyframes glowing {
    0% { background-color: #ffffff; }
    50% { background-color: rgba(249, 167, 2 ,.4);}
    100% { background-color: #ffffff;}
}
@-o-keyframes glowing {
    0% { background-color: #ffffff; }
    50% { background-color: rgba(249, 167, 2 ,.4);}
    100% { background-color: #ffffff;}
}
@keyframes glowing {
    0% { background-color: #ffffff; }
    50% { background-color: rgba(249, 167, 2 ,.4);}
    100% { background-color: #ffffff;}
}

/*About
=========================*/
.about{
    text-align: right;
}
.about .about-content h2 {
    font-weight: 600;
    font-size: 28px;
    color:#e4af0f;
    text-transform: uppercase;
    line-height: 50px;
    margin: auto;
}
.about .about-content p {
    display: block;
    position: relative;
    margin: 15px 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 30px;
}
.about .about-img {
    display: block;
    width: 100%;
}
.about .about-img img {
    display: block;
}
.about .about-content .custom-btn{
    margin-top: 10px;
}
@media all and (max-width:420px){
    .about .about-content h2{
        font-size: 16px;
        line-height: 30px;
    }
}

/* Opinion
============================*/
.opinion-box-wrap{
    padding: 10px;
}
.opinion-box {
    display: block;
    width: 100%;
    padding: 15px;
    background: #fbfbfb;
    overflow: hidden;
}
.opinion-box .opinion-img {
    float: right;
    position: relative;
    width: 100px;
    height: 100px;
    border: 3px dashed #f8a930;
    border-radius: 50%;
    padding: 3px;
}
.opinion-box .opinion-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.opinion-box .opinion-details {
    position: relative;
    display: block;
    padding-right: 110px;
    text-align: right;
}
.opinion-box .opinion-details p {
    text-transform: capitalize;
    line-height: 28px;
    font-size: 12px;
}
.opinion-box .opinion-details h6 {
    color: #f8a930;
    font-size: 14px;
    font-style: italic;
    text-align: left;
}
@media all and (max-width: 480px) {
    .opinion-box .opinion-img {
        float: none;
        margin: 10px auto;
    }
    .opinion-box .opinion-details {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .opinion-box .opinion-details p {
        line-height: 30px;
        font-size: 16px;
    }
}

/*Gallery
=============================*/
.gallery-item {
    position: relative;
    margin:15px;
    padding:5px;
    border-radius: 0;
    background: #fff;
    box-shadow: 1px 1px 5px #9c9c9c;
}
.gallery-item img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-item .popup-text-hover{
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility:hidden;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.gallery-item .popup-text-hover a{
    display: block;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: rgba(226, 229, 230 , .2);
}
.popup-text-hover a:focus{
    background: none;
}
.gallery-item:hover .popup-text-hover{
    top:0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.inner-gallery .gallery-item{
    margin: 15px auto;
}

/* Login-Register
============================*/
.log-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/slider.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 .logo img{
    max-height: 180px;
}
.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;
    font-size: 14px;
    font-weight: 600;
    color: #f9ab2a;
}
.login-register .login-form{
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.login-register .remmeber{
    float: right;
    margin-top: 10px;
}
.login-register .forget-pass {
    float: left;
    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 .spacer{
    display: block;
    position: relative;
    margin: 5px auto 10px;
    line-height: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #f9ab2a;
}
.login-register .spacer span{
    position: relative;
    background: #fff;
    padding: 0 10px;
}
.login-register .spacer:before{
    content: " ";
    position: absolute;
    width: 90%;
    height: 1px;
    background: #f1f1f1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.social-login .custom-btn svg{
    margin-left: 5px;
}
.social-login .custom-btn.face{
    background: #4e71a8;
}
.social-login .custom-btn.twitt{
    background: #1cb7eb
}
.login-register .form-footer {
    display: block;
    border-top: 1px solid #f1f1f1;
    overflow: hidden;
    font-size: 14px;
    padding: 10px 10px;
    line-height: 30px;
    color: #343434;
    font-weight: 600;
}
@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;
    }
}

/*Contact Section
=============================*/
.contact-item {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    margin: 5px auto;
    background: #f1f1f1;
}
.contact{
    text-align: right;
}
ul.contact-info {
    display: block;
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    margin-bottom: 15px;
}
ul.contact-info li {
    display: block;
    margin: 0 0 10px;
}
ul.contact-info li span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 30px;
    color: #e4af0f;
}
ul.contact-info li span:last-child{
    color: #13141a;
    font-weight: 400;
}

/*Only Hosting
================================*/
.only-service-icon {
    overflow: hidden;
    display: block;
    position: relative;
    overflow: hidden;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #fbfbfb;
    border: 3px dashed #ddd;
    padding: 40px;
    margin: 15px auto;
}
.only-service-cont{
    position: relative;
    text-align: right;
}
.only-service-cont h3 {
    color: #f8a930;
    display: block;
    position: relative;
    line-height: 40px;
    font-size: 23px;
    margin: 10px auto 0px;
    font-weight: 600;
}
.only-service-cont p {
    display: block;
    position: relative;
    margin: 0;
    line-height: 30px;
    font-size: 14px;
    color: #343434;
    max-width: 700px;
}

/*Request
==================*/
.project .owl-controls .owl-prev{
    left: 15px;
    bottom: 15px;
}
.project .owl-controls .owl-next{
    left: 55px;
    bottom: 15px;
}
.price-stat-wrap{
    padding-bottom: 15px;
    border: 2px dashed #f1f1f1;
}
.price-stat-wrap .title{
    font-size: 26px;
    margin: 20px auto 10px;
    color: #343434;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
}
.request-form{
    background: #fff;
    padding: 15px;
    overflow: hidden;
}
.price-stat{
    background: #fff;
    padding: 15px;
    overflow: hidden;
}
.price-stat li{
    margin: 5px -10px;
    line-height: 35px;
    color: #343434;
    border: 1px solid #f1f1f1;
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    word-spacing: 1px;
    display: block;
}
.price-stat li span{
    color: #f8a930;
    margin-right: 10px;
    display: inline-block;
}

/* Team
==========================*/
.team-item{
    display: block;
    position: relative;
    margin: 10px;
    background: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0,9,128,0.035), 0 7px 18px rgba(0,9,128,0.05);
    -moz-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    -ms-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    -o-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    box-shadow: 0 5px 10px rgba(0,9,128,0.035), 0 7px 18px rgba(0,9,128,0.05);
}
.inner-team .team-item{
    margin: 15px auto;
}
.team-item .team-img{
    width: 100%;
    overflow: hidden;
}
.team-item .team-info{
    padding: 5px;
    text-align: center;
}
.team-item .team-info h3{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    color: #f9a702;
}
.team-item .team-info p{
    margin: 0;
    line-height: 25px;
    font-style: italic;
}

/*Blog
==============================*/
.blog-item{
    display: block;
    position: relative;
    overflow: hidden;
    margin: 15px auto;
    border: 1px solid #f7f7f7;
}
.blog-item .blog-img{
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.blog-item .blog-img img{
    width: 100%;
}
.blog-item .blog-content{
    display: block;
    position: relative;
    background: #fbfbfb;
    padding: 10px;
    overflow:hidden;
}
.blog-item .blog-content a.title{
    display: block;
    position: relative;
    line-height: 35px;
    font-weight: 600;
    color: #f9a702;
    font-size: 15px;
}
.inner-blogs .blog-item .blog-content{
    background: #fff;
}
.blog-item .date{
    display: block;
    position: absolute;
    line-height: 35px;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    /* width: 100%; */
    padding: 0 10px;
    color: #fff;
}
.blog-item .date svg{
    margin-left: 10px;
    color: #f9a702;
}
.blog-item .blog-content p{
    line-height: 22px;
    font-size: 12px;
    color: #232323;
}
.blog-item .blog-content .custom-btn{
    float:left;
}
.only-news img{
    border: 1px solid #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
}
.only-news .head-title{
    margin: 5px auto 10px;
    font-size: 16px;
    border: 1px solid #f1f1f1;
    padding: 5px 15px;
}

/*Media
================================*/
.media-item{
    position:relative;
    margin:15px auto;
    background: #ffffff;
    border: 2px dashed #ddd;
    padding: 10px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.media-item a{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.media-item a img{
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}
.media-item:hover a img{
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
    -webkit-transform: scale(1.05) rotate(3deg);
    -moz-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
}
.vid-item{
    margin: 15px auto;
    position: relative;
}

/* Profile
=========================*/
.profile-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #f1f1f1;
    margin-bottom: 15px
}
.profile-card .profile-img {
    display: block;
    margin: 0 auto;
    width: 260px;
    padding: 15px 15px 0
}
.profile-card .profile-name {
    display: block;
    position: relative;
    text-align: center;
    font-size: 13px;
    color: #efa000;
    line-height: 40px;
    margin: 10px auto;
    font-weight: 600;
}
.profile-card .profile-menu ul {
    display: block;
    position: relative;
    padding: 0
}
.profile-card .profile-menu ul li {
    display: block;
    position: relative;
    border-top: 1px solid #f1f1f1;
    border-right: 4px solid #fff;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    transition: .3s all
}
.profile-card .profile-menu ul li a {
    line-height: 40px;
    font-size: 13px;
    color: #333;
    display: block;
    position: relative
}
.profile-card .profile-menu ul li a i {
    font-size: 18px;
    color: #efa000;
    line-height: 40px;
    width: 30px;
    text-align: center;
    margin: 0 5px;
}
.profile-card .profile-menu ul li a svg {
    font-size: 17px;
    color: #343434;
    line-height: 50px;
    width: 30px;
    text-align: center;
    margin-right: 5px;
    margin-left: 10px
}
.profile-card .profile-menu ul li.active,
.profile-card .profile-menu ul li:hover {
    border-right: 4px solid #efa000;
    background: #fdfdfd;
}
.profile-card .profile-menu ul li.active a,
.profile-card .profile-menu ul li:hover a {
    color: #f8a930;
}
.profile-content {
    background-color: #fff;
    border: 1px solid #f2f2f2;
    position: relative;
    padding: 0
}
.profile-widget-title {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 50px;
    padding: 0 15px;
    color: #efa000;
    border-right: 3px solid #efa000;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 600;
    font-size: 13px;
}
.profile-widget-content {
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden;
}
.notification-wrap {
    padding: 10px
}
.profile-account-setting .form-group {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    clear: both;
    padding: 0 25px
}
.profile-account-setting .form-group label {
    font-size: 11px;
    line-height: 40px;
    width: 20%;
    float: right;
    margin: 0;
}
.profile-account-setting .form-group .form-control {
    width: 78%;
    margin-right: 2%;
    float: right
}
.profile-account-setting .form-group .custom-btn {
    float: left;
}
.profile-account-setting .form-group .custom-btn:hover {
    background: #000
}
@media all and (max-width:767px) {
    .profile-account-setting .form-group label {
        width: 100%;
        float: none;
        padding-right: 15px
    }
    .profile-account-setting .form-group .form-control {
        width: 100%;
        margin-right: 0;
        float: none
    }
}


/* Date Picker
========================*/
.datetimepicker {
    padding:0px 5px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0;
    border-color: #f1f1f1;
    box-shadow: none;
    width: 230px!important;
    right: auto!important;
    float: none!important;

}
.input-group{
    position: relative;
}
.datetimepicker table {
    margin: 0;
    width: 100%;
}
.datetimepicker td, .datetimepicker th {
    border-radius: 0;
    border: 0;
    font-weight: 100;
    font-size: 13px;
}
.input-group{
    border-radius: 0;
}
.input-group .form-control{
    background: #fff;
    border: 1px solid #f1f1f1;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: #f9a702;
}

/*DropDown with search
=======================*/
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px;
}
.select2-container .select2-selection--single {
    height: 40px;
    border: 1px solid #eee;
    border-radius: 0;
}
.select2-container--default.select2-container--focus .select2-selection--multiple ,
.select2-container--default .select2-selection--multiple{
    border: 1px solid #eee;
    border-radius: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #00b7d8;
    border: 1px solid #00b7d8;
    border-radius: 4px;
    cursor: default;
    float: right;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
    color: #fff;
    line-height: 30px;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 3px;
}

.notfy-item{
    padding: 10px;
    font-size: 14px;
    line-height: 30px;
    border-bottom: 1px solid #f1f1f1;
}
.notfy-item .notfy-time{
    display: block;
    font-size: 13px;
    color: #f8a930;
    font-weight: normal;
    padding-right:5px;
    text-align: right;
}
.notfy-item:nth-child(even){
    background: #fdfdfd;
}
.notfy-item:last-child{
    border-bottom:0;
}
.notfy-item .notfy-time i{
    margin-right: 1px;
}
.table-responsive{
    width: 98%;
    margin: 10px auto;
}
.table{
    width: 100%;
    border: 1px solid #f2f2f2;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: 0;
    border-bottom: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-color: #f2f2f2;
    line-height: 30px;
}
.support-icon{
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 0px 15px;
    line-height: 40px;
    color: #fff;
    z-index: 999;
    font-size: 16px;
    font-weight: 600;
    background: #343434;
    text-align: center;
    cursor: pointer;
    letter-spacing: 2px;
    border-radius: 25px;
}
.support-icon img{
    display: inline-block;
    width: 30px;
    margin: 5px;
}

/*Loading
==========================*/
.loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.loading .loading-left-bg,
.loading .loading-right-bg {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #13141a;
}
.loading .loading-left-bg {
    top: 0;
}
.loading .loading-right-bg {
    bottom: 0;
}
.translateLeft {
    animation: translateLeft 1s forwards;
}
.translateRight {
    animation: translateRight 1s ease-in-out forwards;
}
@-webkit-keyframes translateLeft {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@-moz-keyframes translateLeft {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@keyframes translateLeft {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@-webkit-keyframes translateRight {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@-moz-keyframes translateRight {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes translateRight {
    from {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.loading .loader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
}
.loading .loader span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    -webkit-animation: 3s infinite linear;
    -moz-animation: 3s infinite linear;
    animation: 3s infinite linear;
}
.loading .loader span:nth-child(2) {
    background: #ffffff;
    animation: kiri 1.2s infinite linear;
}
@keyframes kiri {
    0% {
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        transform: translateX(-20px);
        z-index: 200;
    }
    50% {
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}
.loading .loader span:nth-child(3) {
    background: #e4af0f;
    z-index: 100;
}
.loading .loader span:nth-child(4) {
    background: #ffffff;
    animation: kanan 1.2s infinite linear;
}
@keyframes kanan {
    0% {
        transform: translateX(20px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(20px);
        z-index: 200;
    }
}

/* Scroll
============================*/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow:none;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #f8a930;
    -webkit-box-shadow:none;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0,0,0,0.7);
}

.social-icons{
    margin-bottom: 10px;
}
.social-icons a{
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    background: #fff;
    text-align: center;
    font-size: 19px;
    line-height: 35px;
    border-radius: 3px;
    margin: 1px;
}
.social-icons a:hover{
    opacity:1;
}


.social-login .custom-btn svg{
    margin-right: 5px;
}
.login-form .social-login {
    margin-bottom:10px;
}
.register-form .social-login {
    margin-bottom:10px;
}
.social-login .custom-btn{
    width: auto;
    font-size: 13px;
    line-height: 35px;
    height: 35px;
    text-transform: capitalize;
    padding: 0 15px;
}
.social-login .custom-btn.face{
    background: #4e71a8;
}
.social-login .custom-btn.google{
    background: #e6403b;
}
.social-login .custom-btn.linked{
    background: #3c5c8e;
}


/* Model
=======================*/
.modal{
    z-index: 9999;
}
.modal-content{
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 0;
    border-radius: 0;
}
.modal-dialog {
    max-width: 650px;
    margin: 30px auto;
    width: 98%;
}

#submit_form .modal-dialog{
    max-width: 600px;
}
#submit_form .modal-dialog textarea{
    max-height: 300px;
    height: 300px!important;
}

.modal-footer {
    padding: 10px 15px;
    text-align: center;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-header {
    padding: 0 15px;
    background: transparent;
}
.modal-title{
    font-size: 14px;
    line-height: 50px;
    color: #efa000;
    font-weight: 600;
}
.modal-header .close {
    margin-top: 15px;
}

/* Forms
======================*/
.modal-body .form-group {
    position: relative;
    overflow: hidden;
    margin: 5px auto;
    padding-right: 0;
}
.modal-body .form-group label {
    display: block;
    text-align:right;
    font-weight: 600;
    font-size: 11px;
    line-height: 25px;
    margin: 5px 0 10px;
    color: #000000;
}
.modal-body .form-control {
    color: #333;
    border: 1px solid #ececec;
    margin: 0 auto;
    padding: 0px 10px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 100;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.modal-body .form-control:hover,
.modal-body .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.house-part-item{
    display: block;
    position: relative;
    margin: 15px auto;
    background: #f9f9f9;
    text-align: center;
    border: 1px solid #f1f1f1;
    border-left: 0;
    overflow: hidden;
    padding-right: 60px;
}
.house-part-item .title{
	position: absolute;
	height: 100%;
	background: #efa000;
	width: 60px;
	right: 0;
	top: 0;
	z-index: 999;
	color: #fff;
	line-height: 20px;
	font-weight: 600;
	font-size: 12px;
	padding: 10px 0;
}
.house-part-item .radio-wrap{
    float: right;
    width: 50%;
    padding: 0;
    text-align: center;
    border-left: 1px solid #f1f1f1;
    font-size: 40px;
    background: #fff;
}
.house-part-item .radio-wrap input[type=radio]+label{
	padding:0;
	display: block;
	width: 100%;
	height: 60px;
}
.house-part-item .radio-wrap input[type=radio]+label::before{
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	background: #f9f9f9;
	border-color: #f9f9f9;
}
.house-part-item .radio-wrap input[type=radio]:checked+label::before{
	background: #abeabf;
	border-color: #abeabf;
}
.house-part-item .radio-wrap span{
	position:relative;
	line-height: 60px;
	height: 60px;
	font-size: 14px;
	display: block;
}
.part-img{
    display: block;
    margin: 10px auto;
    border: 1px solid #f1f1f1;
}
.part-img img{
	padding: 15px;
	max-height: 225px;
}
.part-img span{
    display: block;
    position: relative;
    line-height: 35px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 15px;
    background: #f9f9f9;
    text-align: center;
}
.house-part-item .radio-wrap.sale input[type=radio]+label::before{
    background: #ffc4c4;
    border-color: #ffc4c4;
}
.blog-share{
	padding: 0 5px;
	display: block;
	position: relative;
	margin: 0px auto 10px;
}
.blog-share span{
	font-size: 12px;
	line-height: 30px;
	display: inline-block;
	font-weight: 600;
}
.blog-share ul{
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	height: 35px;
}
.blog-share li{
	display: inline-block;
}
.blog-share li a{
    display: block;
    width: 30px;
    height: 30px;
    background: #323232;
    position: relative;
    color: #fff;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
}
.face{
	background: #4e71a8 !important;
}
.twitt{
	background: #1cb7eb !important;
}
.google{
	background: #bf2026 !important;
}
.instg{
	background: #777 !important;
}

.action-mes {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #f8a930;
    line-height: 35px;
    padding: 5px 25px;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    min-width: 230px;
}