/* ===================================
    Table of Content
====================================== */

/*  
    - Google Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Banner
    - About Section
    - Reviews Section
   
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

/* ===================================
    Scrollbar
====================================== */


::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
width: 12px;
border-left: 0 solid white;
border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
background:linear-gradient(30deg, #f5bba7  40%, #ff7b88 60%);
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}


/* ===================================
    General
====================================== */


body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}


/*Headings*/

.heading {
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px; 
  font-family: 'Montserrat', sans-serif; 
}

.subheading { 
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
}

/*Social Icons*/

.social-icons ul {
  margin-bottom: 0px;
}

.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #2a2a2a;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons hover*/
.hover:hover {color: #a251a4 !important; transition: all 0.5s ease; background-color: #fff;}
.hovr:hover {color: #fff !important; transition: all 0.5s ease; background-color: #ff7b88;}
/*Social icons background hover*/

/*.facebook-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #C13584;}
.gmail-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #D44638;}*/



/*Button*/

.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #000;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 12px !important;
  font-weight: 600;
  color: #000;
  padding: 9px 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Montserrat', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.pink-btn {
  background: #ff7b88;
  border-color: #ff7b88;
  color: #fff;
}

.btn.white-btn {
  background: #fff;
  border-color: #fff;
  color: #000;
}


/*Button hover*/

.btn.btn-hvr-purple:hover {
  background-color: #a251a4;
  border-color: #a251a4;
  color: #fff;
}

.btn.btn-hvr-pink:hover {
  background-color: #ff7b88;
  border-color: #ff7b88;
  color: #fff;
}

.btn.btn-hvr-black:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}


/* ===================================
   Loader
====================================== */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 111111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.loader-spinner {
  width: 75px;
  height: 75px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #ff7b88;
  border-right: 4px solid transparent;
  border-radius: 50%;
  animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ===================================
    Navbar
====================================== */


/* nav top default */
.navbar.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 90px;
  width: 100%;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
  background-color: transparent;
}


.header-appear .navbar-top-default {
    height: 90px;
    position: fixed;
    z-index: 999;
    background-image: -webkit-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

@keyframes animationFade {
    from { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0);
    }
    to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; }
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  padding: 6px 6px;
  margin-left: 45px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-nav .nav-link.active {
  color: #fff;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #fff;
  cursor: pointer;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fff;
}

.navbar .navbar-nav .button {
  margin-left: 30px;
}

/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 25px;
  top: 20px;
  z-index: 999;
  margin-top: 0px;
  margin-left: 40px;
  cursor: pointer;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: #fff;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}


/* ===================================
    Side Menu
====================================== */

