@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local(Montserrat-Regular),
    url(../fonts/Montserrat-Regular.ttf) format("woff2");
  font-display: swap;
}
:root {
  --nl-main-red: #a01e2a;
  --nl-white: #fff;
  --nl-black: #000;
  --nl-font-gray: #555;
  --nl-title-black: #333;
  --nl-light-gray: #e3e3e3;
  --nl-section-bg: #f7fbfe;
  --nl-font: "Montserrat", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  scrollbar-width: auto;
  scrollbar-color: var(--nl-main-red) var(--nl-white);
}

*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: var(--nl-main-red);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--nl-main-red);
  border-radius: 10px;
  border: 3px solid var(--nl-main-red);
}

a {
  text-decoration: none !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--nl-title-black);
}

ul {
  list-style: none;
}

body {
  font-family: var(--nl-font) !important;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

.loader {
  background: var(--nl-main-red);
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: helvetica, arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.2em;
  z-index: 9999999;
  margin: 0 !important;
}
.loader span {
  position: absolute;
  width: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--nl-light-gray);
  text-transform: uppercase;
}
.loader span::before,
.loader span::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--nl-white);
  position: absolute;
  animation: load 1.5s infinite alternate ease-in-out;
}
.loader span::before {
  top: 0;
}
.loader span::after {
  bottom: 0;
}
@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

/* Custom Styles */
.homepage-header {
  background: var(--nl-main-red);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.4s ease, top 0.4s ease;
}

#header .container-fluid {
  width: 85%;
}

#header.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--nl-white);
  white-space: nowrap;
  transition: 0.3s;
  padding: 0 15px;
  text-transform: uppercase;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--nl-section-bg);
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: var(--nl-section-bg);
}

.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;
}

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

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

  .navbar ul {
    display: none;
  }

  .logo {
    max-width: 160px;
  }
}

/* Scrollto links */
.scrollto {
  cursor: pointer;
}

section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: var(--nl-section-bg);
}
.section-title {
  text-align: center;
}
.section-title h1 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: var(--nl-title-black);
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-title h1::before,
.section-title h1::after {
  content: "";
  width: 10%;
  height: 3px;
  background: var(--nl-main-red);
}
.section-title h1::before {
  margin: 0 25px;
}
.section-title h1::after {
  margin: 0 25px;
}

#hero {
  height: 90vh;
}
#hero-mobile-view {
  height: 77vh;
}
#hero .blink {
  animation: blink infinite 3s;
  display: inline-block;
}
#hero .slider-1-title-1,
#hero .slider-2-title-1 {
  font-size: 4rem;
}
#hero .slider-1-title-2,
#hero .slider-2-title-2 {
  font-size: 25px;
}

#hero #carousel-small-screen .carousel-caption {
  top: 15px;
}

#hero #carousel-small-screen .carousel-caption .slider-1-title-1 {
  font-size: 35px;
  text-align: center;
}

#hero #carousel-small-screen .carousel-caption .slider-1-title-2 {
  font-size: 20px;
  text-align: center;
}

.carousel-indicators {
  bottom: -55px !important;
}
.carousel-indicators [data-bs-target] {
  height: 15px !important;
  width: 15px !important;
  border-radius: 50%;
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: var(--nl-main-red) !important;
}

.carousel-control-prev,
.carousel-control-next {
  color: var(--nl-white);
  font-size: 45px;
  opacity: 1;
}
.carousel-caption {
  position: absolute !important;
  top: 260px;
  left: 10% !important;
}

.carousel-control-next,
.carousel-control-prev {
  width: 0 !important;
}
.carousel-control-next {
  right: 100px !important;
}
.carousel-control-prev {
  left: 100px !important;
}

#hero .about-us-btn {
  color: var(--nl-white) !important;
  background-color: var(--nl-main-red) !important;
  border: none;
  padding: 15px 26px;
  color: var(--nl-black);
  text-transform: uppercase;
  font-size: 18px;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--nl-white);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  transition: 0.3s;
}
#hero .carousel-indicators .active {
  background-color: var(--nl-main-red) !important;
  border: 2px solid var(--nl-main-red);
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1 !important;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background: none !important;
  border-radius: 50%;
  border: 2px solid var(--nl-main-red) !important;
  margin: 0 5px;
}

