html,
body {
  font-family: "Mulish", sans-serif;
  overflow-x: hidden;
}

* {
  outline: none;
}
::-webkit-scrollbar {
  width: 3px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #b18e4e;
}
/*Styling Links*/

.logo img {
  width: 130px;
  transition: 0.5s all;
}
.logo-title p {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 9px;
  opacity: 0.7;
  margin-top: 5px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-title {
  text-align: center;
  background: #fff;
  margin-top: 15px;
}
/*.section {
  height: 100vh;
}*/

.main-banner img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.mcs-horizontal-example {
  width: 100%;
  overflow-x: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: flex-start;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.mcs-horizontal-example .mCSB_container {
  display: -webkit-flex;
  display: flex;
}

.mcs-horizontal-example section {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

.div#mCSB_1_scrollbar_horizontal {
  height: 100vh;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 0 !important;
}

.main-header {
  position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 9999;
    transition: 0.4s ease-out;
    top: 0;
    left: 40px;
}
.fixed .logo-title p {
  opacity: 0;
  margin: 0;
}

.main-header a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}

.main-header .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-header .nav-links .nav-link a {
  margin: 0 10px;
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
}

.main-header .nav-links .nav-link a span {
  color: #fff;
  width: 35px;
  height: 35px;
  background: #b18e4e;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .5s linear;
}
.main-header .nav-links .nav-link a span iconify-icon{
  font-size: 12px;
  animation: bounceRight2 2s infinite;
}
li.nav-link img {
  width: 34px;
  margin-left: 10px;
}
.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #000;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}

.main-header .menu-icon__line::before,
.main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #000;
  transition: background 0.8s ease;
}

.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}

.main-header .menu-icon__line::after {
  transform: translateY(5px);
}

.main-header .menu-btn {
  display: none;
}

.main-header.scrolled {
  height: 50px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.main-header.scrolled .menu-icon__line,
.main-header.scrolled .menu-icon__line::before,
.main-header.scrolled .menu-icon__line::after {
  background: white;
}

@media screen and (max-width: 991px) {
  .main-header .menu-icon {
    display: block;
  }

  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #fff;
    background: #272727;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    clip-path: circle(200px at top right);
  }

  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    text-align: center;
  }

  .main-header .nav-links .nav-link a {
       display: flex;
    padding: 0;
    font-size: 18px;
    /* text-align: center; */
    justify-content: center;
  }

  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    clip-path: circle(100% at center);
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out,
      transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(5) {
    transition-delay: 1.1s;
  }

  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: #F44336;
    animation: openTop 0.8s forwards;
  }
  .fixed .menu-icon__line {
    background: #F44336!important;
}

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: #F44336;
    animation: openBtm 0.8s forwards;
  }
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }

  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

.logo a iconify-icon {
  font-size: 22px;
  position: relative;
  top: 4px;
  margin-left: 30px;
  margin-right: 5px;
}

.main-banner {
  position: relative;
}

.main-title {
  font-size: 140px;
  color: #fff;
  font-family: "CentraNo2-Medium";
  line-height: 125px;
  animation: ani 5s;
}
@keyframes ani{
  from{
      letter-spacing: 35px;
      filter: blur(5px);
      opacity: 0;
  }to{
      letter-spacing: 0;
      filter: blur(0);
      opacity: 1px;
  }
}
.main-title-box {
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -30%);
  text-align: center;
}

.sub-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  padding: 0 25px;
}

.sub-contents p {
  margin: 0;
  font-size: 16px;
}

.sub-contents iconify-icon {
  font-size: 20px;
  margin: 10px 5px 0 5px;
}

.sc-in {
  width: 65%;
  margin: 0 auto;
  margin-top: 115px;
}

.lg-items img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-cover {
  display: flex;
  align-items: center;
  background-color: #e9e9e9;
  margin-left: -3px;
}

.lg-items h4 {
  color: #b18e4e;
  margin: 0;
  font-size: 110px;
}

.lg-items {
  position: relative;
}

.lg-items h4 {
  color: #b18e4e;
  margin: 0;
  font-size: 120px;
  font-family: "CentraNo2-Medium";
}

.sc-title2 {
  position: absolute;
  left: 50%;
  bottom: -30%;
  transform: translate(-50%, -7%);
}

.sc-title1 {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, -20%);
}

.lg-items {
  position: relative;
  margin-bottom: 75px;
}

.sc-in p {
  color: #444444;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "CentraNo2-Medium";
}

.sc-in a {
  color: #434343;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: 500;
  font-size: 16px;
  transition: all .5s linear;
}
.sc-in a:hover {
  color: #b18e4e;
  transition: all .5s linear;
}
.sc-in a iconify-icon {
  font-size: 26px;
  margin-left: 5px;
  transition: all .5s linear;
  animation: bounceRight2 2s infinite;
}
@keyframes bounceRight2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10% {
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.sc-in a:hover iconify-icon{
  color: #b18e4e;
  transition: all .5s linear;
  transform: translateX(10px);
}
.p0 {
  padding: 0 !important;
}

.servive-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.s-item-tit {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9;
  display: flex;
  align-items: center;
}

.servive-item {
  position: relative;
  overflow: hidden;
}
.servive-item:hover{
  cursor: pointer;
}
.servive-item:hover h5{
  color: #b18e4e;
  transition: all .4s linear;
}
.servive-item:hover iconify-icon{
  color: #b18e4e;
  transition: all .4s linear;
  transform: translateX(10px);
}
.servive-item:hover::after{
  opacity: 0.8;
  transition: all .9s linear;
}
.servive-item img{
  transition: all .9s linear;
}
.servive-item:hover img {
  transform: scale(1.04);
  transition: all .9s linear;
}
.s-item-tit iconify-icon {
  color: #ffffff;
  font-size: 26px;
  margin-left: 20px;
  transition: all .4s linear;
}
.s-item-tit h5 {
  font-size: 26px;
  text-transform: uppercase;
  font-family: "CentraNo2-Medium";
  margin: 0;
  transition: all .4s linear;
}
.servive-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#000;
  opacity: 0.5;
  transition: all .9s linear;
}

