.hero.blog{
    background-image: url(../img/fet2.jpg);
    background-size: cover;
    background-position: bottom;
}
.hero.blog h1{
    color: #FFF;
}

/* .more-information */

.more-information{

}
.more-information .box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.more-information .box .right{
    /* flex: 1; */
    width: 40%;
    position: relative;
}
.more-information .box .right::after{
    content: "13/14";
    position: absolute;
    top: 0;
    /* background-color: aqua; */
    width: 200px;
    /* height: 100px; */
    font-size: 50px;
    font-weight: bold;
    color: #7e7a7a9c;
    left: 10px;
    top: -40px;
    z-index: -1;
}

.more-information .box .right.two::after{
    content: "09/31";
}
.more-information .box .right.there::after{
    content: "19/41";
}
.more-information:not(:last-child){
    margin-bottom: 15px;
}

.more-information .box .right img{
    width: 100%;
}

.more-information .box .left{
    flex: 2;
    margin-left: 20px;
}
.more-information .box .left h3{
    margin-bottom: 15px;
    text-transform: uppercase;
}
.more-information .box .left p{
    line-height: 1.6;
}
.more-information .box .left h4{
    margin-top: 15px;
    position: relative;
}
.more-information .box .left h4 span{
    display: inline-block;
    width: 100px;
    height: 3px;
    background: rgb(62 53 53);
    margin-left: 10px;
    margin-bottom: 2px;
}

@media (max-width: 992px){}
@media (max-width: 767px){
    .more-information .box{
        flex-direction: column;
    }
    .more-information .box .left{
        width: 100%;
        margin: 20px auto;
        text-align: center;
    }
    .more-information .box .left p{
        line-height: 2;
    }
    .more-information .box .left h4{
        margin-top: 10px;
    }
    .more-information .box .left h3{
        margin-bottom: 10px;
    }
    .more-information .box .right{
        width: 90%;
    }
}