:root {
    --accent-color: #cd1719;
    --bs-font-sans-serif: 'Roboto', sans-serif;
}

html, body {
    font-family: 'Roboto', sans-serif !important;
}
.white {
    color: white !important
}
.white-background {
    background-color: white !important
}
.grey-background {
    background-color: #f5f7fa;
}
.blue {
    color: #467cb9 !important
}
.blue-background {
    background-color: #467cb9
}
.red {
    color: #cd1719 !important;
}
.red-background {
    background-color: #cd1719 !important;
}
.is-invalid {
  border: 1px solid red;
}
.header {
    height: 90px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row
}
.headerLink {
    padding: 0 20px;
    font-weight: 600;
}

.headerLink:hover {
    color: #467cb9;
}

.contactHeader {
    min-width: 200px;
    align-items: end;
    border-left: 1px solid #e1e3e5;
    padding: 0 20px;
    text-align: end;
}
.headerWrapper {
    max-width: 1280px; /* Maximum width */
    width: 100%; /* Makes it responsive */
    margin: 0 auto; /* Centers it horizontally */
    padding: 0px 20px; /* Keeps spacing */
}
.responsive-logo {
    margin: 0 20px;
    width: 250px;
    height: auto;
}
.headerPhone {
    color: #cd1719;
    font-size: 22px;
    font-weight: 700;
}

.linksHeader {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: row;
}
.linksHeader a {
    color: #1B222B;
}
.barsHeaderIcon {
    display: none;
}
.headerLinksWrapper {
    align-items: center;
}
@media (max-width: 992px) {
    .pageContent {
        padding: 80px 50px;
    }

    .headerLink {
        padding: 0px 10px 0px 10px;
    }
}
@media (max-width: 992px) {
    .headerLinksWrapper {
        justify-content: flex-end;
    }
    .responsive-logo {
        width: 230px;
    }
}
@media (max-width: 768px) {
        .headerWrapper,
    .header {
        width: 100%;
    }
    .headerLogoWrapper {
        width: 100%;
        flex: 1;
    }
    .responsive-logo {
        width: 200px;
    }
    .pageContent {
        padding: 60px 30px;
    }
    .headerWrapper {
        padding: 10px 20px 10px 20px;
    }
    .linksHeader {
        display: none;
    }
    .headerLinksWrapper {
        width: 100%;
    }
    .barsHeaderIcon {
        display: block;
        font-size: 22px;
        margin: auto 20px
    }
}

@media (max-width: 576px) {
    .responsive-logo {
        margin: 0px;
    }
    .headerAdress {
        font-size: 13px;
    }
    .header {
        height: auto;
        flex-direction: column-reverse;
    }
    .contactHeader {
        width: 100%;
        align-items: start;
        border-left: 0 solid #e1e3e5;
        border-bottom: 1px solid #e1e3e5;
        text-align: start;
        margin: 0px 0px 20px 0px;
        padding: 0px 0px 16px 0px;
    }
    .header {
        align-items: start;
    }

    .headerWrapper {
        padding:20px;
    }
}

a {
    text-decoration: none !important;
}


/* Background Map */
.map-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Contact Section */
#contact-section {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 50px 40px;
    z-index: 1;
    width: 35%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text Styles */
.contactPadding {
    padding-top: 40px;
}
.contactTitle {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
}
.contactDetails {
    color: #1B222B;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    padding-top: 17px;
}
.contactSubtitle {
    color: #5C6166;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-section {
        display: flex;
        flex-direction: column;
		align-items: center;
        height: auto;
    }

    #map {
        position: static;
        width: 100%;
        height: 400px;
    }

    #contact-section {
        position: static;
        transform: none;
        width: 90%;
        margin: 100px 20px;
        background-color: white;
        border: 1px solid #E1E3E5;
        display: flex;
        flex-direction: column;
		box-shadow: none;
    }
}

@media (max-width: 768px) {
    #contact-section {
        width: 100%;
        border: none;
        padding: 30px;
		margin:  80px 20px;
    }
}

.pageWrapper {
    background-color: #f5f7fa;
    min-height: 100vh;
}
.pageContent {
    padding: 100px 50px;
}



/* Overlay to darken the background */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
}

/* Side Menu (Hidden by Default, Positioned on Left) */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Hidden to the left */
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Menu Content */
.side-menu-content {
    padding: 40px 20px 20px 20px;
}

.side-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu nav ul li a {
    text-decoration: none;
    color: black;
}
.side-menu nav ul li a:hover {
    color: #467cb9;
}

/* Close Button */
.close-menu {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
    position: absolute;
    top: 10px;
    right: 15px;
}

/* Show Menu & Overlay */
.menu-open .menu-overlay {
    visibility: visible;
    opacity: 1;
}

.menu-open .side-menu {
    left: 0;
}

/* Disable Scrolling when Menu is Open */
body.menu-open {
    overflow: hidden;
}

.headerLinkMobile {
    font-size: 18px;
    font-weight: 600;
    line-height: 2.4em;
}


/***** HOMEPAGE *****/
.fade-out-image {
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0));
}

#checksSectionContainer {
    padding: 150px 0px;
}


.info-content-checks {
    align-items: center !important;
}
#checkButton {
    margin-top: 60px;
}
#checkSectionWrapper {
    height: auto;
    background-image: url(https://ld-wp73.template-help.com/woocommerce/prod_28665/v1/wp-content/uploads/2020/09/Rectangle-126.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.checkItemWrapper {
    padding-top: 60px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr); /* Default to 2 columns */
    gap: 20px 5%; /* 20px vertical gap, 40px horizontal gap */
}

