h1 {
    width: 100%;
    font-family: "MinionPro", serif;
    text-transform: capitalize;
    text-align: center;
    color: #004599;
}

.hm-message img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #004599;
}

.flow-cha {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.096);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.flow-cha .chart {
    width: 100%;
    margin: 10px auto;
}

div.orgChart div.node.level0,
div.orgChart div.node.level1,
div.orgChart div.node.level2,
div.orgChart div.node.level3,
div.orgChart div.node.level4,
div.orgChart div.node.level5,
div.orgChart div.node.level6,
div.orgChart div.node.level7 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    font-family: "MinionPro", serif;
    font-style: italic;
    min-height: 60px;
    height: auto;
    margin: auto;
    color: white;
    font-size: 15px;
}

div.orgChart div.node.level1 {
    background-color: #ffb236;
}

div.orgChart div.node.level2 {
    background-color: grey;
}

div.orgChart div.node.level3 {
    background: black;
}

div.orgChart div.node.level4 {
    background: #ffb236;
}

div.orgChart div.node.level5 {
    background: linear-gradient(335deg, #ffb236 0%, #004599 60%);
}

div.orgChart div.node.level6 {
    background: linear-gradient(335deg, green 0%, #004599 60%);
}

div.orgChart div.node.level7 {
    background: linear-gradient(335deg, #004599 0%, green 60%);
}

.meeting {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px auto;
    text-align: center;
}

.links-to-msges {
    width: 80%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links-to-msges a {
    text-decoration: none;
    padding: 10px 5px;
    text-transform: capitalize;
    color: #004599;
    font-family: "MinionPro", serif;
    font-size: 19px;
    border: #004599 1px solid;
    background: white;
}

.links-to-msges a:hover {
    background: #004599;
    color: white;
    transition: all 0.4s ease-in-out;
}

.meeting h1 {
    padding: 10px 0px;
    font-family: "MinionPro", serif;
}

.meeting .message-container {
    width: 100%;
}

.meeting .message-container img {
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 5px black;
    border: 2px solid rgb(255, 165, 0);
    object-fit: cover;
    border-radius: 10px;
}

.meeting .message-container .the-msg {
    width: 70%;
    right: 0;
    padding: 10px;
    background: rgb(255, 165, 0);
    float: right;
    border-radius: 10px;
    position: relative;
}

.meeting .message-container .the-msg p {
    width: 98%;
    margin: auto;
    padding: 0px;
    font-size: 19px;
    font-family: "MinionPro", serif;
    font-weight: 400;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
}

.meeting .message-container .the-msg:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgb(255, 165, 0);
    left: -15px;
    transform: rotate(45deg);
    top: 25%;
}


/* for tablet devices*/

@media (min-width: 768px) and (max-width: 1023px) {
    * {
        margin: 0;
        padding: 0;
    }
    .custom-shape-divider-bottom-1641367561 svg {
        width: calc(202% + 1.3px);
        height: 180px;
    }
    h1,
    .the-heder h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 23px;
        text-align: left;
    }
    h3 {
        width: 100%;
        font-size: 20px;
    }
    .the-heder {
        min-height: 170px;
    }
    .meeting {
        width: 100%;
        margin: 20px auto;
    }
    .meeting .message-container img {
        width: 180px;
        height: 180px;
    }
    .meeting .message-container .the-msg {
        width: 95%;
        margin: 25px auto;
        padding: 7px;
    }
    .meeting .message-container {
        width: 95%;
    }
    .meeting .message-container .the-msg p {
        width: 90%;
        padding: 10px;
        font-size: 17px;
    }
    .meeting .message-container .the-msg:before {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        background: rgb(255, 165, 0);
        left: 43%;
        transform: rotate(45deg);
        top: -13px;
    }
}

@media only screen and (max-width: 760px) {
    * {
        margin: 0;
        padding: 0;
    }
    h1,
    .the-heder h1 {
        font-size: 30px;
        margin: 5px auto;
    }
    h2 {
        font-size: 23px;
        text-align: left;
    }
    h3 {
        width: 100%;
        font-size: 20px;
    }
    .custom-shape-divider-bottom-1641367561 svg {
        width: calc(183% + 1.3px);
        height: 160px;
    }
    .the-heder {
        min-height: 170px;
    }
    .board-wrapper .wrap-container {
        margin: 5px auto;
        width: 98%;
    }
    .some-txt {
        width: 98%;
    }
    .some-txt p {
        font-size: 16px;
    }
    .meeting {
        width: 100%;
        margin: 20px auto;
    }
    .meeting .message-container img {
        width: 150px;
        height: 150px;
    }
    .meeting .message-container .the-msg {
        width: 95%;
        margin: 25px auto;
        padding: 7px;
    }
    .meeting .message-container {
        width: 95%;
    }
    .meeting .message-container .the-msg p {
        width: 90%;
        padding: 10px;
        font-size: 16px;
    }
    .meeting .message-container .the-msg:before {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        background: rgb(255, 165, 0);
        left: 43%;
        transform: rotate(45deg);
        top: -13px;
    }
}