/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--montserrat-medium);
}

:root {
  --theme-yellow: #8F7938;
  --light-yellow: #dcc46a;
  --theme-brown: #aa997a;
  --montserrat-regular: 'montserrat-regular';
  --montserrat-medium: 'montserrat-medium';
  --montserrat-semibold: 'montserrat-semibold';
  --montserrat-bold: 'montserrat-bold';
}

@font-face {
  font-family: "montserrat-regular";
  src: url("../fonts/montserrat-regular.woff2") format("woff2"), url("../fonts/montserrat-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat-medium";
  src: url("../fonts/montserrat-medium.woff2") format("woff2"), url("../fonts/montserrat-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat-semibold";
  src: url("../fonts/montserrat-semibold.woff2") format("woff2"), url("../fonts/montserrat-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat-bold";
  src: url("../fonts/montserrat-bold.woff2") format("woff2"), url("../fonts/montserrat-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 98px;
  }
}
@media screen and (max-width: 600px) {
  body {
    padding-top: 75px;
  }
}

.container {
  max-width: 84%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

.left-container {
  max-width: 92%;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .left-container {
    max-width: 95%;
  }
}
@media screen and (max-width: 991px) {
  .left-container {
    max-width: 100%;
  }
}

.desc {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .desc {
    font-size: 10px;
    bottom: 5px;
  }
}

.body-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.body-overlay.is-active {
  display: block;
}

.heading {
  font-size: 30px;
  line-height: 35px;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1680px) {
  .heading {
    font-size: 25px;
    line-height: 35px;
  }
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 22px;
    line-height: 28px;
  }
}

.sub-heading {
  color: var(--theme-yellow);
  text-transform: uppercase;
  font-family: var(--montserrat-semibold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .sub-heading {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

.text-justify {
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .text-justify {
    text-align: left;
  }
}

.theme-btn {
  position: relative;
  background-color: transparent;
  border: none;
  padding: 15px 20px;
  z-index: 1;
  transition: all 0.6s ease;
  color: #000;
}
@media screen and (max-width: 1680px) {
  .theme-btn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .theme-btn {
    font-size: 14px;
    padding: 10px;
  }
}
.theme-btn:hover {
  color: #fff;
}
.theme-btn:hover:after {
  width: 101%;
  background-color: var(--theme-yellow);
}
.theme-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.theme-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  transition: all 0.6s ease;
}
.theme-btn.enq-btn {
  margin-left: 20px;
  margin-bottom: 45px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .theme-btn.enq-btn {
    display: none;
  }
}
.theme-btn.enq-btn:before {
  background-color: transparent;
  border: 1px solid #fff;
}
.theme-btn.transparent:before {
  background-color: transparent;
  border: 1px solid var(--theme-yellow);
}
.theme-btn.yellow {
  color: #fff;
}
.theme-btn.yellow:hover {
  color: #000;
}
.theme-btn.yellow:before {
  background-color: var(--theme-yellow);
}
.theme-btn.yellow:after {
  background-color: #fff;
  border: 1px solid var(--theme-yellow);
}
.theme-btn.white-border {
  color: #fff;
}
.theme-btn.white-border:hover {
  color: #000;
}
.theme-btn.white-border:before {
  background-color: transparent;
  border: 1px solid #fff;
}
.theme-btn.white-border:after {
  background-color: #fff;
}
.theme-btn.long-btn {
  padding: 15px 80px;
}
@media screen and (max-width: 1440px) {
  .theme-btn.long-btn {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 600px) {
  .theme-btn.banner-btn {
    font-size: 10px;
    padding: 10px;
  }
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  background-color: var(--theme-yellow) !important;
  border: 1px solid var(--theme-yellow);
  color: #fff !important;
  line-height: 0 !important;
  padding: 10px !important;
  margin: 5px !important;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    padding: 5px !important;
  }
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  color: var(--theme-yellow) !important;
}
.owl-carousel .owl-nav button.owl-prev:hover:before, .owl-carousel .owl-nav button.owl-next:hover:before {
  width: 100%;
  height: 100%;
}
.owl-carousel .owl-nav button.owl-prev:before, .owl-carousel .owl-nav button.owl-next:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: #f1f1f1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}
.owl-carousel .owl-nav button.owl-next {
  left: 60px;
}
@media screen and (max-width: 600px) {
  .owl-carousel .owl-nav button.owl-next {
    left: 45px;
  }
}
.owl-carousel .owl-dots {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .owl-carousel .owl-dots {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .owl-carousel .owl-dots {
    margin-top: 0;
  }
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--theme-yellow);
  margin: 5px;
  transition: all 0.6s ease;
}
.owl-carousel .owl-dots .owl-dot.active {
  width: 50px;
}

.main-carousel .banner-img {
  animation: zoomin 10s infinite;
}
@media screen and (max-width: 991px) {
  .main-carousel .banner-img {
    animation: unset;
  }
}
.main-carousel .carousel-caption {
  top: 50%;
  transform: translate(-50%, -50%);
  right: unset;
  bottom: unset;
  left: 30%;
  padding-top: unset;
  padding-bottom: unset;
  animation: square-full 1.5s ease-in-out forwards;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .main-carousel .carousel-caption {
    top: 30%;
    left: 35%;
  }
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption {
    top: 35%;
  }
}
.main-carousel .carousel-caption.center {
  left: 50%;
  text-align: center;
}
.main-carousel .carousel-caption.abt-txt {
  left: 9%;
  text-align: unset;
  transform: translate(0, -50%);
}
@media screen and (max-width: 991px) {
  .main-carousel .carousel-caption.abt-txt {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption.abt-txt {
    top: 25%;
  }
}
.main-carousel .carousel-caption.abt-txt h5 {
  font-size: 30px;
  line-height: 32px;
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption.abt-txt h5 {
    font-size: 20px;
    line-height: 22px;
  }
}
.main-carousel .carousel-caption.abt-txt h5:before {
  display: none;
}
.main-carousel .carousel-caption.abt-txt p {
  font-size: unset;
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption.abt-txt p {
    font-size: 10px;
  }
}
.main-carousel .carousel-caption h5 {
  position: relative;
  font-size: 40px;
  line-height: 45px;
  font-family: var(--montserrat-medium);
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  .main-carousel .carousel-caption h5 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1600px) {
  .main-carousel .carousel-caption h5 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption h5 {
    font-size: 18px;
    line-height: 20px;
  }
}
.main-carousel .carousel-caption h5 span {
  font-family: var(--montserrat-bold);
}
.main-carousel .carousel-caption h5:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--light-yellow);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -15px;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption h5:before {
    bottom: -10px;
  }
}
.main-carousel .carousel-caption h5.first:before {
  display: none;
}
.main-carousel .carousel-caption p {
  font-size: 20px;
  margin-top: 30px;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1680px) {
  .main-carousel .carousel-caption p {
    font-size: 18px;
    line-height: 25px;
  }
}
@media screen and (max-width: 1600px) {
  .main-carousel .carousel-caption p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .main-carousel .carousel-caption p {
    margin-top: 20px;
    font-size: 10px;
    line-height: 14px;
  }
}
.main-carousel .carousel-caption p span {
  color: var(--light-yellow);
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translate(0, -50%);
  bottom: unset;
  justify-content: unset;
  width: unset;
  padding: unset;
  text-align: unset;
  opacity: unset;
  border-radius: 50%;
  padding: 10px 8px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
    padding: 6px 9px;
  }
}
.carousel-control-prev:hover:before,
.carousel-control-next:hover:before {
  background-color: var(--theme-brown);
}
.carousel-control-prev:hover i,
.carousel-control-next:hover i {
  color: #fff;
}
.carousel-control-prev:before,
.carousel-control-next:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 25px;
  color: #000;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .carousel-control-prev i,
  .carousel-control-next i {
    font-size: 15px;
  }
}

.carousel-control-prev {
  left: 5%;
}

.carousel-control-next {
  right: 5%;
}

.rera {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 991px) {
  .rera {
    bottom: unset;
    top: 20px;
  }
}
.rera p {
  color: #fff;
  margin-bottom: 0;
  text-align: right;
  padding-right: 10px;
  font-size: 14px;
  line-height: 16px;
}
@media screen and (max-width: 991px) {
  .rera p {
    font-size: 10px;
    line-height: 12px;
  }
}
@media screen and (max-width: 600px) {
  .rera p {
    font-size: 8px;
    line-height: 10px;
  }
}
.rera a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
@media screen and (max-width: 991px) {
  .rera a {
    font-size: 10px;
    line-height: 12px;
  }
}
@media screen and (max-width: 600px) {
  .rera a {
    font-size: 8px;
    line-height: 10px;
  }
}
.rera img {
  width: 80px;
}
@media screen and (max-width: 991px) {
  .rera img {
    width: 50px;
  }
}
@media screen and (max-width: 600px) {
  .rera img {
    width: 45px;
  }
}

#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

#smooth-content {
  min-height: 100vh;
}

.reveal, .reveal2, .reveal3, .reveal-down {
  overflow: hidden;
  visibility: hidden;
}

.banner {
  position: relative;
}
.banner .banner-txt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 8%;
  animation: square-full 1s ease-in-out forwards;
}
@media screen and (max-width: 991px) {
  .banner .banner-txt {
    top: 50%;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-txt {
    top: 80%;
  }
}
.banner .banner-txt.top-side {
  top: 40%;
}
.banner .banner-txt h2 {
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 1440px) {
  .banner .banner-txt h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .banner .banner-txt h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-txt h2 {
    font-size: 18px;
  }
}

.project-banner {
  position: relative;
}
.project-banner .txt {
  position: absolute;
  top: 57%;
  transform: translate(0, -50%);
  left: 15%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 50px 20px;
  width: 28%;
  color: #fff;
  animation: square-full 1s ease-in-out forwards;
}
@media screen and (max-width: 1600px) {
  .project-banner .txt {
    width: 30%;
  }
}
@media screen and (max-width: 991px) {
  .project-banner .txt {
    width: 50%;
    top: 30%;
    left: 7%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 991px) {
  .project-banner .txt.big {
    width: 65%;
  }
}
.project-banner .txt .logo img {
  width: 40%;
}
@media screen and (max-width: 1600px) {
  .project-banner .txt .logo img {
    width: 35%;
  }
}
.project-banner .txt .line {
  position: relative;
}
.project-banner .txt .line:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #fff;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}
.project-banner .txt h2 {
  font-size: 30px;
}
.project-banner .txt h2 strong {
  font-family: var(--montserrat-bold);
}
.project-banner .txt p {
  font-size: 18px;
  line-height: 20px;
}
@media screen and (max-width: 1680px) {
  .project-banner .txt p {
    font-size: unset;
    line-height: 18px;
  }
}

.project-item:hover .img:before {
  opacity: 1;
}
.project-item:hover .img .zoom:before {
  width: 50px;
  height: 50px;
}
.project-item:hover .img .zoom i {
  opacity: 1;
}
.project-item:hover .txt {
  color: #fff;
}
.project-item:hover .txt:before {
  height: 100%;
}
.project-item.no-hover:hover .img:before {
  opacity: 0;
}
.project-item.no-hover:hover .img .zoom:before {
  width: 0;
  height: 0;
}
.project-item.no-hover:hover .img .zoom i {
  opacity: 0;
}
.project-item.no-hover:hover .txt {
  color: #000;
}
.project-item.no-hover:hover .txt:before {
  height: 0;
}
.project-item .img {
  position: relative;
}
.project-item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.project-item .img .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.project-item .img .zoom i {
  padding-top: 2px;
  opacity: 0;
  font-size: 18px;
  transition: all 0.6s ease;
}
.project-item .img .zoom:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}
.project-item .img .type {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--theme-yellow);
  padding: 5px 20px;
}
.project-item .txt {
  position: relative;
  background-color: #ebebeb;
  padding: 20px;
  transition: all 0.6s ease;
  z-index: 1;
}
.project-item .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-yellow);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.project-item .txt p {
  margin-bottom: 0;
  font-size: 14px;
}
@media screen and (max-width: 1680px) {
  .project-item .txt p {
    font-size: 13px;
  }
}
.project-item .txt p.name {
  font-family: var(--montserrat-bold);
  font-size: unset;
}
@media screen and (max-width: 1680px) {
  .project-item .txt p.name {
    font-size: 14px;
  }
}
.project-item .txt .details {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 991px) {
  .project-item .txt .details {
    justify-content: start;
  }
}

