@font-face {
  font-family: FakeSerif;
  src: url(../fonts/FakeSerif.ttf);
}
@font-face {
  font-family: Montserrat-Bold;
  src: url(../fonts/Montserrat-Bold.ttf);
}
@font-face {
  font-family: Montserrat-Medium;
  src: url(../fonts/Montserrat-Medium.ttf);
}
@font-face {
  font-family: Montserrat-Regular;
  src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: Montserrat-SemiBold;
  src: url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: aenc-b;
  src: url(../fonts/AGENCYR.TTF);
}

body {
  font-family: Montserrat-Regular;
  background-color: #f6f7fa;
}
.btn:hover {
    background: #000;
    color: #fff;
}

a {
  color: #1977cc;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ad2026;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #1c84e3;
  color: #fff;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #f2ea7d00;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #2322207d;
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0 0 65px;
  top: 0px;
  /* box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1); */
}

#header.header-scrolled {
  top: 0;
  background:#000000bd;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

 

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  justify-content: space-evenly;

}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #f6f7fa;
  transition: 0.3s;
  font-size: 30px;
  font-family: 'aenc-b';
  padding: 5px 15px;
  /* border-bottom: 2px solid #fff; */
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #d1622b;
  border-color: #962127;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1977cc;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.appointment-btn {
  margin-left: 25px;
  background-image: linear-gradient(#d1622b, #962127);
  box-shadow: none;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0px 42px 0 0;
    padding: 4px 12px;
    font-size: 12px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #b24029;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #00000023;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 600;
  outline: none;
  font-family: "aenc-b";
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e19e20;;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -200px;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }
  #hero .container {
    padding-bottom: 63px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  box-shadow: none;
  padding: 40px 30px;
  width: 100%;
  background-image:none;
}
#bgorw1 {
  background-image: linear-gradient(#d1622b, #a12e27);
  border-radius: 10px;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0px 0px 0px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}


.icon-in-out .icofont-caret-left {
    position: absolute;
    bottom: 2%;
    right: 1%;
    font-size: 24px;
    color: #d1622b;
}
.icon-in-out .icofont-caret-right {
    position: absolute;
    bottom: 2%;
    right: 1%;
    font-size: 24px;
    color: #d1622b;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-bottom: 3em;
}
.about .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1977cc;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.webp") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #1977cc;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f1f7fd;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #1977cc;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #082744;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1977cc;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #badaf7;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #2c4964;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #1977cc;
  border-color: #1977cc;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #1977cc;
}

.services .icon-box:hover .icon::before {
  background: #3291e6;
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #1977cc;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #1c84e3;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: #1977cc;
}

.departments .nav-link.active {
  color: #1977cc;
  border-color: #1977cc;
}

.departments .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}

.departments .details p {
  color: #777777;
}

.departments .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .departments .nav-link {
    border: 0;
    padding: 15px;
  }
  .departments .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
  background: #fff;
}

.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 30px;
  border-radius: 10px;
}

.doctors .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.doctors .member .pic img {
  transition: ease-in-out 0.3s;
}

.doctors .member:hover img {
  transform: scale(1.1);
}

.doctors .member .member-info {
  padding-left: 30px;
}

.doctors .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c4964;
}

.doctors .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.doctors .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.doctors .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}

.doctors .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.doctors .member .social a:hover {
  background: #1977cc;
}

.doctors .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1977cc;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 177, 236, 0.2);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #00b1ec !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
   
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #000;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  /* padding: 60px 0 30px 0; */
  background: #ad2026;;
  border-bottom: 1px solid #00b4e7; 
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0.8em;
    color: #ffffffd2;
    font-size: 15px;
    font-family: Montserrat-Regular;
}
#footer .footer-top .footer-contact p a {
    color: #ffffff;
    font-size: 15px;
}

#footer .footer-top h4 {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 13px 0;
    padding-top: 13px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 30px;
    color: #fff;
}
.fmenu-links a {     
    padding-right: 13px;
    font-size: 13px;
    line-height: 30px;
    text-transform: capitalize;
    color: #000;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
    font-size: 25px;
    display: inline-block;
    background: none;
    color: #ffffff;
    line-height: 1;
    padding: 0px 0;
    margin-right: 12px;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
}

