#parents-voice {
    padding: 20px;
}

.parent-voice-subsection-title {
    text-align: center;
    font-size: 23px;
}

.parents-voice-content {
    display: flex;
    margin: 80px 0 0;
}

.parents-voice-text {
    border-radius: 15px;
    padding: 10px;
    position: relative;
}

.orange-back {
    background-color: #ffddbb;
}

.blue-back {
    background-color: #ace3e3;
}

.parents-voice-img {
    width: 150px;
    height: 150px;
}

.voice-left .parents-voice-text {
    margin-right: 70px;
}

.voice-right .parents-voice-text {
    margin-left: 70px;
}

.voice-left .orange-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, 50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 30px solid #ffddbb;
}

.voice-right .orange-back::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 50%) rotate(90deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 30px solid #ffddbb;
}

.voice-left .blue-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, 50%) rotate(-90deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 30px solid #ace3e3;
}

.voice-right .blue-back::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 50%) rotate(90deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 30px solid #ace3e3;
}

.parent-voice-title-img {
    margin: 20px auto 0;
    display: block;
    width: 900px;
}

.yellow-undeline{
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fae800 60%);
}