.survey {
    width: 100%;
}

.survey .container {
    background: #fff;
    padding: 24px;
}

.survey .container .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 38px;
}

.survey .container .grid li,
.survey .container .last {
    border-radius: 8px 8px 8px 8px;
    border: 1px solid rgba(194, 0, 0, 0.1);
    padding: 32px 40px;
}

.survey .container .grid li .title,
.survey .container .last .title {
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    padding-bottom: 14px;
    border-bottom: 1px solid #EFEFEF;
}

.survey .container .grid li .msg {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    padding-top: 24px;
    line-height: 2;
}

.survey .container .grid li .msg .red,
.survey .container .last .flex .item .msg .red {
    font-size: 32px;
    color: #C20000;
    font-weight: bold;
}

.survey .container .last {
    margin-top: 24px
}

.survey .container .last .flex {
    display: flex;
    padding-top: 30px;
}

.survey .container .last .flex .item {
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.survey .container .last .flex .item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #EFEFEF;
}

.survey .container .last .flex .item:first-child {
    padding-left: 0px;
}

.survey .container .last .flex .item:last-child {
    padding-right: 0px;
}

.survey .container .last .flex .item .msg {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 2;
}

@media(max-width:1440px) {
    .survey .container .grid {
        gap: 24px;
    }

    .survey .container .grid li,
    .survey .container .last {
        padding: 25px 25px;
    }


    .survey .container .grid li .title,
    .survey .container .last .title {
        font-size: 18px;
        padding-bottom: 10px;

    }

    .survey .container .grid li .msg .red,
    .survey .container .last .flex .item .msg .red {
        font-size: 28px;
    }

    .survey .container .last .flex {
        justify-content: space-between;
    }

    .survey .container .last .flex .item {
        padding-left: 40px;
        padding-right: 40px;
    }
}


@media(max-width:1280px) {
    .survey .container {
        padding: 20px;
    }

    .survey .container .grid li .msg,
    .survey .container .last .flex {
        padding-top: 15px;
        line-height: 1.8;
    }

    .survey .container .last .flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .survey .container .last .flex .item {
        padding-left: 0px;
        padding-right: 0px;
        padding: 20px 0;
        border-bottom: 1px solid #efefef
    }

    .survey .container .last .flex .item:nth-child(2n)::after {
        display: none;
    }

    .survey .container .last .flex .item:nth-child(2n+1) {
        padding-right: 40px;
    }

    .survey .container .last .flex .item:nth-child(2n) {
        padding-left: 40px;
    }

    .survey .container .last .flex .item:nth-child(3),
    .survey .container .last .flex .item:nth-child(4) {
        border: none
    }
}

@media(max-width:1024px) {
    .survey .container .grid {
        gap: 18px;
    }

    .survey .container .grid li,
    .survey .container .last {
        padding: 20px 20px;
    }

    .survey .container .grid li .msg,
    .survey .container .last .flex {
        padding-top: 10px;
        line-height: 1.5;
    }

    .survey .container .grid li .msg {
        font-size: 14px;
    }

    .survey .container .grid li .msg .red,
    .survey .container .last .flex .item .msg .red {
        font-size: 24px;
    }

    .survey .container .last {
        margin-top: 18px;
    }

    .survey .container .last .flex .item {
        padding: 15px 0;
    }

    .survey .container .last .flex .item:nth-child(2n+1) {
        padding-right: 20px;
    }

    .survey .container .last .flex .item:nth-child(2n) {
        padding-left: 20px;
    }
}

@media(max-width:768px) {

    .survey .container .grid li,
    .survey .container .last {
        padding: 15px 15px;
    }

    .survey .container .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .survey .container .grid li .title,
    .survey .container .last .title {
        font-size: 16px;
    }

    .survey .container .grid li .msg .red,
    .survey .container .last .flex .item .msg .red {
        font-size: 20px;
    }
}

@media(max-width:600px) {
    .survey .container .last .flex {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 0px;
    }

    .survey .container .last .flex .item {
        padding: 10px 0 !important;
    }

    .survey .container .last .flex .item:not(:last-child)::after {
        display: none;
    }

    .survey .container .last .flex .item:nth-child(3),
    .survey .container .last .flex .item:nth-child(4) {
        border-bottom: 1px solid #efefef
    }
}