:root {
    --primary-color: #fff;
    --secondary-color: #212529;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --small: 16px;
    --medium: 20px;
    --large: 28px;
    --title: 32px;
    --icon-size: 50px;
}

body {
    background: var(--primary-color);
}

p.lead {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* -----------Common css end----------- */

.navbar {
    background-color: #000;
}

.navbar .nav-item {
    padding-left: 16px;
}

@media (max-width: 768px) {
    .navbar .nav-item {
        padding-left: 0;
    }
}

.navbar .nav-link {
    text-transform: uppercase;
}


/* ----------Carousel Slider----------  */
.showcase .carousel-item {
    height: 450px;
}

.showcase .carousel-img-1 {
    background: url("../img/image1.jpeg");
    background-size: cover;
}

.showcase .carousel-img-2 {
    background: url("../img/image2.jpeg");
    background-size: cover;
}

.showcase .carousel-img-3 {
    background: url("../img/image3.jpeg");
    background-size: cover;
}

/* --------Home icon------------------- */
.homeIcon i.bi {
    font-size: var(--icon-size);
    margin-top: 2px;
}

.homeIcon h3 {
    font-size: var(--title);
    margin: 2px auto;
}

.homeIcon p.lead {
    margin-bottom: 0;
}

/* ----Home - Get started-------------- */
.getStarted {
    background: url("../img/bg1.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 250px;
    position: relative;
}

.getStarted .dark-overlay {
    background: var(--dark-overlay);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ----Home - Video section------------ */
.homeVideo {
    background: url("../img/people.jpeg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 250px;
    position: relative;
}

.homeVideo .dark-overlay {
    background: var(--dark-overlay);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.homeVideo i {
    font-size: var(--icon-size);
}

/* ----Photo - Gallery section--------- */
.gallery img {
    height: 250px;
    width: 100%;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .gallery img {
        min-height: 300px;
        margin-top: 0px;
        background-size: cover;
    }
}

/* ---------Copyright section--------- */
footer {
    background: #000;
    color: var(--primary-color);
}


/* =======================================
----------About Us Page css start---------
======================================= */
.pageHeader {
    background: url(../img/image1.jpeg);
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
}

.aboutInfo p.lead {
    -webkit-line-clamp: 6;
}

.aboutInfo h3 {
    font-size: var(--large);
}

.aboutInfo img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

.iconBox i {
    font-size: var(--icon-size);
    padding: 5px 0;
}

.iconBox h3 {
    font-size: var(--large);
    margin: 12px 0 10px 0;
    color: var(--primary-color);
}

.iconBox p.lead {
    font-size: var(--medium);
    -webkit-line-clamp: 3;
}

.testimonial .slider {
    text-align: left;
}

.testimonial .testi-item {
    font-style: italic;
}

.testimonial .carousel-inner {
    padding: 0 30px;
}

.testimonial .carousel-control-next,
.testimonial .carousel-control-prev {
    color: #000;
    width: 20px;
    height: 20px;
    margin-top: 18px;
}

.testimonial button:hover {
    color: #000;
    font-weight: 900;
}



/* =======================================
----------Service Page css start---------
======================================= */
.servicesPageHeader {
    background: url(../img/image3.jpeg);
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
}

.priceTable h3 {
    font-size: var(--large);
}

.priceTable .list-group-item {
    padding: 12px 0;
    font-weight: 400;
}

.faq .btn {
    font-size: var(--medium);
    text-align: left;
}

.faq .accordion .accordion-item {
    /* margin: 10px auto; */
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq .accordion .accordion-item h2 {
    background: rgba(0, 0, 0, 0.063);
}


/* =======================================
----------blogPageHeader css start--------
======================================= */
.blogPageHeader {
    background: url(../img/image6.jpg);
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
}

.blogGallery p.lead {
    -webkit-line-clamp: 6;
}


/* =======================================
----------contactPageHeader css start--------
======================================= */
.contactPageHeader {
    background: url(../img/image3.jpeg);
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
}

.contact .contactDetails h3 {
    margin: 0;
}

.contact .contactDetails p {
    margin: 5px auto 15px auto;
}


/* ------common media query start------ */

@media (max-width: 992px) {
    p.lead {
        -webkit-line-clamp: 3;
    }
}