.side-menu {
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 9999;
    background-image: -webkit-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(7,63,95,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(7,63,95,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(7,63,95,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(18,48,37,1.00) 20.00%,rgba(7,63,95,1.00) 100.00%);
    transform: translate3d(100%, 0, 0);
    transition: transform .5s ease;
    position: fixed;
    overflow: hidden;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}


/*Side overlay*/

#close_side_menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1031;
  opacity: 0.7;
  background-color: #011321;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*side menu image*/

.sidemenu-image {
  position: absolute;
  top: 45px;
}


/*side menu close btn*/

.side-menu .btn-close {
  height: 33px;
  width: 33px;
  top: 30px;
  right: 25px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  display: inline-block;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  top: 5px;
  left: 16px;
  height: 24px;
  width: 2px;
  content: ' ';
  background: #fff;
  position: absolute;
}

.side-menu .btn-close:before {
  transform: rotate(45deg);
}

.side-menu .btn-close:after {
  transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
  transform: scale(0.9);
  overflow: hidden;
  transition: all .5s ease;
}


/*side menu inner-wrapper*/

.side-menu .inner-wrapper {
  height: 100%;
  padding: 4.5rem 3rem;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
  margin-bottom: 0px;
  margin-top: 35px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
 font-family: 'Montserrat', sans-serif;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}


/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer .text {
  color: #fff;
  font-size: 14px;
}
.side-menu-footer .social-icons ul li a{
  color: #fff;
}


/* ===================================
    Banner 
====================================== */
.banner{
    background-image: -webkit-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-size: cover;
    height: auto;
    padding-top: 4rem;
    padding-bottom: 8px;
    position: relative;
}
.banner .text-col ul{
  padding-left: 0;
}
.banner .text-col ul li{
  list-style: none;
  display: inline-block;
  color: #fff;
}
.banner .text-col{
  position: absolute;
  bottom: 9.5rem;
}
.banner .text-col .heading{
  font-size: 72px;
  padding-right: 5rem;
}
.banner .text-col .text{
 padding-right: 12rem;
}
.banner .img-section {
  display: flex;
  justify-content: center;
  width: 100%;

}
/*Video icon*/
.banner .media i {
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  height: 30px;
  line-height: 28px;
  width: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 10px;
  padding-left: 2px;
  transition: .5s ease;
}
.banner .media .media-body{
  margin-left: 10px;
  color: #fff;
}
.banner .media:hover i{
  color:#fff; 
  border: 1px solid #000;
  background-color: #000;
  transition: .5s ease;
}
.banner .media:hover{
  cursor: pointer;
  transition: .5s ease;
}
.banner .media{
  width: 160px;
  height: 50px;
  padding:10px 12px 10px 5px;
  background-color: transparent;
}
/* ===================================
     about section
====================================== */

.about-section {
    padding-top: 150px;
    padding-bottom: 120px;
    position: relative;
}
.about-section .yoga-services .service .heading{
  transition: all .5s ease;
}
/*Row-1*/
.about-section .row-1{
  margin-bottom: 50px;
}
.about-section .heading-col .subheading{
    color: #04C77F;
}
.about-section .heading-col .heading{
    color: #043426;
}
/*Row-2*/
.about-section .row-2 .img-col {
  position: absolute;
}

/*Row-3*/
.about-section .row-3{
  position: relative;
  margin-top: 40px;
}
.about-section .yoga-services .service .heading{
  color: #000;
}
.about-section .yoga-services .service .subheading{
  color: #000;
}
.about-section .yoga-services .service .text{
 color: #212121;
 font-size: 15px;
}

/*Row-4*/
.about-section .row-4 .service {
  margin-top: 20rem;
}

/*Hover*/
.about-section .yoga-services .service:hover{
  cursor: pointer;
}
.about-section .yoga-services .service:hover .heading{
    color: #055538;
    transform: translateY(-10px);
    transition: all .5s ease;
}


/* ===================================
    Reviews Section
====================================== */
.reviews-section{
    padding-top: 100px;
    padding-bottom: 80px;
    background-image: -webkit-linear-gradient(0deg,rgba(103,175,198,1.00) 30%,rgba(4,92,154,1.00) 70%);
    background-image: -moz-linear-gradient(0deg,rgba(103,175,198,1.00) 30%,rgba(4,92,154,1.00) 70%);
    background-image: -o-linear-gradient(0deg,rgba(103,175,198,1.00) 30%,rgba(4,92,154,1.00) 70%);
    background-image: linear-gradient(90deg,rgba(103,175,198,1.00) 30.00%,rgba(4,92,154,1.00) 70%);
}

.reviews-section .reviews-carousel .item .subheading{
  font-size: 20px;
}

.reviews-section .reviews-carousel .item .text.text-1 {
  text-align: center;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 80px;
  font-size: 20px ;
  padding-left: 200px;
  padding-right: 200px;
}
.reviews-section .reviews-carousel .item .text.name{
  font-size: 18px;
  margin-bottom: 10px;
}
.reviews-section .reviews-carousel .item .star-icons{
  padding-left: 0;
  margin-bottom: 0;
}
.reviews-section .reviews-carousel .item .star-icons li{
  list-style: none;
  display: inline-block;
}
.reviews-section .reviews-carousel .item .star-icons li i{
  color: #fff83c;
}
.reviews-section .carousel-section .icons  i {
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  height: 30px;
  line-height: 30px;
  width: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 12px;
  transition: .5s ease;
}
.reviews-section .carousel-section{
  position: relative;
}
.reviews-section .carousel-section .icons {
  position: absolute;
   top: 40%;
  z-index: 11;
}
.reviews-section  .icons .left-customPrevBtn{
  position: absolute;
}
.reviews-section .icons .right-customNextBtn{
  position: absolute;
  left: 67.2rem;
}
/* ===================================
    Portfolio-Section
====================================== */
.portfolio-section{
  padding-top: 150px;
  padding-bottom: 150px;
}

.portfolio-section .section-heading .heading{
  margin-bottom: 0;
  color: #262626;
}
.cbp-wrapper-outer {
    overflow: visible;
}

.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link {
  padding: 12px 32px;
}
.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link,
.cbp-l-loadMore-button .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-link:focus,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:focus{
  color: #fff;
}

.cbp-l-filters-button .cbp-filter-item.cbp-filter-item {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-right: 25px;
  margin-left: 25px;
  font-family: 'Montserrat', sans-serif; 
  border-bottom: solid 3px transparent ;
}
.cbp-l-filters-button .cbp-filter-item.cbp-filter-item:hover{
  color: #000;
  border-bottom: solid 3px transparent;
}
.cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  color: #000;
  background: transparent;
  border-bottom: solid 3px #FF7B88;

}
.cbp-l-filters-button .cbp-filter-item,
.cbp-item.even{
  transition: 300ms all ease;
}
.cbp-item.even {
  margin-top: -190px;
}
.cbp-l-grid-mosaic .cbp-caption-activeWrap {
  background: rgba(255,123,136, 0.8);

}
.cbp-l-caption-title {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}
.portfolio-detail-text {
  color: #fff;
  font-style: italic;
}
.portfolio-hover-effect .hover-text{
  padding-left: 3%;
  padding-bottom: 2%;
}
.portfolio-hover-effect .portfolio-inner-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.portfolio-hover-effect .portfolio-inner-content span{
  background-color: #fff;
  height: 3px;
  width: 70px;
  display: block;
}
.portfolio-hover-effect .portfolio-inner-content span:nth-child(2){
  transform: rotate(90deg);
}
.portfolio-hover-effect .hover-text .p-hover-title{
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}
.portfolio-hover-effect .hover-text .p-hover-des{
  font-size: 12px;
  color: #fff;
}
#js-loadMore-lightbox-gallery {
  margin-top: 45px;
}
#js-loadMore-lightbox-gallery.active {
  margin-top: -150px;
  position: relative;
}
#js-loadMore-lightbox-gallery.active-outer {
  margin-top: -250px;
}
.cbp-caption-active .cbp-caption-activeWrap {
  width: 94%;
  position: absolute;
  z-index: 2;
  height: 94%;
}
.cbp-caption-active .cbp-caption-activeWrap:hover .text-data{
  z-index: -1 !important;
}

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 3%;
  left: 3%;
}

