/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
.crossLine {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 24px;
  cursor: pointer;
  border: inherit;
}

#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 5px;
}

#loader5 {
  position: fixed;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 5px;
}

#loader4 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 5px;
}


.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
@media (max-width: 575px) {
  .crossLine .line {
    width: 25px;
  }
}

#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}
body.overflowhidden {
  overflow: hidden;
}

@media (min-width: 1901px) and (max-width: 2500px) {
  .container {
    max-width: 1500px;
  }
}
button {
  border: none !important;
}

h1 {
  color: #FFD640;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  h1 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 15px;
    line-height: 15px;
  }
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

ul {
  list-style: none;
}
ul li {
  text-decoration: none;
}
ul li:last-child {
  padding-bottom: 0;
}
ul li a {
  color: #202020;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 1366px) {
  ul li {
    margin-bottom: 15px;
  }
  ul li a {
    font-size: 16px;
    line-height: 26px;
  }
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-control.error {
  border-bottom: 1px solid red !important;
}

label.error {
  color: red !important;
  font-size: 14px !important;
  line-height: 24px !important;
  padding-bottom: 0px !important;
  position: absolute;
}

.defaultButton {
  background: #FFD640;
  padding: 15px 20px;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  position: relative;
  border: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}
.defaultButton img {
  margin-left: 10px;
}
.defaultButton::after, .defaultButton::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.defaultButton::after {
  top: -9px;
  left: -9px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 5px;
}
.defaultButton::before {
  bottom: -9px;
  right: -9px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  border-radius: 5px;
}
.defaultButton:hover::after, .defaultButton:hover::before {
  width: calc(100% + 17px);
  height: calc(100% + 17px);
  border-color: #c55f15;
}
.defaultButton:hover, .defaultButton:focus {
  background: #e26522 !important;
  color: #fff !important;
}
@media (max-width: 1366px) {
  .defaultButton {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .defaultButton {
    font-size: 12px;
    padding: 10px 15px;
    line-height: 12px;
  }
  .defaultButton img {
    height: 10px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: 5px;
  }
}

.title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 10px;
}
@media (max-width: 1366px) {
  .title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .title {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .title {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 15px;
    line-height: 15px;
  }
}

.abtTitle {
  color: #000;
  font-size: 80px;
  font-weight: 700;
  line-height: 90px;
}
@media (max-width: 1366px) {
  .abtTitle {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 1199px) {
  .abtTitle {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .abtTitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .abtTitle {
    font-size: 25px;
    line-height: 30px;
  }
}

.abtPara {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1366px) {
  .abtPara {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .abtPara {
    font-size: 16px;
    line-height: 26px;
  }
}

.specialTitle {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 1366px) {
  .specialTitle {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 1199px) {
  .specialTitle {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .specialTitle {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .specialTitle {
    font-size: 20px;
  }
}

.sectionTitle {
  font-size: 60px;
  color: #000;
  font-style: normal;
  font-weight: 300;
  line-height: 70px;
  margin-bottom: 0;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.sectionPadding {
  padding: 120px 0px;
}
@media (max-width: 1199px) {
  .sectionPadding {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 60px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 60px 0px;
  }
}
@media (max-width: 380px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.bullets {
  list-style: none;
  padding-left: 0;
}
.bullets li {
  padding-left: 20px;
  position: relative;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #c55f15;
}
.bullets li p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .bullets li p {
    font-size: 14px;
    line-height: 22px;
  }
}

.mainHeader {
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 15px;
  background: #fff;
  top: 40px;
  -webkit-box-shadow: 0px 5px 55px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 5px 55px 0px rgba(0, 0, 0, 0.16);
}
.mainHeader header {
  position: relative;
  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;
}
.mainHeader header .logo a {
  display: block;
}
.mainHeader header .logo a img {
  height: 80px;
}
@media (max-width: 1366px) {
  .mainHeader header .logo a img {
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 991px) {
  .mainHeader header .logo a img {
    height: 70px;
    position: relative;
    border-radius: 0;
    background: inherit;
    padding: 0;
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
  }
}
@media (max-width: 767px) {
  .mainHeader header .logo a img {
    height: 40px;
  }
}
.mainHeader header .navbarLink ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin-left: 60px;
  position: relative;
}
.mainHeader header .navbarLink ul li::before {
  content: "";
  position: absolute;
  left: 0;
  background: #FFD640;
  height: 14px;
  width: 0;
  bottom: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 1366px) {
  .mainHeader header .navbarLink ul li::before {
    height: 8px;
    bottom: 4px;
  }
}
.mainHeader header .navbarLink ul li.active::before, .mainHeader header .navbarLink ul li:hover::before {
  width: 100%;
}
.mainHeader header .navbarLink ul li:last-child {
  padding: 0;
}
.mainHeader header .navbarLink ul li:last-child::before {
  display: none;
}
.mainHeader header .navbarLink ul li:last-child a {
  background: #FFD640;
  padding: 15px;
  color: #000;
  cursor: pointer;
}
@media (max-width: 1366px) {
  .mainHeader header .navbarLink ul li:last-child a {
    padding: 12px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li:before {
    display: none;
  }
  .mainHeader header .navbarLink ul li:last-child a {
    padding: 20px 30px;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  color: #4d4d4d;
  font-size: 20px;
  padding: 0px;
  display: inline-block;
  font-weight: 500;
}
@media (max-width: 1366px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
    padding: 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 40px;
    padding: 0;
    line-height: 40px;
    font-weight: 200;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #000;
}
.mainHeader header .navbarLink ul li.active a.defaultButton, .mainHeader header .navbarLink ul li:hover a.defaultButton {
  background: #c55f15 !important;
  color: #fff;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #FFD640;
    background: transparent;
  }
  .mainHeader header .navbarLink ul li.active a.defaultButton:before, .mainHeader header .navbarLink ul li.active a.defaultButton:after, .mainHeader header .navbarLink ul li:hover a.defaultButton:before, .mainHeader header .navbarLink ul li:hover a.defaultButton:after {
    display: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #fff;
  padding: 0;
  margin: 0;
  min-width: 142px;
  -webkit-transform: inherit !important;
          transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 10px;
  font-size: 16px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #DCFFFC;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #000 !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown li {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #000;
    text-align: center;
    padding: 3px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    background: transparent !important;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li:hover, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li:hover {
    background: transparent;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li a, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li a {
    color: #fff;
    font-size: 20px;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li a:hover, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li a:hover {
    color: #4d4d4d !important;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown {
  left: 0 !important;
  top: 100% !important;
  position: relative;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li {
  padding-left: 20px;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li a {
  font-size: 13px;
  padding: 0;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover {
  background: none;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover a {
  color: #000 !important;
}
@media (max-width: 1366px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 40px;
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
    margin-top: 15px;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 35px;
  }
  .mainHeader header .navbarLink .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink .navbar-nav li {
    margin-left: 0;
    padding-bottom: 50px;
  }
  .mainHeader header .navbarLink .navbar-nav li ul li {
    padding: 0;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink .navbar-nav {
    margin-top: 15%;
  }
}
.mainHeader .navBlock ul li .button {
  background: #FFD640;
}
.mainHeader .navBlock .navbarBtn button {
  outline: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
@media (max-width: 1366px) {
  .mainHeader {
    top: 20px;
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .mainHeader {
    top: 0;
  }
}

.homebanner {
  position: relative;
}
.homebanner .homeSlider {
  margin-bottom: 0;
}
.homebanner .homeSlider .bannerBox {
  position: relative;
  display: block !important;
}
.homebanner .homeSlider .bannerBox .bannerImage img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.homebanner .homeSlider .bannerBox .bannerText .homeBox {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  position: absolute;
  bottom: 70px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.homebanner .homeSlider .bannerBox .bannerText .homeBox .bannerDesc {
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
  margin: 0;
}
.homebanner .homeSlider .slick-dots {
  position: absolute;
  right: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: auto;
}
.homebanner .homeSlider .slick-dots li {
  position: relative;
  width: inherit;
  height: inherit;
  cursor: pointer;
  width: auto;
  margin: 10px 0;
}
.homebanner .homeSlider .slick-dots li button {
  font-size: 0;
  background: #D9D9D9;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.homebanner .homeSlider .slick-dots li button::before {
  display: none;
}
.homebanner .homeSlider .slick-dots li.slick-active button {
  background: #FFD640;
  height: 40px;
  border-radius: 10px;
}
@media (max-width: 1366px) {
  .homebanner .homeSlider .bannerBox .bannerText .homeBox {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .homebanner .homeSlider .bannerBox .bannerImage img {
    height: 70vh;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox {
    bottom: 30px;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .bannerDesc {
    font-size: 20px;
    line-height: 25px;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .heading {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .homebanner .homeSlider .bannerBox .bannerText .homeBox {
    padding: 20px 30px;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .bannerDesc {
    font-size: 25px;
    line-height: 25px;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .heading {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .homebanner .homeSlider .bannerBox .bannerImage img {
    height: 50vh;
  }
  .homebanner .homeSlider .bannerBox .bannerText .container {
    padding: 0;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox {
    padding: 15px 30px;
    position: relative;
    bottom: inherit;
    border-radius: 0;
    background: #3a2a2a;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .bannerDesc {
    font-size: 20px;
    line-height: 20px;
  }
  .homebanner .homeSlider .bannerBox .bannerText .homeBox .heading {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (max-width: 380px) {
  .homebanner .homeSlider .slick-dots {
    top: 35%;
  }
  .homebanner .homeSlider .slick-dots li.slick-active button {
    height: 30px;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner .innerImage img {
  width: 100%;
}
.innerbanner .innerBox {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  position: absolute;
  bottom: 0px;
}
.innerbanner .innerBox .abtTitle {
  color: #FFD640;
}
@media (min-width: 1400px) and (max-width: 1800px) {
  .innerbanner .innerText .innerBox {
    padding: 25px;
  }
  .innerbanner .innerText .innerBox .abtTitle {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 1366px) {
  .innerbanner .innerBox {
    padding: 20px 30px;
  }
  .innerbanner .innerBox h1 {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .innerbanner .innerImage img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .innerbanner .innerBox {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .innerbanner .innerBox {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .innerbanner .innerImage img {
    height: 300px;
  }
}
@media (max-width: 380px) {
  .innerbanner .innerImage img {
    height: 250px;
  }
}

.hmAboutSec {
  background: #EAEAEA;
}
.hmAboutSec.abtSec {
  background: transparent;
}
.hmAboutSec .bigText {
  max-width: 90%;
}
.hmAboutSec .smallText .defaultButton {
  color: #fff;
  background: #000;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
}
.hmAboutSec .smallText.smallTextPara {
  margin-top: 50px;
}
.hmAboutSec .smallText .abtPara {
  margin-bottom: 40px;
}
.hmAboutSec .smallText .abtPara:last-child {
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .hmAboutSec.abtSec {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .hmAboutSec.abtSec {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .hmAboutSec.abtSec {
    padding: 60px 0px;
  }
  .hmAboutSec .title {
    margin-bottom: 5px;
  }
  .hmAboutSec .bigText {
    max-width: 100%;
  }
  .hmAboutSec .smallText.smallTextPara {
    margin-top: 30px;
  }
  .hmAboutSec .smallText .abtPara {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hmAboutSec .bigText {
    margin-bottom: 10px;
  }
  .hmAboutSec .bigText h2 {
    font-size: 25px;
    line-height: 25px;
  }
  .hmAboutSec .title {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 380px) {
  .hmAboutSec .smallText .abtPara {
    margin-bottom: 20px;
  }
  .hmAboutSec .smallText.smallTextPara {
    margin-top: 20px;
  }
}

.featuredSec {
  padding-bottom: 0px;
}
.featuredSec .featureTitle {
  max-width: 25%;
}
.featuredSec .featureTitle h2 {
  margin-bottom: 50px;
}
.featuredSec ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.featuredSec ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 100%;
  margin-bottom: 100px;
}
.featuredSec ul li .featureBox {
  max-width: 630px;
  margin-right: auto;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.featuredSec ul li .featureBox img {
  width: 100%;
  border-radius: 10px;
}
.featuredSec ul li .featureBox .featureText {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 10px 0 10px 0px;
  -webkit-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
  padding: 20px;
  width: 450px;
}
.featuredSec ul li .featureBox .featureText h5 {
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
}
.featuredSec ul li .featureBox .featureText p {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.featuredSec ul li .featureBox .featureText.projectListing {
  bottom: -70px;
}
.featuredSec ul li .featureBox:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.featuredSec ul li:nth-child(even) {
  margin-top: -30%;
  margin-bottom: 0;
}
.featuredSec ul li:nth-child(even) .featureBox {
  margin-left: auto;
}
.featuredSec .button {
  text-align: center;
  padding-bottom: 60px;
}
@media (min-width: 1400px) and (max-width: 1800px) {
  .featuredSec ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
@media (max-width: 1366px) {
  .featuredSec {
    padding-top: 100px;
  }
  .featuredSec ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
  .featuredSec ul li .featureBox .featureText {
    max-width: 400px;
  }
  .featuredSec ul li .featureBox .featureText.projectListing {
    bottom: -50px;
  }
}
@media (max-width: 1199px) {
  .featuredSec {
    padding-top: 80px;
  }
  .featuredSec ul li .featureBox img {
    border-radius: 10px 10px 0 0;
  }
  .featuredSec ul li .featureBox .featureText {
    max-width: 100%;
    position: relative;
    border-radius: 0 0 10px 10px;
  }
  .featuredSec ul li .featureBox .featureText.projectListing {
    bottom: inherit;
  }
  .featuredSec ul li .featureBox .featureText h5 {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 991px) {
  .featuredSec ul li {
    margin-bottom: 60px;
  }
  .featuredSec ul li .featureBox .featureText {
    width: 100%;
  }
  .featuredSec ul li .featureBox .featureText h5 {
    font-size: 24px;
    line-height: 24px;
  }
  .featuredSec ul li .featureBox .featureText p {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .featuredSec.featuedProperties {
    padding: 60px 0px;
  }
  .featuredSec .featureTitle {
    max-width: 100%;
  }
  .featuredSec ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .featuredSec ul li:nth-child(even) {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .featuredSec ul li:last-child {
    margin-bottom: 10px;
  }
}

.luxurySec {
  background: url(../images/form_banner.jpg) no-repeat;
  background-size: cover;
  width: 100%;
}
.luxurySec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.luxurySec .formSec {
  background: #fff;
  padding: 80px 60px;
  border-radius: 20px;
  max-width: 75%;
  margin-bottom: -215px;
  -webkit-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
}
.luxurySec .formSec .form-group {
  padding: 10px 0;
}
.luxurySec .formSec .form-group input {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
}
.luxurySec .formSec .form-group select {
  color: #5B5B5B;
  border-radius: 0;
  background: url(../images/down_arrow.svg) #EDEDED no-repeat !important;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
  background-size: 16px;
}
.luxurySec .formSec .form-group .form-control {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
  padding: 15px;
  height: 60px;
}
.luxurySec .formSec .form-group .form-control:focus {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  outline: none !important;
}
.luxurySec .formSec .form-group textarea {
  height: inherit !important;
}
.luxurySec .formSec .button {
  text-align: center;
  margin-top: 20px;
}
.luxurySec .formSec .button .defaultButton {
  display: block;
  font-weight: 700;
  padding: 12px;
  border: none !important;
  width: 100%;
}
.luxurySec .formText .title {
  color: #2B3C66;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}
.luxurySec .formText .abtTitle {
  color: #6C7DA8;
  font-size: 80px;
  font-weight: 700;
  line-height: 90px;
}
@media (max-width: 1366px) {
  .luxurySec .formSec {
    max-width: 80%;
    padding: 40px;
  }
  .luxurySec .formSec .form-group .form-control {
    height: 50px;
  }
  .luxurySec .formText .title {
    font-size: 40px;
    line-height: 40px;
  }
  .luxurySec .formText .abtTitle {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1199px) {
  .luxurySec .formSec {
    max-width: 85%;
  }
  .luxurySec .formText .title {
    font-size: 35px;
    line-height: 35px;
  }
  .luxurySec .formText .abtTitle {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .luxurySec .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .luxurySec .formText {
    margin-bottom: 30px;
  }
  .luxurySec .formText .title {
    text-align: center;
  }
  .luxurySec .formText .abtTitle {
    text-align: center;
  }
  .luxurySec .formSec {
    margin: 0 auto -120px;
  }
}
@media (max-width: 767px) {
  .luxurySec .formSec {
    max-width: 100%;
  }
  .luxurySec .formText .title {
    font-size: 30px;
    line-height: 30px;
  }
  .luxurySec .formText .abtTitle {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .luxurySec .formText .title {
    font-size: 25px;
    line-height: 25px;
  }
  .luxurySec .formText .abtTitle {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 380px) {
  .luxurySec .formSec {
    padding: 40px;
  }
  .luxurySec .formText .title {
    font-size: 22px;
    line-height: 22px;
  }
  .luxurySec .formText .abtTitle {
    font-size: 28px;
    line-height: 28px;
  }
}

.box_zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.box_zoom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0%;
  width: 0%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  z-index: 1;
}
.box_zoom::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  background: url(../images/zoom.svg) center center no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  visibility: hidden;
  z-index: 2;
}
.box_zoom:hover::before {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
}
.box_zoom:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
  visibility: visible;
}

.gallerySec {
  padding-top: 220px;
}
.gallerySec .sectionTitle {
  text-align: center;
}
.gallerySec .grid {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.gallerySec .grid .grid-item {
  margin-bottom: 30px;
}
.gallerySec .grid .grid-item:last-child {
  margin-bottom: 0;
}
.gallerySec .grid-item img {
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 1366px) {
  .gallerySec {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .gallerySec {
    padding-top: 130px;
  }
  .gallerySec .grid .grid-item {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .gallerySec .grid {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 575px) {
  .gallerySec .grid {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  .gallerySec .grid .grid-item:last-child {
    margin-bottom: 30px;
  }
  .gallerySec .grid .grid-item:nth-child(2) {
    margin-bottom: 15px;
  }
  .gallerySec .grid .grid-item:nth-child(4) {
    margin-bottom: 15px;
  }
}

.commonSec {
  background: url(../images/amenities.jpg) no-repeat;
  width: 100%;
  background-size: cover;
  position: relative;
}
.commonSec::before {
  content: "";
  position: absolute;
  background: #FFD640;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
}
.commonSec .amenities {
  position: relative;
}
.commonSec .amenities .sectionTitle {
  text-align: center;
}
.commonSec .amenities ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.commonSec .amenities ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
  max-width: 100%;
}
.commonSec .amenities ul li .commonBox {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 25px 0 20px;
  margin: 15px;
}
.commonSec .amenities ul li .commonBox img {
  margin-bottom: 10px;
}
@media (max-width: 1366px) {
  .commonSec .amenities ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media (max-width: 991px) {
  .commonSec .amenities ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .commonSec .amenities ul li .commonBox img {
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .commonSec .amenities ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 480px) {
  .commonSec .amenities ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
}

.testimonialSec {
  background: url(../images/testimonials_bg.png) no-repeat;
  background-position: center left;
}
.testimonialSec .sectionTitle {
  text-align: center;
}
.testimonialSec .testimonialSlider {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonialSec .testimonialSlider .testimonialBox {
  position: relative;
  padding: 50px 0px 30px 60px;
  margin-bottom: 30px;
}
.testimonialSec .testimonialSlider .testimonialBox::before {
  content: "";
  position: absolute;
  background: url(../images/quotes.png) no-repeat;
  top: 15px;
  width: 84px;
  height: 70px;
  background-size: contain;
}
.testimonialSec .testimonialSlider .testimonialBox::after {
  content: "";
  position: absolute;
  background: #ECECEC;
  height: 100%;
  width: 85%;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonialSec .testimonialSlider .testimonialBox .testimonialText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonialSec .testimonialSlider .testimonialBox .testimonialText .abtPara {
  font-style: italic;
  font-weight: 700;
  line-height: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  max-width: 100%;
  margin-right: 30px;
  margin-bottom: 0;
}
.testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 100%;
}
.testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage .title {
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 10px;
}
.testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage .abtTitle {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  font-style: italic;
}
.testimonialSec .testimonialSlider .slick-dots {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 30%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.testimonialSec .testimonialSlider .slick-dots li {
  position: relative;
  width: inherit;
  height: inherit;
  cursor: pointer;
  width: auto;
  margin: 10px 0;
}
.testimonialSec .testimonialSlider .slick-dots li button {
  font-size: 0;
  background: #D9D9D9;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.testimonialSec .testimonialSlider .slick-dots li button::before {
  display: none;
}
.testimonialSec .testimonialSlider .slick-dots li.slick-active button {
  background: #FFD640;
  height: 40px;
  border-radius: 10px;
}
@media (max-width: 1366px) {
  .testimonialSec .testimonialSlider .slick-dots {
    right: -15px;
  }
}
@media (max-width: 991px) {
  .testimonialSec .testimonialSlider .slick-dots {
    right: -18px;
  }
  .testimonialSec .testimonialSlider .testimonialBox::after {
    width: 100%;
  }
  .testimonialSec .testimonialSlider .testimonialBox .testimonialText {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonialSec .testimonialSlider .slick-dots {
    right: 0;
    display: inherit;
    bottom: 0;
    top: inherit;
  }
  .testimonialSec .testimonialSlider .slick-dots li.slick-active button {
    width: 40px;
    border-radius: 10px;
    height: 0;
  }
  .testimonialSec .testimonialSlider .slick-dots li button {
    margin: 0 10px;
  }
  .testimonialSec .testimonialSlider .slick-slide {
    padding: 0 15px;
  }
  .testimonialSec .testimonialSlider .slick-slide .testimonialBox {
    padding: 50px 40px;
    margin-bottom: 50px;
  }
  .testimonialSec .testimonialSlider .slick-slide .testimonialBox::before {
    width: 70px;
  }
  .testimonialSec .testimonialSlider .slick-slide .testimonialBox .testimonialText .abtPara {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
  }
  .testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage .title {
    text-align: center;
  }
  .testimonialSec .testimonialSlider .testimonialBox .testimonialText .testimonialImage .abtTitle {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .testimonialSec .testimonialSlider .testimonialBox::before {
    left: 15px;
  }
}
@media (max-width: 380px) {
  .testimonialSec .testimonialSlider .slick-slide .testimonialBox::before {
    width: 50px;
    top: 5px;
    left: 5px;
  }
}

.placesSec {
  padding-top: 0;
}
.placesSec .sectionTitle {
  text-align: center;
  margin: 0;
}
.placesSec .placesSlider .slick-slide {
  padding: 0px 15px;
}
.placesSec .placesSlider .placesBox {
  background: #fff;
  -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.16);
  padding: 35px 50px;
  border-radius: 10px;
  margin: 60px 0;
}
.placesSec .placesSlider .placesBox img {
  margin: 0 auto;
  height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}
.placesSec .placesSlider .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
}
.placesSec .placesSlider .slick-dots li {
  position: relative;
  width: inherit;
  height: inherit;
  cursor: pointer;
  width: auto;
}
.placesSec .placesSlider .slick-dots li button {
  font-size: 0;
  background: #D9D9D9;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.placesSec .placesSlider .slick-dots li button::before {
  display: none;
}
.placesSec .placesSlider .slick-dots li.slick-active button {
  background: #FFD640;
  width: 40px;
  border-radius: 10px;
}
@media (max-width: 1366px) {
  .placesSec {
    padding-bottom: 100px;
  }
  .placesSec .placesSlider .placesBox img {
    height: 90px;
  }
}
@media (max-width: 1199px) {
  .placesSec {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .placesSec .placesSlider .placesBox {
    padding: 15px 35px;
  }
}
@media (max-width: 767px) {
  .placesSec {
    padding-bottom: 40px;
  }
}

.projectListingPage {
  padding-top: 280px;
  padding-bottom: 0;
}
.projectListingPage ul li {
  margin-bottom: 180px;
  position: relative;
}
.projectListingPage ul li .featureBox {
  -webkit-transform: inherit !important;
          transform: inherit !important;
}
.projectListingPage ul li .projectListingBox .featureText {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.projectListingPage ul li .projectListingBox .projectListing {
  z-index: 3;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectListingName h5 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag {
  text-align: center;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag p {
  margin-bottom: 0;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag .defaultButton {
  padding: 7px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin: 5px 0;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag .defaultButton::before, .projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag .defaultButton::after {
  display: none;
}
.projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag .defaultButton:hover {
  background: #FFD640;
}
.projectListingPage ul li .projectListingBox .projectListing .roomFeatures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projectListingPage ul li .projectListingBox .projectListing .roomFeatures .projectText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.projectListingPage ul li .projectListingBox .projectListing .roomFeatures .projectText .boxText {
  margin-bottom: 0;
  margin-right: 5px;
}
.projectListingPage ul li .projectListingBox .projectListing .roomFeatures .projectText img {
  border-radius: 0;
}
.projectListingPage ul li .projectListingBox:hover .featureText {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.projectListingPage ul li::before, .projectListingPage ul li::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
  z-index: 1;
  border-radius: 10px;
}
.projectListingPage ul li::before {
  left: 50%;
  top: 10px;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.projectListingPage ul li::after {
  left: 50%;
  bottom: 10px;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.projectListingPage ul li .projectListingBox::before, .projectListingPage ul li .projectListingBox::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
  border-radius: 10px;
}
.projectListingPage ul li .projectListingBox::before {
  left: 10px;
  top: 50%;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.projectListingPage ul li .projectListingBox::after {
  right: 10px;
  top: 50%;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.projectListingPage ul li .projectListingBox:hover::before, .projectListingPage ul li .projectListingBox:hover::after {
  top: 10px;
  height: 96.5%;
}
.projectListingPage ul li:hover::before, .projectListingPage ul li:hover::after {
  left: 10px;
  width: 96.5%;
}
@media (max-width: 1366px) {
  .projectListingPage {
    padding-top: 200px;
  }
  .projectListingPage ul li {
    margin-bottom: 130px;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText {
    margin-bottom: 35px;
  }
  .projectListingPage ul li:hover::before, .projectListingPage ul li:hover::after {
    left: 10px;
    width: 96%;
  }
}
@media (max-width: 1199px) {
  .projectListingPage {
    padding-top: 160px;
  }
  .projectListingPage ul li {
    margin-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .projectListingPage {
    padding-top: 150px;
  }
  .projectListingPage ul li {
    margin-bottom: 70px;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText {
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag {
    text-align: left;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectListingName {
    margin-bottom: 10px;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectListingName h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .projectListingPage ul li:hover::before, .projectListingPage ul li:hover::after {
    left: 10px;
    width: 93%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .projectListingPage {
    padding: 80px 0;
  }
  .projectListingPage ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 15px;
  }
  .projectListingPage ul li:nth-child(even) {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
  .projectListingPage ul li .projectListingBox .projectListing .projectListingText .projectTag {
    text-align: center;
  }
  .projectListingPage ul li .projectListingBox .roomFeatures .projectText .boxText {
    font-size: 16px;
  }
  .projectListingPage ul li .projectListingBox::before, .projectListingPage ul li .projectListingBox::after {
    display: none;
  }
  .projectListingPage ul li::before {
    display: none;
  }
}

.demandSec {
  background: #EAEAEA;
}
.demandSec .abtTitle {
  margin-bottom: 30px;
}
.demandSec .rentalText ul {
  padding: 0;
}
.demandSec .rentalText ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  line-height: 30px;
}
.demandSec .rentalText ul li::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: #000;
  border-radius: 50px;
  left: 0;
  top: 10px;
}
.demandSec .rentalImage {
  margin-bottom: -40%;
}
.demandSec .rentalImage img {
  width: 100%;
}
@media (max-width: 1366px) {
  .demandSec {
    padding-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .demandSec .rentalText ul li {
    font-size: 18px;
  }
  .demandSec .rentalText ul li::before {
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 991px) {
  .demandSec .rentalText {
    margin-bottom: 30px;
  }
  .demandSec .rentalImage {
    margin-bottom: 0;
  }
  .demandSec .rentalImage img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .demandSec .abtTitle {
    margin-bottom: 20px;
  }
  .demandSec .rentalText ul li {
    font-size: 16px;
    line-height: 16px;
  }
  .demandSec .rentalText ul li::before {
    width: 7px;
    height: 7px;
    top: 4px;
  }
  .demandSec .rentalImage {
    text-align: center;
  }
}

.missionSec {
  padding-top: 180px;
}
@media (max-width: 1199px) {
  .missionSec {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .missionSec .sectionTitle {
    text-align: center;
  }
  .missionSec .abtPara {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .missionSec {
    padding-top: 60px;
  }
  .missionSec .sectionTitle {
    margin-bottom: 25px;
  }
}

.inquirySec .inquiryForm .form-group {
  padding: 20px 0;
  padding-top: 0;
}
.inquirySec .inquiryForm .form-group input {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
}
.inquirySec .inquiryForm .form-group select {
  color: #5B5B5B;
  border-radius: 0;
  background: url(../images/down_arrow.svg) #EDEDED no-repeat !important;
  border: none;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
  background-size: 16px;
  border: none;
}
.inquirySec .inquiryForm .form-group .form-control {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
  padding: 15px;
  height: 60px;
}
.inquirySec .inquiryForm .form-group .form-control:focus {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  outline: none !important;
  border: none;
}
.inquirySec .inquiryForm .form-group textarea {
  height: inherit !important;
}
.inquirySec .inquiryForm .button .defaultButton {
  padding: 15px 50px;
}
.inquirySec .inquiryBox {
  background: #FFD640;
  padding: 40px 30px;
}
.inquirySec .inquiryBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.inquirySec .inquiryBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 20px;
}
.inquirySec .inquiryBox ul li span {
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.inquirySec .inquiryBox ul li p {
  padding-left: 35px;
}
.inquirySec .inquiryBox ul li p a {
  word-break: break-word;
  line-height: 30px;
}
.inquirySec .inquiryBox ul li p a:hover {
  color: #c55f15;
}
.inquirySec .inquiryBox ul li:first-child p {
  max-width: 70%;
  line-height: 28px;
}
.inquirySec .inquiryBox .socialLinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
}
.inquirySec .inquiryBox .socialLinks ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  max-width: 100%;
}
.inquirySec .inquiryBox .socialLinks ul li:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1366px) {
  .inquirySec {
    padding: 100px 0;
  }
  .inquirySec .inquiryForm .form-group .form-control {
    height: 50px;
  }
  .inquirySec .inquiryBox .socialLinks ul li {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .inquirySec {
    padding: 60px 0px;
  }
  .inquirySec .button {
    margin-bottom: 30px;
  }
  .inquirySec .inquiryBox ul li:first-child p {
    max-width: 88%;
  }
}
@media (max-width: 767px) {
  .inquirySec .button {
    text-align: center;
  }
  .inquirySec .inquiryBox ul li:first-child p {
    max-width: 88%;
  }
}
@media (max-width: 380px) {
  .inquirySec .inquiryBox ul li p a {
    word-break: break-word;
    line-height: 25px;
  }
}

.mapSec {
  padding: 0;
}
.mapSec iframe {
  display: block;
}

.residenceSec .residenceTitle .sectionTitle {
  margin-bottom: 20px;
}
.residenceSec .residenceTitle .roomFeatures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.residenceSec .residenceTitle .roomFeatures .projectText {
  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;
  position: relative;
  margin-right: 20px;
}
.residenceSec .residenceTitle .roomFeatures .projectText::before {
  content: "";
  position: absolute;
  background: #5B5B5B;
  height: 100%;
  left: 0;
  top: 0;
  width: 1px;
}
.residenceSec .residenceTitle .roomFeatures .projectText:first-child::before {
  display: none;
}
.residenceSec .residenceTitle .roomFeatures .projectText img {
  padding: 0 10px 0 20px;
}
.residenceSec .residenceTitle .roomFeatures .projectText p {
  color: #5B5B5B;
}
.residenceSec .title {
  text-align: center;
  color: #2B3C66;
}
.residenceSec p {
  text-align: center;
  color: #5B5B5B;
}
@media (max-width: 1366px) {
  .residenceSec {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .residenceSec {
    padding: 80px 0;
  }
  .residenceSec .residenceTitle .roomFeatures .projectText {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .residenceSec {
    padding: 60px 0px;
  }
  .residenceSec .residenceTitle {
    margin-bottom: 30px;
  }
  .residenceSec .title {
    text-align: left;
  }
  .residenceSec p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .residenceSec {
    padding: 40px 0px;
  }
  .residenceSec .residenceTitle {
    margin-bottom: 20px;
  }
  .residenceSec .residenceTitle .roomFeatures .projectText img {
    height: 15px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .residenceSec .residenceTitle .roomFeatures .projectText .boxText {
    font-size: 14px;
    line-height: 14px;
  }
}

.residenceImages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex: 1;
      flex: 1;
}

.imageLeft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767px) {
  .imageLeft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .imageLeft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.imageRight {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 767px) {
  .imageRight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .imageRight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.residenceImages ul {
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex: 1;
      flex: 1;
  height: 100%;
  padding: 0 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin: 0;
}

.residenceImages ul li {
  padding: 15px;
  margin: 0;
}
@media (max-width: 767px) {
  .residenceImages ul li {
    padding: 5px;
  }
}

.residenceImages ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.residenceImages li:first-child:nth-last-child(1) {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.residenceImages li:first-child:nth-last-child(1),
.residenceImages li:first-child:nth-last-child(1) ~ li {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.residenceImages li:first-child:nth-last-child(2),
.residenceImages li:first-child:nth-last-child(2) ~ li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.residenceImages li:first-child:nth-last-child(3),
.residenceImages li:first-child:nth-last-child(3) ~ li {
  width: 33.3333333333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
}

.residenceImages li:first-child:nth-last-child(4),
.residenceImages li:first-child:nth-last-child(4) ~ li {
  width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.residenceImages li:first-child:nth-last-child(1) {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.residenceImages li:first-child:nth-last-child(2),
.residenceImages li:first-child:nth-last-child(2) ~ li {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.residenceImages li:first-child:nth-last-child(3),
.residenceImages li:first-child:nth-last-child(3) ~ li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.residenceImages li:first-child:nth-last-child(3),
.residenceImages li:first-child:nth-last-child(1) ~ li {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.residenceImages li:first-child:nth-last-child(4),
.residenceImages li:first-child:nth-last-child(4) ~ li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media (max-width: 480px) {
  .residenceImages li:first-child:nth-last-child(4),
  .residenceImages li:first-child:nth-last-child(4) ~ li {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.abtResidence {
  padding-top: 0;
}
.abtResidence .abtResidenceTitle {
  position: relative;
}
.abtResidence .abtResidenceTitle .specialTitle {
  margin-bottom: 20px;
}
.abtResidence .bookingBox {
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.16);
  padding: 35px 50px;
}
.abtResidence .bookingBox .title {
  margin-bottom: 30px;
  color: #2B3C66;
}
.abtResidence .bookingBox .bookingForm .row {
  margin-bottom: 10px;
}
.abtResidence .bookingBox .bookingForm .row .form-group {
  padding-top: 0;
  margin-bottom: 20px;
}
.abtResidence .bookingBox .bookingForm .row .form-group input {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
}
.abtResidence .bookingBox .bookingForm .row .form-group select {
  color: #5B5B5B;
  border-radius: 0;
  background: url(../images/down_arrow.svg) #EDEDED no-repeat !important;
  background-position: calc(100% - 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-right: 2rem !important;
  background-size: 16px;
}
.abtResidence .bookingBox .bookingForm .row .form-group .form-control {
  background: #EDEDED;
  color: #5B5B5B;
  border-radius: 0;
  padding: 15px;
  height: 60px;
}
.abtResidence .bookingBox .bookingForm .row .form-group .form-control:focus {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  outline: none !important;
}
.abtResidence .bookingBox .bookingForm .defaultButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1366px) {
  .abtResidence {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .abtResidence .abtResidenceTitle {
    margin-bottom: 40px;
  }
  .abtResidence .abtResidenceTitle::before {
    bottom: -35px;
  }
  .abtResidence .bookingBox {
    margin-top: 40px;
  }
  .abtResidence .bookingBox .title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .abtResidence .bookingBox .title {
    text-align: center;
  }
}

.residenceAmenities {
  padding-top: 0px;
}
.residenceAmenities .title {
  font-size: 50px;
  margin-bottom: 50px;
}
.residenceAmenities .amenitiesList {
  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;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.residenceAmenities .amenitiesList::before {
  content: "";
  position: absolute;
  border: 1px solid #CCCCCC;
  width: 100%;
  left: 0;
  bottom: -50px;
}
.residenceAmenities .amenitiesList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 100%;
  margin-bottom: 30px;
}
.residenceAmenities .amenitiesList li p {
  padding-left: 30px;
  font-size: 25px;
}
@media (max-width: 1366px) {
  .residenceAmenities .title {
    font-size: 40px;
    line-height: 40px;
  }
  .residenceAmenities .amenitiesList li p {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .residenceAmenities .title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .residenceAmenities .title {
    text-align: center;
  }
  .residenceAmenities .amenitiesList {
    margin-bottom: 0;
  }
  .residenceAmenities .amenitiesList li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .residenceAmenities .amenitiesList li img {
    margin-bottom: 10px;
  }
  .residenceAmenities .amenitiesList li p {
    padding: 0;
  }
  .residenceAmenities .amenitiesList::before {
    bottom: -20px;
  }
}

.locationSec {
  padding-top: 0;
}
.locationSec .title {
  font-size: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .locationSec .title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .locationSec .title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .locationSec .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

.booknowmodal .modal-content {
  border-radius: 20px;
}
.booknowmodal .modal-dialog {
  max-width: 950px;
}
.booknowmodal .modal-dialog .modal-header {
  position: absolute;
  right: 0;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.booknowmodal .modal-dialog .modal-header img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.booknowmodal .modal-dialog .modal-body {
  padding: 60px 100px;
}
.booknowmodal .modal-dialog .modal-body .inquirySec {
  padding: 0;
}
.booknowmodal .modal-dialog .modal-body .inquirySec .sectionTitle {
  text-align: center;
}
.booknowmodal .modal-dialog .modal-body .inquirySec .inquiryForm .form-group input {
  border: none;
}
.booknowmodal .modal-dialog .modal-body .inquirySec .button .defaultButton {
  padding: 15px 30px;
}
@media (max-width: 767px) {
  .booknowmodal .modal-dialog .modal-body {
    padding: 60px;
  }
  .booknowmodal .modal-dialog .modal-body .inquirySec .sectionTitle {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 380px) {
  .booknowmodal .modal-dialog .modal-header img {
    height: 25px;
  }
  .booknowmodal .modal-dialog .modal-body {
    padding: 50px;
  }
  .booknowmodal .modal-dialog .modal-body .inquirySec .sectionTitle {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .booknowmodal .modal-dialog .modal-body .inquirySec .inquiryForm .form-group {
    margin-bottom: 10px;
  }
}

.footer {
  padding: 0;
  background: url(../images/footer_bg.jpg) no-repeat;
  width: 100%;
  background-size: cover;
  background-position: top;
  padding-bottom: 0;
}
.footer .mainFooter {
  padding: 40px 0;
}
.footer .mainFooter ul {
  padding: 0;
}
.footer .mainFooter ul li:hover a, .footer .mainFooter ul li.active a {
  color: #c55f15;
}
.footer .mainFooter .leftFooter img {
  height: 120px;
}
@media (max-width: 1366px) {
  .footer .mainFooter .leftFooter img {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .footer .mainFooter .leftFooter img {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .footer .mainFooter .leftFooter img {
    height: 40px;
  }
}
.footer .mainFooter .rightFooter ul {
  padding: 0;
}
.footer .mainFooter .rightFooter ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .mainFooter .rightFooter ul li .contactBox {
  position: relative;
}
.footer .mainFooter .rightFooter ul li i {
  font-size: 30px;
}
.footer .mainFooter .rightFooter ul li p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #202020;
  padding-left: 30px;
}
.footer .mainFooter .rightFooter ul li span {
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
}
.footer .mainFooter .rightFooter .socialLinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .mainFooter .rightFooter .socialLinks ul li {
  margin-right: 30px;
}
.footer .mainFooter .rightFooter .socialLinks ul li:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer .bottomFooter {
  background: #4D4D4D;
}
.footer .bottomFooter .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .bottomFooter .copyright .copyrightText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .bottomFooter .copyright .copyrightText img {
  padding-right: 10px;
}
.footer .bottomFooter p {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  padding: 20px 0;
  color: #fff;
}
@media (max-width: 1366px) {
  .footer .mainFooter .rightFooter ul li p {
    font-size: 16px;
    line-height: 26px;
  }
  .footer .mainFooter .rightFooter ul li span {
    top: 0;
  }
  .footer .bottomFooter .copyright p {
    padding: 15px 0;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .footer .mainFooter .leftFooter img {
    height: 55px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer .mainFooter .rightFooter ul li {
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  .footer {
    background: url(../images/footer_tab.jpg) no-repeat;
    width: 100%;
    background-size: cover;
    background-position: top;
    padding-bottom: 0;
  }
  .footer .leftFooter {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer .leftFooter img {
    height: 70px;
  }
  .footer .midFooter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  .footer .mainFooter .rightFooter ul {
    max-width: 400px;
    margin: 0 auto 30px;
    text-align: center;
  }
  .footer .mainFooter .rightFooter ul li {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .mainFooter .rightFooter ul li p br {
    display: none;
  }
  .footer .mainFooter .rightFooter .socialLinks ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer .midFooter ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer .bottomFooter .copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .bottomFooter .copyright p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer .leftFooter img {
    height: 60px;
  }
  .footer .bottomFooter .copyright p {
    font-size: 12px;
  }
}

.comingSoon .comingText {
  margin-bottom: 0;
  font-size: 35px;
  line-height: 45px;
  text-align: center;
  color: #c86720;
}
.comingSoon p {
  line-height: 26px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .comingSoon p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .comingSoon p {
    font-size: 14px;
    line-height: 22px;
  }
}

.modal-content {
  border-radius: 20px;
}

.form-control:focus {
  border-color: inherit;
  outline: 0;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

.btn-close:focus {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}/*# sourceMappingURL=style.css.map */