.testimonial {
    background: var(--secondary-color);
}

.container {
    width: 80%;
    max-width: 1200px;
    padding: 80px 0;
    margin: auto;
    font-family: "Poppins", "Roboto", sans-serif;
}

.head {
    text-align: center;
}

.head_secondary {
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-size: 12px;
}

.head_primary {
    /* position: relative; */
    font-size: 36px;
    margin: 10px 0;
    font-weight: 500;
    display: inline-block;
}

.head_primary::after {
    content: "";
    display: block;
    bottom: -15px;
    margin: auto;
    height: 5px;
    width: 120px;
    border-radius: 50px;
    background: var(--gradient);
}

.main {
    margin: 50px 0;
    display: flex;
}

.list {
    width: 40%;
    margin-right: 40px;
}

.list div {
    height: 75px;
    display: flex;
    align-items: center;
}

.list div img {
    height: 100%;
    margin-right: 30px;
}

.list_item {
    position: relative;
    z-index: 0;
    cursor: pointer;
}

.list_item:hover {
    background: var(--secondary-color-light);
}
.list_item.active {
    background: var(--secondary-color-light);
}

.main iframe {
    width: 60%;
    border: none;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

@media screen and (max-width: 950px) {
    .main {
        flex-direction: column-reverse;
        margin: 30px 0;
    }
    .head_primary {
        font-size: 24px;
        line-height: 2rem;
    }
    .main iframe {
        width: 100%;
        height: 350px;
        border: none;
    }
    .list {
        width: 100%;
        margin: 20px 0;
    }
}

@media screen and (max-width: 450px) {
    .main iframe {
        height: 150px;
        border-radius: 0px;
        -moz-border-radius: 0px;
    }

    .name {
        font-size: 12px;
    }
}