.breadcrumb-section {
  border-bottom: 1px solid var(--theme-brown);
}
.breadcrumb-section .breadcrumb {
  margin-bottom: 0;
  padding: 10px 0;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  color: var(--theme-yellow);
  font-family: var(--montserrat-medium);
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .breadcrumb-section .breadcrumb .breadcrumb-item {
    font-size: 12px;
  }
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #000;
  text-decoration: none;
}

.moretext {
  display: none;
}

.moreless-button:hover {
  cursor: pointer;
}

.team-popup .modal-content {
  overflow: hidden;
}
.team-popup .modal-content .vector {
  position: absolute;
  top: 40%;
  transform: translate(0, -50%);
  left: 0;
}
.team-popup .modal-content .modal-header {
  position: relative;
  color: #fff;
  border-radius: 0;
  padding: 50px 70px;
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  .team-popup .modal-content .modal-header {
    padding: 20px 50px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1470px) {
  .team-popup .modal-content .modal-header {
    padding: 10px 40px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .team-popup .modal-content .modal-header {
    padding: 10px 20px;
  }
}
.team-popup .modal-content .modal-header:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--theme-yellow);
  top: 0;
  left: 0;
  z-index: -1;
}
.team-popup .modal-content .modal-header .txt .modal-title {
  font-size: 30px;
}
@media screen and (max-width: 600px) {
  .team-popup .modal-content .modal-header .txt .modal-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .team-popup .modal-content .modal-header .txt p {
    font-size: 12px;
  }
}
.team-popup .modal-content .modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  opacity: 1;
  transition: all 0.6s ease;
  background-color: #fff;
}
.team-popup .modal-content .modal-header .btn-close:hover {
  background-color: #c5c5c5;
}
.team-popup .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
@media screen and (max-width: 1680px) {
  .team-popup .modal-content .modal-header .btn-close {
    top: 50px;
    background-color: #fff;
  }
}
@media screen and (max-width: 1440px) {
  .team-popup .modal-content .modal-header .btn-close {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .team-popup .modal-content .modal-header .btn-close {
    top: 32px;
  }
}
.team-popup .modal-content .modal-body {
  position: relative;
  padding: 50px 70px;
  text-align: justify;
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  .team-popup .modal-content .modal-body {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 1470px) {
  .team-popup .modal-content .modal-body {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 600px) {
  .team-popup .modal-content .modal-body {
    padding: 20px;
    /* Scroll */
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Optional scrollbar */
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar {
    width: 5px;
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar-track {
    background: transparent;
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar-thumb {
    background: var(--theme-yellow);
    border-radius: 10px;
  }
  .team-popup .modal-content .modal-body {
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Optional scrollbar styling */
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar {
    width: 6px;
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar-thumb {
    background: var(--theme-yellow);
    border-radius: 10px;
  }
  .team-popup .modal-content .modal-body::-webkit-scrollbar-thumb:hover {
    background: #806b2f;
  }
}
@media screen and (max-width: 400px) {
  .team-popup .modal-content .modal-body {
    max-height: 500px;
  }
}
.team-popup .modal-content .modal-body .vector {
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
}
.team-popup .modal-content .modal-body .img {
  position: relative;
  margin-top: -160px;
}
@media screen and (max-width: 1680px) {
  .team-popup .modal-content .modal-body .img {
    margin-top: -130px;
  }
}
@media screen and (max-width: 991px) {
  .team-popup .modal-content .modal-body .img {
    margin-top: 0;
  }
}
.team-popup .modal-content .modal-body .img .linked {
  position: absolute;
  background-color: #0b69c7;
  padding: 8px 10px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: all 0.6s ease;
}
.team-popup .modal-content .modal-body .img .linked:hover {
  background-color: #fff;
}
.team-popup .modal-content .modal-body .img .linked:hover i {
  color: #0b69c7;
}
.team-popup .modal-content .modal-body .img .linked i {
  color: #fff;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .team-popup .modal-content .modal-body p {
    margin-top: 20px;
  }
}

.project-popup {
  background: rgba(0, 0, 0, 0.8);
}
.project-popup .modal-content {
  border: 1px solid #5a5a5a;
  border-radius: 0;
}
.project-popup .modal-content .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 0;
  z-index: 999;
}
.project-popup .modal-content .modal-body {
  position: relative;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}
.project-popup .modal-content .modal-body .vector {
  position: absolute;
  right: -70px;
  bottom: -150px;
  z-index: -1;
}
.project-popup .modal-content .modal-body .modal-title {
  color: var(--theme-yellow);
  font-family: var(--montserrat-semibold);
}
@media screen and (max-width: 991px) {
  .project-popup .modal-content .modal-body .project-details {
    padding: 20px;
  }
}
.project-popup .modal-content hr {
  margin: 0;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .orderChange {
    order: 2;
  }
}

form .input {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  padding: 15px;
}
@media screen and (max-width: 1440px) {
  form .input {
    padding: 10px;
  }
}
form .input::-moz-placeholder {
  font-size: 12px;
}
form .input::placeholder {
  font-size: 12px;
}
form .input:focus {
  box-shadow: none;
  border: 1px solid #e4e4e4;
}
form select {
  background-color: transparent !important;
  border: 1px solid #e4e4e4;
  border-radius: 0 !important;
  padding: 15px !important;
}
form textarea {
  resize: none;
}

.grid {
  width: 100%;
  display: block;
  margin-left: -12px;
  margin-right: -12px;
}
.grid::after {
  content: "";
  display: block;
  clear: both;
}
.grid .grid-item {
  width: 33.333333%;
  padding: 0 12px;
  margin-bottom: 24px;
  box-sizing: border-box;
  float: left;
}
.grid .grid-item .project-item {
  width: 100%;
}
.grid .grid-item .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.grid .grid-item .img img {
  display: block;
  width: 100%;
  height: auto;
}
.grid .grid-item .txt {
  width: 100%;
}
.grid .grid-item .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.grid .grid-item:hover .zoom {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 991px) {
  .grid .grid-item {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .grid {
    margin-left: -8px;
    margin-right: -8px;
  }
  .grid .grid-item {
    width: 100%;
    padding: 0 8px;
    margin-bottom: 20px;
  }
}

.divider {
  position: relative;
  height: 1px;
  background-color: #ebebeb;
}
.divider .line {
  position: relative;
  z-index: 1;
}
.divider .line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--theme-yellow);
  top: 0;
  left: 0;
  z-index: -1;
}

p span, li span {
  color: var(--theme-yellow);
  font-family: var(--montserrat-bold);
}

.counters .item {
  display: flex;
  justify-content: end;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .counters .item {
    justify-content: unset;
  }
}
.counters .item .counter {
  font-size: 32px;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 600px) {
  .counters .item .counter {
    font-size: 22px;
    line-height: 24px;
  }
}
.counters .item .img {
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  .counters .item .img {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .counters .item .img img {
    width: 70%;
  }
}
.counters .item h5 {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .counters .item h5 {
    font-size: 22px;
  }
}
.counters .item p {
  line-height: 18px;
}
@media screen and (max-width: 600px) {
  .counters .item p {
    font-size: 14px;
    line-height: 16px;
  }
}

.news-iframe {
  width: 100%;
  height: 100vh;
  border: 0;
  padding-top: 135px;
  display: block;
}
@media screen and (max-width: 1680px) {
  .news-iframe {
    padding-top: 134px;
  }
}
@media screen and (max-width: 1440px) {
  .news-iframe {
    padding-top: 132px;
  }
}
@media screen and (max-width: 991px) {
  .news-iframe {
    padding-top: 14px;
  }
}
@media screen and (max-width: 600px) {
  .news-iframe {
    padding-top: 12px;
  }
}

.carousel-indicators {
  text-align: center;
}
.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  margin: 2px !important;
}

.img {
  position: relative;
}
.img .img-title {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 20px;
  color: #fff;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #6b5b2d;
  z-index: 9999;
  transition: all 0.6s ease;
  padding: 0;
  z-index: 999;
}
.navbar:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .navbar:before {
    opacity: 1;
  }
}
.navbar.scrolled:before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .navbar .container {
    max-width: 100%;
    padding: 0;
  }
}
.navbar .navbar-brand {
  width: 15%;
  padding: 20px 0;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 35%;
    padding: 10px 0;
    padding-left: 5%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    width: 45%;
  }
}
.navbar .navbar-toggler {
  border: none;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    padding-right: 5%;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
.navbar .navbar-collapse {
  align-items: end;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav {
    margin-top: 20px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  padding: 55px 5px;
  margin: 0 20px;
  transition: all 0.6s ease;
  font-size: 15px;
  letter-spacing: 1px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: unset;
    padding: 15px 5%;
    margin: unset;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.last {
  margin-right: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--light-yellow);
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active.dropdown-toggle:after, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover.dropdown-toggle:after {
  border-color: var(--light-yellow) !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle {
  transition: all 0.6s ease;
  padding-right: 20px;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-right: 15px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  position: absolute;
  top: 48%;
  right: 0;
  box-sizing: border-box;
  width: 10px !important;
  height: 10px !important;
  border-style: solid;
  border-color: white;
  border-width: 0px 2px 2px 0px;
  transform: translate(0, -50%) rotate(45deg);
  transition: border-width 150ms ease-in-out;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    width: 8px !important;
    height: 8px !important;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    right: 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
    right: 30px;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--theme-yellow);
  left: 0;
  bottom: 0;
  z-index: -1;
  display: none;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
    display: block;
  }
}
.navbar {
  /* FIRST DROPDOWN */
}
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown > .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #6b5b2d;
  border-radius: unset;
  z-index: 999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
@media screen and (max-width: 991px) {
  .navbar .dropdown > .dropdown-menu {
    position: relative;
    width: 100%;
    border: 0;
  }
}
.navbar .dropdown.show > .dropdown-menu {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar {
  /* SECOND DROPDOWN */
}
.navbar .dropend {
  position: relative;
}
.navbar .dropend > .dropdown-menu {
  display: block;
  position: static !important;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.navbar .dropend > .dropdown-menu.show {
  max-height: 300px;
  opacity: 1;
}
.navbar .dropend > .dropdown-menu .dropdown-item {
  position: relative;
  color: var(--theme-yellow);
  border-top: unset;
  padding: 5px 15px;
}
@media screen and (max-width: 991px) {
  .navbar .dropend > .dropdown-menu .dropdown-item {
    padding: 5px 5%;
  }
}
.navbar .dropend > .dropdown-menu .dropdown-item:hover {
  background: transparent;
  letter-spacing: 1px;
}
.navbar .dropend > .dropdown-toggle {
  border-top: 0;
}
.navbar .dropend > .dropdown-toggle:after {
  float: right;
  position: absolute;
  top: 48%;
  right: 20px;
  box-sizing: border-box;
  width: 10px !important;
  height: 10px !important;
  border-style: solid;
  border-color: #000;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar .dropend > .dropdown-toggle:after {
    right: 50px;
  }
}
@media screen and (max-width: 600px) {
  .navbar .dropend > .dropdown-toggle:after {
    right: 30px;
  }
}
.navbar .dropend > .dropdown-toggle:hover:after {
  border-color: #fff;
}
.navbar {
  /* ITEMS */
}
.navbar .dropdown-item {
  display: block;
  padding: 12px 15px;
  color: #000;
  background: #fff;
  border-top: 1px solid var(--theme-yellow);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar .dropdown-item {
    padding: 15px 5%;
  }
}
.navbar .dropdown-item:hover {
  background: #000;
  color: #fff;
}

.hmsec01 {
  position: relative;
  overflow: hidden;
}
.hmsec01 .img {
  position: relative;
  overflow: hidden;
}
.hmsec01 .img .parallax-img {
  position: absolute;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  top: -30%;
  left: 0;
}
.hmsec01 .img .content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .hmsec01 .img .content {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec01 .img .content {
    padding: 40px 0;
  }
}
.hmsec01 .img .content .high-box {
  position: relative;
  z-index: 1;
}
.hmsec01 .img .content .high-box h2 {
  font-size: 30px;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 600px) {
  .hmsec01 .img .content .high-box h2 {
    font-size: 25px;
  }
}
.hmsec01 .img .content .high-box:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: -40px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .hmsec01 .img .content .high-box:before {
    display: none;
  }
}

.hmsec02 {
  position: relative;
  padding: 100px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 {
    padding: 40px 0;
  }
}
.hmsec02 .vector {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -170px;
}
.hmsec02 p {
  line-height: 30px;
}
@media screen and (max-width: 1440px) {
  .hmsec02 p {
    line-height: 25px;
  }
}
.hmsec02 .img {
  position: relative;
}
.hmsec02 .img .float-img {
  position: absolute;
  top: 58%;
  right: 0;
  text-align: right;
}
@media screen and (max-width: 1680px) {
  .hmsec02 .img .float-img {
    top: 50%;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec02 .img .float-img {
    top: 57%;
  }
}
@media screen and (max-width: 991px) {
  .hmsec02 .img .float-img {
    top: 65%;
  }
}
@media screen and (max-width: 600px) {
  .hmsec02 .img .float-img {
    top: 45%;
  }
}
.hmsec02 .img .float-img img {
  width: 90%;
  border: 10px solid #f3f3f3;
  border-right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}
@media screen and (max-width: 1440px) {
  .hmsec02 .img .float-img img {
    width: 70%;
  }
}

.hmsec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/home/06.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 {
    padding: 40px 0;
  }
}
.hmsec03 .prod-head {
  position: relative;
  z-index: 1;
}
.hmsec03 .prod-head:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  left: 31%;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 1366px) {
  .hmsec03 .prod-head:before {
    left: 33%;
  }
}
@media screen and (max-width: 991px) {
  .hmsec03 .prod-head:before {
    display: none;
  }
}
.hmsec03 .item .img {
  position: relative;
}
.hmsec03 .item .img .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 600px) {
  .hmsec03 .item .img .logo {
    top: 10px;
    left: 10px;
    width: 50%;
  }
}
.hmsec03 .item .txt {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}
@media screen and (max-width: 1680px) {
  .hmsec03 .item .txt {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec03 .item .txt {
    display: block;
  }
}
.hmsec03 .item .txt .content p {
  margin-bottom: 0;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1366px) {
  .hmsec03 .item .txt .content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .hmsec03 .item .txt .content p {
    font-size: unset;
  }
}

.hmsec04 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec04 {
    padding: 40px 0;
  }
}
.hmsec04 h4 {
  font-size: 18px;
  font-family: var(--montserrat-semibold);
  color: var(--theme-yellow);
}
.hmsec04 ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.hmsec04 ul li {
  padding: 5px 0;
}
@media screen and (max-width: 1440px) {
  .hmsec04 ul li {
    padding: 0;
  }
}

.hmsec05 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec05 {
    padding: 40px 0;
  }
}
.hmsec05 .vector {
  position: absolute;
  right: -100px;
  bottom: -100px;
}
.hmsec05 .item {
  padding: 0 200px;
}
@media screen and (max-width: 1440px) {
  .hmsec05 .item {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .hmsec05 .item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec05 .item {
    padding: 0;
  }
}
.hmsec05 .item img {
  display: unset !important;
  width: unset !important;
}

.hmsec06 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/home/08.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec06 {
    padding: 40px 0;
  }
}
.hmsec06 .item .txt {
  background-color: #fff;
  padding: 50px;
  height: 395px;
}
@media screen and (max-width: 1680px) {
  .hmsec06 .item .txt {
    padding: 40px;
  }
}
@media screen and (max-width: 1600px) {
  .hmsec06 .item .txt {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .hmsec06 .item .txt {
    height: unset;
  }
}
.hmsec06 .item .txt ul li {
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1366px) {
  .hmsec06 .item .txt ul li {
    font-size: 14px;
  }
}
.hmsec06 .item .txt ul li::marker {
  color: var(--theme-yellow);
}

.hmsec07 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec07 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec07 {
    padding: 40px 0;
  }
}
.hmsec07 .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .hmsec07 .owl-nav {
    top: 30%;
  }
}
@media screen and (max-width: 600px) {
  .hmsec07 .owl-nav {
    top: 35%;
  }
}
.hmsec07 .owl-nav .owl-prev {
  left: -70px;
}
@media screen and (max-width: 991px) {
  .hmsec07 .owl-nav .owl-prev {
    left: -50px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec07 .owl-nav .owl-prev {
    left: -25px;
  }
}
.hmsec07 .owl-nav .owl-next {
  left: unset !important;
  right: -70px;
}
@media screen and (max-width: 991px) {
  .hmsec07 .owl-nav .owl-next {
    right: -50px;
  }
}
@media screen and (max-width: 600px) {
  .hmsec07 .owl-nav .owl-next {
    right: -25px;
  }
}

.hmsec08 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hmsec08 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .hmsec08 {
    padding: 40px 0;
  }
}
.hmsec08 .content {
  background-image: url(../images/home/11.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.hmsec08 .content .txt {
  padding: 50px;
}
@media screen and (max-width: 1680px) {
  .hmsec08 .content .txt {
    padding: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .hmsec08 .content .txt {
    padding: 30px;
  }
}
.hmsec08 .content .txt p {
  font-family: var(--montserrat-medium);
}
.hmsec08 button {
  width: 200px;
}

.abtsec01 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .abtsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec01 {
    padding: 40px 0;
  }
}
.abtsec01 .vector {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .abtsec01 .vector {
    opacity: 0.5;
  }
}
.abtsec01 p {
  line-height: 30px;
}
@media screen and (max-width: 1440px) {
  .abtsec01 p {
    line-height: 25px;
  }
}
.abtsec01 .logo-img {
  padding-left: 100px;
}
@media screen and (max-width: 991px) {
  .abtsec01 .logo-img {
    padding-left: 0;
    text-align: center;
  }
}
.abtsec01 .logo-img img {
  width: 70%;
}
@media screen and (max-width: 1440px) {
  .abtsec01 .logo-img img {
    width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .abtsec01 .logo-img img {
    width: 50%;
  }
}

.abtsec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/bg-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .abtsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .abtsec02 {
    padding: 40px 0;
  }
}
.abtsec02 .content {
  position: relative;
  overflow: hidden;
}
.abtsec02 .content:hover .team-card .item .img:before {
  opacity: 1;
}
.abtsec02 .content:hover .team-card .item .img .zoom {
  opacity: 1;
}
.abtsec02 .content:hover .txt {
  color: #fff;
}
.abtsec02 .content:hover .txt:before {
  height: 100%;
}
.abtsec02 .content .team-card {
  color: #000;
  text-decoration: none;
}
.abtsec02 .content .team-card .item {
  height: 100%;
  background-color: #fff;
  transition: all 0.6s ease;
}
.abtsec02 .content .team-card .item .img {
  position: relative;
  overflow: hidden;
}
.abtsec02 .content .team-card .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.6s ease;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .abtsec02 .content .team-card .item .img:before {
    opacity: 1;
  }
}
.abtsec02 .content .team-card .item .img .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .abtsec02 .content .team-card .item .img .zoom {
    opacity: 1;
    padding: 6px 8px;
    top: unset;
    left: unset;
    transform: unset;
    right: 20px;
    bottom: 20px;
  }
}
.abtsec02 .content .team-card .item .img .zoom i {
  transition: all 0.6s ease;
}
.abtsec02 .content .team-card .item .img .zoom:hover {
  background-color: var(--theme-yellow);
}
.abtsec02 .content .team-card .item .img .zoom:hover i {
  color: #fff;
}
.abtsec02 .content .txt {
  position: relative;
  background-color: #fff;
  padding: 20px;
  z-index: 1;
  transition: all 0.6s ease;
}
.abtsec02 .content .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--theme-yellow);
  top: 0;
  left: 0;
  transition: all 0.6s ease;
  z-index: -1;
}
.abtsec02 .content .txt .name {
  font-family: var(--montserrat-semibold);
}
.abtsec02 .content .txt p {
  font-size: 14px;
}
@media screen and (max-width: 1366px) {
  .abtsec02 .content .txt p {
    font-size: 12px;
  }
}
.abtsec02 .content .txt .linked {
  position: absolute;
  background-color: #0b69c7;
  padding: 6px 8px;
  border: 1px solid #0b69c7;
  border-radius: 50%;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  z-index: 9;
  transition: all 0.6s ease;
}
.abtsec02 .content .txt .linked:hover {
  background-color: #fff;
}
.abtsec02 .content .txt .linked:hover i {
  color: #0b69c7;
}
.abtsec02 .content .txt .linked i {
  color: #fff;
  transition: all 0.6s ease;
}

