.main-container{
    width: 100%;
    padding: 40px 100px;
}
.content-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;  
    padding-top: 20px;
} 

.header-box{
    position: relative;
    font-size: 23px;
    color: #26936e;
    text-transform: capitalize;
    text-align: center;
}
.header-box::before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    height: 4px;
    width: 50%;
    background: #0f9468;
    border-radius: 5px;
}
.img-box{
    position: relative;
    width: 900px;
    height: 400px;
    overflow: hidden;
    background: red;   
}
.img-box img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-box span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 200%);
    font-size: 34px;
    background: rgba(0, 0, 0, 0.5);
    color: #f4d48b;
    height: 100px;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    transition: 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-box:hover span{
    transform: translate(-50%, 100%);
}
@media (max-width:900px) {
    .main-container{
        padding: 80px 10px;
    }
    .img-box{
        width: 100%;
    }
}
@media (max-width:720px) {
   
    .img-box{
        height: 300px;
    }
    .img-box span{
        font-size: 24px;
    }
    .img-box:hover span{
        transform: translate(-50%, 60%);
    }

}
.paragraph-box{
    width: 100%;
    max-width: 900px;
    font-size: 19px;
    word-spacing: 5px;
    font-weight: 400;
    
}
.onlyparagraph{
    margin-top: 20px;
}
.paragraph-box b{
    color: #26936e;
}