body{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px ; 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgb(0, 115, 56);
    -webkit-box-shadow: inset 0 0 6px;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgb(0, 115, 56); 
}
.header{
    width: 100%;
    float: left;
    position: absolute;
    z-index: 999;
}
.logo{
    width: auto;
    float: left;
    padding: 17px 18px;
    background-color: #fff;
}
@media (max-width: 991px){
    .logo{
       padding: 13px 0;
       background: transparent;
    }
}
.my-nav{
    width: auto;
    float: right;
}
@media (max-width: 991px){
    .header{
        position: unset;
        background: #000000e3;
    }
    .top-header{
        display: none;
    }
    .my-nav{
        width: auto;
    }
}
.background-white{
    background-color: transparent;
}
.cssmenu {
    /* width: 100%; */
    float: right;
    position: relative;
}
.cssmenu > ul {
    border-top: 1px solid #ffffff30;
    width: auto;
    float: right;
    padding: 55px 0;
}
.cssmenu > ul li {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 13px;
}
.cssmenu > ul li:hover a{
    border-bottom: 5px solid #fff;
    padding: 8px 0;
}
.cssmenu > ul .active {
    border-bottom: 5px solid #fff;
    padding: 8px 0;
}
.cssmenu > ul li.responsive_nav {
    display: none;
} 
.cssmenu > ul li a {
    font-family: 'Montserrat', sans-serif; 
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.cssmenu > ul li a:hover {
    text-decoration: none;
}
.cssmenu > ul li ul.submenu {
    *
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 200px;
    height: 0;
    overflow: hidden;
    background: #fff;
    margin: 20px 0 0 0 !important;
    padding: 0;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.10);
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.cssmenu > ul li.open ul.submenu {
    *display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
    border-radius: 0 0 6px 6px;
}
ul.submenu li {
    width: 100%;
    float: left;
    padding: 20px 0
}
ul.submenu li:hover{
    background-color: #5eac46;
}
ul.submenu li a {
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    font-weight: 400;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
ul.submenu li:hover a{
    color: #fff;
}
.has-child > a {
    position: relative;
    padding-right: 15px !important;
}
.has-child > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 8px;
    right: 0;
    border-top: solid 6px #e24a30;
    border-right: solid 6px transparent;
    border-left: solid 6px transparent;
}
.open > a::after {
    border-top: none;
    border-bottom: solid 6px #e24a30;
}
.cssmenu > ul li ul.megamenu {
    *display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 0;
    background: #fff;
    left: 0;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.10);
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.cssmenu > ul li.open ul.megamenu {
    *display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
}
ul.megamenu li {
    width: 33.33333%;
    float: left;
}
ul.megamenu > li > a {
    width: 40%;
    height: 170px;
    background-color: #e24a30;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-transform: uppercase;
    float: left;
    font-size: 16px;
    line-height: 25px;
    color: #fff !important;
    font-weight: 400;
    padding: 55px 20px;
    text-align: center;
    margin: 0;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
ul.megamenu li > ul {
    width: 60%;
    float: left;
}
ul.megamenu li > ul li {
    width: 100%;
    float: left;
}
ul.megamenu li ul li a {
    width: 100%;
    float: left;
    float: left;
    font-size: 16px;
    line-height: 20px;
    color: #333;
    font-weight: 400;
    padding: 10px 30px;
    margin: 0;
    text-align: left;
}
@media (max-width: 991px) {
.cssmenu > ul {
    width: 100%;
}
.cssmenu > ul li {
    width: 100%;
    float: left;
    display: none;
}
.cssmenu > ul li.responsive_nav {
    display: block;
    width: 70px;
    height: 80px;
    float: right;
    position: relative;
}
.responsive_nav svg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.responsive_nav svg path{
  stroke-width: 20;
  stroke-linecap: round;
  stroke: #fff;
  fill: none;
  transition: all .5s ease-in-out;
}
.responsive_nav .top_bar,
.responsive_nav .bottom_bar{
  stroke-dasharray: 240px 910px;
}
.responsive_nav .middle_bar{
  stroke-dasharray: 240px 240px;
}
.responsive_nav .open .top_bar,
.responsive_nav .open .bottom_bar{
  stroke-dashoffset: -650px;
}
.responsive_nav .open .middle_bar{
  stroke-dasharray: 0px 220px;
  stroke-dashoffset: -120px;
}

.cssmenu > ul li a {
    width: 100%;
    float: left;
    line-height: 25px;
    margin: 0px;
    text-align: left;
    padding-bottom: 15px;
}
.cssmenu > ul li ul.submenu {
    height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-left: 0px !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.cssmenu > ul li.open ul.submenu {
    height: auto;
}
.cssmenu > ul li ul.megamenu {
    height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    left: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.cssmenu > ul li.open ul.megamenu {
    height: auto;
}
ul.megamenu > li > a {
    width: 100%;
    height: 40px;
    padding: 0px;
    color: #333 !important;
    line-height: 40px;
    text-align: center !important;
    background-color: #f1f1f1;
    background-image: none !important;
}
ul.megamenu li > ul {
    width: 100%;
}
}
@media (max-width: 991px){
    .cssmenu > ul li{
        padding: 10px 0px;
        text-decoration: none;
    }
    .cssmenu > ul{
        background-color: transparent;
    }
    .cssmenu > ul li a {
        text-align: center;
        color: #5eac46;
    }
    .cssmenu > ul .active a{
        color: #fff;
    }
}
.request-btn{
    width: 309px;
    height: 44px;
    background-color: #007338;
}
.request-btn:hover{
    background-color: #004723;
}
.rqst-btn-txt{
    padding: 10px 0px 0 20px;
    float: left;
}
.request-btn span{
    position: relative;
    top: 0;
    z-index: 1;
    right: 0;
    float: right;
}
.padding-ryt0{
    padding-right: 0 !important;
}
/*.panel-1{
    width: 100%;
    position: absolute;
    z-index: 1;
}
.logo{
    width: 100%;
    float: left;
    text-align: center;
    padding: 18px 0;
    background-color: #FFF;
}*/
.panel-2{
    width: 100%;
    float: left;

}
.banner{
    width: 100%;
    float: left;
}
.content {
    width: 100%;
    padding: 350px 0 214px;
    position: absolute;
    z-index: 2;
    bottom: 0;
}
.content h2 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 34px 0;
    text-align: center;
}
.content p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
}
.panel-2 .owl-carousel .owl-item, .item {
    padding: 0 !important;
}
.owl-carousel .owl-wrapper-outer{
    margin-bottom: 0 !important;
}

.panel-1 {
    width: 100%;
    float: left;
    padding: 29px 0;
    position: relative;
    margin: -155px 0 0px;
    background-color: #FFF;
}
.time{
    width: 100%;
    float: left;
    padding: 0 27px;
}
.panel-1 img{
    float: left;
    margin-right: 28px;
}
.panel-1 h3{
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0px;
    margin: 2px 0 !important;
}
.panel-1 p{
    width: auto !important;
    float: left !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin: 0 !important; 
    text-align: unset !important;
    line-height: unset !important;
}
.address{
    width: 100%;
    float: left;
    padding: 0 35px;
}
.call{
    width: 100%;
    float: left;
    padding: 0 50px;
}

.panel-3 {
    width: 100%;
    height: auto;
    background-image: url(../images/panel-3.png);
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    padding: 106px 0 58px;
    float: left;
}
.about{
    width: 100%;
    float: left;
    padding: 105px 50px;
}
.about-decor{
    float: left;
    padding: 13px 21px 0 0;
}
.panel-3 h2{
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #272727;
    letter-spacing: 4px;
    margin: 0 0 36px 0;  
}
.panel-3 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #252525;
    margin: 0 0 36px 0; 
    text-align: right;
    line-height: 32px;
}
.panel-3 .read-more{
    width: 181px;
    height: 49px;
    float: right;
    border: 3px solid #272727;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #272727;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    transition-duration: 1.5s;
}
.panel-3 .read-more:hover{
    background-color: #272727;
    color: #FFF;
    transition-duration: 1.5s;
    cursor: pointer;
}
.panel-4{
    width: 100%;
    float: left;
    padding: 59px 0;
}
.panel-4 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #272727;
    letter-spacing: 4px;
    margin: 0 0 38px 0;
    text-align: center;
}
.panel-4 .img-responsive{
    width: 100% !important;
}
.panel-4 h3{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #272727;
    margin: 0 0 23px 0;
    text-align: center;
    text-transform: uppercase;
}
.panel-4 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #474747;
    margin: 0; 
    text-align: center;
    line-height: 28px;
}
.panchakarma-therapy{
    width: 100%;
    float: left;
    padding: 86.5px 51px;
    transition-duration: 1.5s;
}
.panchakarma-therapy:hover{
    background-color: #007338;
    transition-duration: 1.5s;
}
.panchakarma-therapy:hover h3,
.panchakarma-therapy:hover p{
    color: #fff;
    transition-duration: 1.5s;
}
.vamana{
    width: 100%;
    float: left;
    padding: 86.5px 51px;
    transition-duration: 1.5s;
}
.vamana:hover{
    background-color: #007338;
    transition-duration: 1.5s;
}
.vamana:hover h3,
.vamana:hover p{
    color: #fff;
    transition-duration: 1.5s;
}
.vasti{
    width: 100%;
    float: left;
    padding: 58.5px 51px;
    transition-duration: 1.5s;
}
.vasti:hover{
    background-color: #007338;
    transition-duration: 1.5s;
}
.vasti:hover h3,
.vasti:hover p{
    color: #fff;
    transition-duration: 1.5s;
}
.rejuvenation{
    width: 100%;
    float: left;
    padding: 86.5px 51px;
    transition-duration: 1.5s;
    background-color: #007338;
}
.rejuvenation:hover{
    background-color: #FFF;
    transition-duration: 1.5s;
}
.rejuvenation h3{
    color: #fff;
    transition-duration: 1.5s;
}
.rejuvenation p{
    color: #fff;
    transition-duration: 1.5s;
}
.rejuvenation:hover h3{
    color: #272727;
    transition-duration: 1.5s;
}
.rejuvenation:hover p{
    color: #474747;
    transition-duration: 1.5s;
}
.read-div{
    width: 100%;
    float: left;
    padding: 38px 0 0 0;
    text-align: -webkit-center;
}
.panel-4 .read-more{
    width: 181px;
    height: 49px;
    border: 3px solid #007338;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #007338;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    transition-duration: 1.5s;
}
.panel-4 .read-more:hover{
    background-color: #007338;
    color: #FFF;
    transition-duration: 1.5s;
    cursor: pointer;
}
.panel-5 {
    width: 100%;
    height: auto;
    background-image: url(../images/panel-5.png);
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    padding: 59px 0 58px;
    float: left;
}
.panel-5 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 4px;
    margin: 0 0 34px 0;  
    text-align: center;
}
.pan5-inner{
    width: 100%;
    float: left;
    padding: 35px 38px;
    background-color: rgba(0, 0, 0, .5);
}
.panel-5 .event-style{
    width: 100%;
    height: 55px !important;
    float: left;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, .1) !important;
    border: 0px !important;
    color: #FFF !important;
    padding: 13px 25px !important;
}
.panel-5 .event-style::placeholder{
    color: #FFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
}
.panel-5 .event-text{
    width: 100%;
    min-height: 86px !important;
    float: left;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, .1) !important;
    border: 0px !important;
    color: #FFF !important;
    padding: 13px 25px !important;
}
.panel-5 .event-text::placeholder{
    color: #FFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
}
.panel-5 .event-select,
.event-option{
    width: 100%;
    min-height: 38px !important;
    float: left;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, .1) !important;
    border: 0px !important;
    color: #FFF !important;
    padding: 13px 25px !important;
}
.panel-5 .event-select::placeholder,
.event-option::placeholder{
    color: #FFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
}
.padding-ryt{
    padding-right: 15px;
}
.padding-lft{
    padding-left: 15px;
}
.panel-6{
    width: 100%;
    float: left;
    padding: 59px 0 46px;
    border-top: solid 1px rgba(0, 0, 0, 0.09);
}
.panel-6 h3{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0;  
    text-align: center;
    line-height: 29px;
    padding: 0 49px;
    text-transform: uppercase;
}
.panel-6 .logo{
    width:100%;
    text-align: center;
    float: left;
    padding: 0 0 35px;
}
.landmark h3{
    padding: 15px;
}
.panel-6 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin: 0;  
    padding: 40px 37px;
    text-align: center;
    line-height: 29px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.social-media{
    width: 100%;
    float: left;
    text-align: center;
}
.icon-padding{
    padding: 0 20px;
}
.panel-7{
    width: 100%;
    float: left;
}
.panel-7 h4{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;  
    text-align: center;
    line-height: 29px;
    padding: 12px 0 23px;
    margin: 0;
}
.copyright a{
    color: #000;
}
.copyright a:hover{
    color: #000;
}

