:root {
    --theme-color: #f40305;
    --theme-color-green: #4abd5d;
    --theme-color-orange: #ffad00;
    --theme-accent-color: #0c1937;
    --body-color: #444444;
    --bg-white: #ffffff;
}

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: var(--body-color);
    font-weight: 400;
    background: var(--bg-white);
    font-family: 'Barlow', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--theme-accent-color);
}

a {
    color: var(--theme-accent-color);
    transition: .3s;
}

    a:hover,
    a:active,
    a:focus {
        color: var(--theme-color);
        outline: none;
        text-decoration: none;
    }

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    background: var(--theme-color);
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 var(--theme-accent-color);
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

    .btn.btn-custom:hover {
        color: var(--theme-color);
        background: var(--theme-accent-color);
        box-shadow: inset 200px 0 0 0 var(--theme-accent-color);
    }

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

    #loader.show {
        -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
        -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
        transition: opacity .6s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

    #loader .loader {
        position: relative;
        width: 45px;
        height: 45px;
        border: 5px solid #dddddd;
        border-top: 5px solid var(--theme-color);
        border-radius: 50%;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: var(--theme-color);
    border-radius: 44px;
    z-index: 9;
}

    .back-to-top i {
        color: var(--bg-white);
        padding-top: 10px;
    }

    .back-to-top:hover {
        background: var(--theme-accent-color);
    }


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

    .top-bar .logo {
        text-align: left;
        overflow: hidden;
    }

        .top-bar .logo h1 {
            margin: -4px 0 0 0;
            color: var(--theme-color);
            font-size: 50px;
            line-height: 50px;
            font-weight: 800;
            letter-spacing: 1px;
            font-style: italic;
        }

            .top-bar .logo h1 span {
                color: var(--theme-accent-color);
            }

        .top-bar .logo img {
            max-width: 100%;
            max-height: 60px;
        }

    .top-bar .top-bar-item {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .top-bar .top-bar-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--theme-color);
        border-radius: 40px;
        margin-left: 20px;
    }

        .top-bar .top-bar-icon i {
            margin: 0;
            color: var(--bg-white);
            font-size: 16px;
        }

    .top-bar .top-bar-text {
        padding-left: 15px;
    }

        .top-bar .top-bar-text h3 {
            margin: 0 0 5px 0;
            font-size: 18px;
            font-weight: 600;
        }

        .top-bar .top-bar-text p {
            margin: 0;
            font-size: 14px;
            font-weight: 400;
        }

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}

@media screen and (max-width:420px) {
    .top-bar .logo {
        position: absolute;
        top: -10px;
        left: 15px;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: var(--theme-accent-color);
}

    .nav-bar.nav-sticky {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
        z-index: 999;
    }

    .nav-bar .navbar {
        padding: 20px 0;
        background: var(--theme-accent-color) !important;
        transition: .3s;
    }

    .nav-bar.nav-sticky .navbar {
        padding: 5px 0;
    }

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bg-white);
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--theme-color);
    }

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: var(--theme-accent-color);
    background: var(--bg-white);
    box-shadow: inset 0 0 0 0 var(--theme-color);
}

.nav-bar .btn:hover {
    color: var(--bg-white);
    background: var(--theme-color);
    box-shadow: inset 200px 0 0 0 var(--theme-color);
}

@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
}

