.voice_of_the_customer{
    padding: 96px 0px 104px;
}


.voc-title{
    font-family: Karbon Slab Stencil;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 72px */
    letter-spacing: -0.6px;
    color: var(--plum-600, #7E4082);
    text-align: center 
}
.voc-subline{
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */ 
    text-align: center;
}

.featured-voice{
    border-radius: 16px;
    border: 1px solid var(--salt-500, #D5DBE0);
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    margin: 32px 0px;
    position: relative;
}

.featured-voice:before{
    content: "";
    display: block;
    background-image: url("https://www.frontlineeducation.com/uploads/2023/08/Lines-Side.svg");
    background-size: 100% 100%;
    position: absolute;
    top: 0px;
    left: -182px;
    height: 100%;
    width: 200px;
}
.featured-voice:after{
    content: "";
    display: block;
    background-image: url("https://www.frontlineeducation.com/uploads/2023/08/Lines-Side.svg");
    background-size: 100% 100%;
    position: absolute;
    top: 0px;
    right: -182px;
    height: 100%;
    width: 200px;
    transform: rotate(180deg);
}

.featured-case-content{
    padding: 48px 64px 48px 32px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.featured-case-content p{
    color: #FFF;
}
.featured-case-image {
    height: 345px;
    max-width: 455px;
    background-size: cover;
    background-position: center center;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    display: flex;
    width: 60%;
}

.featured-case-image.vid{
    align-items: center;
    justify-content: center;
}

.case-study-button{
    background-color: #FFF;
    border-radius: 18px;
    padding: 8px 16px 8px 4px;
    display: inline-block;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    margin-bottom: 32px;
}

.case-study-button span{
    color: #FFF;
    border-radius: 14px;
    border: 1px solid var(--plum-600, #7E4082);
    background: var(--plum-600, #7E4082);
    padding: 4px 10px;
    margin-right: 8px;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
}
.featured-case-link{
    display: flex;
    height: 345px;
    width: 60%;
}
.featured-text p,
.featured-text span{
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 36px */ 
}

.case-study-feed {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.case-study-feed a{
    display: flex;
    width: 50%;
    max-width: 552px;
}

.case-study-feed article{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--salt-500, #D5DBE0);
    background: var(--salt-100, #FFF); 
    transition: all 0.2s ease-in-out; 
}

.case-study-feed article:hover{
    box-shadow: 0px 4px 8px 0px rgba(64, 43, 86, 0.25);
    transition: all 0.2s ease-in-out;
}

.case-study-feed article .case-study-image{
    width: 240px;
    min-height: 141px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 8px 0px 0px 8px;
    border-right: 1px solid var(--salt-500, #D5DBE0);
    background-color: #7E4082;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;  
}

.case-study-feed article .case-study-title{
    display: flex;
    color: var(--plum-600, #7E4082);
    /* Paragraph/Large/Black */
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 27px */ 
    margin: 0px;
    padding-right: 5px;
}

.voice-of-the-customer-view-more{
    display: flex;
}

.case-studies-btn {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 30px;
    border: 2px solid var(--plum-600, #7E4082);
    color: var(--plum-600, #7E4082);
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.18px;
    margin: 56px auto 56px;
}
.case-studies-btn:hover,
.case-studies-btn:focus,
.case-studies-btn:active{
    background: var(--plum-600, #7E4082); 
    color: #fff;
}

.case-studies-btn i{
    font-size: 28px;
    margin-right: 8px;
}

#featured-case-video .modal-dialog{
    width: 75%;
}

#featured-case-video .modal-dialog button.close {
    padding: 0;
    cursor: pointer;
    background: #2f2f2f;
    border: 0;
    -webkit-appearance: none;
    z-index: 300;
    position: relative;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 25px;
    top: -15px;
    right: -15px;
    opacity: 1;
    line-height: .25;
}


@media(max-width: 992px){
    .featured-voice {
        flex-flow: column;
    }
    .featured-case-image {
        width: 100%;
        border-top-right-radius: 16px;
        border-top-left-radius: 16px;
        border-bottom-right-radius: 0px;
        max-width: none;
    }

    .featured-case-link {
        min-height: 345px;
        height: auto;
        width: 100%;
    }

    .case-study-feed {
        display: flex;
        gap: 30px;
        justify-content: space-between;
        flex-flow: column;
    }

    .case-study-feed a {
        display: flex;
        width: 100%;
        max-width: none;
    }

    .featured-voice:before,
    .featured-voice:after{
        display: none;
    }

    .featured-case-content {
        padding: 48px 32px 48px 32px;
      }
    

}

@media(max-width: 768px){
    .case-study-feed article .case-study-image {
        width: 126px;
      }
}