@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800');
html,body {height: 100%;}
body { overflow-x: hidden; font-family: 'Montserrat', sans-serif; }

ol, ul {
    padding: 0;
    margin: 0;
}

li {list-style: none;}

a,a:hover,a:focus {
    text-decoration: none !important;
    transition: all 0.2s linear;
}


.navbar-brand > img {
    display: block;
    width: 250px;
    transition: all 0.2s linear;
}

.navbar.navbar-default {
    border: none;
    background-color: #fff;
    border-radius: 0;
    margin: 0;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
}

.banner {
    float: left;
    width: 100%;
    background-image: url("../images/banner.jpg");
    background-size: cover;
    padding: 20px 0;
    margin-top: 80px;
    position: relative;
    background-attachment: fixed;
    background-position: center;
}

.navbar-brand {
    height: auto;
}

nav.navbar-default .nav > li > a {
    padding: 30px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #051921;
    border-bottom: 3px solid transparent;
}

nav.navbar-default .nav > li > a:hover {
    background-color: #fefefe;
    color: #ffa800;
}

nav.navbar-default .nav > li > a {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

nav.navbar-default .nav > li > a::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: #ffa800;
    transition: width .3s;
    bottom: -2px;
    position: absolute;
    left: 0;
}

nav.navbar-default .nav > li > a:hover::after {
    width: 100%;
} 

.navbar-brand {
    padding: 23px 15px;
}

.submit_listing {
    float: left;
}

.btn.outline-btn {
    background-color: #ffa800;
    color: #fff;
    border-radius: 0;
    padding: 35px 30px;
    margin-right: -25px;
    position: relative;
}

.btn.outline-btn:hover {
    background-color: transparent;
}

.btn.outline-btn::after {
    background: linear-gradient(36deg, #0dd3ff, #0389ff);
    content: '';
    z-index: -1;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 102%;
}

.banner form .form-group {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.3);
    height: auto;
    float: left;
    width: 100%;
    padding: 8px;
}

.banner form .form-group .form-control {
    width: 43%;
    float: left;
    height: 50px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 300;
    color: #999;
    border-radius: 30px;
    position: relative;
}

.bootstrap-select {
    position: relative;
}

.bootstrap-select::after {
    position: absolute;
    height: 20px;
    right: 0;
    top: 15px;
    content: "";
    border-right: 1px solid #ccc;
    width: 1px;
    z-index: 99;
}

.banner .btn.dropdown-toggle.btn-default {
    height: 50px;
    border: none;
    border-radius: 30px;
    color: #999;
    font-weight: 300;
}

.banner .btn.dropdown-toggle.btn-default:hover,
.banner .btn.dropdown-toggle.btn-default:focus,
.banner .btn-group.open .dropdown-toggle {
    background-color: transparent;
    outline: none !important;
    box-shadow: none;
}


.btn.btn-search {
    background: linear-gradient(36deg, #0dd3ff, #0389ff);
    color: #fff;
    text-transform: uppercase;
    height: 50px;
    float: right;
    padding: 0 50px;
    width: 14%;
    border-radius: 40px;
    transition: all 0.3s;
    position: relative;
}

.btn.btn-search:hover {
    background: #051921;
}

.banner h2 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.banner p {
    font-size: 17px;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 15px;
    color: #C1D2DC;
    text-align: justify;
}


#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 99999;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
#search .btn {
    background-color: #ffa800;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    color: #fff;
    padding: 10px 15px;
    border-color: #ffa800;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #ffa800;
    border-color: #ffa800;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.right-img .img-responsive {
    margin-bottom: -20px;
}

.affix .navbar-brand > img {
    width: 200px;
    transition: all 0.2s linear;
}

.affix .navbar-brand {
    padding: 15px 15px;
}

nav.navbar-default.affix .nav > li > a {
    padding: 22px 20px;
}
.affix .btn.outline-btn {
    padding: 23px 30px;
}

.categories-section {
    float: left;
    width: 100%;
    padding: 30px 0;
    background-color: #f6fbfb;
}

h2.heading- {
    font-weight: 400;
    font-size: 36px;
    margin-top: 0;
    color: #283940;
}

h2.heading- span {
    font-weight: 700;
}

p.bottom-text {
    font-size: 17px;
    color: #999;
    font-weight: 300;
    margin: 0;
}



/*new-css*/
.done-section {
    float: left;
    width: 100%;
    padding-bottom: 30px;
    background-color: #fff;
}

.inner-done {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 6px;
    text-align: center;
    margin-top: -105px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
}

.inner-done img {
    width: 64px;
}

.inner-done h3 {
    font-weight: 700;
    margin: 12px 0;
    font-size: 30px;
}

.inner-done span {
    font-size: 18px;
}

.ultimate-features {
    float: left;
    width: 100%;
    padding: 30px 0;
    background-color: #fff;
}

.ultimate-features .col-sm-3 {
    padding: 5px;
}

.features-inner {
    text-align: left;
    padding: 10px;
    margin-top: 0px;
    border-radius: 6px;
    min-height: 300px;
}

.features-inner h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 5px;
    color: #11222C;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 10px;
}

.features-inner h3::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    border-bottom: 5px solid #FFA800;
    width: 30px;
}

.features-inner img {
    width: 36px;
    margin-bottom: 5px;
}

.features-inner p {
    text-align: justify;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #919191;
    line-height: 21px;
}

.live-demo.text-center.fooContainer {
    float: left;
    width: 100%;
    padding: 30px 0;
    background: rgb(255,255,255); 
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(238,245,245,1) 100%); 
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(238,245,245,1) 100%); 
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(238,245,245,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef5f5',GradientType=0 );
    margin-top: -210px;
}