.projsec01 {
  position: relative;
}
.projsec01 .img {
  position: relative;
  overflow: hidden;
}
.projsec01 .img .parallax-img {
  position: absolute;
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  top: -30%;
  left: 0;
}
.projsec01 .img .content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .projsec01 .img .content {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec01 .img .content {
    padding: 40px 0;
  }
}
.projsec01 .img .content .high-box {
  position: relative;
  z-index: 1;
}
.projsec01 .img .content .high-box:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: -70px;
  z-index: -1;
}
@media screen and (max-width: 1680px) {
  .projsec01 .img .content .high-box:before {
    right: -50px;
  }
}
@media screen and (max-width: 991px) {
  .projsec01 .img .content .high-box:before {
    display: none;
  }
}

.projsec02 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .projsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec02 {
    padding: 40px 0;
  }
}
.projsec02 h4 {
  font-size: 30px;
}
@media screen and (max-width: 600px) {
  .projsec02 h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .projsec02 .logo {
    text-align: center;
  }
}
.projsec02 .logo img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .projsec02 .logo img {
    width: 35%;
  }
}
.projsec02 .content {
  position: relative;
}
.projsec02 .content:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #000;
  top: 50%;
  transform: translate(0, -50%);
  left: -50px;
}
@media screen and (max-width: 1600px) {
  .projsec02 .content:before {
    left: -35px;
  }
}
@media screen and (max-width: 991px) {
  .projsec02 .content:before {
    display: none;
  }
}
.projsec02 .content:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 25px;
  background-color: #000;
  top: 50%;
  transform: translate(0, -50%);
  left: -50px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (max-width: 1600px) {
  .projsec02 .content:after {
    left: -35px;
  }
}
@media screen and (max-width: 991px) {
  .projsec02 .content:after {
    display: none;
  }
}