@media (max-width: 991.98px) {

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }

    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: var(--bg-white);
    margin-bottom: 45px;
    margin-top: 20px;
    border-radius: 20px;
}

    .carousel .container-fluid {
        padding: 0;
    }

    .carousel .carousel-item {
        position: relative;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .carousel .carousel-img {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 400px;
        text-align: right;
        overflow: hidden;
        border-radius: 20px;
    }

@media screen and (max-width:991px) {
    .carousel {
        margin-top: 0;
    }

        .carousel .carousel-img {
            border-radius: 0;
            height: 400px;
        }
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background: rgba(0, 0, 0, .5);*/
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 992px;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

    .carousel .carousel-text h3 {
        color: var(--theme-color);
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 0px;
    }

    .carousel .carousel-text h1 {
        color: var(--bg-white);
        font-size: 90px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .carousel .carousel-text p {
        max-width: 500px;
        color: var(--bg-white);
        font-size: 18px;
        margin-bottom: 40px;
    }

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: var(--bg-white);
}

    .carousel .btn.btn-custom:hover {
        color: var(--theme-color);
    }

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bg-white);
        border-radius: 50px;
        background: rgba(256, 256, 256, .2);
        font-size: 22px;
        transition: .5s;
    }

    .carousel .owl-nav .owl-prev {
        margin-left: 30px;
    }

    .carousel .owl-nav .owl-next {
        margin-right: 30px;
    }

        .carousel .owl-nav .owl-prev:hover,
        .carousel .owl-nav .owl-next:hover {
            color: var(--bg-white);
            background: var(--theme-color);
        }

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }

    .carousel .carousel-text h1 {
        font-size: 60px;
    }

    .carousel .carousel-text p {
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text h1 {
        font-size: 45px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .carousel .carousel-text p {
        margin-bottom: 25px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: var(--theme-accent-color);
    border-top: 1px dotted var(--bg-white);
}

    .page-header h2 {
        position: relative;
        color: var(--bg-white);
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }

        .page-header h2::after {
            position: absolute;
            content: "";
            width: 100px;
            height: 2px;
            left: calc(50% - 50px);
            bottom: 0;
            background: var(--bg-white);
        }

    .page-header a {
        position: relative;
        padding: 0 12px;
        font-size: 22px;
        color: var(--bg-white);
    }

        .page-header a:hover {
            color: var(--theme-color);
        }

        .page-header a::after {
            position: absolute;
            content: "/";
            width: 8px;
            height: 8px;
            top: -2px;
            right: -7px;
            text-align: center;
            color: var(--bg-white);
        }

        .page-header a:last-child::after {
            display: none;
        }

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

        .page-header h2 {
            font-size: 45px;
        }

        .page-header a {
            font-size: 20px;
        }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

        .page-header h2 {
            font-size: 35px;
        }

        .page-header a {
            font-size: 18px;
        }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

    .section-header p {
        display: inline-block;
        margin-bottom: 10px;
        padding-bottom: 5px;
        position: relative;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--theme-color);
    }

        .section-header p::after {
            position: absolute;
            content: "";
            width: 50%;
            height: 2px;
            left: 25%;
            bottom: 0;
            background: var(--theme-color);
        }

    .section-header.text-left p::after {
        left: 0;
    }

    .section-header.text-right p::after {
        left: 50%;
    }

    .section-header h2 {
        margin: 0;
        font-size: 45px;
        font-weight: 700;
        text-transform: capitalize;
    }

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .about .section-header {
        margin-bottom: 30px;
        margin-left: 0;
    }

    .about .about-img img {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 30px;
    }

    .about .about-content {
        margin-bottom: 30px;
    }

        .about .about-content ul {
            margin: 0;
            padding: 0;
            list-style: none;
            margin-bottom: 25px;
        }

            .about .about-content ul li {
                margin-bottom: 5px;
            }

                .about .about-content ul li i {
                    margin-right: 8px;
                    color: var(--theme-color);
                }


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

    .service .service-item {
        position: relative;
        background-color: var(--bg-white);
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        border: 1px solid #dfdfdf;
        padding: 10px;
        border-radius: 10px;
    }

        .service .service-item i {
            color: var(--theme-accent-color);
            font-size: 75px;
            line-height: 75px;
            margin-bottom: 20px;
        }

        .service .service-item .img-box {
            display: block;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 20px;
        }

            .service .service-item .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .service .service-item [class^="flaticon-"]::before {
            margin: 0;
            font-size: 60px;
            line-height: 60px;
            background-image: linear-gradient(var(--theme-color), var(--theme-accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: .5s;
        }

        .service .service-item .detail {
            flex: 1;
        }

            .service .service-item .detail .view-link {
                color: var(--theme-color);
            }

        .service .service-item h3 {
            margin-bottom: 10px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .service .service-item p {
            margin: 0;
        }

    .service .service-item {
        cursor: pointer;
    }

/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: var(--theme-accent-color);
}

    .facts .facts-item {
        display: flex;
        flex-direction: row;
        margin: 25px 0;
    }

        .facts .facts-item i {
            margin-top: 15px;
            font-size: 45px;
            color: var(--theme-color);
        }

    .facts .facts-text {
        padding-left: 20px;
    }

        .facts .facts-text h3 {
            position: relative;
            display: inline-block;
            color: var(--bg-white);
            font-size: 60px;
            font-weight: 700;
        }

        .facts .facts-text h5 {
            position: relative;
            display: inline-block;
            color: var(--bg-white);
            font-size: 36px;
            font-weight: 700;
        }

        .facts .facts-text h3::after {
            position: absolute;
            content: "\f067";
            top: 0px;
            right: -25px;
            color: var(--bg-white);
            font-size: 25px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
        }

        .facts .facts-text p {
            color: var(--bg-white);
            font-size: 18px;
            font-weight: 500;
            margin: 0;
        }

        .facts .facts-text .btn {
            margin-top: 30px;
        }

            .facts .facts-text .btn.btn-custom {
                width: auto;
                color: var(--theme-accent-color);
                background: var(--bg-white);
                box-shadow: inset 0 0 0 0 var(--theme-color);
            }

                .facts .facts-text .btn.btn-custom.outline {
                    width: auto;
                    border: 1px solid var(--bg-white);
                    color: var(--bg-white);
                    background: var(--theme-accent-color);
                    box-shadow: inset 0 0 0 0 var(--theme-color);
                }

            .facts .facts-text .btn + .btn {
                margin-left: 20px;
            }

/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .price .row {
        padding: 0 15px;
    }

    .price .col-md-4 {
        padding: 0;
    }

    .price .price-item {
        position: relative;
        margin-bottom: 30px;
        background: var(--bg-white);
        border-radius: 5px;
        text-align: center;
    }

    .price .featured-item {
        box-shadow: 0 0 30px rgba(0, 0, 0, .2);
        z-index: 1;
    }

    .price .price-header {
        padding: 45px 0 30px 0;
    }

        .price .price-header h3 {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .price .price-header h2 {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            font-size: 60px;
            font-weight: 700;
            letter-spacing: 5px;
        }

            .price .price-header h2 span {
                font-size: 25px;
                line-height: 55px;
            }

    .price .price-item.featured-item h2,
    .price .price-item.featured-item h3 {
        color: var(--theme-color);
    }

    .price .price-body {
        padding: 0 0 20px 0;
    }

        .price .price-body ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .price .price-body ul li {
                padding: 0 0 15px 0;
            }

                .price .price-body ul li i {
                    margin-right: 10px;
                }

                    .price .price-body ul li i.fa-check-circle {
                        color: #39B972;
                    }

                    .price .price-body ul li i.fa-times-circle {
                        color: #cccccc;
                    }

    .price .price-item .price-footer {
        padding-bottom: 45px;
    }

        .price .price-item .price-footer .btn.btn-custom {
            color: var(--theme-color);
            background: var(--theme-accent-color);
            box-shadow: inset 0 0 0 0 var(--theme-color);
        }

            .price .price-item .price-footer .btn.btn-custom:hover {
                color: var(--bg-white);
                background: var(--theme-color);
                box-shadow: inset 200px 0 0 0 var(--theme-color);
            }

    .price .price-item.featured-item .price-footer .btn.btn-custom {
        color: var(--bg-white);
        background: var(--theme-color);
        box-shadow: inset 0 0 0 0 var(--theme-accent-color);
    }

        .price .price-item.featured-item .price-footer .btn.btn-custom:hover {
            color: var(--theme-color);
            background: var(--theme-accent-color);
            box-shadow: inset 200px 0 0 0 var(--theme-accent-color);
        }


/*******************************/
/******** Location CSS *********/
/*******************************/
.location {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .location .location-item {
        display: flex;
        margin-bottom: 30px;
    }

        .location .location-item i {
            padding-top: 3px;
            font-size: 30px;
            color: var(--theme-color);
        }

    .location .location-text {
        padding-left: 15px;
    }

        .location .location-text h3 {
            font-size: 18px;
            font-weight: 700;
        }

        .location .location-text p {
            margin-bottom: 5px;
        }

            .location .location-text p strong {
                margin-right: 5px;
                font-weight: 600;
            }

    .location .location-form {
        padding: 45px 30px;
        background: var(--theme-color);
        border-radius: 5px;
    }

        .location .location-form h3 {
            color: var(--bg-white);
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .location .location-form .control-group {
            margin-bottom: 15px;
        }

        .location .location-form .form-control {
            height: 45px;
            color: var(--bg-white);
            padding: 0 15px;
            border-radius: 5px;
            border: 1px solid var(--bg-white);
            background: transparent;
        }

        .location .location-form textarea.form-control {
            height: 120px;
            padding: 15px;
        }

        .location .location-form .form-control::placeholder {
            color: var(--bg-white);
            opacity: 1;
        }

        .location .location-form .form-control:-ms-input-placeholder,
        .location .location-form .form-control::-ms-input-placeholder {
            color: var(--bg-white);
        }

        .location .location-form .btn.btn-custom {
            width: 100%;
            color: var(--theme-color);
            background: var(--bg-white);
            box-shadow: inset 0 0 0 0 var(--theme-accent-color);
        }

            .location .location-form .btn.btn-custom:hover {
                color: var(--bg-white);
                background: var(--theme-color);
                box-shadow: inset 400px 0 0 0 var(--theme-accent-color);
            }

@media(min-width: 576px) and (max-width: 991.89px) {
    .location .location-form .btn.btn-custom:hover {
        box-shadow: inset 650px 0 0 0 var(--theme-accent-color);
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

    .team .team-item {
        position: relative;
        margin-bottom: 30px;
    }

    .team .team-img {
        position: relative;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
    }

        .team .team-img img {
            width: 100%;
            transition: .3s;
        }

    .team .team-item:hover img {
        transform: scale(1.1);
    }

    .team .team-text {
        position: relative;
        width: 100%;
        padding: 35px 30px 30px 30px;
        text-align: center;
        background: var(--theme-accent-color);
        border-radius: 0 0 5px 5px;
        transition: .5s;
    }

    .team .team-item:hover .team-text {
        background: var(--theme-color);
    }

    .team .team-text h2 {
        color: var(--bg-white);
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .team .team-text p {
        margin: 0;
        color: var(--bg-white);
    }

    .team .team-social {
        position: absolute;
        width: 100%;
        height: 40px;
        top: -20px;
        left: 0;
        text-align: center;
        font-size: 0;
    }

        .team .team-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            margin: 0 3px;
            padding: 7px 0;
            text-align: center;
            font-size: 16px;
            color: var(--bg-white);
            background: var(--theme-accent-color);
            border-radius: 40px;
            transition: .5s;
        }

    .team .team-item:hover .team-social a {
        background: var(--theme-color);
    }

    .team .team-social a:hover {
        color: var(--theme-accent-color);
    }


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .testimonial .testimonials-carousel {
        position: relative;
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    .testimonial .testimonial-item {
        position: relative;
        width: 100%;
        padding: 0 15px;
        display: flex;
    }

        .testimonial .testimonial-item img {
            width: 80px;
            height: 80px;
            border-radius: 80px;
            transform: scale(.8);
            transition: 2s;
        }

    .testimonial .owl-item.center .testimonial-item img {
        transform: scale(1);
    }

    .testimonial .testimonial-text {
        width: calc(100% - 100px);
        padding-left: 20px;
    }

        .testimonial .testimonial-text h3 {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .testimonial .testimonial-text h4 {
            color: #777777;
            font-size: 15px;
            font-weight: 400;
            font-style: italic;
            margin-bottom: 10px;
        }

        .testimonial .testimonial-text p {
            margin: 0;
        }

            .testimonial .testimonial-text p::before {
                content: "\f10d";
                font-size: 25px;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                color: var(--theme-color);
                margin-right: 10px;
            }

    .testimonial .owl-dots {
        margin-top: 15px;
        text-align: center;
    }

    .testimonial .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 10px;
        background: #dddddd;
    }

        .testimonial .owl-dot.active {
            background: var(--theme-color);
        }


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

    .blog .blog-item {
        margin-bottom: 45px;
    }

    .blog .blog-img {
        position: relative;
        width: 100%;
    }

        .blog .blog-img img {
            width: 100%;
            border-radius: 5px;
        }

    .blog .meta-date {
        position: absolute;
        width: 70px;
        height: 70px;
        bottom: 10%;
        left: calc(50% - 35px);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 70px;
        background: var(--theme-accent-color);
        color: var(--bg-white);
        opacity: 0;
        transition: .5s;
    }

        .blog .meta-date span {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .blog .meta-date strong {
            font-size: 16px;
            font-weight: 700;
            line-height: 16px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

    .blog .blog-item:hover .meta-date {
        bottom: calc(50% - 35px);
        opacity: 1;
    }

    .blog .blog-text {
        padding: 25px 0 20px 0;
    }

        .blog .blog-text h3 {
            font-size: 22px;
            font-weight: 700;
        }

            .blog .blog-text h3 a {
                color: var(--theme-accent-color);
            }

                .blog .blog-text h3 a:hover {
                    color: var(--theme-color);
                }

        .blog .blog-text p {
            margin: 0;
        }

    .blog .blog-meta {
        display: flex;
    }

        .blog .blog-meta p {
            margin: 0;
            font-size: 14px;
            line-height: 14px;
            padding: 0 10px;
            border-right: 1px solid rgba(0, 0, 0, .15);
        }

            .blog .blog-meta p:first-child {
                padding-left: 0;
            }

            .blog .blog-meta p:last-child {
                padding-right: 0;
                border: none;
            }

        .blog .blog-meta i {
            color: #999999;
            margin-right: 5px;
        }

        .blog .blog-meta a {
            color: #999999;
        }

            .blog .blog-meta a:hover {
                color: var(--theme-color);
            }

    .blog .pagination {
        margin-bottom: 15px;
    }

        .blog .pagination .page-link {
            color: var(--theme-accent-color);
            border-radius: 0;
            border-color: var(--theme-accent-color);
        }

            .blog .pagination .page-link:hover,
            .blog .pagination .page-item.active .page-link {
                color: var(--theme-color);
                background: var(--theme-accent-color);
            }

        .blog .pagination .disabled .page-link {
            color: #999999;
        }


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .contact .contact-info {
        width: 100%;
        margin-bottom: 45px;
        padding: 35px 30px 10px 30px;
        border-radius: 5px;
        background: var(--theme-accent-color);
    }

        .contact .contact-info h2 {
            color: var(--bg-white);
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 30px;
        }

    .contact .contact-info-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    .contact .contact-info-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-white);
        border-radius: 50px;
    }

        .contact .contact-info-icon i {
            margin: 0;
            color: var(--theme-accent-color);
            font-size: 16px;
        }

    .contact .contact-info-text {
        padding-left: 20px;
    }

        .contact .contact-info-text h3 {
            margin: 0 0 5px 0;
            color: var(--bg-white);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .contact .contact-info-text p {
            margin: 0;
            color: var(--bg-white);
            font-size: 16px;
            font-weight: 500;
        }

    .contact .contact-form {
        position: relative;
        width: 100%;
        margin-bottom: 45px;
    }

        .contact .contact-form input {
            padding: 15px;
            border-radius: 5px;
            border: 1px solid var(--theme-accent-color);
        }

        .contact .contact-form textarea {
            height: 125px;
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid var(--theme-accent-color);
        }

    .contact .help-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .contact iframe {
        width: 100%;
        height: 400px;
        border-radius: 5px;
    }


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

    .single .single-content {
        position: relative;
        margin-bottom: 30px;
        overflow: hidden;
    }

        .single .single-content img {
            margin-bottom: 20px;
            width: 100%;
            border-radius: 5px;
        }

    .single .single-tags {
        margin: -5px -5px 41px -5px;
        font-size: 0;
    }

        .single .single-tags a {
            margin: 5px;
            display: inline-block;
            padding: 7px 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--theme-accent-color);
            border: 1px solid var(--theme-accent-color);
            border-radius: 5px;
        }

            .single .single-tags a:hover {
                color: var(--bg-white);
                background: var(--theme-color);
                border-color: var(--theme-color);
            }

    .single .single-bio {
        padding: 30px;
        background: var(--theme-accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 5px;
    }

    .single .single-bio-img {
        width: 100%;
        max-width: 115px;
        padding: 15px;
        background: var(--bg-white);
        border-radius: 100px;
        margin-bottom: 20px;
    }

        .single .single-bio-img img {
            width: 100%;
            border-radius: 100px;
        }

    .single .single-bio-text {
        text-align: center;
    }

        .single .single-bio-text h3 {
            color: var(--bg-white);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .single .single-bio-text p {
            color: var(--bg-white);
            margin: 0;
        }

    .single .single-bio-social {
        margin-top: 20px;
        display: flex;
    }

        .single .single-bio-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-accent-color);
            background: var(--bg-white);
            border-radius: 40px;
            margin-right: 5px;
            transition: .5s;
        }

            .single .single-bio-social a:last-child {
                margin: 0;
            }

            .single .single-bio-social a:hover {
                color: var(--bg-white);
                background: var(--theme-color);
            }

    .single .single-related {
        margin-bottom: 45px;
    }

        .single .single-related h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

    .single .related-slider {
        position: relative;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

        .single .related-slider .post-item {
            margin: 0 15px;
        }

    .single .post-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

        .single .post-item .post-img {
            width: 100%;
            max-width: 80px;
        }

            .single .post-item .post-img img {
                width: 100%;
                border-radius: 5px;
            }

        .single .post-item .post-text {
            padding-left: 15px;
        }

            .single .post-item .post-text a {
                font-size: 17px;
                font-weight: 500;
            }

                .single .post-item .post-text a:hover {
                    color: var(--theme-color);
                }

        .single .post-item .post-meta {
            display: flex;
            margin-top: 8px;
        }

            .single .post-item .post-meta p {
                display: inline-block;
                margin: 0;
                padding: 0 3px;
                font-size: 14px;
                font-weight: 400;
                font-style: italic;
            }

                .single .post-item .post-meta p a {
                    margin-left: 5px;
                    color: #777777;
                    font-size: 14px;
                    font-weight: 400;
                    font-style: normal;
                }

    .single .related-slider .owl-nav {
        position: absolute;
        width: 90px;
        top: -55px;
        right: 15px;
        display: flex;
    }

        .single .related-slider .owl-nav .owl-prev,
        .single .related-slider .owl-nav .owl-next {
            margin-left: 15px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-white);
            background: var(--theme-accent-color);
            border-radius: 5px;
            font-size: 16px;
            transition: .3s;
        }

            .single .related-slider .owl-nav .owl-prev:hover,
            .single .related-slider .owl-nav .owl-next:hover {
                color: var(--bg-white);
                background: var(--theme-color);
            }

    .single .single-comment {
        position: relative;
        margin-bottom: 45px;
    }

        .single .single-comment h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

    .single .comment-list {
        list-style: none;
        padding: 0;
    }

    .single .comment-child {
        list-style: none;
    }

    .single .comment-body {
        display: flex;
        margin-bottom: 30px;
    }

    .single .comment-img {
        width: 60px;
    }

        .single .comment-img img {
            width: 100%;
            border-radius: 60px;
        }

    .single .comment-text {
        padding-left: 15px;
        width: calc(100% - 60px);
    }

        .single .comment-text h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .single .comment-text span {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .single .comment-text .btn {
            padding: 3px 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--theme-accent-color);
            background: #dddddd;
            border-radius: 5px;
        }

            .single .comment-text .btn:hover {
                color: var(--bg-white);
                background: var(--theme-color);
            }

    .single .comment-form {
        position: relative;
    }

        .single .comment-form h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .single .comment-form form {
            padding: 30px;
            background: #f3f6ff;
            border-radius: 5px;
        }

            .single .comment-form form .form-group:last-child {
                margin: 0;
            }

        .single .comment-form input,
        .single .comment-form textarea {
            border-radius: 5px;
            border-color: #eeeeee;
        }

            .single .comment-form input:focus,
            .single .comment-form textarea:focus {
                border-color: var(--theme-color);
            }

        .single .comment-form .btn {
            border-radius: 45px;
        }


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

    .sidebar .sidebar-widget .widget-title {
        position: relative;
        margin-bottom: 30px;
        padding-bottom: 5px;
        font-size: 25px;
        font-weight: 700;
    }

        .sidebar .sidebar-widget .widget-title::after {
            position: absolute;
            content: "";
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--theme-color);
        }

    .sidebar .sidebar-widget .search-widget {
        position: relative;
    }

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

    .sidebar .search-widget input:focus {
        box-shadow: none;
        border-color: var(--theme-color);
    }

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: var(--theme-accent-color);
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

    .sidebar .search-widget .btn:hover {
        color: var(--theme-color);
    }

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills {
    border-radius: 5px;
    overflow: hidden;
}

    .sidebar .tab-post .nav.nav-pills .nav-link {
        color: var(--bg-white);
        background: var(--theme-accent-color);
        border-radius: 0;
    }

        .sidebar .tab-post .nav.nav-pills .nav-link:hover,
        .sidebar .tab-post .nav.nav-pills .nav-link.active {
            color: var(--bg-white);
            background: var(--theme-color);
        }

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

    .sidebar .tab-post .tab-content .container {
        padding: 0;
    }

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar .category-widget ul li {
        margin: 0 0 12px 22px;
    }

        .sidebar .category-widget ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar .category-widget ul li a {
            display: inline-block;
            line-height: 23px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .sidebar .category-widget ul li::before {
            position: absolute;
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--theme-color);
            left: 1px;
        }

        .sidebar .category-widget ul li span {
            display: inline-block;
            float: right;
        }

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-accent-color);
    border: 1px solid var(--theme-accent-color);
    border-radius: 5px;
}

    .single .tag-widget a:hover {
        color: var(--bg-white);
        background: var(--theme-color);
        border-color: var(--theme-color);
    }

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

    .sidebar .image-widget img {
        max-width: 100%;
        border-radius: 5px;
        transition: .3s;
    }

        .sidebar .image-widget img:hover {
            transform: scale(1.1);
        }


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: var(--theme-accent-color);
}

    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-newsletter {
        position: relative;
        margin-bottom: 45px;
        color: var(--bg-white);
    }

        .footer .footer-contact h2,
        .footer .footer-link h2,
        .footer .footer-newsletter h2 {
            margin-bottom: 30px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--theme-color);
        }

        .footer .footer-link a {
            display: block;
            margin-bottom: 10px;
            color: var(--bg-white);
            transition: .3s;
        }

            .footer .footer-link a::before {
                position: relative;
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                margin-right: 10px;
            }

            .footer .footer-link a:hover {
                color: var(--theme-color);
                letter-spacing: 1px;
            }

        .footer .footer-contact p i {
            width: 25px;
        }

    .footer .footer-social {
        position: relative;
        margin-top: 20px;
        display: flex;
    }

        .footer .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-accent-color);
            background: var(--bg-white);
            border-radius: 40px;
            margin-right: 5px;
            transition: .5s;
        }

            .footer .footer-social a:last-child {
                margin: 0;
            }

            .footer .footer-social a:hover {
                color: var(--bg-white);
                background: var(--theme-color);
            }

    .footer .footer-newsletter form {
        position: relative;
        width: 100%;
    }

    .footer .footer-newsletter input {
        margin-bottom: 15px;
        height: 45px;
        background: transparent;
        border: 1px solid var(--bg-white);
        border-radius: 5px;
    }

    .footer .footer-newsletter label {
        margin-top: 5px;
        color: #777777;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .footer .footer-newsletter .btn.btn-custom {
        width: 100%;
        color: var(--theme-accent-color);
        background: var(--bg-white);
        box-shadow: inset 0 0 0 0 var(--theme-color);
    }

    .footer .footer-newsletter .btn:hover {
        color: var(--bg-white);
        background: var(--theme-color);
        box-shadow: inset 200px 0 0 0 var(--theme-color);
    }

    .footer .copyright {
        text-align: center;
        padding-top: 15px;
        padding-bottom: 45px;
    }

        .footer .copyright p {
            margin: 0;
            color: var(--bg-white);
        }

            .footer .copyright p a {
                color: var(--theme-color);
                font-weight: 700;
                letter-spacing: 1px;
            }

                .footer .copyright p a:hover {
                    color: var(--bg-white);
                }

.accordion {
    position: relative;
}

    .accordion > .card {
        position: relative;
        margin-bottom: 10px;
    }

        .accordion > .card:not(:last-of-type),
        .accordion > .card:not(:first-of-type) {
            border-bottom: 1px;
            border-radius: 0.25rem;
            border: 1px solid rgba(0, 0, 0, .125)
        }



        .accordion > .card .card-header {
            cursor: pointer;
            user-select: none;
        }

            .accordion > .card .card-header[aria-expanded="true"] {
                background-color: var(--theme-accent-color);
            }

                .accordion > .card .card-header[aria-expanded="true"] h4 {
                    color: var(--bg-white);
                }

            .accordion > .card .card-header h4 {
                font-size: 16px;
                user-select: none;
            }

.form-control {
    height: calc(1.5em + .75rem + 20px);
}

.modal-body {
    padding: 2rem;
}

.close-button {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1rem;
    z-index: 9;
}

.login-form {
    padding: 0;
}

.page-item {
    cursor: pointer;
}

.pagination.pagination-circle .page-item.active .page-link {
    border-radius: 50%;
}

.pagination .page-item .page-link:hover {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: .125rem;
    background-color: #eee;
}

.pagination.pg-blue .page-item.active .page-link:hover {
    background-color: var(--theme-color);
}

.pagination .page-item.active .page-link {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    border-radius: .125rem;
    background-color: var(--theme-color);
    color: #fff;
}

.pagination .page-item .page-link {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-size: .9rem;
    color: #999;
    font-weight: bold;
    width: 35px;
    height: 35px;
}

.pagination.pagination-circle .page-item .page-link:hover {
    border-radius: 50%;
}

.pagination.pagination-circle .page-item .page-link {
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 50%;
}

.pagination .page-item.active .page-link {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.page-link {
    border: none !important;
}

.control-label {
    font-weight: 600;
}

    .control-label.section-label {
        font-weight: 600;
        font-size: 20px;
        color: var(--theme-color);
    }

.login-form .control-group .form-check-label {
    margin-bottom: 0;
    padding-left: 20px;
}

.login-form .control-group .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: 0;
}

.booking-section {
    display: flex;
    position: relative;
    flex-direction: column;
}

    .booking-section .booking-calendar {
        position: relative;
        display: flex;
        flex-direction: column;
        flex: 0;
    }

.booking-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .booking-heading .filter {
        position: relative;
        display: flex
    }

        .booking-heading .filter a {
            position: relative;
            padding: 10px;
            border: 1px solid #dfdfdf;
            border-radius: 4px;
        }

.booking-section .booking-calendar ul {
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
}

    .booking-section .booking-calendar ul li {
        display: block;
        padding: 10px 15px;
        border: 1px solid #dfdfdf;
        background: var(--bg-white);
        width: 100%;
        cursor: pointer;
    }

        .booking-section .booking-calendar ul li + li {
            border-left: unset;
        }

        .booking-section .booking-calendar ul li span {
            display: block;
            text-align: center;
        }

            .booking-section .booking-calendar ul li span.date {
                position: relative;
                font-size: 22px;
                font-weight: 500;
                color: #000000;
            }

        .booking-section .booking-calendar ul li.today {
            position: relative;
            background: var(--theme-color);
            border-color: var(--theme-color);
        }

            .booking-section .booking-calendar ul li.today span {
                color: var(--bg-white);
            }

        .booking-section .booking-calendar ul li span.day {
            font-size: 14px;
        }

.booking-section .booking-garages {
    position: relative;
}

    .booking-section .booking-garages .garage-card {
        position: relative;
    }

        .booking-section .booking-garages .garage-card .card-body .card-title {
            margin-bottom: 0;
            color: var(--theme-accent-color);
        }

            .booking-section .booking-garages .garage-card .card-body .card-title .info-icon {
                font-size: 16px;
                color: #7b7b7b;
            }

        .booking-section .booking-garages .garage-card .card-body .timing-slots a {
            position: relative;
            padding: 8px 12px;
            border: 1px solid #dfdfdf;
            margin-bottom: 10px;
            border-radius: 4px;
        }

            .booking-section .booking-garages .garage-card .card-body .timing-slots a.available {
                color: var(--theme-color);
                cursor: pointer;
            }

        .booking-section .booking-garages .garage-card .card-body .timing-slots a {
            color: var(--theme-color-green);
        }

            .booking-section .booking-garages .garage-card .card-body .timing-slots a.few-available {
                color: var(--theme-color-orange);
            }

        .booking-section .booking-garages .garage-card .card-body .timing-slots a {
            margin-right: 10px;
        }

        .booking-section .booking-garages .garage-card .card-body .timing-slots {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            margin-top: 20px;
        }

            .booking-section .booking-garages .garage-card .card-body .timing-slots a.selectedslot {
                background: var(--theme-color);
                color: var(--bg-white);
            }

.partnerwithus {
    text-align: left;
}

    .partnerwithus h2::after {
        display: none;
    }

    .partnerwithus .btn-custom {
        min-width: 20rem;
    }

    .partnerwithus h5 {
        text-align: left !important;
        color: var(--bg-white) !important;
    }

    .partnerwithus span {
        text-align: left !important;
        color: var(--bg-white) !important;
    }

.line-height-3 {
    line-height: 3;
}

.whypartner {
    color: #ffffffd6 !important;
    font-size: 22px !important;
}

.partnerwithus-facts {
    min-height: 400px !important;
}

.mb-15 {
    margin-bottom: 15px;
}

.document iframe {
    height: 150vh !important;
}

.ui-front {
    z-index: 10000000 !important;
}

.md-none {
    display: none;
}

@media screen and (max-width:420px) {
    .xs-none {
        display: none;
    }

    .md-none {
        display: block;
    }

    .search-xs-icon {
        height: 150px;
    }
    .xs-mt{
        margin-top: 10px;
    }
    .xs-text-center{
        text-align: center;
    }
    .table-responsive-xs {
        overflow: scroll;
    }
    .carousel .carousel-img img {
        object-fit: fill;
    }
}

.mt-5per {
    margin-top: 5%;
}

.hide {
    display: none;
}

.input-group {
    width: 50px;
    padding: 18px;
    border-left: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    display: flex;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-box-align: center;
    align-items: center;
    color: var(--theme-color);
}

.form-control {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.d-flex {
    display: flex;
}

/*.star-rating {
    font-size: 24px;
}*/

.star {
    cursor: pointer;
    color: var(--theme-accent-color) !important;
}

    .star:hover,
    .star.active {
        color: gold;
    }

.service-detail {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

    .service-detail .img-box {
        display: block;
        width: auto;
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        object-fit: cover;
    }

    .service-detail .detail {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .service-detail section {
        display: flex;
        -webkit-box-align: end;
        align-items: end;
    }

.clCBXa {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: inherit;
    cursor: pointer;
}

.cibBCi {
    width: 4rem;
}

.clCBXa {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: inherit;
    cursor: pointer;
}

.vYWgo {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 2.0rem;
    min-width: 3rem;
    padding: 2px 4px 2px 6px;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    vertical-align: middle;
    background: #388e3c;
}

.bzIMnO {
    display: block;
    font-size: inherit;
    margin-left: 0.8rem;
}

.liCXOR {
    display: block;
    font-size: inherit;
}

.kHxpSk {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: inherit;
    cursor: unset;
}

.cILgox {
    margin-right: 0.2rem;
    font-weight: 600;
    font-size: inherit;
    padding-bottom: 0.1rem;
}

.pxJGx {
    margin-left: 0px;
}

.iFnyeo {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: inherit;
}

.kEgyiI {
    font-weight: 600;
    padding-bottom: 0px;
    border-bottom: unset;
    color: rgb(54, 54, 54);
    display: none;
}

.edgvoM {
    font-weight: 400;
    padding-bottom: 0.2rem;
    border-bottom: 0.5px dashed rgb(181, 181, 181);
    color: rgb(54, 54, 54);
}

.gWgGZu {
    color: rgb(28, 28, 28);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0px 0px 1rem;
}

.OEFaU {
    text-decoration: none;
    font-weight: 400;
    word-break: break-word;
    color: rgb(156, 156, 156);
}

.sc-gFXMyG {
    margin-bottom: 15px;
}

.description {
    text-align: center;
    width: 43%;
}

.clientImage {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    /*.clientImage span {
        margin-left: 10px;
    }*/

    .clientImage img {
        width: 40px;
    }

.reviewSection {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(232, 232, 232);
}

#divReviewList {
    width: 100%;
}

.reviewItem {
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: all .2s linear;
    width: 100%;
}

    .reviewItem:hover {
        border-color: aqua;
        transform: scale(1.01);
        box-shadow: 0 0px 5px 0px #cbc0c0;
    }

.reviewheader {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

article p {
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 1rem;
    font-family: system-ui;
}


@media screen and (max-width:700px) {
    .description {
        width: 90%;
    }

    .service-detail .img-box img {
        width: 100%;
    }
}

@media screen and (max-width:375px) {
    .reviewSection {
        padding: 0;
    }

    .reviewItem {
        width: 100%;
    }

    .clientImage {
        margin-bottom: 0.6rem;
    }

    .reviewheader {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .service-detail .img-box img {
        width: 100%;
    }
}

.cursor-pointer {
    cursor: pointer !important;
}

.otp-verification {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

    .otp-verification input {
        appearance: none;
        height: 3.5rem;
        width: 3.5rem;
        border: 1px solid rgb(207, 207, 207);
        border-radius: 0.8rem;
        padding: 0px;
        text-align: center;
        color: rgb(28, 28, 28)
    }

.otp-sent-msg {
    text-align: center;
    margin-bottom: 2rem;
}

.disable-click {
    pointer-events: none;
    background: #d5b5b5 !important;
}

.anchor-link {
    text-decoration: none;
    font-weight: 500;
    color: rgb(239, 79, 95);
}

.otptimer {
    font-size: 3rem;
    line-height: 4rem;
    color: rgb(28, 28, 28);
    text-align: center;
    margin: 1rem 0px 0px;
}

.disable-a-click {
    pointer-events: none;
    color: rgb(181, 181, 181) !important;
}

@media screen and (max-width:420px) {
    .otp-verification input {
        height: 3.0rem;
        width: 2.5rem;
    }
}
/**********************************************/
/********* User Profile Menu Dropdown *********/
/**********************************************/
.sub-menu-wrap {
    position: absolute;
    top: 100%;
    right: 0%;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 2;
}

    .sub-menu-wrap.open-menu {
        max-height: 400px;
    }

.sub-menu {
    background: white;
    padding: 20px;
    margin: 10px;
}

.user-info {
    display: flex;
    align-items: center;
}

    .user-info h5 {
        font-weight: 500;
    }

    .user-info img {
        width: 40px;
        border-radius: 50%;
        margin-right: 15px;
    }

.sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px 0;
}

.sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
}

    .sub-menu-link p {
        width: 100%;
        font-weight: 500;
        margin-top: 12px;
        margin-left: 10px;
    }

    .sub-menu-link img {
        width: 45px;
        border-radius: 50%;
        padding: 8px;
        margin-right: 15px;
    }

    .sub-menu-link:hover span {
        transform: translateX(5px);
    }

    .sub-menu-link:hover p {
        font-weight: 600;
    }

    .sub-menu-link:hover {
        background-color: #ddd;
    }

#divLogin {
    cursor: pointer;
}

.detailstart {
    margin-top: -3px;
}

    .detailstart span {
        color: white !important;
    }

.book-service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

    .book-service .control-group .form-check-input {
        position: absolute;
        margin-top: 0.3rem;
        margin-left: 0;
    }

    .book-service .control-group .form-check-label {
        padding-left: 20px;
    }

.displayerror, .help-block {
    color: var(--theme-color);
    font-size: small;
}

#divTimeSlots .available, #ulBookingDates .slotdate {
    transition: box-shadow 0.3s ease;
}

    #divTimeSlots .available:hover, #ulBookingDates .slotdate:hover {
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    }

.update-profile {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.pagination .page-item .page-link, .pagination .page-item.active .page-link {
    border-radius: 3rem;
    text-align: center;
}

@media screen and (max-width:375px) {
    .table-responsive-xs {
        overflow-x: scroll;
    }
}

.grid-button {
    border-radius: 2rem;
    padding: 5px;
    font-size: small;
}
/**********************************************/
/********* Order Detail *********/
/**********************************************/
.order-detail {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.invoice .invoice-logo {
    margin-bottom: 20px;
}

.invoice .invoice-logo-space {
    margin-bottom: 15px;
}

.visibility-visible {
    visibility: visible;
}

.invoice .invoice-logo p {
    padding: 5px 0;
    font-size: 26px;
    line-height: 28px;
    text-align: right;
}

    .invoice .invoice-logo p span {
        display: block;
        font-size: 14px;
    }

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.invoice .invoice-block .amounts {
    margin-top: 20px;
    font-size: 14px;
}

.invoice .invoice-block {
    text-align: right;
}

.invoice h3 {
    font-weight: 300;
}
/**********************************************/
/********* User Wallet *********/
/**********************************************/
/*.wallet-container {
    width: 320px;
    color: inherit;
    font-size: 15px;
    padding: 20px 20px 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}*/
.wallet-amount {
    font-size: 35px;
}

.amount-box p {
    margin-top: 10px;
}

.txn-history {
    text-align: left;
}

.txn-list {
    background-color: #f1efef;
    padding: 12px 10px;
    color: inherit;
    font-size: 14px;
    margin: 7px 0;
    text-transform: capitalize;
}

.debit-amount {
    color: red;
    float: right;
}

.credit-amount {
    color: green;
    float: right;
}

.wallet-all-side-box-shadow {
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #060c1b;
    border-radius: 10px;
    padding: 12px;
}

.wallet-history-container {
    margin-top: 15px;
}

.rating label {
    margin-right: 10px;
    cursor: pointer;
    margin-left: 5px;
    display: inline-flex;
}

.filters-slots {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

    .filters-slots a {
        margin-right: 10px;
        color: var(--theme-color);
        position: relative;
        padding: 10px 12px;
        border: 1px solid #dfdfdf;
        margin-bottom: 10px;
        border-radius: 4px;
        cursor: pointer;
    }
.search-garages {
    height: calc(1.5em + .75rem) !important;
    border-radius: 5px;
}
.apply-filterdiv{
    margin-left: 10px;
}
.selectedfilter a {
    background: var(--theme-color);
    color: var(--bg-white) !important;
}

.youtube-vide-section iframe {
    width: inherit;
    height: 80vh;
}
.btn-addvehicle {
    float: inline-end;
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
    .document iframe {
        height: 50vh !important;
    }
    .youtube-vide-section iframe {
        width: inherit;
        height: 25vh;
    }
    .btn-addvehicle {
        margin-top: 10px;
        float: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
.youtube-vide-section {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}
.service-item:hover {
    border-color: aqua;
    transform: scale(1.01);
    box-shadow: 0 0px 5px 0px #cbc0c0;
}
.pickupanddropnote{
    margin-bottom: 10px;
}
.loginmodalreset{
    cursor: pointer;
}
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
    max-height: 51%;
    overflow-x: hidden;
    overflow-y: auto;
}
.btn-filter {
    padding: 5px 30px 6px 30px !important;
}
.loadingSpinnerHeader {
    position: absolute;
    right: 1.50rem;
    -webkit-box-align: center;
    align-items: center;
    top: 38%;
}