@import url("https://fonts.cdnfonts.com/css/neutra-text-tf");
body {
  font-family: "Roboto", sans-serif;
}

header .desktop-header {
  width: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: #fff;
  top: 0px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 992px) {
  header .desktop-header {
    display: none;
  }
}
header .desktop-header .container-header {
  max-width: 1250px;
  margin: 0 auto;
}
header .desktop-header .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .desktop-header .desktop-nav .logo a img {
  width: 100%;
}
header .desktop-header .desktop-nav .nav {
  align-items: center;
}
header .desktop-header .desktop-nav .nav ul {
  display: flex;
  margin: 0px;
  list-style: none;
}
header .desktop-header .desktop-nav .nav ul li .nav-link {
  color: #292A39;
  text-decoration: none;
  margin: 0px 10px;
  position: relative;
  font-size: 15px;
  padding: 0px;
}
@media screen and (max-width: 1199px) {
  header .desktop-header .desktop-nav .nav ul li .nav-link {
    font-size: 13px;
    margin: 0px 5px;
  }
}
header .desktop-header .desktop-nav .nav ul li .nav-link::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: #FBB249;
  transition: all 0.3s ease-in-out;
}
header .desktop-header .desktop-nav .nav ul li :hover {
  background-position: 0%;
}
header .desktop-header .desktop-nav .nav ul li :hover:before {
  width: 100%;
}
header .desktop-header .desktop-nav .nav ul li .nav-link.active {
  border-bottom: 2px solid #FBB249;
}
header .desktop-header .desktop-nav .nav .enquire-btn {
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  header .desktop-header .desktop-nav .nav .enquire-btn {
    margin-left: 0px;
  }
}
header .desktop-header .desktop-nav .nav .enquire-btn .button {
  background: #2A4D69;
  padding: 10px 10px;
  border: none;
  display: block;
  color: #fff;
  text-transform: capitalize;
  height: 48px;
  font-size: 16px;
  text-decoration: none;
}
header .mobile-header {
  display: none;
  color: #000;
  padding: 10px 7px;
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border-bottom: 1px solid #D9D9D9;
  top: -2px;
}
@media screen and (max-width: 992px) {
  header .mobile-header {
    display: block;
  }
}
header .mobile-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile-header .header-content .logo a {
  color: #000;
  text-decoration: none;
  font-size: 24px;
}
header .mobile-header .header-content .logo a img {
  width: 80%;
}
header .mobile-header .header-content .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
}
header .mobile-header .header-content .hamburger div {
  width: 100%;
  height: 2px;
  background-color: black;
  margin: 4px 0;
  transition: 0.4s;
}
header .mobile-header .header-content .change .bar1 {
  transform: rotate(-45deg) translate(-7px, 7px);
  width: 30px;
}
header .mobile-header .header-content .change .bar2 {
  opacity: 0;
}
header .mobile-header .header-content .change .bar3 {
  transform: rotate(45deg) translate(-7px, -7px);
  width: 30px;
}
header .mobile-header .nav-list {
  display: none;
  flex-direction: column;
  position: absolute;
  background: #FFFFFF;
  z-index: 1000;
  padding: 0px;
  width: 80%;
  height: 1000px;
  transition: all 0.3s ease-in;
  top: 75px;
  right: 0px;
  left: auto;
}
header .mobile-header .nav-list .list-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 20px;
}
header .mobile-header .nav-list .list-bar .logo a {
  color: #292A39;
  text-decoration: none;
  font-size: 24px;
}
header .mobile-header .nav-list .list-bar .close-btn {
  align-self: flex-end;
  padding: 10px;
  font-size: 35px;
  cursor: pointer;
  color: #545454;
}
header .mobile-header .nav-list ul {
  list-style: none;
  width: 100%;
  text-align: left;
  margin: 0px;
  padding: 0px;
}
header .mobile-header .nav-list ul li a {
  display: block;
  padding: 15px 20px;
  color: #292A39;
  text-decoration: none;
  font-size: 18px;
}
header .mobile-header .nav-list.active {
  display: flex;
}

