ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
img {
    max-width: 100%;
}
@keyframes pulse-me {
    0% {
        transform: scale(.9);
        opacity: .2;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9)
    }
    50% {
        opacity: .5
    }

    70% {
        opacity: .09
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -ms-transform: scale(2.1);
        -o-transform: scale(2.1)
    }
}
.play-anim-ico {
    background-image: url(../images/client-visit-and-review/play-video.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 50px;
    position: absolute;
    height: 50px;
    right: 30px;
    z-index: 0;
    top: 20px;
}
.play-anim-ico:after {
    position: absolute;
    width: 34px;
    height: 34px;
    content: '';
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 0 13px #ff6e00;
    transform: scale(0.9);
    transform-origin: center center;
    animation: pulse-me 1s linear infinite;
    -webkit-animation: pulse-me 1s linear infinite;
}
p {
    line-height: 23px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo 2';
    margin-bottom: 10px;
}
.heading-area h2,
.heading-area h3,
.heading-area h4,
.heading-area h5 {
    font-size: 35px;
    font-weight: bold;
    margin: -8px 0 6px 0;
    color: #ff6e00;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}
.heading-area h3:after,
.heading-area h2:after,
.heading-area h1:after,
.heading-area h4:after,
.heading-area h5:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #ff6e00;
    bottom: 10px;
    left: 50%;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.heading-area {
    text-align: center;
    margin-bottom: 10px;
}
.section-common-content {
    padding: 40px 0;
}
.video-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.video-div {
    position: relative;
    cursor: pointer;
}
.video-div img {
    border: 1px solid #ddd;
}
.video-div.full-width {
    grid-column: span 2;
}
.yutube-btn {
    font-size: 18px;
    font-family: 'exo 2';
    color: #fff;
    text-decoration: none;
    background-color: #ff6e00;
    padding: 12px 13px;
    border-radius: 3px;
    font-weight: 500;
    display: inline-block;
    margin: 0;
}
.yutube-btn:hover,
.yutube-btn:focus{
    background: #a84901;
    color: #fff;
    text-decoration: none;
}
.center {
    text-align: center;
}
.general-banner {
    padding: 20px;
    background-color: #ffefe3;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    align-items: center;
}
.general-banner .heading-area {
    text-align: left;
}
.general-banner .heading-area h3:after {
    left: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    bottom: 0;
}
.general-banner .heading-area h3 {
    padding-bottom: 15px;
}
.general-banner img {
    border: none;
}
.iframe_holder {
    position: relative;
}
.iframe_holder:before {
    content:'';
    width:100%;
    display:block;
    padding-top:56%;
}
.iframe_holder iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:991px) {
    .play-anim-ico {
        margin: 0;
        top: 0px;
        right: 10px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
}
@media screen and (max-width:767px) {
    .video {
        display: flex;
        flex-wrap: wrap;
    }
    .play-anim-ico {
        margin: 0;
        top: 10px;
        right: 10px;
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
    }
    .heading-area h2, .heading-area h3, .heading-area h4, .heading-area h5 {
        font-size: 28px;
    }
    h1.page-heading {
        font-size: 35px;
    }
}
@media screen and (max-width:630px) {
    .general-banner {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: column-reverse;
    }
    .general-banner img {
        width: 100%;
    }
    .general-banner-left {
        text-align: center;
    }
    .general-banner .heading-area h3:after {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
}
}