#body-content {
    margin-top: 100px;
}

.title-name {
    position: relative;
    overflow: hidden;
    color: var(--headerclr);
}

.title-name::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 3px;
    background-color: #7e0204;
    /* background-color: #fff;  */
    border: 1px solid #7e0204;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 1s;
}

.title-name:hover:before {
    width: 20%;
}

.margin-container {
    margin-left: 50px;
}

.text-color {
    color: var(--greyclr);
}


ol {
    list-style: none;
  }
  
  ol li:before {
    content: '✓';
    color: var(--mainclr);
    font-weight: bolder;
    font-size: 30px;
  }

.front-images img {
    height: 200px;
}

.sub-head {
    position: relative;
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.btn-color {
    background-color: var(--mainclr);
    color: var(--whiteclr);
}

.btn-color:hover {
    background-color: var(--headerclr);
    color: var(--whiteclr);
    box-shadow: 5px 5px 5px lightblue;
    transition: 1s linear;
}
@media(max-width: 900px) {
    .margin-container {
        margin-left: 5px;
    }
}