@import "common.css";
@import "header.css";

@import "footer.css";


/* banner section */
.president_message_section {
    background: var(--navy-blue);
    padding   : 13rem 0;
}

.message_image {
    margin-top: 7.2rem;
    max-width : 44.9rem;
}

.message_image h3 {
    font-size  : 1.9rem;
    line-height: 2.2rem;
    text-align : center;
    margin-top : 2.2rem;
    color      : var(--white);
}

.message_content h2 {
    text-align   : center;
    color        : var(--light-gold);
    font-size    : 3rem;
    font-weight  : 700;
    font-size    : 3.5rem;
    margin-bottom: 4rem;
    color        : var(--light-gold);
}

.message_content p {
    font-size  : 1.6rem;
    line-height: 2.9rem;
    font-weight: 400;
    color      : var(--white);
    position   : relative;
    display    : inline-block;
}

.message_content p .bottom_cote img {
    position: absolute;
    top     : 0;
    left    : 5px;
}

.message_content p::before {
    content          : '';
    position         : absolute;
    background-image : url(../images/icons/double-coute-top.svg);
    background-repeat: no-repeat;
    width            : 2.8rem;
    height           : 1.9rem;
    background-size  : 2.8rem 1.9rem;
    left             : -32px;
    top              : -12px;
}

.member_card_content .btn_box {
    margin-top: 2.3rem;
}
.message_image img {
    width: 100%;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .message_image {
        max-width: 100%;
        margin   : auto;
    }

    .message_image img {
        width: 100%;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .president_message_section {
        padding: 50px 0;
    }
    .message_content h2 {
        margin-bottom: 50px;
    }
    .message_content p::before {
        left: -15px;
        top : 4px;
    }
    .message_content p {
        padding-left: 23px;
    }
    .message_content p .bottom_cote img {
        left: 0;
    }
    .member_card_content .btn_box {
        margin-top: 1.6rem;
    }
}