@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap");
@font-face {
  font-family: "ivyModeBold";
  src: url("../fonts/ivymode/IvyMode-Bold.ttf");
}

@font-face {
  font-family: "ivyModeSemiBold";
  src: url("../fonts/ivymode/IvyMode-SemiBold.ttf");
}

@font-face {
  font-family: "ivyModeSemiBoldItalic";
  src: url("../fonts/ivymode/IvyMode-SemiBoldItalic.ttf");
}

body {
  background: #f7f7f7;
  color: #333;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "ivyModeBold";
  font-weight: normal;
  color: #333;
  line-height: normal;
}
h1 {
  font-family: "ivyModeSemiBold";
}
a {
  color: #143702;
  text-decoration: none !important;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
img {
  max-width: 100%;
  border-radius: 3px;
}
a:hover {
  color: #143702;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
a:hover,
a:focus {
  color: #143702;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 26px;
  font-family: "Manrope", sans-serif;
}
.bg-dark {
  background: #17171b !important;
}
.z-index {
  z-index: 9;
}
.position-relative {
  position: relative !important;
}
.form-control:focus {
  box-shadow: none;
  outline: 0 none;
  border-bottom: 1px solid #143702;
}
.btn:focus {
  outline: none !important;
  box-shadow: none;
}
button:focus {
  outline: 0 none;
  box-shadow: none;
}
.button:focus {
  outline: none;
  box-shadow: none;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 9px 30px;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  /*font-weight: 600;*/
  /*border: 1px solid #febe10;*/
  background: #143702;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
  margin-top: 25px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  will-change: transform;
  min-width: 180px;
}
.button:hover {
  color: #fff;
}
.button:before,
.button:after {
  content: "";
  width: 0;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  z-index: -1;
  opacity: 0.4;
}
.button:after {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background: #143702;

  opacity: 1;
}
.button:hover:before,
.button:hover:after {
  width: 100%;
}
.button:hover:after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.white-button.button {
  background: #ffffff;
  color: #143702;
}
.btn-light.button {
  background: #f0f6e0;
  color: #143702;
  font-weight: 700;
}
.btn-light.button:hover,
.white-button.button:hover {
  color: #ffffff;
}
.bg-gray {
  background-color: #f8f8f9;
}
.bg-none {
  background: none !important;
}
.color-text {
  color: #143702;
}
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mr-15 {
  margin-right: 15px;
}
.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.section-padding {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 65px;
}
.section-title h5 {
  color: #143702 !important;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.section-title h2 {
  color: #143702;
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  font-family: "ivyModeBold";
}
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.mr-0 {
  margin: 0;
}
.mr-top-50 {
  margin-top: 50px;
}
.back-to-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background: #143702;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.back-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.back-to-top:hover:before,
.back-to-top:focus:before {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
  color: #ffffff;
}
.back-to-top.active {
  top: 90%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.back-to-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.back-to-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}
.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* [ Start Overlay ] */

[data-overlay-dark],
[data-overlay-light] {
  position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #000;
}
[data-overlay-light]:before {
  background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
  color: #fff;
}
[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
  color: #dad6d6;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}
/* [ End Overlay ] */

/* owl theme */

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 7px;
  margin: 5px 5px;
  background-color: #777;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 5px;
  transition: 0.3s;
  border: 2px solid transparent;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #143702 !important;
  width: 7px;
  height: 7px;
  transition: 0.3s;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
  border: 2px solid #143702;
  transition: 0.3s;
}

/**************************************
 * 02. Preloader Area CSS
 **************************************/

#preloader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
}

#preloader .line {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #fff;
  border-bottom: 2px solid #143702;
}

#preloader .line:nth-child(1) {
  width: 25px;
  height: 25px;
  animation: circle-anim 600ms linear infinite;
}

#preloader .line:nth-child(2) {
  width: 50px;
  height: 50px;
  animation: circle-anim 800ms linear infinite;
}

#preloader .line:nth-child(3) {
  width: 75px;
  height: 75px;
  animation: circle-anim 1000ms linear infinite;
}

#preloader .line:nth-child(4) {
  width: 100px;
  height: 100px;
  animation: circle-anim 1200ms linear infinite;
}

@keyframes circle-anim {
  to {
    transform: rotate(360deg);
  }
}