.amenities .icon-title {
  text-align: center;
  color: var(--nl-title-black);
  font-weight: 700 !important;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  text-transform: capitalize;
}

.connectivity {
  background-color: var(--nl-main-red);
  color: var(--nl-white);
}
.connectivity .section-header h2 {
  color: var(--nl-white);
}
.connectivity .icon-box {
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: var(--nl-light-gray);
  transition: ease-in-out 0.3s;
}
.connectivity .icon-box h2 {
  color: var(--nl-white);
}
.connectivity .icon-details h6 {
  color: var(--nl-white);
}
.connectivity .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.connectivity .icon-box h2 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 23px;
}
.connectivity .icon-details {
  display: flex;
  color: var(--nl-white);
  transition: ease-in-out 0.3s;
  font-size: 18px;
  margin-left: 55px;
}
.connectivity .icon-details i {
  font-size: 20px;
  padding-right: 10px;
  line-height: 1;
}
.connectivity .icon-details h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.connectivity .icon-details span {
  font-size: 14px;
}
.connectivity .location-details {
  font-weight: 800;
  font-size: 16px;
}
@media (max-width: 454px) {
  .connectivity .icon-box {
    justify-content: start;
    margin: 0 0 20px 20px;
  }
  .connectivity .icon-details {
    font-size: 12px !important;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .connectivity .disclaimer {
    margin-top: 40px !important;
  }
}
@media only screen and (max-device-width: 575px) {
  .connectivity .section-header {
    text-align: center;
  }
  .connectivity .section-header h2 {
    font-weight: 700;
  }
  .connectivity .section-header p {
    margin-top: 5px;
    font-size: 12px;
  }
}

.about_developer {
  background-color: var(--nl-main-red);
}
.about_developer .about_developer-title h1 {
  font-size: 32px;
  font-weight: 500;
  color: var(--nl-white);
  margin-bottom: 35px;
}
.about_developer .overviewparagraph {
  color: var(--nl-white);
}
.about_developer .about__img {
  margin: 0 auto;
}
.about_developer .purecounter {
  font-size: 40px;
}

.gallery .gallery-item {
  margin: 15px 20px;
  transition: 0.3s;
  cursor: pointer;
}
.gallery #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}
.gallery .gallery-item .gallery-text-container {
  font-size: 18px;
  background-color: var(--nl-main-red);
  color: var(--nl-white);
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  /* bottom: 0; */
  /* right: 35%; */
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.gallery .gallery-item .gallery-text-container .gallery-text {
  text-transform: capitalize !important;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.gallery #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.gallery #portfolio-flters li:hover,
.gallery #portfolio-flters li.filter-active {
  color: var(--nl-white);
  background: var(--nl-main-red);
}
.gallery #portfolio-flters li:last-child {
  margin-right: 0;
}
.gallery .gallery-item:hover {
  transform: scale(1.1);
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .gallery .swiper-slide-next {
    opacity: 1;
    transform: scale(1.14);
  }
}
#gallery_image_modal .row > .column {
  padding: 0 8px;
}
#gallery_image_modal .row:after {
  content: "";
  display: table;
  clear: both;
}
#gallery_image_modal .column {
  float: left;
  width: 25%;
}
#gallery_image_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  overflow: hidden;
  left: 0;
  top: 0;
  background-color: var(--nl-black);
}
#gallery_image_modal .modal-header {
  position: absolute;
  top: 0;
  right: 2%;
}
#gallery_image_modal .close {
  font-size: 30px;
  font-weight: 700;
  z-index: 999;
  padding: 0 15px;
  background-color: var(--nl-main-red);
  border-radius: 50%;
  color: var(--white);
}
#gallery_image_modal .close:hover,
#gallery_image_modal .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
#gallery_image_modal .mySlides {
  display: none;
}
#gallery_image_modal .cursor {
  cursor: pointer;
}
#gallery_image_modal .prev,
#gallery_image_modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: var(--nl-main-red);
}
#gallery_image_modal .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#gallery_image_modal .prev:hover,
#gallery_image_modal .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
#gallery_image_modal img {
  margin-bottom: -4px;
}
#gallery_image_modal .demo {
  opacity: 0.6;
}
#gallery_image_modal .active,
#gallery_image_modal .demo:hover {
  opacity: 1;
}
#gallery_image_modal .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media only screen and (max-device-width: 767px) {
  #gallery_image_modal .close {
    font-size: 20px;
    padding: 0 10px;
  }
  #gallery_image_modal .prev,
  #gallery_image_modal .next {
    padding: 8px;
    margin-top: -25px;
  }
}

