@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
/* FONTAWESOME */
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-regular-400.eot);src:url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-brands-400.eot);src:url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype"),url(../fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.eot);src:url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}

:root {
	--primary-font:'Lato', sans-serif;
	--secondary-font:'Poppins', sans-serif;
	--font-light:300;
	--font-normal:400;
	--font-medium:500;
	--font-bold:700;
	--font-black:900;
	--primary-color:#EEB311;
	--secondary-color:#D3AE53;
	--tertiary-color:#B1812D;
	--dark-color:#11131A;
	--dark-grey-color:#393939;
	--grey-color:#CCCCCC;
	--white-color:#FFFFFF;
	--primary-transition:all ease-in-out 0.35s;
}


* {
  scrollbar-color: var(--primary-color) var(--light-grey-color);
  scrollbar-width: thin;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light-grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
body {font-family: var(--primary-font);font-weight:var(--font-normal);font-size:clamp(1rem,3vw,1.125rem);line-height:1.5;color: var(--dark-grey-color);background: #fff;overflow-x: hidden;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: optimizeLegibility;}
a {color: var(--primary-color);}
a:hover {color: #283004;}
a,a:hover {text-decoration: none;}
ul,ol {margin: 0;}
ul li, ol li {list-style: none;margin:0;}
main {
  overflow: hidden;
}
img {max-width: 100%}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}
.overflow-hidden {
  overflow: hidden;
}
.fw-300 {
  font-weight: var(--font-light);
}
.fw-400 {
  font-weight: var(--font-normal);
}
.fw-700 {
  font-weight: var(--font-bold);;
}
.fw-800 {
  font-weight: var(--font-black);
}
.fancybox-content {
  border-radius: 10px;
}
/* SITE COLOR VARIATION */
.primary-color {
  color: var(--primary-color)!important;
}
.primary-bg {
  background-color: var(--primary-color)!important;
}
.secondary-color {
  color: var(--secondary-color)!important;
}
.secondary-bg {
  background-color: var(--secondary-color)!important;
}
.dark-color {
  color: var(--dark-color)!important;
}
.dark-bg {
  background-color: var(--dark-color)!important;
}
.grey-bg {
  background-color: var(--grey-color)!important;
}
.white-color {
  color: var(--white-color)!important;
}
.white-bg {
  background-color: var(--white-color)!important;
}
/* BUTTON STYLE */
.btn {
  font-size: 1rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  color: var(--white-color);
  text-align: center;
  position: relative;
  text-decoration: none;
  display:inline-block;  
  cursor: pointer;
  padding: 11px clamp(20px,5vw,50px);
  border-radius: 0;
  transition: 0.5s;
}
.btn:not(.brdr-btn) {
  background: var(--secondary-color);
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--secondary-color) 0%, var(--tertiary-color) 51%, var(--secondary-color) 100%);
}
.btn.brdr-btn {
  background: var(--white-color);
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
}
.btn.brdr-btn:hover {
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--secondary-color) 0%, var(--tertiary-color) 51%, var(--secondary-color) 100%);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.btn:hover {
  background-position: right center;
}
.text-btn {
  position: relative ;
  font-size: 1rem;
  text-transform: uppercase;
  overflow: hidden;
  padding: 7px 0;
  max-width: 96px;
}
.link__graphic--slide {
  top: -3px;
  stroke-width: 2px;
  transition: transform 0.7s;
  transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2px;
}
.text-btn:hover .link__graphic--slide {
  transform: translate3d(-66.6%, 0, 0);
}

/* FORM */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.form-control {
  border: 1px solid #A4A4A4;
  border-radius: 0;
  color: #A4A4A4;
  font-size: 0.875rem;
  padding: 12px 20px;
}
input[type="submit"] {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 50px;
  border: 0;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;
}
input[type="submit"]:hover {
  background-color: var(--primary-color);
}
#enquiryModal .modal-title {
  font-weight: 400;
}

/* LEFTRIGHT GUTTOR */
.lr-space {
  padding: 0 30px;
}

/* ARROW VHC */
.arrow-vhc {
  position: relative;
}
.arrow-vhc .slider-arrows .arrow-elmnt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.arrow-vhc .slider-arrows .arrow-elmnt.arrow-elmnt_dir_left {
  left: -40px;
}
.arrow-vhc .slider-arrows .arrow-elmnt.arrow-elmnt_dir_right {
  right: -40px;
}
.arrow {
  --active: var(--dark-color);
  --border: rgba(0, 0, 0, .12);
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.arrow.animate {
  --active: var(--primary-color);
}
.arrow.left {
  transform: scaleX(-1);
}
.arrow i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.arrow i:before, .arrow i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.arrow i:before {
  transform: rotate(-40deg);
}
.arrow i:after {
  transform: rotate(40deg);
}
.arrow:before, .arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.arrow.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}
.arrow.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}
.arrow.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}
.arrow.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}
@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

