/* Banner Image */
.banner-image {
    display: flex;
    width: 100% !important;
    height: 450px !important;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-content: center;
    filter: blur(0px);
}

.banner-image .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.75);
    padding: 1%;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    width: 600px;
}

.centered h1 {
    font-size: 40px;
    text-transform: uppercase;
}

.centered p {
    font-size: 15px;
}

.centered p a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 1110px) {
    .banner-image {
        width: 100%;
        height: 150px !important;
        overflow: hidden;
        display: flex;
        object-fit: cover;
    }

    .banner-image img {
        width: 100%;
    }

    .banner-image .centered {
        width: 250px;
    }

    .centered h1 {
        font-size: 20px;
        text-transform: uppercase;
    }

    .centered p {
        font-size: 12.5px;
    }

    .centered p a {
        color: black;
        text-decoration: none;
        font-weight: bold;
    }
}

.about-image .sector-card {
    width: 100%;
    margin: 25px 0px;
}

.about-para {
    text-align: justify;
}

.core-advantage {
    line-height: 25px;
}

.sub-card h1 {
    margin: 0px;
    padding: 15px 0px;
}

.sub-card ul li::before {
    content: '-';
}

@media (max-width: 1110px) {
    .sub-page-container {
        flex-direction: column;
    }
}

/* Video Container */
.video-container {
    width: 85%;
    padding: 0.5% 7.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.video-box {
    max-width: 750px;
    width: 100%;
    height: 450px;
    padding: 1%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .video-container {
        width: 85%;
        padding: 5% 7.5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .video-box {
        max-width: 350px;
        width: 100%;
        height: 175px;
        padding: 1%;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    }

    .video-box iframe {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
}

/* Read More Link */
.about-card p a {
    font-weight: bold;
    text-decoration: none;
    color: black;
}