.inner-banner {
    margin-top: 80px;
    background-size: cover;
    height: auto;
    padding: 22px 15px;
    background-color: #000;
}
h2.heading-style {
    color: #ff6e00;
    font-weight: bold;
    display: block;
    margin: 0 0 10px 0;
    font-size: 40px;
    text-align: center;
}
p {
    font-size: 16px;
    line-height: 23px;
    color: #000;
    margin: 0 0 10px 0;
}
p:last-child {
    margin-bottom: 0;
}
.video-section {
    padding: 40px 0;
}
.video-section-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.video-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.video-section ul li {
    position: relative;
}
.video-section ul li::before {
    content: '';
    width: 100%;
    display: block;
    padding-top: 56%;
}
.video-section ul iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.video-section ul li a {
    display: block;
    border: 3px solid #ddd;
    position: relative;
}
.video-section ul li a:after {
    content: '';
    background-image: url(play-video-52.svg);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 46px;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    background-color: #ff6e00;
    border-radius: 50%;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
}
.video-section ul li a img {
    max-width: 100%;
}
.common-button {
    background-color: #FF6E00;
    border-radius: 5px;
    padding: 15px 30px 15px 30px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 700;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.common-button:hover {
    background-color: #ca5800;
    color: #ffffff;
}
.button-block {
    margin-top: 20px;
    text-align: center;
}
@media screen and (max-width:991px) {
    h1.page-heading {
        font-size: 38px;
    }
    h2.heading-style {
        font-size: 35px;
    }
}
@media screen and (max-width:767px) {
    h1.page-heading {
        font-size: 35px;
    }
    h2.heading-style {
        font-size: 30px;
    }
}
@media screen and (max-width:630px) {
    h1.page-heading {
        font-size: 32px;
    }
    .video-section ul {
        grid-template-columns: 1fr;
    }
}