/* ========== Start of header css ========= */

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.navbar-brand img {
  max-width: 100px;
  width: 100%;
}

.header_sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 888;
  background: #fff;
  transform: translateY(-100%);
  transition: 0.5s;
}
.navbar-toggler-icon {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  border: 1px solid #3b3b3d;
  border-radius: 100%;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: inherit;
}

.navbar-toggler-icon span {
  width: 24px;
  height: 2px;
  background: var(--dark-black);
}

.navbar-toggler-icon span:nth-child(2) {
  width: 15px;
}

.navbar-toggler-icon span:nth-child(3) {
  width: 22px;
}
.header_sec.sticky {
  transition: 0.5s;
  transform: inherit;
}

.navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 500;
  padding: 20px 0 20px 0;
  line-height: 25px;
  color: #333;
  text-transform: uppercase;
}

.header_sec {
  box-shadow: 0px 5px 10px #dddddd82;
}

.navbar-nav > .nav-item {
  margin: 0 5px;
}

.dropdown > .dropdown-menu,
.dropend > .dropdown-menu {
  width: 200px;
  padding: 0;
  margin: 0;
  border: 0;
  background: #333;
  border-radius: 0;
  padding: 10px 10px;
}

.navbar-nav .dropdown-menu li a,
.nav-item.dropend > a {
  color: #fff;
  font-size: 16px !important;
  padding: 7px 10px !important;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--dark-red);
}

.mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: #0000002e;
  width: 100%;
  z-index: 9999;
  transform: translateX(-100%);
  transition: all ease 0.4s;
}

.mobile_nav.active {
  transform: translateX(0);
  transition: 0.4s;
}

.mobile_nav .nav-wrap {
  max-width: 500px;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 50px;
}

.mobile_nav .nav-wrap .logo-item a {
  display: block;
  max-width: 130px;
  width: 100%;
}

.mobile_nav .nav-wrap .logo-item {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-items .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-black);
  text-transform: capitalize;
}

.nav-items .custom-btn {
  margin-top: 25px;
}

.close-nav {
  width: 40px;
  height: 40px;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  opacity: 85%;
  transition: 0.3s;
}

.close-nav:hover {
  transition: 0.3s;
  background: var(--dark-red);
  color: #fff;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000bd;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.popup.popup-open {
  display: flex;
}

.popup-wrapper {
  max-width: 550px;
  padding: 35px;
  background: #fff;
}

.popup-header .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-header li h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.popup-header .btn span {
  height: 2px;
  width: 18px;
  background: #000;
  display: block;
  transform: rotate(45deg) translate(1px, 0px);
}

.popup-header .btn {
  padding: 0;
  width: 30px;
  height: 30px;
  display: contents;
}

.popup-header .btn span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, 0px);
}

.popup-header {
  margin-bottom: 20px;
}

.popup-content .custom-btn {
  margin-top: 20px !important;
}

/* ========== End of header css ========= */

/* ========== Start of banner sec css ========= */

.banner_sec {
  height: 120vh;
  overflow: hidden;
  position: relative;
}

.banner-bg {
  position: relative;
  z-index: 5;
}

.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120vh;
}

.banner-wrapper figure {
  max-width: 280px;
  width: 100%;
}

.banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 2;
}

.image-container {
  position: relative;
  overflow: hidden;
  height: 120vh;
}

.image-container img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--dark-red);
}

/* ========== End of banner sec css ========= */

/* ========== Start of about sec css ========= */

.about-item .custom-btn {
  margin-top: 15px;
}

/* ========== End of about sec css ========= */

/* ========== Start of footer sec css ========= */

