/*------------------------------------------------------------------
[Main Stylesheet]

Project: Xazi
Version: 1.1.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]
    *. Header / .main-header
    *. Banner / .banner
    *. Features Section /.features-section
    *. Services /.services
    *. Counters /.counters
    *. Our Team /.our-team
    *. Pricing Tables /.pricing-tables
    *. Testimonial /.testimonial
    *. Blog Section /.blog-section
-------------------------------------------------------------------*/
/** GLOBAL CLASSES **/

body {
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    color: #3c3b3b;
}

.img-fluid {
    max-width: 100% !important;
    height: auto;
}

.bg-grea{
    background: #f9f9f8;
}

.page_loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(../img/loader.gif) center no-repeat #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #3c3b3b;
}

a {
    color: #37404d;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #3c3b3b;
}

.form-control:focus {
    box-shadow: none;
}

p {
    font-size: 16px;
    line-height: 25px;
    color: #3c3b3b;
    font-family: 'Nunito Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #2f2f2f;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-md {
    cursor: pointer;
    padding: 9px 35px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
    transition: .5s;
    border-radius: 2px;
    border: none;
}

.btn-sm {
    cursor: pointer;
    padding: 7px 25px;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
    border-radius: 2px;
    border: none;
    color: #fff;
}

.col-pad {
    padding: 0;
}

.dropdown-menu {
    border-radius: 0;
}

.form-inline .btn,
.form-inline .btn:active {
    padding: 0 17px;
    font-size: 15px;
    background: none;
    border: solid 1px transparent;
    color: #212121;
}

.form-inline .btn:hover {
    background: none;
    border: solid 1px transparent;
}

.form-inline a {
    padding: 0 17px;
}

.btn {
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 3px;
}

#page_scroller {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    cursor: pointer;
    color: #FFF;
    padding: 10px 11px;
    font-size: 12px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/*Custom Anmation*/
.bgburns .slides li:nth-of-type(odd) .slide-background {
    animation: bgburnsEast 25s linear infinite alternate;
    -webkit-animation: bgburnsEast 25s linear infinite alternate
}

.bgburns .slides li:nth-of-type(even) .slide-background {
    animation: bgburnsWest 25s linear infinite alternate;
    -webkit-animation: bgburnsWest 25s linear infinite alternate
}

@keyframes bgburnsEast {
    from {
        transform: scale(1) translateX(0);
        -webkit-transform: scale(1) translateX(0)
    }
    to {
        transform: scale(1.2) translateX(100px);
        -webkit-transform: scale(1.2) translateX(100px)
    }
}

@-webkit-keyframes bgburnsEast {
    from {
        transform: scale(1) translateX(0);
        -webkit-transform: scale(1) translateX(0)
    }
    to {
        transform: scale(1.2) translateX(100px);
        -webkit-transform: scale(1.2) translateX(100px)
    }
}

@keyframes bgburnsWest {
    from {
        transform: scale(1) translateX(0);
        -webkit-transform: scale(1) translateX(0)
    }
    to {
        transform: scale(1.2) translateX(-100px);
        -webkit-transform: scale(1.2) translateX(-100px)
    }
}

@-webkit-keyframes bgburnsWest {
    from {
        transform: scale(1) translateX(0);
        -webkit-transform: scale(1) translateX(0)
    }
    to {
        transform: scale(1.2) translateX(-100px);
        -webkit-transform: scale(1.2) translateX(-100px)
    }
}

@media all and (max-width: 767px) {
    .flex-direction-nav {
        display: none
    }

    .bgburns .slides li .slide-background {
        -webkit-animation: none !important;
        animation: none !important
    }
}

/** Option Panel **/
.option-panel {
    z-index: 9999;
    width: 215px;
    position: fixed;
    right: 0;
    top: 20%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 20px 15px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.option-panel-collased {
    right: -215px;
}

.option-panel h2 {
    font-size: 13px;
    margin: 0 0 0 0;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 600;
}

.option-panel .color-plate {
    width: 40px;
    height: 40px;
    float: left;
    margin: 3px;
    border-radius: 3px;
    cursor: pointer;
}

/** Web site color start **/
.default-plate {
    background: #0071bb;
}

.blue-plate {
    background: #95c41f;
}

.yellow-plate {
    background: #ffb400;
}

.green-light-plate {
    background: #1abc9c;
}

.red-plate {
    background: #c31c1c;
}

.orange-plate {
    background: #F34B0A;
}

.yellow-light-plate {
    background: #eae328;
}

.green-light-2-plate {
    background: #0dcdbd;
}

.olive-plate {
    background: #b3c211;
}

.purple-plate {
    background: #8e44ad;
}

.blue-light-plate {
    background: #3c9dff;
}

.brown-plate {
    background: #A14C10;
}

.setting-button {
    position: absolute;
    font-size: 16px;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: -50px;
    color: #fff;
    top: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}
/** Option Panel **/

/** Overview bgi start **/
.overview-bgi {
    position: relative;
}

.overview-bgi:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.overview .btn-border {
    padding: 7px 12px !important;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}

/** Btn **/
.btn:focus, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none;
}

/** Social media start **/
.facebook:hover {
    color: #3b589e !important;
}

.twitter:hover {
    color: #56d7fe !important;
}

.linkedin:hover {
    color: #1c82ca !important;
}

