/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100%;
}

a {
  color: #216363;
  text-decoration: none;
}

a:hover {
  color: #e8c224 !important;
  text-decoration: none;
}

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

.subtitle {
  color: #216363;
}

.html {
  height: 100%;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #216363;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e8c224;
  color: #216363;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #216363;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #216363;
}

#header .logo img {
  /* max-height: 40px; */
  width: 26%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  /* padding: 0; */
  padding: 20px 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #e8c224 !important;
}

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

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #216363;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*
  Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #216363;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #216363;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 100vh; */
  margin-top: 45px;
  /* background: url("./../images/HeroImage_1920x1200.jpg") top center no-repeat; */
  background-size: 100% auto !important;
  position: relative;
  overflow: hidden;
}

.special-launch img{
  max-height: 300px;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #216363;
  margin: 10px 0 0 0;
  font-size: 26px;
}

.chat-bot {
  top: 50%;
  left: 50%;
}

@media (max-width: 1024px) {
  #hero {
  text-align: center;
  padding-top: 58px;
  /* background: url("./../images/Ananta_800 x 1200.jpg") left center no-repeat; */
  background-size: cover;
  height: 100%;
}
#hero .header-form-section {
  bottom: 30px !important;
}
#hero .web-banner{
  display: none;
}
#hero .mobile-banner{
  display: block !important;
}

.header-topic{
  font-size: 80%;
}

.special-launch img {
  max-height: 220px;
  margin: 10px;
}

  #hero h1 {
    font-size: 28px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 500px) {
  #header .logo img {
    /* max-height: 40px; */
    width: 40% !important;
}
  #hero {
    /* height: 82vh; */
  }

  .header-topic {
    font-size: 75%;
  }

  #hero .container{
    height: 100%;
    align-items: end;
    display: flex;
  }
}


@media(max-height: 740px)
{
    #hero {
        /* height: 85vh !important; */
    }
}

@media(max-height: 668px)
{
    #hero {
        /* height: 100vh !important; */
    }
}

@media(max-width: 2000px)
{
    #hero {
        /* height: 100vh !important; */
    }
}

@media(max-width: 450px)
{
    #hero {
        /* height: 81vh !important; */
    }

    .form-parent{
      padding-bottom: 50px !important;
    }
}

@media(max-width: 380px)
{
    #hero {
        /* height: 100vh !important; */
    }
    .form-parent{
      padding-bottom: 35px !important;
    }
}

@media (max-height: 710px) {
  .contact-inputs div {
    margin-bottom: 5px;
  }

  .header-topic {
    font-size: 65%;
  }

    #hero h1 {
      font-size: 22px;
    }

    #hero h2 {
      font-size: 16px;
      line-height: 20px;
    }
}

@media (max-height: 600px) {
  .header-topic {
    font-size: 55%;
  }

  #hero h1 {
    font-size: 20px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 20px;
  }
}


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

.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

.section-bg {
  padding: 120px 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  /* background: #291f1a; */
  min-height: 40px;
  margin-top: 82px;
  color: #000;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

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

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

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

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

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

.rera-page li {
  margin-bottom: 1rem;
}

.rera-page ul i{
  font-size: 20px;
  padding-right: 4px;
  color: #216363;
}

.rule-title {
  margin-top: 40px;
  font-weight: bolder;
}

.thank-you div{
  width: 100%;
  text-align: center;
}

.thank-you img{
  width: 100%;
  margin: 10px;
  height: 450px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

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

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

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #216363;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #b6a53c;
  background: #216363;
}

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

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #216363;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

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

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 2px 35px rgba(223, 223, 223, 0.9);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 64px;
  height: 64px;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  background: #fff;
  color: #216363;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #444444;
}

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

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #216363;
}

.tabs .nav-link.active {
  background: #216363;
  color: #fff;
  border-color: #216363;
}

.users-list {
  display: flex;
  justify-content: space-evenly
}

.tabs .subtitle {
  display: none;
  margin-bottom: -2px;
}

