@import url('https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css');
.aud-sec {
    padding: 50px 0 100px;
}

.rev {
    position: relative;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 650px;
    overflow: hidden;
    width: 100%;
}

.rev video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.reviews-h {
    text-align: center;
    margin-bottom: 20px;
}

.reviews-h h1 {
    color: #4b9726;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 50px;
}

.player {
    display: grid;
    grid-template-columns: 10rem 1fr;
    width: 50rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 1.5rem #10101024;
    overflow: hidden;
    margin: 20px auto;
    border: 3px solid transparent;
}

.player:hover {
    border: 3px solid #0a858a;
}

.plr1 {
    margin-right: 80px;
}

.plr2 {
    margin-left: 80px;
}

.player .thumb {
    width: 10rem;
    height: 10rem;
}

.player .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player .info {
    padding: 1rem;
}

.player .detail {
    display: grid;
    grid-template-columns: 1fr 4rem;
    margin-bottom: 1rem;
}

.player .title {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    font-family: "raleway";
    font-weight: 700;
}

.player .title .time {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.25rem;
}

.player .control i {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-content: center;
    font-size: 1.25rem;
    background-color: #0a858a;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0rem #0a858aAA;
}

.player .control i:hover {
    box-shadow: 0 0 1.5rem #0a858aAA;
    font-size: 1.5rem;
}

@media screen and (max-width:991px) {
    .player {
        width: 100%;
    }
    .plr1 {
        margin-right: unset;
    }
    .plr2 {
        margin-left: unset;
    }
    .aud-sec .container-fluid .row {
        margin: 0 60px;
    }
    .rev {
        height: 330px !important;
    }
}

@media screen and (max-width:768px) {
    .aud-sec .container-fluid .row {
        margin: 0 30px;
    }
    .player {
        grid-template-columns: 8rem 1fr;
    }
    .player .title {
        font-size: 18px;
    }
    .rev {
        height: 270px !important;
    }
    .reviews-h h1 {
        font-size: 35px;
    }
}

@media screen and (max-width:500px) {
    .aud-sec .container-fluid .row {
        margin: 0 15px;
    }
    .player {
        grid-template-columns: 6rem 1fr;
    }
    .player .title {
        font-size: 16px;
    }
}

@media screen and (max-width:400px) {
    .player {
        grid-template-columns: 5rem 1fr;
    }
    .player .title {
        font-size: 14px;
    }
    .rev {
        height: 160px !important;
    }
}