.message-container {
    background: white;
    
}

.message-container .container {
    margin: 60px auto;
}

.message-content {
    display: flex;

}

.message-content div:first-of-type {
    width: 35%;
}

.message-content div:last-of-type {
    width: 65%;
}

.message-content div:first-of-type img {
    width:100%;
    min-height: 85vh;
}

.page-content {
    padding-left: 20px;
}

.page-content p {
    color: #777;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 21px;
}

.message-title {
    display: inline-block;
    position: relative;
}

.message-title::before {
    width: 100%;
    content: "";
    position: absolute;
    height:1.5px;
    background:gray;
    bottom:-5px;
}

.message-title::after {
    width:50%;
    content:"";
    position: absolute;
    bottom:-6px;
    height:4px;
    background-color: var(--primary-blue-light-color);
    left:0;
}

.position {
    color: #111;
}

@media screen and (max-width:992px) {
    .message-content {
        flex-direction: column;
    }
    .message-content div:first-of-type {
        width: 100%;
    }
    
    .message-content div:last-of-type {
        width: 100%;
    }

    .page-content {
        padding-left: 0;
    }
    .message-content div:first-of-type {
        height: 100%;
        width: 100%;
    }

    .message-content div:first-of-type img {
        width:100%;
        height: 100%;
        min-height: 50vh;
        object-fit: cover;
        height: 80vh;
    }

    .page-content p {
        color: #777;
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 17px;
    
    }
    
    
}

@media screen and (max-width:768px) {
    
.message-container .container {
    margin: 20px auto;
}
    .message-content div:first-of-type img {
        width:100%;
        height: 55vh;
        min-height: 15vh;
    }
}