@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);

/* <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> */

body {

    background-color: #fff;
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    color: #454242;

}

* {
    padding: 0px;
    margin: 0px;
}

h1 {
    font-family: "Poppins", sans-serif;
    margin: 0;
    font-size: 4em;
    -webkit-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
    -moz-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
}

h2 {
    font-family: "Poppins", sans-serif;
    color: #454242;
    font-size: 2em;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5em;
}

h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.4em;
}

p {
    font-family: "Poppins", sans-serif;
    padding: 0px;
    margin: 0px;
    line-height: 1.6;
}

li {
    font-family: "Poppins", sans-serif;
}

header {
    background-color: #ededed;
    height: auto;
}

/* ---Nav-bar---  */

.navbar {
    padding: 0px !important;
}


.navbar-brand img {
    width: 215px;
    height: auto;
}

header .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 2rem;
}

header .navbar-light .navbar-nav .nav-link.active {
    color: #e91f1f;
}


/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main-header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    background-color: #ededed;
}

.main-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main-header.is-sticky {
    position: fixed;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}

.main-header.is-sticky img {
    height: auto;
}

.main-header.is-sticky button {
    font-size: 14px;
    padding: 7px 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ---Top-bar---  */
.top-bar {
    background-color: black;
    position: relative;
    padding: 10px 0;
}

.top-nav {
    margin-left: 5px;
}

ul.top-socialicon {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0px;
    gap: 8px;
}

.top-socialicon li a {
    cursor: pointer;
    transition: all 0.5s ease;
}

.top-socialicon li a img {
    transform: scale(1);
    transition: all 0.5s ease;
}

.top-socialicon li a:hover img {
    transform: scale(1.3);
}

.top-nav img {
    width: auto;
    height: 24px;
}

.top-right {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 10px;
    font-size: .90rem;
}

.top-right img {
    margin-top: 2px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
}

.top-right a:hover {
    color: #e91f1f;
    text-decoration: none;
}

/* ---Hero banner----  */

.hero-banner-bg {
    /* background: url("/assets/images/herobanner3.jpg") no-repeat center center; */
    position: relative;
}

.video-sec {
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow: hidden;
}

.video-sec video {
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-banner-bg::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* .herobanner-content {
    margin: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
} */


.herobanner-content {
    position: absolute;
    left: 0;
    width: 52%;
    right: 0;
    text-align: center;
    margin: 0 auto;
    bottom: 0;
    top: calc(50% - 140px);

}

.herobanner-content h1 {
    text-align: center;
    font-size: 4em;
    font-weight: bold;
}

.herobanner-content p {
    text-align: center;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 500;
}

.btn.btn-primary {
    color: #fff;
    background-color: #f72f19;
    border-color: #f72f19;
    margin-top: 30px;
    font-family: "Poppins", sans-serif !important;
}

.btn.btn-primary a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.btn.btn-primary:hover {
    background-color: #c21300;
    border-color: #c21300;
    color: #ffffff;
}

/* ---About Section--- */
.aboutsec {
    padding: 70px 0;
}

.aboutsec p {
    margin: 0px;
}

.about-left {
    text-align: left;
}

.about-right {
    text-align: left;
}

.about-right img {
    width: 100%;
    border-radius: 10px;
}

.about-heading {
    text-align: left;
    padding-bottom: 10px;
}

.about-heading img {
    width: auto;
    position: relative;
    left: -10px;
    top: -10px;
}

/* ---Services Section--- */
.service-section {
    background-color: #faf7f0;
    padding: 70px 0;
    position: relative;
}

.service-section a {
    text-decoration: none;
    color: #454242;
}

.service-section a:hover {
    text-decoration: none;
    color: #fff;
}

.text-col {
    color: #c21300;
}

.service-section p {
    margin-bottom: 0px;
    padding: 10px 0px;
}

.service-heading {
    text-align: center;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service1 {
    position: relative;
    background-color: #fff;
    padding: 50px 0px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    height: 331px;
}

.service1:before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    bottom: 0;
    width: 100%;
    height: auto;
    background: url("/assets/images/zodiac-sign.png");
    z-index: -1;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    background-size: 100%;
    background-repeat: no-repeat;
    left: auto;
    background-position: right;
}


.service1:hover {
    background: rgb(233, 35, 14);
    background: linear-gradient(90deg, rgba(233, 35, 14, 1) 35%, rgba(227, 61, 43, 1) 100%);
}

.service1:hover::before {
    z-index: 1;
    opacity: 0.25;
}

.service1:hover a {
    color: #fff;
}

.service1:hover h3,
.service1:hover p {
    color: #fff;
}

.service-icon {
    text-align: center;
    padding-bottom: 35px;
    color: #fff;
}

.service-icon img {
    color: #fff;
}

.service1:hover .service-icon img {
    filter: brightness(0) invert(1);
    color: #fff;
}

.service-text {
    text-align: center;
}

.service1 a {
    font-weight: 500;
    color: #c21300;
    z-index: 9;
    position: relative;
}

.service1 a:hover {
    color: #fff;
}

.service1 h3 {
    font-size: 1.3em;
    margin-bottom: 0px;
}

/* ---Choose Section--- */

.choose-section {
    background: url("/assets/images/choose-banner2.jpg") no-repeat center center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    padding: 70px 0;
    text-align: center;
}

.choose-section::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.choose-content {
    position: relative;
    z-index: 1;
}

.choose-heading {
    text-align: center;
}

.choose-content h2 {
    color: #fff;
}

.count {
    position: relative;
    background-repeat: no-repeat;
    width: 128px;
    height: 128px;
    background-position: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.count h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.choose-content h3 {
    color: #fff;
    font-size: 1.2em;
}

.choose-content p {
    color: #fff;
    margin-bottom: 0px;
    padding: 10px 0px;
}

.choose-content a {
    font-weight: 500;
    color: #fff;
}

.choose-content a:hover {
    color: #f1f1f1;
}

/* ---Features Section--- */
.features-section {
    background-color: #faf7f0;
    padding: 70px 0;
    position: relative;
}

.features-section p {
    margin-bottom: 0px;
    padding: 10px 0px;
}

.features-heading {
    text-align: center;
}

.features1 {
    text-align: center;
    background-color: #fff;
    display: flex;
    padding: 20px 10px;
    box-shadow: 1px 1px 2px #e0e0e0;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 10px;
}

.features-icon {
    text-align: left;
    padding-left: 5px;
}

.features1-text {
    text-align: left;
    margin-left: 20px;
}

.features1 h3 {
    font-size: 1em;
    margin-bottom: 0px;
    color: #c21300;
}

.features1 p {
    font-size: 14px;
    padding-top: 5px;
}


.features1:hover {
    background: rgb(233, 35, 14);
    background: linear-gradient(90deg, rgba(233, 35, 14, 1) 35%, rgba(227, 61, 43, 1) 100%);
}

.features1:hover a {
    color: #fff;
}

.features1:hover h3,
.features1:hover p {
    color: #fff;
}

/* ---YouTube Section--- */

.youtube-section {
    padding: 70px 0;
}

.youtube-section p {
    color: #000;
    margin: 15px 0px 30px 0px;
}

.youtube-section .btn.btn-primary {
    color: #fff;
    background-color: #f72f19;
    border-color: #f72f19;
    font-size: 1.5rem;
    padding: .75rem 1.5rem;
}

.youtube-section .btn.btn-primary a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.youtube-section .btn.btn-primary:hover {
    background-color: #c21300;
    border-color: #c21300;
    color: #ffffff;
}

.youtube-img img {
    padding-left: 80px;
    width: 600px;
    height: auto;
}

.youtube-text {
    padding-top: 30px;
}



/* ---Testimonial Section--- */

.testimonial-section {
    background-color: #faf7f0;
    padding: 70px 0;
    margin-top: 30px;
}

.testimonial-item {
    background-color: #fff;
}

.testimonial-item p {
    color: #000;
    margin-bottom: 10px;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-heading h2 {
    text-align: center;
}

.testimonial-heading img {
    text-align: center;
}

.testimonial-section h2::before {
    text-align: center;
}

.testimonial-section .slick-slide img {
    display: inline-block;
}

.testimonial-section .slick-next {
    right: -40px;
}

.testimonial-section .slick-prev {
    left: -65px;
}


.testimonial-section .slick-prev:before,
.slick-next:before {
    color: #f52c16 !important;
    font-size: 35px !important;
}


/* ----App download---- */
.container {
    position: initial;
    width: 100%;
    margin: 0 auto;
    display: block;
    height: auto;
    transform: none;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    height: 100%;
    display: table;
}

.content {
    display: table-cell;
    vertical-align: middle;
}

.item {
    width: auto;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 8px;
}

.item1 {
    width: auto;
    height: auto;
    margin: 0 auto;
    text-align: left;
    padding: 8px;
}

.app_sec {
    padding: 60px 0px;
}

.mobile_app {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_app img {
    width: auto;
    height: 600px;
}

.play_btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.app-button {
    text-align: left;
    margin-top: 20px;
}

.play_btn1 {
    text-align: left;
    padding-right: 20px;
}

.play_btn2 {
    text-align: right;
}

.play_btn h2 {

    margin-bottom: 20px;
    font-size: 2.3rem;
    font-weight: 600;
}

.play_btn ul {
    list-style: none;
    display: inline;
    text-align: left;
    margin-left: 20px;
}

.play_btn li {
    text-align: left;
    margin-bottom: 10px;
    list-style: square;
}

.play_btn li::marker {
    color: #c21300;
}


.play_btn img {
    width: auto;
    height: 45px;
    margin: 10px 0;
}

/* ---Call-Section---  */
.call-sec {
    background: url("/assets/images/choose-banner2.jpg") no-repeat center center;
    padding: 70px 0px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.call-sec::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.call-sec h2 {
    color: #ffffff;
    font-size: 3em;
}

.call-sec h3 {
    color: #ffffff;
    font-size: 1.3em;
    padding-top: 5px;
}

.call-sec img {
    margin-left: 70px;
}

.call-sec .btn.btn-primary {
    color: #fff;
    background-color: #f72f19;
    border-color: #f72f19;
    margin-top: 30px;
}

.call-sec .btn.btn-primary a {
    color: #ffffff;
    text-decoration: none;
}

.call-sec .btn.btn-primary:hover {
    background-color: #c21300;
    border-color: #c21300;
    color: #ffffff;
}


/* ----Footer---  */

footer {

    background-color: #212121;
    color: #ededed;
    padding: 50px 0px 30px 0px;
    width: 100%;
    bottom: 0;
}

.footer-text {
    padding-top: 15px;
}

.footer-widget {
    width: 100%;
}

.foot {
    padding-left: 7rem !important;
}

.footer-widget-bottom {
    align-items: center;
    background-color: #000;
    width: 100%;
    padding: 10px 0;
    color: #ededed;
}

.footer-widget-bottom a {
    text-decoration: none;
    color: #ededed;
}

.footer-widget-bottom a:hover {
    cursor: pointer;
    color: #e91f1f;
    text-decoration: none;
}

.footer-widget-bottom p {
    margin: 0px;
    font-size: 14px;
}

.copyright {
    text-align: left;
}

.design {
    text-align: right;
}


.footer-widget p {
    font-weight: normal;
    line-height: 1.8em;
    font-size: 15px;
}

.footer-widget img {
    padding-right: 10px;
}

.footer-title {
    font-size: 1.3em;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

h3.footer-title {
    border-bottom: 2px solid #e91f1f;
    display: inline-block;
}

.footer-widget ul {
    list-style: none;
    margin: 0px;
    gap: 8px;
    font-size: 1 em;
    text-decoration: none;
}

.footer-widget li {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-widget li a {
    cursor: pointer;
    text-decoration: none;
    color: #ededed;
    font-size: 1em;
    font-weight: normal;
    display: flex;
}

.footer-widget li a:hover {
    color: #e91f1f;
}

@media only screen and (min-width: 800px) {
    h1 {
        font-size: 6em;
    }
}

@media only screen and (max-width: 320px) {
    h1 {
        font-size: 2em;
    }
}


@media(min-width:992px) {
    .mobile_app {
        align-items: flex-end;
        justify-content: flex-end;
    }

}

@media(max-width:991.55px) {
    .navbar-collapse {
        background-color: #ededed;
        padding: 2rem;
        z-index: 9;
    }
}


@media(max-width:990.58px) {

    .about-right {
        text-align: center;
        padding-top: 30px;
    }

}


@media(max-width:768px) {


    .herobanner-content h1 {
        font-size: 3em;
    }

    .herobanner-content h3 {
        font-size: 1.5rem;
    }

    .mobile_app {
        margin-top: 50px;
    }


    .features1 {
        padding: 20px 8px;
    }

    .features1 p {
        font-size: 13px;
    }

    .features1 h3 {
        font-size: .85em;
        margin-bottom: 0px;
        color: #c21300;
    }

    .foot {
        padding-left: 15px !important;
        padding-top: 20px;
    }

    .copyright {
        text-align: center;
    }

    .design {
        text-align: center;
    }

    .testimonial-section .slick-next {
        right: -35px;
    }

}


@media(max-width:575.55px) {

    ul.top-socialicon {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px;
        gap: 8px;
        padding-bottom: 15px;
    }

    .testimonial-section .slick-next {
        right: -35px;
    }
}

@media(max-width:475.55px) {
    .navbar-brand img {
        height: 60px;
    }

    header {
        height: 80px;
    }

    ul.top-socialicon {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px;
        gap: 8px;
        padding-bottom: 5px;
    }

    .hero-banner-bg {
        min-height: 350px;
    }

    .herobanner-content {
        position: absolute;
        left: 0;
        width: 80%;
        min-height: 400px;
        right: 0;
        text-align: center;
        margin: 0 auto;
        bottom: 0;
        top: calc(50% - 100px);
    }

    .herobanner-content h1 {
        font-size: 2em;
    }

    .herobanner-content p {
        font-size: 1rem;
    }

    .app_sec {
        padding: 50px 0px;
    }

    .play_btn {
        align-items: center !important;

    }

    .play_btn h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .play_btn p {
        text-align: center;
    }

    .mobile_app img {
        width: 100%;
        height: auto;
    }

    .call-sec {
        padding: 50px 0px;
    }

    .call-sec h2 {
        font-size: 2em;
    }

    .service-section {
        padding: 50px 0 100px 0px;
    }

    .service1 h3 {
        font-size: 1em;
    }

    .service-section p {
        font-size: .85rem;
    }

    .service-icon {
        padding-bottom: 20px;
    }

    .features-section {
        padding: 50px 0 100px 0px;
    }

    .features1 {
        flex-wrap: wrap;
        text-align: center;
        ALIGN-ITEMS: center;
        justify-content: center;
    }

    .features1 h3 {
        text-align: center;
        padding-top: 15px;
        font-size: .80rem;
    }

    .features1 p {
        text-align: center;
    }

    .testimonial-section {
        padding: 50px 0px 80px 0px;
        margin-top: 15px !important;
    }

    .testimonial-section .slick-prev {
        left: 150px;
        right: auto;
        top: auto;
        bottom: -46px;
    }

    .testimonial-section .slick-next {
        right: 180px;
        top: auto;
        bottom: -36px;
    }


    .top-right {
        justify-content: center;
        margin-right: 0px;
    }

    .youtube-section {
        padding: 40px 0;
        margin-top: 0px;
        text-align: center;
    }

    .youtube-text {
        text-align: center;
        padding-top: 0px
    }

    .youtube-img img {
        padding-left: 0;
        width: 100%;
        height: auto;
        max-width: 400px;
        margin-top: 63px;
    }

    .aboutsec {
        padding: 50px 0;
    }

    .about-heading {
        text-align: center;
    }

    .about-left {
        text-align: center;
    }

    .choose-section {
        padding: 50px 0;
    }

}

@media(max-width: 380px) {

    .app-button {
        text-align: center;
    }

    .play_btn1 {
        padding-right: 0px;
    }

    .service1 h3 {
        font-size: .95em;
    }

    .features-section .slick-prev {
        left: 140px;
        right: auto;
        top: auto;
        bottom: 30px;
        position: absolute;
    }

    .features-section .slick-next {
        left: auto;
        right: 160px;
        top: auto;
        bottom: 30px;
        position: absolute;
    }
}


.features-section .slider {
    width: 80%;
    max-width: 650px;
    position: relative;
    /* margin: 20px auto; */
    display: flex;
    justify-content: center;
    /* gap: 10px; */
    display: contents;
    align-items: center;
}

.features-section .slider img {
    width: 60px;
    height: auto;
    display: block;
    margin: auto;
}

.features-section .slick-prev {
    left: 160px;
    right: auto;
    top: auto;
    bottom: 55px;
    position: absolute;
}

.features-section .slick-next {
    left: auto;
    right: 190px;
    top: auto;
    bottom: 55px;
    position: absolute;
}


.features-section .slick-prev:before,
.slick-next:before {
    color: #f52c16 !important;
    font-size: 35px !important;
    position: inherit !important;
}

.service-section .slider {
    position: relative;
    width: 80%;
    max-width: 650px;
    /* margin: 20px auto; */
    display: flex;
    justify-content: center;
    /* gap: 10px; */
    display: contents;
    align-items: center;
}

.service-section .slider img {
    width: 78px;
    height: auto;
    display: block;
    margin: auto;
}

.service-section .slick-prev {
    left: 160px;
    right: auto;
    top: auto;
    bottom: 46px;
    position: absolute;
}

.service-section .slick-next {
    left: auto;
    right: 190px;
    top: auto;
    bottom: 56px;
    position: absolute;
}

.service-section .slick-prev:before,
.slick-next:before {
    color: #f52c16 !important;
    font-size: 35px !important;
}

.footer-widget {
    padding: 15px 0;
}

.footer-widget p {
    margin-bottom: 0px;
}


/*******************************************************************************
                              Services Page CSS Start
********************************************************************************/
.inner-banner {
    background: url("/assets/images/choose-banner2.jpg") no-repeat center center;
    position: relative;
    min-height: 220px;
    width: 100%;
}


.inner-banner::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.inner-banner-content {
    margin: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
}

.inner-banner-content h1 {
    color: #fff;
    align-items: center;
    text-align: center;
    font-size: 4em;
    font-weight: bold;
}

.spiritual-service {
    padding: 70px 0px;
}

.spiritual-left {
    text-align: left;
}

.spiritual-heading {
    text-align: left;
    padding-bottom: 10px;
}

.spiritual-heading h2 {
    text-align: left;
}

.spiritual-heading img {
    width: auto;
    position: relative;
    left: -10px;
    top: -10px;
}


.spiritual-right {
    text-align: right;
}

.spiritual-right img {
    width: 100%;
    border-radius: 10px;
}

.spiritual-service .btn.btn-primary {
    color: #fff;
    background-color: #f72f19;
    border-color: #f72f19;
    margin-top: 10px;
}

.spiritual-service .btn.btn-primary a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.spiritual-service .btn.btn-primary:hover {
    background-color: #c21300;
    border-color: #c21300;
    color: #ffffff;
}

.service-video-section {
    background-color: #faf7f0;
    padding: 70px 0px 70px 0px;
}

.service-video-heading {
    text-align: center;
    margin-bottom: 30px;
}

.service-video-heading h3 {
    text-align: center;
    font-size: 1rem;
    line-height: 30px;
    padding-top: 17px;
}

.hed-desc {
    text-align: center !important;
}

.service-video-section p {
    text-align: left;
}

.service-video {
    position: relative;
    margin: 15px 0px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.service-video::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.service-video img {
    width: 100%;
    height: auto;
}

.service-play-btn {
    position: absolute;
    background-color: #fff;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: flex;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 21px);
    align-items: center;
    justify-content: center;
}

.service-video .service-play-btn img {
    width: 1rem;
    height: auto;
    margin-left: 5px;
}


@media(max-width: 475.55px) {

    .inner-banner {
        min-height: 170px;
    }

    .inner-banner-content h1 {
        font-size: 2.2rem;
    }

    .spiritual-service {
        padding: 50px 0px;
    }

    .spiritual-heading {
        text-align: center;
    }

    .spiritual-heading h2 {
        text-align: center;
    }

    .spiritual-right img {
        margin-top: 30px;
    }

    .service-video-section {
        padding: 50px 0px 40px 0px;
    }

    .service-video-section p {
        text-align: center;
    }

}