.about-cover {
  background-color: #b18e4e !important;
}

.about-cover .lg-items h4 {
  color: #ffffff;
}

.about-cover .sc-in p {
  color: #ffffff;
  text-align: justify;
}

.about-cover .sc-in a {
  color: #ffffff;
}
.about-cover .sc-in a:hover iconify-icon {
  color: #fff;
}
.works-cover {
  background: #e9e9e9;
  padding: 100px;
  height: 100vh;
  width: 730px;
  list-style-type: none;
}

.our-works ul {
  margin: 0;
  display: flex;
  padding: 0;
}

.cover-top {
  display: flex;
  align-items: center;
}

.cover-top h5 {
  font-size: 150px;
  margin: 0;
  color: #9c8b70;
  font-family: "CentraNo2-Medium";
}

.cover-top img {
  object-fit: cover;
  height: 130px;
  margin-right: 35px;
}

.cover-bottom,
.cover-middle {
  justify-content: flex-end;
  display: flex;
}

.cover-middle a {
  color: #b18e4e !important;
  font-size: 18px;
  text-decoration: none;
}

.cover-middle a img {
  margin-left: 15px;
}

.cover-middle {
  margin-top: 30px;
  margin-bottom: 10px;
}

.our-works > ul > li:nth-child(2) {
/*  background-color: #b18e4e;*/
  width: 1170px;
  padding: 0;
}

.work-item h4 {
  color: #fff;
  font-size: 45px;
  font-family: "CentraNo2-Medium";
}

.work-item p {
  color: #fff;
  margin: 10px 0 25px;
  font-size: 16px;
}

.works-cover a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: fit-content;
  font-weight: 500;
  font-size: 16px;
  font-family: "CentraNo2-Medium";
  transition: all .5s linear;
}
.works-cover a span {
  width: 35px;
  height: 35px;
  background: #b18e4e;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .5s linear;
}
.works-cover a span iconify-icon{
  margin: 0;
  font-size: 12px;
}
.works-cover a iconify-icon {
  font-size: 20px;
  margin-left: 5px;
  animation: bounceRight2 2s infinite;
}
.work-item {
  margin-top: 65px;
}
.work-item img {
  margin-bottom: 25px;
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.our-works > ul > li:nth-child(3) {
  background-color: #f9ba71;
}

.our-works ul li:nth-child(4) {
  background-color: #9c8b70;
}

.mh-address {
  background-color: #e9e9e9;
  padding: 100px;
  position: relative;
  height: 100vh;
}

.adrs-in h4 {
  color: #b18e4e;
  font-size: 45px;
  margin-bottom: 25px;
  font-family: "CentraNo2-Medium";
}

.adrs-item {
  display: flex;
  margin-bottom: 15px;
}

.contentbx a {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #434343;
  display: flex;
  font-family: "CentraNo2-Medium";
}

.contentbx p {
  font-size: 18px;
  color: #434343;
  margin: 0;
  font-family: "CentraNo2-Medium";
}

.icon-bx {
  color: #b18e4e;
  font-size: 21px;
  margin-right: 15px;
  margin-top: 4px;
}

.adrs-in {
  margin-top: 10%;
}

.adrs-vector {
  position: absolute;
  top: 0;
  right: 0;
}

.form-items input {
  width: 100%;
}

.first-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first-row input {
  width: 48%;
  float: left;
}

.mh-contact {
  background: #b18e4e;
  padding: 100px;
  display: flex;
  position: relative;
  height: 100vh;
}

.form-items input,
.form-items textarea {
  height: 45px;
  margin-bottom: 21px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0 25px;
}

.form-items input::placeholder,
.form-items textarea::placeholder {
  color: #fff;
}

.mhc-in {
  margin-top: 10%;
}
.mh-address .sub-contents {
  color: #9c8b70;
}

.mhc-in h4 {
  font-size: 45px;
  margin-bottom: 15px;
  color: #ffff;
  font-family: "CentraNo2-Medium";
}

.form-items textarea {
  height: 100px;
  color: #fff;
  padding: 15px 25px;
  width: 100%;
}

.form-submit {
  background: #fff;
  border: none;
  padding: 8px 40px;
  color: #b18e4e;
  font-family: "CentraNo2-Medium";
}

.production {
  position: absolute;
  bottom: 10px;
  right: 30px;
  margin: 0;
  color: #fff;
}

.production a {
  color: #fff;
  text-decoration: none;
}

.hint {
  position: absolute;
  right: -80px;
  top: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
  font-size: 18px;
}

.hint p {
  margin: 0 9px;
  text-transform: uppercase;
  font-size: 16px;
}

.hint iconify-icon {
  transform: rotate(-90deg);
  font-size: 20px;
  animation: bounceRight 8s infinite;
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  10% {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  60% {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
video {
  width: 100vw;
}

.contact-section {
  width: 100vw;
}
.hint {
  text-decoration: none;
  color: #fff;
}
.hint:hover {
  color: #fff;
}

.work-slider {
  width: 500px;
}

.mh-inner-title img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
.mh-inner-title {
  position: relative;
}
.mh-inner-title .page-title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 59px;
  font-family: "CentraNo2-Medium";
}

.contain-wrap {
  padding: 0 3% 0 0;
}
.welcom-part {
    padding: 100px 0 100px;
}
.contain-wrap .sect-title {
  width: 400px;
}
.sect-title {
  margin: 0;
  font-size: 40px;
  font-family: "CentraNo2-Medium";
}
.content-path p {
  color: #676767;
  font-weight: 400;
}
.in-link {
  color: #9c8b70;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.in-link iconify-icon {
  font-size: 27px;
  margin-left: 4px;
}
.page-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scale 20s linear infinite;
}
.pc-content {
  height: 560px;
  display: flex;
  align-items: center;
  background-color: #b18e4e;
  padding: 10%;
  margin-right: 15px;
}
.pc-content .sect-title {
  color: #ffff;
}

.cta-link {
  color: #ffff;
  text-decoration: none;
  margin-top: 15px;
}
.cta-link {
  color: #ffff;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "CentraNo2-Book";
  width: fit-content;
  font-size: 15px;
}
.cta-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffff;
}

.mh-works img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 24px;
}
.mhw-title p {
  width: 375px;
  margin-top: 30px;
  color: #676767;
}
.mhw-title .cta-link {
  color: #9c8b70;
}
.mhw-title .cta-link::after {
  background-color: #9c8b70;
}
.client-in {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}
#logo-ticker {
  margin: 0px auto;
  padding: 60px 0px;
  background-color: #fff;
  width: 100%;
  position: relative;
  display: flex;
}
#logo-ticker .footer-logo-slider {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  height: 120px;
  width: 100%;
  overflow: hidden;
  position: absolute;
}
.footer-logo-slider > ul {
  position: relative;
  display: inline-block;
}

