/**
* License: https://www.thewavegroup.com/
*/
:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-darken: hsl(0, 0%, 20%);
  --color-pink-100: hsl(336, 95%, 94%);
  --color-pink-200: hsl(338, 91%, 87%);
  --color-pink-300: hsl(339, 90%, 81%);
  --color-pink-400: hsl(339, 88%, 74%);
  --color-pink-500: hsl(339, 82%, 67%);
  --color-pink-600: hsl(339, 76%, 59%);
  --color-pink-700: hsl(339, 67%, 52%);
  --color-pink-800: hsl(339, 68%, 45%);
  --color-pink-900: hsl(339, 69%, 38%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  scroll-behavior: smooth;
 scroll-padding-top:75px;
}

/*img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}*/

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

@font-face {
font-family: 'Avenir LT Std';
src: url('fonts/AvenirLTStd-Book.eot');
src: url('fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'),
url('fonts/AvenirLTStd-Book.woff2') format('woff2'),
url('fonts/AvenirLTStd-Book.woff') format('woff'),
url('fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Quicksand:wght@300;400;500&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: 'Avenir LT Std', sans-serif;
 font-weight: 400;
  color: #151618;
}

a {
  color: #ff470b;
}

a:hover {
  color: #ff470b;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# 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: 4px;
  background: #ff470b;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ff470b;
  color: #fff;
}

/*--------------------------------------------------------------
# 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 #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.brand {
  padding: 1vh 1vw; 
}
.brand img {height: 60px;}
.static-header .brand img {height: 60px; transition: height 0.4s ease;}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 3px 0 6px 0;
  z-index: 100;
  margin: 0 auto;
  background: #fff;
 /* -webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium);*/
  transition: all 0.4s ease-in-out;
}
.fixed-header{background: #fff; padding: 0px 0 5px 0; transition: height 0.4s ease;-webkit-box-shadow: var(--shadow-medium);
  box-shadow: var(--shadow-medium);}
.fixed-header .brand img{ height: 60px; transition: height 0.4s ease; }
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  max-width: 100%;
  
  margin: 0 auto;
}
.header .menu{ margin-bottom: 0; }
.header .menu > .menu-item {
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
}
.header .menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.35rem;
  pointer-events: none;
  border: none;
  outline: none;
}
.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .menu > .menu-item:hover > a {
  color: #ff470b;
}
.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
  background: #ff470b;
}
.header .menu > .menu-item > a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: var(--color-pink-700);
}
.header .menu > .menu-item > .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 13rem;
  height: auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid var(--color-pink-600);
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow-medium);
          box-shadow: var(--shadow-medium);
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.5rem 1.25rem;
  color: var(--color-black);
  text-transform: capitalize;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .burger {
  position: relative;
  cursor: pointer; border: 0;
  display: none;
  width: 1.75rem;
  height: 1rem;
  margin-top: -0.25rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.header .burger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-black);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header .burger-line:nth-child(1) {
  top: 0;
}
.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
  top: 0.5rem;
}
.header .burger-line:nth-child(4) {
  top: 1rem;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
/* Burger becomes X when active */
.header .burger.active .burger-line:nth-child(1) {
  top: 0.5rem;
  opacity: 0;
}
.header .burger.active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}
.header .burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.header .burger.active .burger-line:nth-child(4) {
  top: 0.5rem;
  opacity: 0;
}
.header .menu > .menu-item > a.active {
  color: #ff470b;
  
}

@media only screen and (min-width: 993px) {
  .header .menu > .menu-item-child:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header .menu > .menu-item-child:hover > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media only screen and (max-width: 992px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-medium);
            box-shadow: var(--shadow-medium);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
  .header .menu {
    width: 100%;
    height: auto;
    margin: 1rem 0;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-child > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu > .menu-item > a {
    padding: 0.625rem 1.25rem;
    color: var(--color-black);
  }
  .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
    background: var(--color-black);
  }
  .header .menu > .menu-item-child.active > a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 0.625rem 2rem;
    color: var(--color-black);
  }
  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

#intro{margin-top: 80px}
/* Add About Section Css */
.border-radius-2x{ z-index: 9; border-radius: 5px; overflow: hidden; box-shadow: 3px 2px 20px #ff470b42; position: relative; }
.bg_area{
    border-radius: 5px;  
    overflow: hidden; margin-left: -90px; margin-top: 60px;
    box-shadow: -2px 2px 20px #ff470b52;
    position: relative; padding: 25px 35px 25px 120px;
    z-index: 0; background: rgba(255,255,255,0.05);}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #2487ce;
  color: #fff;
  border-radius: 5px;
  padding: 10px 30px 11px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #2079b8;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 5px 18px 6px 18px;
    border-radius: 3px;
  }
}