.projsec03 {
  position: relative;
  background-color: #ebebeb;
  overflow: hidden;
  z-index: 1;
}
.projsec03 .content {
  padding: 100px;
}
@media screen and (max-width: 1440px) {
  .projsec03 .content {
    padding: 50px;
  }
}
@media screen and (max-width: 600px) {
  .projsec03 .content {
    padding: 35px;
  }
}
.projsec03 .content li {
  margin: 10px 0;
}
.projsec03 .vector {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.projsec04 {
  position: relative;
  padding: 100px 0 0;
  background-image: url(../images/bg-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .projsec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 {
    padding: 40px 0;
  }
}
.projsec04:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  background-color: #ebebeb;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .projsec04:before {
    height: 80px;
  }
}
.projsec04 .amenities-carousel .carousel-caption {
  bottom: 0;
  background-color: #000;
  left: unset;
  right: 0;
  padding: 20px 80px;
}
@media screen and (max-width: 1680px) {
  .projsec04 .amenities-carousel .carousel-caption {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 991px) {
  .projsec04 .amenities-carousel .carousel-caption {
    padding: 15px 40px;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 .amenities-carousel .carousel-caption {
    padding: 5px 15px;
  }
}
.projsec04 .amenities-carousel .carousel-caption p {
  margin-bottom: 0;
  font-size: 22px;
}
@media screen and (max-width: 1680px) {
  .projsec04 .amenities-carousel .carousel-caption p {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .projsec04 .amenities-carousel .carousel-caption p {
    font-size: unset;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 .amenities-carousel .carousel-caption p {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 .amenities-carousel .carousel-control-prev,
  .projsec04 .amenities-carousel .carousel-control-next {
    display: block;
  }
}
.projsec04 .amenities-carousel .carousel-control-prev:before,
.projsec04 .amenities-carousel .carousel-control-next:before {
  border: 2px solid #fff;
}
.projsec04 .amenities-carousel .carousel-control-prev {
  left: -5%;
}
@media screen and (max-width: 991px) {
  .projsec04 .amenities-carousel .carousel-control-prev {
    left: -4%;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 .amenities-carousel .carousel-control-prev {
    left: -5%;
  }
}
.projsec04 .amenities-carousel .carousel-control-next {
  right: -5%;
}
@media screen and (max-width: 991px) {
  .projsec04 .amenities-carousel .carousel-control-next {
    right: -4%;
  }
}
@media screen and (max-width: 600px) {
  .projsec04 .amenities-carousel .carousel-control-next {
    right: -5%;
  }
}

.projsec05 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media screen and (max-width: 991px) {
  .projsec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec05 {
    padding: 40px 0;
  }
}
.projsec05 .item .txt {
  padding: 10px;
  text-align: center;
}
.projsec05 .item .txt p {
  line-height: 18px;
}
@media screen and (max-width: 1680px) {
  .projsec05 .item .txt p {
    font-size: 14px;
    line-height: 16px;
  }
}

.projsec06 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .projsec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec06 {
    padding: 40px 0;
  }
}
.projsec06 .vector {
  position: absolute;
  left: -50px;
  bottom: -50px;
  z-index: -1;
}
.projsec06 .item .head h4 {
  color: var(--theme-yellow);
  margin-bottom: 0;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1680px) {
  .projsec06 .item .head h4 {
    font-size: 20px;
  }
}
.projsec06 .item ul li {
  margin: 5px 0;
}
@media screen and (max-width: 1440px) {
  .projsec06 .item ul li {
    margin: 0;
  }
}
.projsec06 .item ul li::marker {
  color: var(--theme-yellow);
}
.projsec06 .img {
  position: relative;
  border: 1px solid #cfcece;
}
.projsec06 .img:hover:before {
  opacity: 1;
}
.projsec06 .img:hover .zoom:before {
  width: 50px;
  height: 50px;
}
.projsec06 .img:hover .zoom i {
  opacity: 1;
}
.projsec06 .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.projsec06 .img .zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.projsec06 .img .zoom:hover:before {
  background-color: var(--theme-yellow);
}
.projsec06 .img .zoom:hover i {
  color: #fff;
}
.projsec06 .img .zoom i {
  padding-top: 2px;
  opacity: 0;
  font-size: 18px;
  transition: all 0.6s ease;
  color: #000;
}
.projsec06 .img .zoom:before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  background-color: #fff;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}

.projsec07 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/bg-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .projsec07 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec07 {
    padding: 40px 0;
  }
}
.projsec07 .tab-content .img {
  position: relative;
  border: 1px solid #f1f1f1;
}
.projsec07 .tab-content .img img {
  filter: blur(5px);
}
.projsec07 .tab-content .img .icon {
  position: absolute;
  right: 40px;
  bottom: 40px;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .projsec07 .tab-content .img .icon {
    right: 10px;
    bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .projsec07 .tab-content .img .icon img {
    width: 80%;
  }
}
.projsec07 .tab-content .img .icon.active {
  pointer-events: auto;
  opacity: 1;
}
.projsec07 .tab-content .img .icon.active:hover {
  cursor: pointer;
}
.projsec07 .nav-pills .nav-link {
  color: #fff;
  border-bottom: 1px solid #867658;
  border-radius: 0;
  padding: 40px 30px;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .projsec07 .nav-pills .nav-link {
    padding: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .projsec07 .nav-pills .nav-link {
    padding: 25px;
  }
}
@media screen and (max-width: 991px) {
  .projsec07 .nav-pills .nav-link {
    padding: 15px;
  }
}
.projsec07 .nav-pills .nav-link.active {
  background-color: #867658;
}

.projsec08 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media screen and (max-width: 991px) {
  .projsec08 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .projsec08 {
    padding: 40px 0;
  }
}
.projsec08 .content {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .projsec08 .content .rera-details p {
    font-size: 14px;
  }
}
.projsec08 .content .rera-img {
  width: 150px;
}
.projsec08 .content a {
  color: #000;
  text-decoration: none;
}

.completedsec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .completedsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .completedsec01 {
    padding: 40px 0;
  }
}
.completedsec01 a {
  color: #000;
  text-decoration: none;
}

.upcomingsec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .upcomingsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .upcomingsec01 {
    padding: 40px 0;
  }
}

.csrsec01 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .csrsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .csrsec01 {
    padding: 40px 0;
  }
}
.csrsec01 .vector {
  position: absolute;
  right: -50px;
  bottom: -150px;
  z-index: -1;
}
.csrsec01 p {
  line-height: 30px;
}

.csrsec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/CSR/02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .csrsec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .csrsec02 {
    padding: 40px 0;
  }
}
.csrsec02 ul li {
  margin: 5px 0;
}
.csrsec02 ul li::marker {
  color: var(--theme-yellow);
}
.csrsec02 .carousel-control-prev:before,
.csrsec02 .carousel-control-next:before {
  background-color: var(--theme-brown);
}
.csrsec02 .carousel-control-prev .carousel-control-prev-icon,
.csrsec02 .carousel-control-prev .carousel-control-next-icon,
.csrsec02 .carousel-control-next .carousel-control-prev-icon,
.csrsec02 .carousel-control-next .carousel-control-next-icon {
  height: 1.6rem;
}
@media screen and (max-width: 1440px) {
  .csrsec02 .carousel-control-prev .carousel-control-prev-icon,
  .csrsec02 .carousel-control-prev .carousel-control-next-icon,
  .csrsec02 .carousel-control-next .carousel-control-prev-icon,
  .csrsec02 .carousel-control-next .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.1rem;
  }
}

.csrsec03 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/CSR/04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (max-width: 991px) {
  .csrsec03 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .csrsec03 {
    padding: 40px 0;
  }
}
.csrsec03 ul li {
  margin: 5px 0;
}
.csrsec03 .carousel-control-prev:before,
.csrsec03 .carousel-control-next:before {
  background-color: var(--theme-brown);
}
.csrsec03 .carousel-control-prev .carousel-control-prev-icon,
.csrsec03 .carousel-control-prev .carousel-control-next-icon,
.csrsec03 .carousel-control-next .carousel-control-prev-icon,
.csrsec03 .carousel-control-next .carousel-control-next-icon {
  height: 1.6rem;
}
@media screen and (max-width: 1440px) {
  .csrsec03 .carousel-control-prev .carousel-control-prev-icon,
  .csrsec03 .carousel-control-prev .carousel-control-next-icon,
  .csrsec03 .carousel-control-next .carousel-control-prev-icon,
  .csrsec03 .carousel-control-next .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.1rem;
  }
}