.banner {
  background-image: url("asset/Untitled design (23).png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 720px;
  display: flex;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 650px) {
  .banner {
    margin-top: 70px;
        margin-bottom: 20px;
        background-image: url('asset/cover\ page_360x720.jpg');
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
  }
}
.banner .banner-overlay {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .banner .banner-overlay {
    width: 100%;
  }
}
.banner .banner-content {
  padding-left: 7rem;
}
@media screen and (max-width: 992px) {
  .banner .banner-content {
    padding: 0px 2rem;
  }
}
.banner .banner-content h4 {
  font-size: 56px;
  color: #FFFFFF;
  line-height: 54.21px;
  margin-bottom: 5rem;
  margin-top: 12rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .banner .banner-content h4 {
    font-size: 40px;
    width: 405px;
  }
}
@media screen and (max-width: 507px) {
  .banner .banner-content h4 {
    font-size: 40px;
    width: 100%;
    margin-top: 19rem;
  }
}
.banner .banner-content h4 span {
  font-family: "Crimson Text", serif;
  font-weight: bold;
}
.banner .banner-content .button {
  background: #2A4D69;
  padding: 10px 30px;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  height: 48px;
  border: none;
  display: block;
  width: 159px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .banner .banner-content .button {
    height: 44px;
    padding: 8px 30px;
  }
}
.banner .content-wrapper {
  width: 670px;
  position: absolute;
  display: flex;
  bottom: -3rem;
  right: 0px;
  height: auto;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  padding: 30px;
}
@media screen and (max-width: 600px) {
  .banner .content-wrapper {
    width: 90%;
    bottom: -6rem;
    margin: 0px auto;
    padding: 20px 0px;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.banner .content-wrapper .date {
  padding-right: 40px;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .date {
    padding: 0px 10px;
  }
}
.banner .content-wrapper .date h5 {
  font-size: 24px;
  color: #727272;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .date h5 {
    font-size: 20px;
  }
}
.banner .content-wrapper .date h4 {
  font-size: 20px;
  color: #292A39;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .date h4 {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.banner .content-wrapper .strating {
  padding-left: 40px;
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .strating {
    padding-left: 20px;
  }
}
.banner .content-wrapper .strating h5 {
  font-size: 24px;
  color: #727272;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .strating h5 {
    font-size: 16px;
  }
}
.banner .content-wrapper .strating h4 {
  font-size: 36px;
  color: #292A39;
}
@media screen and (max-width: 650px) {
  .banner .content-wrapper .strating h4 {
    font-size: 20px;
    margin-bottom: 0px;
  }
}

.expert-sec {
  margin-top: 50px;
  padding: 100px 0px;
  display: flex;
}
@media screen and (max-width: 992px) {
  .expert-sec {
    flex-direction: column-reverse;
    padding: 80px 0px 10px;
    max-width: 750px;
    margin: 43px auto;
  }
}
.expert-sec .about-expert {
  width: 55%;
  margin-top: 50px;
  padding: 0px 20px 0px 100px;
}
@media screen and (max-width: 992px) {
  .expert-sec .about-expert {
    width: 100%;
    padding: 10px 20px;
    margin-top: 10px;
  }
}
.expert-sec .about-expert h4 {
  color: #292A39;
  font-size: 42px;
  font-weight: 500;
  line-height: 40.66px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .expert-sec .about-expert h4 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.expert-sec .about-expert h4 span {
  font-family: "Crimson Text", serif;
  font-weight: bold;
}
.expert-sec .about-expert p {
  color: #727272;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 36px;
}
@media screen and (max-width: 500px) {
  .expert-sec .about-expert p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.expert-sec .about-expert .icon-wrapper {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .expert-sec .about-expert .icon-wrapper {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.expert-sec .about-expert .icon-wrapper .wrapper {
  display: flex;
  margin-right: 10px;
}
@media screen and (max-width: 500px) {
  .expert-sec .about-expert .icon-wrapper .wrapper {
    margin-bottom: 20px;
  }
}
.expert-sec .about-expert .icon-wrapper .wrapper .icon {
  margin-right: 20px;
  margin-top: 10px;
}
.expert-sec .about-expert .icon-wrapper .wrapper .text h4 {
  color: #232323;
  font-size: 24px;
  margin-bottom: 0px;
}
@media screen and (max-width: 500px) {
  .expert-sec .about-expert .icon-wrapper .wrapper .text h4 {
    font-size: 18px;
  }
}
.expert-sec .about-expert .icon-wrapper .wrapper .text p {
  color: #727272;
  font-size: 16px;
}
.expert-sec .about-expert button {
  background: #2A4D69;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 30px 10px 30px;
  border: none;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .expert-sec .about-expert button {
    height: 44px;
  }
}
.expert-sec .expert-img {
  width: 45%;
  padding-left: 50px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .expert-sec .expert-img {
    width: 100%;
    padding: 10px 20px 20px;
    order: 1;
  }
}
.expert-sec .expert-img img {
  width: 100%;
  height: 100%;
}
.expert-sec .expert-img .card {
  width: 250px;
  padding: 20px;
  background-color: #fff;
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  height: 142px;
  padding: 6px 20px 20px;
  border-radius: 0px;
}
@media screen and (max-width: 992px) {
  .expert-sec .expert-img .card {
    right: 1.2rem;
    bottom: 1rem;
    left: auto;
    width: 200px;
    padding: 6px 20px;
    height: 120px;
  }
}
.expert-sec .expert-img .card h4 {
  font-size: 56px;
  color: #292A39;
}
@media screen and (max-width: 992px) {
  .expert-sec .expert-img .card h4 {
    font-size: 50px;
  }
}
.expert-sec .expert-img .card p {
  font-size: 22px;
  color: #727272;
}
@media screen and (max-width: 992px) {
  .expert-sec .expert-img .card p {
    font-size: 17px;
  }
}

.project-highlite {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .project-highlite {
    padding: 40px 0px 0px;
  }
}
.project-highlite .heading {
  text-align: center;
}
.project-highlite .heading h4 {
  font-size: 42px;
  font-weight: 700;
  color: #292A39;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .project-highlite .heading h4 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.project-highlite .highlight-box .btn {
  position: relative;
  display: inline-block;
  width: 100%;
  box-shadow: none;
  outline: none;
  border: 0px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-height: 91px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .project-highlite .highlight-box .btn {
    margin: 0px;
  }
}
@media screen and (max-width: 767px) {
  .project-highlite .highlight-box .btn {
    margin: 0px;
  }
}
.project-highlite .highlight-box .btn span {
  font-size: 24px;
  color: #3C3B3B;
  letter-spacing: 1%;
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: capitalize;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-bottom: 2px solid #FBB249;
}
@media screen and (max-width: 992px) {
  .project-highlite .highlight-box .btn span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-highlite .highlight-box .btn span {
    font-size: 16px;
    border: 2px solid #FBB249;
    min-height: auto;
  }
}
@media screen and (max-width: 540px) {
  .project-highlite .highlight-box .btn span {
    font-size: 16px;
    border: 2px solid #FBB249;
    min-height: 72px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.project-highlite .highlight-box :active, .project-highlite .highlight-box :hover, .project-highlite .highlight-box :focus {
  outline: 0 !important;
  outline-offset: 0;
}
.project-highlite .highlight-box ::before,
.project-highlite .highlight-box ::after {
  position: absolute;
  content: "";
}
.project-highlite .highlight-box .btn.hover-border-7::before,
.project-highlite .highlight-box .btn.hover-border-7::after {
  bottom: 0;
  transition: width 0.2s 0.35s ease-out;
}
.project-highlite .highlight-box .btn.hover-border-7::before {
  right: 50%;
}
.project-highlite .highlight-box .btn.hover-border-7::after {
  left: 50%;
}
.project-highlite .highlight-box .btn.hover-border-7:hover::before,
.project-highlite .highlight-box .btn.hover-border-7:hover::after {
  width: 50%;
  transition: width 0.2s ease-in;
}
.project-highlite .highlight-box .btn.hover-border-7 span::before,
.project-highlite .highlight-box .btn.hover-border-7 span::after {
  width: 0%;
  height: 0%;
  background: transparent;
  opacity: 0;
  z-index: 2;
  transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
}
.project-highlite .highlight-box .btn.hover-border-7 span::before {
  bottom: 0;
  left: 0;
  border-left: 2px solid #FBB249;
  border-top: 2px solid #FBB249;
}
@media screen and (max-width: 767px) {
  .project-highlite .highlight-box .btn.hover-border-7 span::before {
    display: none;
  }
}
.project-highlite .highlight-box .btn.hover-border-7 span::after {
  bottom: 0;
  right: 0;
  border-right: 2px solid #FBB249;
  border-top: 2px solid #FBB249;
}
@media screen and (max-width: 767px) {
  .project-highlite .highlight-box .btn.hover-border-7 span::after {
    display: none;
  }
}
.project-highlite .highlight-box .btn.hover-border-7 span:hover::before,
.project-highlite .highlight-box .btn.hover-border-7 span:hover::after {
  width: 50%;
  height: 96%;
  opacity: 1;
  transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
}
.project-highlite .center-box {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .project-highlite .center-box {
    display: block;
  }
}
.project-highlite .center-box .highlight-box1 .btn {
  position: relative;
  display: inline-block;
  width: 80%;
  box-shadow: none;
  outline: none;
  border: 0px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-height: 91px;
}
@media screen and (max-width: 767px) {
  .project-highlite .center-box .highlight-box1 .btn {
    margin: 0px;
    width: 100%;
  }
}
.project-highlite .center-box .highlight-box1 .btn span {
  font-size: 24px;
  color: #3C3B3B;
  letter-spacing: 1%;
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: capitalize;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-bottom: 2px solid #FBB249;
}
@media screen and (max-width: 992px) {
  .project-highlite .center-box .highlight-box1 .btn span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-highlite .center-box .highlight-box1 .btn span {
    font-size: 16px;
    border: 2px solid #FBB249;
    min-height: auto;
  }
}
@media screen and (max-width: 540px) {
  .project-highlite .center-box .highlight-box1 .btn span {
    font-size: 16px;
    border: 2px solid #FBB249;
    min-height: 72px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.project-highlite .center-box .highlight-box1 :active, .project-highlite .center-box .highlight-box1 :hover, .project-highlite .center-box .highlight-box1 :focus {
  outline: 0 !important;
  outline-offset: 0;
}
.project-highlite .center-box .highlight-box1 ::before,
.project-highlite .center-box .highlight-box1 ::after {
  position: absolute;
  content: "";
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7::before,
.project-highlite .center-box .highlight-box1 .btn.hover-border-7::after {
  bottom: 0;
  transition: width 0.2s 0.35s ease-out;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7::before {
  right: 50%;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7::after {
  left: 50%;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7:hover::before,
.project-highlite .center-box .highlight-box1 .btn.hover-border-7:hover::after {
  width: 50%;
  transition: width 0.2s ease-in;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span::before,
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span::after {
  width: 0%;
  height: 0%;
  background: transparent;
  opacity: 0;
  z-index: 2;
  transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span::before {
  bottom: 0;
  left: 0;
  border-left: 2px solid #FBB249;
  border-top: 2px solid #FBB249;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span::after {
  bottom: 0;
  right: 0;
  border-right: 2px solid #FBB249;
  border-top: 2px solid #FBB249;
}
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span:hover::before,
.project-highlite .center-box .highlight-box1 .btn.hover-border-7 span:hover::after {
  width: 50%;
  height: 96%;
  opacity: 1;
  transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
}

.architure-layout-sec {
  padding-bottom: 80px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .architure-layout-sec {
    padding: 50px 10px 40px;
  }
}
.architure-layout-sec .heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .architure-layout-sec .heading {
    margin-bottom: 25px;
  }
}
.architure-layout-sec .heading h4 {
  font-size: 42px;
  color: #292A39;
}
@media screen and (max-width: 500px) {
  .architure-layout-sec .heading h4 {
    font-size: 28px;
  }
}
.architure-layout-sec .tab-section {
  gap: 42px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 992px) {
  .architure-layout-sec .tab-section {
    flex-direction: column;
    gap: 25px;
  }
}
.architure-layout-sec .tab-section .content-img {
  flex: 1;
}
.architure-layout-sec .tab-section .content-img img {
  width: 100%;
  border: 1px solid #ddd;
}
.architure-layout-sec .tab-section .content-panel {
  flex: 1;
}
.architure-layout-sec .tab-section .content-panel .tab-container {
  display: flex;
  gap: 40px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .architure-layout-sec .tab-section .content-panel .tab-container {
    gap: 10px;
  }
}
.architure-layout-sec .tab-section .content-panel .tab-container .tab {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  cursor: pointer;
  color: #727272;
}
@media screen and (max-width: 992px) {
  .architure-layout-sec .tab-section .content-panel .tab-container .tab {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .architure-layout-sec .tab-section .content-panel .tab-container .tab {
    font-size: 14px;
  }
}
.architure-layout-sec .tab-section .content-panel .tab-container .tab.active {
  color: #292A39;
  position: relative;
}
.architure-layout-sec .tab-section .content-panel .tab-container .tab.active::before {
  content: " ";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -1px;
  left: 0px;
  background: #FBB249;
}
.architure-layout-sec .tab-section .content-panel .tab-content {
  display: none;
}
.architure-layout-sec .tab-section .content-panel .tab-content p {
  color: #727272;
  font-size: 18px;
}
.architure-layout-sec .tab-section .content-panel .tab-content .details {
  margin-top: 20px;
}
.architure-layout-sec .tab-section .content-panel .tab-content .details h6 {
  margin: 10px 0;
  font-size: 20px;
  color: #292A39;
}
.architure-layout-sec .tab-section .content-panel button {
  background-color: #2A4D69;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .architure-layout-sec .tab-section .content-panel button {
    height: 44px;
  }
}
.architure-layout-sec .tab-section .content-panel .tab-content.active {
  display: block;
}

.Offering-sec {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .Offering-sec {
    display: none;
  }
}
.Offering-sec .description h2 {
  color: #3C3B3B;
  font-size: 42px;
  margin-bottom: 30px;
}
.Offering-sec .description h3 {
  color: #3C3B3B;
  font-size: 32px;
  margin-bottom: 10px;
}
.Offering-sec .description p {
  color: #727272;
  font-size: 18px;
}
.Offering-sec .carousel .cards {
  display: flex;
}
.Offering-sec .carousel .cards .card {
  padding: 70px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
  font-size: 16px;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0px !important;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 992px) {
  .Offering-sec .carousel .cards .card {
    height: 237px;
    padding: 38px 20px 20px;
  }
}
.Offering-sec .carousel .cards .card .icon {
  padding-bottom: 10px;
}
.Offering-sec .carousel .cards .card p {
  color: #3C3B3B;
  font-size: 20px;
}
.Offering-sec .carousel .cards .card2 {
  display: none;
  transition: transform 1.5s ease, opacity 0s ease;
  position: absolute;
  top: 0px;
  transform: translateX(0);
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
  font-size: 16px;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
@media screen and (max-width: 992px) {
  .Offering-sec .carousel .cards .card2 {
    height: 237px;
    padding: 38px 20px 20px;
  }
}
.Offering-sec .carousel .cards .card2 .icon {
  padding-bottom: 10px;
}
.Offering-sec .carousel .cards .card2 p {
  color: #3C3B3B;
  font-size: 20px;
}
.Offering-sec .carousel .cards .card3 {
  display: none;
  transition: transform 1.5s ease, opacity 0s ease;
  position: absolute;
  top: 0px;
  transform: translateX(0);
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
  font-size: 16px;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
@media screen and (max-width: 992px) {
  .Offering-sec .carousel .cards .card3 {
    height: 237px;
    padding: 38px 20px 20px;
  }
}
.Offering-sec .carousel .cards .card3 .icon {
  padding-bottom: 10px;
}
.Offering-sec .carousel .cards .card3 p {
  color: #3C3B3B;
  font-size: 20px;
}
.Offering-sec .carousel .cards .hidden {
  opacity: 0;
  transform: translatex(50%);
  pointer-events: none;
}
.Offering-sec .carousel .cards .show {
  display: block;
  transform: translatex(0%);
  pointer-events: auto;
}
.Offering-sec .carousel .cards .orange {
  background: #FEF2DF;
}
.Offering-sec .carousel .cards .blue {
  background: #CFDFEC;
}
.Offering-sec .arrow-col {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.Offering-sec .arrow-col .arrow-btn {
  border-radius: 100%;
  padding: 10px 10px;
  background: #2A4D69;
}

.offring-mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .offring-mob {
    padding: 0px 10px 0px;
  }
}
@media screen and (max-width: 768px) {
  .offring-mob {
    display: block;
  }
}
.offring-mob .description h2 {
  color: #3C3B3B;
  font-size: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .offring-mob .description h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.offring-mob .description h3 {
  color: #3C3B3B;
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .offring-mob .description h3 {
    font-size: 23px;
  }
}
.offring-mob .description p {
  color: #727272;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .offring-mob .swiper .swiper-wrapper .swiper-slide {
    width: 132px !important;
  }
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards {
  display: flex;
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card {
  border-radius: 0px;
  padding: 70px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 250px;
  font-size: 16px;
  color: #333;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card {
    padding: 20px 10px 20px;
    height: 150px;
  }
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card .icon {
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card .icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 540px) {
  .offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card .icon img {
    width: 100%;
  }
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card p {
  color: #3C3B3B;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .card p {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0px;
  }
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .orange {
  background: #FEF2DF;
}
.offring-mob .swiper .swiper-wrapper .swiper-slide .carousel .cards .blue {
  background: #CFDFEC;
}
.offring-mob .swiper-btn {
  position: relative;
  margin-top: 20px;
}
.offring-mob .swiper-btn .swiper-button-prev {
  position: absolute;
  bottom: 0px;
  left: auto;
  right: 53px;
  background: #2A4D69;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  padding: 10px 10px;
}
.offring-mob .swiper-btn .swiper-button-prev::after {
  content: " ";
  font: normal normal normal 14px/1 FontAwesome;
  color: #FFFFFF;
}
.offring-mob .swiper-btn .swiper-button-next {
  background: #2A4D69;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  padding: 10px 10px;
}
.offring-mob .swiper-btn .swiper-button-next::after {
  content: " ";
  font: normal normal normal 14px/1 FontAwesome;
  color: #FFFFFF;
}

.location-sec {
  padding: 80px 0px;
}
@media screen and (max-width: 540px) {
  .location-sec {
    padding: 50px 10px;
  }
}
.location-sec .heading {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .location-sec .heading {
    margin-bottom: 20px;
  }
}
.location-sec .heading h4 {
  font-size: 42px;
  color: #292A39;
}
@media screen and (max-width: 540px) {
  .location-sec .heading h4 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.location-sec .heading p {
  color: #727272;
  font-size: 18px;
}
.location-sec .map {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .location-sec .map {
    padding-bottom: 30px;
  }
}
.location-sec .map img {
  width: 100%;
}
.location-sec .map iframe {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .location-sec .map iframe {
    height: 100%;
  }
}
.location-sec .accordion {
  width: 100%;
  padding: 0px 30px;
}
@media screen and (max-width: 768px) {
  .location-sec .accordion {
    padding: 0px;
  }
}
.location-sec .accordion .accordion-content h4 {
  color: #3C3B3B;
  font-size: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .location-sec .accordion .accordion-content h4 {
    font-size: 22px;
    margin-top: 20px;
  }
}
.location-sec .accordion .accordion-content ul {
  margin: 0px;
  padding: 0px;
}
.location-sec .accordion .accordion-content ul li {
  background: #2A4D69;
  color: #fff;
  height: 48px;
  padding: 0.8rem 1.2rem;
  list-style-type: none;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .location-sec .accordion .accordion-content ul li {
    height: 100%;
  }
}

.video-sec {
  padding: 50px 0px 10px;
}
@media screen and (max-width: 768px) {
  .video-sec {
    padding: 0px 10px 0px;
  }
}
.video-sec .video-container {
  position: relative;
}
.video-sec .video-container .video-thumbnail {
  width: 100%;
  height: auto;
  cursor: pointer;
  display: block;
  background-image: url("/asset/preview (2) 2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}
@media screen and (max-width: 540px) {
  .video-sec .video-container .video-thumbnail {
    height: 200px;
  }
}
.video-sec .video-container .play {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 8%;
}
.video-sec .video-container .video-player {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.video-sec .video-container .video-player iframe {
  width: 100%;
  height: 100%;
}

.gallery-sec {
  padding: 80px 0px;
}
@media screen and (max-width: 540px) {
  .gallery-sec {
    padding: 50px 10px 80px;
  }
}
.gallery-sec .heading {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .gallery-sec .heading {
    margin-bottom: 25px;
  }
}
.gallery-sec .heading h4 {
  font-size: 42px;
  color: #292A39;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .gallery-sec .heading h4 {
    font-size: 28px;
  }
}
.gallery-sec .heading p {
  font-size: 20px;
  color: #727272;
}
.gallery-sec .street-view {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .gallery-sec .street-view {
    margin-bottom: 15px;
    height: 300px;
  }
}
.gallery-sec .street-view iframe {
  width: 100%;
  height: 100%;
}
.gallery-sec .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.gallery-sec .swiper-box {
  position: relative;
}
.gallery-sec .swiper-box .swiper-pagination {
  position: absolute;
  top: 0px;
  --swiper-theme-color:#2A4D69;
  --swiper-navigation-size:50px;
}

.contact-sec {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .contact-sec {
    padding: 0px 10px 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact-sec .get-in-touch-wrapper {
    margin-bottom: 30px;
  }
}
.contact-sec .get-in-touch-wrapper h4 {
  font-size: 42px;
  color: #292A39;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact-sec .get-in-touch-wrapper h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.contact-sec .get-in-touch-wrapper p {
  font-size: 20px;
  color: #727272;
  margin-bottom: 40px;
}
.contact-sec .get-in-touch-wrapper .icon-text-wrapper {
  display: flex;
}
.contact-sec .get-in-touch-wrapper .icon-text-wrapper .icon {
  padding-top: 14px;
}
.contact-sec .get-in-touch-wrapper .icon-text-wrapper .info-wrap {
  padding-left: 20px;
}
.contact-sec .get-in-touch-wrapper .icon-text-wrapper .info-wrap h6 {
  color: #292A39;
  font-size: 20px;
}
.contact-sec .get-in-touch-wrapper .icon-text-wrapper .info-wrap p {
  color: #292A39;
  font-size: 16px;
  margin-bottom: 20px;
}
.contact-sec form h4 {
  font-size: 42px;
  color: #292A39;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact-sec form h4 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.contact-sec form .name-flied {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .contact-sec form .name-flied {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.contact-sec form .name-flied input {
  width: 100%;
  padding: 10px;
  border: 1px solid #3C3B3B;
}
.contact-sec form .email {
  width: 100%;
  padding: 10px;
  /* margin-bottom: 25px; */
  border: 1px solid #3C3B3B;
}
@media screen and (max-width: 992px) {
  .contact-sec form .email {
    margin-bottom: 15px;
  }
}
.contact-sec form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #3C3B3B;
}
.contact-sec form button {
  float: inline-end;
  background: #2A4D69;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  border: none;
  margin-top: 20px;
  height: 48px;
}
@media screen and (max-width: 992px) {
  .contact-sec form button {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact-sec form button {
    height: 44px;
  }
}

.footer-sec {
  background: #2A4D69;
  padding: 50px 0px 30px;
}
@media screen and (max-width: 768px) {
  .footer-sec {
    padding: 50px 10px;
  }
}
.footer-sec .footer-info .left-sec {
  margin-bottom: 20px;
}
.footer-sec .footer-info .left-sec img {
  padding-bottom: 20px;
}
.footer-sec .footer-info .left-sec p {
  font-size: 16px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .footer-sec .footer-info .left-sec p {
    width: 100%;
  }
}
.footer-sec .footer-info .left-sec h6 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 40px;
}
.footer-sec .footer-info .left-sec a {
  text-decoration: none;
  color: #ffffff;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer-sec .footer-info .left-sec a {
    display: block;
    margin-bottom: 10px;
  }
}
.footer-sec .footer-info .right-sec h5 {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
}
.footer-sec .footer-info .right-sec .subscribe-container {
  display: flex;
  border: 2px solid #f39c12; /* Border color */
  border-radius: 0px;
  overflow: hidden;
  color: #fff;
}
.footer-sec .footer-info .right-sec .subscribe-container .email-input {
  padding: 10px 15px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  background: none;
  color: white;
}
.footer-sec .footer-info .right-sec .subscribe-container ::-moz-placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.footer-sec .footer-info .right-sec .subscribe-container ::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.footer-sec .footer-info .right-sec .subscribe-container ::-ms-input-placeholder { /* Edge 12-18 */
  color: #ffffff;
}
.footer-sec .footer-info .right-sec .subscribe-container .subscribe-button {
  background-color: #f39c12; /* Button color */
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}
.footer-sec .footer-info .right-sec .subscribe-container .subscribe-button:hover {
  background-color: #e67e22; /* Button hover color */
}
.footer-sec .footer-info .right-sec .share-icon {
  margin: 20px 0px;
  width: 10%;
  display: flex;
}
.footer-sec .footer-info .right-sec .share-icon img {
  margin-right: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-sec .footer-info .right-sec .share-icon img {
    width: 65%;
  }
}
@media screen and (max-width: 540px) {
  .footer-sec .footer-info .right-sec .share-icon img {
    width: 100%;
  }
}
.footer-sec .footer-info .right-sec h6 {
  font-size: 18px;
  color: #ffffff;
  margin-top: 40px;
}

.thank-you {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}
.thank-you .thankyou {
  text-align: center;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  padding: 30px;
  width: 640px;
  height: 410px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .thank-you .thankyou {
    width: 100%;
    height: 100%;
  }
}
.thank-you .thankyou h1 {
  font-size: 60px;
  margin-bottom: 30px;
  font-family: "Neutra Text TF", sans-serif;
  color: #292A39;
}
.thank-you .thankyou p {
  font-family: "Neutra Text TF", sans-serif;
  font-size: 20px;
  color: #727272;
}
.thank-you .thankyou .share .email button {
  background: #2A4D69;
  color: #ffffff;
  font-family: "Neutra Text TF light", sans-serif;
  height: 48px;
  border: none;
  padding: 0px 16px;
}
.thank-you .thankyou .share .email button i {
  margin-right: 10px;
}

.rare-sec {
  padding-bottom: 60px;
}
@media screen and (max-width: 540px) {
  .rare-sec {
    padding: 20px 10px 40px;
  }
}
.rare-sec .rare-detail h4 {
  color: #3C3B3B;
  font-size: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .rare-sec .rare-detail h4 {
    font-size: 28px;
  }
}
.rare-sec .rare-detail .rera-info-wrap {
  display: flex;
}
@media screen and (max-width: 540px) {
  .rare-sec .rare-detail .rera-info-wrap {
    flex-direction: column-reverse;
  }
}
.rare-sec .rare-detail .rera-info-wrap .left-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 540px) {
  .rare-sec .rare-detail .rera-info-wrap .left-wrap {
    width: 100%;
  }
}
.rare-sec .rare-detail .rera-info-wrap .left-wrap p {
  padding-top: 10px;
}
.rare-sec .rare-detail .rera-info-wrap .right-wrap {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .rare-sec .rare-detail .rera-info-wrap .right-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.rare-sec .rare-detail .rera-info-wrap .right-wrap img {
  width: 70%;
}
@media screen and (max-width: 540px) {
  .rare-sec .rare-detail .rera-info-wrap .right-wrap img {
    width: 100%;
  }
}

.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow-y: auto;
}
.form-popup-bg .form-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 500px;
  /* max-height: 600px; */
  max-height: 675px;
  width: 100%;
  padding: 40px;
  position: relative;
  color: #3C3B3B;
}
.form-popup-bg .form-container .close-button {
  background: none;
  color: #3C3B3B;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #FBB249;
  cursor: pointer;
}
.form-popup-bg .form-container h1 {
  margin: 0 0 20px;
}
.form-popup-bg .form-container p {
  margin: 0 0 20px;
}
.form-popup-bg .form-container form {
  display: flex;
  flex-direction: column;
}
.form-popup-bg .form-container form label {
  display: block;
  margin-bottom: 10px;
}
.form-popup-bg .form-container form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #FBB249;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.form-popup-bg .form-container form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #FBB249;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.form-popup-bg .form-container form button {
  background: #2A4D69;
  color: #ffffff;
  font-size: 18px;
  padding: 10px;
  max-height: 48px;
  cursor: pointer;
  max-width: 100px;
  border: none;
}

.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}/*# sourceMappingURL=style.css.map */

.error-message {
  color: red;
  font-size: 11px;
  display: block;
  font-style: italic;
}
.name-flied div{
  width: 100%;
}