* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: roboto;
}

:root {
  --main: #219bf1;
  --primary: #676a79;
  --sec: #ca416e;
  --para: #7a7e93;
  --bg: #f2fafb;
  --bg2: #fde3e3;
  --rbg: linear-gradient(180deg, #f2fafb, #fde3e3);
}

:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: El Messiri;
}

a {
  text-decoration: none;
  color: var(--primary);
}

h6,
p {
  font-family: Roboto;
  color: var(--para);
}

.margin {
  margin: 6rem 0 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.line {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 4rem 0;
}

.line:after {
  content: '..............................................................................................................';
  color: var(--sec);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 15px;
  display: table;
  clear: both;
  width: 100%;
}

.button {
  font-size: 14px;
  padding: 0.8rem 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  border: 1px solid var(--main);
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  background: #ffffff;
  color: #ffffff;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
}

.button:hover {
  -webkit-box-shadow: 0 0 0 0em var(--main) inset;
          box-shadow: 0 0 0 0em var(--main) inset;
  background-color: transparent;
  color: var(--main);
}

.title {
  text-align: center;
}

.title h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--main);
}

.title p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary);
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/******* header-start *******/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header hr {
  margin: 0.5rem 0;
}

.header .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--primary);
}

.header .top .time #hour {
  font-weight: 700;
}

.header .top p {
  text-transform: uppercase;
}

.header .top p span {
  margin: 0 2px;
}

.header .nav .logo {
  display: none;
}

.header .sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--bg2);
  padding: 0 2rem;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .sticky .social-icons {
  line-height: 80px;
}

.header .sticky ul li {
  line-height: 80px;
}

.header .sticky ul li:hover > ul {
  top: 80px;
  opacity: 1;
  visibility: visible;
}

.header .sticky ul li ul li {
  line-height: 50px;
}

.header .sticky .logos {
  display: block;
}

.header .sticky .logos a {
  margin: 0;
  padding: 0;
}

.header .sticky .logos a .logo {
  display: block;
  margin: 1rem;
}

.header .sticky .icon {
  z-index: 11;
}