.footer-logo-slider li {
  display: inline-block;
  height: 150px;
  width: 150px;
  padding: 5px;
  position: absolute;
  top: 0;
}
.cl-logo {
  display: inline-block;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
}

/*new style*/

.projects img {
  width: 100%;
  margin-bottom: 25px;
}
.mh-clients {
  padding: 0px 0 70px;
}
.client-in p {
  width: 840px;
  margin: 12px auto 70px;
}
.abt_latestwork {
  padding: 110px 0 70px;
}
.architect-works {
  padding: 110px 0 70px;
}
.client-details {
  text-align: center;
  position: relative;
}
.client-details h5 {
  font-size: 13px;
  margin: 10px 0 0 0;
  font-family: "CentraNo2-Medium";
}
.client-details img {
  max-width: 95px;
    height: 95px;
  margin: 0px auto 30px;
  border-radius: 50%;
}
.client-details p {
  font-size: 22px;
  transform: rotate(270deg);
  position: absolute;
  top: 44%;
  left: -60px;
  font-family: "CentraNo2-Medium";
  width: 290px;
  height: 30px;
  margin: 0;
}
.client-msg {
  height: 212px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 60px;
  border-left: 2px solid #d9d9d9;
 
}
.client-msg h5 {
  color: #444444;
  margin: 0;
  font-family: "CentraNo2-Medium";
  height: 75px;
  overflow-y: hidden;
  padding-right: 15px;
  font-size: 13px;
}

.quotes-ic img {
  width: 20px !important;
}
.testimonials {
  background: #ededed;
}
.quotes-ic {
  background: #ededed;
  padding: 20px 0px;
  position: absolute;
  left: -10px;
}
#testi-carousel {
  position: relative;
}
.testimonials .owl-dots {
  position: absolute;
  left: 31.8%;
  transform: translate(0%, 0px);
}
#testi-carousel .owl-dots .owl-dot span {
  width: 7px;
    height: 7px;
  margin: 5px 4px;
  border-radius: 0;
  background: #d9d9d9;
}
#testi-carousel .owl-dots .owl-dot.active span,
#testi-carousel .owl-dots .owl-dot:hover span {
  background: #b18e4e;
}
.footer-logo {
  width: 100%;
}
.in-ftr-contents {
  color: #eaeaea;
}
footer {
  background: #0b0b0b;
  padding: 40px 50px 40px 0;
  position: relative;
}
.mh-ftr-adrs {
  font-size: 16px;
  line-height: 30px;
  font-family: "CentraNo2-Book";
  margin-bottom: 30px;
}
footer a {
  color: #eaeaea;
  text-decoration: none;
  
  width: fit-content;
  font-family: "CentraNo2-Book";
}
footer a:hover {
  color: #eaeaea;
}
.footr-nav {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  margin: 30px 0;
  padding-bottom: 20px;
  align-items: end;
}
.footr-nav ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  width: 100%;
  margin-left:19%;
  position: relative;
  z-index: 9;
}
.footr-nav ul li {
  margin-right: 10%;
}
.footr-nav ul li a {
  text-transform: uppercase;
}
.site-div {
  display: flex;
  justify-content: space-between;
  
}
.site-div p {
  display: flex;
  color: #eaeaea;
  margin: 0;
  font-size: 14px;
  font-family: "CentraNo2-Book";
}

