/* Theme Name: buddhaplace - HTML Template */




/* 1. Theme default css */



@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Raleway:wght@100;400&display=swap');


body {
font-family: 'Jost', sans-serif;
font-family: 'Dancing Script', cursive;
font-family: 'Raleway', sans-serif;
}

/*--------------------------------------------------------------
 * Preloader CSS MS
 *--------------------------------------------------------------
 */

.wp-smart-loader {
    text-indent: -12345px;
}

/*--------------------------------------------------------------
 * Preloader One
 *--------------------------------------------------------------
 */

.smart-loader-one {
    width: 50px;
    height: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
 * Preloader Two
 *--------------------------------------------------------------
 */

.smart-loader-two {
    position: relative;
    width: 80px;
    height: 80px;
    -webkit-animation: spinner 5s infinite linear;
    animation: spinner 5s infinite linear;
}

    .smart-loader-two span {
        width: 40px;
        height: 40px;
        position: absolute;
        background: red;
        display: block;
        -webkit-animation: spinner-two 1s infinite linear;
        animation: spinner-two 1s infinite linear;
    }

        .smart-loader-two span:nth-child(1) {
            background: #2ecc71;
        }

        .smart-loader-two span:nth-child(2) {
            left: 44px;
            background: #9b59b6;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .smart-loader-two span:nth-child(3) {
            top: 44px;
            background: #3498db;
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
        }

        .smart-loader-two span:nth-child(4) {
            top: 44px;
            left: 44px;
            background: #f1c40f;
            -webkit-animation-delay: .6s;
            animation-delay: .6s;
        }

@-webkit-keyframes spinner-two {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinner-two {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
 * Preloader Three
 *--------------------------------------------------------------
 */

.smart-loader-three {
    position: relative;
}

    .smart-loader-three span {
        display: block;
        bottom: 0px;
        width: 9px;
        height: 5px;
        background: #9b59b6;
        position: absolute;
        -webkit-animation: spinner-three 1.5s infinite ease-in-out;
        animation: spinner-three 1.5s infinite ease-in-out;
    }

        .smart-loader-three span:nth-child(2) {
            left: 11px;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .smart-loader-three span:nth-child(3) {
            left: 22px;
            -webkit-animation-delay: .4s;
            animation-delay: .4s;
        }

        .smart-loader-three span:nth-child(4) {
            left: 33px;
            -webkit-animation-delay: .6s;
            animation-delay: .6s;
        }

        .smart-loader-three span:nth-child(5) {
            left: 44px;
            -webkit-animation-delay: .8s;
            animation-delay: .8s;
        }

@-webkit-keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

@keyframes spinner-three {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}

/*--------------------------------------------------------------
 * Preloader Four
 *--------------------------------------------------------------
 */

.smart-loader-four {
    width: 80px;
    height: 80px;
}

    .smart-loader-four .spinner-cube {
        width: 33%;
        height: 33%;
        background-color: #990000;
        float: left;
        -webkit-animation: spinner-four 1.3s infinite ease-in-out;
        animation: spinner-four 1.3s infinite ease-in-out;
    }

    .smart-loader-four .spinner-cube1 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .smart-loader-four .spinner-cube2 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-four .spinner-cube3 {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .smart-loader-four .spinner-cube4 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .smart-loader-four .spinner-cube5 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .smart-loader-four .spinner-cube6 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-four .spinner-cube7 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .smart-loader-four .spinner-cube8 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .smart-loader-four .spinner-cube9 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

@-webkit-keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes spinner-four {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

/*--------------------------------------------------------------
 * Preloader Five
 *--------------------------------------------------------------
 */

.smart-loader-five {
    width: 80px;
    height: 80px;
    position: relative;
}

    .smart-loader-five .spinner-cube {
        border: 2px solid transparent;
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

        .smart-loader-five .spinner-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #9b59b6;
            -webkit-animation: spinner-five 2.4s infinite linear both;
            animation: spinner-five 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .smart-loader-five .spinner-cube-2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .smart-loader-five .spinner-cube-3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .smart-loader-five .spinner-cube-4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .smart-loader-five .spinner-cube-2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .smart-loader-five .spinner-cube-3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .smart-loader-five .spinner-cube-4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes spinner-five {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes spinner-five {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
 * Preloader Six
 *--------------------------------------------------------------
 */

.smart-loader-six {
    width: 70px;
    height: 70px;
    position: relative;
}

    .smart-loader-six .spinner-cube-1,
    .smart-loader-six .spinner-cube-2 {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #3498db;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: spinner-six 2.0s infinite ease-in-out;
        animation: spinner-six 2.0s infinite ease-in-out;
    }

    .smart-loader-six .spinner-cube-2 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

@-webkit-keyframes spinner-six {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes spinner-six {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.smart-page-loader {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000;
}

.wp-smart-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    z-index: 100001;
}


.wp-smart-body {
    visibility: hidden;
}
/*--------------------------------------------------------------
 * Preloader Seven
 *--------------------------------------------------------------
 */

p, li, a, button, span, h5, h6 ,h3,h1,h2,h4 {
font-family: 'Jost', sans-serif;

}


.top-header {
    background-color: black;
    padding: 5px 0;
}
.header-details-list li {
    list-style: none;
    color: white;
  
    padding: 0 25px 0 0;
}
.header-details-list {
    padding: 0;
    margin: 0;
    display: flex;
}
.header-details-list span {
    padding: 0px 10px 0px 10px;
}

.clearfix {
    padding: 0;
    display: flex;
    margin-bottom: 0px;
}
.clearfix i.fa.fa-facebook-f {
    background-color: white;
    color: black;
    padding: 5px 5px 0 5px;
    border-radius: 2px;
}
.clearfix li {
    list-style: none;
    padding: 0 0 0 14px;
    
}
.clearfix i.fa.fa-pinterest {
    color: black;
    background-color: white;
    border-radius: 50%;
    padding: 3px 3px 1px 3px;
    font-size: 18px;
}

.clearfix i.fa.fa-twitter {
    background-color: white;
    color: black;
    border-radius: 2px;
    padding: 3px 3px 2px 3px;
}
.clearfix i.fa.fa-linkedin {
    background-color: white;
    color: black;
    border-radius: 2px;
    padding: 3px 3px 2px 3px;
}
.mid-header {
    background-color: #fff;
    color: white;
    padding: 10px 0;

}
.header-para {
    font-size: 19px;
    font-style: italic;
    color:black;
}
.header-details-list span {
    font-size: 13px;
}
.header-para span {
    float: right;
}
.both-head {
        
        padding: 1em;
        display: flex;
        justify-content:space-between;
        transition: 2s ease-in-out;
      }
.brand-log {
    margin: 0px;
    display: flex;
   
}
.nav--open .brand-log {
    left: -49px;
    width: 50px;
    height: 50px;
    background: white;
    text-align: center;
    /* box-shadow: 3px 0px 11px 1px #000; */
    position: absolute;
}
.header__button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}
      #mobile-title {
        list-style: none;
       }
    #mobile-title li a {
        color: #000;
        font-size: 1rem;
        text-decoration: none;
        }
   #mobile-title li {
           padding: 10px;
          border-bottom: 1px solid gray;
           }
            .m-header i.fa.fa-bars {
                font-size: 2.1rem;
            }

      .icons {
    font-size: 27px;
    float: right;
    width: 100%;
    text-align: center;
}
.brand-log h4 {
    padding: 12px 0 0 0;
}
.m-header-logo h2 {
    padding: 12px 0 0 0;
}

      .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        height: 100vh;
        width: 70%;
        background: #ffffff;
        transform: translateX(150%);
        transition: transform 0.3s;
      }

      .nav--open .nav__links {
        transform: translateX(50%);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        z-index: 3;
      }

      .nav__link {
        display: flex;
        align-items: center;
        color: #666666;
        font-weight: bold;
        font-size: 14px;
        text-decoration: none;
        padding: 12px 15px;
        background: transform 0.2s;
      }

      .nav__link > i {
        margin-right: 15px;
      }

      .nav__link--active {
        color: #009578;
      }

      .nav__link--active,
      .nav__link:hover {
        background: #eeeeee;
      }

      .nav__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition-property: width;
        transition-duration: 0.75s;
        transition-timing-function: linear;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(2px);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .m-header {
    display: none;
}

      .nav--open .nav__overlay {
        visibility: visible;
        opacity: 0.8;
        z-index: 2;
      }
      .minsection {
    position: relative;
    z-index: 0;
}
 .header1{
height: 80px;
}
.header-flex {
height: 80px;
 display: flex;
 
align-items: center;
position: relative;
}
.header-title{
display: flex;
list-style: none;
margin: 0;
}
.header-title li{
 margin: 0 18px;
 padding: 0 40px 0 0;
}
.header-title li a{
 color: #000;
 font-size: 20px;
 font-weight: 500;

 text-decoration: none;
}
.menu-btn i{
 color: #FFF;
 font-size: 22px;
 cursor: pointer;
 display: none;
}
#click{
 display: none;
}
.header{
 position: relative;
}


.active a{
color: #c5abd2;
}

.header-title li a:hover {
    color: #c5abd2;
}





.navbar-brand {
    display: flex;
}
.nav-item a {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
div#navbarNav {
    
    padding: 0 0 0 115px;
}
.nav-item {
    padding: 0 6px 0 45px;
    
}

.navbar-nav {
   
    padding: 0 0 0 99px;
}
.nav-item span {
    color: #C63131;
}
.footer {
    background-color: #fff;
}
.b-top {
    border-top: 1px solid #999;
}
.copy-one p {
    color: #000;
}
.copy-one a {
    color: #222;
}
    .copy-one p {
        margin: 0px;
        color: #222;
        font-weight: normal;
        font-size: 15px;
        text-align: center;
    }
ul.footer-list {
        padding: 45px 0 0 0;
}
.footer-list li {
    list-style: none;
    padding: 0 0 10px 0;
}
.footer-img {
    width: 100%;
    color: white;
    text-align: center;
        padding: 70px 0;
}
.clearfix-footer {
    padding: 0;
    display: flex;
    float: right;
}
.clearfix-footer i.fa.fa-facebook-f {
    background-color: white;
    color: #c5abd2;
    padding: 5px 5px 0 5px;
    border-radius: 2px;
}
.clearfix-footer li {
    list-style: none;
       padding: 0 6px 0 0px;
    
}
.clearfix-footer i.fa.fa-pinterest {
    color: #c5abd2;
    background-color: white;
    border-radius: 50%;
    padding: 3px 3px 1px 3px;
    font-size: 18px;
}

.clearfix-footer i.fa.fa-twitter {
    background-color: white;
    color: #c5abd2;
    border-radius: 2px;
    padding: 3px 3px 2px 3px;
}
.clearfix-footer i.fa.fa-linkedin {
    background-color: white;
    color: #c5abd2;
    border-radius: 2px;
    padding: 3px 3px 2px 3px;
}
.footer-content h4:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 3px;
    background: black;
    bottom: -12px;
}

.footer-content h4 {
    
    position: relative;
    
}
.footer-content1 h4 {
    
    position: relative;
    
}
.footer-content1 h4:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: black;
    bottom: -12px;
}
.footer-img img {    
    width: auto;
}
.footer-content {
    padding: 20px 0;
}
.footer-content1 {
    padding: 20px 0px;
    text-align: right;
}

.welcome-home{
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
}
.Buddha {
    background-color: rgb(0 0 0 / 46%);
    padding: 40px;
    color: white;
    text-align: center;
}
    .Buddha h1 {
        font-size: 55px;
        padding-bottom: 0;
    }
.home-btn a {
    background-color: #c5abd2;
    color: black;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 20px;
    border-radius: 5px;
    font-weight: 600;
}
.Buddha p {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}
.home-btn {
    padding: 10px;
}
section.core-vision:before {
    content: "";
    position: absolute;
    width: 100%;
    background-image: url(../images/Rectangle8.png);
    top: 25%;
    bottom: 0;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
}
section.core-vision {
    position: relative;
    background-color: #F5F5F5;
}
.vision-head {
    width: 100%;
    text-align: center;
}
.lotus {
    display: flex;
    background-color: #c5abd2;
    margin-bottom: 20px;
    padding: 30px 30px;
    border-radius: 5px;
}

.lotus-text {
    padding: 0px;
    color: white;
    padding-left: 25px;
}
    .lotus-text p{ margin-bottom:0px;}
    .core-body {
        padding: 0px 25px;
        padding-top: 50px;
    }
.home-quote {
    background-image: url(../images/Rectangle10.png);
    background-size: cover;
    background-position: center;
}
.heading-con h2{
    font-size: 40px;
    font-weight: 600;
}
.lotus-img {
    background: #fff;
    border-radius: 100%;
    width: 100px;
    height: 100px;
}
.quote-text p {
    font-size: 35px;
    color: red;
    font-family: 'Dancing Script';
    font-style: normal;
    line-height: 60px;
    font-weight: 700;
}
.quote-text span {
    float: right;
    color: #ffe000;
    font-weight: 700;
    font-size: 24px;
}
.offer-head {
    text-align: center;
}
.offer-head h2 {
    padding-bottom: 45px;
}
.offer-content {
    text-align: center;
    border-radius: 50%;
    box-shadow: 1px 1px 12px #0000004a;
    padding: 30px;
    margin-bottom: 50px;
}
    .offer-content p{ margin-bottom:0px;}
    .offer-content h4 {
        color: #95839E;
    }
.art {
    padding-top: 100px;
}
.latest-head {
    text-align: center;
}
.latest-img img {
    width: 100%;
}
.latest-img {
    padding: 10px;
}
.latest-content span {
    color: #747474;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.latest-content h6 {
    margin-top: 10px;
    font-size: 18px;
    padding: 0px;
}
    .latest-content h6 a {        
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
        overflow: hidden;
    }
.latest-content p {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.header-title span {
    color: #fff;
}


.latest-content {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    padding-bottom: 0px;
    margin-bottom: 15px;
    background: #fff;
}
.latest-text {
    padding: 0px 20px;
    
}

.temple {
    background-image: url(../images/templewide.jpg);
    background-size: cover;
    background-position: center;
}
.subscribe {
    text-align: center;
    padding: 30px 0;
}
.subscribe h2 {
    color: white;
    padding: 0 0 20px 0;
        font-size: 50px;
}

.submit input {
    font-family: 'Jost';
    padding: 25px 10px 25px 10px;
    border: none;
    width: 50%;
    text-align: left!important;
    background-color: rgba(217, 217, 217, 0.35);
}
.submit ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  font-size: 25px;
  opacity: 1; /* Firefox */
}
.submit {
    padding: 20px 0;
    display: flex;
    width: 100%;
    justify-content: center;
}
.pd-0 {
    padding: 0!important;
}
.owl-nav.disabled {
    display: block!important;
        
}
.latest-news-blogs button.owl-prev {
    background-color: #242422 !important;
    border-radius: 5px;
    width: 47px;
    height: 47px;
    margin-right: 10px;
}
.latest-news-blogs button.owl-next {
    background-color: #ffdb07 !important;
    border-radius: 5px;
    width: 47px;
    height: 47px;
}
 
.latest-news-blogs button img {
    width: 40px;
    padding: 5px 5px;
}

.welcome-about {
    background-image: url(../images/Rectangle22.png);
    background-size: cover;
    background-position: center;
}
.welcome-about h2 {
    text-align: center;
    color: white;
    font-size: 50px;
    padding: 20px 0;
}
.resident-content {
    padding: 60px 40px 0;
}
.resident-content  h2{
    padding: 0px 0px 35px;

    font-weight: 700;
}
.resident-img img {
    width: 100%;
}
.offer-img img {
    width: 100%;
}
.history {
    text-align: center;
    box-shadow: 0px 4px 3px 0px #0000003b;
    padding: 35px 10px;
    margin-bottom: 90px;
    /* justify-content: center; */
    position: relative;
}
.history h4 {
    /* bottom: 50px; */
    color: white;
    background-color: #c5abd2;
    border: 1px solid;
    font-size: 30px;
    border-radius: 50%;
    /* height: 100px; */
    text-align: center;
    width: 100px;
    padding: 25px 0px;
    position: absolute;
    top: -60px;
    left: 30%;
}
.art1 {

    padding-top: 200px;
}
.counter {
    background-image: url(../images/Rectangle28.png);
    background-size: cover;
    background-position: center;
}
.counter-content {
    text-align: center;
    color: white;
        padding: 25px 0;
}

.counter-content h3 {
    font-size: 40px;
    padding: 10px 0;
}
.counter-img img {
    width: 120px;
    height: 120px;
}
.counter-content p {
    font-size: 25px;
}
.photos-img img {
    width: 100%;
    height: 36rem;
}
.photos-img1 img {
    width: 100%;
    height: 100%;
}
.photos-head {
    text-align: center;
}
.photos-img {
     padding-bottom: 20px;
}
.photos-img1 {
    padding-bottom: 20px;
}


.latest-btn {
    background-color: #c5abd2;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.latest-btn:before {
    content: "";
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    position: absolute;
    transition: all 0.3s linear;
}
.latest-btn:hover:before {
    transform: translateX(0px);
    z-index: -1;
    transition: all 0.3s linear;

}
.view-all button#my-form-button:hover {
    color: white!important;
    background-color: #b499c3;
}
.latest-btn:hover{
    color: #fff;
    background: #000;

}

.subscribe  {
    display: grid;
    padding: 15px 0;
    place-items: center;
}
.subscribe .button-btn:before {
    content: "";
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    position: absolute;
    transition: all 0.3s linear;
}
    .subscribe .button-btn:hover:before {
        transform: translateX(0px);
        z-index: -1;
        transition: all 0.3s linear;
    }
    .subscribe .button-btn:hover {
        color: #fff;
        background: #000;
    }

    .subscribe .button-btn {
        position: relative;
        padding: 25px 50px;
        text-decoration: none;
        color: white;
        height: 74px;
        background-color: #c5abd2;
        font-weight: 600;
        margin-top: 0;
        text-align: center;
        font-size: 20px;
        transition: all 0.3s linear;
        z-index: 1;
        overflow: hidden;
        border-radius: 5px;
        margin-left: 20px;
        border: none;
    }
.latest {
    background: #c5abd2;
}
.blog-btn {
    background-color: #c5abd2;
    color: white!important;
    text-decoration: none;
    padding: 12px 45px;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.latest-btn1 a:hover {
    background-color: #7b6187;
}
.lotus-img img {
    width: 100px;
    padding: 10px;
}
.blog-btn:before {
    content: "";
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    position: absolute;
    transition: all 0.3s linear;
}
.blog-btn:hover:before {
    transform: translateX(0px);
    z-index: -1;
    transition: all 0.3s linear;

}
.blog-btn:hover{
    color: #fff;
    background: #000;

}
.header-title .active a{color: #c5abd2;}
.welcome-events {
    background-image: url(../images/Rectangle221.png);
    background-size: cover;
    background-position: center;
}
.welcome-events h2 {
    text-align:center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}

.latest-btn1 {
    padding: 40px 0 20px 0px;
    text-align: center;
    width: 100%;
}
.latest-btn1 a {
    background-color: #c5abd2;
    color: white!important;
    text-decoration: none;
    padding: 15px 90px;
    font-size: 25px;
    border-radius: 5px;
}
.welcome-blog {
    background-image: url(../images/Rectangle912.png);
    background-size: cover;
    background-position: center;
}
.welcome-blog h2 {
    text-align: center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}
.banner-head h4 {
    color: white;
    text-align: center;
}
.banner-head {
    padding: 50px 0;
}
.blog-img img {
    width: 100%;
}
.blog-text h5 {
    display: contents;
}
.blog-text span {
    float: right;
    color: #95839E;

}
.blog-text {
    padding: 30px 0;
}
.blog-text p {
    padding: 30px 0 30px 0;
}

.blog-body {
    margin-bottom: 60px;
    border-bottom: 3px dashed #c5abd2;
    padding-bottom: 15px;
}
.blog-text a {
    text-decoration: none;
    color: black;
}
ul.blog-list {
    padding: 10px 0px 0 30px;
}
.blog-cat-content h2 {
    /* text-align: center; */
    padding: 0 0 0 30px;
}
.blog-list  li {
    list-style: none;
    padding: 10px 0 5px 0;
}
.blog-list  a {
    text-decoration: none;
    color: black;
}
.blog-list span {
    padding: 0 0 0 25px;
}
.blog-categories {
    padding: 0 30px;
}
.blog-cat-content {
    padding: 30px 20px;
    border-top: dashed #c5abd2;
    border-bottom: dashed #c5abd2;
}
.blog-list i.fa.fa-angle-right {
    color: #c5abd2;
}
.blog-search {
    padding: 35px 30px;
    text-align: center;
    background-color: rgba(197, 171, 210, 0.45);
    border-radius: 10px;
    margin-top: 60px;
    
}
.blog-search form {
    padding: 15px 0 15px 0;
}
.blog-search input[type="text"] {
    height: 50px;
    /* padding: 0 0 0 10px; */
    width: 100%;
    padding: 0 0 0 15px;
    border: none;
}
.banner-head span {
    color: #fff;
    padding: 0 10px 0 0;
}
.banner-head span:hover {
    color: black;
    transition: .5s cubic-bezier(0.4, 0, 1, 1);

}
.banner-head a {
    text-decoration: none;
}
.blog-search button {
    border: none;
    position: relative;
    left: -10px;
    font-size: 22px;
    padding: 2px 8px;
    background: white;
    bottom: 45px;
    float: right;
}
.latest-blog {
    padding: 40px 20px;
    border-top: dashed #c5abd2;
    margin-top: 65px;
}
.latest-blog h2 {
    text-align: center;
}
.blog-calendar {
    display: flex;
    border-bottom: 1px solid #c5abd2;
    padding: 25px 0 25px 0;
}
.calendar-text {
    padding: 0 0 0 20px;
}
.welcome-blog-details {
    background-image: url(../images/Rectangle912.png);
    background-size: cover;
    background-position: center;
}
.welcome-blog-details h2 {
    text-align: center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}
.blog-text1 a {
    text-decoration: none;
    color: black;
}
.blog-text1 span {
   
    color: #95839E;
}
.blog-text1 {
    padding: 0px 0 20px 0;
}
.blog-img {
    padding-bottom: 20px;
}
.blog-about {
    background: rgba(197, 171, 210, 0.45);
    padding: 40px 40px;
    display: flex;
    border-radius: 10px;
}
.blog-about-text {
    padding: 0 30px;
}
.post-comment-blog input.form-control.form-com {
    padding: 25px 10px;
    background: rgba(197, 171, 210, 0.39);
    border: none;
}
.post-comment-blog {
    padding: 50px 0px;
    border-top: dashed #c5abd2;
    margin-top: 60px;
}
.post-comment-blog form#my-form {
    padding: 35px 0;
}
.post-comment-blog textarea.form-control.form-com-message {
    border: none;
    background: rgba(197, 171, 210, 0.39);
    padding: 20px 10px 80px;
}
.post-comment-blog ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  
  opacity: 1; /* Firefox */
}
.post-comment-blog label {
    display: initial;
    margin-bottom: 0.5rem;
}
.blog-calendar:nth-child(4) {

    border-bottom: none;
}
.calendar-text span {
    font-size: 20px;
}
.calendar-text a {
    text-decoration: none;
    color: black;
}
.copy-one-to {
    text-align: center;
   
}
    .copy-one-to p {
        margin-bottom: 0px;
    }
.min-f-bg {
    padding: 20px 0;
    border-top: 1px solid #e4c2f5;
    background: #e4c2f5;
}
.footer{ padding-bottom:0px;}
.calendar-text a:hover {
    color: crimson;
    /* transition: .5s; */
}
.blog-list span:hover {
    color: #c5abd2;
}

.blog-text a:hover {
    color: #c5abd2;
}
.post-comment-blog button#my-form-button {
    background-color: #c5abd2;
    color: white!important;
    text-decoration: none;
    padding: 10px 60px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
        margin-top: 20px;
}
.latest-text a {
    text-decoration: none;
    color: black;
}
.latest-text a:hover {
    text-decoration: none;
    color: #c5abd2;
}
.birthday-img img {
    width: 100%;
}
.organizer-content {
    padding: 20px 20px;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    height: 100%;
}
ul.organizer-list {
    padding: 0;
}
.organizer-list li {
    list-style: none;
    padding: 15px 0 10px 0;
    line-height: 32px;
    font-size: 15px;
}
.organizer-content p {
    padding: 15px 0 10px 0;
    line-height: 32px;
    font-size: 15px;
}
.organizer-content1 iframe {
    width: 100%;
    height: 100%;
}
.map {
    display: initial;
}
.organizer-content1  {
    width: 100%;
    height: 100%;
}
.organizer-content:hover {
    background-color: #c5abd2;
    color: white;
}
.organizer-content a {
    color: #c5abd2;
    text-decoration: none;
}
.organizer-content:hover a{
    background-color: #c5abd2;
    color: white;
}
.welcome-events-details {
    background-image: url(../images/Rectangle722.png);
    background-size: cover;
    background-position: center;
}
.welcome-events-details h2 {
    text-align:center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}

