:root {
    /* --theme-color: #f9b707; */
    --theme-color: rgb(172, 2, 2);
    --second-theme-color: #272727;
    --text-main-color: #ffffff;
    --text-second-color: #616060;
}

#hero-section {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(8, 8, 8, 0.4)), url(../img/servicesImg/fender.jpg);
    background-position: center;
    background-size: cover;
    max-height: 50vh;
    height: 50vh;
}

#hero-section-main::before {
    height: 50vh;
}

.content-container {
    top: 40%;
    transform: translate(-50%, -40%);
}

.content-container::before {
    height: 3px;
    width: 40%;
}

.hero-service-header {
    position: relative;
    color: var(--text-main-color);
    font-size: 3.5rem;
    transform: translateY(0);
    opacity: 1;
    transition: all .5s ease;
    text-align: center;
}

.about-us-para {
    width: 80%;
    font-size: 1.2rem;
    text-align: justify;
    color: var(--text-second-color);
    line-height: 1.44em;
    margin-top: 2em;
}

.our-history-inner-container {
    flex-direction: column-reverse;
}

.left-our-history-dis {
    width: 90%;
}

.right-history-img-container {
    width: 70%;
    margin-left: 0;
}

.left-our-history-dis {
    margin-top: 4em;
}

.why-us-main-container {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    display: flex;
    justify-content: space-around;
}

.why-us-container li {
    list-style: none;
    font-size: 1.4rem;
    margin: 1em 0;
}

.why-us-container li i {
    margin-right: .5em;
    color: var(--theme-color);
}

@media screen and (max-width:1000px) {
    .right-history-img-container {
        width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width:730px) {
    .hero-service-header {
        font-size: 2.5rem;
    }
    .about-us-para {
        width: 95%;
    }
    .right-history-img-container {
        width: 90%;
    }
    .why-us-main-container {
        width: 100%;
        flex-direction: column;
    }
    .why-us-container:last-child {
        margin-top: -1em;
    }
    .why-us-container li {
        font-size: 1.2rem;
    }
}