/********** Template CSS **********/

/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');

:root {
    --primary: #14183e;
    --light: #F8F8F8;
    --dark: #252525;
}

body {
    font-family: "Jost", sans-serif;
}

.text-primary {
    color: #14183e !important;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.bg-theme {
    background: #007BFF !important;
}

/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.br-30 {
    border-radius: 30px;
}

.w-80 {
    width: 80px;
}

/*** Button ***/

.btn-primary {
    color: #000;
    background-color: #007BFF !important;
    border-color: #007BFF !important;
}

.btn {
    font-weight: 500;
    transition: .5s;
   
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.bg-topbar {
    background: #007BFF;
}

/*** Navbar ***/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 17px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
}

.navbar-toggler-icon {
    width: 21px !important;
    height: 21px !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/
/*** Carousel Hero Header Start ***/

.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    height: 630px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    display: none;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 60px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: #007bff75;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0% {
        height: 100%;
        opacity: 0.9;
    }

    25% {
        height: 110%;
        opacity: 0.50;
    }

    50% {
        height: 115%;
        opacity: 1;
    }

    75% {
        height: 110%;
        opacity: 0.50;
    }

    100% {
        height: 100%;
        opacity: 0.9;
    }
}

/*** Carousel Hero Header End ***/

/*** Section Title ***/

.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/*** About & Feature ***/

.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}

/*** Service ***/

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: #007bff;
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

/*** Appointment ***/

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

/*.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}*/

.footer .btn.btn-link:hover {
    color: #fff;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn-outline-body {
    color: #fff !important;
    border-color: #fff !important;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

/*Fixed Call Button */

.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    bottom: 35%;
    background: #007BFF;
    padding: 1rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 1.8rem;
}

.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 0 rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%);
        box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 0 rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%), 0 0 0 20px rgb(0 38 236 / 15%);
        box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%), 0 0 0 20px rgb(0 38 236 / 15%);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 0 rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%);
        box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 0 rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%), 0 0 0 20px rgb(0 38 236 / 15%);
        box-shadow: 0 4px 10px rgb(0 38 236 / 15%), 0 0 0 5px rgb(0 38 236 / 15%), 0 0 0 10px rgb(0 38 236 / 15%), 0 0 0 20px rgb(0 38 236 / 15%);
    }
}

/*Logo size in small screen*/

@media screen and (max-width: 480px) {
    .navbar .logo img {
        width: 190px !important;
        height: 60px !important;
    }
}

@media screen and (max-width: 480px) {
    .footer .logo img {
        width: 190px !important;
        height: 60px !important;
    }
}

/*printer */

.calll-btn .cl-btn {
    font-size: 27px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-left: 0px;
    padding: 0px 20px;
    background: #fff;
    font-weight: 600;
    border-radius: 5px;
    float: left;
    border: 1px solid #000000;
}

@media screen and (max-width: 480px) {
    .btn-printer {
        font-size: 19px !important;
    }
}

.calll-btn .para {
    margin-bottom: 0;
}

.aftr-btn {
    padding-top: 63px;
}

.printer_page p i {
    background: #fff;
    color: #000;
    padding: 7px;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 8px;
}

.printer_page p {
    font-size: 14px;
}

.btn-printer {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    background: #fff;
}

.offer-item {
    position: relative;
    height: 100%;
    padding: 0 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
    /* border: 2px solid #007BFF; */
}

.offers .offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.offers p {
    padding-top: 10px;
}

.card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
    width: 100%;
    height: 100%;
}

.service .card-body {
    z-index: 1;
    background: #f9f9f9;
    padding-bottom: 30px;
}

.service .service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.service .service-item img {
    transition: 0.5s;
}

.service .service-item:hover img {
    transform: scale(1.1);
}

.btn-buynow {
    background: #007BFF;
    border-radius: 10px;
    color: #fff;
}

.btn-buynow:hover {
    background: #000;
    border: 1px solid #007BFF;
    color: #fff;
}

.service .card img {
    width: 100%;
    height: 230px;
    padding: 20px;
}