.live-demo .form-s {
    background-color: #fff;
    padding: 15px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border-radius: 6px;
    position: relative;
    bottom: -120px;
}

.form-s .col-sm-4 {
    padding: 70px 15px;
}

.form-s .fa.fa-long-arrow-right {
    font-size: 60px;
}

.form-s .col-sm-4 {
    padding: 111px 15px;
}

.form-s iframe {
    width: 100%;
    border: 3px dashed #e7e7e7;
    border-radius: 6px;
}

.demo-gallery > ul {
    margin-bottom: 0;
}
.demo-gallery > ul > li {
    float: left;
}
.demo-gallery > ul > li a {
    border: 3px solid #FFF;
    border-radius: 6px;
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
    height: 300px;
    margin-top: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    padding: 15px;
    background-color: #fff;
}
.demo-gallery > ul > li a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}
.demo-gallery > ul > li a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
    opacity: 1;
}
.demo-gallery > ul > li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}
.demo-gallery > ul > li a .demo-gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}
.demo-gallery > ul > li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .justified-gallery > a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}
.demo-gallery .justified-gallery > a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
    opacity: 1;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}
.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}
.demo-gallery .video .demo-gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}
.demo-gallery.dark > ul > li a {
    border: 3px solid #04070a;
}
.home .demo-gallery {
    padding-bottom: 80px;
}

.crm-screens {
    float: left;
    width: 100%;
    padding:130px 0 30px;
    text-align: center;
    background-color: #11222C;
}

.crm-screens h2.heading- {
    color: #fff;
}

.crm-screens p.bottom-text {
    color: #91A2AC;
}

.overlay-div {
    display: none;
    transition: all 0.2s linear;
}

.demo-gallery > ul > li a:hover .overlay-div {
    display: block;
    background-color: rgba(255,168,0,0.9);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 26px;
    color: #fff;
    transition: all 0.2s linear;
    line-height: 270px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2)inset;
}

.price-section {
    float: left;
    width: 100%;
    padding: 30px 0;
    background-color: #F7F7F7;
}

.inner-price {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    float: left;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inner-price h1 {
    color: #11222C;
    font-weight: 800;
    padding: 10px;
    float: left;
    width: 100%;
}

.inner-price h1 span {
    font-size: 19px;
    float: left;
    width: 100%;
    font-weight: 500;
    color: #7c7c7c;
}

.packge-type {
    float: left;
    width: 100%;
}

.packge-type h3 {
    margin: 0;
    background-color: #FFA800;
    padding: 15px;
    color: #fff;
}

.inner-price ul {
    float: left;
    width: 100%;
}

.inner-price ul li {
    line-height: 50px;
    background-color: #fbfbfb;
    font-size: 16px;
    font-weight: 300;
    color: #818181;
}

.inner-price ul li:nth-child(2n+1) {
    background-color: #fff;
}

.inner-price a {
    background-color: #11222C;
    width: 100%;
    float: left;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 0;
}

.price-section p.bottom-text {
    margin-bottom: 50px;
}

.inner-price.sec- {
    margin-top: -15px;
}

.testimonial {
    text-align: center;
    width: 100%;
    padding: 30px 0 100px;
    float: left;
}

#testimonial4{
    overflow: hidden;
    min-height: 375px;
    position: relative;
}
#testimonial4 .carousel-inner{
    width: 75%;
    margin: auto;
}
#testimonial4 .carousel-inner:hover{
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
    overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #11222C;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    margin: 2px 3px;
    background-color: #FFA800;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
    height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
    background: #11222C;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.testimonial4_control_button .carousel-control{
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #11222C;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
    transition: all 0.6s cubic-bezier(0.3,1,0,1);
    color: #11222C;
}
.testimonial4_control_button .carousel-control.left{
    left: 7%;
    right: auto;
}
.testimonial4_control_button .carousel-control.right{
    right: 7%;
    left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
    color: #fff;
    background: #11222C;
    border: 2px solid #11222C;
}

.testimonial4_header{
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
}
.testimonial4_header h4{
    color: #11222C;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial4_slide{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    margin: auto;
    padding:60px 20px;
    position: relative;
    text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;
    color: #11222C;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
}

.testimonial4_slide p {
    color: #11222C;
    font-size: 16px;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
    color: #11222C;
    font-size: 24px;
    font-weight: bold;
}


@media only screen and (max-width: 480px){
    .testimonial4_control_button .carousel-control{
        display: none;
    }
    .testimonial4_header{
        width: 95%;
    }
    .testimonial4_header h4{
        font-size: 20px;
    }
    .testimonial4_slide{
        width: 98%;
        padding: 5px;
    }
}

@media (min-width: 481px) and (max-width: 767px){
    .testimonial4_control_button .carousel-control.left{
        left: 2%;
    }
    .testimonial4_control_button .carousel-control.right{
        right: 2%;
    }
    .testimonial4_header{
        width: 95%;
    }
    .testimonial4_slide{
        width: 98%;
        padding: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .testimonial4_control_button .carousel-control.left{
        left: 5%;
    }
    .testimonial4_control_button .carousel-control.right{
        right: 5%;
    }
}

@-webkit-keyframes psBoxShadowEffect_2{
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes psBoxShadowEffect_2{
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255,255,255,0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


footer {
    float: left;
    width: 100%;
    padding: 140px 0 30px;
    background-color: #11222C;
    text-align: center;
    color: #fff;
}