.footer_sec {
  background: #1f1f26;
  margin: 40px;
  border-radius: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-item img {
  max-width: 160px;
  width: 100%;
  margin-bottom: 20px;
}

.copyright {
  padding: 40px 0 50px 0;
  border-top: 1px solid #ffffff52;
  margin-top: 50px;
}

.copyright-item p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.copyright-item a {
  color: var(--dark-red);
  transition: 0.3s;
}

.copyright-item a:hover {
  color: #fff;
  transition: 0.3s;
}

.copyright-item .list-item {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 12px;
}

.copyright-item .list-item li {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}

.copyright-item .list-item li {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff70;
  border-radius: 100%;
}

.copyright-item .list-item li:first-child {
  width: auto;
  border: 0;
  border-radius: inherit;
}

.copyright-item .list-item li a {
  color: #fff;
  transition: 0.3s;
}

.copyright-item .list-item li:hover {
  background: var(--dark-red);
  transition: 0.3s;
  border-color: transparent;
}

.copyright-item .list-item li:first-child:hover {
  background: transparent;
}

.footer-item {
  margin-bottom: 30px;
}

.footer-item .title {
  font-family: "Orgon";
  font-size: 20px;
  color: #fff;
  padding-left: 10px;
  border-left: 3px solid var(--dark-red);
  margin-bottom: 30px;
}

.footer-item .list-item li a {
  color: #ffffffd6;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 25px;
  transition: 0.3s;
}

.footer-item .list-item li a:hover {
  color: var(--dark-red);
  transition: 0.3s;
}

.footer-item .list-item li span {
  color: var(--dark-red);
  opacity: 0.8;
  margin-right: 6px;
}

.back-to-up {
  position: fixed;
  z-index: 99;
  right: 30px;
  width: 45px;
  height: 45px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--dark-red);
  box-shadow: 0px 0px 10px #172b5480;
  color: #fff;
  opacity: 0;
  transform: translateX(200px);
  transition: 0.5s;
}

.back-to-up.show {
  opacity: 100%;
  transition: 0.5s;
  transform: translateX(0px);
}

.back-to-up:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background: var(--dark-red);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 100%;
  animation: pluse1 1s linear infinite;
}

.back-to-up:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background: var(--dark-red);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 100%;
  animation: pluse1 1.2s linear infinite;
}

@keyframes pluse1 {
  100% {
    opacity: 0;
    width: 70px;
    height: 70px;
  }
}

.whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  filter: drop-shadow(2px 4px 6px #ddd);
}

/* ========== End of footer sec css ========= */

/* ========== Start of gallery sec css ========= */

.work_gallery {
  background: url("../../assets/images/gallery/gallerybg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  z-index: 5;
}

.work_gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: -1;
}

.gallery-item figure {
  height: 300px;
  width: 100%;
  padding: 15px;
  transition: 0.5s;
  overflow: hidden;
}

.gallery-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item figure:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}

.gallery-item figure.first {
  height: 500px;
}

.gallery-item2 figure {
  height: 360px;
}

.gallery-item2 .col-md-6:nth-child(2) figure {
  height: 420px;
}

/* ========== End of gallery sec css ========= */

/* ========== Start of apartment sec css ========= */

.apart_item .list-item li {
  padding-left: 30px;
}

.apart_item .list-item li strong {
  display: block;
  margin-bottom: 5px;
  font-family: "HandelGothic BT";
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
}

.apart_item .list-item li {
  margin-bottom: 25px;
  position: relative;
}

.apart_item .list-item li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--dark-red);
  opacity: 80%;
}

.button-item .custom-btn {
  background: transparent;
  color: var(--dark-black);
  border: 2px solid var(--dark-black);
  margin-top: 40px;
  padding: 15px 35px;
}

/* ========== End of apartment sec css ========= */

/* ========== Start of project sec css ========= */

.projects_sec .heading {
  margin-bottom: 50px !important;
}

.projects-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
}

.projects-card figure {
  height: 230px;
  width: 100%;
  margin-bottom: 25px;
}

.projects-card figure img {
  width: 100%;
  height: 100%;
}

.projects-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.projects-card figure:hover img {
  transition: 0.5s;
  transform: scale(1.2);
}

.projects-card figure {
  transition: 0.5s;
  overflow: hidden;
  border-radius: 20px;
}

.projects-card .content .title {
  font-size: 20px;
  font-family: "Orgon";
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.projects-card .content .title a {
  color: var(--dark-black);
}

.owl-dots {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.owl-dots button span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #919191;
  display: inline-block;
  transition: 0.4s;
}

.owl-dot.active span {
  background: var(--dark-red);
  width: 25px;
  border-radius: 40px;
  transition: 0.4s;
}

.bg-transparent {
  background-image: inherit;
  background: transparent;
}

.bg-transparent:before {
  display: none;
}

.scroll_text {
  text-wrap: nowrap;
  animation: scrolltext 10s linear infinite;
}

.scroll_text .scroll {
  display: inline;
  text-wrap: nowrap;
}

.scroll_text .scroll .title {
  display: inline-block;
  font-size: 80px;
  font-weight: 300;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 20px;
  transition: all ease 0.4s;
}

.scroll_text::-webkit-scrollbar {
  display: none;
}

.title-dots {
  background: var(--dark-red);
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  opacity: 0.6;
  width: 100%;
}

.scroll_text .scroll .title:hover {
  -webkit-text-fill-color: #333;
  transition: all ease 0.3s;
}

@keyframes scrolltext {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1920px);
  }
}