.google:hover {
    color: #dc4e41 !important;
}

.rss:hover {
    color: #e78733 !important;
}

.instagram:hover {
    color: #fb3958 !important;
}

.facebook-bg {
    background: #4867aa;
}

.facebook-bg:hover {
    background: #3a5795;
}

.twitter-bg {
    background: #56d7fe;
}

.twitter-bg:hover {
    background: #2abced;
}

.google-bg {
    background: #dc4e41;
}

.google-bg:hover {
    background: #c83a2e;
}

.linkedin-bg {
    background: #1c82ca;
}

.linkedin-bg:hover {
    background: #036497;
}

/** MAIN HEADER **/
#main-header {
    width: 100%;
    background: #FFF;
    webkit-transition: height .3s ease-out, background .3s ease-out, box-shadow .5s, left .2s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s;
    transition: height .3s ease-out, background .3s ease-out, box-shadow .5s, left .2s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s;
    transition: height .3s ease-out, background .3s ease-out, transform .5s, box-shadow .5s, left .2s cubic-bezier(.645, .045, .355, 1);
    transition: height .3s ease-out, background .3s ease-out, transform .5s, box-shadow .5s, left .2s cubic-bezier(.645, .045, .355, 1), -webkit-transform .5s;
}

.main-header {
    background: #FFF;
}

.bg-grea-2{
    background: #f9f9f8;
}

.main-header .navbar {
    padding: 0;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 36.5px 17px 34px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
}

.main-header .navbar-expand-lg .navbar-nav .link-color {
    padding: 13px 25px 7.5px;
    border-radius: 3px;
    margin: 25px 0 0 10px;
    color: #fff;
    font-size: 13px!important;
    background: rgba(255,255,255,.18);
}

.main-header .logo img {
    height: 20px;
}

.main-header .logo {
    padding: 29px 0;
    margin-right: 50px;
    float: left;
}

a {
    transition: all .3s ease-in-out;
}

.dropdown-menu {
    min-width: 10rem;
    padding: 0;
    margin: -1px;
    font-size: 13px;
    color: #212529;
    border: 1px solid transparent;
    -webkit-transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
}

.dropdown:hover>.dropdown-menu {
    /*display: block;*/
}

.dropdown .dropdown-item:hover> .dropdown-menu {
    /*display: block;*/
    -webkit-transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
}


.main-header .dropdown-menu a {
    padding: 8px 20px;
    color: #3c3b3b;
    font-size: 15px;
    transition: all .3s ease-in-out;
}

.main-header .dropdown-menu a:hover {
    background: #f5f5f5;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 22px;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
}

.dropdown-submenu:hover> .dropdown-menu {
    /*display: block;*/
    -webkit-transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s;
    transition: opacity .4s ease 0s,transform .4s ease 0s,visibility .4s linear 0s,-webkit-transform .4s ease 0s;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link {
    color: #515151;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link:hover{
    color: #515151!important;
}

.open-offcanvas {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    /*display: none;*/
}

.text-c{
    text-align: center!important;
}

.text-right{
    text-align: right!important;
}

.text-left{
    text-align: left!important;
}

.clip-home {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    position: relative;
}

.curv-img {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 1;
}

/** Banner start **/
#banner {
    position: relative;
}

.banner {
    font-family: 'Poppins', sans-serif;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
}

.banner-bg{
    background: url("../img/img-7.jpeg");
    background-size: cover;
}

.item-bg{
    height: 100vh;
}

.banner-max-height img {
    height: 100% !important;
}

.banner-inner{
    max-width: 630px;
    margin: 80px 0 0;
    text-align: left;
}

.bi-2{
    max-width: 630px;
    margin-right: auto;
    margin-left: auto;
}

.bi-3{
    max-width: 630px;
    margin-left: auto;
    text-align: right;
}

.banner .carousel-content {
    align-self: center !important;
    margin: 0px auto;
    color: #fff;
}

.carousel-item .text-right{
    float: right;
}

.banner .banner-slider-inner h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 400;
    line-height: 50px;
}

.banner .banner-slider-inner .typed-text {
    font-size: 35px;
}

.banner .banner-slider-inner .typed-text span{
    color: #fff!important;
}

.banner p {
    color: #fff;
    letter-spacing: 1px;
    font-size: 19px;
    font-weight: 300;
    line-height: 30px;
    opacity: 0.9;
    margin-bottom: 45px;
    font-family: 'Nunito Sans', sans-serif;
}

.banner .banner-slider-inner {
    display: inline-block;
    text-shadow: none;
    right: 0%;
    left: 0%;
    padding: 15px 15px;
    width: 100%;
    height: 100% !important;
    bottom: 0;
    background-color: rgb(36 42 53 / 55%);
}

.banner .carousel-bg .carousel-item {
    height: 100vh;
    background: #3e4a5b;
}

.banner_video_bg {
    height: auto;
}

.banner_video_bg .carousel-item {
    height: 100vh;
}

#particles-banner {
    width: 100%;
    height: 100vh;
    background-color: rgba(36, 42, 53, 0.7);
    position: absolute;
}

#particles-banner-wrapper .banner-slider-inner {
    background-color: transparent;
}

.banner .btn-md{
    padding: 12px 35px;
}

.banner .slider-mover-left {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 45%;
    display: inline-block;
    left: 5px;
    text-align: center;
    background: rgb(36 42 53 / 40%);
    border-radius: 5px;
}

