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

Project: Lifetime
Version: 1.1.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]
    *. Header / .main-header
    *. Banner / .banner
    *. About / .about
    *. Counters / .counters
    *. Pricing Tables / .pricing-tables
     *. Speakers / .speakers
    *. Gallery / .gallery
    *. Latest News / .latest-news
    *. Testimonial / .testimonial
    *. Partners / .partners
    *. Contact / .contact
    *. Footer / .footer
     *. Sub Footer / .sub-footer
-------------------------------------------------------------------*/
/** GLOBAL CLASSES **/

body {
    position: relative;
    font-family: 'Mulish', sans-serif;
    color: #535353;
}

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

.bg-grea {
    background: #fbfbfb;
}

.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: #535353;
}

a {
    color: #000;
    text-decoration: none;
}

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

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

p {
    font-size: 15px;
    line-height: 26px;
    color: #535353;
}

 h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #000;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.btn-md {
    cursor: pointer;
    padding: 13px 30px 11px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3px;
}


/** BTN 1 **/
.btn-1 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    height: 55px;
    color: #ffffff;
    padding: 0 50px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 3px;
    overflow: hidden;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-1:hover {
    color: #fff;
}

.btn-1:hover::before {
    left: 0%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-1:before {
    position: absolute;
    content: '';
    left: 92%;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    background-color: #e20136;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    transform: skewX(-25deg);
}

.btn-1 span {
    position: relative;
    z-index: 1;
}

/** BTN 2 **/
.btn-2 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    text-transform: capitalize;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    padding: 15px 40px 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    color: #000!important;
    background: #fff;
    border-radius: 0!important;
    border: none;
}

.btn-2:hover {
    color: #ffffff!important;
}

.btn-2:hover:after {
    transform: perspective(200px) scaleX(1.05) rotateX(0deg) translateZ(0);
    transition: transform 0.4s linear, transform 0.4s linear;
}

.btn-2:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    transform: perspective(200px) scaleX(0.1) rotateX(90deg) translateZ(-10px);
    transform-origin: bottom center;
    transition: transform 0.4s linear, transform 0.4s linear;
    z-index: -1;
}

.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 {
    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;
}

.btn-color, .btn-color:hover {
    color: #fff;
}

/*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: 24px;
    height: 24px;
    float: left;
    margin: 3px;
    border-radius: 3px;
    cursor: pointer;
}

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

.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;
    display: none;
}
/** 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 **/
.read-more {
    font-weight: 600;
    font-size: 15px;
}

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

.button-theme:hover{
    color: #fff;
}

/** text start **/
.text-c {
    text-align: center;
}

.text-l {
    text-align: left;
}

.text-r {
    text-align: right;
}

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

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

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

.google:hover {
    color: #dc4e41;
}

.youtube:hover{
   color: #FF0000;
}

.rss:hover {
    color: yellow;
}

/** Top header start **/
.top-header{
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid rgba(220, 220, 220, .2);
}

.top-header.bg-active{
    background: #171C26;
}

.top-header .list-inline {
    padding: 13px 0;
}

.list-inline a {
    color: #fff;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.top-header .list-inline a:last-child{
    margin-right: 0;
}

.list-inline a i {
    margin-right: 5px;
}

.top-header ul li {
    padding: 0 10px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    color: #aaa;
    font-size: 14px;
}

.top-header ul li:last-child{
    padding-right: 0;
}

.top-header .sign-in, .top-header .sign-in:hover {
    line-height: 36px;
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.top-header ul li a {
    color: #fff;
}

/** 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;
}

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

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

.main-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 38px 14px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-header .navbar-expand-lg .navbar-nav .c-us{
    padding-right: 0;
}

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

.main-header .logo {
    padding: 19px 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: 9px 20px;
    color: #535353;
    font-size: 14px;
    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;
    letter-spacing: normal;
}

.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;*/
}

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

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

.banner-bg {
    background: url(../img/banner/img-3.jpg);
    background-size: cover;
}

.item-bg{
    height: 100vh;
}

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

.banner .banner-slider-inner h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: normal;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.banner .banner-slider-inner p {
    color: #fff;
    font-size: 18px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 30px;
}

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

.banner .banner-slider-inner {
    display: inline-block;
    text-shadow: none;
    right: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: rgba(36, 42, 53, 0.31);
}

.banner .bsi {
    background-color: rgba(36, 42, 53, 0.64);
}

.banner .bsi-2 {
    background-color: rgba(36, 42, 53, 0.64);
}

.banner .bsi-3 {
    background-color: rgba(36, 42, 53, 0.48);
}

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

.banner_video_bg {
    height: auto;
}

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

.banner .banner-inner{
    max-width: 750px;
    margin:0 auto;
}

#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 .carousel-content {
    align-self: center !important;
    margin: 0 auto;
    color: #fff;
    padding: 100px 10px 0;
}

/** main title start **/
.main-title {
    text-align: center;
    margin:0 auto 50px;
    max-width: 600px;
}