.nav-pills .nav-link.active {
  background-color: var(--nl-main-red) !important;
  color: var(--nl-white) !important;
}
.nav-pills .nav-link {
  border-radius: 0;
  border: 1px solid var(--nl-main-red) !important;
}

@media (min-width: 1366px) {
  #nl-green-tab {
    display: flex;
    justify-content: center !important;
  }
}

#nl-green-tab::-webkit-scrollbar {
  display: none;
}

.nl_greens_floor_plan .col-md-9 {
  border-left: 1px solid var(--nl-main-red) !important;
}

.nl-garden-plan-swiper-pagination,
.nl-taksasila-gallery-swiper-pagination,
.nl-gardens-gallery-swiper-pagination,
.upcoming-project-swiper-pagination,
.nl-bhavesha-plan-swiper-pagination {
  margin-top: 50px !important;
  position: relative;
  justify-content: center;
  display: flex;
}

.nl-garden-plan-swiper-pagination .swiper-pagination-bullet,
.nl-taksasila-gallery-swiper-pagination .swiper-pagination-bullet,
.nl-gardens-gallery-swiper-pagination .swiper-pagination-bullet,
.nlpl-projects-swiper-pagination .swiper-pagination-bullet,
.upcoming-project-swiper-pagination .swiper-pagination-bullet,
.nl-bhavesha-plan-swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--nl-white);
  opacity: 1;
  border: 1px solid var(--nl-main-red);
}
.nl-garden-plan-swiper-pagination .swiper-pagination-bullet-active,
.nl-taksasila-gallery-swiper-pagination .swiper-pagination-bullet-active,
.nl-gardens-gallery-swiper-pagination .swiper-pagination-bullet-active,
.nlpl-projects-swiper-pagination .swiper-pagination-bullet-active,
.upcoming-project-swiper-pagination .swiper-pagination-bullet-active,
.nl-bhavesha-plan-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--nl-main-red);
}

.nlpl-projects-swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--nl-white);
  opacity: 1;
  border: 1px solid var(--nl-main-red);
}

.nlpl-projects-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--nl-main-red);
}

.floor_plans .nav-link.active,
.downloads .nav-link.active {
  background-color: var(--nl-main-red);
  color: var(--nl-white);
  padding: 0;
  margin: 0;
  font-size: 22px;
  padding: 10px;
}
.downloads .nav-tabs,
.floor_plans .nav-tabs {
  border: none;
}
.downloads .nav-tabs .nav-link,
.floor_plans .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  color: var(--nl-white);
}
.area-table {
  box-shadow: 5px 5px 35px var(--nl-light-gray);
  padding: 25px;
  border-radius: 10px;
}
.downloads #download_certificates {
  background-color: var(--nl-main-red);
  border-radius: 25px;
  border: 5px solid var(--nl-light-gray);
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
  transition: transform ease 0.5s, box-shadow ease 0.5s;
}
.downloads #download_certificates:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.25);
}
.downloads #download_certificates a {
  font-size: 14px;
  color: var(--nl-white);
}

#upcoming_projects .nlpl-projects .card {
  margin: 0 30px !important;
  height: 600px !important;
}

#upcoming_projects .swiper-slide {
  overflow: hidden !important;
}

#upcoming_projects .swiper-button-next,
#upcoming_projects .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -5px);
  font-size: 22px;
  color: var(--nl-main-red);
  left: auto;
}