.portfolio-foot-detail{
  padding-bottom: 3%;
}
.portfolio-foot-detail .p-text{
  color: #202020;
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
  margin-bottom: 0px;
}
.portfolio-foot-detail .p-text:last-child{
  margin-bottom: 0;
}
.portfolio-foot-detail .p-num{
  font-size: 75px;
  margin-bottom: 0;
  color: #FF7B88;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.portfolio-section .portfolio-btn .btn.button{
  padding: 7px 33px !important;
  text-transform: uppercase;
}
/* ===================================
     Blog Section
====================================== */
.blog-section{
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: -webkit-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -moz-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: -o-linear-gradient(0deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100%);
    background-image: linear-gradient(90deg,rgba(18,48,37,1.00) 20%,rgba(33,95,46,1.00) 100.00%);
}
/*Row-1*/
.blog-section .row-1 .section-heading{
 margin-bottom: 60px;
}
.blog-section .row-1 .section-heading .heading{
  padding-left: 200px;
  padding-right: 200px;
}
/*Row-2*/
.blog-section .row-2 .card{
  border:none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}
.blog-section .row-2 .card img{
  border-radius: 2px;
  transition: all .5s ease;
}
.blog-section .row-2 .card .card-body .date-text{
  font-size: 12px;
  color: #333333;
}
.blog-section .row-2 .card .card-body .heading{
    font-size: 21px;
    color: #000;
}
.blog-section .row-2 .card .card-body .text{
    font-size: 16px;
    color: #727272;
}
.blog-section .row-2 .card .card-body .name{
  padding-left: 0;
}
.blog-section .row-2 .card .card-body .name li{
    list-style: none;
    color: #000000;
    font-size: 15px;
    font-style: normal;
    display: inline-block;
}
.blog-section .row-2 .card:hover img{
  transform: scale(1.1);
  transition: all .5s ease;
}
/* ===================================
     Contact Section
====================================== */
.address-section{
  padding-top: 150px;
  padding-bottom: 150px;
}
/*Google Map*/
.address-section .mapouter {
  position: relative;
  text-align: right;
  height: 100%;
  width: 100%;
}