.footer-logo {
 
  height: 124px;
  object-fit: contain;
  margin: auto;
}
.content-path .cta-link {
  color: #9c8b70;
}
.content-path .cta-link::after {
  background: #9c8b70;
}
.cta-link iconify-icon {
  font-size: 22px;
  margin-left: 7px;
  margin-bottom: 2px;
  transition: all .5s linear;
}
.wwd-card img {
  width: 100%;
  object-fit: cover;
}
.whatwedo .sect-title {
  text-align: center;
  width: 100%;
  margin-bottom: 35px;
}
.whatwedo {
  padding: 100px 0;
  /* background-color: #f2f2f2; */
}
.wwd-card-content {
  background: #fff;
  padding: 25px;
}
.whatwedo.wwd_1 .wwd-card-content {
  width: 50%;
}
.wwd-card-content h6 {
  font-size: 22px;
  text-transform: capitalize;
  font-family: "CentraNo2-Book";
  margin-bottom: 15px;
}
.wwd-card-content .cta-link {
  color: #9c8b70;
  /* margin-left: auto; */
}
.wwd-card-content p {
  font-size: 15px;
  color: #676767;
}
.arctc-icon img {
  width: 45px;
}
.arctc-icon {
  height: 90px;
  width: 90px;
  border: 1px solid #676767;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
}
.architect-whatwedo {
  padding: 70px 0 90px;
}
/* footer::after {
  position: absolute;
  top: -60px;
  right: 0;
  background-image: url(../images/footer-vector.png);
  content: "";
  width: 640px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
} */
.fixed {
  height: 60px;
  background-color: #fff;
  color: #000;
  transition: 0.5s all;
  -webkit-box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.18);
}
.fixed .logo img {
  width: 37px;
  transition: 0.5s all;
  margin-top: 13px;
}

.project-img1 img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.project-img2 img {
  height: 155px;
  object-fit: cover;
}

#gallery img {
  /*margin: 0 15px;*/
  width: 100%;
  /*padding-right: 25px;*/
  height: 90px;
  object-fit: contain;
}
.slick-next:before,
.slick-prev:before {
  display: none;
}

.map-in {
  padding: 100px 5%;
  position: relative;
}

.map-in::after {
  width: 55%;
  height: 55%;
  content: "";
  position: absolute;
  background-color: #e9e9e9;
  top: 22%;
  right: 0;
}
.contact-form .form-items input,
.contact-form .form-items textarea {
  background: rgb(233 233 233);
  color: #000;
}
.contact-form .form-items input::placeholder,
.contact-form .form-items textarea::placeholder {
  color: #00000044;
}
.contact-form .form-submit {
  background: #b18e4e;
  color: #fff;
}
.cf-title {
  width: 60%;
  margin-bottom: 35px;
}
.cf-title .sect-title {
  margin-bottom: 6px;
}

.contact-bnr {
  width: 100%;
  height: 530px;
  object-fit: cover;
  padding-right: 50px;
}
.contact-form {
  margin-bottom: 100px;
  margin-top: 10px;
}
.contact-wrap {
  width: 80%;
  margin: 0 auto;
}
.project-items {
  padding: 80px 0;
}
.cat-items {
  margin-bottom: 35px;
}
.cat-items ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
}
.cat-items ul li {
  margin: 0 25px;
}
.cat-items ul li a {
  color: #757575;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  font-family: "CentraNo2-Medium";
}
.cat-items ul li .active {
  color: #b18e4e;
}
.cat-items ul li .active::after {
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #b18e4e;
}
.projects-imgs img {
  width: 100%;
  object-fit: cover;
  transition: all .5s linear;
}

section.blog-items {
  background: #e9e9e9;
  padding: 100px 0;
}