.csrsec04 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .csrsec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .csrsec04 {
    padding: 40px 0;
  }
}
.csrsec04 .vector {
  position: absolute;
  left: -50px;
  bottom: -150px;
  z-index: -1;
}
.csrsec04 .owl-carousel img {
  width: unset;
}
.csrsec04 .item .img {
  display: flex;
  justify-content: center;
  background-color: var(--theme-brown);
  padding: 50px 30px;
}
.csrsec04 .item .txt {
  padding: 10px;
  text-align: center;
}
.csrsec04 .item .txt p {
  font-family: var(--montserrat-medium);
  line-height: 18px;
}
@media screen and (max-width: 600px) {
  .csrsec04 .item .txt p {
    font-size: 12px;
    line-height: 14px;
  }
}

.csrsec05 {
  position: relative;
  padding: 100px 0;
  background-color: #ebebeb;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .csrsec05 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .csrsec05 {
    padding: 40px 0;
  }
}
.csrsec05 .vector {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: -1;
}

.newssec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .newssec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .newssec01 {
    padding: 40px 0;
  }
}
.newssec01 a {
  color: #000;
  text-decoration: none;
}
.newssec01 p {
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 1440px) {
  .newssec01 p {
    font-size: 15px;
  }
}
.newssec01 p.detail {
  font-size: 14px;
}
.newssec01 h4 {
  font-size: 18px;
  font-family: var(--montserrat-semibold);
}
@media screen and (max-width: 1440px) {
  .newssec01 h4 {
    font-size: unset;
  }
}
.newssec01 .item {
  border-bottom: 1px solid var(--theme-yellow);
  padding: 20px 0;
}

