
/* Media query for mobile view */
@media (max-width: 768px) {

    .container {
    max-width: 95%; /* Set the maximum width of the container to 95% of the viewport width */
    margin: 0 auto; /* Center the container horizontally */
}
    .container-footer{
    max-width: 95% !important; /* Set the maximum width of the container to 80% of the viewport width */
    margin: 0 auto; /* Center the container horizontally */
    }
}


/* Scorecard Styling */

/* Full-width hero banner */
.hero-about {
  width: 100%;
  height: 400px; /* Adjust the height as needed */
  background: url('your-banner-image.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
    
body2 {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(135deg, #162a4e, #c3272a); /* Diagonal gradient */
    background-attachment: fixed;
    color: white; /* Sets a text color for readability */
}    
    
/* body {
    margin: 0;
    padding: 0;    
    background-image: url('indie_pattern2.jpg'); /* Link to your repeating pattern image */
    background-repeat: repeat; /* Ensures the image repeats across the page */
    background-size: 600px 600px; /* Keeps the image at its original size */
    
} */

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    text-align: left;
}
    
.styled-table th {
    background-color: #15294f !important;
}    

.styled-table th, .styled-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}
    
    
        .qa-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 16px;
            text-align: left;
        }

        .qa-table th, .qa-table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            vertical-align: top;
        }

        .qa-table th {
            background-color: cadetblue;
            color: white;
        }

        .qa-table tbody tr:nth-child(even) {
            background-color: #f3f3f3;
        }

        .qa-table tbody tr:hover {
            background-color: #f1f1f1;
        }    
    
        .comments-section {
              margin-top: 20px;
              padding: 15px;
              background-color: #f9f9f9;
              border: 1px solid #ddd;
              border-radius: 5px;
            }

            .comments-section h3 {
              font-size: 1.5em;
              margin-bottom: 10px;
            }

            .comment-item {
              margin-bottom: 15px;
              padding-bottom: 10px;
              border-bottom: 1px solid #ddd;
            }

            .comment-item:last-child {
              border-bottom: none;
            }

      
/* Scorecard heading */
.scorecard-head {
  font-size: 2.5rem; /* Large font size */
  font-weight: 700; /* Bold text */
  text-transform: uppercase; /* All caps */
  color: #333; /* Dark gray for readability */
  letter-spacing: 2px; /* Add some spacing between letters for a modern look */
  margin: 20px 0; /* Add vertical spacing */
  position: relative; /* Needed for the pseudo-element */
  
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center-align heading and stars */
  align-items: center; /* Vertically align text and stars */
  gap: 10px; /* Space between text and stars */
  text-align: center; /* Ensure centering within the container */
}