/* SLICk DOTS */
.slick-dots {
  position: relative;
  bottom: 0;
}
.slick-dots li button::before {
  font-size: 0.875rem;
  line-height: 22px;
  width: 20px;
  height: 20px;
  opacity: 1;
  color: #c5c5c5;
  background: transparent;
  border-radius: 50%;
}
.slick-dots li.slick-active button::before {
  color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* DOWNLOAD ICON ANI */
.folder {
  background-color: var(--secondary-color);
  position: relative;
  width: 92px;
  height: 64px;
  display: block;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.folder-tab {
  position: absolute;
  height: 10px;
  left: 0;
  bottom: 100%;
  display: block;
  width: 40%;
  border-top-left-radius: 8px;
  background-color: inherit;
}
.folder-tab:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: calc(100% - 10px);
  border-bottom: 10px solid var(--secondary-color);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.folder-icn {
  padding-top: 12px;
  width: 100%;
  height: 100%;
  display: block;
}

.downloading {
  width: 30px;
  height: 32px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.custom-arrow {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7px;
  background-color: #fff;
  -webkit-animation-name: downloading;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-name: downloading;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.custom-arrow:after {
  content: '';
  position: absolute;
  display: block;
  top: 100%;
  left: -9px;
  border-top: 15px solid #fff;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}

.bar {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 0 auto;
}

@-webkit-keyframes downloading {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    top: 110%;
    opacity: 0;
  }
  52% {
    top: -110%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes downloading {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    top: 110%;
    opacity: 0;
  }
  52% {
    top: -110%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}
.contact-form-widget .wpcf7-spinner,
.wpcf7-spinner {
  position: absolute;
}
.contact-form-widget .wpcf7 form .wpcf7-response-output,
.fancybox-container .wpcf7 form .wpcf7-response-output {
  margin: 1em 0.5em 0;
  font-size: 0.875rem;
  text-align: center;
}
.contact-form-widget .wpcf7-not-valid-tip,
.fancybox-container .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  position: absolute;
}

/* FLOATED ELEMENT */
.floated-elmt {
  position: fixed;
  z-index: 999;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.floated-elmt .btns-group {
  transform: rotate(-90deg);
}
.floated-elmt.floated-right-btns {
  right: -176px;
}
.floated-elmt.floated-left-btns {
  left: -52px;
}
.floated-elmt .btn {
  font-size: 0.875rem;
  padding: 11px 15px;
}
.floated-elmt .btn.whatsapp {
  background: #28D045;
}
.floated-elmt .btn.whatsapp svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mob-float {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.floatMenuToggle {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 70px;
  border: 2px solid var(--grey-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.floatMenuToggle::before {
  content: '+';
  position: absolute;
  font-size: 2.8em;
  font-weight: 550;
  color: var(--primary-color);
  transition: 1.5s;  
}

.floatMenuToggle.active::before {
  transform: rotate(315deg);
}

.floatmenu {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 70px;
  z-index: -1;
  transition: transform 0.5s, width 0.5s, height 0.5s;
  transition-delay: 1s, 0.5s, 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.floatMenuToggle.active~.floatmenu {
  width: 350px;
  height:55px;
  z-index: 1;
  transform: translateY(-70px);
  transition-delay: 0s, 0.5s, 0.5s;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.floatmenu::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  left: calc(50% - 8px);
  bottom: 4px;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.5s;
}

.floatMenuToggle.active~.floatmenu::before {
  transition-delay: 0.5s;
  bottom: -6px;
}

.floatmenu ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  justify-content: center;
  align-items: center;
  height: 55px;
  gap: 3px;
}

.floatmenu ul li {
  list-style: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: 0.25s;
  transition-delay: calc(0s + var(--i));
}

.floatMenuToggle.active~.floatmenu ul li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: calc(0.75s + var(--i));
}

.floatmenu ul li a {
  display: block;
  font-size: 0.875rem;
  background: var(--dark-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.floatmenu ul li span {
  font-size: 0.625rem;
  font-weight: var(--font-bold);
}

/* HEDAER */
.main-header {
  position: sticky;
  width: 100%;
  top:0;
  z-index: 999;
  background-color: var(--dark-color);
  padding: 10px 0;
}
body.header-up-down .main-header {
  animation: 1s slide-down;
}
body.header-up-down .main-header .download-widget {
  display: none!important;
}
@-webkit-keyframes slide-down {
	0% {
   opacity: 0;
   transform: translateY(-100%);
 } 
 100% {
   opacity: 0.9;
   transform: translateY(0);
 } 
}
@keyframes slide-down {
	0% {
   opacity: 0;
   transform: translateY(-100%);
 } 
 100% {
   opacity: 0.9;
   transform: translateY(0);
 } 
}
.main-header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: var(--dark-color);
  opacity: 0.2;
  z-index: -1;
}
.main-header.banner-left::before {
  opacity: 0.9;
}
.main-header .call-btn {
  background-color: var(--white-color);
  font-size: 1rem;
  font-weight: var(--font-semibold);
  color: var(--dark-color);
  padding: 11px 22px;
}
.fullmenu .menu a {
  font-family: var(--secondary-font);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  line-height: 2;
  overflow: hidden;
  display: block;
}

.fullmenu .menu a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  top: calc(100% - 5px);
  left: 0;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  background: var(--primary-color);
}

.fullmenu .menu a:hover::before,
.fullmenu .menu .current_page_item a::before,
.fullmenu .menu li:hover > a::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.fullmenu .menu a::after {
  content: attr(data-menuanchor);
  height: 100%;
  top: 0;
  left: 0;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(150%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  position: absolute;
  width: 100%;
  color: var(--primary-color);
}

.fullmenu .menu a:hover::after,
.fullmenu .menu .current_page_item > a::after,
.fullmenu .menu li:hover > a::after {
  transform: translate3d(0, 0, 0);
}

.fullmenu .menu a span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

.fullmenu .menu a:hover span,
.fullmenu .menu .current_page_item > a > span,
.fullmenu .menu li:hover > a span {
  transform: translate3d(-350%, 0, 0);
}


.box {
  position: relative;
  width:30px;
  height:20px;
  display: inline-block;
  cursor: pointer;
  z-index: 1000;
}
.box::after {
  content: 'CLOSE';
  position: absolute;
  bottom: -9px;
  font-size: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;
  /* transition-delay: 0.1s; */
}
.box.change::after {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.5s;
}
.sty{
  width:30px;
  height:3px;
  background:var(--primary-color);
  
  transition:0.6s;
  border-radius:3px;
}
.hmb5-2 {
  margin:5px 0;
}
.change .hmb5-1{
  transition-delay: 0.3s;
  -webkit-transform:scale(0.15,1) translate(79px, 8px);
  transform:scale(0.15,1) translate(79px, 8px);
}
.change .hmb5-2{
  -webkit-transform:scale(0.15,1);
  transform:scale(0.15,1);
  /*transform:translate(30px,0px);*/
}
.change .hmb5-3{
  transition-delay: 0.3s;
  -webkit-transform:translate(-12px, -7.7px) scale(0.15,1);
  transform: translate(-12px, -7.7px) scale(0.15,1);
}

/* BANNER */
.home-banner .banner-content {  
  z-index: 1;
  top: 0;
  width: 100%;
}
.home-banner .banner-content .banner-items {
  position: absolute;
  z-index: -1;
  top: 0;
}
.home-banner .banner-content .banner-items,
.home-banner .banner-content .banner-items .slick-list,
.home-banner .banner-content .banner-items .slick-list .slick-track,
.home-banner .banner-content .banner-items .slick-list .slick-track .slick-slide,
.home-banner .banner-content img {
  height: 100%;
  width: 100%;
}
.home-banner .banner-content img {
  object-fit: cover;
}
.home-banner .banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);  
  opacity: 0.5;
  z-index: 1;
}
.home-banner .banner-content .banner-heading {
  content: '';
  position: absolute;
  top: calc(50% - 60px);
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 100%;
}
.banner-title {
  font-size: clamp(2rem,6vw,3.75rem);
  font-weight: var(--font-bold);
  color: var(--white-color);
  line-height: 1.2;
  perspective: 500px;
  z-index: 2;
}
.banner-title .word {
  animation: show 0.01s forwards, pop-word 1.5s forwards;
  animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
  opacity: 0;

  transform: rotateX(120deg);
  transform-origin: 50% 100%;
}
.banner-title .word:nth-of-type(2) {
  animation-delay: 1.5s;
}
.banner-subtitle {
  font-size: 1.4375rem;
  color: var(--white-color);
}
.prop-shortinfo {
  position: relative;
  max-width: 1088px;
  min-height: 184px;
  z-index: 3;
  box-shadow: 6px 11px 40px rgba(238,179,17,0.15);
}
.prop-shortinfo .label {
  font-size: clamp(2rem,5vw,3.5rem);
  line-height: 1.2;
}
.prop-shortinfo .title {
  font-size: 0.875rem;
}

@keyframes pop-word {
  to {
    transform: rotateX(0);
  }
}

@keyframes show {
  to {
    opacity: 1;
  }
}

/* SECTION PADDING/TITLE */
.sec-ptb {
  padding-top: clamp(40px,5vw,96px);
  padding-bottom: clamp(40px,5vw,96px);
}
.sec-pt {
  padding-top: clamp(40px,5vw,96px);
}
.sec-pb {
  padding-bottom: clamp(40px,5vw,96px);
}
.cont-ptb {
  padding-top: clamp(30px,5vw,50px);
  padding-bottom: clamp(30px,5vw,50px);
}
h1.sec-title,
h2.sec-title {
  font-size: clamp(1.625rem, 4vw, 3.125rem);
  letter-spacing: 2px;
  margin-bottom: clamp(15px,2vw,34px);
}

/* SEC ABOUT */
.sec-about {
  background: url(../images/building-opt-img.png) no-repeat right -130px bottom 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 63px), 0% 100%);
}

/* SEC FEATURED PLOT */
.sec-feature-plot {
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  margin-top: -63px;
}
.plot-elmnt {
  display: block;
}
.plot-elmnt .img-block {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--dark-grey-color);
  transition: var(--primary-transition);
}
.plot-listing .plot-elmnt {
  background-color: #f1f1f1;
  /* box-shadow: inset 0 0 15px var(--grey-color); */
}
.plot-listing .plot-elmnt .img-block {
  border: 10px solid var(--grey-color);
}
.plot-elmnt:hover .img-block,
.plot-listing .plot-elmnt:hover .img-block {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(238,179,17,0.8);
}
.plot-elmnt h3 {
  font-size: 1.125rem;
  transition: var(--primary-transition);
}
.plot-elmnt h3:hover {
  color: var(--primary-color)!important;
}
.plot-elmnt .area-widget .label {
  font-size: 0.875rem;
  background: url(../images/location-icon.svg) no-repeat left center;
  padding-left: 14px;
}
.plot-elmnt .area-widget .size {
  font-size: 1rem;
}
.plot-items+.slider-arrows .arrow {
  --active: var(--white-color);
}
.plot-items+.slider-arrows .arrow.animate {
  --active: var(--secondary-color);
}
.plot-listing .plot-elmnt {
  padding: 20px 10px;
}

/* Committed SERVICE */
.sec-committed-service {
  position: relative;
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  margin-top: -63px;
  background: url(../images/service-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.sec-committed-service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.29;
  display: block;
  z-index: 0;
}
.sec-committed-service::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  z-index: -1;
}
.sec-committed-service .container {
  z-index: 1;
  position: relative;
}
.service-elmnt .circle-box {
  position: relative;
  width: 136px;
  height: 136px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.service-elmnt .circle-box::before {
  content: '';
  position: absolute;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  border: 2px dashed var(--white-color);
  display: block;
  animation: animName 8s linear infinite;
}
.service-elmnt .circle-box:hover::before {
  animation: step-end;
}
@keyframes animName {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

/* OUR OBJECTIVES */
.sec-objective {
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  margin-top: -63px;
  background: url(../images/building-opt-img.png) no-repeat left -180px bottom 0;
}
.objective-grid .grid-right p {
  color: var(--white-color);
}
.objective-img-elmnt {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.objective-img-elmnt img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.objective-img-elmnt:hover img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transform: scale(1.1);
}
.objective-img-elmnt::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.objective-img-elmnt:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

/* OUR SERVICES */
.service-widget {
  position: relative;
}
.service-widget::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 75%;
  display: block;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.service-widget > h3 {
  position: absolute;
  bottom: 30px;
  padding: 15px;
  text-align: center;
  width: 100%;
  font-size: clamp(1.125rem,3vw,1.5rem);
}
.service-widget .details-over {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: clamp(20px,3vw,45px);
  text-align: center;
  /* opacity: 0; */
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
.service-widget .details-over::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: -1;
  -webkit-animation-delay:0.15s;
  -moz-animation-delay:0.15s;
  -o-animation-delay:0.15s;
  animation-delay:0.15s;
}
.service-widget .details-over,
.service-widget .details-over::before,
.service-widget h3,
.service-widget p,
.service-widget .btn,
.gallery-items a::before,
.gallery-items a::after {
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both;
}
.service-widget:hover .details-over {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.service-widget:hover .details-over::before {
  opacity: 0.9;
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
.service-widget:hover > h3 {
  -webkit-animation-name: bounceOutDown; 
  animation-name: bounceOutDown; 
}
.service-widget .details-over h3 {
  font-size: clamp(1.5rem,2vw,1.875rem);
  color: var(--dark-color);
  margin-bottom: 15px;
  -webkit-animation-delay:0.25s;
  -moz-animation-delay:0.25s;
  -o-animation-delay:0.25s;
  animation-delay:0.25s;
}
.service-widget .details-over p {
  color: var(--dark-color);
  -webkit-animation-delay:0.3s;
  -moz-animation-delay:0.3s;
  -o-animation-delay:0.3s;
  animation-delay:0.3s;
}
.service-widget .details-over .btn {
  -webkit-animation-delay:0.35s;
  -moz-animation-delay:0.35s;
  -o-animation-delay:0.35s;
  animation-delay:0.35s;
  padding: 11px 20px;
  background:var(--white-color);
  color: var(--dark-color);
}
.service-widget .details-over .btn:hover {
  background:var(--dark-color);
  color: var(--white-color);
}
.service-widget:hover .details-over h3,
.service-widget:hover .details-over p,
.service-widget:hover .details-over .btn {
  opacity: 1;
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* GALLERY */
.gallery-items a {
  position: relative;
  display: block;
  /* margin: 8px; */
}
.gallery-items a img{
  width: 100%;
}
.gallery-items a::before {
  content: '';
  position: absolute;
  width:100%;
  height: 100%;
  display: block;
  background-color: var(--dark-color);
  opacity: 0;
  top: 0;
  left: 0;
}
.gallery-items a:hover::before {
  -webkit-animation-name: growInN; 
  animation-name: growInN; 
}
@keyframes growInN { 
  0% { 
    transform: scale(0.2); 
    opacity:0;
  } 
  25% { 
    transform: scale(1); 

  } 
  50% { 
    transform: scale(0.5); 

  } 
  85% { 
    transform: scale(0.95); 

  } 
  100% { 
    transform: scale(1); 
    opacity:0.5;
  } 
}
.gallery-items a::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../images/plus-search-icon.svg) no-repeat;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-animation-delay:0.5s;
  -moz-animation-delay:0.5s;
  -o-animation-delay:0.5s;
  animation-delay:0.5s;
}
.gallery-items a:hover::after {
  opacity: 1;
  -webkit-animation-name: rotateInDownLeft; 
  animation-name: rotateInDownLeft;  
}
.video-box i {
  position: absolute;
  font-size: 2.5rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* CASHBACK */
.sec-cashback {
  position: relative;
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  background-attachment: fixed;
  background-size: cover;
  z-index: 1;
}
.sec-cashback::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #F2B613;
  opacity: 0.46;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.sec-cashback::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  z-index: -1;
}
.sec-cashback .container {position: relative;}
.sec-cashback .sec-title {
  font-size: clamp(1.625rem, 4vw, 3.5rem);
}

/* TESTIMONIAL */
.sec-testimonial {
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  margin-top: -63px;
}
.testimonial-link {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-color);
}
.testimonial-link.img-circle {
  width: 288px;
  height: 288px;
  border-radius: 50%;
}
.testimonial-link img {
  opacity: 0.8;
}
.testimonial-link::after {
  content: '';
  position: absolute;
  background: url(../images/play-btn.svg) no-repeat;
  width: 44px;
  height: 59px;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  transition: var(--primary-transition);
}
.testimonial-elmnt:hover .testimonial-link::after {
  transform: scale(0.5);
}
.testimonial-elmnt h3 {
  font-size: 1.125rem;
  font-weight: var(--font-bold);
}
.testimonial-elmnt h4 {
  font-size: 1rem;
  font-weight: var(--font-normal);
}
.testimonial-items+.slider-arrows .arrow {
  --active: var(--white-color);
}
.testimonial-items+.slider-arrows .arrow.animate {
  --active: var(--secondary-color);
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.promo-video {
  position: absolute;
  left: calc(50% + 19px);
  top: calc(50% + 23px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: var(--primary-transition);
}
.testimonial-elmnt:hover .promo-video {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* BLOG */
.sec-blog {
  clip-path: polygon(0 63px, 100% 0, 100% calc(100% - 63px), 0% 100%);
  margin-top: -64px;
  background-color: #36383E;
}
.blog-elmnt {
  padding: 0 8px;
}
.blog-elmnt .date {
  font-size: clamp(0.875rem,6vw,1rem);
}
.blog-elmnt .date i {
  font-size: clamp(0.625rem,6vw,0.75rem);
}
.blog-elmnt h3 {
  font-size: clamp(1.125rem,6vw,1.25rem);
}
.blog-elmnt h3 a {
  color: var(--white-color);
  transition: var(--primary-transition);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
}
.blog-elmnt h3 a:hover,
.sec-bloglist .blog-elmnt h3 a:hover {
  color: var(--primary-color);
}
.sec-bloglist .blog-elmnt h3 a {
  color: var(--dark-color);
}
.blog-elmnt .text-btn {
  color: var(--primary-color);
  transition: var(--primary-transition);
}
.blog-elmnt .text-btn:hover {
  color: var(--white-color);
}
.sec-bloglist .blog-elmnt .text-btn:hover {
  color: var(--secondary-color);
}
.blog-elmnt .text-btn:hover .link__graphic {
  stroke: var(--white-color);
}
.sec-bloglist .blog-elmnt .text-btn:hover .link__graphic {
  stroke: var(--secondary-color);
}
.blog-elmnt .image-widget {
  position: relative;
  overflow: hidden;
  display: block;
  height: 220px;
}
.blog-elmnt .image-widget img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.55s ease-in-out;
}
.blog-elmnt .image-widget:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  z-index: 1;
  transition: 0.5s;
}
.blog-elmnt .image-widget:after {
  content: "";
  opacity: 0.9;
  position: absolute;
  bottom: -100%;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  z-index: 1;
  transition: 0.5s;
}
.blog-items:hover .blog-elmnt .image-widget:before {
  top: 0;
}
.blog-items:hover .blog-elmnt .image-widget:after {
  bottom: 0;
  transition-delay: 0.5s;
}
.blog-items:hover .blog-elmnt .blog-info {
  opacity: 0.5;
}
.blog-items .blog-elmnt:hover .image-widget:before {
  top: -100%;
}
.blog-items .blog-elmnt:hover .image-widget:after {
  bottom: -100%;
}
.blog-items .blog-elmnt:hover .blog-info {
  opacity: 1;
}
.blog-items .blog-elmnt:hover .image-widget img {
  transform: scale(1.2);
}
.details-label {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  transition-delay: 0.1s;
  opacity: 0;
  max-width: 180px;
  padding:6px 10px;
  transform: translateX(50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  top: 50%;
  right: 0;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 0.875rem;
}
.blog-items .blog-elmnt:hover .image-widget .details-label {
  transition-delay: 0s;
  opacity: 1;
  transform: translateX(0);
}
.sec-singleblog h1 {
  font-size: clamp(1.5rem,3vw,1.75rem);
}
.blog-box .blog-img {
  position: relative;
}
.blog-box .blog-img .cat-name {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 3px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.blog-box .blog-img .post-date {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
}
.blog-box .blog-img .post-date .date {
  font-size: 1.5rem;
  font-weight: var(--font-medium);
}
.blog-box .blog-author-info {
  font-size: 0.875rem;  
}
.blog-box .blog-author-info em {
  color: var(--grey-color); 
}
.comment-respond .logged-in-as,
.comment-respond .comment-form-comment label {
  display: none;
}
.comment-respond .comment-form-comment #comment {
  width: 100%;
}
.blog-right-panel #sidebar .widget {
  margin: 0 0 30px;
  padding: 0;
  clear: both;
  background-color: #ececec;
  border-radius: 10px;
  padding: 15px;
}
#sidebar .widget .widget-content h2.widget-title {
  font-size: clamp(1.25rem,3vw,1.625rem);
  font-weight: var(--font-bold);
}
.default-page ul {padding: 0;margin: 0 0 15px}
.sec-story ul,
#sidebar .widget ul {
  padding: 0;
}
.default-page ul li ol {padding: 0;}
#sidebar .widget ul li {
  position: relative;
  margin: 0;
  line-height: 1.2;
  font-size: 1rem;
  padding: 9px 0 9px 18px;
}
.default-page ul li {color: var(--dark-grey-color)}
.default-page ul li,
.sec-story ul li {position: relative;padding-left: 18px;margin-top: 10px}
.default-page ul > li::before,
.sec-story ul li::before,
#sidebar .widget ul li::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  left: 0;
  top: 15px;
}
.default-page ol li {
  list-style-type: decimal;
  padding-left: 10px;
}
.default-page ul > li:before,
.sec-story ul li::before {top: 8px;}
#sidebar .widget ul li:not(:last-child) {
  border-bottom: 1px dashed #b5b5b5;
}
#sidebar .widget ul li a {
  display: block;
  color: var(--dark-color);
}
#sidebar .widget ul li a:hover {
  color: var(--primary-color);
}
/* PRESS RELEASE */
.press-item figure a {
  position: relative;
  display: block;
  width: 100%;
  height:240px;
  overflow: hidden;
  background-color: var(--dark-color);
  z-index: 1;
}
.press-item figure a::after {
  content: 'View Details';
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-weight: var(--font-semibold);
  font-size: 0.875rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--primary-transition);
  z-index: 2;
}
.press-item:hover figure a::after {
  letter-spacing: 2px;
  opacity: 1;
  visibility: visible;
}
.press-item:hover figure a:hover::after {
  color: var(--white-color);
}
.press-item figure a img {
  display: block;
  width: 100%;
  height:100%;
  object-fit: cover;
  transition: var(--primary-transition);
  z-index: 1;
}
.press-item:hover figure a img {
  transform: scale(1.2);
  opacity: 0.4;
}
/* CONATCT */
.sec-contact {
  background: url(../images/building-opt-img.png) no-repeat 30% 100%;
  overflow: hidden;
}
.sec-contact .contact-address p {
  display: grid;
  grid-template-columns: 67px calc(100% - 67px);
}
.sec-contact .contact-address p,
.sec-contact .contact-address p a {
  color: #555;
}
.sec-contact .contact-address p:not(:nth-child(-n+2)) {
  -webkit-align-items: center;
  align-items: center;
}
.sec-contact .contact-address p .circle-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px dashed var(--grey-color);
}
.sec-contact .contact-address p .circle-icon::before {
  content: '';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dark-color);
  display: block;
  position: absolute;
  top: 4px;
  left: 4x;
  z-index: -1;
}
.sec-contact .contact-address p small {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: var(--font-bold);
  color: var(--secondary-color);
}
.contact-form-widget {
  padding: clamp(20px,5vw,46px);
  box-shadow: 0 31px 99px rgba(0, 0, 0, .10);
  border-top: 6px solid var(--primary-color);
}
.google-map {
  height: 450px;
}
.google-map iframe {
  height: 450px!important;
}

