﻿/******************************/
/****Message Section Starts****/
/******************************/
.msg-container {
    margin-bottom: 80px;
}

.msg-head {
    /*margin-bottom: 25px;*/
}

.msg-body {
    margin-bottom: 40px;
}

.msg-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.msg-item .msg-item-left {
    /*width: 30%;*/
    width: 216px;
    text-align: center;
}

.msg-item-left-img {
    width: 100%;
    height: 216px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
}

.msg-item-left-img img {
    padding: 7px;
    border: 1px solid #0000001a;
    /*box-shadow: 0 0 6px 3px #d2d2d2;*/
    border-radius: 3px;
}

.msg-item-left-img img:hover {
    border: 1px solid #d1d1d1;
    transition: all 0.6s;
}

.msg-item .msg-item-right {
    /*width: 67%;*/
    width: calc(100% - 241px);
    /*height: 285px;
    overflow: hidden;*/
}

.msg-item .msg-item-right h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.msg-item-right p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
}

@media(max-width: 768px) {
    .msg-container {
        margin-bottom: 60px;
    }

    .msg-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /*.msg-item .msg-item-left {
        width: 100%;
    }*/

    .msg-item .msg-item-right {
        width: 100%;
    }

    .msg-item .msg-item-left {
        margin-bottom: 20px;
    }

    .msg-item .msg-item-right h3 {
        text-align: left;
    }
}

@media(max-width: 500px) {
    .msg-container {
        margin-bottom: 40px;
    }

    .msg-item .msg-item-right h3 {
        font-size: 20px;
    }
}
/****************************/
/****Message Section Ends****/
/****************************/