.scroll_sec {
  overflow: hidden;
}

/* ========== End of project sec css ========= */

/* ========== Start of page title sec css ========= */

.pagetitle_sec {
  background: url("../../assets/images/banner/banner-bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding: 120px 0;
}

.pagetitle_sec .subtitle {
  text-transform: capitalize;
  background: var(--dark-red);
  color: #ffffff;
  padding: 4px 15px;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 50px;
  font-weight: 400;
}

.pagetitle_sec .title {
  font-size: 40px;
  color: #fff;
  line-height: 50px;
  text-transform: capitalize;
}

.pagetitle_sec {
  position: relative;
  z-index: 5;
}

.pagetitle_sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.3;
  z-index: -1;
}

.pagetitle_sec .link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: var(--dark-red);
  padding: 5px 15px;
  border-radius: 25px;
}

/* ========== End of page title sec css ========= */

/* ========== Start of inner about sec css ========= */

.about-sec .content-item {
  padding-left: 30px;
}

.about-sec .img-item figure {
  height: 500px;
  width: 100%;
  position: relative;
  z-index: 5;
  padding-left: 90px;
}

.about-sec .img-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-sec .img-item figure:before {
  left: 0;
  content: "About Us";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: tb-rl;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #333;
  opacity: 80%;
  width: auto;
  text-wrap: nowrap;
}

/* ========== End of inner about sec css ========= */

/* ========== Start of contact us sec css ========= */

.form-control {
  border: 0;
  border-bottom: 1px solid #6c757d;
  border-radius: 0;
  padding: 10px 0 10px 0;
}

.form-control:focus {
  border-color: #333;
  box-shadow: none;
}

.contact .title {
  text-transform: uppercase;
  font-size: 17px;
  color: #333;
  font-family: "Orgon";
  margin-bottom: 12px;
  line-height: normal;
  font-weight: 500;
}

.contact {
  margin-bottom: 30px;
}

.contact a {
  color: #6e6e6e;
  font-size: 16px;
}

.contact a:hover {
  color: var(--dark-red);
}

.contact-sec {
  position: relative;
  z-index: 5;
}

.contact-sec:before {
  right: 50px;
  content: "Contact Us";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: tb-rl;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #333;
  opacity: 80%;
  width: auto;
  text-wrap: nowrap;
}

/* ========== End of contact us sec css ========= */

/* ========== Start of blog sec css ========= */

.blog-card .img-item {
  height: 280px;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-card .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .img-item img {
  transition: 0.4s;
  transform: scale(1.2);
}

.blog-card .content-item .title {
  font-size: 22px;
  line-height: 32px;
  font-family: "Orgon";
}

.blog-card {
  padding: 20px;
  border: 1px solid #ddd;
}

/* ========== End of blog sec css ========= */

/* ========== Start of blog details sec css ========= */

.blog-details-sec .img-item {
  height: 450px;
  width: 100%;
  margin: 30px 0 40px 0;
  padding: 20px;
  border: 1px solid #ddd;
}

.blog-details-sec .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details-sec .heading .title {
  padding: 0 30px;
  display: inline-block;
  position: relative;
  z-index: 5;
}

.blog-details-sec .heading .title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--dark-red);
  transform: translateY(-50%);
  border-radius: 100%;
  opacity: 70%;
}

.blog-details-sec .heading .title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--dark-red);
  transform: translateY(-50%);
  border-radius: 100%;
  opacity: 70%;
}

.sidebar {
  padding: 30px 20px;
  border: 1px solid #ddd;
}

.sidebar .title {
  font-size: 22px;
  font-family: "Orgon";
  font-weight: 500;
  padding-left: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: normal;
  position: relative;
  z-index: 5;
}

.sidebar .title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--dark-red);
  transform: translateY(-50%);
}

.sidebar .title:after {
  content: "";
  position: absolute;
  top: 60%;
  left: -3px;
  width: 12px;
  height: 12px;
  background: #333333;
  transform: translateY(-50%);
  z-index: -1;
}

.sidebar .list-item li a {
  font-size: 15px;
  padding: 7px 12px;
  color: #000000;
  font-weight: 500;
  display: block;
  background: #e9e9e9;
  margin-bottom: 15px;
}

/* ========== End of blog details sec css ========= */
