/* Full-Screen Video Overlay */
#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Ensure the video is responsive and fits the screen */
#intro-video {
    width: 100vw;
    /* Fit the width of the viewport */
    height: auto;
    /* Maintain aspect ratio by automatically adjusting the height */
    max-height: 100vh;
    /* Prevent the video from exceeding the height of the viewport */
    object-fit: cover;
    /* Ensure the video covers the container without distortion */
}


/* Hide the main content until the video finishes */
#main-content {
    display: none;
}

/* Full-screen video styling */
#video-overlay video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Nav-Bar styling */
.navbar-brand img {
    height: 85px;
    width: auto;
}

.navbar {
    background-color: transparent !important;
    position: relative;
    margin-bottom: -111px;
    z-index: 999;
}

/* Global text Styling */
h1,
h2,
h3 {
    font-family: "Quantico",
        sans-serif;
    font-weight: 600;


}

h1 {
    font-size: 3.5rem;
}

h2 {
    text-transform: uppercase;
    font-size: 2.8rem;
    color: #b20201;
}

h4 {
    font-family: "Quantico",
        sans-serif;
}

p {
    font-family: "Montserrat",
        sans-serif;
    font-size: 1.25rem;
}

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

a:hover {
    color: #b20201;
    text-decoration: underline;
}

li {
    font-size: 1.2rem;
    padding-bottom: 15px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    font-family: "Quantico",
        sans-serif !important;
}

/* Hero Section Styling */

.home-hero {
    position: relative;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
}

.home-hero video {
    max-width: 100%;
    min-height: 600px;
    max-height: 600px;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: 50% 43%;
    padding: 0px;
}

.home-hero .video-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
    background-color: #0000007a;
}

.inner-hero {
    position: relative;
}

.inner-hero video {
    max-width: 100%;
    min-height: 425px;
    max-height: 425px;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    padding: 0px;
}

.inner-hero .video-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
    background-color: #0000009a;
}

#overlayText {
    height: 100%;
}

.home-hero h2 {
    font-family: "Montserrat",
        sans-serif;
    font-size: 1.1rem;
    color: #fff;
    line-height: 30px;
    text-transform: none;
}

.home-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    text-transform: uppercase;
}

.inner-hero h2 {
    font-family: "Montserrat",
        sans-serif;
    font-size: 1.1rem;
    color: #fff;
    line-height: 30px;
}

.inner-hero h1 {
    color: #fff;
    font-size: 3.125rem;
    text-transform: uppercase;
}

/* Brand Logos */
.brand-logos {
    padding: 20px 0;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    margin-bottom: 5px;
}

.brand-logos img {
    max-width: 150px;
    margin: 0 15px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0px 90px 0px;
}

.intro-section img {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
    height: auto;
}

/* Service Tiles */
.service-tile {
    background-size: cover;
    background-position: center;
    height: 300px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
    border-radius: 10px;
}

.service-tile h1 {
    font-size: 2rem;
}

.discipline-select {
    padding-top: 80px;
}

.discipline-select a {
    text-decoration: none;
}

/* Top Categories */
.top-categories img {
    max-width: 100%;
    border-radius: 5px;
}

.btn {
    font-family: "Quantico",
        sans-serif;
    border: 2px solid;
    border-radius: 0px;
}

.btn-outline-primary {
    color: #000 !important;
    /* Change text color to black */
    border-color: #000 !important;
    /* Change border color to black */
}

.btn-primary {
    background-color: #b20201 !important;
    color: #fff !important;
    border-color: #b20201 !important;
}

.btn-outline-primary:hover {
    background-color: #000 !important;
    /* Change background color to black on hover */
    color: #fff !important;
    /* Change text color to white on hover */
}

.btn-outline-secondary {
    color: #fff !important;
    /* Text color white */
    border-color: #fff !important;
    /* Border color white */
}

.btn-outline-secondary:hover {
    background-color: #fff !important;
    /* White background on hover */
    color: #000 !important;
    /* Black text on hover */
}