.contactsec01 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .contactsec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 {
    padding: 40px 0;
  }
}
.contactsec01 .vector {
  position: absolute;
  right: -50px;
  bottom: -150px;
  z-index: -1;
}
.contactsec01 .item {
  position: relative;
  padding-left: 70px;
}
@media screen and (max-width: 600px) {
  .contactsec01 .item {
    padding-left: 50px;
  }
}
.contactsec01 .item .icon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme-yellow);
  padding: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .contactsec01 .item .icon {
    padding: 5px;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .contactsec01 .item .icon img {
    width: 70%;
  }
}
.contactsec01 .item h5 {
  font-size: 24px;
  font-family: var(--montserrat-medium);
}
@media screen and (max-width: 600px) {
  .contactsec01 .item h5 {
    font-size: 18px;
  }
}
.contactsec01 .item .big-font {
  font-size: 20px;
  font-family: var(--montserrat-semibold);
  color: #000 !important;
  text-decoration: none !important;
}
@media screen and (max-width: 600px) {
  .contactsec01 .item .big-font {
    font-size: unset;
  }
}

.contactsec02 {
  position: relative;
  background-image: url(../images/contact/02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.contactsec02 .content {
  padding: 50px;
}
@media screen and (max-width: 600px) {
  .contactsec02 .content {
    padding: 30px;
  }
}
.contactsec02 .content .input {
  padding: 10px 20px;
}
.contactsec02 .map {
  line-height: 0;
}
.contactsec02 .map iframe {
  height: 700px;
}

.sec01 {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .sec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec01 {
    padding: 30px 0;
  }
}

@media screen and (max-width: 600px) {
  footer {
    padding-bottom: 45px;
  }
}
footer .footer {
  position: relative;
  padding: 50px 0 30px;
  background-color: #363636;
}
@media screen and (max-width: 991px) {
  footer .footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  footer .footer {
    padding: 40px 0;
  }
}
footer .footer .footer-logo {
  width: 70%;
}
@media screen and (max-width: 991px) {
  footer .footer .footer-logo {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  footer .footer .footer-logo {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  footer .footer .footer-logo {
    width: 60%;
  }
}
footer .footer .footer-coloumn {
  position: relative;
  z-index: 1;
  height: 100%;
}
footer .footer .footer-coloumn:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--light-yellow);
  top: 0;
  left: -50px;
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 991px) {
  footer .footer .footer-coloumn.first:before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  footer .footer .footer-coloumn.last:before {
    display: none;
  }
}
footer .footer .footer-coloumn .footer-head {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--montserrat-medium);
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  footer .footer .footer-coloumn .footer-head {
    margin-bottom: 0;
  }
}
footer .footer .footer-coloumn ul {
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer .footer-coloumn ul li {
  list-style-type: none;
  margin: 5px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer .footer .footer-coloumn ul li {
    margin: 5px 0;
  }
}
footer .footer .footer-coloumn ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  font-family: var(--montserrat-regular);
}
footer .footer .footer-coloumn ul li a:hover:before {
  width: 100%;
}
footer .footer .footer-coloumn ul li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--light-yellow);
  left: 0;
  bottom: -5px;
  z-index: -1;
  transition: all 0.6s ease;
}
footer .footer .footer-coloumn ul.social-media li {
  position: relative;
  display: inline-block;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
}
footer .footer .footer-coloumn ul.social-media li:hover:before {
  width: 100%;
  height: 100%;
}
footer .footer .footer-coloumn ul.social-media li:hover a i {
  transform: rotate(360deg);
}
footer .footer .footer-coloumn ul.social-media li.instagram-icon {
  background: #f09433;
  background: linear-gradient(to right bottom, #f9ce34, #ee2a7b, #6228d7);
}
footer .footer .footer-coloumn ul.social-media li.linkedin-icon {
  background-color: #0077B5;
}
footer .footer .footer-coloumn ul.social-media li.facebook-icon {
  background-color: #1877F2;
}
footer .footer .footer-coloumn ul.social-media li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background-color: #363636;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  transition: all 0.6s ease;
}
footer .footer .footer-coloumn ul.social-media li a {
  display: flex;
  padding: 8px 6px;
}
footer .footer .footer-coloumn ul.social-media li a:before {
  display: none;
}
footer .footer .footer-coloumn ul.social-media li a i {
  transition: all 0.6s ease;
}
footer .copyright {
  position: relative;
  background-color: #363636;
  color: #fff;
}
footer .copyright .content {
  border-top: 1px dashed var(--light-yellow);
  padding: 20px 0;
}
footer .copyright .content p {
  font-size: 14px;
  color: #c1bfbf;
}
footer .copyright .content a {
  position: relative;
  color: #fff;
  font-family: var(--montserrat-medium);
  text-decoration: none;
  z-index: 1;
  font-size: 14px;
  color: #c1bfbf;
}
footer .copyright .content a:hover:before {
  width: 100%;
}
footer .copyright .content a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--light-yellow);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -5px;
  z-index: -1;
  transition: all 0.6s ease;
}