.wwd-card {
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: all .5s linear;
}
.img-serv{
  transition: all .5s linear;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_image {
  width: 50%;
  height: 390px;
}
.wwd-card:hover .img-serv {
  transform: scale(1.02);
  transition: all .5s linear;
}
.wwd-card:hover {
  color: inherit !important;
/*  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
  transition: all .5s linear;
}
.wwd-card:hover iconify-icon{
  transform: translateX(10px);
  transition: all .5s linear;
}
.blog-card .wwd-card-content .cta-link {
  color: #9c8b70;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 5px;
}
.blog-card-top {
  position: relative;
}
.datebox {
  position: absolute;
  right: 5px;
  bottom: 5px;
  color: #fff;
  background: #b18e4e;
  padding: 3px 10px;
}

.blog-dtl .sect-title {
  width: 100%;
}
.recent-card img {
  width: 230px;
  height: 100px;
  object-fit: cover;
}
.blog-card h6 {
  text-transform: capitalize;
}
.blog-card .wwd-card-content .cta-link:after {
  background-color: #9c8b70;
}
.recent-card .cta-link {
  color: #9c8b70;
  font-size: 14px;
}
.recent-card .cta-link:after {
  background-color: #9c8b70;
}
.recent-card {
  display: flex;
  align-items: center;
}
.rc-in {
  padding-left: 25px;
  width: 90%;
}
.rc-in .cta-link {
  margin-bottom: 0;
  margin-top: 0px;
}
.rc-in .datebox {
  padding: 2px 5px;
  position: unset;
  width: fit-content;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.recent-card {
  margin-left: 15px;
  margin-bottom: 25px;
}

.blog-dtl {
  padding: 90px 0;
}
.bd-in {
  width: 95%;
  margin: 0 auto;
  padding: 25px;
  background: #fff;
}
.detail-date {
  margin-bottom: 0;
  margin-top: 7px;
  color: #b18e4e;
}
.rc-in h6 {
  font-family: "CentraNo2-Medium";
}
.rb-title {
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rb-title h6 {
  font-family: "CentraNo2-Medium";
  font-size: 19px;
  margin: 0;
}
.rb-title a {
  text-decoration: none;
  color: #b18e4e;
}

/* .wwd-card .img-serv {
  height: auto;
  width: 50%;
} */

.wwd-icon {
  border: 1px solid;
  width: fit-content;
  padding: 11px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.wwd-icon img {
  width: 30px;
  height: auto;
  object-fit: unset;
}

ul.wwd-item {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
}
ul.wwd-item li {
  width: 48%;
  display: flex;
  float: left;
  margin: 11px;
}

.cta-img-path {
  height: 560px;
  margin-left: 15px;
  overflow: hidden;
}
@keyframes scale {
  50% {
    -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform:scale(1.2);
    transform:scale(1.2);
  }
}

/* styles */
.sect-title span {
  color: #b18e4e;
}

/*.c_btn{
  transition: all .5s linear;
}
.c_btn span iconify-icon{
  transition: all .5s linear;
}*/
.c_btn span{
  position: relative;
}
.c_btn span iconify-icon {
  transition: all .5s linear;
  z-index: 999;
} 
.c_btn:hover span{
  transition: all .5s linear;
  transform: scale(0.8);
}

.blog-card {
    position: relative;
}
.blog-card .wwd-card-content {
    position: absolute;
    right: 0;
    width: 85%;
    bottom: -100px;
    padding: 25px 15px;
}
.blog-items .contain-wrap {
    padding-bottom: 120px;
}
.blog-card .wwd-card-content h6 {
    font-size: 17px;
}
.datebox1 {
    color: #999999;
    font-size: 12px;
    margin-bottom: 8px;
}
.blog-card .wwd-card-content .cta-link:after {
  background-color: #9c8b70;
  transition: width .3s;
   width: 0;
  
}

.blog-card:hover .cta-link:after{
    width: 100%;
}

.recentblog h4{
  margin-bottom: 40px;
}
.blog-dtl .bd-conts h4 {
    width: 70%;
}
.bd-conts img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    margin: 25px 0 15px;
    object-position: right;
}
.blogsecimg {
    position: relative;
    margin-bottom: 40px;
}
.blogsecimg .sharebtn {
    position: absolute;
    left: 50px;
    top: 90px;
}
.blogsecimg .sharebtn ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.blogsecimg .sharebtn ul li a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ececec;
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.fb a {
    background-color: #4267B2;
    color: #fff;
    font-size: 24px;
}
.fb a:hover {
    background-color: transparent;
    color: #000;
}
.linked a {
    background-color: #0077B5;
    color: #fff;
    font-size: 24px;
}
.linked a:hover {
    background-color: transparent;
    color: #000;
}
.insta a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #fff;
    font-size: 24px;
}
.insta a:hover {
    background-color: transparent;
    color: #000;
}
.recentblog {
  background: #e9e9e9;
  padding: 100px 0;
}
.recentblog .contain-wrap{
  padding-bottom: 120px;
}
.cf-title p {
    color: #676767;
}
.servlist {
    width: 500px;
    float: left;
}
section.services {
    width: 1498px;
}
.hidden-text {
  display: none;
}
.read-more {
    color: #9c8b70;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.read-more iconify-icon {
    margin-left: 6px;
    font-size: 22px;
}
.read-more-orange iconify-icon {
  margin-left: 6px;
  font-size: 21px;
}
.read-more:after{
  content:"";
  position: absolute;
  left: 0;
  background-color: #fff;
  height: 2px;
  width: 0px;
  bottom: 0;
  transition: width .3s;
}
.read-more-orange:after{
  content:"";
  position: absolute;
  left: -7px;
  background-color: #fff;
  height: 2px;
  width: 0px;
  bottom: 0;
  transition: width .3s;
}
.read-more:hover{
  color: #9c8b70;
}
.read-more:hover:after{
  content:"";
  background-color: #9c8b70;
  width: 107px;
}
.read-more-orange:hover:after{
  content:"";
  background-color: #b18e4e;
  width: 107px;
}

.commoncta {
    display: flex;
    width: 100%;
    height: 190px;
    background-color: bisque;
    align-items: center;
}
.cntfull {
    background-color: #b18e4e;
    color: #fff;
    text-decoration: none;
    width: 190px;
    display: block;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto;
}
.cntfull:hover{
  color: #fff;
}
.content-path ul li {
    color: #676767;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
}
.content-path ul li:before {
    content: "";
    background: url(https://api.iconify.design/ic/baseline-minus.svg?color=%23ff8c05) no-repeat center center / contain;
    position: absolute;
    left: -20px;
    top: 5px;
    width: 15px;
    height: 15px;
}
.content-path ul {
    padding-left: 18px;
}



.newservice_contenttab {
    padding: 140px 50px 100px 50px;
    text-align: center;
    background-color: #b18e4e;
    height: 100vh;
    position: relative;
}
.newservice_imgtab img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.servicesec{
  position: relative;
}
.tabmenu_section {
    position: absolute;
    bottom: 30px;
    left: 5%;
}
.newservice_contenttab h4 {
    color: #fff;
    font-size: 45px;
    font-family: "CentraNo2-Medium";
    margin-bottom: 30px;
}
.newservice_contenttab p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: "CentraNo2-Book";
    text-align: center;
}
.tabmenu_section > ul {
    margin: 0!important;
    border-bottom: 2px solid #c5c5c594;
}
.tabmenu_section > ul li p {
    margin: 0;
    color: #fff;
    cursor: pointer;
    padding: 0 40px 10px;
}
.tabmenu_section > ul li p:hover {
    color: #fff;
}
.tabmenu_section > ul li p.active {
    background: transparent!important;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    margin-bottom: -2px;
}
.newservice_imgtab {
    width: 100%;
    height: 100vh;
    position: relative;
}
.coloractive a{
  color: #000;
}



.curvedtext {
    fill: #000;
    height: auto;
    transform-origin: center;
    transform: rotate(-55deg);
    font-family: "CentraNo2-Book";
}
.explorebtn {
    position: absolute;
    z-index: 99;
    left: 50%;
    bottom: 8%;
    background-color: #ececec8c;
    width: 120px!important;
    height: 120px;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    font-family: "CentraNo2-Book";
}
.explorebtn iconify-icon {
    color: #000;
    position: absolute;
    left: 33%;
    top: 42%;
    transform: translate(-50%,-50%);
    font-size: 29px!important;
}
.explorebtn:hover{
  background-color: #fff;
}
.explorebtn:hover iconify-icon,.explorebtn:hover .explorebtn{
  color: #b18e4e;
}
.tabmenu_section > ul li p:hover {
    background: transparent!important;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    margin-bottom: -2px;
}
/* our works */
#banner-slider .owl-stage img{
  width: 100%;
   height:100%;
   object-fit: cover;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align: center;
}
#main-slider .owl-stage img{
  width: 100%;
   height:calc(100vh - 68px);
   object-fit: cover;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align: center;
}
.gallery_image {
  height: 400px;
  display: inline-block;
  width: 100%;
}
.left-side{
  width: 78%;
  background: #ededed;
}