.inner-banner{
    width: 100%;
    float: left;
    padding: 185px 0 0;
    /*background-position: 59% 61% !important;*/
    background: url(../images/inner-banner.png);
    background-size: cover;
    height: 300px;
}
.inner-banner h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: right;
    margin-bottom: 25px;
    border-right: 4px solid #FFF;
    padding-right: 10px;
}
.panel-8{
    width: 100%;
    float: left;
    padding: 50px 0;
}
.panel-8 p{
    float: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #272727;
    line-height: 35px;
    margin-bottom: 20px;
}
.panel-8 .margin-top30{
    margin-top: 30px;
}
.panel-8 .margin-top25{
    margin-top: 25px;
}
.about-section {
    float: left;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}
.abt-img {
    float: left;
    margin-right: 35px;
}
.abt-imgr {
    float: right;
    margin-left: 35px;
}

.panel-9{
    width: 100%;
    height: auto;
    background-image: url(../images/panel-3.png);
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    padding: 58px 0;
    float: left;
}
.panel-9 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #272727;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 25px;
}
.panel-9 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #272727;
    font-weight: 400; 
    line-height: 32px;
    text-align: center;
    padding-bottom: 20px;
}
.panel-9 p.padding-0{
    padding-bottom: 0;
}
.panel-10{
    width: 100%;
    float: left;
    background-color: #101010;
    padding: 50px 0 ;
}
.panel-10 h1{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 25px; 
}
.panel-10 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px; 
}
.panel-10 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFF;
    font-weight: 300; 
    line-height: 32px;
    text-align: center;
    padding-bottom: 20px;
}