.header .sticky .icon i {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0.4rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.header nav .social-icons {
  color: var(--primary);
  line-height: 50px;
  text-decoration: none;
  font-size: 18px;
  padding: 0 12px;
}

.header nav .social-icons a {
  margin-left: 3rem;
}

.header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.header nav ul .logos {
  display: none;
}

.header nav ul li {
  text-align: left;
  float: left;
  display: inline-block;
  margin: 0 5px;
}

.header nav ul li:hover > ul {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.header nav ul li a {
  color: var(--primary);
  line-height: 50px;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 12px;
}

.header nav ul li a:hover {
  color: var(--main);
}

.header nav ul ul {
  position: absolute;
  top: 90px;
  border-top: 3px solid var(--main);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  background: rgba(254, 228, 229, 0.9);
}

.header nav ul ul li {
  position: relative;
  margin: 0px;
  width: 250px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.header nav ul ul li a {
  line-height: 50px;
  color: var(--primary);
}

.header nav ul ul li a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header .show,
.header .icon,
.header input {
  display: none;
}

.header .fa-plus {
  font-size: 15px;
  margin-left: 40px;
}

@media all and (max-width: 858px) {
  .header hr {
    display: none;
  }
  .header .top {
    display: none;
    margin: 0;
  }
  .header .nav {
    width: 100%;
    background: var(--bg2) !important;
    padding-top: 1rem;
  }
  .header .nav .logo {
    display: block;
    line-height: 10px;
  }
  .header .nav nav .social-icons {
    display: none;
  }
  .header nav ul {
    margin-right: 0px;
    float: left;
  }
  .header .show + a,
  .header ul {
    display: none;
  }
  .header nav ul li,
  .header nav ul ul li {
    display: block;
    width: 100%;
  }
  .header nav ul li a:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .show {
    display: block;
    color: #000;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .header .show:hover {
    color: var(--main);
  }
  .header .icon {
    display: block;
    color: #000;
    position: absolute;
    top: 0;
    right: 100px;
    line-height: 60px;
    cursor: pointer;
    font-size: 25px;
  }
  .header nav ul ul {
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .header nav ul ul a {
    padding-left: 40px;
  }
  .header nav ul ul ul a {
    padding-left: 80px;
  }
  .header nav ul ul ul li {
    position: static;
  }
  .header [id^='btn']:checked + ul {
    display: block;
  }
  .header nav ul ul li {
    border-bottom: 0px;
  }
  .header span.cancel:before {
    content: '\f00d';
  }
}

/******* header-end *******/
/******* slider-start *******/
.slider .swiper-container {
  width: 100%;
  height: 100%;
}

.slider .swiper-slide {
  position: relative;
  height: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider .swiper-slide .content {
  text-align: left;
}

.slider .swiper-slide .content p {
  width: 65%;
}

.slider .swiper-slide .content h1 {
  line-height: 50px;
  font-size: 60px;
  color: var(--main);
  margin: 1rem 0;
}

.slider .swiper-slide .content h4 {
  margin: 1rem 0 2rem;
}

.slider .swiper-slide .footer-img {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
}

/******* slider-end *******/
/******* sign-end *******/
.sign {
  text-align: center;
}

.sign .swiper-container {
  margin-top: 4rem;
  width: 100%;
}

.sign .swiper-container .swiper-button-next,
.sign .swiper-container .swiper-button-prev {
  color: var(--main);
}

.sign img {
  width: 100%;
}

/******* sign-end *******/
.bg-color {
  padding: 4rem 0;
}

.inner-color {
  background: var(--bg2);
  padding-bottom: 4rem;
}

.inner-color .bg-color-img img {
  width: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/******* calendar-start *******/
.calendar .box {
  padding: 4rem 2rem;
  background: var(--rbg);
  margin: 2rem 0;
  -webkit-box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.15);
}

.calendar .box h2 {
  color: var(--main);
}

.calendar .box ul {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.calendar .box ul li {
  line-height: 2rem;
  color: var(--primary);
}

.calendar .box .button {
  padding: 0.6rem 3rem;
}

/******* calendar-end *******/
/******* healing-start *******/
.healing .title {
  margin-bottom: 2rem;
}

.healing .img .swiper-container {
  width: 100%;
  height: 100%;
}

.healing .img .swiper-container .swiper-slide .img-bg {
  height: 400px;
}

.healing .info .swiper-container {
  width: 100%;
  height: 300px;
}

.healing .info .swiper-container h2 {
  color: var(--main);
}

.healing .info .swiper-container p {
  margin: 0 0 3rem;
}

/******* healing-end *******/
/******* service-start *******/
.service .item {
  margin: 1rem 0;
}

.service .item .img-bg {
  position: relative;
  height: 500px;
}

.service .item .img-bg .img-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.service .item .img-bg .img-footer h3 {
  color: var(--main);
}

.service .item .img-bg .img-footer h5 {
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service .item .img-bg .img-footer h5:hover {
  color: var(--sec);
}

.service .item .img-bg .img-footer p {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  overflow-y: hidden;
  font-size: 15px;
  font-weight: 200;
}

.service .item .img-bg:hover p {
  opacity: 1;
  height: 50px;
}

/******* service-end *******/
/******* about-start *******/
.about .about-us {
  margin: 4rem 0;
}

.about .about-us .img-bg {
  height: 600px;
  margin-bottom: 2rem;
}

.about .about-us h3 {
  color: var(--main);
  font-weight: 500;
  font-size: 36px;
}

.about .about-us h6 {
  color: var(--main);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.about .about-us h6 i {
  margin-right: 10px;
  color: var(--primary);
}

.about .about-us .icons {
  margin: 2rem 0;
}

.about .about-us p {
  text-align: justify;
  margin-bottom: 2rem;
}

/******* about-end *******/
/******* get-in-touch-start *******/
.get-in-touch {
  margin-bottom: 6rem;
}

.get-in-touch .box {
  margin: 1rem 0;
  padding: 3rem 2rem;
  background: var(--bg2);
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.get-in-touch .box h2 {
  color: var(--main);
}

.get-in-touch .box form input {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(33, 155, 241, 0.4);
  outline: none;
}

.get-in-touch .box form input:focus {
  border: 1px solid var(--main);
}

.get-in-touch .box form .fname {
  float: left;
  width: 47%;
}

.get-in-touch .box form .lname {
  float: right;
  width: 47%;
}

.get-in-touch .box form textarea {
  padding: 1rem;
  width: 100%;
  margin: 1rem 0 2rem;
  border: 1px solid rgba(33, 155, 241, 0.5);
  outline: none;
}

.get-in-touch .box form textarea:focus {
  border: 1px solid var(--main);
}

.get-in-touch .spin {
  overflow: hidden;
}

.get-in-touch .spin img {
  width: 100%;
  -webkit-animation: rotating 10s linear infinite;
          animation: rotating 10s linear infinite;
}

.get-in-touch .spin img:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/******* get-in-touch-end *******/
/******* client-start *******/
.client {
  text-align: center;
}

.client .swiper-container {
  margin: 2rem 0;
  width: 100%;
  height: 100%;
}

.client .img-bg {
  height: 150px;
  width: 150px;
  border-radius: 50%;
}

.client p {
  width: 70%;
  margin: 2rem 0;
}

/******* client-end *******/
/******* inbox-start *******/
.inbox {
  background-color: var(--bg);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.inbox:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.inbox .box {
  text-align: center;
  padding: 3rem 0;
}

.inbox .box h2 {
  color: var(--main);
}

.inbox .box form {
  margin: 2rem 0;
}

.inbox .box form input {
  width: 100%;
  padding: 1rem;
  margin-right: 1rem;
  border: 1px solid rgba(33, 155, 241, 0.4);
  outline: none;
}

.inbox .box form input:focus {
  border: 1px solid var(--main);
}

.inbox .box form .button {
  margin: 0;
  padding: 1rem 2rem;
}

/******* inbox-end *******/
/******* plan-start *******/
.plan .box {
  text-align: center;
  background: #0c1023;
  padding: 4rem 0;
  margin: 1rem 0;
  -webkit-box-shadow: 0px 19px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 19px 20px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.plan .box:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.plan .box i {
  color: #fff;
  font-size: 90px;
}

.plan .box h2 {
  margin: 1rem 0 0;
  color: var(--main);
  font-size: 42px;
}

.plan .box h6 {
  margin: 0 0 1rem 0;
}

.plan .box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--para);
}

.plan .box ul li {
  line-height: 2rem;
}

.plan .box h1 {
  position: relative;
  font-size: 90px;
  color: var(--main);
  margin: 1rem 0;
}

.plan .box h1 sub {
  position: absolute;
  bottom: 30px;
  line-height: 1rem;
  text-align: left;
  font-size: 16px;
  color: var(--para);
}

.plan .box h1 sup {
  position: absolute;
  line-height: 1rem;
  top: 32px;
  margin-left: -20px;
  font-size: 40px;
  color: #fff;
  font-family: El Messiri;
}

.plan .mid {
  background: var(--main);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.plan .mid h2 {
  color: #fff;
}

.plan .mid h6 {
  color: #fff;
}

.plan .mid ul li {
  color: var(--primary);
}

.plan .mid h1 {
  color: #fff;
}

.plan .mid h1 sup {
  color: #0c1023;
}

.plan .mid h1 sub {
  color: #0c1023;
}

.plan .mid .button {
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  background: #ffffff;
  color: #ffffff;
}

.plan .mid .button:hover {
  -webkit-box-shadow: 0 0 0 0em var(--main) inset;
          box-shadow: 0 0 0 0em var(--main) inset;
  background-color: #ffffff;
  color: var(--main);
}

/******* plan-end *******/
/******* footer-start *******/
.footer {
  background: var(--rbg);
  padding: 2rem 0 4rem 0;
}

.footer footer {
  margin: 2rem 0;
}

.footer footer .col-lg-3 {
  margin-top: 2rem;
}

.footer footer .logo p {
  text-align: justify;
}

.footer footer .logo a {
  color: var(--main);
  font-weight: 500;
}

.footer footer .logo .read-more {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer footer .logo .read-more:hover i {
  margin-left: 13px;
}

.footer footer .logo .read-more i {
  margin: 6px 0 0 7px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.footer footer h6 {
  color: var(--main);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--para);
}

.footer footer ul li {
  line-height: 2rem;
  text-transform: uppercase;
}

.footer footer ul li i {
  margin-right: 5px;
}

.footer footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer footer .social-links .icons {
  height: 60px;
  width: 60px;
  font-size: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--main);
  color: var(--main);
  -webkit-box-shadow: 0 0 0 0em var(--main) inset;
          box-shadow: 0 0 0 0em var(--main) inset;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
}

.footer footer .social-links .icons:hover {
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  color: #ffffff;
}

.footer .copy-right {
  color: var(--para);
  text-align: center;
}

/******* footer-end *******/
.page-bg {
  position: relative;
  background-image: url(../images/page-bg.jpg);
  height: 600px;
}

.page-bg .page-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.page-bg .page-name h1 {
  margin-top: 50px;
  font-size: 90px;
  color: var(--main);
}

.page-bg img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/******* services-page-start *******/
.services-page .box {
  margin-top: 1rem;
  padding: 2rem 4rem;
  border: 0.7px solid #000;
}

.services-page .box h1 {
  padding: 1rem 0 2rem 0;
  color: var(--main);
}

.services-page .box ul {
  list-style: none;
  padding: 0;
}

.services-page .box ul li:nth-child(1) {
  border-top: 0.5px solid rgba(0, 0, 0, 0.2);
}

.services-page .box ul li {
  line-height: 3.5rem;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.services-page .box ul li .service-name {
  font-size: 14px;
}

.services-page .box ul li .price {
  color: var(--sec);
}

.services-page .img-bg {
  margin-top: 1rem;
  height: 700px;
}

/******* services-page-end *******/
/******* blog-page-start *******/
.blog-page .blogs .img-bg {
  height: 270px;
  margin-top: 1rem;
}

.blog-page .blogs .info {
  margin-top: 1rem;
}

.blog-page .blogs .info p {
  margin-top: 1rem;
}

.blog-page .blogs .info h6 {
  font-size: 12px;
  color: #000;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin: 1rem 0 3rem;
}

.blog-page .blog-list .col-4 {
  background-color: var(--bg);
}

.blog-page .blog-list .flex-center {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  padding: 0 0.3rem;
}

.blog-page .blog-list h6 {
  font-size: 14px;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-page .blog-list .img-bg {
  height: 80px;
  margin: 1rem 0;
}

/******* blog-page-end *******/
/******* gallery-page-start *******/
.gallery-page .gallery ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.gallery-page .gallery ul li {
  margin: 0 0.5rem;
  font-size: 14px;
  padding: 0.5rem 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  border: 1px solid var(--main);
  -webkit-box-shadow: 0 0 0 0em var(--main) inset;
          box-shadow: 0 0 0 0em var(--main) inset;
  background: #ffffff;
  color: var(--main);
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  cursor: pointer;
}

.gallery-page .gallery ul li:hover {
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  background-color: transparent;
  color: #ffffff;
}

.gallery-page .gallery ul li.on {
  border: 1px solid var(--main);
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  background: #ffffff;
  color: #ffffff;
}

.gallery-page .gallery .images-list .box {
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-page .gallery .images-list .img-bg {
  position: relative;
  height: 300px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gallery-page .gallery .images-list .img-bg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery-page .gallery .images-list .img-bg:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.gallery-page .gallery .images-list .img-bg:hover .icons i {
  -webkit-animation: icon 0.8s;
          animation: icon 0.8s;
  opacity: 1;
  top: 47%;
}

@-webkit-keyframes icon {
  0% {
    opacity: 0;
    top: 20%;
  }
  40% {
    top: 55%;
    opacity: 1;
  }
  100% {
    top: 47%;
    opacity: 1;
  }
}

@keyframes icon {
  0% {
    opacity: 0;
    top: 20%;
  }
  40% {
    top: 55%;
    opacity: 1;
  }
  100% {
    top: 47%;
    opacity: 1;
  }
}

.gallery-page .gallery .images-list .img-bg:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gallery-page .gallery .images-list .img-bg .icons i {
  position: absolute;
  top: 20%;
  left: 47%;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.gallery-page .gallery .images-list .img-bg .icons i:hover {
  -webkit-transform: rotate(360deg) translateZ(0);
          transform: rotate(360deg) translateZ(0);
  font-size: 30px;
  color: var(--main);
}

/******* gallery-page-end *******/
/******* contact-page-start *******/
.contact-page .map {
  width: 100%;
  height: 380px;
}

.contact-page .map iframe {
  height: 100%;
  width: 100%;
}

.contact-page .details h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  letter-spacing: 1.5px;
}

.contact-page .details h1 {
  color: var(--main);
  margin: 1rem 0;
}

.contact-page .details p {
  text-align: justify;
  margin: 1.5rem 0;
}

.contact-page .details ul {
  list-style: none;
  padding: 0;
}

.contact-page .details ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2rem;
  font-weight: 300;
  font-size: 14px;
  color: var(--sec);
  letter-spacing: 1.5px;
}

.contact-page .details ul li i {
  margin-right: 1rem;
  color: #000;
  font-size: 16px;
}

.contact-page .details ul li i.fa-phone {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-page .get-in-touch {
  margin: 0;
}

.contact-page .get-in-touch .box {
  background-color: var(--bg);
}

.contact-page .get-in-touch .box input {
  border: none;
}

.contact-page .get-in-touch .box textarea {
  border: none;
  height: 200px;
}

/******* contact-page-end *******/
/******* about-page-start *******/
.about-page .about-us h3 {
  margin-top: 1rem;
  color: var(--main);
  font-size: 40px;
}

.about-page .about-us .astro-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}

.about-page .about-us .astro-services .kundali {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-page .about-us .astro-services .kundali .icon {
  margin: 0 5px 0 0;
  color: var(--sec);
}

.about-page .about-us .astro-services .vastu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-page .about-us .astro-services .vastu .icon {
  margin: 0 5px 0 20px;
  color: var(--sec);
}

.about-page .about-us .astro-services .healing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-page .about-us .astro-services .healing .icon {
  margin: 0 5px 0 20px;
  color: var(--sec);
}

.about-page .about-us p {
  text-align: justify;
}

.about-page .about-us .social-links {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-page .about-us .social-links .icons {
  height: 45px;
  width: 45px;
  font-size: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--main);
  color: var(--main);
  -webkit-box-shadow: 0 0 0 0em var(--main) inset;
          box-shadow: 0 0 0 0em var(--main) inset;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  margin-right: 1rem;
}

.about-page .about-us .social-links .icons:hover {
  -webkit-box-shadow: 0 0 0 3em var(--main) inset;
          box-shadow: 0 0 0 3em var(--main) inset;
  color: #ffffff;
}

.about-page .about-us .about-gurujee {
  margin-top: 2rem;
}

.about-page .about-us .box {
  overflow: hidden;
}

.about-page .about-us .img-bg {
  margin-top: 1rem;
  height: 600px;
}

.about-page .about-us .img-bg:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transition: -webkit-transform 8s cubic-bezier(0.95, 0.95, 0.95, 0.95);
  transition: -webkit-transform 8s cubic-bezier(0.95, 0.95, 0.95, 0.95);
  transition: transform 8s cubic-bezier(0.95, 0.95, 0.95, 0.95);
  transition: transform 8s cubic-bezier(0.95, 0.95, 0.95, 0.95), -webkit-transform 8s cubic-bezier(0.95, 0.95, 0.95, 0.95);
}

/******* about-page-end *******/
/******* client-page-start *******/
.client-page .client-list .col-lg-3 {
  background-color: var(--bg);
}

.client-page .client-list .flex-center {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  padding: 0 0.3rem;
}

.client-page .client-list .img-bg {
  height: 250px;
  margin: 1rem 0;
}

.client-page .client-list h4 {
  font-size: 30px;
}

.client-page .client-list p {
  margin: 1rem 0;
  text-align: justify;
}

/******* client-page-end *******/
.appo-bg {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  width: 100%;
  display: none;
}

.appoinment {
  position: fixed;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 2rem;
  width: 50%;
  margin: 0 auto;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.appoinment.appo-show {
  top: 50%;
  opacity: 1;
  z-index: 10;
}

.appoinment .box {
  position: relative;
}

.appoinment .box .appo-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  border: 1px solid #000;
  text-align: center;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.appoinment .box .appo-close .cross {
  line-height: 0;
}

.appoinment .group {
  position: relative;
  margin: 45px 0;
}

.appoinment .group .form-input {
  background: none;
  background-color: white;
  color: grey;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid grey;
  margin: 25px 0;
}

.appoinment .group .form-input:focus {
  outline: none;
}

.appoinment .group .form-input:focus ~ .form-input-label {
  top: -14px;
  font-size: 12px;
  color: black;
}

.appoinment .group input[type='password'] {
  letter-spacing: 0.3em;
}

.appoinment .group .form-input-label {
  color: grey;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}

.appoinment .group .form-input-label.shrink {
  top: -14px;
  font-size: 12px;
  color: black;
}

.mantra h1 {
  margin-bottom: 2rem;
}

.mantra .item {
  margin: 1rem 0;
}

.mantra .item .img-bg {
  position: relative;
  height: 500px;
}

.mantra .item .img-bg .img-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.mantra .item .img-bg .img-footer h3 {
  color: var(--main);
  font-size: 24px;
}

.mantra .item .img-bg .img-footer h5 {
  font-size: 16px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mantra .item .img-bg .img-footer h5:hover {
  color: var(--sec);
}

.mantra .item .img-bg .img-footer ul {
  opacity: 0;
  height: 0;
  margin: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  overflow-y: hidden;
  font-size: 15px;
  font-weight: 200;
  list-style: decimal;
}

.mantra .item .img-bg .img-footer ul li {
  color: var(--bg);
}

.mantra .item .img-bg:hover ul {
  opacity: 1;
  height: 70px;
}

.mantra-details-page .title {
  margin-bottom: 3rem;
}

.mantra-details-page .img-bg {
  height: 500px;
}

.mantra-details-page .group p {
  margin: 5px 0;
  width: 80%;
  text-align: justify;
}
/*# sourceMappingURL=styles.css.map */