.address-section .gmap_canvas {
  overflow:hidden;
  background:none!important;
  height:100%;
  width:100%;
}

.address-section .map{
  filter: grayscale(100%);
}
.address-section .google-map .gm-style .place-card-large{
  display: none;
}

/*Contact Info*/
.address-section .contact-info{
  padding-top: 45px;
  padding-left: 60px;
}
.address-section .contact-info .subheading{
  font-weight: 400;
  color: #000;
}
.address-section .contact-info .heading{
  color: #000;
}
.address-section .contact-info .text {
  color: #000;
  font-size: 15px;

}

/* ===================================
   Contact-Section
====================================== */
.contact-section{
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: -webkit-linear-gradient(0deg,rgba(2,134,165,1.00) 30%,rgba(5,200,128,1.00) 70%);
    background-image: -moz-linear-gradient(0deg,rgba(2,134,165,1.00) 30%,rgba(5,200,128,1.00) 70%);
    background-image: -o-linear-gradient(0deg,rgba(2,134,165,1.00) 30%,rgba(5,200,128,1.00) 70%);
    background-image: linear-gradient(90deg,rgba(2,134,165,1.00) 30.00%,rgba(5,200,128,1.00) 70.00%);
}

.contact-section .logo-section img{
  position: relative;
  top: 110px;
}

/*Form Section*/
.contact-section .form-section {
padding-top: 60px;

}
.contact-form .form-control::placeholder {
color: #fff;
font-size: 14px;
font-weight: 300;
}
.contact-form textarea {
min-height: 110px;
resize: none;
}
.contact-section .contact-form .form-control {
border: none;
border-bottom: 1px solid #fff;
background: transparent;
font-weight: normal;
border-radius: 0;
box-shadow: none;
margin-bottom: 40px;
font-size: 16px;
transition: border .9s ease;
}
.contact-section h2{
font-size: 48px;
font-weight: 500;
}
.form-control:focus {
    color: #000000;
    box-shadow: 0 0 0 0.0rem transparent;
}
.contact-section .button {
width: 100%;
}

/* ===================================
    Footer
====================================== */

footer {
  padding-top: 100px;
  padding-bottom: 100px;
}

footer .text {
  font-size: 13px;
  color: #888888;
}

footer .social-icons {
  text-align: center;
}
/* ===================================
    StandAlone Pgae
====================================== */
.standalone-banner{
  background-image: linear-gradient(to right, #ff7b88 20%, #f5bba7 100%);
  height: 55vh;
  background-size: cover;
  display: flex;
  align-items: center; 
}

.banner-text .heading {
  font-size: 60px;
  margin-bottom: 10px;
}
.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.page-breadcrumb li i {
  color: #fff;
}

/*Main Page Start*/
.main-page{
  padding-top: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
.main-page  .heading{
  color: #000;
}
.main-page .subheading{
  color: #000;
}
.main-page .text{
  color: #000;
}
 
.main-page .standalone-heading .heading{
 font-size:50px;
 margin-bottom: 20px;
}
.main-page .row-image{
  position: relative;
}

.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.main-page .standalone-area .standalone-row{
  margin-bottom: 40px;
}
.main-page .standalone-area .standalone-row:last-child{
  margin-bottom: 0px;
}
.main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
 }  

.main-page .standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 30px;
}

/*Image Hover*/

.hover-effect::before,
.hover-effect::after {
  content: "";
  background: #ff7b88;
  height: 0;
  width: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition-duration: 1.3s !important;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s !important;
}

.hover-effect::before {
  right: 0;
  opacity: 1;
  bottom: 0;
}