/**************************************
 * 03.Navber Area Style
 *************************************/
.header-navber-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  background: transparent;
}

.header-navber-area .nav-top-bar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-navber-area .nav-top-bar .call-to-action p {
  margin: 0 13px 0 0;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}

.header-navber-area .nav-top-bar .call-to-action p i {
  margin-right: 3px;
  font-size: 16px;
}

.header-navber-area .nav-top-bar .call-to-action p a {
  color: #ffffff;
}

.header-navber-area .nav-top-bar .call-to-action p a:hover,
.header-navber-area .nav-top-bar .call-to-action p a:focus {
  color: #ffc107;
}

.header-navber-area .nav-top-bar .top-social {
  float: right;
  padding: 0;
  margin: 0 0 0 10px;
  list-style-type: none;
}

.header-navber-area .nav-top-bar .top-social li {
  display: inline-block;
}

.header-navber-area .nav-top-bar .top-social li a {
  color: #ffffff;
  font-size: 15px;
  margin-left: 5px;
}

.header-navber-area .nav-top-bar .top-social li a:hover,
.header-navber-area .nav-top-bar .top-social li a:focus {
  color: #143702;
}

.header-navber-area .nav-top-bar .opening-hours {
  float: right;
}

.header-navber-area .nav-top-bar .opening-hours p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 0;
}

.header-navber-area .nav-top-bar .opening-hours p i {
  margin-right: 3px;
  font-size: 16px;
}

.header-navber-area .nav-top-bar.template-color-bg {
  background: #143702;
  border-bottom: none;
}

.header-navber-area .nav-top-bar.template-color-bg .call-to-action p a {
  color: #ffffff;
}

.header-navber-area .nav-top-bar.template-color-bg .top-social li a {
  color: #ffffff;
}

.navbar-b {
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar-b.navbar-reduce {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
  position: relative;
  padding-right: 0px;
  padding-left: 10px;
}
.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  padding-right: 0;
  padding-left: 25px;
  font-family: "Mukta", sans-serif;
}
.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
  color: #1b1b1b;
}
.navbar-b.navbar-trans .nav-link:hover {
  color: #fff;
}
.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
  color: #fff;
}

