.hero>img {
    width: 100%;
    max-width: 1000px;
    display: block;
    padding: 0 35px;
}

.hero>.mobImg {
    width: 100%;
    display: none;
    /* padding: 0 20px; */
    padding: 0;
}

@media screen and (max-width:768px) {
    .hero>img {
        display: none;
    }

    .hero>.mobImg {
        display: block;
    }
}

.messageIntroWrap {
    --mc: 40px;
    width: 100%;
    padding: var(--mc) 0;
    position: relative;
}


.messageIntroWrap::before {
    content: "";
    left: 0;
    top: 0;
    width: calc(2 * var(--mc));
    height: var(--mc);
    position: absolute;
    border-radius: calc(2 * var(--mc)) calc(2 * var(--mc)) 0 0;
    background-color: #e20013;
}

.messageIntroWrap::after {
    content: "";
    left: calc(100% - var(--mc) - var(--mc));
    top: calc(100% - var(--mc));
    width: calc(2 * var(--mc));
    height: var(--mc);
    position: absolute;
    border-radius: 0 0 calc(2 * var(--mc)) calc(2 * var(--mc));
    background-color: #e20013;
}

.messageIntroWrap>.messageIntro {
    padding: 20px 0;
}

.messageIntroWrap>.messageIntro>h3 {
    padding-bottom: 20px;
    font-weight: 700;
    color: #e20013;
    border-bottom: 2px solid #e20013;
}

.messageIntroWrap>.messageIntro>p {
    margin-top: 20px;
    padding: 15px 30px;
    color: #4e4e50;
    background-color: #e2001314;
}

@media screen and (max-width:768px) {
    .messageIntroWrap>.messageIntro>p {
        padding: 20px;
    }
}

.message {
    width: 100%;
}

.message>h1 {
    padding-bottom: 20px;
    font-weight: 300;
}