.full-width {
    margin: 0 calc(0px - (100vw - 100%) / 2);
    /* setting padding left and right here will keep your content from spanning the entire container */
    /* avoid setting padding in shorthand elsewhere to prevent overriding*/
    padding-left: calc((100vw - 100%) / 3);
    padding-right: calc((100vw - 100%) / 3);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-bar {
    background-color: rgba(255, 255, 255, 0.70);
    /* padding-top: 1rem;
    padding-bottom: 1rem; */
}

.intro-section {
    background-image: url("../images/title-background.jpg");
    background-size: cover;
    /* background-color: #78e4ff76; */
    /* background-size: auto;
    background-repeat: no-repeat; */
}

@media (max-width: 1279px) {
    .intro-section{
        background-image: url("../images/title-background-sm.jpg");
    }
}

.intro-tile {
    margin: 25px 1%;
    -ms-flex-preferred-size: 31%;
    padding: 0px 35px;

    border-top: 15px solid transparent;
    overflow: visible; /* Allow content to overflow */
    word-wrap: break-word; /* Enable wrapping for long words */
    white-space: normal; /* Allow text to wrap naturally */    -webkit-transition: all .2s;
    transition: all .2s;
    color: black;
    vertical-align: top;
    text-align: center;
}

.intro-tile:hover {
    /* background-color: #502a9767; */
    /* border-top: 15px solid #512a97; */
    background-color: #502a9767;
    -webkit-box-shadow: 0 0 10px 0 #502a9767;
    box-shadow: 0 0 10px 0 #502a9767;
    overflow: visible; /* Allow content to overflow */
    word-wrap: break-word; /* Enable wrapping for long words */
    white-space: normal; /* Allow text to wrap naturally */
    -webkit-transition: all .2s;
    transition: all .2s;
}

.intro-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px; /* Set consistent width for all tiles */
}

.img-box {
    width: 100%;
    height: 9.5rem; /* Consistent height for images */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keeps the image aspect ratio */
}

.text-box {
    margin-top: 10px;
    height: 80px; /* Set a fixed height for text */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.text-box h3 {
    font-size: 1.4rem; /* Adjust font size to fit */
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

.text-box h5 {
    font-size: 1.4rem; /* Adjust font size to fit */
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

/* Media query for tablets and smaller screens */
@media (max-width: 1201px) {
    .img-box {
        height: 6.5rem; /* Consistent height for images */
    }
    .text-box h3 {
        font-size: 1.2rem; /* Slightly smaller font size */
    }
}

/* Media query for tablets and smaller screens */
@media (max-width: 565px) {
    .img-box {
        height: 6.5rem; /* Consistent height for images */
    }
    .text-box h3 {
        font-size: 1rem; /* Slightly smaller font size */
    }
}

.tile-rounded-left {
    border-radius: 15px 0px 0px 15px;
}

.tile-rounded-right {
    border-radius: 0px 15px 15px 0px;
}

.about_section {
    background-color: #ffffff;
}

.about_section_right {
    background-color: #f3f0f6;
}

.detail-box {
    margin-top: 1rem;
}

.detail-box p {
    text-align: justify;
}

.tile-title-box {
    height: 3rem; /* Consistent height for titles */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Prevent overflow */
}

.tile-title {
    font-size: 1.3rem;
    text-align: center;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word; /* Fallback */
}

.tile-title {
    word-break: keep-all; /* Prevent breaking within words */
}

@media (max-width: 1201px) {
    .tile-title {
        font-size: 1rem; /* Reduce font size slightly for smaller screens */
    }
}

@media (max-width: 991px) {
    .tile-title {
        font-size: 0.9rem; /* Reduce font size slightly for smaller screens */
    }
}

.about-tile {
    margin: 1rem;
    padding: 1rem;
    -ms-flex-preferred-size: 31%;
    flex-basis: 31%;
    /* padding: 35px 25px 25px; */

    overflow: hidden;
    color: black;
    /* -webkit-box-shadow: 0 0 10px 0 #502a9767;
    box-shadow: 0 0 10px 0 #502a9767; */
    /* overflow: hidden; */
    border-radius: 5px;
}

.about-tile h5 {
    margin-top: 0.5rem;
}

.text-large {
    font-size: 1.2rem;
}

.text-large h2 {
    font-size: 3rem;
}

.no-padding-left {
    padding-left: 0px;
}

.padding-top-small {
    padding-top: 10px;
}

.padding-top-medium {
    padding-top: 15px;
}

footer {
    background-color: #190734;
    color: #ffffff;
}

.footer_section p {
    color: #ffffff;
}

.footer_section p a {
    color: #ffffff
}

.tile-image {
    max-width: 100%;
}
