/* #region Logo Section */

#logo {}

#logo .icon-wrapper {
    align-items: center;
    display: flex;
    /* Enables flexbox layout */
}

@media (max-width: 767px) {
    #logo .icon-wrapper {
        justify-content: center;
        /* Centers items horizontally */

    }
}

#logo .icon {
    color: #be1e30;
}

/* #endregion */

/* #region Clearance Section */

.full-width-background {
    width: 100vw;
    /* Full viewport width */
    margin-left: calc(-50vw + 50%);
    /* Center align the full-width container */
    margin-right: calc(-50vw + 50%);
    /* Center align the full-width container */
    background-color: #9e2e3b;
    padding: 0 !important;
}

.clearance-container {
    max-width: 1200px;
    /* Adjust to match your content width */
    margin: 0 auto;
    /* Center align the content container */
    padding: 28px;
    /* Add some padding to the content container */
    padding-bottom: 2.4%;
}

/* #endregion */

/* #region Map Section */

.map-container {
    width: 100vw;
    /* Full viewport width */
    margin-left: calc(-50vw + 50%);
    /* Center align the full-width container */
    margin-right: calc(-50vw + 50%);
    /* Center align the full-width container */
    padding: 0 !important;
    background-color: rgb(226, 226, 226);
}

#map {
    margin: 0 !important;
    padding: 0 !important;
}

#map iframe {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    /* Remove the border around the iframe */
    display: block;
    /* Ensure the iframe doesn't have any inline margin */
}

/* #endregion */

/* #region About Us Section */


#AboutUs {
    padding: 2rem 0;
}

#AboutUs img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.sectiontitle {
    text-align: center;
    font-family: "Roboto Slab", serif;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.sectionsubtitle {
    text-align: center;
    color: grey;
}

.aboutus-title {
    font-family: "Roboto Slab", serif;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.icon-line {
    display: flex;
    align-items: center;
}

.icon-line hr {
    border: 1px solid #a11526;
    margin: 0 8px;
    width: 36%;
    /* Set a fixed width for the horizontal line */
}

.icon-line .fas {
    font-size: 20px;
    color: #a11526;
}

.icon-line .fa-person-half-dress {
    font-size: 26px;
    color: #a11526;
}

/* #endregion */

@media (min-width: 768px) and (max-width: 992px) {
    .showcase-item:nth-child(n+4) {
        display: none;
    }
}