.nav_tab {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
/* Add Toggle Menu */

.nav_custom {
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  -ms-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  transition: right 0.5s ease;
  background: #000;
  color: white;
  cursor: pointer;
  font-size: 2rem;
  height: 100vh;
  right: -15rem;
  padding: 6rem 2rem 2rem 2rem;
  position: fixed;
  top: 0;
  width: 15rem;
  z-index: 1;
}

.nav_custom.expanded { right: 0; }

.nav_custom ul {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav_custom ul li{ margin: 0 0 20px 0; padding: 0; line-height: normal;  }
.nav_custom ul li a{     color: #fff;  font-size: 12px;  text-transform: uppercase; letter-spacing: 1px; font-family: 'Avenir LT Std';
                     display: block; padding: 6px 15px 6px 15px; border-left: solid 1px #fff; transition: 0.3s;}
.nav_custom ul li a:hover{color: #ff470b; border-color: #ff470b; background-color: rgba(255,255,255,0.1);}
.nav-toggle { 
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  height: 25px;
  right: 0rem;
  position: relative;
  top: 0rem;
  width: 2.0rem;
  z-index: 2;
  display: block;
}

.nav-toggle:hover { opacity: 0.8; }

.nav-toggle .nav-toggle-bar,  .nav-toggle .nav-toggle-bar::after,  .nav-toggle .nav-toggle-bar::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: white;
  content: '';
  height: 0.2rem;
  width: 100%;
}

.nav-toggle .nav-toggle-bar { margin-top: 0; }

.nav-toggle .nav-toggle-bar::after { margin-top: 0.6rem; }

.nav-toggle .nav-toggle-bar::before { margin-top: -0.6rem; }

.nav-toggle.expanded .nav-toggle-bar { background: transparent; }

.nav-toggle.expanded .nav-toggle-bar::after, .nav-toggle.expanded .nav-toggle-bar::before {
  background: white;
  margin-top: 0;
}

.nav-toggle.expanded .nav-toggle-bar::after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-toggle.expanded .nav-toggle-bar::before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  position: relative;
}
.hero:after{ position: absolute; z-index: 0; content: ''; left: 0; bottom: 0; height: 220px; width: 100%; background: url(../img/slider_area.png) repeat-x bottom; }

/*Add Slider Image */
.hero_slider00{background: url(../img/hero-bg01.jpg) top center; background-size:cover; background-repeat: no-repeat;}
.hero_slider01{background: url(../img/hero-bg.jpg) top center; background-size:cover; background-repeat: no-repeat;}
.hero_slider02{background: url(../img/hero_bg02.jpg) top center; background-size:cover; background-repeat: no-repeat;}
.hero_slider03{background: url(../img/hero_bg03.jpg) top center; background-size:cover; background-repeat: no-repeat;}

.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  padding-top: 35%;
}

.hero h2 {
  background: rgba(0,0,0,0.75);
  padding: 8px 25px; display: inline-block;
  color: #ff470b; font-weight: 300;
  margin: 10px 0 10px 0;
  font-size: 24px; position: relative; z-index: 1;
}

.hero p{ color: #fff; letter-spacing: 1px; background: rgba(0,0,0,0.70); display: inline-block; padding: 8px 25px; font-size: 18px; position: relative; z-index: 1; }
.hero p span {color: #ff470b; font-weight: 600; font-size: 18px;}




.bg_01{ background: url(../img/pattern_bg_01.jpg) no-repeat; background-size: cover; width: 100%; }
.bg_02{ background: #151618; width: 100%; }
.bg_03{ background: #4e4e4e; width: 100%; }
.table thead th{ border-bottom:solid 1px;     border-color: #826643; }
.table td, .table th{ border-top:solid 1px; border-color: #826643; }
.btn_sm, .btn_sm:hover{ background: #ff470b; border-radius: 5px; padding: 3px 10px;  color: #000; font-weight: 600; text-transform: uppercase;
    font-size: 14px; }

#about .icon-boxes {
  margin-top: 100px;
}

#about .icon-box {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
 /* background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);*/
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#about .icon-box .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 18px;
}

#about .icon-box .title a {
  color: #ff470b;
  transition: 0.3s;
}

#about .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
}

#about .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#about .icon-box:hover {
  transform: scale(1.08);
}

#about .icon-box:hover .title a {
  color: #ff470b;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
   /* height: auto;*/
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #e7e7e7;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}


.section-title h2 {
  font-size: 32px;
  text-align: left;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #151618; padding-top: 8px; border-top: solid 2px #151618;

}
.section-title h2 span{ color: #ff470b;  }
.section-title p { font-family:'Avenir LT Std', sans-serif; font-weight: 400; position: relative;
  margin-top: 0px; letter-spacing: 4px; margin-bottom: 8px;
  font-size: 12px;
  color: #151618; text-transform: uppercase;
  text-align: left; z-index: 9;
}

.section-title-light{padding-bottom: 30px;text-align: left;}
.section-title-light h2 { font-size: 32px;text-align: left; display: inline-block; font-weight: 600; margin-bottom: 20px; padding-bottom: 0; color: #fff;padding-top: 8px; border-top: solid 2px #fff;}
.section-title-light h2 span{ color: #ff470b;  }
.section-title-light p { font-family:'Avenir LT Std', sans-serif; font-weight: 400; position: relative;  margin-top: 0px; letter-spacing: 4px; margin-bottom: 8px;  font-size: 12px;  color: #fefefe; text-transform: uppercase;
  text-align: left; z-index: 9;}

.offerd-list{ margin: 0; padding: 0; list-style: none; }
.offerd-list ul{ margin: 0px; padding: 0px;  }
.offerd-list h5{ color: #fff; font-weight: 500; font-size: 18px; margin-bottom: 20px;}
.offerd-list li{ display: block; margin: 5px 0 10px; padding:18px 0 15px 65px; color: #fff; font-weight: 400; border-top: solid 1px #d5d5d5; position: relative;  }
.offerd-list li i{ margin: 0; padding: 0; position: absolute; top: 2px; left: 0; }
.offerd-list li i img{ width: 50px; height: 50px; position: absolute; top: 4px; }

.title_plan{ padding: 20px 0px 15px 0; font-size: 14px; }
.title_plan h4{ font-size: 16px; font-family: 'Avenir LT Std', sans-serif; text-align: left;margin-top: 5px; margin-bottom: 10px; color: #ff470b; }
.title_plan ul{ margin: 0; padding: 0;}
.title_plan ul li{ margin: 5px 0 5px 0px; list-style-position: inside; padding:10px 0 10px 2px; font-size: 14px; color: #e7e7e7; 
  list-style-type: square; border-top: solid 1px #e7e7e7; position: relative; overflow: hidden;}
.title_plan ul li:after{ content: ''; width: 8px; height: 8px; background: #ff470b; position: absolute; top: 16px;  left: 0; }
.title_plan ul li span{ color: #ff470b; }

.image-set{ text-align: center; border: solid 0px #ccc;  }
.image-set img{ width: 100%; }
.img{ position: relative; }
.img .img_tag {text-align: right; color: #fff;  font-size: 10px; letter-spacing: 1px;  position: absolute; right: 10px;
    bottom: 0px; width: 100%;}

.card-img{ position: relative; border: solid 0px #ddd; font-size: 13px; color: #fff; text-align: center;}
.card-img p{ margin: 8px 0 0 0; padding: 0; line-height: 24px; }
.image-set{position: relative;}
.image-set .hover-content {
-webkit-transition-duration: 500ms;
-o-transition-duration: 500ms;
transition-duration: 500ms;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
z-index: 10;
cursor:zoom-in;

}
.image-set .hover-content i {
position: absolute;
top: 50%;
left: 50%;
margin-top: 0;
margin-left: -26px;
z-index: 100;
display: inline-block;
width: 52px;
height: 52px;
border-radius: 50%;
background-color: #000;
text-align: center;
line-height: 50px;
font-size: 30px;
color: #ff470b;
font-style: inherit;
}
.image-set .hover-content:hover, .image-set .hover-content:focus{opacity: 1; visibility: visible;}


/* Add Tabs Section */

#tabs{
  background: #007b5e;
  color: #eee;
}


#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ff470b;
    background-color: transparent;
    border-color: transparent transparent #ff470b;
    border-bottom: 4px solid !important;
    font-size: 18px;
    font-weight: 400; letter-spacing: inherit;
}
.nav-tabs .nav-link {
    border: 0px solid transparent;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    color: #fff; letter-spacing: 1px;
    font-size: 18px; margin-bottom: -2px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{ border:0 }
/* End Tab Section */
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{ background: #202020; }
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}
.about p{ font-size: 14px; line-height: 28px; }
.transparent_bg{ background: rgba(0,0,0,1);  }
.transparent_bg h5{ font-size: 18px; margin: 0 0 10px 0; }

/*.white_box{background-color: #fff; text-align: center;
    padding: 15px;
    border-width: 0px 0px 0px 0px;
    border-radius: 0px;
    box-shadow: 3px 7px 25px 0px rgb(0 0 0 / 5%);
  }*/

.white_box {
  width: 100%;
  background: #fff;
  padding: 20px 15px;
  position: relative;
  overflow: hidden;  
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
 /* animation:dance2 4s alternate infinite;*/
  z-index: 0;
  margin-bottom: 30px; min-height: 175px;
  
  box-shadow: 0px 1px 10px rgba(0,0,0,0.6); }
  .white_box:after {
    position: absolute;
    bottom: -100%;
    right: -15%;
    content: '';
    width: 100%;
    height: 100%;
    /*background: rgba(255, 255, 255, 0.1);*/
    z-index: -1;
    opacity: 0;
    background: url(../img/black-pattern_01.jpg) no-repeat bottom;
   
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .white_box .icon { position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;   
    margin-bottom: 5px;  text-align: center; }

.white_box .icon > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 
 * Show the last image by default
*/
.white_box .icon > img:last-of-type {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
}
/* 
 * Hide the last image on hover
*/
.white_box:hover .icon > img:last-of-type {
  opacity: 1;
}
  .white_box:hover .icon{animation-name: dance_hover;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;  }
   .white_box .icon img{ height:90px; width: auto;  }
  .white_box .text { width: 100%; text-align: center; }
    
  .white_box .text p {  color: #151618; margin-bottom: 0; font-size: 15px; font-weight:500 }
  .white_box:hover, .white_box.active { display: block;
    background-color: #000;
    -webkit-box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    color: rgba(255, 255, 255, 0.9);

     }
    .white_box:hover:after, .white_box.active:after { top: 0%; left: 0%; opacity: 1; }
    
    .white_box:hover .text p, .white_box.active .text p { color: #fff; }

    @media (min-width: 992px) {
  .col-lg-5col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Add Floor Plan */
.floor-tabs .nav-link {
  color: #555;
  font-weight: 500;
  border: none;
}

.floor-tabs .nav-link.active {
  color: #ff4d2d;
  border-bottom: 2px solid #ff4d2d;
}
/* LEFT IMAGE BOX */
.plan-image-box {
  background: #fff;
 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.plan-image-box img {
  max-width: 100%;
  height: auto;
}

/* RIGHT FLOATING BOX */
.plan-content-box {
  background: #eeeeee;
  padding: 35px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  position: relative;
  left: 0; /* overlap effect */
  z-index: 99;
}

/* TEXT */
.plan-content-box h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-content-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-content-box ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .plan-content-box {
    left: 0;
    margin-top: 20px;
  }
}

.pricing-section {
  background: #f5f5f5;
 
}


.price-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* subtle background image effect */
.price-card:before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.05;
}

.price-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  color: #ff4d2d;
  font-weight: 700;
}

.onwards {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.price-card .icon {
  width: 10px;
  height: 10px;
  background: #ff4d2d;
  display: inline-block;
  margin-right: 8px;
}

.enquire-btn {
  background: #eee;
  border-radius: 25px;
  padding: 8px 20px;
  margin-top: 15px;
}

.disclaimer {
  font-size: 13px;
  color: #666;
}

/* arrows */
.price-slider .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  
  font-size: 30px;
}
.price-slider .owl-nav .owl-prev{    margin-left: -45px;}
.price-slider .owl-nav .owl-next{    margin-right: -45px;}
.price-slider .owl-prev { left: -40px; }
.price-slider .owl-next { right: -40px; }
.inactive-plan{ position: absolute; z-index: 99; width: 100%; height: 100%; }
.inactive-plan:after{ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.9); }

.inactive-plan .show_btn {-webkit-transition-duration: 500ms; -o-transition-duration: 500ms; transition-duration: 500ms; position: absolute; width: 100%; height: 100%; top: 0; left: 0; right: 0; z-index: 100; }
.inactive-plan .show_btn .btn_enq{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 8px 15px 9px;
 background: linear-gradient(left, #ab7c2f, #ede692, #ab7c2f); background: -webkit-linear-gradient(left, #ab7c2f, #ede692, #ab7c2f); 
 text-decoration: none; z-index: 999; color: #151618; text-transform: uppercase; font-weight: 500 !important;
 box-shadow: 0px 0px 8px rgb(0 0 0 / 80%);
  }
.inactive-plan .show_btn .btn_enq:hover{ background: -webkit-linear-gradient(left, #ede692, #ab7c2f, #ede692);
    background: linear-gradient(left, #ede692, #ab7c2f, #ede692); color: #000; }
.inactive-plan .show_btn:hover > .btn_enq, .inactive-plan .show_btn:focus > .btn_enq{opacity: 1; visibility: visible;}

.images-part{ position: relative; /*background: url(../img/floor-plan/floor_pattern_img.png) no-repeat; background-size: cover; */
  width: 100%; /*height: 480px; background: #fff;*/ z-index: 99; }
.images-part:after{content: ''; background: #ff470b; width: 40%; height: 40%; position: absolute; top: -15px; right: -15px; z-index: -1;}
.images-part:before{content: ''; background: #ff470b; width: 40%; height: 40%; position: absolute; bottom: -15px; left: -15px; z-index: -1;}

.floor-plan-carousel2{padding:15px; background: #fff; box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);}
.gallery-item{ margin: 0; }
.floor-content {
    position: relative;
    z-index: 111;
}
.floor-content .rj-animations .spinner {
  position: absolute;
  bottom: 0;
  z-index: -11;
}
.floor-content .rj-animations .spinner.dot {
  top: -40px;
  left: -40px;
}
.floor-content .rj-animations .spinner.ball {
  bottom: -45px;
  right: -30px;
}

.scale {
  animation: scale 2s alternate infinite;
}
@-webkit-keyframes scale {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
}
@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
  }
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}

.about-video .content ul {
  list-style: none;
  padding: 0;
}

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 24px;
  color: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-video .content p:last-child {
  margin-bottom: 0;
}

.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-video .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-video .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(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
  border-left: 15px solid #2487ce;
  transform: scale(20);
}

.about-video .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;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}
.locationBoxcircil{ position: relative; margin: auto; text-align: center; margin-bottom: 20px; }
 .locationBoxcircil img{ width: 150px; height: 150px; border-radius: 50%; border:solid 4px #fff; box-shadow:0px 1px 10px rgb(0 0 0 / 60%); }
 .locationBoxcircil .title { color: #fd4408; font-size: 18px; font-weight: 600; text-transform: uppercase; margin: 10px 0 2px; }
 .locationBoxcircil .description { color: #fff; font-size: 16px; text-align: center; line-height: 21px; font-weight: 400px}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.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: #c9e3f5;
  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: 0 15px 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.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: #2487ce !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
  .white_box{width: 98%;}
  .price-slider .owl-nav .owl-prev{    margin-left: 0;}
.price-slider .owl-nav .owl-next{    margin-right: 0;}

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.gutter-md > [class*='col-'] {
    padding-right:10px;
    padding-left:10px;
}

.services .icon-box { position: relative;
  text-align: center;
  padding: 1px;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s;
 background: url(../img/black-pattern_01.jpg) no-repeat bottom;
  border: solid 0px #e2e2e2; 
  width: 100%;
 box-shadow: 0 15px 10px -10px rgb(0 0 0 / 50%), 0 1px 4px rgb(0 0 0 / 30%), inset 0 0 20px rgb(0 0 0 / 10%);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon img {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
  width: 75px;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 300;
  margin: 10px 0 15px 0;
  font-size: 14px;
}

.services .icon-box h4 {
  color: #fff;
  transition: ease-in-out 0.3s;
}
.services .icon-box:hover h4{ color: #ff470b; }
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  background: url(../img/black-pattern_01.jpg) no-repeat top;
  box-shadow: 0 15px 10px -10px rgb(0 0 0 / 50%), 0 1px 4px rgb(0 0 0 / 30%), inset 0 0 20px rgb(0 0 0 / 10%);
}

.services .icon-box:hover .dance_hover{
  animation-name: dance_hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@keyframes dance_hover {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2487ce;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  background: url(../img/contact_bg.webp) no-repeat; background-attachment: scroll;
  background-size: cover;}
.contact .info {
  width: 100%;

}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  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: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.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: #2487ce;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background:transparent;
}

.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;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #2487ce;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #ff470b;
text-transform: uppercase;
  /*background: #ff470b;*/
  border: 0;
  padding: 10px 30px;
  color: #000;
  transition: 0.4s;
  border-radius: 0px; color: #fff;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff470b;
   color : #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
input:focus, input:focus{ background: transparent; border-color: #fff;}
.form-control{ background: transparent; border: 0; border-bottom: solid 1px rgba(255,255,255,0.8);  }
.contact .php-email-form input, .contact .php-email-form textarea{ border-radius: 0; }
.disclaimer{ margin:10px 0 0 0; padding: 0; display: block; }
.disclaimer p{ color: rgba(255,255,255,0.8); line-height: normal; font-size: 13px; margin-bottom: 10px; font-weight: 300; }
.disclaimer .rera{ display:block; margin: 20px 0;  background: rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.9); padding: 8px 15px; text-align: center; }
hr {
    border: 0;
    height: 1px;
    width: 10%;
    position: relative;
    margin: 10px auto 0 auto;
}

/*Feedback floating form*/
#feedback { position: fixed; right: 0; display: none; top: 20%; z-index: 999; margin-left: -3px; margin-bottom: -3px; background: transparent; }
#feedback-form { float: right; width: 320px; background: rgba(255, 255, 255, 0.85); height: 100%; padding:0px 0px 15px; z-index: 1000; background-clip: 'padding-box'; border: 1px solid rgba(0, 0, 0, .2); border-radius: 0px; }
#feedback-tab {     background: url(../img/enquiry_img.png) no-repeat bottom;
    float: left;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
    text-align: center;
    width: 44px;
    height: 228px; }
.enqury_btn { background: url(../img/enquiry_img.png) no-repeat top !important; width:44px; height:228px; }
#feedback-form .form-control{border-color: #333; padding-left: 5px;}
.feedback-header{ background: #151618; color: #fff; padding: 8px 20px; text-align: left; margin-bottom: 15px; font-size: 18px; }

.btn_default {
  background: -webkit-linear-gradient(top, #ab7c2f, #ede692, #ab7c2f);
    background: linear-gradient(top, #ab7c2f, #ede692, #ab7c2f);
  /*background: #ff470b;*/
  border: 0;
  padding: 10px 30px !important;
  color: #000 !important;
  text-transform: uppercase !important;
  transition: 0.4s;
  border-radius: 0px;
}

.btn_default:hover {
  background: -webkit-linear-gradient(top, #ede692, #ab7c2f, #ede692);
    background: linear-gradient(top, #ede692, #ab7c2f, #ede692); color: #000 !important;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 62px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.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: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  #feedback {display:none!important;}

  #about .icon-box { padding: 0px;}
  #about .icon-box .icon img{ width: 100px; }
  #about .icon-box .title{ font-size: 16px; }
  #about .icon-box .description{ font-size: 14px; line-height: normal; }
  .hero .container{ padding-top:0; position: absolute !important; transform: translateY(-85%) !important; top: 85%; }
  hr {    width: 30%;}


}



.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{background: #000;   padding: 0 7px !important;}
.owl-carousel .owl-nav i{ color: #ff470b; }
.mobile_device{ padding: 10px 15px 10px;  position: relative; }
.overview-carousel .owl-nav, .Aminities-carousel .owl-nav { position: relative; width: 25%; margin: auto; height: 40px; }
.overview-carousel .owl-nav .owl-next, .overview-carousel .owl-nav .owl-prev, 
.Aminities-carousel .owl-nav .owl-next, .Aminities-carousel .owl-nav .owl-prev{ position: absolute; bottom: 0; }
.overview-carousel .owl-nav .owl-next, .overview-carousel .owl-nav .owl-prev,
.Aminities-carousel .owl-nav .owl-next, .Aminities-carousel .owl-nav .owl-prev
{ margin: 0 }
.overview-carousel .owl-nav .owl-next, .Aminities-carousel .owl-nav .owl-next{ right: 0; width: 40px; height: 36px; }
.overview-carousel .owl-nav .owl-prev, .Aminities-carousel .owl-nav .owl-prev{ left: 0px; width: 40px;height: 36px;  }

.pattern_bg{background: url(../img/pattern_bg_lg.jpg) no-repeat; background-size: cover;}
/* Add Gallery Item */
.gallery_desc{position: absolute; bottom: 10px; left:0px; background: rgba(0,0,0,0.8); padding: 8px 15px;}
.gallery_desc h3{ color: #ff470b; font-size: 14px;font-weight: 300;line-height: normal; margin:0px; padding: 0; }
.gallery_desc p{ font-size: 14px; color: #fff; line-height: normal; }

.gallery-carousel .owl-item img{ border-radius: 8px; }
 .owl-nav .owl-next, .owl-nav .owl-prev {
        position: absolute;
        top: 48%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
    .owl-nav .owl-next {
        right: 0;
        display: flex;
        margin-right: 2%;
        font-size: 25px !important;
    }
    .owl-nav .owl-prev{
        left: 0;
        display: flex;
        margin-left: 2%;
        font-size: 25px !important;
    }
    .mobilebtn{ display: none; }


.gallery-carousel .owl-nav .owl-next{ right: -12%; }

.gallery-carousel .owl-nav .owl-prev{left: -12%;}
.btn_theme{
  background: #ff470b;
    
    
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 0px;}


hr.center-square {
    background: #a97d2f; 
}  
hr.center-square:before {
    content: "";
    width: 50px;
    height: 5px;
    background: -webkit-linear-gradient(left, #ab7c2f, #ede692, #ab7c2f);
    background: linear-gradient(left, #ab7c2f, #ede692, #ab7c2f);
    display: inline-block;
    border: 0px solid #a97d2f;
    position: absolute;
    top: -2px;  
    left: 50%;
    /* margin: 0 0 0 -3px; */ 
    transform: translate(-50%, 0);
}
.gallery-carousel, .gallery-carousel2{  width: 50%; margin: 0 auto; position: relative;}
#gallery_section{ padding-bottom: 75px; background: #151618; }
#gallery_section:after {
    content: "";
    background: url(../img/gallery-shadow.png) no-repeat center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    
    height: 90px;
}
.gallery-carousel .owl-stage-outer {
    overflow: visible;
}
.gallery-carousel .owl-stage-outer, .gallery-carousel2 .owl-stage-outer {
    position: relative;
    /*overflow: hidden;*/
    -webkit-transform: translateZ(0);
}
.gallery-carousel .owl-item, .gallery-carousel2 .owl-item{
    filter: grayscale(1);
    perspective: 1000px;
}
.gallery-carousel .owl-item .gallery-item, .gallery-carousel2 .owl-item .gallery-item  {
    transform: rotateY(20deg) scale(1.05);
}
.gallery-carousel .owl-item.active ~ .owl-item .gallery-item, .gallery-carousel2 .owl-item.active ~ .owl-item .gallery-item {
    transform: rotateY(-20deg) scale(1.05);
}
.gallery-carousel .owl-item.active, .gallery-carousel2 .owl-item.active {
    filter: grayscale(0);
}
.gallery-carousel .owl-item.active .gallery-item, .gallery-carousel2 .owl-item.active .gallery-item {
    transform: rotateY(0deg) scale(1) !important;
}

/* Add Video Gallery */
.video_sec_wrap {
  display: flex;
  justify-content: space-between;
  
  }
  .video_thumb_wrap {
  
  margin: 0 5% 0 0;
 /* 
  width:30%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;*/
  }
  .video_thumb {
  cursor: pointer;
  margin: 21px 0;
    position: relative;
    width: 100%;
    display: grid;
  }
  .video_thumb img{
  display: block;
  width: 100%; border-radius: 0;
  }
  .video_thumb span { background: #fff; box-shadow: 1px 1px 6px rgba(0,0,0,0.6); border-left: 5px solid #ff470b; color: #151618; padding:10px 15px; }
  .video_thumb.active span {  background: #151618; color: #fff;  }
  .video_thumb span img {
  display: block; border-radius: 0;
  margin: 10px auto;
  width: 20%;
  }
  .video_large_wrap {
    background: #fff;
    padding: 15px;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 60%);
}
  .video_large_wrap a {
  display: none;
  position: relative;
  }
  .video_large_wrap a:hover{text-decoration: none;}
  .video_large_wrap a span{ text-decoration: none; margin-top: 0px; padding: 8px 15px; font-size: 16px; font-weight:500; display: block; color: #fff; background: #000; }
  .video_large_wrap img{ width: 100%; border-radius: 0; }
  .video_large_wrap a.active {
  display: block;
  }
  .video_large_wrap a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background: url(../img/play_icon.png) no-repeat center center;
  background-size: 12%;
  /* z-index: 1; */
  width: 100%;
  height: 100%;
  }

  @media only screen and (max-width: 1024px){
    .video_sec_wrap { flex-direction: column;}
    .video_thumb_wrap {
  width: 100%;
  margin: 10px auto;
  order: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  }
  .video_thumb span{ font-size: 13px; }
  .video_thumb {
  width:45%;
  margin: 10px auto;
  }
  .video_large_wrap {
  width: 100%;
  }
  .gallery-carousel, .gallery-carousel2{ width: 80%; }
  }
.position-relative{ z-index: 9; }
#unit-plan{padding-bottom: 90px;}
/* End Video Gallery */
.google-map-box{box-shadow: 1px 1px 5px rgb(0 0 0 / 60%); background: #fff; padding: 15px;}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  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: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#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: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #ff470b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ff470b;
  color: #fff;
  text-decoration: none;
}
.list-inline>li { display: block; line-height: 36px;
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom: 5px;
    font-size: 14px;}
.list-inline>li a{ color: #ff470b; }
.list-inline>li i{ font-size: 24px; display: inline-block; width: 32px; text-align: left; float: left; margin: 0; padding: 0; }
.list-inline { margin: 10px 0 0; display: inline-block; }
.list-inline>li a:hover{ color: #fff }

/* Add Thankyou page CSS */
.tahnkyou-0{ background:#f7f7f7; text-align: center;  }
.tahnkyou-0 .thanku-images{ width: 100%; margin: auto; }
.tahnkyou-0 .thanku-images img{ width: 20%; margin-top:25px; margin-bottom: 25px; }
.tahnkyou-0 p{ font-size: 14px; color: #000; line-height: 24px; text-align: center; padding-bottom: 10px; }
.tahnkyou-0 p a{ text-decoration: none; color:#000; font-weight: bold; }

.heading-popup {
    border: 0px solid #ede692;
    border-bottom: 0;
    background: #202020;
    padding: 15px 0;
    text-align: center; margin-bottom: 20px;
}
.heading-popup h3{ font-size:18px; font-weight: 500; color: #fff; text-transform: uppercase; margin: 0; }
a.close-popup {
    border-radius: 50%;
    position: absolute;
    right: -6px;
    background: #ff470b;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    width: 30px;
    height: 30px;
    font-size: 24px;
    text-align: center;
    line-height: 28px;
    opacity: 1!important;
    top: -8px;
    text-shadow: none;
}
.modal-body{padding: 0 0 15px 0}
.contact-form input, .contact-form textarea {  margin-bottom: 20px;height: 40px;
    margin-bottom: 20px; padding: 0px;  width: 100%; border: 0; border-bottom: solid 1px #8d8d8d !important;
    background: transparent;
    color: #000;
    border-radius: 0} 
@media (max-width: 768px) {
  section{ padding: 30px 0; }
  /*Add Slider Image */
  #overview{ padding-top: 15px; }
.hero{ height: 95vh; }
.hero_slider00{background: url(../img/slider-m/m-slider-hero.jpg) top center; background-size: cover;}
.hero_slider01{background: url(../img/slider-m/m-slider-01.jpg) top center; background-size: cover;}
.hero_slider02{background: url(../img/slider-m/m-slider-02.jpg) top center; background-size: cover;}
.hero_slider03{background: url(../img/slider-m/m-slider-03.jpg) top center; background-size: cover;}
.hero h2{ font-size: 16px; }
.hero p{ font-size: 12px; }
.section-title h2{ font-size: 24px; }
.section-title, .section-title-light{ padding-bottom: 0; }
.section-title-light p, .section-title p{ letter-spacing: 1px; }
  #unit-plan{ padding-bottom: 30px; }
  .title_plan{ margin-top: 50px; }
.note_txt{ padding: 15px; margin: 0 }
#gallery_section{ padding-bottom: 15px; }
#gallery_section:after{ background-size: cover; height: 32px; }

.owl-carousel.off { display: block; }


  .portfolio-details .portfolio-description h2 {  width: 100%; }
  .portfolio-details .portfolio-info {  position: static; margin-top: 30px; }
  .gallery_desc {  position: relative;  bottom: 0; left: 0px; padding: 15px;}
  .gallery_desc h3{ font-size: 14px; font-weight: 300; }
  .about p{ line-height: normal; font-size: 12px; }
  .card-img{margin-bottom: 15px;}
  .title_plan{ font-size: 12px; padding: 15px; }
  .mobilebtn {    display: block!important;}
  .mobilebtn {  width: 100%; float: left; position: fixed; bottom: 0; left: 0; margin: 0px; z-index: 99;}
  .mobilebtn a button {
    width: 100%;
    float: left;
    margin-right: 0;
    color: #fff;
    border: none;
    line-height: 48px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
     background: #fd4408
  
}

  .logo img{ height: 60px; }
  #site-header{ height: 75px; }

  .list-inline>li{ display: inline-block;padding-right:10px; } 
  .disclaimer .rera{ font-size: 10px; padding: 8px; margin-bottom: 0; }
  .transparent_bg{ padding-bottom: 70px !important; }

}