#footer .social-links a:hover {
  /*background: #1c84e3;*/
  color: #1c84e3;
  text-decoration: none;
}



.oneness-home-banner {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/gallery/zor24.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 90vh;
  /* padding-top: 10em; */
  /* margin-bottom: -200px; */
}




.home-abt-box-1 {
  text-align: center ;
  border: 2px solid #00a5fa;
  padding: 10px;
  border-radius: 6px;
}
.home-abt-box-1 h5 {
    color: #00a5fa;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 32px;
    margin: 0px;
}
.home-abt-box-1 h5 span {
    background: linear-gradient(to bottom, #d1622b 40%, #962127 60%);
    background-clip: border-box;
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}
.home-abt-box-2 p {
    font-family: Montserrat-SemiBold;
    font-size: 17.8px;
    font-weight: 500;
    color: #282828;
    line-height: 26px;
}
.home-abt-box-2 p a {
    color: #e4b83a;
    text-transform: capitalize;
}
.home-abt-box-3 p {
    font-family: Montserrat-SemiBold;
    font-size: 16px;
    font-weight: 500;
    color: #00cbcc;
    line-height: 26px;
}
.home-abt-box-3 p span {
    color: #000;
    font-size: 17.6px;
    font-family: Montserrat-Regular;
}
.home-abt-box-4 .btn-success {
  box-shadow: none;
  color: #000;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  border-radius: 6px!important;
}
.home-abt-box-4 .btn-success:hover {
  background-image: linear-gradient(#d1622b, #962127);
}
#bgorw2 {
  border-top: 1px solid #00cccb;
}
#bgorw3 {
  border-top: 1px solid #00cccb;
  border-bottom: 1px solid #00cccb;
}
.upcoming-head {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.8em;
}
.upcoming-head span {
    color: #000;
    font-weight: normal;
}
.upcoming-btn {
    text-align: center;
}
.upcoming-btn .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: none;
    margin-top: 1.6em;
    text-transform: capitalize;
}


.border-gradient {
  border: 2px solid;
  border-image-slice: 1;
  border-width: 2px;  
}
.border-gradient-purple {
  border-image-source: linear-gradient(to top, #00cccb, #00b4fe);
  border-radius: 5px;
}
/*--------------------------------------------------------------
# About 2
--------------------------------------------------------------*/
.about1 {  
  padding: 0px;
}
.about1 .row {
  margin-left: auto;
  margin-right: auto;
}
.about1 .icon-boxes {
  background-color: #fff;
}
.about1 .icon-boxes {
  text-align: center;
}
.about1 .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 15px;
}
.about1 .icon-boxes p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 2.7em;
    word-break: break-word;
}
.welcom-btn {
    text-align: center;
}
.welcom-btn .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: none;
    margin-top: 1.6em;
    text-transform: capitalize;
}


.about1 .icon-box {
  margin-top: 40px;
}

.about1 .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about1 .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about1 .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about1 .icon-box:hover .icon i {
  color: #fff;
}

.about1 .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about1 .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about1 .icon-box .title a:hover {
  color: #1977cc;
}

.about1 .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

/* .about1 .video-box {
  background: url("../img/home-about.png") center center no-repeat;
  background-size: cover;
  background-position: bottom left;
  min-height: 700px;
  border-top-right-radius: 20px;
} */
.about1 .welcome-head {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.8em;
    line-height: 53px;
}
.about1 .welcome-head span {
    font-family: FakeSerif;
    font-size: 8rem;
    text-transform: capitalize;
    background: linear-gradient(to top, #4b1215 40%, #4b1215 60%);
        background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




.oneness-services {
    padding-bottom: 3em;
    padding-top: 3em;
}
.services-head  {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.8em;
}
.services-head span {
    color: #fff;
    font-weight: normal;
}
.oneness-services .container1 {
  position: relative;
}

.oneness-services .image {
  display: block;
  width: 100%;
  height: auto;
}

.oneness-services .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #f5f3ef;
}

.oneness-services .container1:hover .overlay {
  opacity: 1;
}

.oneness-services .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.oneness-services .text h5 {
    font-size: 15px;
    color: #000;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 0.7em;
}
.oneness-services .text p {
    font-size: 13px;
    text-align: left;
    line-height: 22px;
}
.oneness-services .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 6px 12px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 13px;
    border: none;
    font-weight: 600;
    text-transform: capitalize;
}
.services-btn {
    text-align: center;
}
.services-btn .btn-danger {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
#bgorw4 {
    /* background-color: #fff; */
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
}
.video-contents {
    padding: 10px;
}
.video-contents h4 {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0.6em;
}
.video-contents h5 {
    font-size: 16px;
    margin-bottom: 1.6em;
    font-family: 'Montserrat', sans-serif;
}
.video-contents p {
    font-size: 13px;
    text-align: left;
    line-height: 22px;
    margin-bottom: 2em;
}
.video-btn .btn-danger {
    display: block;
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    width: 150px;
    margin-top: 1.6em;
    text-transform: capitalize;
}
.video-btn i {
    font-size: 17px;
}


