.main {
    padding-top: 2rem;
    padding-bottom: 5rem;
    background-color: black;
    color: white;
}

.banner {
    height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner .cover {
    background-image: url(/img/about-us-1.jpg);
    height: 100%;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}
.banner .cover::before {
    background-color: rgba(33,33,33,1);
    content: '';
    display: block;
    opacity: 0.5;
    position: absolute;
    height: 100%;
    width: 100%;
}

.banner .title {
    position: absolute;
    z-index: 999;
    width: 100%;
    color: white;
    padding: 20rem;
}

.banner .title h1 {
    font-weight: 700;
    font-size: 48pt;
}

.banner .title hr {
    border-bottom-width: 12px;
    border-bottom-style: solid;
    border-bottom-color: rgb(0, 0, 0);
    opacity: 1 !important;
}

@media screen and (max-width: 1278px) {
    .banner .title h1 {
        font-size: 40pt !important;
    }
    .banner .title {
        padding: 15rem;
    }
}

@media screen and (max-width: 991px) {
    .content {
        padding-right: 4rem !important;
    }
    .banner .title h1 {
        font-size: 36pt !important;
    }
    .banner .title {
        padding: 10rem !important;
    }
}

@media screen and (max-width: 768px) {
    .banner .title h1 {
        font-size: 30pt !important;
    }
    .banner .title {
        padding: 5rem !important;
    }
}

@media screen and (max-width: 650px) {
    nav.navbar .navbar-brand span {
        display: none !important;
    }
    .banner .title h1 {
        font-size: 24pt !important;
    }
    .banner .title {
        padding: 2rem !important;
    }
    .home {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }
    .content {
        width: 100% !important;
        padding-inline: 2rem !important;
    }
    .content p {
        font-size: 16pt !important;
    }
    .overview {
        width: 100% !important;
        padding-inline: 2rem !important;
        justify-content: center !important;
    }
}

@media screen and (max-width: 450px) {
    .banner .title h1 {
        font-size: 18pt !important;
    }
    .content {
        width: 100% !important;
        padding-inline: 2rem !important;
    }
    .content p {
        font-size: 14pt !important;
    }
    .overview h2{
        font-size: 26pt !important;
    }
}

.content {
    text-align: center;
    padding-right: 10rem;
}

.content p {
    /* text-indent: 100px; */
    font-size: 14pt;
    font-family: Arial;
    font-weight: 400;
}