.welcome-causes {
    background-image: url(../images/Rectangle212.png);
    background-size: cover;
    background-position: center;
}
.welcome-causes h2 {
    text-align:center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}
.donation {
    float: right;
}
.causes-percent li {
    display: inline-block;
}
ul.causes-list {
    padding: 0;
}
.causes-percent {
    background-color: #F5F5F5;
    padding: 10px 20px;
}

.causes-img img {
    width: 100%;
}
.causes-text {
    padding: 20px 20px;
}
.causes-content {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    margin-bottom: 50px;
}
.causes-text h4 {
    padding-bottom: 20px;
}
.causes-text a {
    text-decoration: none;
    color: black;
}
.causes-text a:hover {
    text-decoration: none;
    color: #c5abd2;
}
.welcome-causes-details {
    background-image: url(../images/Rectangle01.png);
    background-size: cover;
    background-position: center;
}
.welcome-causes-details h2 {
    text-align:center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}
.progress {
    padding: 8px 10px 8px 10px;
    height: 2rem;
        width: 50%;
}
.school-img img {
    
    width: 100%;
}

.progress-bar {
    /* color: red; */
    background-color: #c5abd2!important;
}
.school-bar span {
  position: relative;
    left: 20%;
}
.school-bar {
    display: grid;
    place-items: center;
    width: 100%;
}
.donate-btn button {
    padding: 20px 35px;
    border-radius: 100px;
    color: #C5ABD2;
    background-color: #E7E7E7;
    border: none;
    font-weight: 600;
}
.donate-btn button:hover {
    background-color: #c5abd2;
    color: white;
}
.donate-form input.form-control.form-com {
    background-color: rgba(197, 171, 210, 0.44);
    padding: 32px 15px;
    border: none;
}
.donate-form form#my-form {
    padding: 0px 20px;
}
.donation-total input.form-control.form-com {
    text-align: center!important;
    width: 100%;
    /* display: flow-root; */
    padding: 40px 0;
    position: relative;
    left: 55%;
    margin-top: 60px;
}
.view-all button#my-form-button {
    padding: 20px 80px;
    color: white;
    background-color: rgba(197, 171, 210, 0.56);
    font-weight: 700;
    font-size: 26px;
    border: none;
}
.view-all.col-md-12 {
    text-align: center;
    padding-top: 60px;
}
.donate-online h2 {
    text-align: center;
}