.video-contents1 {
    padding: 10px;
}
.video-contents1 h4 {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0.6em;
    text-align: right;
}
.video-contents1 h5 {
    font-size: 16px;
    margin-bottom: 1.6em;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
}
.video-contents1 p {
    font-size: 13px;
    text-align: right;
    line-height: 22px;
    margin-bottom: 2em;
}
.video-btn1 {
    text-align: right!important;
}
.video-btn1 .btn-danger {
    display: inline-table;
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    width: 161px;
    margin-top: 1.6em;
    text-transform: capitalize;
}
.video-btn1 i {
    font-size: 17px;
}



.home-slide1 {
    background-color: #fff ;
}
.home-slide1 .carousel-item img {
    max-width: 950px;
    height: auto;
}
.home-slide1 .carousel-caption {
    background-color: #f6f7fa;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    color: #000;
    padding: 3em;
    border-radius: 8px;
    text-align: left;
    top: 130px;
    bottom: 0;
    right: 0;
    left: 450px;
}
.home-slide1 .carousel-caption h5 {
    color: #282828;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0.6em;
    text-align: left;
}
.home-slide1 .carousel-caption p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 1.7em;
    word-break: break-word;
    text-align: left;
}
.home-slide1 .carousel-caption .btn-danger {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: none;
    margin-top: 1.6em;
    text-transform: capitalize;
}
.home-slide1 .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
    z-index: 40;
}
.home-slide1 .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
    z-index: 40;
}
.home-slide1 .carousel-control-prev i  {
    background-color: #db6e2b;
    font-size: 26px;
    padding: 5px;
    border-radius: 30px;
}
.home-slide1 .carousel-control-next i  {
    background-color: #db6e2b;
    font-size: 26px;
    padding: 5px;
    border-radius: 30px;
}
.home-slide1 .carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 7px;
    margin-left: 7px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    opacity: .5;
    transition: opacity .6s ease;
    border-radius: 100%;
    background-color: #db6e2b;
}
.home-slide1 .carousel-indicators li .active {
    background-color: #e4b83a;

}





.home-slide2 {
  background-color: #fff;
}
.home-slide2 .gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-slide2 .gtco-testimonials {
    margin-top: 20px;
  }
}
.home-slide2 .blog-head {
  color: #5c1f25;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.8em;
}
.home-slide2 .blog-head span {
  color: #000;
font-weight: normal;
}
.home-slide2 .gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.home-slide2 .gtco-testimonials .owl-nav {
  display: none;
}
.home-slide2 .gtco-testimonials .owl-dots {
  text-align: center;
}
.home-slide2 .gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01b0f8;
  margin: 0 5px;
}
.home-slide2 .gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.home-slide2 .gtco-testimonials .owl-dots .active span {
  background: #01b0f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.home-slide2 .gtco-testimonials .card {
  background: transparent;
  box-shadow: none;
  margin: 0 20px;
  padding: 0px;
  border-radius: 20px;
  border: 0;
}
.home-slide2 .owl-carousel .owl-nav button.owl-next,
.home-slide2 .owl-carousel .owl-nav button.owl-prev,
.home-slide2 .owl-carousel button.owl-dot {
  outline: 0;
}
.home-slide2 .container2 {
  position: relative;
}