.work-head {
  text-align: center;
}

.common_padding_top{
  padding-top: 40px;
}
.common_padding_bottom{
  padding-bottom: 40px;
}
/* #banner-slider{
  padding: 0 50px 90px 0;
} */
.main_head {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
}
.common_sub_head_blk {
  color: #b18e4e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.head_centre {
  text-align: center;
  width: 510px;
  margin: 0 auto 30px;
}
.common_sub_head_orange{
  font-size: 41px;
  margin-bottom: 20px;
  color: #b18e4e;
}
.service-para p{
  color: #444444;
  font-weight: 500;
  font-size: 14px;
}
.service-section{
  background: #EDEDED;
}
.service-img-head {
  font-size: 19px;
  color: #FFFFFF;
  margin: 0;
  padding-left: 4px;
}
.read-more-orange {
  color: #b18e4e;
  margin-right: 0;
  margin-bottom: 5px;
  margin-top: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 13px;
    font-weight: 200;
}
.service-img{
  position: relative;
}

.service-content {
  position: absolute;
    bottom: 4px;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 6px 3px;
}
.read-more-orange:hover{
  color: #b18e4e;
}
.service-para {
  padding: 0px 35px 15px 0;
}

.common_sub_head_blk span {
  color: #b18e4e;
  font-weight: 500;
}