.main-title h1 {
    font-size: 33px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.main-title-2 {
    text-align: left;
    margin:0;
    max-width: 600px;
}

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

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

/** About start **/
.about img{
    width: 100%;
}

.about .about-photo{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.about .about-photo::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 200%;
    top: -100px;
    left: -100px;
    transform: rotate(-30deg
    );
}

.about .about-photo img {
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.about-info{
    margin-left: 15px;
}

/** Why choose us start **/
.about-service-info{
    margin-bottom: 25px;
}

.about-service-info h4 {
    font-size: 19px;
    margin: 5px 0 10px;
}

.about-service-info p {
    font-weight: 500;
}

.about-service-info p {
    margin-bottom: 0;
    font-size: 15px;
}

.about-service-info i {
    font-size: 40px;
}

.about-service-info .media-left{
    width: 90px;
    height: 90px;
    background: #fff;
    line-height: 100px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-right: 20px;

    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
    display: inline-block;
    vertical-align: middle;
}

.about-service-info:hover .media-left {
    transform: rotateY(360deg);
}

.about-service-info:hover i {
    color: #fff;
}

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

.blockquote {
    margin: 0 0 30px;
}

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

/** COUNTERS **/
.counters {
    z-index: 0;
    position: relative;
    background: url(../img/img-1.png);
    z-index: 0;
}

.counters:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to right, #212529 0%, #495057 30%, rgba(20, 20, 51, 0.7) 60%, rgb(20, 20, 51) 100%);
}

.counters .counter-box {
    text-align: center;
    padding: 100px 0;
    transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.counters .counter-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.counters .border-l {
    border-left: solid 1px #ffffff2e;
}

.counters .border-r {
    border-right: solid 1px #ffffff2e;
}

.counters .counter-box i {
    font-size: 55px;
    color: #fff;
    line-height: inherit;
    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
    display: inline-block;
    vertical-align: middle;
    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.counters .counter-box:hover i {
    transform: rotateY(360deg);
}

.counters .counter-box h1 {
    font-weight: 700;
    margin: 10px 0 15px;
    font-size: 30px;
}

.counters .counter-box h5 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

/** BLOG STARTED **/
.blog {
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 2;
    background: #fff;
    border: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    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-photo {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog .blog-photo img {
    width: 100%;
    transform: scale(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
}

.blog:hover .blog-photo .overlay-icon {
    transform: perspective(400px) scaleY(1.0);
}

.blog .blog-photo .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: .9s;
    transform: perspective(400px) scaleY(0);
    transform-origin: bottom;
}

.blog .blog-photo .overlay-icon a {
    position: relative;
    display: inline-block;
}

.blog .blog-photo .overlay-icon span {
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
}

.blog .blog-photo::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgb(12 62 185 / 51%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.blog:hover .blog-photo img {
    transform: scale(1.2) rotate(1deg);
}

.blog:hover .blog-photo::after {
    opacity: 0.9;
    transform: scaleY(1.0);
}

.blog .detail {
    position: relative;
    display: block;
    border: none;
    border-top: none;
    padding: 32px 35px 32px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog .title {
    position: relative;
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.blog .title::before {
    position: absolute;
    top: 0;
    left: -35px;
    width: 3px;
    height: 100%;
    content: "";
}

.blog .post-meta li {
    position: relative;
    float: left;
    color: #535353;
    font-size: 15px;
    margin-right: 30px;
}

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

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

.blog .post-meta li a{
    color: #535353;
}

.blog .post-meta {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 13px;
}

/** Blog big start **/
.blog-big{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1)!important;
}

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

.blog-big .detail {
    padding: 35px 25px 15px;
}

.blog-big .detail h3{
    font-size: 22px;
    margin: 0 0 15px;
}

.blog-big .post-meta {
    margin: 0 0 15px;
}

/** TESTIMONIAL STARTED **/
.testimonial{
    padding: 100px 0;
}

.testimonial .testimonial-info{
    background: #fff;
    margin: 0 1px;
    padding: 30px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.testimonial .testimonial-info .photo img{
    width: 100%;
}

.testimonial .testimonial-info .detail {
    padding: 20px 25px 10px;
    text-align: center;
}

.testimonial .carousel-indicators {
    bottom: 0px;
    margin: 0;
}

.testimonial .testimonial-info .testimonial-inner .avatar {
    max-width: 85px;
    margin: 0 auto 30px;
    border-radius: 100px;
}

.testimonial .testimonial-info .testimonial-inner{
    max-width: 530px;
    margin: 0 auto;
}

.testimonial .testimonial-info .testimonial-inner .avatar img {
    width: 100%;
    border-radius: 100px;
}

.testimonial .testimonial-inner h4{
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 5px;
    color: #000;
}

.testimonial .testimonial-info p {
    margin-bottom: 30px;
    font-size: 16px;
}

.testimonial .testimonial-info .testimonial-inner .testimonia-header h1 {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
}

.testimonial .testimonial-info .carousel-indicators li {
    width: 20px;
    height: 8px;
    background-color: #8a8989;
    border-radius: 2px;
}

.testimonial .testimonial-info.carousel-indicators {
    bottom: 0;
}

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

.sidebar-title {
    font-size: 20px;
    position: relative;
    margin: 0 0 25px;
    color: #000;
}

.widget {
    padding: 30px 25px;
    border-bottom: solid 1px #efefef;
}

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

/** Posts by category start**/
.posts-by-category ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

.posts-by-category ul li {
    margin-bottom: 10px;
}

.posts-by-category ul li a span {
    float: right;
}

.posts-by-category ul li a {
    color: #535353;
    font-size: 15px;
}

.latest-tweet p {
    margin-bottom: 0;
}

.heading-2 {
    margin: 0 0 25px;
    font-size: 22px;
    color: #000;
}

/** Tags box start**/
.tags-box ul li {
    display: inline-block;
}

.tags-box ul li a {
    border: 1px solid #f9f9f8;
    background: #f9f9f8;
    color: #535353;
    display: inline-block;
    font-size: 14px;
    margin: 0 0 5px;
    padding: 5px 13px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
}

.tags-box ul li a:hover {
    color: #fff;
}

/** Form search start**/
.form-search .form-group, .form-search .form-control {
    width: 100%;
}

.form-search .form-control {
    box-shadow: none;
    border: 1px solid #F7F7F7;
    background: #F7F7F7;
    border-radius: 3px;
    height: 45px;
}

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

.form-search {
    position: relative;
}

/**  Comments start **/
.comments {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin: 0 0 30px 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

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

.comment-author a img {
    bottom: 2px;
    border-radius: 5px;
    display: block;
    width: 100%;
    position: absolute;
    top: 2px;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, .4);
}

.comment-content {
    margin: 0 0 0 80px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.comment p{
    margin-bottom: 0;
    font-size: 15px;
}

.comment-content h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.comment-content h6 span{
    font-weight: 400;
    font-size: 15px;
}

.comment-content h6 span a{
    margin-left: 10px;
    text-transform: uppercase;
}

.comment-content h6 span a:hover{
    color: #535353!important;
}

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

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

/** FOOTER STARTED **/
footer.footer {
    padding: 100px 0 50px;
    background: url(../img/footer.png);
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background: #fbfbfb;
}

.footer h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
}

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

.footer .footer-inner .links li {
    margin-bottom: 15px;
    position: relative;
    line-height: 20px;
    font-size: 15px;
}

.footer .footer-inner .links li .link-inner {
    display: inline-block;
    transition: all 0.5s;
    cursor: pointer;
    color: #535353;
    position: relative;
    line-height: 20px;
    font-size: 15px;
}

.footer .footer-inner .links li .link-inner:hover{
    color: #000;
}

.footer .footer-inner .links li .link-inner span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.footer .footer-inner .links li .link-inner span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
}

.footer .footer-inner .links li .link-inner:hover span {
    padding-left: 15px;
}

.footer .footer-inner .links li .link-inner:hover span:after {
    opacity: 1;
    left: 0;
}

.footer .footer-inner p {
    color: #535353;
}

.footer .footer-inner .contact-info{
    margin-bottom: 30px;
}

.footer .footer-inner .contact-info li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #535353;
    font-weight: 400;
}

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

.footer .footer-inner .social-list li a {
    font-size: 16px;
    float: left;
    margin:0 5px 5px 0;
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
}

.footer .copy {
    padding: 20px 0;
    margin: 30px 0 0;
    text-align: center;
    font-size: 15px;
    color: #535353!important;
    border-top: solid 1px #dcdcdc;
}

.footer .copy a {
    color: #535353;
}

.footer .footer-inner .gallery li {
    float: left;
}

.footer .footer-inner .gallery li img {
    margin: 0 10px 10px 0;
    width: 70px;
    border-radius: 100px;
}

.footer .popular-posts a {
    color: #535353;
}

.footer .fi2{
    margin-right: 50px;
}

.footer .popular-posts p {
    font-weight: 400;
    font-size: 13px;
}

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

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

.google-bg {
    background: #dc4e41;
}

.rss-bg {
    background: #e78733;
}

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

.facebook-bg:hover {
    background: #3b589e!important;
    color: #fff;
}

.twitter-bg:hover {
    background: #4acdf5!important;
    color: #fff;
}

.google-bg:hover {
    background: #d04538!important;
    color: #fff;
}

.rss-bg:hover {
    background: #d4792a!important;
}

.linkedin-bg:hover {
    background: #1674b7!important;
    color: #fff;
}

.subscribe-box-2{
    margin: 20px 0;
}

.subscribe-box-2 .form-inline {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.subscribe-box-2 .form-control {
    width: 80%;
    height: 50px;
    padding: 10px 25px 10px 25px!important;
    font-size: 15px;
    outline: 0;
    border-radius: 3px 0 0 3px;
    border: transparent;
}

.subscribe-box-2 .form-inline .btn {
    width: 20%;
    padding: 14.5px 13px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 3px 3px 0;
    color: #fff;
    cursor: pointer;
}

/** Sub footer start **/
.sub-footer{
    background: #fbfbfb;
    padding: 35px 0;
    text-align: center;
    border-top: solid 1px #7d7b7b2e;
}

.sub-footer p{
    color: #535353;
    margin-bottom: 0;
}

.sub-footer p a{
    color: #535353;
}

.sub-footer p a:hover{
    color: #000;
}

/** Recent posts start **/
.recent-posts .media h5 {
    margin-bottom: 5px;
    font-weight: 400;
}

.recent-posts .media h5 a {
    font-size: 18px;
    color: #535353;
}

.recent-posts .media h5 a:hover{
    color: #000;
}

.recent-posts .media img {
    width: 65px;
    border-radius: 3px;
    margin-right: 15px;
}

.recent-posts .media p {
    margin: 0;
    font-size: 14px;
}

.recent-posts .media p strong {
    font-weight: 500;
}

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

.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 {
    border: 1px solid #FFF;
    background: #FFF;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #000;
    font-size: 18px;
    text-align: center;
    border-radius: 5%;
    margin: 3px;
    cursor: pointer;
    display: none;
}

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

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

.property-thumbnail:hover .property-overlay {
    background: rgb(12 62 185 / 51%);
}

.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;
}

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

/** Pricing start **/
.pricing {
    position: relative;
    z-index: 9;
    -webkit-transition: .9s;
    transition: .9s;
    overflow: hidden;
    border-radius: 9px;
    text-align: center;
    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:hover:before {
    width: 100%;
}

.pricing::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    -webkit-transition: .9s;
    transition: .9s;
    border-radius: 9px;
}

.pricing:hover h3{
    color: #fff;
}

.pricing:hover .content ul li{
    color: #fff;
}

.pricing:hover .price-heading .price .dolar{
    color: #fff;
}

.pricing:hover .price-heading{
    color: #fff;
}

.pricing:hover .price-heading .price .dolar.active{
    color: #fff;
}

.pricing:hover .btn-outline {
    border: solid 1px #fff;
    color: #fff;
}

.pricing:hover .btn-outline:hover {
    border: solid 1px #fff;
    background: #fff;
}

.pricing:hover .button-theme {
    background: #fff;
}

.pricing:hover .price-heading {
    border-bottom: 1px solid #eaeaea85;
}

.pricing .pricing-btn {
    border-radius: 3px !important;
}

.pricing h3 {
    font-size: 18px;
    font-weight: 500;
    color: #535353;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

.pricing .content ul li {
    padding: 7px 0;
    font-size: 16px;
    color: #535353;
}

.pricing .price-heading {
    padding: 35px 0 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    color: #535353;
}

.pricing .button {
    padding: 25px 0;
}

.pricing .price-heading .price .dolar {
    font-size: 50px;
    margin-right: 5px;
    font-weight: 700;
    color: #000;
}

.pricing .price-heading .price .month {
    font-size: 15px;
    font-weight: 600;
}

.pricing .price-heading .price sup {
    top: -25px;
    left: -3px;
    font-size: 30px;
    font-weight: 600;
}

.pricing .btn {
    border-radius: 3px;
    padding: 7px 30px 7px;
}


.pricing.boxed--emphasis {
    transform: scale(1.090);
    -webkit-transform: scale(1.090);
    margin: 0 15px 0;
}

.pricing.boxed--emphasis .content ul li {
    padding: 8px 0;
    font-size: 15px;
}

/** Tab-box Start **/
.tab-box .nav-pills .nav-link {
    display: block;
    padding: 10px 25px;
    width: 110px;
    border-radius: 0;
    background: #ececec;
}

.tab-box .btn-section{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 220px;
    border-radius: 50px;
}

.tab-box .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #fff;
}

.tab-box .btn-monthly {
    border-radius: 50px 0 0 50px!important;
}

.tab-box .btn-yearly {
    border-radius: 0 50px 50px 0!important;
}

/** Partners Start **/
.partners {
    padding: 50px 0;
    text-align: center;
    background: #f5eeee;
}

.partners .multi-carousel {
    float: left;
    overflow: hidden;
    padding: 0 15px 0;
    width: 100%;
    position: relative;
}

.partners .multi-carousel .multi-carousel-inner {
    transition: 1s ease all;
    float: left;
}

.partners .multi-carousel .multi-carousel-inner .item {
    float: left;
    cursor: pointer;
}

.partners .multi-carousel .multi-carousel-inner .item > div {
    padding: 0 10px;
    margin: 5px 10px;
    text-align: center;
    background: #fff;
}

.partners .multi-carousel .multi-carousel-inner .item > div .carousel-img {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.partners .multi-carousel .multi-carousel-inner .item > div img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.partners .multi-carousel .multi-carousel-inner img {
    padding: 20px;
}

.partners.pts .multi-carousel .multi-carousel-inner img {
    padding: 0 20px;
    height: 60px;
}

.partners .multi-carousel .multi-carousel-inner .item:hover img {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.partners .multi-carousel .leftLst, .multi-carousel .rightLst {
    position: absolute;
    top: calc(50% - 20px);
}

.partners .multi-carousel-indicator {
    width: 35px;
    height: 35px;
    line-height: 35px;
    z-index: 5;
    display: inline-block;
    right: 10px;
    text-align: center;
    background: #fff;
    border-radius: 5%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

.partners .multi-carousel .rightLst {
    right: 10px;
}

.partners .multi-carousel .leftLst {
    left: 10px;
}

.partners .multi-carousel .leftLst.over, .multi-carousel .rightLst.over {
    pointer-events: none;
    background: #fff;
    border: none;
}


/** Slick slider start**/
.slick-slider-area {
    position: relative;
}

.slick-slide-item {
    padding: 0 15px;
}

.slick-arrow-buton {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: 43%;
    font-size: 20px;
    border-radius: 3px;
    position: absolute;
    cursor: pointer;
    color: #000;
    z-index: 9;
    background: #fff;
    cursor: pointer;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.slick-arrow-buton:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
}

.slick-next {
    right: -15px;
}

.slick-prev {
    left: -15px;
}

.slick-slide, .slick-slide:focus * {
    outline: none !important;
}

*:focus {
    outline: none !important;
}

/** Slick btn start **/
.slick-btn {
    text-align: center;
    max-width: 70px !important;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
}

.slick-btn .sab-4 {
    border-radius: 50px 0 0 50px;
}

.slick-btn .slick-arrow-buton-2:last-child {
    border: none;
}

.slick-btn .sab-3 {
    border-radius: 0 50px 50px 0;
}

.slick-btn .slick-arrow-buton-2 {
    width: 50px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    text-align: center;
    display: block;
    float: left;
    border-right: solid 1px #e4e4e4;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    background: white;
    font-size: 20px;
    position: absolute;
    bottom: 12px;
}

.slick-next {
    right: -15px;
}

.slick-prev {
    left: -15px;
}

/** Team start **/
.team{
    background: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

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

.team .photo {
    position: relative;
}

.team .photo img {
    width: 100%;
}

.team .photo .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(12 62 185 / 51%);
    padding: 8px;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all 500ms ease 0s;
}

.team .photo .overlay .border {
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e642!important;
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.team .photo .overlay .border .icon-holder {
    width: 50px;
    height: 50px;
    background: #fff;
    margin: 4px;
    border-radius: 50%;
    transition: all 500ms ease 0s;
}

.team .photo .overlay .border .icon-holder a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    color: #272727;
    border-radius: 5%;
    line-height: 50px;
    transition: all 500ms ease 0s;
    background: #fff;
}

.team .photo .overlay .border .icon-holder a i{
    line-height: 50px!important;
}

.team .photo .overlay .border .icon-holder a:hover{
    color: #fff;
}

.team .content {
    transition: .5s;
    padding: 25px;
    text-align: center;
}

.team .content h4 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
}

.team .content p {
    margin-bottom: 0;
    font-size: 16px;
}

.team:hover .photo .overlay {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

/** Sub banner start **/
.sub-banner {
    background: rgba(0, 0, 0, 0.04) url(../img/img-1.png) top left repeat;
    height: 420px;
    position: relative;
    text-align: center;
}

.sub-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(to right, #212529 0%, #495057 30%, rgba(20, 20, 51, 0.7) 60%, rgb(20, 20, 51) 100%);
}

.sub-banner .breadcrumb-area {
    position: absolute;
    top: 55%;
    right: 0;
    left: 0;
}

.sub-banner .breadcrumb-area h1 {
    margin: 0 0 7px;
    font-weight: 600;
    color: #fff;
    font-size: 27px;
    text-transform: uppercase;
}

.sub-banner .breadcrumbs li {
    display: inline-block;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    font-family: 'Mulish', sans-serif;
}

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

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

.sub-banner .breadcrumbs li {
    display: inline-block;
    list-style: none;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    font-family: 'Mulish', sans-serif;
}

.sub-banner .breadcrumbs .active:before {
    margin-right: 7px;
    content: "/";
    padding: 0 3px;
    color: #fff;
    font: normal normal normal 16px/1 FontAwesome;
}
/** Contact start **/
.contact .form-control {
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
    outline: 0;
    height: 55px;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
}

.contact .form-control:focus {
    color: #495057;
    outline: 0;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
}

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

.contact .contact-inner-2 {
    background: #fff;
    margin: 0 1px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact textarea {
    min-height: 150px;
}

.contact .form{
    padding: 60px;
    border-right: solid 1px #e6e6e6;
}

.date-box span {
    font-size: 19px;
    display: block;
    line-height: 22px;
}

.contact .contact-inner {
    margin: 0 1px;
    position: relative;
    position: relative;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact .contact-info{
    padding: 60px 60px 60px 30px;
}

.contact .col-pad{
    padding: 0;
}

.cf2{
    padding: 0;
}

.contact-now {
    margin: 0 0 25px 0;
    position: relative;
}

.contact-now .icon {
    position: absolute;
    top: 0;
}

.contact-now p{
    margin-bottom: 0;
}

.contact-now.cn2{
    margin-bottom: 0;
}

.contact-now i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 27px;
    text-align: center;
    background: #f1f1f1;
}

.contact-now .detail {
    margin: 0 0 0 75px;
}

.contact-now h5 {
    font-weight: 400;
    color: #000;
    font-size: 18px;
    margin: 5px 0 5px;
}

.contact-now p a{
    color: #535353;
}

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

.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;
}

.content-area-4 {
    padding-top: 100px;
}

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

.content-area-6 {
    padding: 125px 0;
}

.content-area-7 {
    padding: 70px 0;
}

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

/** Dark demo **/
.dark-demo {
    background: #2b2c2c;
}

.dark-demo ul {
    color: #9f9f9f;
}

.dark-demo .pricing .price-header .title {
    color: #9f9f9f;
}

.dark-demo .pricing .price-header .price {
    color: #cccccc;
}

.dark-demo .subscribe-box-2 .form-control {
    background: #303131;
}

.dark-demo .blog .detail h3 a{
    color: #cccccc;
}

.dark-demo .blog .detail h3 a:hover{
    color: #9f9f9f;
}

.dark-demo .team .details h5 a{
    color: #cccccc;
}

.dark-demo .team .details h5 a:hover{
    color: #9f9f9f;
}

.dark-demo a {
    color: #9f9f9f;
}

.dark-demo a:hover {
    color: #fff;
}

.dark-demo p {
    color: #9f9f9f;
}

.dark-demo .sub-footer p {
    color: #9f9f9f;
}

.dark-demo .blog .post-meta li {
    color: #9f9f9f;
}

.dark-demo .blog .post-meta li a{
    color: #9f9f9f;
}

.dark-demo .partners {
    background: #3a3a3a;
}

.dark-demo .contact .form {
    border-right: solid 1px #e6e6e62e;
}

.dark-demo .team{
    background: #2b2c2c;
}

.dark-demo .sub-footer p a {
    color: #9f9f9f;
}

.dark-demo h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #cccccc;
}

.dark-demo .about-service-info .media-left {
    background: #303131;
}

.dark-demo .about .about-photo {
    background: #303131;
}

.dark-demo .blog {
    background: #2b2c2c;
}

.dark-demo .testimonial .testimonial-inner .content-box .testimonial-info {
    background: #303131;
}

.dark-demo .contact .contact-inner {
    background: #2b2c2c;
}

.dark-demo .tab-box .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #303131;
}

.dark-demo .tab-box .nav-pills .nav-link {
    background: #2b2c2c;
}

.dark-demo .partners .multi-carousel .multi-carousel-inner .item > div {
    background: #303131;
}

.dark-demo .partners .multi-carousel .multi-carousel-inner .item > div img{
    height: 90px;
}

.bg-dark-2{
    background: #2b2c2c;
}

.dark-demo .bg-dark{
    background: #303131!important;
}

.dark-demo .pricing {
    background: #303131;
}

.dark-demo .btn-outline:hover{
    color: #fff;
}

.dark-demo .pricing h3 {
    color: #cccccc;
}

.dark-demo .pricing .content ul li {
    color: #9f9f9f;
}

.dark-demo .pricing:hover .content ul li{
    color: #fff;
}

.dark-demo .pricing:hover h3{
    color: #fff;
}

.dark-demo .pricing:hover .price-heading .price .dolar {
    color: #fff;
}

.dark-demo .pricing:hover .price-heading {
    color: #fff;
}

.dark-demo .pricing:hover .price-heading {
    border-bottom: 1px solid #3333332b;
}

.dark-demo .pricing .price-heading .price .dolar {
    color: #cccccc;
}

.dark-demo .button-theme {
    color: #fff;
}

.dark-demo .contact-now h5 {
    color: #cccccc;
}

.dark-demo .pricing .price-heading{
    border-bottom: 1px solid #eaeaea1f;
}

.dark-demo .pricing .content {
    border-bottom: 1px solid #eaeaea1f;
}

.dark-demo .pricing:hover .content {
    border-bottom: 1px solid #3333332b;
}

.dark-demo .contact-now p a {
    color: #9f9f9f;
}

.dark-demo .contact-now i {
    background: #303131;
}

.dark-demo .testimonial .testimonial-inner h4 {
    color: #cccccc;
}

.dark-demo .pricing .price-heading {
    color: #9f9f9f;
}

.dark-demo .blog .post-meta ul li a {
    color: #9f9f9f;
}

.dark-demo .testimonial .testimonial-info {
    background: #303131;
}

.dark-demo .slick-arrow-buton {
    color: #9f9f9f;
    background: #2b2c2c;
}

.dark-demo .team .team-inner {
    background: #303131;
}

.dark-demo .team::before {
    background: #2b2c2c;
}

.dark-demo .partners .multi-carousel-indicator {
    background: #303131;
}

.dark-demo .partners .multi-carousel .leftLst.over, .multi-carousel .rightLst.over {
    background: #303131;
}

.dark-demo .contact .form-control {
    border: 1px solid #303131;
    background: #303131;
}

.dark-demo .testimonial .testimonial-inner .content-box .rating span{
    color: #9f9f9f;
}

.dark-demo .list-inline a {
    color: #fff;
    opacity: 0.9;
}

.dark-demo footer.footer {
    background-color: #2b2c2c;
}

.dark-demo .sub-footer {
    background: #2b2c2c;
}

.dark-demo .footer a {
    color: #9f9f9f;
}

.dark-demo .footer .footer-inner .links li a {
    color: #9f9f9f;
}

.dark-demo .recent-posts .media h5 a {
    color: #9f9f9f;
}

.dark-demo .recent-posts .media h5 a:hover{
    color: #cccccc;
}

.dark-demo .footer .footer-inner .links li a:hover{
    color: #cccccc;
}

.dark-demo .footer .footer-inner .contact-info li {
    color: #9f9f9f;
}

.dark-demo .footer p {
    color: #9f9f9f;
}

.dark-demo .footer .footer-inner .contact-info li a {
    color: #9f9f9f;
}

.dark-demo .footer h4 {
    color: #cccccc;
}

.dark-demo .blog-big {
    background: #2b2c2c;
}

.dark-demo .sidebar-right {
    background: #303131;
}

.dark-demo .widget {
    border-bottom: solid 1px #414444;
}

.dark-demo .sidebar-title {
    color: #cccccc;
}

.dark-demo .posts-by-category ul li a {
    color: #9f9f9f;
}

.dark-demo .tags-box ul li a {
    border: 1px solid #2b2c2c;
    background: #2b2c2c;
    color: #9f9f9f;
}

.dark-demo .comment-content {
    background: #303131;
}

.dark-demo .blog-big {
    background: #303131;
}

.dark-demo .heading-2 {
    color: #cccccc;
}

.dark-demo .comment-content h6 {
    color: #cccccc;
}

.dark-demo .tags-box ul li a:hover {
    color: #fff;
}

.dark-demo .form-search .form-control {
    border: 1px solid #2b2c2c;
    background: #2b2c2c;
}

.dark-demo.dd2 footer.footer {
    background-color: #303131;
}

.dark-demo.dd2 .sub-footer {
    background: #303131;
}

.dark-demo.dd2 .subscribe-box-2 .form-control {
    background: #2b2c2c;
}

.dark-demo .facebook:hover {
    color: #3b589e;
}

.dark-demo .twitter:hover {
    color: #56d7fe;
}

.dark-demo .linkedin:hover {
    color: #1c82ca;
}

.dark-demo .google:hover {
    color: #dc4e41;
}

.dark-demo .youtube:hover{
    color: #FF0000;
}

.dark-demo .rss:hover {
    color: yellow;
}

.dark-demo .btn-color {
    color: #fff;
}

.dark-demo .overlay-link {
    color: #000;
}

.light-demo .testimonial .testimonial-inner .content-box h3 {
    color: #000;
}

.light-demo .about-service-info h4 {
    color: #000;
}

/** 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;
}

/** Sidebar nav start **/
.sidebar-logo{
    padding: 20px 30px;
    border-bottom: solid 1px #00000024;
}

.sidebar-logo img{
    width: 100px;
}

.nav-sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    left: -350px;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.nav-sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: transparent;
    position: absolute;
    top: 23px;
    font-size: 20px;
    right: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
}

#sidebar .overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sidebar-nav {
    display: block;
    z-index: 11;
    overflow: hidden;
    width: 100%;
}

.sidebar-nav-list{
    padding: 0px;
    margin: 0px;
}

.sidebar-nav-list .nav-header {
    margin-bottom: 0;
    color: #eee;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    padding: 15px 10px;
}

.sidebar-nav-list li {
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.sidebar-nav-list li a{
    color: #fff !important;
    font-size: 14px;
    padding-left: 30px;
}

.sidebar-nav-list .badge{
    display: inline-block;
    float: right;
    background: #0aa587;
    color: #fff;
}

/** Sidebar nav end **/
.sidebar-navigation {
    height: auto;
    margin: 0 auto;
    padding: 30px 20px 20px;
    border-bottom: solid 1px #00000024;
}

.sidebar-navigation ul {
    margin: 0;
    padding: 0;
}
.sidebar-navigation ul li {
    display: block;
}

.sidebar-navigation ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 10px;
    text-decoration: none;
    color: #2e2e2e;
    letter-spacing: normal;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.sidebar-navigation ul li .nav-link-heading{
    padding-top: 0!important;
}

.sidebar-navigation .pt0{
    padding-top: 0;
}

.sidebar-navigation .menu-list li a .badge {
    float: right;
    padding: 3px 10px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
}

.sidebar-navigation .menu-list li a .badge {
    float: right;
    padding: 3px 10px;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
}

.sidebar-inner h3{
    margin: 0 0 20px;
    padding: 0 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
    color: #000;
}

.sidebar-navigation ul li a em {
    font-size: 12px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4.5px 5px 5.5px;
    border-radius: 5px;
    font-weight: 100;
    color: #777;
}
.sidebar-navigation ul li:hover > a, .sidebar-navigation ul li.selected > a {
    background-color: transparent;
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-navigation ul li ul {
    display: none;
    background-color: transparent;
}
.sidebar-navigation ul li ul.open {
    display: block;
}
.sidebar-navigation ul li ul li a {
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
    font-size: 15px;
    font-weight: 500;
    padding:8px;
}

.sidebar-navigation ul li ul li:hover > a, .sidebar-navigation ul li ul li.selected > a {
    background-color: transparent;
}
.sidebar-navigation ul li ul li:hover > a:before, .sidebar-navigation ul li ul li.selected > a:before {
    margin-right: 10px;
}
.sidebar-navigation ul li ul li.selected.selected--last > a {
    background-color: #94aab0;
    color: #fff;
}

.sidebar-navigation ul li ul li.selected.selected--last > a:before {
    background-color: transparent;
}

/** Get social start **/
.get-social {
    height: auto;
    margin: 0 auto;
    padding: 30px 30px;
    border-bottom: solid 1px #00000024;
}

.get-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    margin-right: 2px;
    border-radius: 5%;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    color: #fff;
}

.get-social h3 {
    padding: 0;
}
/** Get social end **/

/** Get in touch start **/
.get-in-touch {
    height: auto;
    margin: 0 auto;
    padding: 30px 30px;
    border-bottom: solid 1px #00000024;
}

.get-in-touch h3 {
    padding: 0;
}

.get-in-touch .media {
    margin-bottom: 10px;
}

.get-in-touch .media i {
    width: 40px;
    height: 40px;
    text-align: center;
    background: #f1e6e6;
    line-height: 40px;
    margin-right: 15px;
    font-size: 16px;
    color: #2e2e2e;
    border-radius: 3px;
}

.get-in-touch .media a{
    color: #2e2e2e;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 0;
    font-weight: 500;
}

.get-in-touch .media:hover i{
    color: #fff;
}
/** Get in touch end **/

/** Protfolio item start **/
.portfolio-item, .portfolio-item:focus {
    outline: none;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.portfolio-item img, .portfolio-item img:focus {
    outline: none;
    width: 100%;
    height: 100%;
}

.portfolio-item:hover img {
    zoom: 1;
    filter: alpha(opacity=20);
    -webkit-opacity: 0.1;
    opacity: 0.1;
}

.portfolio-item:hover .portfolio-content {
    display: inline;
    -webkit-transition-delay: 0.50s;
    transition-delay: 0.50s;
    background-color: rgba(0, 0, 0, 0.90);
    color: #fff !important;
    z-index: -999;
}

.portfolio-content {
    display: none;
    top: 0;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    color: #1c1c1c;
    height: 100%;
    position: absolute;
    right: 0;
}

.portfolio-content-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-content p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

.portfolio-content h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.portfolio-content i {
    border-radius: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    text-align: center;
    margin: 3px;
    cursor: pointer;
    border: solid 1px #fff;
}

/** Off-canvas menu start  **/
body.off-canvas-sidebar-open {
    left: -375px;
    position: relative;
}

.off-canvas-sidebar-open .off-canvas-sidebar {
    -webkit-transform: translateX(-375px);
    transform: translateX(-375px)
}

.off-canvas-sidebar {
    background: #1b1d1f;
    position: fixed;
    right: -375px;
    top: 0;
    height: 100%;
    width: 375px;
    z-index: 999999;
    -webkit-transition: -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
    transition: -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
    transition: transform .2s cubic-bezier(.645, .045, .355, 1);
    transition: transform .2s cubic-bezier(.645, .045, .355, 1), -webkit-transform .2s cubic-bezier(.645, .045, .355, 1)
}

.off-canvas-sidebar-wrapper {
    width: auto;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll
}

.off-canvas-content, .off-canvas-header {
    padding-right: 30px;
    padding-left: 30px
}

.off-canvas-content {
    padding-bottom: 30px
}

.off-canvas-header {
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: right
}

.canvas-widget .menu {
    text-align: center;
    margin-top: 50px;
}

.canvas-widget .menu-item {
    margin-bottom: 12px;
}

.canvas-widget .menu-item a {
    color: #fff;
    line-height: 1.2;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all .3s ease-in-out;
}

.canvas-widget .menu-item a:hover {
    opacity: .8;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.canvas-widget .logo {
}

.canvas-widget .social-icons {
    text-align: center;
    margin-top: 60px;
}

.canvas-widget .social-icons > li {
    display: inline-block;
    margin: 10px;
}

.canvas-widget .social-icons > li a {
    color: #fff;
    transition: all .3s ease-in-out;
}

.canvas-widget .social-icons > li a:hover {
    opacity: .8;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.close-offcanvas {
    font-size: 24px
}

.portfolio-area {
    overflow: hidden;
}

/** MEDIA **/
@media (max-width: 1200px) {
    .none-1200{
        display: none;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 38px 10px;
    }
}

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

    .pricing.boxed--emphasis {
        transform: scale(1.090);
        -webkit-transform: scale(1.0);
        margin: 0 0 30px;
    }

    .main-title-2 {
        margin: auto;
    }

    .partners {
        padding: 30px 0;
    }

    .main-title-2 {
        text-align: center;
    }

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

    .tab-box .btn-section {
        width: 220px;
        margin: 0 auto;
    }

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

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

    .about-info{
        margin-left: 0;
    }

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

    .top-header-bg {
        background: rgba(12, 12, 12, 0.18);
        position: fixed;
        top: 0;
        z-index: 999;
        width: 100%;
    }

    .contact .form {
        padding: 0;
        margin-bottom: 50px;
    }

    .open-none {
        display: none;
    }

    .main-header {
        background: #f9f9f8;
    }

    .none-992 {
        display: none;
    }

    .contact .form {
        border-right: none;
    }

    .dark-demo .contact .contact-inner {
        background-color: transparent;
    }

    .dark-demo .contact .form {
        border-right: none;
    }

    .dark-demo .f-bg{
        background: #303131!important;
    }

    .dark-demo .c-bg{
        background: #2b2c2c!important;
    }

    .dark-demo .f-bg .form-control {
        background: #2b2c2c;
    }

    .dark-demo .sf{
        background: #303131;
    }

    .testimonial .testimonial-info{
        padding: 0;
    }

    .testimonial{
        padding: 80px 0;
    }

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

    .counters .counter-box i {
        font-size: 40px;
    }

    .counters .counter-box h1 {
        margin: 5px 0 10px;
        font-size: 27px;
    }

    .counters .counter-box h5 {
        font-size: 16px;
    }

    .counters .border-r {
        border-right: none;
    }

    .counters .border-l {
        border-left: none;
    }

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

    .dark-demo .testimonial .testimonial-info {
        background: #2b2c2c;
    }

    .contact .contact-inner {
        padding: 0;
    }

    .contact .contact-inner {
        margin: 0;
        box-shadow: none;
    }
    
    .testimonial .testimonial-info .detail {
        padding: 0;
    }

    .testimonial .testimonial-info:hover {
        box-shadow: none;
    }

    .testimonial .testimonial-info {
        background: #fbfbfb;
        box-shadow: none;
    }

    .about .about-photo{
        margin-bottom: 50px;
    }

    footer.footer {
        padding: 80px 0 30px;
    }

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

    .text-l {
        text-align: center;
    }

    .text-r {
        text-align: center;
    }

    .mrg2-auto {
        margin: 0 auto;
    }

    .banner {
        margin-bottom: 0;
    }

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

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

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

    .content-area-4 {
        padding-top: 80px;
    }

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

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

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

    .pricing {
        margin-bottom: 30px;
    }

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

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

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

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

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

    .banner .banner-slider-inner h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }

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

    .banner .banner-slider-inner p {
        margin-bottom: 25px;
    }

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

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

    .main-header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 13px 15px 10px;
    }

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

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

@media (max-width: 768px) {
    .main-title {
        margin-bottom: 30px;
    }

    .sub-banner .breadcrumb-area h1 {
        margin: 0 0 5px;
        font-size: 24px;
    }

    .testimonial{
        padding: 60px 0;
    }

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

    .partners .multi-carousel .multi-carousel-inner .item > div {
        max-width: 230px;
        margin: 0 auto;
    }

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

    .sub-banner {
        height: 300px;
    }

    .sticky-header {
        top: 0px!important;
        position: fixed;
    }

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

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

    .top-header{
        display: none;
    }

    footer.footer {
        padding: 60px 0 10px;
    }

    .footer h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }

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

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

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

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

    .content-area-4 {
        padding-top: 60px;
    }

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

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

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

    .banner .banner-slider-inner p {
        font-size: 16px;
    }

    .why-choose-us-inner {
        padding-left: 0;
    }

    .why-choose-us .border-r {
        border-right: none;
    }

    .banner .banner-slider-inner h1 {
        font-size: 34px;
    }

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

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

    #particles-banner {
        height: 100vh;
    }

    .item-bg {
        height: 100vh;
    }

    .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;
    }

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

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

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

    .countdown-inner .btn {
        width: 40%;
        margin: auto;
        margin-top: 10px;
        border-radius: 3px;
    }

    .countdown-inner .btn:hover {
        width: 40%;
    }

    .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: 50px 10px 0;
    }

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

    .setting-button {
        display: none;
    }

}

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

    .item-bg {
        height: 100vh;
    }

    #particles-banner {
        height: 100vh;
    }

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

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

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

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

@media (min-width: 991px) {
    .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;
    }
}

@media all and (min-width: 992px) {
    .top-header-bg{
        background: rgba(12,12,12,0.1);
        position: fixed;
        top: 0;
        z-index: 999;
        width: 100%;
    }
}

.sticky-header {
    position: fixed;
    top: 51px;
    z-index: 999;
    width: 100%;
    background: rgba(12,12,12,0.1);
}

.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;
}