.home-slide2 .image {
  display: block;
  width: 100%;
  height: auto;
}
.ul-pad{
  padding-top: 20px;
}
.home-slide2 .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .5s ease;
  background-color: transparent;
}

.home-slide2 .container2:hover .overlay {
  opacity: 1;
}

.home-slide2 .text {
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 25%;
  left: 36%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);   
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.testimonial-head {
  color: #00cccb;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.8em;
}

.home-subscribe {
  background-color: #fff;
}
.form-inline .form-control {
  width: 100%;
}
.subs-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 31px;
    font-weight: 500;
    color: #282828;
    border-bottom: 1px solid #00b3e8;
    display: inline-block;
    padding-bottom: 5px;
}
.subs-content h5 {
    text-transform: capitalize;
    font-weight: normal;
    font-family: Montserrat-Regular;
}
.subs-form .btn-primary {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
    border: none;
    margin-bottom: 5px;
}
.subs-form .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 9px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ced4da54;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.enquiry-head {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.8em;
}
.contact {
  font-family: 'Montserrat', sans-serif;
  /* background-color: #f2ea7d57; */
}
.contact label {
  text-transform: capitalize;
  color:#00cccb;
  margin-left: 10px;
}
.contact .form-control {
  border: 1px solid #00cccb;
}
.contact .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
    border: none;
}


.footer-contact img {
    padding-bottom: 1.5em;
    max-width:145px;
}







/* SUB PAGES CSS */

/* about us */

.oneness-about-sec-1 {
    padding-bottom: 3em;
    padding-top: 3em;
    /* background-color: #fff; */
}
.about-head-1 {
    font-family: FakeSerif;
    font-size: 6rem;
    text-transform: capitalize;
    background: linear-gradient(to top, #a63328 40%, #d9a66d 60%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.oneness-about-sec-1 p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 1em;
    text-align: justify;
}
.oneness-about-sec-1 span{
  margin-left: 26px;
}
.oneness-about-sec-2 {
    padding-bottom: 3em;
    padding-top: 3em;
}
.about-head-2 {
    font-size: 34px;
    font-weight: 500;
    color: #282828;
    font-family: Montserrat-Regular;
}
.pad-para{
  padding-left: 26px;
}
.about-head-2 span {
    font-size: 31px;
    font-weight: 500;
    color: #282828;
    font-family: Montserrat-Semibold;
}
.about-sub-box-1 h3 {
    font-size: 21px;
    font-weight: bold;
    color: #ebdd1f;
    margin-bottom: 0.5em;
}
.about-sub-box-1 p {
    font-size: 13px;
    text-align: justify;
    line-height: 22px;
}
.about-sub-box-2 h3 {
    font-size: 21px;
    font-weight: bold;
    color: #ebdd1f;
    margin-bottom: 0.5em;
}
.about-sub-box-2 p {
    font-size: 13px;
    text-align: justify;
    line-height: 22px;
}
.oneness-about-sec-3 {
    padding-bottom: 3em;
    padding-top: 3em;
    background-color: #fff;
}
.about-head-3 {
    font-size: 30px;
    font-weight: 500;
    color: #282828;
    font-family: Montserrat-Regular;
    margin-bottom: 0.6em;
}
.about-head-3 span {
    font-size: 30px;
    font-weight: 500;
    color: #282828;
    font-family: Montserrat-Semibold;    
}
.about-sub-box-4 p {
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}
.oneness-about-sec-3 .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    border: none;
    text-transform: capitalize;
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}
.oneness-about-sec-4 img {
    width: 100%;
    height: auto;
}



.contact-us-sec-1 {
    padding-bottom: 3em;
    padding-top: 3em;
   background-color: white;
    background-size: cover;
    /* padding: 120px 0; */
    color:#000000;
}
.contact-box-1 h4 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 0.7em;
}
.contact-box-1 p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0.8em;
    color: #000000;
    font-family: Montserrat-Regular;
}
.contact-box-1 p a {
    line-height: 30px;
    margin-bottom: 0.8em;
    color: #000000;
} 
.contact-box-1 i {
    color: #000000;
    font-size: 28px;
    margin-right: 5px;
}
.contact-box-2 h4 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0.5em;
    margin-top: 0.7em;
}
.contact-box-2 label {
    text-transform: capitalize;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}