.banner .slider-mover-left i {
    font-size: 25px;
    line-height: 55px;
    color: #fff;
}

.banner .slider-mover-right {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 45%;
    display: inline-block;
    right: 5px;
    text-align: center;
    background: rgb(36 42 53 / 40%);
    border-radius: 5px;
}

.banner .slider-mover-right i {
    font-size: 25px;
    line-height: 55px;
    color: #fff;
}

.bi-8 {
    position: absolute;
    top: 35%;
    width: 100%;
}

.banner .banner-box {
    text-align: center;
    padding: 30px 30px 50px;
    max-width: 700px;
    margin: 0 auto;
    border: dashed 5px rgba(36, 42, 53, 0.7);
}

.banner .banner-box h1{
    color: #fff;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 400;
    line-height: normal;
}

.banner .carousel-control-next, .carousel-control-prev {
    opacity: 1;
}

/** Sub banner start **/
.sub-banner {
    background: rgba(0, 0, 0, 0.04) url(../img/img-5.jpg) top left repeat;
    background-size: cover;
    height: 355px;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-color: rgba(36, 42, 53, 0.7);
}

.sub-banner .breadcrumb-area {
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

.sub-banner .breadcrumb-area h1 {
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
}

.sub-banner .breadcrumbs li {
    display: inline-block;
    list-style: none;
    font-size: 16px;
}

.sub-banner .breadcrumbs .active {
    margin-left: 7px;
    color: #fff;
}

.sub-banner .breadcrumbs .active:before {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 7px;
    font-weight: 600;
}

.sub-banner .breadcrumbs li a {
    color: #fff;
}

.sub-banner .breadcrumbs li a:hover{
    color: #d4d4d4;
}

/** main title start **/
.main-title {
    text-align: center;
    margin-bottom: 50px;
}

.main-title h1 {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 35px;
    margin-bottom: 15px
}

.main-title p{
    font-size: 18px;
}

.main-title-2 {
    text-align: center;
    margin-bottom: 60px;
}

.main-title-2 h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.main-title-3 h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    margin-bottom: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/** Blockquote start **/
blockquote {
    padding: 15px 20px;
    margin: 0 0 20px;
    background: #f9f6f6;
    border-left: 5px solid #dddddd;
}

.blockquote{
    margin: 0 0 30px;
}

blockquote footer {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 0px;
    color: #000;
}

/** Features info start **/
.features-info {
    padding: 30px 20px;
    margin: 0 auto 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.features-info:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.features-info .icon {
    margin: 0 auto 10px;
}

.features-info .icon i {
    font-size: 40px;
}

.features-info h3 {
    font-size: 20px;
    margin: 10px 0 15px;
    font-weight: 600;
}

.features-info p {
    margin-bottom: 0;
}

/** Services start **/
.services h3 {
    margin-bottom: 25px;
    font-size: 27px;
}

.services p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 27px;
}

.services ul li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #4c4c4c;
    line-height: 40px;
    position: relative;
    padding-left: 60px;
    width: 46%;
    float: left;
    margin-right: 4%;
    border-radius: 3px 50px 50px 3px;
    background: #fff!important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services ul li:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.services ul li a{
    color: #4c4c4c;
}

.services ul li i {
    left: 0;
    width: 40px;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    border-right: solid 1px #e8e8e8;
}

.services-photo {
    max-width: 445px!important;
    margin: auto;
}