.greybg {
    background-color: #e3e3e3;
}

.fine_print {
    background-color: #b20201;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.fine_print p,
.fine_print a {
    color: #fff;
    font-size: 0.75rem;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.footerLogo {
    height: 115px;
    width: auto;
}

.site-footer {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
}

.testimonials-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    color: #fff;
    background-attachment: fixed;
}

.testimonial-slider {
    text-align: left;

}

#testimonial-slider {
    padding-left: 15px;
}

.testimonial-slider-item {
    background: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 30px;
    color: #000;
}

.testimonials-slider h1 {
    font-family: "Quantico",
        sans-serif;
    font-weight: bold;
    text-transform: uppercase;

}

.testimonials-slider h4 {
    font-family: "Quantico",
        sans-serif;
    color: #b20201;
    font-weight: 600;

}

.testimonial-slider-rating {
    color: #b20201;
}

.top-services {
    padding-bottom: 80px;
    padding-top: 80px;
}

.top-services img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
}

.top-services a {
    color: #b20201;
    text-decoration: none;
    font-weight: 800;
}

.top-services a:hover {
    color: #b20201;
    text-decoration: underline;
    font-weight: 800;
}

.gallery-section a {
    color: #e3e3e3;
    text-decoration: none;
}

.gallery-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.redLine {
    width: 20%;
    color: #b20201;
    opacity: 1;
    border-top: 5px solid;
    margin: auto;
}

.contactUs i {
    width: auto;
    color: #b20201;
}

.contactBox {
    padding: 40px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    box-shadow: 0px 0px 5px 0px rgba(178, 2, 1, 1);
    background-color: #fff;

}

.header2 {
    background-color: #000;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contactUs img {
    height: 100px;
    width: auto;
}

.contactContent {
    padding-top: 40px;
    padding-bottom: 40px;
}

#signature {
    box-shadow: none;
    height: 125px;
    width: auto;
    margin-top: -25px;
}

.why-rachel {
    padding-top: 80px;
    padding-bottom: 80px;
}

.why-rachel .card-body i {
    font-size: 4rem;
    color: #b20201;
    margin-bottom: 20px;
    margin-top: 20px;
}

.why-rachel .row {
    display: flex;
    flex-wrap: wrap;
}

.why-rachel .card {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
}

.why-rachel .card-body {
    flex-grow: 1;

}

.why-rachel .col-md-4 {
    margin-bottom: 15px;
}

.blogPost .entry-title {
    text-transform: none;
    font-size: 2rem;
}

.blogPost {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #e3e3e3;
    box-shadow: inset 0 0 .5px 1px hsla(0, 0%, 100%, .075), 0 0 0 1px hsla(0, 0%, 0%, .05), 0 .3px .4px hsla(0, 0%, 0%, .02), 0 .9px 1.5px hsla(0, 0%, 0%, .045), 0 3.5px 6px hsla(0, 0%, 0%, .09);
}

.btn-secondary {
    background-color: #b20201;
    color: #fff;
}

.blogArchImg {
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    min-height: 200px;
    background-position: 50% 50%;
}

.entry-meta p {
    font-size: 1rem;
}

.post .entry-title {
    color: #b20201;
}

.post h4 {
    color: #b20201;
    font-size: 1.75rem;

}

.comments-area {
    display: none;
}

.gallery {
    padding-top: 40px;
    padding-bottom: 40px;
}

img {
    border-radius: 10px;
}

/* Gallery Card styling */
.gallery .card {
    border: none;
    /* Remove card border */
    border-radius: 10px;
    /* Rounded corners for a modern look */
    overflow: hidden;
    /* Ensure the image fits inside the card */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Smooth hover effect */
}