.contact-box-2 .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: .375rem .75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bf4e2a;
    border-radius: 0rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact-box-2 .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: none;
    text-transform: capitalize;
}


.offer-banner {
  text-align: center;
  padding-top: 11em;
}


.oneness-offerings-1 {
    padding-bottom: 3em;
    padding-top: 3em;
}
.offering-box-2 {
    padding: 15px;
}
.offering-box-2 h2 {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0.6em;
}
.offering-box-2 p {
    font-size: 13px;
    line-height: 23px;
}
.offering-box-2 .btn-success {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    text-transform: capitalize;
}



.offering-box-3 {
    padding: 5em;
}
.offering-box-3 h5 {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5em;
}
.offering-box-3 span {
    font-family: FakeSerif;
    font-size: 8rem;
    text-transform: capitalize;
    background: linear-gradient(to top, #00d0ff 40%, #00a7fe 60%);
        background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.7em;
}
.offering-box-3 p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 2.7em;
    word-break: break-word;
    text-align: center;
}
.offering-box-3-buttons {
    text-align: center;
}
.offering-box-3-buttons .btn-success {
    background-image: linear-gradient(#dca115, #f2bd2f);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    text-transform: capitalize;
    margin: 3px;
}
.offering-box-3-buttons .btn-danger {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    text-transform: capitalize;
    margin: 3px;
}


.oneness-offerings-2 {
  overflow: hidden;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
.oneness-offerings-2 .row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0px;
  border-radius: 30px;
}

/* Create four equal columns that sits next to each other */
.oneness-offerings-2 .column {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.oneness-offerings-2 .column img {
  margin-top: 0px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .oneness-offerings-2 .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .oneness-offerings-2 .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
.oneness-offerings-2 .row {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    background-color: #fff;
    margin: 30px;
    border-radius: 30px;
}


.inside-head {
    font-size: 15px;
    line-height: 27px;
    text-transform: capitalize;
    font-weight: normal;
    color: #212529;
}







.oneness-offerings-3 {
    padding-bottom: 3em;
    padding-top: 3em;
}
.offering-box-4 {
    padding: 5em;
}
.offering-box-4 h5 {
    color: #00cccb;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5em;
}
.offering-box-4 span {
    font-family: FakeSerif;
    font-size: 8rem;
    text-transform: capitalize;
    background: linear-gradient(to top, #00d0ff 40%, #00a7fe 60%);
        background-clip: border-box;
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.7em;
}
.offering-box-4 p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 2.7em;
    word-break: break-word;
    text-align: center;
}
.offering-box-4 .btn-danger {
    background-image: linear-gradient(#d1622b, #962127);
    box-shadow: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    transition: 0.3s;
    font-size: 14px;
    border: none;
    text-transform: capitalize;
    margin: 3px;
}
.about33 .welcome-head {
  color: #00cccb;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.8em;
  line-height: 53px;
}
.about33 .welcome-head span {
  font-family: FakeSerif;
  font-size: 8rem;
  color: transparent;
  text-transform: capitalize;
  background: linear-gradient(to top, #962127 40%, #db6e2b 60%);
  background-clip: border-box;
  -webkit-background-clip: text;
 
  /* -webkit-text-fill-color: transparent; */
}
.edf{
  background-color: #f2ea7d;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 105%;
  padding: 10px;
}
.edf p{
  margin-bottom: 0;
  text-align: center;
  padding: 5px;
  border-bottom: 1px solid black;
  color:#962127  ;
  font-weight: 700;
}
.d-a-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.ourvismis {
  background: linear-gradient(rgba(129, 31, 31, 0.7), rgba(0, 0, 0, 0.7)), url(../img/gallery/zor23.webp) fixed center center;
  background-size: cover;
  padding: 50px 0;
  color:#fff;
}
.about33{
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/gallery/zor23.webp) fixed center center;
  background-size: cover;
  padding: 120px 0;
  color:#fff;
}
.contact{
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/gallery/zor24.webp) fixed center center;
  background-size: cover;
  padding: 120px 0;
  color:#fff;
}
.back01{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/background/zur33.webp)  center center;
  background-size:cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.back02{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/background/fanfd.webp)  center center;
  background-size:cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.back03{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/background/zor36.webp)  center center;
  background-size:cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.back04{
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.7)), url(../img/background/Osho1.webp) fixed center center;
  background-size: cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.back05{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/background/zor31.webp)  center center;
  background-size:cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.back06{
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.7)), url(../img/background/zor34.webp) fixed center center;
  background-size: cover;
  padding: 120px 0;
  color:#fff;
}
.back07{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/background/zor32.webp);
  background-size:cover;
  /*padding: 120px 0;*/
  color:#fff;
}
.d-a-centers{
  display: flex;
  align-items: center;
}
.d-a-centerss{
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-a-centers i{
  margin-right: 10px;
  font-size: 30px;
}
.mobile-nav-toggle{
  padding: 29px;
    font-size: 30px;

}
#footer .footer-top .footer-links ul a {
  font-size: 17px;
}
.d-a-centerer{
  display: flex;
  align-items: center;
  justify-content: calc();
}
.ZorBuddha12-02{
  margin-top: 35px;
}
.pr-3{
  padding-left: 15px;
}
.blogarth{
  color: red;
}
.rozer{

	margin: auto;
	background: #ececec;
  padding: 40px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin: 40px 0  ;
}
.blogimage img{
  border-radius: 10px;
}
.oneness-aboucct-sec-3{

    background: #c1c1c1;
    padding:30px 0 ;
    background-size: cover;


  
}
.compin .card {
  margin:30px 0;
  cursor:pointer;
  position: relative;
  width: 95%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  box-shadow: 0 10px 20px black;
}