.welcome-contact-us {
    background-image: url(../images/Rectangle001.png);
    background-size: cover;
    background-position: center;
}
.welcome-contact-us h2 {
    text-align:center;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0;
}
.contact-content {
    text-align: center;
    padding: 20px 25px;
    background-color: whitesmoke;
    height: 100%;
}
.contact-img {
    background-color: #c5abd2;
    border-radius: 50%;
    display: inline-block;
}
.contact-img img {
    
    padding: 20px 20px;
    display: grid;
        width: 100px;
    height: 100px;
}
.contact-content p {
    padding-top: 20px;
}
.contact-info h2 {
    text-align: center;
}
.contact-us-form {
    background-color: #F5F5F5;
    padding: 30px 45px;
}
.contact-us-form h2 {
    padding-bottom: 30px;
}
    .contact-us-form input.form-control.form-com {
        padding: 15px;
        background-color: white;
        border: 1px solid;
        height: 57px;
    }
.contact-us-form textarea.form-control.form-com-message {
    height: 180px;
    border: 1px solid;
    background-color: white;
    padding: 15px 15px;
}
.contact-us-form button#my-form-button {
    background-color: #c5abd2;
    color: white!important;
    text-decoration: none;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
        margin: 20px 0;
}
.location {
     padding: 30px 45px;
    background-color: #C5ABD2;
}
.location h2 {
    padding-bottom: 30px;
}
.location-content {
    display: flex;
    padding-top: 30px;
}
.location-content p {
    padding-top: 10px;
    padding-left: 10px;
}
.map1 iframe {
    width: 100%;
    
}
.map1 {
    /* width: 100%; */
    /* height: 100%; */
    display: contents;
}
/*.latest-btn:hover {
    text-decoration: none;
    color: #c5abd2!important;
    border: 1px solid #c5abd2;
    background-color: white;
}*/
.home-btn a:hover {
    text-decoration: none;
    color: #c5abd2!important;
    border: 1px solid #c5abd2!important;
    background-color: #ffffff00;
}
.menu-h3{
    font-weight: 500;
    margin-top: -6px;
    font-size: 20px;
}
.h3-menu {
    margin-left: -14px;
}
/* Home Two */
.welcome-home{
    background-image: url(../images/banner2-1-scaled.jpg);
    background-size: cover;
    background-position: center;
}
.holiness-quote{
    background-color: #07b5c1;
    padding: 80px;
}
.holiness-quote h4 {
    float: inline-end;
}
.what-offer-h2 img{
    width: 100%;
    border-radius: 50%;
}
.fade-in-image {
    opacity: 50%;
  }
  
  .fade-in-image:hover {
    opacity: 100%;
    transition: opacity 1s;
  }

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  /* home two */
  
.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    padding: 30px 50px;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color:transparent;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}