.welcome-para p {
  color: #676767;
  font-size: 14px;
}
.process-head h5 {
  color: #212529;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
}
/*.welcome-section .common_sub_head_blk{
  margin-bottom: 20px;
}*/
.process-head h5 {
  font-size: 24px;
  padding:15px 0;
}
.process-icon h5 {
  font-size: 13px;
  color: #212529;
  padding:14px 4px 0 4px;
}
.process-icon {
  border: 1px solid #b18e4e80;
    padding: 11px 0;
    text-align: center;
    height: 126px;
  
}
.slider-content-div h1 {
  color: #FFFFFF;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin: 10px 0px 20px;
  text-transform: uppercase;
}
.slider-content-div p {
  color: #fff;
  font-size: 14px;
  margin: auto;
  border: 1px solid #b18e4e;
  padding: 10px;
  border-radius: 40px;
  text-align: center;
  margin-bottom: 10px;
  background: #b18e4e;
}
.highlight_wrap ul {
  padding: 0;
  margin: 0px 0px 30px;
  list-style: none;
}
.highlight_wrap ul li {
  position: relative;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 30px;
}
.highlight_wrap ul li::after{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23b18e4e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M21.897 6.63c.32.898-.13 1.513-.998 2.118c-.702.488-1.595 1.017-2.542 1.922c-.928.887-1.834 1.955-2.639 3.006a39 39 0 0 0-2.71 3.99a1.65 1.65 0 0 1-1.446.834a1.66 1.66 0 0 1-1.426-.873c-.748-1.363-1.326-1.901-1.592-2.094c-.737-.537-1.544-.63-1.544-1.8C7 12.776 7.746 12 8.667 12c.658.027 1.262.309 1.789.693c.342.249.705.578 1.082 1.012c.442-.654.975-1.408 1.573-2.189c.868-1.133 1.892-2.35 2.99-3.399c1.08-1.032 2.33-1.998 3.653-2.508c.863-.333 1.822.124 2.143 1.022M4.44 12.076a2.7 2.7 0 0 0-.6-.125l-.141-.006c-.938 0-1.699.783-1.699 1.748c0 .874.623 1.598 1.437 1.728q.042.02.137.087c.27.195.86.737 1.623 2.111c.298.538.851.873 1.453.88a1.67 1.67 0 0 0 1.112-.407M15 5.5c-1.35.515-2.622 1.489-3.723 2.53c-.384.363-.76.746-1.123 1.139' color='%23b18e4e'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .highlight_wrap ul li {
    text-align: start;
    padding-left: 25px !important;
  }
  .highlight_wrap ul li::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M21.897 6.63c.32.898-.13 1.513-.998 2.118c-.702.488-1.595 1.017-2.542 1.922c-.928.887-1.834 1.955-2.639 3.006a39 39 0 0 0-2.71 3.99a1.65 1.65 0 0 1-1.446.834a1.66 1.66 0 0 1-1.426-.873c-.748-1.363-1.326-1.901-1.592-2.094c-.737-.537-1.544-.63-1.544-1.8C7 12.776 7.746 12 8.667 12c.658.027 1.262.309 1.789.693c.342.249.705.578 1.082 1.012c.442-.654.975-1.408 1.573-2.189c.868-1.133 1.892-2.35 2.99-3.399c1.08-1.032 2.33-1.998 3.653-2.508c.863-.333 1.822.124 2.143 1.022M4.44 12.076a2.7 2.7 0 0 0-.6-.125l-.141-.006c-.938 0-1.699.783-1.699 1.748c0 .874.623 1.598 1.437 1.728q.042.02.137.087c.27.195.86.737 1.623 2.111c.298.538.851.873 1.453.88a1.67 1.67 0 0 0 1.112-.407M15 5.5c-1.35.515-2.622 1.489-3.723 2.53c-.384.363-.76.746-1.123 1.139' color='%23fff'/%3E%3C/svg%3E");
  }
}
.slider-content-div span {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px;
  width: 100%;
  text-align: center;
  display: inline-block;
  background: #f0f8ff24;
  border-radius: 50px;
  border: 1px solid #ffffff6e;
}
.banner-main-div {
  position: relative;
}
.slider-content-div {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #00000057;
  height: 100%;
  display: flex;
  align-items: center;
}
.service-img img {
  width: 100%;
}
.service-gallery ul {
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
}
.service-gallery ul li {
  list-style: none;
  width: 33.3%;
  float: left;
  padding: 0 2px;
}
.service-gallery ul li:first-child{
  padding-left: 0!important;
}
.service-gallery ul li:last-child{
  padding-right: 0!important;
}