/* FOOTER */
.main-footer {
  font-family: var(--secondary-font);
}
.main-footer .footer-top {
  padding: clamp(30px,5vw,64px) 0;
}
.main-footer .footer-top h5 {
  font-size: 1rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  color: var(--white-color);
}
.main-footer .footer-top ul.links {
  column-count: 2;
}
.main-footer .footer-top ul.links li {
  margin: 0;
}
.main-footer .footer-top ul.links li:not(:last-child) {
  margin-bottom: 12px;
}
.main-footer .footer-top ul.links li .sub-menu {
  margin: 12px 0 0 0;
  padding: 0;
}
.main-footer .footer-top ul.links li .sub-menu li a::before {
  content: '-';
  margin-right: 6px;
}
.main-footer .footer-top ul li a,
.main-footer .footer-top p,
.main-footer .footer-top p a {
  font-size:0.875rem;
  color: #AFAFAF;
  transition: var(--primary-transition);
  display: block;
}

.main-footer .footer-top .address p {
  display: grid;
  grid-template-columns: 27px calc(100% - 27px);
}
.main-footer .footer-bottom {
  padding: clamp(10px,3vw,30px) 0;
  border-top: 1px solid var(--dark-grey-color);
}
.footer-bottom,
.footer-bottom a {
  font-size: 0.75rem;
  color: var(--grey-color);
  transition: var(--primary-transition);
}
.footer-bottom .copyright-widget li:not(:last-child)::after,
.footer-bottom .bottom-links li:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
}
.main-footer .footer-top ul li a:hover,
.main-footer .footer-top p a:hover,
.footer-bottom a:hover {
  color: var(--primary-color);
}
.main-footer .footer-top .footer-social li {
  position: relative;
  z-index: 1;
  transition: ease .3s;
}
.main-footer .footer-top .footer-social li:not(:last-child) {
  margin-right: 25px;
}
.main-footer .footer-top .footer-social li a {
  position: relative;
  display: block;
  text-align: center;
  transition: ease .3s;
  color: var(--white-color);
  font-size: 1.5rem;

}
.main-footer .footer-top .footer-social li:hover a {
  color: var(--white-color);
}
.main-footer .footer-top .footer-social:hover > li {
  opacity: 0.5;
}
.main-footer .footer-top .footer-social:hover > li:hover {
  opacity: 1;
}
.download-btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 6px 30px;
  line-height: 36px;
  -webkit-transition: all ease-in-out 0.35s;
  transition: all ease-in-out 0.35s;  
}
.download-btn:hover {
  color: var(--secondary-color);
  background-color: var(--white-color);
}
.download-btn i {
  font-size: 2rem;
  vertical-align: middle;
}
.brochure-box {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-color);
}
.brochure-box > img {
  transition: var(--primary-transition);
}
.brochure-box:hover > img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.brochure-box .folder {
  position: absolute;
  margin: auto;
  width: 52px;
  height: 34px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  bottom: 20px;
  right: 20px;
}
.brochure-box .folder .custom-arrow {
  width: 4px;
  height: 8px;
  margin-left: -2px;
}
.brochure-box .folder .custom-arrow:after {
  left: -6px;
  border-top-width: 8px;
  border-left-width: 8px;
  border-right-width: 8px;
}
.brochure-box .folder .downloading {
  height: 11px;
}
.brochure-box .folder .bar {
  width: 18px;
  height: 3px;
}