.hover-effect::after {
  top: 0;
  opacity: .7;
  left: 0;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
  height: 100%;
  opacity: 0;
  width: 100%;
}
/* ===================================
     Media Queries
====================================== */
@media (min-width: 1600px){
.banner{
  padding-top: 6.5rem;
}
.banner .text-col{
  bottom:240px;
}
}
@media (max-width: 1200px){
  /*Side Menu*/
.side-menu{
  width: 50%;
}
.side-menu .side-nav{
  margin-top: 160px;
}

  /*Reviews Section*/
.reviews-section .icons .right-customNextBtn{
  left: 55.2rem;
}  
  /*Portfolio Section*/
.portfolio-section .section-heading .heading br{
  display: none;
}
.portfolio-section .section-heading .heading{
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-left: 14.5rem;
}
.portfolio-section .text-lg-left{
  text-align: center !important;
}

#js-loadMore-lightbox-gallery.active{
  margin-top: 30px;
}
.portfolio-section .portfolio-text {
  margin-left: 15px;
}
.portfolio-section .portfolio-btn {
  margin-left: 29rem;
}  
.portfolio-foot-detail{
  padding-bottom: 0;
}
.cbp-popup-next, .cbp-popup-prev, .cbp-popup-close{
  display: none;
}
.portfolio-section .portfolio-btn .btn.button{
  padding: 7px 30px !important;
}
}
@media (max-width: 992px){
  /*WOW Animation*/
.wow {
  visibility: visible !important;
  animation: none !important;
}
.heading br{
  display: none;
}
/*Side Menu*/
.side-menu{
  width: 55%;
}
.side-menu .side-nav {
    margin-top: 110px;
}
/*Banner*/
.banner{
  height: 100vh;
  padding-top: 38rem;
}
.banner .text-col{
  margin-bottom: 325px;
  text-align: center;
}
.banner .text-col .heading{
  font-size: 50px;
  padding-right: 0;
}
.banner .text-col .text{
  padding-right: 0;
}
.banner .media{
  display: block;
  text-align: center;
  width: 100%;
}
.banner .media .media-body{
  margin-left: 0;
}
.banner .text-col {
  position: relative;
  bottom: 45.5rem;
}
/*About Section*/
.about-section .row-2 .img-col{
  position: relative;
}
.about-section .row-4 .service{
  margin-top: 0;
}
/*Portfolio Section*/
.cbp-l-filters-button .cbp-filter-item.cbp-filter-item{
  font-size: 13px;
  margin-right: 5px;
  margin-left: 5px;

}
/*Portfolio Section*/
.portfolio-section .section-heading .heading{
  margin-left: 0;
}
.portfolio-section .portfolio-btn{
  margin-left: 0;
}
.portfolio-section .portfolio-text{
  margin-left: 0;
}

/*Reviews Section*/
.reviews-section .reviews-carousel .item .text.text-1{
  padding-left: 0;
  padding-right: 0;
}
.reviews-section .carousel-section .icons i{
  display: none;
}
/*Blog Section*/
.blog-section .row-1 .section-heading .heading{
  padding-left: 0;
  padding-right: 0;
}
.blog-section .row-2 .blog-col-3{
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
/*Address Section*/
.address-section{
  text-align: center;
}
.address-section .contact-info{
  padding-left: 0;
}
/*Contact Section*/
.contact-section .logo-section{
  text-align: center;
}
.contact-section .logo-section img{
  position: static;
}

/*StandAlone Page*/
.main-page .standalone-area .standalone-row{
  margin-bottom: 60px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  padding-bottom: 40px;
}
.main-page .standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
}
@media (max-width: 767px){
  /*General*/
.heading{
  font-size: 29px;
}  
/*Side Menu*/
.side-menu{
  width:100%;
}
.side-menu .side-nav {
    margin-top: 80px;
}
/*Navbar*/
.header-appear .navbar-top-default{
  height: 70px;
}

  /*Banner*/
.banner{
  padding-top: 35rem;
}
.banner .text-col{
  bottom: 36.5rem;
}
.banner .text-col .heading{
  font-size: 45px;
}  
/*About Section*/
.about-section .yoga-services .service{
  margin-top: 30px;
  margin-bottom: 30px;
}
/*Portfolio Section*/
.portfolio-section .heading{
  font-size: 32px;
}
.cbp-l-filters-button .cbp-filter-item{
  margin-right: 18px;
}
.portfolio-foot-detail .p-text{
  font-size: 10px;
}
.portfolio-section .portfolio-btn .btn.button{
  padding: 7px 28px !important;
}
/*Blog section*/
.blog-section .row-2 .blog-col-2{
  margin-top: 40px;
  margin-bottom: 40px;
}
/*StandAlone Page*/
.banner-text .heading{
  font-size: 38px;
}
.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page .text{
  font-size: 16px;
}
.main-page .standalone-area .heading{
  font-size: 30px;
}
}
@media (max-width: 370px){
  /*Banner*/
.banner{
  padding-top: 30rem;
}  
.banner .text-col {
    bottom: 33.5rem;
}

/*Portfolio Section*/
.portfolio-section .portfolio-btn .btn.button{
  padding: 7px 25px !important;
}
}