.gallery .card:hover {
    transform: scale(1.02);
    /* Slight zoom on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

/* Image inside card */
.gallery .card-img-top {
    object-fit: cover;
    /* Ensure the image covers the card completely */
    height: 100%;
    /* Make the image fill the card height */
    border-radius: 10px;
}

.service {
    padding-top: 0px;
    padding-bottom: 0px;
}

.service h2 {
    text-transform: uppercase;
    font-size: 2.8rem;
    color: #b20201;
    text-align: center;
}

.service li strong {
    color: #b20201;
}

.has-bg {
    background-color: #e3e3e3
}

.imageList-content img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    height: auto;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
}

.imageList-content {
    padding-top: 15px;
    padding-bottom: 15px;
}

.build-form {
    margin-top: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #e3e3e3;
}

.service h3 {
    font-size: 2.15rem;
}

/* Ensure that the ul list doesn't have its default bullets */
.service ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    /* Remove default left padding */
}

/* Target each list item in the custom list */
.service li {
    position: relative;
    padding-left: 30px;
    /* Space for the icon */
    margin-bottom: 10px;
    /* Space between items */
}

/* Insert Font Awesome icon before each list item */
.service li::before {
    content: "\f058";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: #b20201;
}

.service ul {
    padding-top: 10px;
}

.splide__list li::before {
    content: "" !important;
}

.service .site-main {
    padding: 0px;
}

.service .brand-logos {
    margin-top: 40px;
}

.service h3 {
    color: #b20201;
}

.site-footer li {
    padding-bottom: 5px;
}

.top-services p {
    font-family: "Quantico",
        sans-serif;
    font-weight: 600;
    padding-top: 10px;
}

.site-footer ul {
    padding-inline-start: 0px;
    list-style-type: none;
}

.site-footer a {
    font-weight: 600;
}

.site-footer h5 {
    font-size: 1.5rem;
}

.imageList-content video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    height: auto;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
    border-radius: 10px;
}

.videoBlock video {
    width: 100%;
    max-height: 850px;
    object-fit: cover;
    height: auto;
    box-shadow: 0 10px 20px 0 rgba(0, 25, 50, .05);
    border-radius: 10px;
}

.service video {
    border-radius: 10px;
}

.center {
    justify-content: center;
    text-align: center;
}

.socials a {
    width: auto;
}

.socials i {
    font-size: 2rem;
}

.widget-area .widget {
    margin-bottom: 20px;
}

.wc-block-product-categories-list {
    list-style-type: none;
    padding-inline-start: 0px;
}

.wc-block-product-categories-list a {
    font-family: "Quantico", sans-serif;
    font-weight: 600;
}

.wp-block-heading {
    text-transform: uppercase;
}

.wp-block-search__input {
    margin-top: 20px;
    margin-bottom: 20px;
}

.store-hero video {
    max-width: 100%;
    min-height: 350px;
    max-height: 350px;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: 50% 43%;
    padding: 0px;
}

.woocommerce div.product .product_title {
    font-size: 2rem;
    font-family: "Quantico", sans-serif;
    font-weight: 600;
    color: #b20201;
}

.panel h2 {
    font-size: 1.8rem;
}

.related h2 {
    font-size: 1.8rem;
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: 325px !important;
    box-shadow: none;
    object-fit: contain !important;
}

.woocommerce ul.products li.product a img {
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
    object-fit: contain;
    height: 250px;
    width: auto;
    margin: auto;
}

.woocommerce-variation-add-to-cart {
    display: none;
}

@media screen and (max-width: 780px) {

    .home-hero h1 {
        color: #fff;
        font-size: 3rem;
        text-transform: uppercase;
        padding-top: 50px;
    }

    h2 {
        text-transform: uppercase;
        font-size: 2.15rem;
        color: #b20201;
    }

    .discipline-select .service-tile {
        margin-bottom: 20px;
    }

    .gallery-section .service-tile {
        margin-bottom: 20px;
    }

    .navbar-brand img {
        height: 65px;
        width: auto;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
        top: 55px;
    }

    .top-services img {
        height: 200px;
    }
}