@media (max-width: 990px) {
  .tabs .subtitle {
    display: block;
  }
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #216363;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.services .icon {
  position: absolute;
  left: 10px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 44px;
  margin: 10px;
  line-height: 1;
  transition: 0.5s;
  color: #216363;
}

.services .title {
  margin-left: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #291f1a;
  transition: ease-in-out 0.3s;
}

.services .title a:hover {
  color: #216363;
}

.services .description {
  font-size: 16px;
  margin-left: 50px;
  line-height: 24px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/

.location-container img {
  width: 100%;
  /* margin-left: 5%; */
}

.connected{
  margin-top: -70px;
}

.media-title {
  color: #216363;
  font-size: 1.2rem;
}

.media {
  display: flex;
  margin-bottom: 1rem;
}

.media-bullet {
  color: #216363;
}

@media (max-width: 770px) {
  .connected {
    margin-top: -40px;
  }
}

@media (max-width: 450px) {
  .connected {
    margin-top: -20px;
  }
}

/*--------------------------------------------------------------
# Video 
--------------------------------------------------------------*/
.video .box {
  background: #000;
  text-align: center;
  border: 5px solid;
  border-color: #216363;
  position: relative;
  overflow: hidden;
  /* height: 446px; */
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.video-container{
  width: 100%;
  /* height: 400px; */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.video-container:hover{
  cursor: pointer;
}

.video-container:hover > .video-play{
  color: #FF0000;
}

.video-container .video-image{
  /* margin-top: 50px; */
  /* height: 300px; */
  width: 100%;
  object-fit: contain;
  overflow: hidden;
  position: static;
}

.youtube {
  width: 100%;
  height:400px;
  height: auto;
  border:none;
  border-radius: 10px;
  border: 0px;
}

.yt-text{
  color: #216363;
  font-size: 20px;
  text-align: center;
}

.video-play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: hsla(0, 0%, 16%, 0.95);
  font-size: 60px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 3;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
}

.video .box .shade {
  height: 20px;
  width: 20px;
  background-color: #ffffffe7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #216363;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #216363;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .email-form .form-group {
  margin-bottom: 25px;
}

.contact .email-form .checkbox {
  margin-bottom: 5px;
  width: 90%;
  margin-left: 5%;
  font-size: 12px;
}

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

.contact .email-form input:focus, .contact .email-form textarea:focus {
  border-color: #111111;
}

.contact .email-form input {
  padding: 10px 15px;
}

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

.contact .email-form .button[type="submit"]{
  background: #216363;
  border: 0;
  margin-top: 40px;
  padding: 12px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .email-form .button[type="submit"]:hover{
  background: #b6a53c;
}

/* Header Form */

.header-form {
  background: white;
  border-radius: 5px;
  width: 85%;
  padding:10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contact-button .button[type="submit"] {
  background: #216363;
  border: 0;
  padding: 5px 22px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-button .button[type="submit"]:hover {
  background: #b6a53c;
}

.contact-inputs div{
  margin-bottom: 10px;
}
.contact-inputs .checkbox{
  margin-bottom: 10px;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .header-form {
    width: 90%;
  }

  .contact-inputs div {
    margin-bottom: 5px;
    font-size: 14px;
  }
}

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

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

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

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #42332b;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #216363;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

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

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #216363;
  bottom: 0;
  left: 0;
}

#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: white;
  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: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

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

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #216363;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e8c224;
  color: #216363;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #216363;
  color: #fff;
  text-decoration: none;
}

.rules {
  display: flex;
  justify-content:center;
  margin-bottom: -1rem;
}

.floating_btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.floating__call_btn {
  position: fixed;
  bottom: 184px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.floating__Enquiry_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.floating__Enquiry_btn .contact_icon{
  /* padding: 5px 10px; */
  background-color: #206363 !important;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.floating__call_btn .contact_icon{
  box-shadow: 0 0 0 0 #0076c0;
}
.floating__call_btn .floating__call_btn{
  box-shadow: 0 0 0 0 #42db87;
}

.contact_icon {
  background-color: #ffffff;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  /* box-shadow: 0 0 0 0 #42db87; */
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#masterPlan a:hover {
  color: #000000 !important;
  text-decoration: none;
}