/* REVEAL STYLE */
body:not(.no-js) .image-wrap {
  transition: 1s ease-out;
  transition-delay: 0.2s;
  position: relative;
  width: auto;
  /* height: 80vh; */
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  visibility: hidden;
}

body:not(.no-js) .image-wrap img {
  transform: scale(1.3);
  transition: 2s ease-out;
}

body:not(.no-js) .animating .image-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  visibility: visible;
  transform: skewY(0);
}

body:not(.no-js) .animating img {
  transform: scale(1);
  transition: 2s ease-out;
}

body:not(.no-js) .fadeup {
  opacity: 0;
  transition: 0.4s ease-out;
  transform: translateY(40px);
}

body:not(.no-js) .fading-up {
  opacity: 1;
  transition: 1s ease-out;
  transform: translateY(0px);
  transition-delay: 0.7s;
}
.has-animation {
  position: relative;
}
.has-animation .animate-elmnt {
  opacity: 0;
}
.has-animation.animate-in .animate-elmnt {
  animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.has-animation.animate-in:before {
  background-color: #eee;
}
.has-animation.animate-in:after {
  background-color: var(--primary-color);
  animation-delay: 0.5s;
}
.has-animation.animation-ltr.animate-in:before {
  animation: revealLTR 1.8s ease;
}
.has-animation.animation-ltr.animate-in:after {
  animation: revealLTR 1s 0.6s ease;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 1.8s ease;
}
.has-animation.animation-rtl.animate-in:after {
  animation: revealRTL 1s 0.6s ease;
}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* INNER PAGES */
.inner-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  background-color: #000;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5914740896358543) 100%);
  z-index: 1;
}
.inner-banner::before {
  content: '';
  position: absolute;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.12088585434173671) 100%);
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 2;
}
.inner-banner > img {
  position: absolute;
  width: 100%;
  height: 340px;
  object-fit: cover;
  /*object-position: right;*/
  z-index: 1;
}
.inner-banner .title {
  position: relative;
  z-index: 1;
  color: var(--white-color);
  font-size: clamp(2rem,6vw,3.75rem);
  font-weight: var(--font-semibold);
  z-index: 3;
}
/* PROJECT DETAILS */
.sec-nearby {
  position: relative;
  background-color:#FAE9B9;
}
.sec-nearby .sec-title {
  color:#B2822E;
}
.sec-nearby iframe {
  width: 100%;
  height: 100%!important;
}
.sec-nearby table {
  width: 100%;
  background-color: var(--white-color);
}
.sec-nearby table thead {
  background-color: var(--primary-color);
}
.sec-nearby table thead th {
  padding: clamp(8px,2vw,15px);
  color: var(--white-color);
}
.sec-nearby table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(112,112,112,0.2);
}
.sec-nearby table tbody td {
  padding: clamp(6px,2vw,10px) clamp(8px,2vw,15px);
  font-size:1rem;
}
.sec-nearby table tbody td span {
  position: relative;
  display: block;
  padding-left: 19px;
}
.sec-nearby table tbody td span::before {
  content: '';
  position: absolute;
  background-color: #B2822E;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 8px;
  left: 0;
  top: 9px;
}
.sec-nearby table thead tr th:not(:last-child),
.sec-nearby table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(112,112,112,0.2);
}
.plot-layout {
  background-color: #FAE9B9;
}
.plot-layout .plot-widget.left{
  padding: 40px 18px;
}
.plot-layout .nav-pills + .tab-content {
  flex: 1;
}
.plot-layout .nav-pills .nav-link {
  border-radius: 0;
  color: #918D8D;
}
.plot-layout .nav-pills .nav-link span {
  font-size: 0.8125rem;
}
.plot-layout .nav-pills .nav-link.active {
  color: var(--dark-color);
  background-color: #E8D6A3;
}
.plot-layout .tab-content {
  padding: 20px 15px 20px 20px;
  background-color: #E8D6A3;
} 
.plot-layout .block-list {
  max-height: 502px;
  min-height: 502px;
  overflow: auto;
  padding-right: 10px;
} 
.plot-layout .block-list ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px; 
} 
.plot-layout .block-list::-webkit-scrollbar-track {
  background: #D8C798;
  border-radius: 10px;  
}
/* Handle */
.plot-layout .block-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  margin-left: 10px;
}
/* Handle on hover */
.plot-layout .block-list::-webkit-scrollbar-thumb:hover {
  border-radius: 10px;
  margin-left: 10px;
}
.plot-layout .block-list li {
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  border-radius: 5px;
  color: var(--white-color);
  padding: 10px 11px 10px 11px;
} 
.plot-layout .block-list li .plot-number {
  width: 25px;
  height: 25px;
  font-size: 0.75rem;
  font-weight: var(--font-semibold);
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  background-color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
} 
.plot-layout .block-list li.sold {
  background-color: #CE2020;
} 
.plot-layout .block-list li.sold .plot-number {
  color: #CE2020;
} 
.plot-layout .block-list li.available {
  background-color: #18A44B;
} 
.plot-layout .block-list li.available .plot-number {
  color: var(--dark-color);
} 
.bg-imgsec {
  position: relative;
  background: url(../images/payment-plan-bg.jpg) no-repeat;
  background-size: cover;
  z-index: 1;
}
.bg-imgsec::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: block;
  left: 0;
  top: 0;
  opacity: 0.46;
  z-index: -1;
}
.sec-payment-plan .btn {
  background: var(--white-color);
  color: var(--dark-color);
}
.aminities .service-elmnt .circle-box::before {
  border-color: var(--primary-color);
}
.sec-know-about .brochure {
  background: var(--dark-color);
  color: var(--white-color);
}
.sec-know-about .contact {
  background: var(--white-color);
  color: var(--dark-color);
}
.sec-gallery .nav-tabs {
  position:relative;
  border:none!important;
  z-index: 1;
  margin: 0 auto;
  max-width: 228px;
}
.sec-gallery .nav-tabs li a {
  position:relative;
  margin:0px;
  padding: 5px 12px;
  color:var(--dark-color);
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  min-width: 108px;
  text-align: center;
  border: none;
  border-radius: 0;
  background-color: var(--white-color);
}
.sec-gallery .slider {
  display:inline-block;
  width:30px;
  height:100%;
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--secondary-color) 0%, var(--tertiary-color) 51%, var(--secondary-color) 100%);
  position:absolute;
  z-index:-1;
  bottom:0;
  transition:all .4s linear;
}
.sec-gallery .nav-tabs .active {
  background-color:transparent;
  color:var(--white-color);
}
.parent-item-box .box-img {
  height: 260px;
}
.parent-item-box .box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.counter-number {
  counter-reset: section;
}
.counter-number > * {
  position: relative;
}
.counter-number > *::before {
  counter-increment: section;
  content: counter(section) "";
}
.box-topimg-elmt::before {
  position: absolute;
  font-size: 4rem;
  font-weight: var(--font-bold);
  z-index: 1;
  line-height: 1;
  color: var(--white-color);
  left: 20px;
  top: 0px;
  opacity: 0.5;
  transition: var(--primary-transition);
} 
.box-topimg-elmt:hover::before {
  opacity: 0;
  transform: scale(1.5);
  filter: blur(10px);
} 
.box-img {
  border: 8px solid var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, .10);
}
.box-topimg-elmt .top-elm {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-color);
}
.box-topimg-elmt .top-elm img {
  transition: var(--primary-transition);
}
.box-topimg-elmt:hover .top-elm img {
  transform: scale(1.2);
  opacity: 0.3;
}
.box-topimg-elmt .top-elm .info {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top:0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
  -webkit-animation-duration: 1s; 
  animation-duration: 1s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both;
}
.box-topimg-elmt:hover .top-elm .info {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.box-topimg-elmt .top-elm .info p,
.box-topimg-elmt .top-elm .info .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.box-topimg-elmt .top-elm .info p {
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  -o-animation-delay: 0.15s;
  animation-delay: 0.15s;
  color: var(--white-color);
}
.box-topimg-elmt .top-elm .info .btn {
  -webkit-animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
  animation-delay: 0.35s;
  padding: 7px clamp(10px,5vw,20px);
}
.box-topimg-elmt:hover .top-elm .info p,
.box-topimg-elmt:hover .top-elm .info .btn {
  opacity:1;
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
.box-topimg-elmt h3 {
  font-size: clamp(1.125rem,3vw,1.5rem);
  color: var(--dark-color);
}
.career-box ul {
/*  box-shadow: 0 0 10px rgba(0, 0, 0, .10);*/
box-shadow: 0 0 16px rgb(0 0 0 / 15%);
padding: 15px 25px 105px;
font-size: 1rem;
height: 100%;
position: relative;
}

.career-box ul li:first-child {
  font-weight: var(--font-bold);
  font-size: 1.375rem;
}
.career-box ul li:not(:nth-child(-n+2)) {
  display: grid;
  grid-template-columns: 150px calc(100% - 150px);
  margin-top: 12px;
}
.career-box ul li label {
  font-weight: var(--font-bold);
}
.career-box .btn {
  padding: 8px clamp(10px,5vw,20px);
}
.jobtitle {
  margin: 10px 0;
}
.btnbtm {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  padding-left: 25px;
}
.sec-career .item-m6-l4:not(:nth-child(-n+3)) {
  margin-top: 0;
}
.sec-career .row > [class*="col-"] {padding: 15px}
.career-form-sec .notpop-layout .form-group,
.career-form-sec .notpop-layout .form-group p {
  margin-bottom: 0;
}
.career-form-sec input[type="submit"] {
  background-color: var(--dark-color);
}
.file-upload input[type="file"],
.career-box input[type="file"],
.career-form-sec input[type="file"] {
  font-size: 0.875rem;
}
.file-upload {
  background-color: #ffffff;
  border: 1px solid #A4A4A4;
  padding: 8px 10px;
  height: 47px;
}
.career-form-popup .form-group.for-popup {
  display: none;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
  font-size: 0.875rem;
}
.wpcf7-not-valid-tip {
  font-size: 0.75em;
}

/* SITEMAP */
.sitemap {
  /* width: 942px; */
  display: table;
  margin: 0 auto;
}
.sitemap .first {

}
.sitemap ul {
  padding-left: 0;
}
.sitemap a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin: 0 5px;
  border-radius: 7px;
  text-align: center;
  position: relative;
}

.first > li > a {
  background: #374ea2;
  width: 150px;
  height: 70px;
  line-height: 70px;
  display: block;
  margin: auto;
  font-weight: 800;
  color: #fff;
}
.first > li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 10px;
  background: #9e9f9e;
  top: 100%;
}