.compin .card:hover {
  transform: scale(1.05);
}
.card h3{
  padding: 11px 10px;
    text-align: center;
    margin: 5px 0px 0px 0px;
    background-color: green;
    color: #fff;
}
.compin .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compin .overlay {
  position: absolute;
  bottom: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s;
  padding: 8px;
}

.compin .card:hover .overlay {
  bottom: 0;
}

.compin .overlay h2 {
  margin: 0;
  font-size: 1.5rem;
}

.compin .overlay p {
  margin: 8px 0 0;
  font-size:14px;
}
.img-list {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  .img-list .gal {
  border: 5px solid transparent;
  box-sizing: border-box;
  width:100%;
  float: left;
  position: relative;
  cursor: pointer;
  }
  .img-list img {
  max-width: 100%;
  vertical-align: middle;
  }
  
  /* Image Placeholder Styles
  -------------------------------------------------------------- */
  .img-placeholder:before,
  .img-placeholder:after {
  padding-top: 33.33%;
  content: "";
  display: block;
  }  
  .img-placeholder {
  background: #222;
  box-shadow: 0 0 0 8px #222 inset, 0 0 0 9px #333 inset;
  color: #444;
  line-height: 0;
  text-align: center;
  display: block;
  }
  
  /* The hover effect
  -------------------------------------------------------------- */
  .img-list .gal:before {
  transition: all .5s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  transform: scale(0);
  }
  .img-list .gal:hover:before {
  opacity: .5;
  transform: scale(1);
  }
  .img-list .gal:after {
  transition: all .6s ease .2s;
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #aaa;
  background: #000;
  opacity: 0;
  transform: scale(0);
  }
  .img-list .gal:hover:after {
  opacity: .35;
  transform: scale(1);
  }
  .sub-banner1{
    text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/background/15.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 70vh;
  }
  .sub-banner2{
    text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/background/12.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 70vh;
  }
  .sub-banner3{
    text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/gallery/zor24.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 70vh;
  }
  .sub-banner4{
    text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/background/16.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 70vh;
  }
  .sub-banner5{
    text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/background/zur33.webp) fixed center center;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    height: 70vh;
  }
  .about-head-111 {
    font-family: FakeSerif;
    font-size: 6rem;
    text-transform: capitalize;
    background: linear-gradient(to top, #101010 40%, #e9e6e2 60%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.mb-t-3{
margin: 10px 0;
}