#upcoming_projects .swiper-button-prev,
#upcoming_projects .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -2px);
  font-size: 22px;
  color: var(--nl-main-red);
  right: auto;
}

#upcoming_projects .card-body .project-title {
  font-weight: 600;
  margin: 10px 0 3px;
  font-size: 18px;
  color: #000 !important;
}

#upcoming_projects .card-body .project-title a {
  color: var(--nl-font-gray);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}
#upcoming_projects .nlpl-projects .card {
  margin: 0 30px !important;
  height: 565px;
}

#upcoming_projects .swiper-slide {
  overflow: hidden !important;
}

#upcoming_projects .swiper-button-next,
#upcoming_projects .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -5px);
  font-size: 22px;
  color: var(--nl-main-red);
  left: auto;
}

#upcoming_projects .swiper-button-prev,
#upcoming_projects .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -2px);
  font-size: 22px;
  color: var(--nl-main-red);
  right: auto;
}

#view3d .swiper-button-next,
#view3d .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -5px);
  font-size: 22px;
  color: var(--nl-main-red);
  left: auto;
}

#view3d .swiper-button-prev,
#view3d .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -2px);
  font-size: 22px;
  color: var(--nl-main-red);
  right: auto;
}
#upcoming_projects .project-location span {
  font-size: 13px;
}

#upcoming_projects .short-description {
  font-size: 14px;
}

#upcoming_projects .sub-menu-footer {
  background-color: var(--nl-main-red) !important;
  position: absolute;
  bottom: 0;
  width: 100%;
}

#upcoming_projects .sub-menu-footer a {
  color: var(--nl-white);
}
.contact {
  width: 100%;
  background: var(--nl-white);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  font-family: "Montserrat", sans-serif;
}
.contact .section-title {
  text-align: center;
}
.contact .middle-title {
  color: var(--nl-font-gray);
  display: flex;
  justify-content: center;
  margin-bottom: 7px !important;
}
.contact h6 {
  color: var(--nl-font-gray);
  display: flex;
  justify-content: center;
  margin-bottom: 7px !important;
}
.contact input {
  height: 44px;
  box-shadow: none;
  border-radius: 0;
  border: none;
  font-size: 14px;
  border-bottom: 1px solid var(--nl-main-red);
  outline: none;
}
.contact input:focus {
  outline: none;
}
.contact .info {
  border-top: 3px solid var(--nl-main-red);
  border-bottom: 3px solid var(--nl-main-red);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info a {
  color: var(--nl-title-black);
}
.contact .info h6 {
  color: var(--nl-title-black);
}
.contact .info i {
  font-size: 28px;
  color: var(--nl-main-red);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info p {
  padding: 0 0 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--nl-title-black);
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  color: var(--nl-title-black);
  padding: 5px;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--nl-main-red);
  border-bottom: 3px solid var(--nl-main-red);
  padding: 30px;
  background: var(--nl-white);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: var(--pure-red);
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var();
  background: #6081a3;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form label {
  padding-bottom: 8px;
  color: var(--nl-title-black);
}
.contact .php-email-form input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  padding: 1rem;
}
.contact .php-email-form input:focus {
  border-color: var(--nl-main-red);
}
.contact .php-email-form .submit-contact-form {
  background: var(--nl-title-black);
  border: 0;
  padding: 8px 24px;
  color: var(--nl-white);
  transition: 0.4s;
}
.contact .php-email-form .submit-contact-form:hover {
  background: var(--nl-main-red);
}