.navbar-b.navbar-reduce {
  transition: all 0.5s ease-in-out;
/*  background-color: rgb(240 246 224 / 92%);*/
  background-color: rgba(72 142 81 / 90%);
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
  animation: 500ms ease-in-out 0s normal fadeInDown;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.navbar-b.navbar-reduce .nav-link {
  color: #333;
}
.navbar-b.navbar-reduce .nav-link:hover {
  color: #505050;
}
.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
  color: #ffc518;
}
.navbar-b.navbar-reduce .navbar-brand {
  color: #fff;
}
.navbar-b.navbar-reduce .navbar-toggler span {
  background-color: #1b1b1b;
}
.navbar-b .navbar-brand {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  visibility: visible !important;
}
.navbar-b .dropdown-menu {
  margin: 1.12rem 0 0;
  border-radius: 0;
}
.navbar-b .dropdown-menu .dropdown-item {
  padding: 0.7rem 1.7rem;
  transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item:hover {
  background-color: #143702;
  color: #fff;
  transition: all 500ms ease;
}
.navbar-b .dropdown-menu .dropdown-item.active {
  background-color: #143702;
}
.navbar-toggler {
  position: relative;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}
.navbar-toggler span {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}
.navbar-b .black-logo {
  display: none;
}
.black-logo {
  filter: invert(1);
}
.navbar-b.navbar-reduce .navbar-brand .white-logo {
  display: none;
}
.navbar-b.navbar-reduce .navbar-brand .black-logo {
  display: block;
}

/**************************************
 * 04.Home Slider Style
 *************************************/

.slider {
  position: relative;
}
.slider.fixed-slider {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.slider .swiper-slide-active {
  z-index: 3;
}
.slider .parallax-slider {
  position: relative;
}
.slider .parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 50px;
}
.slider .parallax-slider .swiper-slide .bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
.slider .parallax-slider .swiper-slide-active .caption h1 {
  opacity: 1;
  animation: fadeInLeft 0.8s;
  -webkit-animation-delay: 1s;
  animation-delay: 0.3s;
}

.slider .parallax-slider .caption h1 {
  font-size: 65px;
  line-height: 86px;
  font-weight: 700;
  color: #fff;
  opacity: 1;
  visibility: visible;
}
.slider .parallax-slider .caption p {
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
  opacity: 1;
}
.slider .parallax-slider .swiper-slide-active .caption p {
  color: #fff;
  font-weight: 400;
  margin-top: 10px;
  opacity: 1;
  animation: fadeInRight 0.8s;
}
.slider .parallax-slider .swiper-slide-active .caption .home-slider-btn {
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  opacity: 1;
  animation: fadeInUp 1s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.slider .control-text {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 100%;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.slider .control-text .swiper-nav-ctrl {
  color: #eee;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-left: 30px;
  margin-right: 30px;
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  background: transparent;
  padding: 6px 10px;
  border-radius: 3px;
}

.slider .control-text .swiper-nav-ctrl:after {
  font-size: 25px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  text-align: center;
  background: rgb(0, 0, 0, 0.3);
}
.slider .swiper-pagination-bullets {
  bottom: 20px;
}
.slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.slider .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/**************************************
 * 05.Services Section Style
 *************************************/

.services-area .services-single-item {
  padding: 10px 0px;
  position: relative;

  margin-bottom: 30px;
}

.services-area .services-single-item .services-content {
  position: relative;
  z-index: 7;
}
.services-area .services-single-item h5 {
  color: #143702;
  font-size: 20px;
  font-weight: 700;
  /*margin-bottom: 15px;*/
}
.services-area .services-single-item .count-number {
  font-size: 65px;
  line-height: 75px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #999;
  opacity: 0.8;
  margin-bottom: 20px;
}
/*.services-area .bg-1 {
    background-image: url(../img/services/services-1.jpg);
}
.services-area .bg-2 {
    background-image: url(../img/services/services-2.jpg);
}
.services-area .bg-3 {
    background-image: url(../img/services/services-3.jpg);
}
.services-area .bg-4 {
    background-image: url(../img/services/services-4.jpg);
}
.services-area .bg-5 {
    background-image: url(../img/services/services-5.jpg);
}
.services-area .bg-6 {
    background-image: url(../img/services/services-6.jpg);
}
*/

/*newly added*/
.services-content {
  display: flex;
}
.service-right-cont {
  padding-left: 10px;
}

/**************************************
 * 06.About Section Style
 *************************************/

.about-area {
}

.about-content h2 {
  margin-bottom: 20px;
  line-height: normal;
}
.about-content-text p {
  margin-bottom: 15px;
}
.about-content-text h3 {
  color: #143702;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.about-image {
  text-align: center;
  position: relative;
}

.waves-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-image .iq-video {
  background: #fff;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 25px;
  color: #143702;
  float: left;
  border-radius: 100%;
  line-height: 62px;
  z-index: 9;
  position: relative;
}
.about-image .iq-video i {
  margin-left: 5px;
}
.about-image .iq-waves {
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: 2;
}
.about-image .iq-waves .waves {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(197, 164, 126, 0.5);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
.about-image .iq-waves .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.about-image .iq-waves .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.about-image .iq-waves .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/**************************************
 * 09. Team Section Style
 *************************************/
.icon-image {
  text-align: center;
}

.team-area .section-title {
  margin-bottom: 35px;
}

.single-team-box {
  margin-top: 30px;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-image {
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}

.team-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-team-box:hover .team-image::before {
  opacity: 0.8;
  visibility: visible;
}

.single-team-box .team-image img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team-box:hover .team-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.team-social-icon a {
  padding: 5px 5px;
  color: #fff;
  font-size: 16px;
  margin: 0 5px;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  will-change: transform;
}
.single-team-box:hover .team-social-icon a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.team-info {
  padding: 20px 15px 0px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.team-info span {
  color: #143702;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: normal;
}

/**************************************
 * 11. Contact Section Style
 *************************************/

.contact-area {
}
.contact-area .section-title {
  margin-bottom: 35px;
}

.contact-form-box {
  margin-top: 70px;
}

.form-input-box {
  position: relative;
}

.contact-area .form input,
.contact-area .form textarea {
  width: 100%;
  padding: 10px 20px;
  border: none;
  color: #333;
  background-color: #f3f3f3;
  border-radius: 3px;
  height: 50px;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
}
.contact-area .form textarea {
  height: auto;
  max-height: 300px;
  max-width: 100%;
}

#contact-form .contact-btn-box {
  text-align: center;
}

#contact-form .contact-btn-box .button {
  margin: 0;
}
.form-group {
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

button,
input,
textarea:focus {
  border: none;
  outline: none;
}
.single-store-location {
  padding: 30px 15px;
  background: #fbfbfb;
  border: 1px solid #f3f3f3;
  margin-top: 30px;
}

.single-store-location h3 {
  color: #143702;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.single-store-location p {
  color: #333;
}
.single-store-location p a {
  color: #333;
  letter-spacing: 0px;
}
.single-store-location p {
  color: #333;
  letter-spacing: 0px;
  margin-top: 10px;
  font-weight: 400;
}

.social-media-icon {
  margin-top: 10px;
}
.social-media-icon li {
  display: inline-block;
  margin-right: 10px;
}
.social-media-icon li a {
  color: #333;
  background: transparent;
  border-radius: 10px;
  width: 40px;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
}
.social-media-icon li a:hover {
  opacity: 0.4;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #333;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #333;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #333;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}
.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

/**************************************
 * 12.Partner Logo Section Style
 *************************************/

.partner-area {
  padding: 70px 0px;
}
.partner-item {
  padding: 5px 0px;
  margin: 5px 10px;
}
.partner-area .partner-carousel img {
  opacity: 0.8;
  max-width: 100%;
  width: inherit !important;
  margin: 0 auto;
}

.partner-area .partner-carousel img:hover {
  opacity: 1;
  cursor: pointer;
}

/**************************************
 * 13.Footer Section Style
 *************************************/

#footer {
  font-size: 14px;
  color: #fff !important;
  background: transparent
    linear-gradient(180deg, #0f131a 0%, #14171e 25%, #252e33 58%, #10181d 100%)
    0% 0% no-repeat padding-box;
}

.footer-logo h3,
.address-box h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 200;
}

.footer-logo-address {
  margin-top: 50px;
  margin-bottom: 50px;
}

.social-links {
  margin-top: 15px;
  display: flex;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #e1dbce;
  margin: 10px;
  border-radius: 50%;
}
.social-links a i {
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  line-height: 1;
}
.disclaimer-box h3 {
  color: #fff;
  margin-bottom: 8px;
}
.rera-qr {
  display: flex;
  align-items: flex-start;
}
.disclaimer-box p {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  color: #cbcbcb;
}
.rera-qr img {
  width: 100px;
}
.credit-box {
  border-top: 1px solid #ffffff57;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 200;
}
.credit {
  text-align: right;
}
.disclaimer-box {
  margin-bottom: 30px;
}

.services-content .icon-img {
  width: 15%;
}
.service-right-cont {
  width: 85%;
}
a.link_map {
  margin: 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
}
.single-amenity {
  display: flex;
  align-items: center;
  margin: 15px 10px;
}
.single-amenity img {
  height: 55px;
}
p.amenity-title {
  margin-bottom: 0px;
  padding-left: 14px;
  font-size: large;
}

.last-appo-background {
  background-color: #1e5500;
  background-image: url("../img/last-oppo-background.jpg");
}
.color-light {
  color: #f0f6e0 !important;
}

.about-content-text h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 5px;
  font-size: 13px;
}

.about-content p {
  font-size: larger;
  line-height: 28px;
}
.masterplan_section span {
  font-size: 12px;
  display: inline-block;
  margin: 10px 0px;
}
#footer p {
  color: #fff;
  line-height: normal;
  margin-bottom: 10px;
}
.address-box p {
  font-size: 14px;
}
.tagline-banner {
  font-family: "ivyModeSemiBoldItalic";
  font-size: 35px;
  line-height: 40px;
}
.tagline-banner {
  margin-bottom: 21px;
}
.gallery-item {
  margin-bottom: 20px;
}
.godrej_logo img {
  width: 130px;
}
.hillview_logo img {
  width: 180px;
}
.right-navbar {
  display: flex;
  align-items: center;
}
.right-navbar .button {
  margin-top: 0px;
  text-transform: uppercase;
}

/*SIDEBAR CSS START*/
.sidebar-contact {
  position: fixed;
  top: 65%;
  right: -350px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 20px 20px;
  background: #fff;
  /*    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
  /*    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
}

.sidebar-contact.active {
  right: 0;
  -webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
  box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input,
.sidebar-contact textarea,
.contactUs input,
.contactUs textarea {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  margin-bottom: 0px;
  background: transparent;
  border: 0;
  border-radius: 0px;
  border-bottom: 1px solid #000;
}

.sidebar-contact h2 {
  margin: 0 0 15px;
  padding: 0;
  color: #143702;
  text-transform: uppercase;
  text-align: center;
  font-size: 25px;
}

textarea {
  height: 60px;
  resize: none;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.sidebar-contact textarea,
#popup-modalForm textarea {
  margin-bottom: 0;
}

.sidebar-contact buuto[type="submit"] {
  background: #ca9d75;
  border: 1px solid #ca9d75;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  height: auto;
  padding: 10px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sidebar-contact input[type="submit"]:focus,
.sidebar-contact input[type="submit"]:hover {
  background-color: transparent;
  color: #ca9d75;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-check .form-check-input {
  width: 15px;
  height: 15px;
}
/*
.toggle.active {
	height: 35px;
	width: 35px;
	line-height: 35px;
	top: 0;
	left: -35px;
}
*/
.toggle {
  background: #63401a;
}

.toggle {
  position: absolute;
  height: 35px;
  width: 160px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  top: 58px;
  left: -98px;
  line-height: 36px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  color: #000;
}
.toggle.active {
  display: none;
}
/*.toggle.active:before {
	position: absolute;
	content: 'X';
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	
	left: 37%;
}

.toggle.active:before {
	content: 'X';
}*/

.toggle:before {
  content: "Enquire Now";
  font-size: 12px;
  color: #143702;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.toggle:hover {
  background-color: #143702;
}

.toggle:hover::before {
  color: #fff;
}

/*.error_msg {
  display: none;
}*/
.error {
  color: red;
  font-size: 12px;
  padding-top: 5px;
}

/*************************************** SIDEBAR FORM CSS ************************************/
.navbar-b.navbar-reduce {
  padding-bottom: 0px;
  padding-top: 0px;
}
.modal-header {
  border-bottom: 0px;
  text-align: right;
  justify-content: end;
}
.button-group-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.button.modal-button {
  background: #00000029;
  color: #000;
  font-size: 12px;
  margin-top: 10px;
  min-width: 200px;
}
button.btn-close {
  height: 28px;
  width: 28px;
  background: transparent;
  float: right;
}
.modal-body {
  padding-bottom: 40px;
}
.colorful_line {
  display: block;
  height: 2px;
  width: 50%;
  background: #000;
  margin: 10px auto;
  background-image: linear-gradient(
    to right,
    #b73465,
    #b73465 30%,
    #397fbc 30%,
    #397fbc 70%,
    #4ba133 70%
  );
}
.button.modal-button:after {
  background: #d6d6d6;
}
.black-button {
  background: #000;
}
.form-control {
  background: #d6d6d6;
  border-radius: 50px;
  margin-bottom: 8px;
  font-size: 12px;
  padding: 6px 20px;
  height: 40px;
  color: #000;
  border-radius: 5px;
}

.step {
  display: none;
}
.step.active {
  display: block;
}

.otp-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-input:focus {
  border-color: #007bff;
}
span.helpline_number {
  position: absolute;
  bottom: 3px;
  right: 6px;
}

.video-wrapper {
  /*outline: 2px solid #fff;
    outline-width: thick;
    outline-offset: 7px;*/
  text-align: center;
}
.service-right-cont p {
  font-size: 14px;
  line-height: normal;
  margin-top: 5px;
}
.waves-box i {
  color: #fff;
  outline: 3px;
  outline-offset: 10px;
  outline-style: solid;
}
.element_bg {
  width: 80%;
  background-image: url("../img/Element.png");
  padding: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}
.close-form {
  cursor: pointer;
}

.radioBtn label {
  display: inline-flex;
  margin: 0;
}
.radioBtn {
  font-size: 14px;
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.location-map-wrap {

}
.location-map-wrap iframe {
  width: 100%;
  height: 400px;
}
.location-map-video iframe{
  pointer-events: none;
}