/*contact*/

.panel-11{
    width: 100%;
    float: left;
    padding: 50px 0;
}
.panel-11 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #272727;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 25px; 
}
.panel-11 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #272727;
    font-weight: 400; 
    line-height: 32px;
    text-align: center;
    padding-bottom: 20px;
}
.contact-locations {
    float: left;
    width: 100%;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
}
.panel-11 h3{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 500;
}
.panel-12{
    width: 100%;
    float: left;
    padding: 50px 0;
    background-color: #101010;
}
.panel-12 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 25px; 
}
.panel-12 p{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFF;
    font-weight: 400; 
    line-height: 32px;
    text-align: center;
    padding-bottom: 20px;
}
.form-panel {
    float: left;
    width: 65%;
    padding-top: 35px;
    padding-bottom: 35px;
}
.success {
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    background: #7a9f05;
    padding-top: 11px;
    font-size: 16px;
    padding-bottom: 11px;
    font-family: 'Montserrat' sans-serif;
    font-weight: 300;
    margin-bottom: 15px;
    display: none;
}
.inp {
    position: relative;
    margin: auto;
    width: 100%;
    /* max-width: 280px; */
    margin-bottom: 40px;
}
.inp input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #c0c0c0;
    background: none;
    border-radius: 0;
    color: #ffffff;
    transition: all 0.15s ease;
    /* padding-bottom: 26px; */
    font-family: 'Montserrat' sans-serif;
    font-weight: 400;
    outline: none !important;
}
.inp .label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 14px;
    color: #595b60;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    font-family: 'Montserrat' sans-serif;
    font-weight: 500;
}
.inp .border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #8f6f1d;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all 0.15s ease;
}
.center-btn {
    text-align: center;
}
.contact-snd{
    width: 181px;
    height: 49px;
    border: 3px solid #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #FFF;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    transition-duration: 1.5s;
    background-color: transparent;
}
.contact-snd:hover{
    background-color: #FFF;
    color: #272727;
    transition-duration: 1.5s;
    cursor: pointer;
}