.scorecard-head::after {
  content: "";
  display: block;
  width: 100%; /* Full width of the text */
  height: 3px; /* Height of the underline */
  background: linear-gradient(to right, #15294f, #c12427); /* Gradient from left to right */
  position: absolute;
  bottom: -5px; /* Adjust this to control distance from the text */
  left: 0;
}

.star-rating {
  display: flex; /* Arrange stars horizontally */
  gap: 5px; /* Space between stars */
  color: gold; /* Star color */
  font-size: 1.5rem; /* Adjust size relative to heading */
}

    
/* General Info Section */
.info-section {
  font-size: 16px;
  line-height: 1.6;
  margin: 0; /* Remove auto margins for full-width */
  padding: 20px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px; /* Optional, can remove for sharper edges */
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Includes padding in the width */
}

/* Info Box Styling */
.info-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.info-box .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-box .info-list li {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

.info-box .info-list li:nth-child(odd) {
  background-color: #ffffff;
}

.info-box .info-list li:nth-child(even) {
  background-color: #f9f9f9;
}

.info-box .info-list li:last-child {
  border-bottom: none;
}

/* Expandable Sections */
.expandable {
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.expandable-header {
  background-color: #f0f0f0;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  margin: 0;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s ease;
  display: flex; /* To align text and icon */
  justify-content: space-between; /* Space between text and icon */
  align-items: center; /* Vertically align content */
}

.expandable-header:hover {
  background-color: #d6d6d6;
}

.expandable-header::after {
  content: "▼"; /* Downward arrow */
  font-size: 12px;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.expandable-header.expanded::after {
  transform: rotate(-180deg); /* Flip the arrow when expanded */
}

.expandable-content {
  display: none;
  padding: 15px;
  background-color: #fff;
  line-height: 1.6;
}

/* Text selection fix */
.info-section, .info-list, .expandable-header, .expandable-content {
  user-select: text;
}

.info-box .info-list li {
  display: block;
  width: auto;
}

    
/* icon check cross */  
    .icon {
      font-size: 30px;
      margin-right: 10px;
    }
    .check {
      color: green;
    }
    .cross {
      color: red;
    }
  


/* Social media icons for footer */

.footer-content {
  display: flex;
  justify-content: center; /* Center align the icons */
  align-items: center;
}

.social-icons-footer {
  display: flex;
  gap: 15px; /* Adjust the gap between icons as needed */
}

.social-icon-footer i {
  font-size: 42px; /* Adjust the size of the icons as needed */
  color: #ffffff !important; /* Make the icons white */
  transition: transform 0.3s, color 0.3s;
}

.social-icon-footer i:hover {
  transform: scale(1.2); /* Slightly enlarge the icon on hover */
  color: #e0e0e0; /* Adjust hover color as needed */
}

/* comtent container 960W */

.container-content {
    width: 960px;
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container-content {
        margin-top:75px;
        width: 95%;
        padding-left: 15px; /* Adjust padding as needed */
        padding-right: 15px; /* Adjust padding as needed */
    }
}

/*Homepage banner */
        /* Define styles for the new banner */
        .banner-hp {
            /* Remove background-color */
            background-image: url('banner-bg.jpg'); /* Replace 'banner-bg.jpg' with the correct path to your image */
            background-size: cover; /* Ensure the background image covers the entire container */
            background-position: center; /* Center the background image */
            padding: 100px 0; /* Adjust padding as needed */
            text-align: center;
            height: 500px; /* Adjust height as needed */
            overflow: hidden; /* Hide overflow to prevent resizing */
        }

        /* Update text color to white */
        .banner-text {
            font-weight: 900;
            font-size: 3.3em !important;
            font-style: italic;
            line-height: 1.1;
            color: white; /* Text color */
            opacity: 0; /* Initially hidden */
            max-width: 100%; /* Ensure text runs the whole width */
            animation: fadeInLeft 0.5s ease-out forwards; 
            white-space: pre-line; /* Allow text to wrap */
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Add drop shadow with increased blur */
        }

        /* Keyframes for the fade-in-left animation */
        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .banner-text {
                font-size: 2.2em !important; /* Change font size to 1em for mobile */
                font-style: italic;
                line-height: 1.2;
                color: white; /* Text color */
            }
            
        }


.subtext-section {
    background-color: #15294F; /* Background color */
    color: white !important; /* Text color */
    padding: 50px 0; /* Adjust padding as needed */
    text-align: center; /* Center-align text */
}

.subtext-container {
    width: 70%; /* Set width to 70% of full width */
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
    margin: 0 auto; /* Center the container horizontally */
}

.banner-subtext-big {
    font-size: 1.6em; /* Adjust font size */
    line-height:auto;
    color: white !important; /* Text color */
    font-weight: 100; /* Set font weight */
    margin-bottom: 20px; /* Add space between text and button */
    display: inline-block; /* Display as inline-block to center */
}
        
.banner-subtext-small {
    font-size: 1.4em; /* Adjust font size */
    color: white;
    background-color: #15294F;
    padding: 10px;
}

.btn {
    /* Add additional button styling if needed */
    display: inline-block; /* Display as inline-block to center */
}


.site-navbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.site-navigation {
    display: flex;
    justify-content: flex-end; /* Align navigation to the right */
    align-items: center; /* Vertically center items */
    width:100%;
}

.site-navigation .nav-link {
    margin-left: 10px; /* Adjust spacing between links */
    font-family: 'Libre Franklin', sans-serif; /* Set font family to Libre Franklin */
    font-weight: 300; /* Set font weight to light (300) */
    font-size: 18px; /* Set font size to 18px */
    transition: color 0.3s; /* Add transition for smooth color change */
}

.site-navigation .nav-link:hover {
    color: #C02628; /* Change color on hover */
    background-color: transparent !important;
}

.site-navigation .nav-link:first-child {
    margin-left: 0; /* Remove margin from first link */
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .logo-container {
        text-align: left; /* Align the logo to the left */
        height: 45px !important;
    }

    .site-navbar-wrap {
        justify-content: space-between; /* Align the navigation and logo to opposite ends */
    }

    .site-navigation {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 60px; /* Adjust based on the height of your navbar */
        left: 0;
        width: 100%;
        background-color: #fff; /* Change background color as needed */
        padding: 10px 20px; /* Adjust padding as needed */
        z-index: 1000; /* Ensure it overlays other content */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow for better visibility */
    }

    .site-navigation.active {
        display: flex;
    }

    .toggle-menu {
        display: block; /* Show the toggle menu button */
        font-size: 24px;
        cursor: pointer;
        margin-left: auto; /* Align to the right */
    }
}

/* Hide the toggle button and show the navigation on larger screens */
@media (min-width: 769px) {
    .site-navigation {
        display: flex;
    }

    .toggle-menu {
        display: none;
    }
}
/* Photos */
.resp-img-container {
  max-width: 600px !important; /* Limit width to 600px on larger screens */
  margin: 0 auto; /* Center the image horizontally */
}

.resp-img-container img {
  max-width: 100%; /* Ensure image fits within container */
}

@media (max-width: 768px) {
  .resp-img-container {
    max-width: 100%; /* Full width on mobile devices */
  }
  .resp-img-container img {
    width: 100%; /* Full width for image on mobile devices */
  }
}


/* Hero banner */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-about {
  background-image: url('about_2.jpg');
}

.hero-media {
  background-image: url('about_4.jpg');
}

.hero-indie {
  background-image: url('indie.jpg');
}
@media (max-width: 768px) {
  .hero {
    height: 250px;
    background-size: 160%;
  }
}

.hero-content {
  padding-top: 160px;
  color: #000000;
  width: auto;
}

.hero-content h2 {
  font-size: 36px;
  color: #C02628;
  font-optical-sizing: auto;
  font-weight: 900 !important;
  font-style: normal;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}


/* Typography */

.primary-heading {
    font-family: 'Poppins', sans-serif; /* Specify Poppins font */
    font-weight: 600; /* Bold */
    letter-spacing: 0px; /* Adjust letter-spacing to make it closer */
    padding-bottom: 10px;
    margin-bottom: 35px;
    color: #C02628;
}


.heading-title {
    font-size: 36px; /* Adjust the font size as needed */
    margin-top: 50px;
    margin-bottom: 50px;
}

.highlight-row {
    margin-top: 10px; /* Adjust the top margin */
    margin-bottom: 10px; /* Adjust the bottom margin */
}

.highlight-line {
    width: 100%;
    height: 1px;
    background-color: #000; /* Color of the separation lines */
    margin-top: 10px; /* Adjust the top margin */
    margin-bottom: 10px; /* Adjust the bottom margin */
}

.highlight-text {
    font-size: 14px; /* Adjust the font size */
    font-weight: 500;
}

.section-highlight {
    font-size: 1.2em; /* Adjust font size */
    line-height:1.3;
    color: #071A33;
    font-style: italic;
    font-weight: 900; /* Set font weight */
    margin-bottom: 20px; /* Add space between text and button */
    display: inline-block; /* Display as inline-block to center */
}

br {
    margin-bottom:20px;
}

.line-break {
  border-top: 1px solid white;
  width: 5%; /* Adjust the width as needed */
  text-align:center;
  margin: 20px auto; /* Adjust as needed */
}

.bio{
    font-size: 14px;
    font-weight:100;
    line-height:1.6;
}

.hyperlink {
    color: #C12427;
    font-weight:900;
    text-decoration: underline;
}

.sub-heading {
    font-size: 32px;
    font-weight: 900 !important;
    font-kerning: normal;
    color: #142A4F;
    
}

.sub-heading-hl {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

/* Section Header 1 */
.section-header-1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 52px;
  word-wrap: break-word;
  color: #333; /* Adjust color as needed */
  /* Additional styles can be added here */
}

/* Section Header 2 */
.section-header-2 {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #1d1d1f
  /* Additional styles can be added here */
}

/* Section Header 3 */
.section-header-3 {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #333; /* Adjust color as needed */
  /* Additional styles can be added here */
}



/* About Page CSS here */

.about-section {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    flex: 1 100%;
}

.about-section .text {
    flex: 2 0px;
    padding-top: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.about-section img {
    flex: 1 0px;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.team-member {
    margin-bottom: 30px;
}

.team-member h3 {
    margin-top: 0;
    font-weight: bold;
}

.team-member p {
    margin-bottom: 0;
}


.team-member-img {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
    
}

/* Adjustments for the second row */
@media (min-width: 768px) {
    .about-section:nth-child(2) .text {
        order: 2;
    }
    
    .about-section:nth-child(2) img {
        order: 1;
        margin-right: 0;
        margin-left: 20px;
    }
}

.highlight-row {
    margin-top: 50px;
    margin-bottom: 50px;
}

.highlight-text {
    color: #ff0000; /* Example color */
    font-size: 2em; /* Example font size */
    text-align: center
    /* Add any other styles you want for highlighted text */
}
/*End About CSS section */

.footer-main {
  background-color: #15294F;
  color: white;
  padding: 15px 0;
}

.container-footer {
  max-width: 960px;
  margin: 0 auto;
}

.footer-content {
  margin-bottom: 20px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-height: 100px;
  width: auto;
  margin-top:10px;
  margin-bottom:10px;
}

.social-icons-footer {
  text-align: center; /* Center the social icons */
}

.social-icon-footer {
  display: inline-block;
  margin: 0 2px;
}

.social-icon-footer img {
  max-height: 25px;
}

.footer-divider {
  border-top: 0.5px solid white;
}

.acknowledgement,
.copyright {
  font-size: 14px;
  line-height: 1.5;
  text-align: center; /* Center the copyright text */
}





/* gray highlight box */
.site-section-gray {
  background-color: gray; /* Set your desired background color */
  padding: 50px 0; /* Adjust the padding as needed */
  position: relative;
  margin-bottom: auto;
  height: 500px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-section-gray h2.title {
  margin-top: 50px;
}

.site-section-gray p.sub-text {
  color: white;
}

.site-section-gray a.btn-primary {
  background-color: #C02628; /* Use the same color as your primary button */
  color: white;
}

.site-section-gray a.btn-primary:hover {
  background-color: #0056b3; /* Use a darker shade for the hover effect */
}

/*top-bar*/

.top-bar {
    background-color: blue;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

/* CSS for social media icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Align items vertically */
}

.social-icons .icon {
    margin-left: 10px; /* Add some spacing between icons */
}

.icon img {
    width: 30px; /* Adjust the width and height according to your icon size */
    height: 30px;
}

/* CSS for social media icons */
.social-media-container-second {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
}

.social-icons .icon {
    margin-left: 10px; /* Add some spacing between icons */
}


/*icon */

    /* Custom styles for your social media icons */
    .social-icons {
      font-size: 55px; /* Set the font size as needed */
    }

    .social-icons a {
      color: #333; /* Set the color to your preferred color */
      margin: 0 10px; /* Adjust the margin as needed */
        text-decoration: none;
    }

    .social-link {
      text-decoration: none;
      color: #333; /* Change color as needed */
      transition: color 0.3s;
    }

    .social-link:hover {
      color: #C02628; /* Change hover color as needed */
    }

/*Typo */

strong {
  font-weight: 700; /* or any value higher than 700 */
}
.text-primary {
    color:#2A2D7C !important;
}

/* Logo - *use this */
.logo-container {
    height: 90px;
}

.logo-container img {
    height: 100%;
    width: auto;
}

.site-section-blue {
    background-color: #142A4F;
    color: white !important;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
    height:90%;
}

.title {
    font-size: 2em;
    color: white;
    min-height: 80px; /* Adjust this height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-section-red {
    background-color: #ED2024;
    color: white; /* Add this if you want white text on the blue background */
    padding: 20px; /* Adjust the padding as needed */
}

/* Base */
body {
  line-height: 28px;
  color: #1d1d1f;
  font-weight: 300;
  font-size: 18px;
  font-family:'Libre Franklin', sans-serif;
  /* user-select: none;  Allow text selection for the entire website */
}

::-moz-selection {
  background: #000;
  color: #fff; }

::selection {
  background: #000;
  color: #fff; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  color: #071A33; }

.position-relative {
  position: relative !important; }

.overflow-hidden {
  overflow: hidden; }

.text-black {
  color: #000 !important; }

.bg-black {
  background: #000 !important; }

.site-wrap:before {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden; }

.offcanvas-menu .site-wrap {
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: hidden; }
  .offcanvas-menu .site-wrap:before {
    opacity: 0;
    visibility: hidden; }

.offcanvas-menu {
  position: relative; }
  .offcanvas-menu:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 21;
    background: rgba(0, 0, 0, 0.2); }

.btn {
  border-width: 2px;
  border-radius: 30px;
    background-color: #C02628 !important;
    border-color: #C02628 !important;
}
  .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  .btn.btn-lg {
    padding: 10px 20px;
    font-size: 16px; }
  .btn.btn-primary {
    color: #fff; }
    .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
      border-color: #000 !important;
      color: #fff !important;
      background-color: #000 !important; }
  .btn.btn-outline-primary {
    color: #C02628;
    border-color: #C02628 !important;
    background-color: transparent !important; }
    .btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus, .btn.btn-outline-primary:active {
      border-color: #C02628 !important;
      color: #fff !important;
      background-color: #C02628 !important; }
  .btn.btn-md {
    padding: 14px 30px; }

.bg-black {
  background: #000; }

.form-control {
  height: 47px;
  background: #f6f6f6;
  border-radius: 0;
  border: 1px solid #f6f6f6; }
  .form-control:active, .form-control:focus {
    border-color: #C02628; }
  .form-control:hover, .form-control:active, .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.site-section {
  padding: 4.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 7em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  font-size: 30px;
  color: #dee2e6;
  position: relative; }
  .site-section-heading:before {
    content: "";
    left: 0%;
    top: 0;
    position: absolute;
    width: 40px;
    height: 2px;
    background: #C02628; }
  .site-section-heading.text-center:before {
    content: "";
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    width: 40px;
    height: 2px;
    background: #C02628; }

.border-top {
  border-top: 1px solid #ced4da !important; }

.site-footer {
  padding-top: 14rem;
  padding-bottom: 2rem;
  background: #0250de; }
  .site-footer p {
    color: white; }
  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #fff; }
  .site-footer a {
    color: #b3b3b3; }
    .site-footer a:hover {
      color: white; }
  .site-footer ul li {
    margin-bottom: 10px; }
  .site-footer .footer-heading {
    font-size: 20px;
    color: #fff; }

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000; }

.bg-image {
  background-size: cover;
  background-repeat: no-rpeeat;
  overflow: hidden; }
  .bg-image.center {
    background-position: top center; }
  .bg-image.fixed {
    background-position: fixed !important; }
  .bg-image.overlay, .bg-image.overlay-primary, .bg-image.overlay-info, .bg-image.overlay-success, .bg-image.overlay-warning {
    position: relative; }
    .bg-image.overlay:before, .bg-image.overlay-primary:before, .bg-image.overlay-info:before, .bg-image.overlay-success:before, .bg-image.overlay-warning:before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0; }
  .bg-image.overlay:before {
    background: rgba(0, 0, 0, 0.4); }
  .bg-image.overlay-primary:before {
    background: rgba(0, 123, 255, 0.9); }
  .bg-image.overlay-info:before {
    background: rgba(47, 240, 193, 0.9); }
  .bg-image.overlay-success:before {
    background: rgba(40, 167, 69, 0.9); }
  .bg-image.overlay-success:before {
    background: rgba(255, 193, 7, 0.9); }

/* Navbar */
.site-navbar-wrap {
  position: relative;
  z-index: 99;
  width: 100%;
  left: 0;
  background: #fff; }
  .site-navbar-wrap a {
    color: #000; }
  .site-navbar-wrap .site-navbar-top {
    font-size: 0.7rem; }

.site-navbar-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.site-navbar {
  margin-bottom: 0px;
  width: 100%;
  padding: 20px 0;
}

.site-navbar .site-logo {
  height: 100px; /* Adjust logo height */
  font-weight: 200;
  line-height: 0;
  position: relative;
}

.site-navbar .site-logo a {
  font-weight: 200;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  padding: -5px 0;
}

.site-navbar .site-navigation a {
  text-decoration: none !important;
  display: inline-block;
  font-weight: 200;
}

.site-navbar .site-navigation > li {
  display: inline-block;
  padding: 10px 5px;
}

.site-navbar .site-navigation > li > a {
  padding: 20px 10px;
  color: black;
  font-size: 15px;
  text-decoration: none !important;
}

.site-navbar .site-navigation > li > a.active {
  color: #fff;
}

.site-navbar .site-navigation > li > a:hover {
  color: #fff;
}

.site-navbar .site-navigation > li:last-child {
  padding-right: 0;
}

.site-navbar .site-navigation > li:last-child > a {
  padding-right: 0;
}


.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
      float: right;
      margin-top: 8px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
        font-size: 30px;
        display: inline-block;
        padding-left: 10px;
        padding-right: 0px;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
          color: #dee2e6; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
      float: left;
      margin-top: 10px;
      margin-left: 0px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
        display: inline-block;
        text-transform: uppercase; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
          max-width: 70px; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
          text-decoration: none; }
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px; }
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
    .site-mobile-menu .site-nav-wrap a {
      padding: 10px 20px;
      display: block;
      position: relative;
      color: #212529; }
      .site-mobile-menu .site-nav-wrap a.active, .site-mobile-menu .site-nav-wrap a:hover {
        color: #C02628; }
    .site-mobile-menu .site-nav-wrap li {
      position: relative;
      display: block; }
      .site-mobile-menu .site-nav-wrap li.active > a {
        color: #C02628; }
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
      position: absolute;
      right: 0px;
      top: 10px;
      z-index: 20;
      width: 36px;
      height: 36px;
      text-align: center;
      cursor: pointer;
      border-radius: 50%; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
        background: #f8f9fa; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 12px;
        z-index: 20;
        font-family: "icomoon";
        content: "\f078";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .site-mobile-menu .site-nav-wrap > li {
      display: block;
      position: relative;
      float: left;
      width: 100%; }
      .site-mobile-menu .site-nav-wrap > li > a {
        padding-left: 20px;
        font-size: 20px; }
      .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin: 0;
        list-style: none; }
        .site-mobile-menu .site-nav-wrap > li > ul > li {
          display: block; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > a {
            padding-left: 40px;
            font-size: 16px; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
            padding: 0;
            margin: 0; }
            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
              display: block; }
              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                font-size: 16px;
                padding-left: 60px; }

.sticky-wrapper {
  z-index: 100;
  width: 100%; }
  .sticky-wrapper + .site-blocks-cover {
    margin-top: 140px; }
  .sticky-wrapper .site-navbar {
    background-color: #fff;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .sticky-wrapper .site-navbar a.active {
      color: #fff; }
  .sticky-wrapper.is-sticky .site-navbar {
    background-color: #fff;
    padding-top:10px;
    padding-bottom:10px;
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1); }
    .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li {
      display: inline-block;
      padding: 10px 5px; }
      .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child {
        padding-right: 0; }
        .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child > a {
          padding-right: 0; }
      .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.has-children > a {
        padding-right: 20px; }
      .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a {
        padding: 10px 10px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 15px; }
        .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a.active {
          color: #fff; }
  .sticky-wrapper .shrink {
    padding-top: 10px !important;
    padding-bottom: 10px !important; }

/* Blocks */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
  .site-blocks-cover, .site-blocks-cover > .container > .row {
    min-height: 600px;
    height: 720px; }
  .site-blocks-cover.inner-page, .site-blocks-cover.inner-page > .container > .row {
    min-height: 600px;
    height: calc(80vh); }
  .site-blocks-cover h1 {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1; }
    @media (max-width: 991.98px) {
      .site-blocks-cover h1 {
        font-size: 4rem; } }
  .site-blocks-cover .sub-text {
    font-size: 1.2rem;
    color: gray;
    font-weight: 300; }
    @media (max-width: 991.98px) {
      .site-blocks-cover .sub-text {
        color: #000; } }
  .site-blocks-cover .img-wrap {
    position: absolute;
    z-index: -1;
    width: calc(100%);
    top: 0;
    height: 90%;
    z-index: 2;
    right: 0;
    min-height: 600px;
    overflow: hidden; }
    @media (max-width: 991.98px) {
      .site-blocks-cover .img-wrap {
        width: 100%;
        right: 0%;
        top: 0; }
        .site-blocks-cover .img-wrap .hero-slider:before {
          position: absolute;
          content: "";
          background: #fff;
          opacity: .5;
          z-index: 2;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; } }
    .site-blocks-cover .img-wrap .slide {
      height: 100vh;
      position: relative; }
      .site-blocks-cover .img-wrap .slide.overlay {
        position: relative; }
        .site-blocks-cover .img-wrap .slide.overlay:before {
          position: absolute;
          content: "";
          left: 0;
          z-index: 1;
          bottom: 0;
          right: 0;
          top: 0;
          background: rgba(0, 0, 0, 0.4); }
      .site-blocks-cover .img-wrap .slide img {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
  .site-blocks-cover .intro {
    z-index: 3;
    position: relative; }
    .site-blocks-cover .intro .heading h1 {
      color: #fff; }
    @media (max-width: 991.98px) {
      .site-blocks-cover .intro .heading {
        margin-left: 0; } }
    .site-blocks-cover .intro .text p {
      color: #fff; }
    @media (max-width: 991.98px) {
      .site-blocks-cover .intro .text {
        padding-left: 0; } }

.site-menu-toggle .menu-text {
  position: relative;
  top: -6px;
  text-transform: uppercase; }

.hero-slider .owl-nav {
  position: absolute;
  bottom: 120px;
  right: 50px;
  z-index: 100; }
  .hero-slider .owl-nav .owl-prev, .hero-slider .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #C02628;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem; }

.section-title .sub-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  font-weight: 400;
  color: #b3b3b3; }

.section-title .title {
  font-size: 2.2rem; }

.service {
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 2px solid #C02628;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  position: relative;
  top: 0; }
  .service:hover, .service:focus {
    -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    border: 1px solid transparent;
    border-top: 2px solid #C02628;
    top: -2px; }
  .service *:last-child {
    margin-bottom: 0; }
  .service h3 {
    font-size: 1.1rem;
    color: #000; }
  .service p {
    color: #999999;
    font-size: 1rem; }

.readmore {
  position: relative;
  padding-right: 20px;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .1rem;
  font-weight: 900;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .readmore:after {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    position: absolute;
    content: "\e5c8";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'icomoon';
    right: 0;
    opacity: 0;
    visibility: hidden; }
  .readmore:hover {
    padding-right: 30px; }
    .readmore:hover:after {
      opacity: 1;
      visibility: visible; }

.custom-progress {
  height: 7px; }
  .custom-progress .progress-bar {
    border-radius: 30px; }

.ul-check {
  margin-bottom: 50px; }
  .ul-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5; }
    .ul-check li:before {
      left: 0;
      font-size: 20px;
      top: -.3rem;
      font-family: "icomoon";
      content: "\e5ca";
      position: absolute; }
  .ul-check.white li:before {
    color: #fff; }
  .ul-check.success li:before {
    color: #28a745; }
  .ul-check.primary li:before {
    color: #C02628; }

.item {
  border: none;
  margin-bottom: 30px;
  border-radius: 4px; }
  .item a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 4px; }
    .item a img {
      position: relative;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: .3s all ease-in-out;
      -o-transition: .3s all ease-in-out;
      transition: .3s all ease-in-out; }
  .item .item-wrap {
    display: block;
    position: relative; }
    .item .item-wrap:after {
      z-index: 2;
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      visibility: hidden;
      opacity: 0;
      -webkit-transition: .3s all ease-in-out;
      -o-transition: .3s all ease-in-out;
      transition: .3s all ease-in-out; }
    .item .item-wrap > span {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 3;
      -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
      transform: translate(-50%, -50%) scale(0);
      color: #fff;
      font-size: 1.7rem;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
    .item .item-wrap:hover:after {
      opacity: 1;
      visibility: visible; }
    .item .item-wrap:hover span {
      margin-top: 0px;
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1); }
  .item:hover a img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out; }

.contact-form {
  padding: 30px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.1);
  margin-bottom: -15em; }

.jm-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 7em; }

.person h3 {
  font-size: 1.2rem; }

.blockquote {
  margin-bottom: 30px; }
  .blockquote p {
    font-size: 1.15rem; }
  .blockquote p:first-child {
    border-left: 10px #eee solid;
    margin-bottom: 20px; }
  .blockquote p {
    padding-left: 20px;
    color: #000;
    font-style: italic; }

.form-subscribe .form-control {
  border-color: #333333 !important;
  background: #4d4d4d !important; }
  .form-subscribe .form-control:active, .form-subscribe .form-control:focus {
    border-color: gray !important; }
  .form-subscribe .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc;
    font-style: italic; }
  .form-subscribe .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc;
    font-style: italic; }
  .form-subscribe .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc;
    font-style: italic; }
  .form-subscribe .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc;
    font-style: italic; }

.blockquote img {
  width: 40px;
  border-radius: 50%; }
