@charset "UTF-8";
:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;
}

#message{
    background-color: #fff;
    padding: 4rem 0;
    border-radius: 20px;
}

.message-first{
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    align-items: center;
    gap: 50px;
    /* margin-bottom: 60px; */
    display: flex;
    flex-wrap: wrap;
    max-width: 880px;
    margin: 0 auto 60px;
}

.message-first .item:nth-of-type(1){
    order: 2;
}

.message-first .item:nth-of-type(2){
    order: 1;
}

.message-first .item:nth-of-type(2) p{
    font-size: 32px;
    font-weight: bold;
}

.message-first .item:nth-of-type(2) p.sign{
    text-align: right;
    font-size:18px;
    font-weight: normal;
}

.message-second{
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 50px; */
    max-width: 880px;
    margin: 0 auto;
}

.message-second .item p{
    font-size: 16px;
    line-height: 2em;
    font-weight: 500;
}


@media (max-width: 768px) {

.message-first{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.message-first .item:nth-of-type(1){
    order: 1;
}

.message-first .item:nth-of-type(2){
    order: 2;
}

.message-first .item:nth-of-type(2) p{
    font-size: 24px;
    font-weight: bold;
}

.message-first .item:nth-of-type(2) p.sign{
    font-size:14px;
}

.message-second{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

}
