/* ===================== Table Content Start ======================= 

Project Name 	:  Digital Valet
File 			:  CSS Base
Version 		:  1.0.0
Created     	:  09/08/2024
Author 			:  Pentagon Information Technology LLC

======================== Table Content End ===================== */
/*-- 1. VARIABLES --*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --theme-font: "Montserrat", sans-serif;
  --heading-font:"Playfair Display", serif;
  --style-font: "Great Vibes", cursive;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #00140e;
  --theme-color: #006b47;
  --light-color: #F7F9FA;
  --color-gray: #696969;
  --text-color-rgb: 30, 45, 125;
  --header-border-color: rgba(182, 182, 182, 0.7);
  --base-text-font-size: 15px;
  --default-text-font-size: 15px;
  --text-font-weight: 400;
  --text-font-style: normal;
  --text-font-bolder-weight: bolder;
  --border-color-rgb: 225, 227, 228;
  --border-color: #C9C9C9;
}

section,
header,
footer,
main {
  height: auto;
  clear: both;
}

section,
header,
footer,
main {
  width: 100%;
  position: relative;
}

/*-- 2. MIXIN --*/
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulsee {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
/*-- 3. MEDIA QUERIES --*/
/*-- 4. RESET --*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}

body {
  margin: auto;
  font-family: var(--theme-font);
  color: var(--color-black);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  width: 100%;
  letter-spacing: 0.5px;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(126, 214, 234, 0.5);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  outline: 1px solid var(--theme-color);
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
  font-family: var(--theme-font);
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  box-shadow: none !important;
  font-family: var(--theme-font);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

button,
input,
optgroup,
select,
textarea,
:focus,
:focus-visible {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: inherit;
  font-weight: normal;
  margin-bottom: 15px;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.is_relative {
  position: relative;
}

section,
div,
footer {
  scroll-margin-top: 150px;
}

.o-hidden {
  overflow: hidden;
}

section,
header,
footer,
main {
  position: relative;
}

.container {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1700px) {
  .container {
    max-width: 1638px;
  }
}
@media (max-width: 1699px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 17px;
  }
}

.mainContent {
  padding: 50px 0;
}
@media (min-width: 1200px) {
  .mainContent {
    padding: 100px 0;
  }
}
@media (min-width: 1700px) {
  .mainContent {
    padding: 120px 0;
  }
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 99999;
}

@media (max-width: 1199px) {
  .cursor {
    display: none;
  }
}
.cursor2 {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--theme-color);
  opacity: 1;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 99999;
}

@media (max-width: 1199px) {
  .cursor2 {
    display: none;
  }
}
.fr-reverse {
  flex-direction: row-reverse;
}

.load-complete {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-complete img {
  width: 100%;
  max-width: 200px;
}
.load-complete.hides {
  opacity: 0;
  transition: all 1s;
  visibility: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 9999;
  padding: 15px 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
header.follow {
  background-color: var(--color-white);
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.15);
}
header .navbar {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
header .navbar .navbar-brand img {
  max-width: 120px;
}
@media (max-width: 767px) {
  header .navbar .navbar-brand img {
    max-width: 80px;
  }
}
header .navbar .navbar-toggler {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 0 15px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active, header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item.active a, header .navbar .navbar-collapse .navbar-nav .nav-item:hover a {
  color: var(--theme-color);
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item:last-child {
    border: none;
  }
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse .navbar-nav {
    padding: 15px 30px;
    background-color: #f0f5f3;
    margin-top: 15px;
  }
}

.footer {
  padding-left: 0;
  padding-right: 0;
  padding-top: 50px;
  padding-bottom: 0;
}
.footer .footer-top {
  padding-bottom: 50px;
}
.footer .footer-top img {
  max-width: 160px;
  margin: auto;
  margin-bottom: 15px;
}
.footer .footer-top h4 {
  color: var(--theme-color);
  font-size: 40px;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .footer .footer-top h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
.footer .footer-top p {
  color: var(--color-white);
  max-width: 50%;
  font-size: 15px;
  line-height: 30px;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer .footer-top p {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .footer .footer-top p {
    max-width: 100%;
  }
}
.footer .footer-top .address {
  text-align: center;
  margin-bottom: 30px;
}
.footer .footer-top .address ul {
  display: block;
}
.footer .footer-top .address ul li {
  display: inline-block;
  padding: 0 15px;
}
.footer .footer-top .address ul li a {
  color: var(--color-white);
}
.footer .footer-top .address ul li a i {
  margin-right: 10px;
}
@media (max-width: 991px) {
  .footer .footer-top .address ul li a i {
    display: block;
    margin: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .footer .footer-top .address ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
  }
}
.footer .footer-top .address p {
  color: var(--color-white);
  margin: 10px auto;
  text-align: center;
}
@media (max-width: 991px) {
  .footer .footer-top .address p i {
    display: block;
    margin: 0;
    margin-bottom: 15px;
  }
}
.footer .footer-top .social-icon {
  position: relative;
  text-align: center;
}
.footer .footer-top .social-icon li {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-right: 10px;
}
.footer .footer-top .social-icon li a {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  font-size: 14px;
  line-height: 40px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  text-align: center;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
}
.footer .footer-top .social-icon li:last-child {
  padding-right: 0;
}
.footer .footer-top .social-icon li:hover a {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--color-white);
}
.footer .footer-bottom {
  text-align: center;
  padding: 30px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-bottom .inner-content p {
  color: var(--color-white);
  margin-bottom: 0;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background: var(--theme-color);
  box-shadow: 0px 0px 0px 5px var(--theme-color);
}
.progress-wrap::after {
  position: absolute;
  content: "";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-white);
  left: 0;
  top: 0px;
  background-image: url("../images/back-to-top.svg");
  background-repeat: no-repeat;
  background-position: center center;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #696969;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
@media (max-width: 991px) {
  .progress-wrap {
    right: 30px;
    bottom: 30px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.watsup-fixed {
  bottom: 30px;
  left: 30px;
  position: fixed;
  z-index: 9999;
}
.watsup-fixed a {
  position: relative;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: #018141;
  box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: pulsee;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.watsup-fixed a::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #49b15d;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.watsup-fixed a img {
  max-width: 22px;
}

.fullscreen {
  position: relative;
}
.fullscreen .main-slider {
  position: relative;
}
.fullscreen .main-slider .item-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
.fullscreen .main-slider .item-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-black);
  opacity: 0.5;
}
.fullscreen .meta {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fullscreen .meta .main-title-small {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(24px + 12 * (100vw - 720px) / 719);
  font-family: var(--style-font);
  color: var(--color-white);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.fullscreen .meta .main-title-small::after, .fullscreen .meta .main-title-small::before {
  width: 150px;
  height: 1px;
  content: "";
  opacity: 0.1;
  background-color: var(--color-white);
}
.fullscreen .meta .main-title-small::before {
  margin-right: 40px;
}
.fullscreen .meta .main-title-small::after {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .fullscreen .meta .main-title-small {
    margin-bottom: 15px;
  }
}
.fullscreen .meta .main-title {
  color: var(--color-white);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3em;
  font-size: 70px;
  font-family: var(--heading-font);
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .fullscreen .meta .main-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .fullscreen .meta .main-title {
    font-size: 35px;
    margin-bottom: 15px;
    letter-spacing: 0;
  }
}
.fullscreen .meta .sub-title {
  text-align: center;
  color: var(--color-white);
  line-height: 35px;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 70%;
  margin: auto;
}
@media (max-width: 767px) {
  .fullscreen .meta .sub-title {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0;
    max-width: 100%;
  }
}
.fullscreen .meta .main-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.fullscreen .meta .main-btn a {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  background-color: transparent;
  border: 1px solid var(--color-white);
  border-radius: 0px;
  padding: 15px 30px;
}
.fullscreen .meta .main-btn a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--color-white);
}
.fullscreen .scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 150px;
  text-align: center;
  z-index: 999;
}
.fullscreen .scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 3px solid var(--color-white);
  border-radius: 23px;
}
.fullscreen .scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--color-white);
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}
@media (max-width: 767px) {
  .fullscreen .scroll-btn {
    bottom: 130px;
  }
}

.home-about .row {
  align-items: center;
  flex-direction: row-reverse;
}
.home-about .left-about {
  padding-right: 50px;
}
.home-about .left-about .inner-content h6 {
  color: var(--theme-color);
  font-size: 25px;
  font-weight: 600;
  font-family: var(--style-font);
}
.home-about .left-about .inner-content h4 {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 30px;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .home-about .left-about .inner-content h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
.home-about .left-about .inner-content p {
  font-size: 18px;
  color: var(--color-gray);
  line-height: 35px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .home-about .left-about .inner-content p {
    font-size: 15px;
    line-height: 30px;
  }
}
.home-about .left-about .inner-content .main-btn {
  display: flex;
}
.home-about .left-about .inner-content .main-btn a {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  background-color: var(--theme-color);
  border-radius: 0px;
  padding: 15px 30px;
}
.home-about .left-about .inner-content .main-btn a:hover {
  background-color: var(--color-dark);
}
@media (max-width: 991px) {
  .home-about .left-about .inner-content .main-btn {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .home-about .left-about .inner-content {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .home-about .left-about {
    padding-right: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .home-about .left-about {
    padding-right: 15px;
    margin-top: 30px;
    text-align: center;
  }
}
.home-about .right-about .inner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-about .right-about .inner-content .img-box.half {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.home-about .right-about .inner-content .img-box.full {
  width: 100%;
}
@media (max-width: 767px) {
  .home-about .right-about .inner-content .main-btn {
    display: block;
  }
}

.home-facilities {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.home-facilities::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: -1;
}
.home-facilities .title-in .inner-content {
  position: relative;
}
.home-facilities .title-in .inner-content h6 {
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--style-font);
  font-size: 25px;
}
.home-facilities .title-in .inner-content h4 {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 30px;
  max-width: 400px;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .home-facilities .title-in .inner-content h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .home-facilities .title-in .inner-content h4 {
    margin: 0 auto;
  }
}
.home-facilities .title-in .inner-content .main-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.home-facilities .title-in .inner-content .main-btn a {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  background-color: var(--theme-color);
  border-radius: 0px;
  padding: 15px 30px;
}
.home-facilities .title-in .inner-content .main-btn a:hover {
  background-color: var(--color-dark);
}
@media (max-width: 991px) {
  .home-facilities .title-in .inner-content .main-btn {
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .home-facilities .title-in .inner-content {
    text-align: center;
  }
}
.home-facilities .slider-section .facilities-slider {
  position: relative;
}
.home-facilities .slider-section .facilities-slider .slider-item .facilities-box {
  background-color: var(--color-white);
  text-align: center;
  padding: 50px;
}
.home-facilities .slider-section .facilities-slider .slider-item .facilities-box .icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--theme-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 15px;
}
.home-facilities .slider-section .facilities-slider .slider-item .facilities-box .icon-box img {
  width: 40px;
  height: 40px;
  margin: auto;
}
.home-facilities .slider-section .facilities-slider .slider-item .facilities-box h4 {
  font-size: 18px;
  color: var(--color-black);
  font-weight: 600;
}
@media (max-width: 1399px) {
  .home-facilities .slider-section .facilities-slider .slider-item .facilities-box h4 {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .home-facilities .slider-section .facilities-slider .slider-item .facilities-box {
    padding: 30px 15px;
  }
}
.home-facilities .slider-section .facilities-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home-facilities .slider-section .facilities-slider .owl-nav [class*=owl-] {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: var(--color-white);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
.home-facilities .slider-section .facilities-slider .owl-nav [class*=owl-].owl-prev {
  left: -100px;
}
.home-facilities .slider-section .facilities-slider .owl-nav [class*=owl-].owl-next {
  right: -100px;
}
.home-facilities .slider-section .facilities-slider .owl-nav [class*=owl-] img {
  width: 16px;
}
.home-facilities .slider-section .facilities-slider .owl-nav [class*=owl-]:hover {
  background: black;
}

.home-gallery {
  position: relative;
  overflow: hidden;
}
.home-gallery::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 846px;
  height: 838px;
  background-image: url("../images/benifit-after.svg");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.home-gallery .main-title {
  max-width: 850px;
  margin: 0px auto;
  text-align: center;
}
.home-gallery .main-title h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  font-family: var(--heading-font);
}
@media (max-width: 1399px) {
  .home-gallery .main-title h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.home-gallery .gallery-slider {
  margin-top: 60px;
}
.home-gallery .gallery-slider .owl-item .item-img {
  position: relative;
  z-index: 1;
}
.home-gallery .gallery-slider .owl-item .item-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(5, 133, 94, 0.64) 0%, rgb(0, 0, 0) 100%);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.home-gallery .gallery-slider .owl-item .item-img::after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: 1px solid var(--color-white);
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.home-gallery .gallery-slider .owl-item .meta {
  position: absolute;
  bottom: 100px;
  z-index: 999;
  left: 100px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.home-gallery .gallery-slider .owl-item .meta h4 {
  color: var(--color-white);
  font-size: 24px;
}
@media (max-width: 1199px) {
  .home-gallery .gallery-slider .owl-item .meta h4 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .home-gallery .gallery-slider .owl-item .meta {
    bottom: 50px;
    left: 50px;
  }
}
.home-gallery .gallery-slider .owl-item .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease-in;
  -webkit-transition: all 400ms ease-in;
  -o-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
  -ms-transition: all 400ms ease-in;
}
.home-gallery .gallery-slider .owl-item .popup-icon svg {
  fill: var(--color-white);
  width: 20px;
  height: 20px;
}
.home-gallery .gallery-slider .owl-item:hover .item-img::before, .home-gallery .gallery-slider .owl-item.center .item-img::before {
  opacity: 0.5;
}
.home-gallery .gallery-slider .owl-item:hover .item-img::after, .home-gallery .gallery-slider .owl-item.center .item-img::after {
  opacity: 1;
  left: 40px;
  right: 40px;
  top: 40px;
  bottom: 40px;
}
@media (max-width: 1199px) {
  .home-gallery .gallery-slider .owl-item:hover .item-img::after, .home-gallery .gallery-slider .owl-item.center .item-img::after {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
}
.home-gallery .gallery-slider .owl-item:hover .meta, .home-gallery .gallery-slider .owl-item.center .meta {
  transform: translateY(0px);
  opacity: 1;
}
.home-gallery .gallery-slider .owl-item:hover .popup-icon, .home-gallery .gallery-slider .owl-item.center .popup-icon {
  opacity: 1;
}
.home-gallery .gallery-slider .owl-item:hover .popup-icon svg, .home-gallery .gallery-slider .owl-item.center .popup-icon svg {
  fill: var(--color-white);
  width: 40px;
  height: 40px;
}
.home-gallery .gallery-slider .owl-nav {
  text-align: center;
  margin-top: 50px;
}
.home-gallery .gallery-slider .owl-nav [class*=owl-] {
  background: transparent;
  text-transform: uppercase;
  color: var(--color-black);
  font-size: 20px;
  white-space: nowrap;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
.home-gallery .gallery-slider .owl-nav [class*=owl-].owl-prev {
  margin-right: 30px;
}
.home-gallery .gallery-slider .owl-nav [class*=owl-] img {
  max-width: 18px;
  width: 100%;
}

.home-testimonials {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.home-testimonials.about-gallery {
  padding: 100px 0;
}
.home-testimonials .title-section {
  text-align: center;
}
.home-testimonials .title-section h6 {
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--style-font);
  font-size: 25px;
}
.home-testimonials .title-section h4 {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0 auto;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .home-testimonials .title-section h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
.home-testimonials .gallery-slider-bottom .item,
.home-testimonials .gallery-slider-about .item {
  position: relative;
  z-index: 1;
}
.home-testimonials .gallery-slider-bottom .item::before, .home-testimonials .gallery-slider-bottom .item::after,
.home-testimonials .gallery-slider-about .item::before,
.home-testimonials .gallery-slider-about .item::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  background-color: var(--color-white);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.home-testimonials .gallery-slider-bottom .item::before,
.home-testimonials .gallery-slider-about .item::before {
  width: 0;
  height: 1px;
}
.home-testimonials .gallery-slider-bottom .item::after,
.home-testimonials .gallery-slider-about .item::after {
  height: 0;
  width: 1px;
}
.home-testimonials .gallery-slider-bottom .item .gallery-box,
.home-testimonials .gallery-slider-about .item .gallery-box {
  position: relative;
  z-index: 1;
  display: block;
}
.home-testimonials .gallery-slider-bottom .item .gallery-box::after, .home-testimonials .gallery-slider-bottom .item .gallery-box::before,
.home-testimonials .gallery-slider-about .item .gallery-box::after,
.home-testimonials .gallery-slider-about .item .gallery-box::before {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.home-testimonials .gallery-slider-bottom .item .gallery-box::before,
.home-testimonials .gallery-slider-about .item .gallery-box::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.home-testimonials .gallery-slider-bottom .item .gallery-box::after,
.home-testimonials .gallery-slider-about .item .gallery-box::after {
  height: 40px;
  width: 1px;
  top: 0%;
}
.home-testimonials .gallery-slider-bottom .item .gallery-img,
.home-testimonials .gallery-slider-about .item .gallery-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.home-testimonials .gallery-slider-bottom .item .gallery-img::before,
.home-testimonials .gallery-slider-about .item .gallery-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 23, 28, 0.8);
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.home-testimonials .gallery-slider-bottom .item .gallery-img img,
.home-testimonials .gallery-slider-about .item .gallery-img img {
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transform: scale(1);
  position: relative;
}
.home-testimonials .gallery-slider-bottom .item:hover::before, .home-testimonials .gallery-slider-bottom .item:hover::after,
.home-testimonials .gallery-slider-about .item:hover::before,
.home-testimonials .gallery-slider-about .item:hover::after {
  opacity: 1;
  transition-delay: 0.25s;
}
.home-testimonials .gallery-slider-bottom .item:hover::before,
.home-testimonials .gallery-slider-about .item:hover::before {
  width: 40px;
}
.home-testimonials .gallery-slider-bottom .item:hover::after,
.home-testimonials .gallery-slider-about .item:hover::after {
  height: 40px;
}
.home-testimonials .gallery-slider-bottom .item:hover .gallery-box::after, .home-testimonials .gallery-slider-bottom .item:hover .gallery-box::before,
.home-testimonials .gallery-slider-about .item:hover .gallery-box::after,
.home-testimonials .gallery-slider-about .item:hover .gallery-box::before {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.home-testimonials .gallery-slider-bottom .item:hover .gallery-img::before,
.home-testimonials .gallery-slider-about .item:hover .gallery-img::before {
  opacity: 1;
}
.home-testimonials .gallery-slider-bottom .item:hover .gallery-img img,
.home-testimonials .gallery-slider-about .item:hover .gallery-img img {
  transform: scale(1.1);
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-bottom: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumb-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.breadcrumb-area .page-title {
  text-align: center;
}
.breadcrumb-area .page-title h2 {
  font-size: 50px;
  color: var(--color-white);
  font-family: var(--heading-font);
}
@media (max-width: 991px) {
  .breadcrumb-area .page-title h2 {
    font-size: 35px;
  }
}
.breadcrumb-area .page-title .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb-area .page-title .breadcrumb li {
  color: var(--theme-color);
  font-family: var(--theme-font);
  font-weight: 500;
}
.breadcrumb-area .page-title .breadcrumb li a {
  color: var(--color-white);
  font-family: var(--theme-font);
}
@media (max-width: 991px) {
  .breadcrumb-area {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}

.about-page {
  position: relative;
}
.about-page .inner-video {
  overflow: hidden;
  width: 100%;
  height: 650px;
}
.about-page .inner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .about-page .inner-video {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .about-page .inner-content {
    padding-left: 50px;
  }
}
.about-page .inner-content h6 {
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--theme-font);
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: normal;
}
.about-page .inner-content h3 {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 30px;
  line-height: 50px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .about-page .inner-content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.about-page .inner-content .line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 50px auto;
}
.about-page .inner-content h4 {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-font);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-page .inner-content ul {
  margin: 20px 0;
  -moz-column-count: 2;
       column-count: 2;
}
.about-page .inner-content ul li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 30px;
}
@media (max-width: 991px) {
  .about-page .inner-content ul li {
    padding-left: 0;
  }
}
.about-page .inner-content ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background-image: url(../images/tick.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 991px) {
  .about-page .inner-content ul li:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .about-page .inner-content ul {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.about-page .inner-content h5 {
  color: var(--color-dark);
  font-family: var(--style-font);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 30px;
}
.about-page .inner-content p {
  font-size: 15px;
  line-height: 30px;
}
.about-page .inner-content .main-btn {
  display: flex;
  margin-top: 30px;
}
.about-page .inner-content .main-btn a {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  background-color: var(--theme-color);
  border-radius: 0px;
  padding: 15px 30px;
}
.about-page .inner-content .main-btn a:hover {
  background-color: var(--color-dark);
}
@media (max-width: 991px) {
  .about-page .inner-content .main-btn {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .about-page .inner-content {
    text-align: center;
  }
}
.about-page .what-mt5 {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .about-page .what-mt5 {
    margin-top: 0;
  }
}
.about-page .what-we-content h4 {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-font);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-page .what-we-content .line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 50px auto;
}
.about-page .what-we-content p {
  font-size: 15px;
  line-height: 30px;
}
.about-page .what-we-content ul {
  margin: 20px 0;
  -moz-column-count: 2;
       column-count: 2;
}
.about-page .what-we-content ul li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 30px;
}
@media (max-width: 991px) {
  .about-page .what-we-content ul li {
    padding-left: 0;
  }
}
.about-page .what-we-content ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background-image: url(../images/tick.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 991px) {
  .about-page .what-we-content ul li:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .about-page .what-we-content ul {
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media (max-width: 991px) {
  .about-page .what-we-content {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .about-page .what-we-img {
    margin-bottom: 30px;
  }
}

.about-story h4 {
  color: var(--color-dark);
  font-size: 40px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin: 0;
  line-height: 60px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.about-story h4 strong {
  color: var(--theme-color);
  font-style: italic;
}
@media (max-width: 1399px) {
  .about-story h4 {
    font-size: 30px;
    line-height: 45px;
  }
}

.about-gallery {
  padding: 100px 0;
}
.about-gallery .gallery-slider-about .item {
  position: relative;
  z-index: 1;
}
.about-gallery .gallery-slider-about .item::before, .about-gallery .gallery-slider-about .item::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  background-color: var(--color-white);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.about-gallery .gallery-slider-about .item::before {
  width: 0;
  height: 1px;
}
.about-gallery .gallery-slider-about .item::after {
  height: 0;
  width: 1px;
}
.about-gallery .gallery-slider-about .item .gallery-box {
  position: relative;
  z-index: 1;
  display: block;
}
.about-gallery .gallery-slider-about .item .gallery-box::after, .about-gallery .gallery-slider-about .item .gallery-box::before {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.about-gallery .gallery-slider-about .item .gallery-box::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.about-gallery .gallery-slider-about .item .gallery-box::after {
  height: 40px;
  width: 1px;
  top: 0%;
}
.about-gallery .gallery-slider-about .item .gallery-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.about-gallery .gallery-slider-about .item .gallery-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 23, 28, 0.8);
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.about-gallery .gallery-slider-about .item .gallery-img img {
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transform: scale(1);
  position: relative;
}
.about-gallery .gallery-slider-about .item:hover::before, .about-gallery .gallery-slider-about .item:hover::after {
  opacity: 1;
  transition-delay: 0.25s;
}
.about-gallery .gallery-slider-about .item:hover::before {
  width: 40px;
}
.about-gallery .gallery-slider-about .item:hover::after {
  height: 40px;
}
.about-gallery .gallery-slider-about .item:hover .gallery-box::after, .about-gallery .gallery-slider-about .item:hover .gallery-box::before {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.about-gallery .gallery-slider-about .item:hover .gallery-img::before {
  opacity: 1;
}
.about-gallery .gallery-slider-about .item:hover .gallery-img img {
  transform: scale(1.1);
}

.about-video {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-video::before {
  content: "";
  background: rgba(0, 0, 0, 0.58);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-video .video_inner {
  text-align: center;
}
.about-video .video_inner a {
  display: block;
  padding-bottom: 30px;
}
.about-video .video_inner a img {
  width: 70px;
  height: 70px;
}
.about-video .video_inner h4 {
  color: var(--color-white);
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 15px;
  line-height: 50px;
  text-transform: capitalize;
}
.about-video .video_inner h6 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-font);
  text-transform: capitalize;
  line-height: normal;
}

.about-fun-fact {
  padding: 50px 0;
}
.about-fun-fact .fun-fact-box {
  z-index: 5;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.about-fun-fact .fun-fact-box .media {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
}
.about-fun-fact .fun-fact-box .media .media-left {
  vertical-align: middle;
  padding-right: 20px;
  position: relative;
}
.about-fun-fact .fun-fact-box .media .media-left h3 {
  font-size: 55px;
  color: var(--theme-color);
  font-weight: bold;
  font-family: var(--theme-font);
  line-height: 50px;
}
@media (max-width: 991px) {
  .about-fun-fact .fun-fact-box .media .media-left h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .about-fun-fact .fun-fact-box .media .media-left {
    padding: 0;
  }
}
.about-fun-fact .fun-fact-box .media .media-body {
  vertical-align: middle;
  position: relative;
}
.about-fun-fact .fun-fact-box .media .media-body h4 {
  font-size: 15px;
  color: var(--color-gray);
  font-family: var(--theme-font);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 20px;
}
@media (max-width: 991px) {
  .about-fun-fact .fun-fact-box .media {
    display: block;
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #dddddd;
  }
}
@media (max-width: 991px) {
  .about-fun-fact {
    padding: 0;
  }
}

.facilities-page .title-in .inner-content {
  position: relative;
}
.facilities-page .title-in .inner-content h6 {
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--theme-font);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.facilities-page .title-in .inner-content h4 {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: auto;
  margin-bottom: 30px;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .facilities-page .title-in .inner-content h4 {
    font-size: 30px;
    line-height: 45px;
  }
}
.facilities-page .title-in .inner-content p {
  font-size: 18px;
  line-height: 35px;
  margin: auto;
}
.facilities-page .box-item .facilities-box {
  background-color: var(--color-white);
  text-align: center;
  padding: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 26px;
}
.facilities-page .box-item .facilities-box .icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--theme-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 15px;
}
.facilities-page .box-item .facilities-box .icon-box img {
  width: 40px;
  height: 40px;
  margin: auto;
}
.facilities-page .box-item .facilities-box h4 {
  font-size: 18px;
  color: var(--color-black);
  font-family: var(--theme-font);
  font-weight: 600;
}

.facilities-details .row {
  align-items: center;
}
.facilities-details .row:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .facilities-details .row {
    margin-bottom: 30px;
  }
  .facilities-details .row:last-child {
    margin-bottom: 0;
  }
}
.facilities-details .image-box {
  padding: 0;
}
@media (max-width: 991px) {
  .facilities-details .image-box {
    margin-bottom: 30px;
  }
}
.facilities-details .content-box {
  padding: 0;
}
.facilities-details .content-box.left-pad {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .facilities-details .content-box.left-pad {
    padding: 0;
  }
}
.facilities-details .content-box.right-pad {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .facilities-details .content-box.right-pad {
    padding: 0;
  }
}
.facilities-details .content-box .inner-content h4 {
  color: var(--theme-color);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 15px;
  line-height: 55px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .facilities-details .content-box .inner-content h4 {
    font-size: 30px;
    line-height: 45px;
  }
}
.facilities-details .content-box .inner-content p {
  font-size: 18px;
  line-height: 35px;
}
.facilities-details .content-box .inner-content p:last-child {
  margin: 0;
}
@media (max-width: 991px) {
  .facilities-details .content-box .inner-content {
    text-align: center;
  }
}

.gallery-page .grid-item {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.gallery-page .grid-item::before, .gallery-page .grid-item::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  background-color: var(--color-white);
  z-index: 9;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.gallery-page .grid-item::before {
  width: 0;
  height: 1px;
}
.gallery-page .grid-item::after {
  height: 0;
  width: 1px;
}
.gallery-page .grid-item .gallery-box {
  position: relative;
  z-index: 1;
  display: block;
}
.gallery-page .grid-item .gallery-box::after, .gallery-page .grid-item .gallery-box::before {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.gallery-page .grid-item .gallery-box::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.gallery-page .grid-item .gallery-box::after {
  height: 40px;
  width: 1px;
  top: 0%;
}
.gallery-page .grid-item .gallery-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.gallery-page .grid-item .gallery-img::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 23, 28, 0.8);
  z-index: 2;
  opacity: 0;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
}
.gallery-page .grid-item .gallery-img img {
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  transform: scale(1);
  position: relative;
}
.gallery-page .grid-item:hover::before, .gallery-page .grid-item:hover::after {
  opacity: 1;
  transition-delay: 0.25s;
}
.gallery-page .grid-item:hover::before {
  width: 40px;
}
.gallery-page .grid-item:hover::after {
  height: 40px;
}
.gallery-page .grid-item:hover .gallery-box::after, .gallery-page .grid-item:hover .gallery-box::before {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.gallery-page .grid-item:hover .gallery-img::before {
  opacity: 1;
}
.gallery-page .grid-item:hover .gallery-img img {
  transform: scale(1.1);
}

.contact-page {
  padding-bottom: 0;
}
.contact-page .contact-details .main-title h6 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: var(--style-font);
  text-transform: capitalize;
  color: var(--theme-color);
}
.contact-page .contact-details .main-title h4 {
  color: var(--color-dark);
  font-size: 50px;
  font-family: var(--heading-font);
  line-height: normal;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: normal;
}
@media (max-width: 1399px) {
  .contact-page .contact-details .main-title h4 {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .contact-page .contact-details .main-title h4 {
    font-size: 30px;
  }
  .contact-page .contact-details .main-title h4 br {
    display: none;
  }
}
.contact-page .contact-details .main-title p {
  font-size: 18px;
  color: var(--color-black);
  line-height: 32px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .contact-page .contact-details .main-title p {
    font-size: 15px;
    line-height: 30px;
  }
}
.contact-page .contact-details .main-title .contact-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
  font-size: 18px;
}
.contact-page .contact-details .main-title .contact-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-color);
  font-family: "FontAwesome";
}
.contact-page .contact-details .main-title .contact-list li:nth-child(1)::before {
  content: "\f095";
}
.contact-page .contact-details .main-title .contact-list li:nth-child(2)::before {
  content: "\f232";
}
.contact-page .contact-details .main-title .contact-list li:nth-child(3)::before {
  content: "\f003";
}
.contact-page .contact-details .main-title .contact-list li:nth-child(4)::before {
  content: "\f3c5";
}
.contact-page .contact-details .main-title .contact-list li a {
  color: var(--color-black);
}
.contact-page .contact-details .main-title .contact-list li:hover a {
  color: var(--theme-color);
}
.contact-page .contact-details .main-title h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 15px;
  position: relative;
  display: inline-block;
}
.contact-page .contact-details .main-title h5::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gray);
  content: "";
}
.contact-page .contact-details .main-title h5::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--theme-color);
  content: "";
  transition: all 500ms ease;
}
.contact-page .contact-details .main-title h5:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .contact-page .contact-details {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 992px) {
  .contact-page .contact-form {
    padding-left: 150px;
  }
}
.contact-page .contact-form input.form-control {
  width: 100%;
  background: 0 0;
  border: 0;
  border: 1px solid #e3e3e3;
  outline: none !important;
  color: var(--color-black);
  padding: 10px 15px;
  font-size: 15px;
  height: 55px;
  border-radius: 0;
}
.contact-page .contact-form input.form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-page .contact-form textarea.form-control {
  width: 100%;
  background: 0 0;
  border: 0;
  border: 1px solid #e3e3e3;
  outline: none !important;
  color: var(--color-black);
  padding: 10px 15px;
  font-size: 15px;
  height: 120px;
  border-radius: 0;
}
.contact-page .contact-form textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-page .contact-form .submit-btn .btnAction {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 15px 30px;
  border-radius: 0px;
  position: relative;
  box-sizing: border-box;
  background-color: var(--theme-color);
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: 1;
}
.contact-page .contact-form .submit-btn .btnAction:hover {
  background-color: var(--theme-color);
}
@media (max-width: 1399px) {
  .contact-page .contact-form .submit-btn .btnAction {
    padding: 10px 30px;
  }
}
.contact-page .google-map {
  margin-top: 70px;
}
.contact-page .google-map iframe {
  width: 100%;
  height: 550px;
  border: 5px solid #E3E3E3;
}/*# sourceMappingURL=theme-style.css.map */