/** Team 1 start **/
.team-1 {
    margin: 0 auto 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.team-1:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.team-1 img {
    width: 100%;
}

.team-1 .team-details {
    padding: 25px 20px 20px;
    text-align: center;
}

.team-1 .team-details h5 {
    margin-bottom: 5px;
}

.team-1 .team-details h5 a {
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
}

.team-1 .team-details h5 a:hover {
    color: #3c3b3b;
}

.team-1 .team-details p {
    margin-bottom: 0;
    font-size: 15px;
}

.team-1 .team-photo {
    position: relative;
}

.team-1 .social-list {
    position: absolute;
    top: 15px;
    text-align: center;
    z-index: 20;
    border-radius: 5px 5px 0 0;
    left: 15px;
    width: 44px;
    color: rgb(255, 255, 255);
}

.team-1 .social-list a {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 3px;
    background: rgba(0,0,0,0.3);
}

.team-1 .facebook-bg:hover {
    background: #4867aa!important;
}

.team-1 .twitter-bg:hover {
    background: #56d7fe!important;
}

.team-1 .google-bg:hover {
    background: #dc4e41!important;
}

/** About text start **/
.about-text h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-slider-box img {
    border-radius: 10px;
}

.about-text {
    padding-left: 30px;
}

/** Contact form start **/
.contact-form {
    top: 0;
    width: 100%;
    bottom: 0;
    opacity: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.contact-form .login-inner-form {
    max-width: 450px;
    margin: 0 auto;
    color: #717171;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form .login-inner-form .details {
    padding:40px 30px 30px;
    background: #fff;
    border-radius: 5px 5px 0 0;
}

.contact-form .login-inner-form img {
    margin-bottom: 10px;
    height: 20px;
}

.contact-form .login-inner-form h3 {
    margin: 0 0 30px;
    font-size: 22px;
    font-weight: 600;
}

.contact-form .login-inner-form .form-group {
    margin-bottom: 25px;
}

.contact-form .login-inner-form .input-text {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #cacaca;
    outline: none;
    color: #717171;
    border-radius: 3px;
    height: 55px;
}

.contact-form .login-inner-form .btn-md {
    cursor: pointer;
    padding: 17px 30px 16px 30px;
    letter-spacing: normal;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    border: none;
}

.contact-form .login-inner-form .social-list{
    margin-bottom: 0;
    padding: 0;
}

.contact-form .login-inner-form .checkbox a {
    font-size: 16px;
    color: #717171;
    float: right;
}

.contact-form .checkbox label {
    font-weight: 500;
    color: #717171;
}

.contact-form .checkbox {
    padding-left: 0;
    margin-bottom: 5px;
}

.contact-form .login-inner-form .terms{
    margin-left: 3px;
}

.contact-form .login-inner-form .checkbox {
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-form .login-inner-form .form-check{
    float: left;
    margin-bottom: 0;
}

.contact-form .login-inner-form .form-check a {
    color: #717171;
    float: right;
}

.contact-form .login-inner-form .form-check label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 2px;
    margin-left: -5px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
}

.contact-form .login-inner-form .form-check-label {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.contact-form .login-inner-form input[type=checkbox]:checked + label:before {
    font-weight: 300;
    color: #f3f3f3;
    line-height: 15px;
    font-size: 14px;
    content: "\2713";
}

.contact-form .login-inner-form input[type=checkbox], input[type=radio] {
    margin-top: 0;
    display: none;
}

.contact-form .login-inner-form .social-list li {
    display: inline-block;
    font-size: 16px;
    margin-top: 30px;
}

.contact-form .login-inner-form .social-list li a {
    margin: 2px 0;
    font-size: 18px;
    width: 50px;
    color: #fff;
    height: 50px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
}

.contact-form .login-inner-form .footer {
    font-size: 16px;
    padding: 20px 20px;
    font-weight: 400;
    border-radius: 0 0 5px 5px;
    border-top: solid 1px #e1e0e0;
}

.contact-form .login-inner-form .footer span{
    color: #717171;
}

.contact-form .login-inner-form .footer span a {
    color: #717171;
}

.contact-form .login-inner-form .footer span a:hover{
    color: #737373;
}

.contact-form .login-inner-form button:focus {
    outline: none;
    outline: 0 auto -webkit-focus-ring-color;
}

.contact-form .login-inner-form .btn-theme:not([disabled]):not(.disabled).active, .btn-theme:not([disabled]):not(.disabled):active, .show > .btn-theme.dropdown-toggle {
    box-shadow: none;
}

.contact-form .login-inner-form .btn-theme.focus, .btn-theme:focus {
    box-shadow: none;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 22px;
    left: 4px;
    top: 0px;
    margin-left: -25px;
    border: 2px solid #cccccc;
    border-radius: 50px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.contact-form .login-inner-form .btn-theme:not([disabled]):not(.disabled).active, .btn-theme:not([disabled]):not(.disabled):active, .show > .btn-theme.dropdown-toggle {
    box-shadow: none;
}

/** Pricing start **/
.pricing {
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.pricing:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.pricing .title {
    font-size: 21px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    font-weight: 600;
    color: #2f2f2f;
}

.pricing .content {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.pricing .content ul li {
    padding: 7px 0;
    font-weight: 400;
    font-size: 15px;
    color: #3c3b3b;
}

.pricing .price-for-user {
    padding: 25px 0;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    color: #212529;
}

.pricing .price-for-user .price sup {
    top: -25px;
    left: -3px;
    font-weight: 600;
    font-size: 30px;
    color: #3c3b3b;
}

.pricing .price-for-user .price .dolar {
    font-size: 50px;
    margin-right: 10px;
    font-weight: 700;
}

.pricing .price-for-user .price .month {
    font-size: 15px;
    font-weight: 600;
    color: #3c3b3b;
}

.pricing-btn {
    padding: 5px 30px 3px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 400;
}

.btn-color{
    color: #fff!important;
}

/** Testimonial start **/
.testimonial {
    padding: 100px 0;
    background: url(../img/img-3.jpg);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial:before {
    opacity: 0.8;
    content: "";
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.testimonial .carousel-indicators li.active {
    background: #fff;
}

.testimonial .testimonial-inner .carousel-item {
    margin-bottom: 30px;
}

.testimonial .testimonial-inner .lead {
    font-size: 16px;
    margin: 0;
    color: #3c3b3b;
    font-weight: 500;
}

.testimonial .testimonia-header {
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial .testimonial-inner .testimonia-header h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 35px;
}

.testimonial .sz{
    background: #fff;
    padding: 25px 30px;
    max-width: 450px;
    border-radius: 5px;
    margin: 0 auto 30px;
}

.testimonial .carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: #2f2f2f;
}

.testimonial .carousel-indicators {
    bottom: -15px;
}

.testimonial .media {
    font-size: 14px;
    font-weight: 500;
    color: #757474;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
    max-width: 250px;
    margin: 0 auto;
    text-align: left;
}

.testimonial .media h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.testimonial .media h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #3c3b3b;
}

.testimonial .media img {
    width: 60px;
    border-radius: 50px;
}

.counters {
    padding: 100px 0 60px;
    background: url(../img/img-5.jpg);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.counters::before {
    opacity: 0.8;
    content: "";
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.counter-box {
    margin-bottom: 40px;
}

.counter-box .icon {
    width: 67px;
    border-radius: 2px;
    margin-right: 20px;
    background: #fff;
    height: 67px;
    text-align: center;
    line-height: 70px;
    font-size: 40px;
}

.counter-box .icon i{
    color: #000;
}

.counter-box h2 {
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    font-size: 30px;
}

.counter-box p {
    margin: 0;
    line-height: normal;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

/** Footer start **/
footer {
    padding-top: 80px;
    border-top: solid 1px #f8f8f8;
    background: #f8f8f8;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 7px;
    color: #2f2f2f;
}

.footer .footer-item {
    margin-bottom: 60px;
}

.footer .footer-item .contact-info{
    padding: 0;
}

.footer .footer-inner .links li {
    margin-bottom: 13px;
    font-size: 16px;
}

.footer .footer-inner .links li a {
    color: #3c3b3b;
}

.footer .footer-inner .links li a:hover {
    color: #696b6f;
}

.footer .footer-inner p {
    color: #3c3b3b;
}

.footer .footer-inner .contact-info{
    margin: 0;
}

.footer .footer-inner .contact-info li {
    margin-bottom: 13px;
    font-size: 16px;
    color: #3c3b3b;
    position: relative;
    padding-left: 25px;
}

.footer .footer-inner .contact-info li i{
    left: 0;
    position: absolute;
    line-height: 22px;
}

.footer .footer-inner .contact-info li a {
    color: #3c3b3b;
}

.footer .text{
    margin-right: 30px;
}

.footer .f-logo{
    height: 20px;
    margin-bottom: 30px;
}

.sub-footer .social-list li a {
    margin: 0;
    color: #353535;
    background: #eaeaea;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
}

.sub-footer .social-list li a:hover{
    color: #fff;
}

.sub-footer .social-list{
    float: right;
}

.sub-footer .social-list li{
    display: inline-block;
}

.sub-footer{
    padding: 20px 0;
    border-top: solid 1px #ecebeb;
    background: #f8f8f8;
}

.sub-footer .copy {
    margin: 0;
    font-size: 16px;
    line-height: 40px;
    color: #3c3b3b;
}

.sub-footer .copy a {
    color: #3c3b3b;
}

.sub-footer .f-facebook-bg:hover {
    background: #3b589e;
    color: #fff;
}

.sub-footer .f-twitter-bg:hover {
    background: #56d7fe;
    color: #fff;
}

.sub-footer .f-linkedin-bg:hover {
    background: #1c82ca;
    color: #fff;
}

.sub-footer .f-google-bg:hover {
    background: #dc4e41;
    color: #fff;
}

.sub-footer .f-rss-bg:hover {
    background: #e78701;
    color: #fff;
}

.footer .footer-inner form .form-control {
    width: 80%;
    height: 45px;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    outline: 0;
    border: 1px solid #e0e0e0;
}

.footer .form-inline .btn {
    width: 20%;
    border-radius: 0;
    padding: 13.5px 13px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.s-border {
    width: 50px;
    height: 1px;
    margin-bottom: 2px;
    border-radius: 50px;
    background: #c5c5c5;
}

.m-border {
    width: 25px;
    height: 1px;
    margin-bottom: 30px;
    border-radius: 50px;
    background: #c5c5c5;
}

.footer h4 {
    font-size: 21px;
    margin-bottom: 7px;
    color: #2f2f2f;
}

/** Pages 404 start **/
.pages-404 {
    top: 0;
    width: 100%;
    bottom: 0;
    opacity: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.pages-404 .pages-404-inner h1 {
    font-size: 67px;
    margin-bottom: 30px;
    font-weight: 700;
}

.pages-404 .pages-404-inner p {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 17px;
}

/** Contact 2 start **/
.contact-2 .form-control {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #f9f9f9;
    background: #f9f9f9;
    outline: none;
    color: #717171;
    border-radius: 3px;
    height: 55px;
}

.contact-2 .form-control:focus {
    color: #495057;
    border: 1px solid #f9f9f9;
    background: #f9f9f9;
    outline: 0;
    box-shadow: none;
}

.contact-2 .form-group {
    margin-bottom: 25px;
}

.contact-2 textarea {
    min-height: 215px;
}

.contact-2 .btn-message {
    border-radius: 50px;
    padding: 10px 60px 11px;
}

.contact-2 .contact-info .media {
    margin-bottom: 30px;
}

.contact-2 .contact-info .media i {
    width: 50px;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 1px dashed #2f2f2f;
    text-align: center;
    margin-right: 20px;
    color: #2f2f2f;
}

.contact-2 .btn-md{
    border-radius: 3px;
    padding: 16.5px 45px;
}

.contact-2 .contact-info .media h5 {
    font-weight: 600;
    font-size: 18px;
    font-style: normal;
    margin: 0 0 5px;
}

.contact-2 .contact-info .media p {
    margin-bottom: 0;
}

.contact-info{
    padding: 40px;
    border-radius: 5px;
    margin-left: 50px;
    background: #f9f9f9;
}

.contact-2 .contact-info h3 {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
}

.contact-map {
    height: 350px !important;
}

.contact-map-content .map-content {
    width: 250px;
}

/** Property box start **/
.property-box {
    position: relative;
    overflow: hidden;
    background: white;
}

.property-thumbnail {
    position: relative;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.property-overlay {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-link {
    color: #fff;
    border: 1px solid #FFF;
    border-radius: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    text-align: center;
    margin: 3px;
    cursor: pointer;
    display: none;
}

.overlay-link:not([href]):not([tabindex]),
.overlay-link:not([href]):not([tabindex]):hover {
    color: #fff;
}

.overlay-link:hover {
    color: #fff;
}

.property-thumbnail:hover .property-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.property-thumbnail:hover .overlay-link {
    display: inline-block;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.property-box .property-img {
    position: relative;
    display: block;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.property-box .property-img img{
    width: 100%;
}

/** Blog start **/
.blog {
    margin-bottom: 30px;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.blog.blog-hp .detail {
    padding: 30px 0 20px;
}

.blog .date-box {
    position: absolute;
    top: 15px;
    font-size: 14px;
    border-radius: 5px 5px 5px 0;
    color: #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 10px;
    left: 16px;
}

.blog .date-box::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 20px solid transparent;
    bottom: -10px;
    left: 0;
}

.blog .date-box span {
    font-family: montserrat,sans-serif;
    font-size: 18px;
    display: block;
}

.date-box span {
    font-family: montserrat,sans-serif;
    font-size: 19px;
    display: block;
    line-height: 22px;
    color: #fff;
}

.blog .detail {
    padding: 45px 20px 10px;
    text-align: center;
}

.blog .blog-photo {
    position: relative;
}

.blog .blog-photo img {
    width: 100%;
}

.blog .post-meta {
    width: 100%;
    margin-bottom: 10px;
}

.blog .post-meta {
    position: absolute;
    bottom: -20px;
    font-size: 15px;
    border-radius: 5px;
    width: 90%;
    margin: 0 5%;
    padding: 7px 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog .post-meta span {
    margin: 0 15px 0 0;
    display: inline-block;
    font-size: 14px;
    color: #3c3b3b;
    font-weight: 600;
    line-height: 26px;
}

.blog .post-meta span:last-child{
    margin: 0;
}

.blog .post-meta span i {
    font-size: 14px;
    margin-right: 5px;
    font-weight: 600;
}

.blog .detail h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 27px;
}

.blog .post-meta ul li i {
    margin-right: 5px;
}

.blog .title-3{
    font-size: 18px!important;
    margin-bottom: 10px;
}

.blog-2 .title-2{
    font-size: 25px!important;
}

.blog-2 .detail{
    text-align: left;
    padding: 30px 20px 20px;
}

/** Categories start **/
.category ul li {
    line-height: 40px;
    font-size: 15px;
    font-weight: 400;
}

.category ul li a {
    color: #656565;
}

.category ul li:last-child{
    border: none;
}

span {
    color: #3c3b3b;
}

/** Faq accordion start **/
.faq-accordion{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.faq-accordion .card-header {
    padding: 20px 25px;
    margin-bottom: 0;
    background: #fff;
    border-bottom: 1px solid rgba(107, 107, 107, 0.13);
}

.faq-accordion .p-text{
    padding: 20px;
}

.faq-accordion .card-title{
    color: #2f2f2f;
    font-size: 17px;
}

.faq-accordion .card-header:last-child {
    border-bottom: none;
}

.faq-accordion .card{
    border: none;
}

/** Popular tags start **/
.popular-tags ul li a {
    float: left;
    letter-spacing: 1px;
    border: 1px solid #f3f3f3;
    background: #f3f3f3;
    border-radius: 3px;
    color: #666;
    display: inline-block;
    font-size: 14px;
    margin: 0 3px 5px 0;
    padding: 5px 13px 4px;
    font-weight: 400;
    text-transform: capitalize;
}

/** Tags socal box start **/
.tags-socal-box .social-list {
    float: right;
    text-align: right;
}

.tags-socal-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.tags-socal-box .social-list ul li {
    display: inline-block;
    margin-left: 20px;
}

.tags-socal-box .social-list ul li a {
    color: #3c3b3b;
}

.tags-socal-box .social-list ul li:first-child {
    margin: 0;
}

/** Comment start **/
.comment {
    margin: 0 0 30px 0;
    position: relative;
}

.comment .comment-author {
    height: 60px;
    left: 0;
    position: absolute;
    top: 0;
    width: 60px;
}

.comments ul {
    list-style: none;
    margin: 0 0 0 80px;
    padding: 0;
}

.comment .comment-author a img {
    bottom: 2px;
    display: block;
    height: 60px;
    width: 60px;
    position: absolute;
    top: 0;
}

.comment .comment-content {
    margin-left: 80px;
    padding-bottom: 10px;
    border-bottom: dashed 1px #d6d6d6;
}

.comment .comment-meta-author {
    float: left;
    font-weight: 600;
    font-size: 18px;
}

.comment .comment-meta-reply {
    float: right;
    margin-left: 10px;
    font-size: 13px;
}

.comment .comment-meta-reply a{
    font-weight: 600;
}

.comment .comment-meta-date {
    float: right;
    font-size: 13px;
}

.comment .comment-body {
    margin-top: 5px;
}

.comment .comment-rating {
    color: orange;
    margin-bottom: 5px;
    font-size: 12px;
}

.comment .mrg-bdr {
    margin-bottom: 0;
    border-bottom: none;
    padding: 0;
}

/** Sidebar start **/
.sidebar {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-search {
    position: relative;
}

.form-search .form-control {
    border: 1px solid #cdcdcd;
    height: 50px;
}

.form-search .btn {
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 17px  12px 17px;
}

.show-more-options {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
    cursor: pointer;
}

.widget {
    padding: 30px 20px;
    border-bottom: solid 1px #d1d1d1;
}

.widget-2 {
    border-bottom: none;
}

.sidebar-title {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    color: #37404d;
}

.title-2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #37404d;
}

/** Content area start **/
.content-area {
    padding: 100px 0 70px;
}

.content-area-2 {
    padding: 100px 0;
}

.content-area-3 {
    padding: 100px 0;
}

/** mb **/
.mb-60{
    margin-bottom: 60px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-30{
    margin-bottom: 30px;
}

/** Full page serch start **/
#full-page-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -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;
}

#full-page-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;
}

#full-page-search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 28px;
}

#full-page-search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
}

#full-page-search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 17px;
    outline: 0 auto -webkit-focus-ring-color;
    cursor: pointer;
    border-radius: 3px;
    background: #3a3a3a;
}

/** Protfolio item start **/


/** MEDIA **/
@media (max-width: 992px) {
    .open-offcanvas {
        padding: 18px 15px 15px;
    }

    .navbar-light .navbar-toggler span{
        color: #fff;
    }

    .testimonial .testimonia-header {
        margin: 0 auto 40px;
        font-size: 30px;
    }

    .banner-inner {
        margin: 40px 0 0;
    }

    .open-none{
        display: none;
    }

    .main-header {
        background: #f9f9f8;
    }

    .sub-banner .breadcrumb-area {
        top: 47%;
    }

    .sub-banner .breadcrumb-area h1 {
        font-size: 27px;
    }

    .none-992{
        display: none;
    }

    .banner .banner-slider-inner .typed-text {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 45px;
    }

    .services h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .footer{
        padding-top: 70px;
    }

    .about-text {
        padding: 0;
        margin-top: 30px;
    }

    .about-text h3 {
        margin-bottom: 15px;
        font-size: 25px;
    }

    .contact-2 .contact-info {
        margin: 50px 0 0 0;
    }

    .main-header .navbar-expand-lg .navbar-nav .link-color {
        border-radius: 0;
        margin: 0;
        background: #f9f9f9!important;
        color: #515151;
    }

    .footer .footer-item {
        margin-bottom: 50px;
    }

    .testimonial {
        padding: 80px 0;
    }

    .pages-404 .pages-404-inner h1 {
        font-size: 50px;
    }

    .services .mb-35 {
        margin-bottom: 35px;
    }

    .services .mb-50 {
        margin-bottom: 50px;
    }

    .content-area {
        padding: 80px 0 50px;
    }

    .content-area-2 {
        padding: 80px 0;
    }

    .content-area-3 {
        padding: 80px 0 65px;
    }

    .counters{
        padding: 80px 0 50px;
    }

    .counter-box {
        margin-bottom: 30px;
    }

    .multi-carousel {
        padding: 0 15px 0;
    }

    .navbar-collapse {
        margin: 0px -15px;
        background: #FFF;
        background: #f9f9f9;
    }

    #main-header .navbar-expand-lg .navbar-nav .nav-link {
        color: #000;
    }

    .main-header .navbar-expand-lg .navbar-nav .active .nav-link {
        background: #f9f9f9;
        border-bottom: solid 1px transparent;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link:hover {
        background: #f9f9f9;
    }

    .main-title {
        margin-bottom: 40px;
    }

    .main-title h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .main-title p {
        font-size: 17px;
    }

    .main-title-2 {
        text-align: center;
        margin-bottom: 45px;
    }

    .main-title-2 h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .main-title-3 h1{
        font-size: 42px;
    }

    .banner .banner-slider-inner h1 {
        font-size: 30px;
        margin-bottom: 20px;
        line-height: 45px;
    }

    .banner .banner-box {
        padding: 0;
        border: none;
    }

    .banner .banner-box h1 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .banner .slider-mover-left {
        width: 35px;
        height: 35px;
    }

    .banner .slider-mover-left i {
        font-size: 20px;
        line-height: 35px;
    }

    .banner .slider-mover-right {
        width: 35px;
        height: 35px;
    }

    .banner .slider-mover-right i {
        font-size: 20px;
        line-height: 35px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        font-size: 20px;
        font-weight: 100;
        cursor: pointer;
    }

    .navbar-toggler {
        padding: 0;
        height: 35px;
        font-size: 1rem;
        border-radius: 0;
        outline: none !important;
    }

    .main-header .logo {
        padding: 25px 0;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 11px 15px 9px;
        font-size: 13px;
    }

    .setting-button {
        font-size: 15px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        left: -40px;
    }

    .sidebar-title {
        margin-bottom: 20px;
    }

    .sub-banner {
        height: 300px;
    }

    .blog-2 .detail h3 {
        font-size: 22px;
    }

    .blog-2 .title-2{
        font-size: 22px!important;
    }
}

@media (max-width: 768px) {
    .sub-banner {
        height: 250px;
    }

    .banner .w-100{
        width: auto!important;
    }

    .banner-inner {
        margin: 0;
    }

    .footer{
        padding-top: 60px;
    }

    .sub-footer .social-list {
        float: none;
    }

    .testimonial {
        padding: 60px 0;
    }

    .sub-footer {
        text-align: center;
    }

    .footer .footer-item {
        margin-bottom: 40px;
    }

    .testimonial .testimonia-header {
        margin: 0 auto 30px;
    }

    .counter-box {
        margin: 0 auto 30px;
        max-width: 300px;
    }

    .counters {
        padding: 60px 0 30px;
    }

    .pages-404 .pages-404-inner h1 {
        font-size: 40px;
    }

    .banner p {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .banner h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .comment {
        margin: 0 0 20px 0;
    }

    .comment .comment-content {
        margin-left: 65px;
        padding-bottom: 0;
    }

    .comment .comment-author {
        height: 50px;
        width: 50px;
    }

    .comment .comment-author a img {
        height: 50px;
        width: 50px;
    }

    .blog-2 .detail h3 {
        font-size: 20px;
    }

    .sub-banner .breadcrumb-area h1 {
        font-size: 23px;
    }

    .main-title {
        margin-bottom: 30px;
    }

    .main-title-2 {
        margin-bottom: 30px;
    }

    .main-title-2 h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .main-title-3 h1{
        font-size: 34px;
    }

    .content-area {
        padding: 60px 0 30px;
    }

    .main-title {
        margin-bottom: 30px;
    }

    .content-area-2 {
        padding: 60px 0;
    }

    .content-area-3 {
        padding: 60px 0 45px;
    }

    .comments-section.mb-60{
        margin-bottom: 40px;
    }

    .title-2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .form-group-2{
        margin-bottom: 25px;
    }

    .trile-none{
        display: none;
    }

    .banner .carousel-content{
        padding: 0 50px;
    }

    .multi-carousel .rightLst{
        right: 15px;
    }

    .multi-carousel .leftLst {
        left: 15px;
    }

    .multi-carousel .multi-carousel-inner .item > div img {
        width: auto;
    }

    .tabbing-box .tab-pane {
        padding-top: 0;
    }

    .comments ul {
        margin: 0;
    }

    .tags-socal-box .social-list {
        float: none;
        text-align: left;
        margin-top: 20px;
    }

    .banner .banner-slider-inner {
        top: 0%;
    }

    button:focus {
        outline: 0 auto -webkit-focus-ring-color;
    }

    .login-footer {
        padding: 20px 15px;
        position: inherit;
        left: 0;
        bottom: 0;
    }

    .setting-button {
        font-size: 14px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        left: -35px;
        color: #fff;
    }

    .tabbing-box .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
        padding: 9px 13px;
    }

    .tabbing-box .nav-tabs li {
        font-size: 11px;
    }

    .banner .carousel-content {
        padding: 40px 10px 0;
    }

    .banner-2 .carousel-content {
        padding: 0 10px 0;
    }

    .setting-button{
        display: none;
    }

    .banner_video_bg .carousel-item {
        height: 322px;
    }

    .sub-banner .breadcrumb-area {
        top: 50%;
    }
}

@media (max-width: 580px) {
    .comment-meta-date{
        display: none;
    }

    .contact-form .login-inner-form .details{
        padding: 30px 20px;
    }

    .contact-form .login-inner-form h3 {
        font-size: 20px;
    }

    .banner_video_bg .carousel-item {
        height: 263px;
    }

    .box-shadow {
        box-shadow: none;
    }

    .main-header .logo {
        margin-right: 20px;
    }

    .banner .banner-slider-inner {
        padding: 10px 5px;
        top: 0%;
    }

    .navbar-toggler {
        width: 30px;
        height: 30px;
    }

    .sidebar {
        background: transparent;
    }

    .carousel-inner img {
        width: 100%;
    }
}

@media (min-width: 991px) {
    .banner img {
        /*animation: bgburnsEast 25s linear infinite alternate;*/
        /*-webkit-animation: bgburnsEast 25s linear infinite alternate;*/
    }

    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown .dropdown-item:hover> .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover> .dropdown-menu {
        display: block;
    }

    .sticky-header .navbar-expand-lg .navbar-nav .nav-link {
        color: #fff;
    }
}


.sticky-header {
    position: fixed;
    background: transparent;
    top: 0px;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid rgba(220, 220, 220, .2);
}

.sticky-header .nav-link::after {
    display: none !important;
}

.do-sticky .nav-link::after {
    display: none !important;
}

.do-sticky-2 .nav-link::after {
    display: none !important;
}

.sticky-header .open-offcanvas {
    color: #fff;
    display: inline-block;
}

.sticky-header-scroll{
    z-index: 999;
}

.fixed{
    position: fixed;
    top:0; left:0;
    width: 100%;
}

.header-shrink {
    background: #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    top: 0px !important;
}

.header-shrink .navbar-expand-lg .navbar-nav .nav-link {
    color: #515151;
}

.header-shrink .open-offcanvas {
    color: #515151;
}

.header-shrink .open-offcanvas i{
    color: #fff;
}

.hide-carat .nav-link::after {
    display: none !important;
}

.sticky-header .open-offcanvas{
    color: #fff;
}

@media (min-width: 992px){
    .header-shrink .link-color {
        background: #f1f1f1!important;
    }
}
