.hero-section-container {
    width: 100%;
    height: 500px;
    position: relative;
    text-shadow: 0 0 5px #000
}

/* .hero-section-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
} */

.img-hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px;
    position: relative;
    filter: brightness(60%);
    object-fit: cover;
    z-index: 1;
}

.hero-section-sub-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-container{
    width: 700px;
}

.btn-hero-section {
    background-color: #0798ff;
    border-radius: 50px;
    /* font-size: 16px; */
    font-weight: 500;
    color: #fff;
    border: none;
    margin-top: 20px;
    padding: 10px 20px;
}

.btn-hero-section:hover {
    background-color: #0677C7;
    z-index: 3;
}

.about-us-hero-head {
    color: #fff;
    margin-bottom: 20px;
    font-size: 45px !important;
    font-weight: 700;
}

.about-us-hero-text {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    opacity: 1;
    text-align: start;
}

.intro-container {
    padding: 70px 0;
    text-align: center;
    font-size: 18px;
    background: #222222;
    color: #fff;
}

.intro-head {
    font-size: 35px !important;
    color: #0798ff;
    margin-bottom: 35px;
    font-weight: 700;
}

.intro-text {
    font-size: 18px !important;
    font-weight: 400;
    opacity: 0;
}

.forte-container {
    padding: 70px 0;
    background-color: #282f31;
    overflow: hidden;
}

.forte-head {
    text-align: center;
    color: #0798ff;
    /* margin-top: 30px; */
    font-size: 35px !important;
    font-weight: 700;
}

.forte-sub-container {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-gap: 40px;
}

.forte-img {
    grid-column: 1/2;
    width: 100%;
    height: 320px;
}

.forte-img-2 {
    width: 100%;
    grid-column: 2/3;
    height: 320px;
}

.forte-contents-2,
.forte-contents {
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    grid-gap: 10px;
    max-width: 500px;
}

.forte-contents-2 {
    grid-column: 1/2;
}

.forte-content-head {
    color: #0798ff;
}

.forte-content-text {
    color: #fff;
    text-align: justify;
}

.forte-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    background-color: #0798ff;
    color: #fff;
    font-weight: 500;
}

.tagline-container {
    padding: 70px 0;
    text-align: center;
    color: #fff;
    background: #0798ff;
    font-size: 20px;
}

.tagline-head {
    font-size: 35px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-team-container {
    padding: 70px 0;
    color: #fff;
    background-color: #282f31;
    overflow: hidden;
}

.about-team-head {
    font-size: 35px;
    margin-bottom: 35px;
    color: #0798ff;
    margin-bottom: 45px;
    font-weight: 700;
    text-align: center;
}

.about-team-content-container {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 50px;
}

.team-container {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    width: 100%;
    text-align: justify;
    font-size: 17px;
}

.team-head {
    text-align: center;
    font-size: 28px;
    margin-top: 25px;
}

.team-img {
    text-align: center;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin:auto;
}





/* @media (width <=1024px) {
    
} */

@media (max-device-width: 992px) {
    .hero-content-container {
        width: 100%;
    }

    .about-team-content-container {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 2rem;
    }

    .team-container {
        width: 100%;
        text-align: justify;
    }
    .forte-img {
        height: 280px;
    }
    
    .forte-img-2 {
        height: 280px;
    }
}

@media (max-device-width: 768px) {
    /* .hero-section-sub-container {
    } */

    .forte-sub-container {
        grid-template-columns: auto;
    }

    .forte-contents,
    .forte-contents-2 {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .forte-img,
    .forte-img-2 {
        grid-row: 1/2;
        grid-column: 1/2;
    }
}

/* @media (max-device-width: 576px) {
    .hero-section-sub-container {
        left: 10%;
        width: 80%;
    }
} */