.checkItem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    display: flex;
    flex-direction: row;
}

/* Large screens: 3 rows */
@media (min-width: 1024px) {
    .fade-out-image {
        -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0));
        mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0));
    }
    .checkItemWrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile: 1 row */
@media (max-width: 768px) {
    .checkItemWrapper {
        grid-template-columns: 1fr;
    }
    .fade-out-image {
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0));
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0));
    }
}
.checkItem i {
    font-size: 20px;
    color: #467cb9;
}
.checkItemText {
    color: #FFFFFF;
    padding-left: 10px;
}
.info-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    padding: 0 5%;
}

.info-image {
    flex: 1;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infoSectionTitle {
    color: #cd1719;
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin: 5px 0px 0px 36px;
}

.infoSectionDescription {
    color: #5C6166;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    margin: 5px 0px 0px 36px;
    align-self: flex-start;
    text-align: left;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0% 0% 0% 6%;
}
.info-content-margin {
    margin: -40px 20px 0px 20px;
}
.info-title {
    font-size: 48px;
    font-weight: bold;
    color: #1B222B;
    margin-bottom: 40px;
}

.info-subtitle {
    color: #5C6166;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.info-icon {
    display: flex;
    align-items: center; /* Center icon vertically */
    justify-content: center; /* Center icon horizontally */
    height: 64px;
    width: 64px;
    color: #cd1719;
    flex-shrink: 0; /* Prevent shrinking */
}

.info-icon i {
    font-size: 40px;
}

.banner {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the image fills the banner while keeping center */
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 45%;
    left: 15%; /* Moves content a bit to the left */
    transform: translate(0, -50%);
    text-align: left;
    color: white;
}

.bannerTitle {
    color: #1B222B;
    font-family: "Roboto", Sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 79px;
    text-shadow: 1px 2px 0px rgba(0,0,0,0.3);
    margin-bottom: 40px; /* Adds space below title */
}

.bannerSubtitle {
    color: #cd1719;
    font-family: "Roboto", Sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 60px; /* Adds space below subtitle */
        text-shadow:
        -0.5px -0.5px 0 #fff,  
         0.5px -0.5px 0 #fff,
        -0.5px  0.5px 0 #fff,
         0.5px  0.5px 0 #fff;
}

.banner-btn {
    display: inline-block; /* Prevents it from taking full width */
    padding: 14px 32px;
    background-color: #cd1719;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.banner-btn:hover {
    color: white;
    background-color: #da5556;
}

@media (max-width: 1024px) {
    .info-content {
        padding: 0% 0% 0% 8%;
    }
}
@media (max-width: 768px) {
    .info-title {
        font-size: 36px;
    }
    .bannerTitle {
        font-size: 48px;
        line-height: 55px;
    }
    .bannerSubtitle {
        font-size: 18px;
    }
    .banner-content {
        left: 10%;
        top: 35%;
    }

    .info-section {
        flex-direction: column-reverse !important;
        align-items: stretch;
        height: 100vh; /* Ensure the section takes the full viewport height */
    }
    .info-image {
        width: 100%;
        flex: 1; /* Takes half of the section */
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 240px;
    }

    .info-image img {
        width: 100%;
        max-height: 240px;
        height: 100%; /* Stretch to fill parent */
        object-fit: cover; /* Ensures proper scaling without distortion */
    }

    .info-content {
        flex: 1; /* Takes the other half */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5%;
    }
}
@media (max-width: 576px) {
    .info-image {
        display: none;
    }
    .infoSectionDescription {
        margin: 5px;
        font-size: 16px;
    }
    .infoSectionTitle {
        margin: 5px
    }
    .info-content-margin {
        margin: 0 20px
    }
    .info-icon {
        height: 48px;
        width: 48px;
    }
    .info-section {
        height: auto;
        padding: 80px 0;
    }
    .info-content-checks {
        align-items: start !important;
    }
    #checkButtonWrapper {
        width: 100%;
        text-align: center;
    }
    #checkButton{
        width: 100%;
    }
    .checkItem {
        justify-content: flex-start;
    }
    #checkSectionWrapper {
        padding: 80px 5%;
    }
}
/***** HOMEPAGE *****/


.figuresContainerWrapper {
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center; /* Centers content */
  }
  
  .figuresContainer {
    display: flex;
    flex-direction: column; /* Stack items by default */
    width: 90%;
  }
  .figuresTitle{
      font-size: 48px;
      font-weight: bold;
      margin: auto;
      padding-bottom: 40px;
  }
  .figureNumber {
    font-weight: 700;
    font-size: 46px;
  }
  
  .figuresNumbersContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .aboutUsContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aboutUsTitle {
    font-size: 48px;
    font-weight: bold;
    padding: 40px 0;
}
.aboutUsSubtitle {
    margin-bottom: 40px;
}
.aboutUsDescription {
    font-size: 32px;
    max-width: 70%;
    padding-bottom: 40px;
    text-align: justify;
}
.aboutUsContainer {
    padding: 100px 5%;
    width: 100vw;
}
@media (max-width: 576px) {
    .aboutUsContainer {
        padding: 80px 5%;
    }
    .aboutUsContent {
        flex-direction: column;
    }
}