.second {
  padding-top: 20px;
}
.second a {
  background: #cbcccb;
  font-size: 0.875rem;
  font-weight: 600;
  /* width: 175px; */
  height: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.35s;
  padding: 0 15px;
}
.second a:hover {
  background: #5B91CC;
  color: #fff;
}
.second a:before {
  content: "";
  position: absolute;
  border: 1px solid #9e9f9e;
  border-left: none;
  border-bottom: none;
  height: 9px;
  top: -10px;
  left: -91px;
  width: 190px;
}
.second li:first-child a:before {
  border-top: none;
}


.second .sub-menu {
  margin-left: 36px;
  padding-top: 20px;
}
.second .sub-menu a {
  background: #e4e4e3;
  width: 120px;
  height: 40px;
  margin-bottom: 10px;
  z-index: 5;
  font-size: 0.75rem;
}
.second .sub-menu a:before {
  border: 1px solid #9e9f9e;
  border-right: none;
  border-top: none;
  height: 55px;
  top: -35px;
  left: -8px;
  width: 7px;
}
.cont-edi {
  padding: 40px 0 0;
}
.sec-story .row:nth-child(even) {
  flex-direction: row-reverse;
  padding: 50px 0 0;
  justify-content: space-between;
}
.sec-story .box-img {width: 100%}
/*.sec-story .row:first-child [class*="col-"]:first-child {
    width: 35%;
}

.sec-story .row:first-child [class*="col-"]:last-child {
    width: 65%;
}*/
.form-inline p {
  display: flex;
  width: 100%;
  flex: 1;
}

