#hero {
    width: 100%;
    height: 60vh;
    background-image: url("../Images/Develope/Hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

#hero::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.custom-list {
    list-style-type: none;
    padding-left: 0;
    counter-reset: custom-counter;
}

.custom-list li {
    position: relative;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: counter(custom-counter);
    counter-increment: custom-counter;
    color: #BE0301;
    font-weight: bold;
    margin-right: 5px;
}

#aboutus img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.parallax {
    background-image: url("../Images/Develope/Ourservice.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 480px;
    width: 100%;
}

.parallax::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 480px;
    background-color: rgba(0, 0, 0, 0.7);
}

#ourservice b {
    color: white;
    position: relative;
}

#ourservice b::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 80%;
    height: 5px;
    background-color: #BE0301;
    border-radius: 25px;
}

.ourservice-card{
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    min-height: 210px;
}

.ourservice-card i{
    color: var(--color-first);
    font-size: 56px;
}

@media screen and (max-width: 990px) and (min-width: 768px) {

    .parallax {
        height: 620px;
    }

    .parallax::before {
        height: 620px;
    }
}

@media screen and (max-width: 768px) and (min-width: 467px) {
    .parallax {
        height: 850px;
    }

    .parallax::before {
        height: 850px;
    }
}

@media screen and (max-width: 466px) and (min-width: 280px) {
    .parallax {
        height: 950px;
    }

    .parallax::before {
        height: 950px;
    }
}