/* right side */
.right-side {
  height: 100vh;
  width: 22%;
  position: fixed;
  right: 0;
  top: 0;
  border-left: 1px solid #ececec;
  background: #ebedf9;
}
.orange-bar{
  background: #b18e4e;
    width: 100%;
    text-align: center;
    padding: 8px;
    animation: light 2s linear infinite;
    background: linear-gradient(-45deg, #b18e4e, #986D53, #b18e4e, #986D53);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02BC4D', endColorstr='#02BC4D',GradientType=4 );
    background-repeat: no-repeat;
    background-position: 10%;
    background-size: 300%;
}
@keyframes light {
  0% {
        background-position: 100%; 
  }
  100% { 
        background-position:0%; 
  }
}
.orange-bar a{
  text-decoration: none;
  color: #FFFFFF;
  font-size: 15px;
}
.bar-div {
    margin-bottom: 8px;
    /* width: 50%; */
    /* float: left; */
    padding: 0 4px;
}
.bar-section {
    /* margin: 29px 19px 29px 19px; */
    /* display: inline-block; */
    padding: 6px 3px;
    border-bottom: 1px solid #0000001A;
}
.form-head h5{
color: #212529;
font-size: 24px;
}
.fixed-form {
  margin: 15px 15px;
}
.service-form-div form input, textarea {
 
  border: .5px solid #FFFFFF3B;
  margin-bottom: 5px;
  padding: 6px 15px;
  outline: none;
  box-shadow: none;
  border-color: #0000000d;
  width: 100%;

}
.service-form-div form textarea {
  height: 66px;
}
.service-form-div form button {
  width: 100%;
  background: #b18e4e;
  border: none;
  color: #ffffff;
  padding: 10px 5px;
  font-size: 17px;
  
}
.service-form-div form{
 
  display: inline-block;
  padding:8px 8px 20px 0;
 width: 100%;
}

.border-bottom-line{
  border-bottom: 1px solid #0000001A;
}
.service-form-div form input::placeholder, .service-form-div form textarea::placeholder {
  color: #808182;
  opacity: 1; 
  font-size: 13px!important;
}

.bg-white{
  background: #FFFFFF;
}
#banner-slider {
  margin-top: 30px;
}
.contact_wrap {
  display: flex;
}
.contact_wrap a {
  background: #b18e4e;
  text-decoration: none;
  color: #fff;
  width: 50%;
  border: 1px solid #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}
.contact_wrap {
  display: flex;
  padding: 0 3px;
}
#priceslider {
  margin-top: 20px;
}
#banner-slider .owl-nav button{
    height: 45px;
    width: 45px;
    background: #00000073 !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main-slider .owl-dots {
  position: absolute;
  bottom: 64px;
    right: 30px;
    z-index: 9;
}
#main-slider .owl-dots button {
  width: 7px!important;
  height: 7px !important;
  background: #D9D9D994 !important;
  margin: 0 5px;
}
#main-slider .owl-dots .active{
  background: #b18e4e!important;

}
.common_padding_left {
  padding-left: 40px;
}
.common_padding_right {
  padding-right: 40px;
}
/* footer */
.menu-list-div ul li {
  list-style: none;
  float: left;
  margin-left: 45px;
}
.left-right-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-footer {
  width: 17%;
}
.right-footer {
  width: 83%;
  margin-top: 15px;
}
.upper-div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #FFFFFF4D;
  padding-bottom: 28px;
}
.footer-logo img{
  width: 100%;
}
.mail-div a {
  font-size: 13px;
  color: #EAEAEA;
  
}
.menu-list-div ul li a{
  text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.bottom-div {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
}
.caption p {
  color: #eaeaea;
  font-size: 14px;
}
.caption {
  margin-left: 45px;
  font-size: 14px;
}
.response-view {
  display: none;
  position: relative;
  float: unset;
  width: 100%;
}
.process-box ul li{
  list-style: none;
    float: left;
    width: 15%;
    margin-right: 12px;
}
.process-box ul{
  width: 100%;
  padding: 0;
  margin: 0;
  display: inline-block;
}




section.mojopg {
    display: flex;
    justify-content: space-between;
}
/* fix-icons */
.fix_icons {
  position: fixed;
  right: 10px;
  top: 64%;
  z-index: 99999;
}
.fix_icons .fico{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  animation: pulse-animation 2s infinite;
  font-size: 25px;
background-color:#b18e4e;
margin-bottom:10px;
  border: 1px solid #ffffff26;
}
.whts {
  font-size: 40px;
}
.fix_icons .fico1{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 42px;
margin-bottom:10px;
}
@keyframes pulse-animation {
0% {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
  box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}

}
/* fix-icons end */

/* thanks page */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #b18e4e;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #b18e4e;
  stroke-miterlimit: 10;
  margin-right: 10px;
  box-shadow: inset 0px 0px 0px #b18e4e;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #fff;
  }
}
/* .thankyou-main-div{
 position: relative;
}
.thankyou-content-div{
  position: absolute;
  

} */
.thankyou-icon-div{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 15px 0;

}
.thankyou-icon-div h1{
  font-size:40px;
    color: #212529;
    margin: 0;
}
.thankyou-main-div{
  text-align: center;
  padding-top: 148px;
}
.thanks-para p{
  color: #676767;
  font-size: 14px;
}

.thanks-btn button {
  
  background: #F7B911;
  border: none;
  padding: 10px;
    font-size: 16px;
    border-radius: 0px;

}
.thanks-btn button a{
  text-decoration: none;
  color: #000;
}
.thanks-logo {
  margin-bottom: 10px;
}
.name {
  font-size: 14px;
}
.job {
  font-size: 13px;
}
.mainsectionlt {
  height: 400px;
  margin-left: 20px;
}
.mainsectionlt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about {
  background: #fff;
}
.vs_wrap {
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  transition: all .2s linear;
  display: flex;
}
.vs_wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs_content {
  position: absolute;
  top: 50%;
  left: 0;
  background: #0000008e;
  width: 100%;
  transform: translate(0%, -50%);
  display: flex;
  align-items: center;
  color: #fff;
  height: 100%;
  justify-content: center;
  transition: all .2s linear;
  text-align: center;
}
.vs_content span {
  font-size: 44px;
  transition: all .2s linear;
  width: 60px;
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  color: #b18e4e;
  margin: auto;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.vs_bottom {
  margin-top: 20px;
}
.vs_bottom h6{
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}
.vs_bottom button {
  border: 0;
  color: #fff;
  padding: 10px 20px;
  /* font-size: 14px; */
  font-weight: 600;
  margin-top: 10px;
  WIDTH: fit-content;
}
.vs_content h6{
font-size: 24px;
font-weight: 700;
}
.vs_content p{
  font-size: 14px;
}
.vs_wrap:hover .vs_content{
  background: #0000002b;
  transition: all .2s linear;
}
.vs_wrap:hover span{
  font-size: 50px;
  transition: all .2s linear;
}
.bottomfix div {
  background: #b18e4e;
  width: 33.3%;
  padding: 10px;
  border-right: 1px solid #ffffff08;
}
.bottomfix a iconify-icon {
  display: flex;
  font-size: 20px;
  justify-content: center;
}
.highlight_wrap {
  background: #ffffff33;
  padding: 40px;
  width: 400px;
  backdrop-filter: blur(8px);
}
.highlight_wrap h6 {
  color: #ffffffa8;
  margin: 0;
  font-size: 14px;
}