#footer {
  background: var(--nl-main-red);
  color: var(--nl-white);
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px;
  background: var(--nl-main-red);
  color: var(--nl-white);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--nl-white);
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nl-white);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  color: var(--nl-white);
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: var(--nl-white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--nl-light-gray);
}
#footer .container-fluid {
  background-color: var(--nl-title-black);
  color: var(--nl-white);
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  display: flex;
  justify-content: center;
  height: 25px;
  align-items: center;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  width: 45px;
  height: 45px;
  bottom: 15px;
  right: 80px;
  background: var(--nl-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 996;
  transform: rotate(45deg);
}
.back-to-top i {
  font-size: 40px;
  color: var(--nl-main-red);
  line-height: 0;
  transform: rotate(-45deg);
}
.back-to-top i:hover {
  color: var(--nl-white);
}
.back-to-top:hover {
  background: var(--nl-main-red);
  color: var(--nl-light-gray);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.home_page_call_button {
  position: fixed;
  background: transparent;
  right: 17px;
  bottom: 120px;
  font-size: 25px;
  transition: 1s ease-out;
  z-index: 999;
}

.contact_via_whatsapp {
  position: fixed;
  background: transparent;
  right: 17px;
  bottom: 70px;
  transition: 3s ease-out;
  font-size: 25px;
  z-index: 999;
}

.schedule_btn {
  position: fixed;
  transition: 3s ease-out;
  font-size: 25px;
  z-index: 999;
  right: 17px;
  bottom: 20px;
  background: transparent;
}

.share_website_btn {
  position: fixed;
  background: transparent;
  right: 17px;
  bottom: 170px;
  transition: 3s ease-out;
  font-size: 25px;
  z-index: 999;
}

#schedule_a_visit_modal label,
#visit_modal label {
  display: block;
  letter-spacing: 4px;
  padding-top: 30px;
  text-align: center;
  color: #000;
}
#schedule_a_visit_modal label .label-text #visit_modal label .label-text {
  cursor: text;
  font-size: 15px;
  text-transform: uppercase;
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
#schedule_a_visit_modal label input #visit_modal label input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #a01e2a;
  outline: 0;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
}
#schedule_a_visit_modal label input:focus,
#visit_modal label input:focus {
  max-width: 100%;
  width: 100%;
}
#schedule_a_visit_modal label input:focus + .label-text,
#visit_modal label input:focus + .label-text {
  color: #000;
  font-size: 13px;
  margin-top: 10px;
  -moz-transform: translateY(-65px);
  -ms-transform: translateY(-65px);
  -webkit-transform: translateY(-65px);
  transform: translateY(-65px);
}
#schedule_a_visit_modal label input:valid + .label-text,
#visit_modal label input:valid + .label-text {
  font-size: 13px;
  -moz-transform: translateY(-65px);
  -ms-transform: translateY(-65px);
  -webkit-transform: translateY(-65px);
  transform: translateY(-65px);
}

.call_to_request_submit_btn {
  background-color: var(--nl-main-red) !important;
  width: 150px;
  height: 40px;
  padding: 0;
  border: none !important;
  color: var(--nl-white) !important;
}

label.error {
  color: red !important;
  font-size: 0.9rem !important;
  margin-top: 0.2rem !important;
  display: block !important;
}
input.error {
  border-color: red !important;
}

#scheduleVisitForm,
#email-error,
#scheduleVisitForm,
#lname-error,
#scheduleVisitForm,
#fname-error,
#scheduleVisitForm,
#phoneNumber-error {
  color: red !important;
  font-size: 0.9rem !important;
  margin-top: 0.2rem !important;
  line-height: 0 !important;
}

@media only screen and (max-device-width: 345px) {
  #hero #carousel-small-screen .carousel-caption .slider-1-title-1 {
    font-size: 30px;
    text-align: center;
  }
}
@media only screen and (max-device-width: 476px) {
  #upcoming_projects .nlpl-projects .card {
    height: 600px;
  }
}
@media only screen and (max-device-width: 992px) {
  .more-features-p {
    text-align: center;
  }

  #hero {
    height: 60vh;
  }

  .more-features .col-md-4 {
    margin-bottom: 15px;
  }
}
@media only screen and (min-device-width: 477px) and (max-device-width: 990px) {
  #upcoming_projects .nlpl-projects .card {
    height: 675px;
  }
}
@media only screen and (min-device-width: 992px) and (max-device-width: 1365px) {
  #upcoming_projects .nlpl-projects .card {
    height: 950px !important;
  }

  .more-features-p {
    text-align: justify;
  }
}
