.beginner {
    max-width: 1198px;
    padding: 0 15px 100px;
}
.beginner .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 42px;
    margin: 40px 0 56px;
    text-align: center;
}
.beginner .list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
}
.beginner .item {
    border-radius: 10px;
    padding: 10px 9px 10px 10px;
    width: 80%;
}
.beginner .item-text {
    text-align: center;
    padding: 21px 0 45px;
}
.beginner .item-text-title {
    font-size: 24px;
    font-weight: bold;
    color: #ca689e;
    line-height: 42px;
}
.beginner .item-text-title span {
    font-size: 20px;
    line-height: 24px;
    display: block;
    margin-bottom: 5px;
}
.beginner .item-text-description {
    font-size: 15px;
}
.beginner .bg-white {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.beginner .item.arrow-down {
    text-align: center;
    padding: 20px 0;
}
.beginner .item img {
    width: 100%;
}
.beginner .item.arrow-down img {
    width: auto;
}
@media screen and (max-width: 767px) {
    .beginner .list {
        flex-wrap: wrap;
    }
    .beginner .item {
        flex-basis: 100%;
        max-width: 100%;
    }
    .beginner .arrow {
        width: 100%;
        text-align: center;
    }
    .beginner .list:first-child .arrow {
        transform: rotate(90deg);
        margin: 30px auto;
    }
    .beginner .list:last-child {
        flex-direction: column-reverse;
    }
    .beginner .list:last-child .arrow {
        transform: rotate(-90deg);
        margin: 30px auto;
    }
    .beginner .list:nth-child(2) .item {
        padding: 0;
    }
    .beginner .list:nth-child(2) .item.arrow-down {
        padding: 20px 0;
    }
}