.form-inline span:last-child {
  width: 100%;
  padding-left: 10px;
}
.booking-form label {
  display: block;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 5px;
}
.shade-bx {
  border: 1px solid var(--primary-color);
  padding: 30px;
  margin: 0 0 40px;
}

.booking-form .h4 {
  background-color: var(--primary-color);
  margin: 20px 0 0;
  padding: 14px 30px;
  color: #000000;
}
.m-0 p {
  margin: 0;
}
select.form-control {
  background: #ffffff url(../images/select-bg.png) no-repeat right 10px center;
  padding-right: 32px;
  box-sizing: border-box;
  min-width: 80px;
}
.date-place {
  display: flex;
}

.date-place > div {
  padding-right: 15px;
}
.booking-form ol li {
  list-style-type: decimal;
}
.booking-form .wpcf7-not-valid-tip {
  position: absolute;
}
.wpcf7-radio .wpcf7-list-item.first {
  margin: 0;
}
.blog-au-ca-da {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-au-ca-da .cat-name {
  right: 15px;
  bottom: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 3px 15px;
  font-size: 0.75rem;
  line-height: 18px;
  text-transform: uppercase;
}
/*comment form*/

.comments-area { line-height:1.4;}
.comments-area h2{ margin-bottom:30px; font-weight:300; font-size:24px;}
.comments-area h3{ margin-bottom:15px; font-weight:300; font-size:24px;}
.comments-area p{ margin-bottom:15px; font-size:16px;}
.comments-area p a{ color:#f7941e;}

.comment-respond{ margin:0; float:left; width:100%;}
.comment-respond label{ margin-bottom:5px; display:block;}
.comment-respond textarea{margin:0;padding:10px 15px;width:100%;height:150px;border:0;border: 1px solid #A4A4A4;line-height:24px;resize:none;font-size:14px;}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"]{margin:0;padding:10px 15px;width:100%;height:40px;border:0;border: 1px solid #A4A4A4;line-height:40px;font-size:14px;}
.comment-respond input[type="submit"]{/* margin:0; *//* padding:10px 15px; *//* height:40px; *//* border:0px; *//* font-size:14px; *//* background:none; *//* border:1px solid #203367; *//* color:#00507e; *//* transition:0.5s; *//* text-transform:uppercase; *//* cursor:pointer; */}
.comment-respond input[type="submit"]:hover{ background:#203367; color:#fff;}
.comment-reply{ padding-right:10px;}
input#wp-comment-cookies-consent {
  position: absolute;
  left: 0;
  margin: 6px 0 0;
  top: 0;
}

p.comment-form-cookies-consent {
  position: relative;
  padding-left: 20px;
}
/*end comment form*/
.blog-right-panel #sidebar .widget form label {
  display: none;
}
.blog-right-panel #sidebar .widget form button {
  background: #eeb311 url(https://emerge.indusnettechnologies.com/rajputana-realty/wp/wp-content/themes/rajputana-realty/assets/images/search-icon.png) no-repeat center;
  text-indent: -100px;
  padding: 0 28px;
  overflow: hidden;
}

.blog-right-panel #sidebar .widget form input[type=search] {
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.blog-right-panel #sidebar .widget form button:hover {
  background-color: var(--dark-color);
}

.blog-right-panel #sidebar .widget form input[type=search]:focus {
  outline: 0 none;
}
.bl-box {
  margin-bottom: 20px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 15px;
}
.blog-info {
  margin-bottom: 30px;
}
/*pagination*/
.nav-links .page-numbers {
  border: 1px solid var(--primary-color);
  padding: 5px 15px;
  display: inline-block;
}

.nav-links {
  text-align: center;
  width: 100%;
  margin-top: 30px;
}

.nav-links .page-numbers.current, .nav-links .page-numbers:hover {
  color: #ffffff;
  background-color: var(--primary-color);
}
.nav-links .page-numbers.dots {
  pointer-events: none;
}
.nav-links .page-numbers .nav-next-text, .nav-links .page-numbers span.nav-prev-text {
  display: none;
}
.nav-links .page-numbers.next.placeholder {margin-left: 2px;}
.nav-links .page-numbers.prev.placeholder {margin-right: 2px;}
.pagination-wrapper .pagination-separator {
  display: none;
}