.float-icons {
  position: fixed;
  top: 200px;
  right: -50px;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  .float-icons {
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
  }
}
.float-icons ul {
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}
.float-icons ul li {
  list-style-type: none;
  border-radius: 50px;
  margin: 10px 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li {
    border-radius: 0;
    margin: -1px;
    display: inline-block;
    width: 49.9%;
    border: unset;
    text-align: center;
    padding: 10px;
  }
}
.float-icons ul li.whatsapp-icon {
  background-color: #25d366;
}
.float-icons ul li.instagram-icon {
  background: #f09433;
  background: linear-gradient(to right bottom, #f9ce34, #ee2a7b, #6228d7);
}
.float-icons ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a {
    display: unset;
    align-items: unset;
    padding: 0;
  }
}
.float-icons ul li a .img {
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a .img {
    transform: scale(0.8);
  }
}
.float-icons ul li a .img:before {
  position: absolute;
  content: "";
  height: 150%;
  width: 150%;
  background-color: red;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  display: none;
  transition: all 0.6s ease;
}
.float-icons ul li a p {
  position: absolute;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a p {
    position: unset;
    opacity: 1;
    font-size: 14px;
  }
}

#thank-you {
  background-color: #000;
  height: 100vh;
  display: flex;
  align-items: center;
}
#thank-you h3 {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #thank-you h3 {
    font-size: 35px;
  }
}
#thank-you p {
  color: #fff;
}

