/* --------------------
 Parents Testimonials
-------------------- */
.pt {
    border-top: 0.2666666667vw solid var(--color-sky);
}

@media (min-width: 768px) {
    .pt {
        border-top-width: 1px;
    }
}

.pt__item {
    border-bottom: 0.2666666667vw solid var(--color-sky);
    padding: 0;
    transition: background-color var(--duration) var(--cubic) 0s;
}

@media (min-width: 768px) {
    .pt__item {
        border-bottom-width: 1px;
        padding: 0 40px;
    }
}

.pt__item__head {
    cursor: pointer;
    padding: 6.4vw 21.3333333333vw 6.4vw 4.2666666667vw;
    position: relative;
}

@media (min-width: 768px) {
    .pt__item__head {
        padding: 48px 105px 48px 0;
    }
}

.pt__item__head:before, .pt__item__head:after {
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    bottom: 0;
    content: "";
    display: block;
    height: 12.8vw;
    margin: auto 0;
    position: absolute;
    right: 4.2666666667vw;
    top: 0;
    transition: opacity var(--duration) var(--cubic) 0s, transform var(--duration) var(--cubic) 0s;
    width: 12.8vw;
}

@media (min-width: 768px) {
    .pt__item__head:before, .pt__item__head:after {
        height: 60px;
        right: 0;
        width: 60px;
    }
}

.pt__item__head:before {
    background-color: var(--color-ice);
    background-image: url(../images/pages/parents-testimonials/parents-testimonials-icon-plus.svg);
    background-size: 4.2666666667vw 4.2666666667vw;
}

@media (min-width: 768px) {
    .pt__item__head:before {
        background-size: 20px 20px;
    }
}

.pt__item__head:after {
    background-color: var(--color-navy);
    background-image: url(../images/pages/parents-testimonials/parents-testimonials-icon-minus.svg);
    background-size: 4.2666666667vw 0.4266666667vw;
    opacity: 0;
}

@media (min-width: 768px) {
    .pt__item__head:after {
        background-size: 20px 2px;
    }
}

.pt__item__head__title {
    color: var(--color-navy);
    font-size: var(--fs24);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0 0 3.2vw;
}

@media (min-width: 768px) {
    .pt__item__head__title {
        font-size: var(--fs30);
        margin: 0 0 16px;
    }
}

.pt__item__head__content p {
    font-size: var(--fs14);
    font-weight: 400;
    line-height: 1.8;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .pt__item__head__content p {
        font-size: var(--fs15);
    }
}

.pt__item__head__content p:last-child {
    margin-bottom: 0;
}

.pt__item__contents {
    display: none;
    padding: 1.0666666667vw 4.2666666667vw 8vw;
}

@media (min-width: 768px) {
    .pt__item__contents {
        padding: 4px 0 54px;
    }
}

.pt__item__contents__item {
    background-color: var(--color-white);
    border-radius: 2.6666666667vw;
    margin: 0 0 4.2666666667vw;
    padding: 4.2666666667vw;
}

@media (min-width: 768px) {
    .pt__item__contents__item {
        border-radius: 10px;
        margin: 0 0 16px;
        padding: 20px;
    }
}

.pt__item__contents__item:last-child {
    margin-bottom: 0;
}

.pt__item__contents__item p {
    color: var(--color-navy);
    font-size: var(--fs14);
    font-weight: 400;
    line-height: 1.8;
    margin: 0 0 1.5em;
}

@media (min-width: 768px) {
    .pt__item__contents__item p {
        font-size: var(--fs15);
    }
}

.pt__item__contents__item p:last-child {
    margin-bottom: 0;
}

.pt__item:focus {
    background-color: rgba(var(--color-ice-rgb), 0.3);
}

@media (hover: hover) and (pointer: fine) {
    .pt__item:hover {
        background-color: rgba(var(--color-ice-rgb), 0.3);
    }
}

.pt__item.-active {
    background-color: rgba(var(--color-ice-rgb), 1);
}

.pt__item.-active .pt__item__head:before {
    opacity: 0;
    transform: rotate(180deg);
}

.pt__item.-active .pt__item__head:after {
    opacity: 1;
    transform: rotate(180deg);
}