/*career*/
#abt-panel {
    float: left;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 25px;
    background-color: #101010;
}
#abt-panel h2 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px; 
}
.row-left {
    float: left;
    width: 100%;
}
.form_titels {
    float: left;
    width: 100%;
    color: #FFF;
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.mct_form {
    border-bottom: 1px solid #b0aaaa !important;
    color: #FFF;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    /* text-transform: uppercase; */
    height: 45px;
    margin-bottom: 30px !important;
    padding: 0 20px;
    outline: none;
    background: transparent;
    width: 100%;
    padding-left:0px;
    border: none;
    transition: all 500ms ease;
    border-bottom: solid 1px rgba(46, 67, 110, 0.62);
     transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.mct_form:hover{
    border-bottom: solid 1px rgb(14, 114, 76);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.push-left{
  float:left;
}

/*services*/
.panel-13{
    width: 100%;
    float: left;
    padding: 50px 0;
}
.panel-13 h2{
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    color: #272727;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
}
.panel-13 p{
    float: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #272727;
    line-height: 35px;
    margin-bottom: 20px;
}
.panel-13 .margin-top30{
    margin-top: 30px;
}
.panel-13 .margin-top25{
    margin-top: 25px;
}
.panel-13 h3{
    float: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #272727;
    line-height: 35px;
    margin: 10px 0;
}
.svamana-margin{
    margin: 80px 0 10px !important;
}
.svirechanam-margin{
    margin: 70px 0 0 !important;
}
.svasti-margin{
    margin: 70px 0 0 !important;
}
.snasva-margin{
    margin: 65px 0 0 !important;
}
.srakhta-margin{
    margin: 60px 0 0 !important;
}
.srejuvenation-margin{
    margin: 60px 0 0 !important;
}
.padding-0{
    padding:0;
}
.panel-14{
    width: 100%;
    height: auto;
    background-image: url(../images/panel-14.png);
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    padding: 40px 0;
    float: left;
}
.panel-14 h2{
    float: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    line-height: 35px;
    text-align: center;
    margin: 0;
}

.form-titels{
    float: left;
    width: 100%;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 200 !important;
    padding-left: 0px !important;
}

.mb20{
    margin-bottom:20px;
}

@media only screen and (max-width:1199px) {
.panel-1 img{width:22px; height:22px; margin-right:8px;}
.panel-1 h3{font-size:14px;}
.panel-1 p{font-size: 12px !important;}
.about-decor{display:none;}
.panel-3 h2{float:left; width:100%; margin-bottom:15px;}
.panel-3 p{text-align:left;}
.panel-3 .read-more{float:left;}
.about{padding-bottom:0px; padding-top:15px;}
.mws{float:left; width:100% !important;}
.panchakarma-therapy{padding-bottom:25px; padding-top:25px; background:antiquewhite; margin-bottom:8px;}
.vamana{padding-bottom:25px; padding-top:25px; background:antiquewhite; margin-bottom:0px;}
.vasti{padding-bottom:25px; padding-top:25px; background:antiquewhite; margin-bottom:0px;}
.up-arrow{display:none;}
.cssmenu > ul{padding-top:0px; padding-bottom:0px;}
.cssmenu > ul li{padding: 5px 10px;}
.cssmenu > ul li a{font-size:14px;}
.request-btn{width:274px;}
}

@media only screen and (max-width:1199px) {
.panel-1{display:none;}
}

@media only screen and (max-width:991px) {
.abtimgs{display:none;}
.panel-3{padding-top:50px;}
.cssmenu > ul{padding-top:30px;}
.cssmenu > ul li:hover a{border-bottom:none !important;}
.my-nav{width:100%; float:right; margin-top:-150px;}
.cssmenu > ul .active{border-bottom: 2px solid rgba(255, 255, 255, 0.14);}
.request-btn{float:left; width:100%; text-align: center;}
.rqst-btn-txt{float:left; width:100%; text-align:center;}
.request-btn span{display:none;}
.request-btn{background:#1c1c1c;}
}

@media only screen and (max-width:400px) {
.about{padding:0px;}
}

@media only screen and (max-width:780px) {
.inner-banner{padding-top:50px; height:200px;}
.inner-banner h2{text-align:center; letter-spacing:0px; border-right:none;}
}

@media only screen and (max-width:590px) {
.width-imgs{float:left; width:100%;}
.abt-imgr{margin-left:0px;}
}

@media only screen and (max-width:600px) {
.abt-img{width:100%; float:left;}
.abt-imgr{width:100%; float:left; margin-left:0px;}
.panel-13{padding-top:10px !important; padding-bottom:10px !important;}
}

@media only screen and (max-width:991px) {
.width-form{float:left; width:100%;}
.form-panel{float:left; width:100%;}
.contact-locations{margin-bottom:10px;}
.rvs-paddingr{padding-right:0px;}
.rvs-paddingl{padding-left:0px;}
}


@media only screen and (max-width:720px) {
.content{bottom:-90px;}
.content h2{font-size: 40px; margin-bottom:10px;}
}

@media only screen and (max-width:509px) {
.content{bottom:-110px;}
.content h2{font-size:25px; margin-bottom:10px;}
}


@media only screen and (max-width:439px) {
.content{bottom:-122px;}
.content h2{font-size:15px; margin-bottom:10px;}
.content p{font-size:18px;}
}

@media only screen and (max-width:338px) {
.content{    bottom: -158px;
    float: left;
    position: absolute;
    right: 0;}
.content h2{font-size:15px; margin-bottom:10px;}
.content p{font-size:18px;}
}

@media only screen and (max-width:425px) {
.sp-w{float:left; width:100%;}
}


.nav-useful{
        background: #ececec;
        padding: 20px !important;
        text-align: center !important;
        font-size: 16px !important;
        line-height: 28px !important;
        float: left;
        width: 100%;
        color: #000;
        font-weight: 400;
        transition:all 500ms ease;
        -moz-transition:all 500ms ease;
        -webkit-transition:all 500ms ease;
        -ms-transition:all 500ms ease;
        -o-transition:all 500ms ease;
        margin-bottom: 20px;
}

.nav-useful:hover{
        background: #167141 !important;
        color: #FFF !important;
        text-decoration: none !important;
        transition:all 500ms ease;
        -moz-transition:all 500ms ease;
        -webkit-transition:all 500ms ease;
        -ms-transition:all 500ms ease;
        -o-transition:all 500ms ease;
}


/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: rgba(255, 255, 255, .1) !important;
  height: 55px;
  line-height: 37px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 25px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 25px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #007338;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.newsblog {
    float: left;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 45px;
}
.blog-sec {
    float: left;
    width: 100%;
}
.blog-sec img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}
.date-list {
    float: left;
    background: #007338;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    height: 37px;
    width: 135px;
    border-radius: 5px;
    line-height: 35px;
    position: relative;
    top: -23px;
    left: 15px;
    /* -webkit-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75); */
    -moz-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    /* box-shadow: 2px 12px 40px -22px rgb(0, 0, 0); */
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.32);
    line-height: 37px;
}
.news-edit {
    margin-bottom: 40px;
    padding: 28px 14px;
    background-color: #ffffff;
    /* border: 1px solid #DFDFDF; */
    webkit-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    box-shadow: 2px 12px 40px -22px rgba(0, 0, 0, 0.16);
}
.news-edit h4 {
    font-size: 18px;
    float: left;
    width: 100%;
    font-weight: bold;
}
.news-edit p {
    line-height: 30px;
    font-size: 14px;
}
.nav-blog {
    float: left;
    border-bottom: solid 3px #007338;
    font-size: 13px;
    color: #007338;
    width: 95px;
    height: 30px;
    text-align: center;
    font-weight: 700;
    /* margin-top: 20px; */
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.date {
    /* margin-top: -540px; */
    /* margin-bottom: 480px; */
    width: 174px;
    padding: 15px 27px;
    /* height: 0px; */
    background-color: #009140;
    border-radius: 6px;
    float: left;
    background: #009140;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    height: 37px;
    width: 140px;
    border-radius: 5px;
    line-height: 12px;
    position: relative;
    top: 23px;
    left: 15px;
    /* -webkit-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75); */
    -moz-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    /* box-shadow: 2px 12px 40px -22px rgb(0, 0, 0); */
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.32);
}
.blog-sec img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}
.news-edit {
    margin-bottom: 40px;
    padding: 28px 14px;
    background-color: #ffffff;
    /* border: 1px solid #DFDFDF; */
    webkit-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    box-shadow: 2px 12px 40px -22px rgba(0, 0, 0, 0.16);
}
.news-edit h4 {
    font-size: 18px;
    float: left;
    width: 100%;
    font-weight: bold;
}
.news-edit p {
    line-height: 30px;
    font-size: 14px;
}
.blog-content {
    width: 100%;
    /* height: 70px; */
    /* margin-top: -30px; */
    background-color: #009140;
    padding: 10px;
}
.blog-content h3 {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 6px;
}
.blog-content1 {
    width: 100%;
    height: 200px;
    border: 1px solid #DFDFDF;
    background-color: #ffffff;
    padding: 10px;
    float: left;
    width: 100%;
    -webkit-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 12px 40px -22px rgba(0,0,0,0.75);
    box-shadow: 2px 12px 40px -22px rgba(0, 0, 0, 0.42);
}
.blog-content1 img {
    float: left;
    height: 70px;
    margin-top: 5px;
    padding-left: 15px;
}
.blog-content1 h3 {
    margin-top: 5px;
    font-size: 15px;
    float: left;
    color: #000;
    margin-left: 15px;
}
.date-edit {
    font-size: 14px;
    color: #009140;
    line-height: 25px;
}
.nav-blog:hover {
  border-bottom: solid 3px #1f1f1f;
    color: #1f1f1e;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}