.form-sec .modal-content {
  border-radius: 0;
}
.form-sec .modal-content .modal-header {
  background-color: var(--theme-yellow);
  border-radius: 0;
  color: #fff;
  padding: 15px 30px;
}
.form-sec .modal-content .modal-header .theme-btn-close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 30px;
  top: 20px;
  color: #fff;
}
.form-sec .modal-content .modal-header .modal-title {
  font-size: 20px;
}
.form-sec .modal-content .modal-body {
  padding: 30px;
  z-index: 1;
  overflow: hidden;
}
.form-sec .modal-content .modal-body .vector {
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: -1;
}
.form-sec .modal-content .modal-body input {
  width: 100%;
  height: auto;
  border-radius: 0;
  padding: 10px;
  border: 1px solid #787878;
  background-color: transparent;
  color: #000;
  font-size: 14px;
}
.form-sec .modal-content .modal-body input:focus {
  box-shadow: none;
  border-color: #787878;
  outline: none;
}
.form-sec .modal-content .modal-body input::-moz-placeholder {
  font-size: 12px;
  color: #787878;
}
.form-sec .modal-content .modal-body input::placeholder {
  font-size: 12px;
  color: #787878;
}
.form-sec .modal-content .modal-body input[type=date],
.form-sec .modal-content .modal-body input[type=time] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 12px;
  color: #787878;
  cursor: pointer;
}
.form-sec .modal-content .modal-body input[type=date]:focus,
.form-sec .modal-content .modal-body input[type=time]:focus {
  box-shadow: none;
  outline: none;
}
.form-sec .modal-content .modal-body input[type=date]::-webkit-calendar-picker-indicator,
.form-sec .modal-content .modal-body input[type=time]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}
.form-sec .modal-content .modal-body select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #787878;
  border-radius: 0;
  padding: 10px;
  padding-right: 40px;
  font-size: 12px;
  color: #787878;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-sec .modal-content .modal-body select:focus {
  box-shadow: none;
  border: 1px solid #787878;
  outline: none;
}
.form-sec .modal-content .modal-body #projects {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23787878' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
.form-sec .modal-content .modal-body select option[value=""] {
  color: #787878;
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #363636;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: #363636;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
@keyframes zoomin {
  100% {
    transform: scale(1.1);
  }
}
@keyframes square-full {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    left: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */