@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--text);
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.hasCalender {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%237E84A3' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.form .form-group.hasCalender.hasCalender-white {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'><path fill='%23ffffff' d='M19 4h-2V3a1 1 0 0 0-2 0v1H9V3a1 1 0 0 0-2 0v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3m1 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-7h16Zm0-9H4V7a1 1 0 0 1 1-1h2v1a1 1 0 0 0 2 0V6h6v1a1 1 0 0 0 2 0V6h2a1 1 0 0 1 1 1Z'/></svg>");
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --iconsize: 14px;
  --iconspace: 8px;
  --iconpath: url(../../icon/location-primary.svg);
  --iconfilter: brightness(0) saturate(100%) invert(34%) sepia(91%) saturate(749%) hue-rotate(96deg) brightness(92%) contrast(94%);
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--paddingleftright);
  transform: translateY(-50%);
  padding: 15px 0;
  width: var(--iconsize);
  height: var(--iconsize);
  background-image: var(--iconpath);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  filter: var(--iconfilter);
  pointer-events: none;
}
.custom-select.has-icon .current,
.custom-select.has-icon select {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select:hover {
  --iconfilter: brightness(0) saturate(100%) invert(28%) sepia(98%) saturate(900%) hue-rotate(95deg) brightness(100%) contrast(105%);
}
.custom-select.disabled,
.custom-select select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  --iconfilter: grayscale(1);
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-white.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.daterangepicker {
  font-family: "Poppins" !important;
}
.daterangepicker option.disabled, .daterangepicker td.disabled {
  text-decoration: none !important;
}
.daterangepicker td.active {
  background-color: var(--primary) !important;
}
.daterangepicker .drp-buttons .btn {
  --height: 30px;
  padding: 0 15px !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 18px;
  --headerheight: 96px;
  --headerfixed: 60px;
  --footerstrip: 38px;
  --filterstrip: 44px;
  --detailstrip: 40px;
  --primary: #06A237;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #EFEFEF;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
    --headerpadding: 12px;
    --headerheight: 75px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --headerheight: 78px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --headerfixed: 65px;
    --headerheight: 65px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Poppins";
  font-weight: 400;
}

main {
  padding-top: var(--headerheight);
}

b {
  font-weight: 500;
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

.c-primary {
  color: var(--black);
}
.c-primary svg path {
  fill: var(--black);
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 58px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 54px;
  line-height: 1.2;
}

h3 {
  font-size: 48px;
  line-height: 1.2;
}

.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.12;
  color: var(--black);
}
@media only screen and (max-width: 1152px) {
  .heading h3, .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3, .heading h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 675px) {
  .heading h3, .heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}
.heading p {
  color: var(--text);
  margin-top: 12px;
}
.heading.h-small h3, .heading.h-small h2 {
  font-size: 24px;
  line-height: 1.2;
}
.heading.h-small p {
  font-size: 14px;
  line-height: 16px;
}
.heading.h-mid h3, .heading.h-mid h2 {
  font-size: 30px;
}
.heading.h-medium h3, .heading.h-medium h2 {
  font-size: 36px;
}
.heading.h-large h3, .heading.h-large h2 {
  font-size: 64px;
  line-height: 1;
}
@media only screen and (max-width: 1152px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 675px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 28px;
  }
}
.heading.c-white h2, .heading.c-white h3, .heading.c-white p {
  color: var(--white);
}
.heading.c-primary h2, .heading.c-primary h3 {
  color: var(--primary);
}
.heading.c-primary h2 ~ p, .heading.c-primary h3 ~ p {
  color: var(--text);
  margin-top: 10px;
}
.heading.f-medium h2, .heading.f-medium h3 {
  font-weight: 500;
}
.heading.f-bold h2, .heading.f-bold h3 {
  font-weight: 600;
}
.heading.f-regular h2, .heading.f-regular h3 {
  font-weight: 400;
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.167;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
  display: block;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
  z-index: 6;
}

.btn {
  --height: 40px;
  --padding: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  overflow: hidden;
  text-transform: capitalize;
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid var(--primary);
  background: var(--primary);
  font-weight: 500;
  border-radius: 30px;
  z-index: 1;
  color: var(--white);
}
.btn.btn-btn {
  border-radius: 5px;
}
.btn path {
  fill: var(--white);
}
.btn.box {
  width: var(--height);
  padding: 0;
}
.btn:hover:not(.ho-hover-btn) {
  background: none;
  color: var(--primary);
}
.btn:hover path {
  fill: var(--primary);
}
.btn.small-btn {
  --height: 32px;
  --padding: 10px;
  font-size: 13px;
}
.btn.medium-btn {
  --height: 45px;
}
.btn.red {
  background: #BB0202;
  border-color: #BB0202;
  display: none;
}
.btn.white-border {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border path {
  fill: var(--white);
}
.btn.white-border:hover:not(.ho-hover-btn) {
  background: var(--white);
  color: var(--primary);
}
.btn.white-border:hover:not(.ho-hover-btn) path {
  fill: var(--primary);
}
.btn.black-border {
  background: none;
  border-color: var(--black);
  color: var(--black);
}
.btn.black-border path {
  fill: var(--black);
}
.btn.black-border:hover:not(.ho-hover-btn) {
  background: var(--black);
  color: var(--white);
}
.btn.black-border:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.primary-border {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
.btn.primary-border path {
  fill: var(--primary);
}
.btn.primary-border:hover:not(.ho-hover-btn) {
  background: var(--primary);
  color: var(--white);
}
.btn.primary-border:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn.white path {
  fill: var(--black);
}
.btn.white:hover:not(.ho-hover-btn) {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white:hover:not(.ho-hover-btn) path {
  fill: var(--white);
}
.btn.w-100 {
  width: 100%;
}

.btn2 {
  font-weight: 500;
}
.btn2 img, .btn2 svg {
  transition: 0.5s ease;
}
.btn2:hover img, .btn2:hover svg {
  transform: translateX(5px);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close:not(.btn, .close-video) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form-grid .full {
  grid-column: span var(--item);
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 11px;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.testimonial-col {
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.28%, rgba(0, 0, 0, 0.7) 97.73%);
}
.testimonial-col figcaption {
  padding: 0 28px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .testimonial-col figcaption {
    padding: 0 15px 25px;
  }
}
.testimonial-col figcaption .inf {
  flex: 1;
  padding-right: 1rem;
  color: var(--white);
}
.testimonial-col figcaption .inf h6 {
  font-weight: 600;
  margin-bottom: 3px;
}
@media only screen and (max-width: 675px) {
  .testimonial-col figcaption .inf h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 675px) {
  .testimonial-col figcaption .inf p {
    font-size: 14px;
  }
}
.testimonial-col figcaption .play-btn {
  flex: 0 1 auto;
}
@media only screen and (max-width: 767px) {
  .testimonial-col figcaption .play-btn {
    --btnsize: 38px;
  }
}

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
}
.swiper-prev.swiper-btn-medium, .swiper-next.swiper-btn-medium {
  --size: 35px;
}
.swiper-prev path, .swiper-next path {
  fill: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background path, .swiper-next.no-background path {
  fill: initial;
}
.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.2509803922);
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev.white path, .swiper-next.white path {
  fill: var(--black);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled) path, .swiper-next.white:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.primary-border, .swiper-next.primary-border {
  border-color: var(--primary);
  background: none;
}
.swiper-prev.primary-border path, .swiper-next.primary-border path {
  fill: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled), .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled) path, .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
}
.swiper-prev.white-border path, .swiper-next.white-border path {
  fill: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled) path, .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: #828282;
  background: none;
}
.swiper-prev.gray-border path, .swiper-next.gray-border path {
  fill: #828282;
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled) path, .swiper-next.gray-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.black-border, .swiper-next.black-border {
  border-color: var(--black);
  background: none;
}
.swiper-prev.black-border path, .swiper-next.black-border path {
  fill: var(--black);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled), .swiper-next.black-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled) path, .swiper-next.black-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
  --size: 59px;
}
@media only screen and (max-width: 991px) {
  .swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
    --size: 48px;
  }
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Cinzel-regular";
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}
.website-content h2 {
  font-size: 34px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-spacing: -0.07em;
}
.website-content p b, .website-content li b {
  font-weight: 600;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 30px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}
.website-content.website-content-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.website-content.website-content-medium h5, .website-content.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content.website-content-medium p, .website-content.website-content-medium ul {
  margin-bottom: 20px;
}

.kmr-animate {
  transition: 1.2s ease;
}

[data-video], [data-model] {
  cursor: pointer;
}

.location-col {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.location-col::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.location-col:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.location-col::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.location-col:hover img {
  transform: scale(1.05);
}
.location-col figure img {
  aspect-ratio: 1.18;
}
.location-col figcaption {
  padding: 0 24px 20px;
  color: var(--white);
  text-align: center;
}
.location-col figcaption p {
  line-height: 20px;
}
.location-col figcaption span {
  display: block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}

.property-col {
  --pad-b: 43px;
  --pad-l: 35px;
  --pad-r: 20px;
  --wtspsize: 50px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 1330px) {
  .property-col {
    --pad-b: 30px;
    --pad-l: 20px;
    --pad-r: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .property-col {
    --pad-b: 20px;
    --pad-l: 15px;
    --pad-r: var(--pad-l);
    --wtspsize: 38px;
  }
}
.property-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
}
.property-col.property-col-small {
  --pad-b: 35px;
  --pad-l: 22px;
  --pad-r: 18px;
  --wtspsize: 42px;
}
@media only screen and (max-width: 1280px) {
  .property-col.property-col-small {
    --pad-l: 20px;
    --pad-r: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  .property-col.property-col-small {
    --pad-l: 15px;
    --pad-r: 10px;
    --wtspsize: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .property-col.property-col-small {
    --pad-b: 20px;
    --pad-l: 15px;
    --pad-r: var(--pad-l);
  }
}
.property-col.property-col-small figcaption .fig-bottom > *:not(:last-child) {
  margin-right: 8px;
}
@media only screen and (max-width: 1200px) {
  .property-col.property-col-small figcaption .fig-bottom > *:not(:last-child) {
    margin-right: 4px;
  }
}
.property-col.property-col-small figcaption .fig-bottom .btn {
  font-size: 14px;
  --padding: 18px;
}
@media only screen and (max-width: 1200px) {
  .property-col.property-col-small figcaption .fig-bottom .btn {
    --padding: 12px;
    --height: 34px;
  }
}
.property-col.blog-col figcaption {
  transform: none;
}
.property-col.blog-col figcaption .fig-top {
  padding-bottom: 0;
}
.property-col.blog-col figcaption .fig-top h6 {
  font-family: "Poppins";
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}
.property-col.blog-col:hover figcaption .fig-top {
  padding-bottom: 0;
}
.property-col figure, .property-col .figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  position: relative;
}
.property-col figure::before, .property-col .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.property-col figure:hover::before, .property-col .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.property-col figure img, .property-col .figure img {
  aspect-ratio: 1.3;
  -o-object-position: right;
     object-position: right;
  width: 100%;
}
.property-col figcaption {
  padding: 0 var(--pad-r) var(--pad-b) var(--pad-l);
  transform: translateY(calc(var(--pad-b) + var(--wtspsize)));
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption {
    transform: none;
    top: 0;
    padding-top: var(--pad-b);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
  }
}
.property-col figcaption .fig-top {
  padding-bottom: var(--pad-b);
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-top {
    padding-bottom: 0;
    pointer-events: all;
  }
}
.property-col figcaption .fig-top h6 {
  font-family: "Cinzel-regular";
  font-size: 24px;
  line-height: 1.34;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-top h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption .fig-top h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom {
    pointer-events: all;
  }
}
.property-col figcaption .fig-bottom > *:not(:last-child) {
  margin-right: 18px;
}
@media only screen and (max-width: 1330px) {
  .property-col figcaption .fig-bottom > *:not(:last-child) {
    margin-right: 10px;
  }
}
.property-col figcaption .fig-bottom .wtsp-btn {
  --height: var(--wtspsize);
  margin-left: 12px;
}
@media only screen and (max-width: 1280px) {
  .property-col figcaption .fig-bottom .wtsp-btn {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 1200px) {
  .property-col figcaption .fig-bottom .wtsp-btn {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .wtsp-btn {
    position: absolute;
    margin-left: 0;
    top: var(--pad-b);
    right: var(--pad-l);
    z-index: 2;
  }
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .wtsp-btn svg, .property-col figcaption .fig-bottom .wtsp-btn img {
    width: 18px;
    height: auto;
  }
}
.property-col figcaption .fig-bottom .wtsp-btn:hover {
  background: #25D366;
  border-color: #25D366;
}
@media only screen and (max-width: 991px) {
  .property-col figcaption .fig-bottom .uzax, .property-col figcaption .fig-bottom .bitu {
    display: none;
  }
}
.property-col:hover figcaption {
  transform: translateY(0);
}
.property-col:hover figcaption .fig-top {
  padding-bottom: 28px;
}
@media only screen and (max-width: 991px) {
  .property-col:hover figcaption .fig-top {
    padding-bottom: 0;
  }
}

.lctn {
  font-size: 14px;
  line-height: 21px;
  color: var(--white);
  --arrow: 20px;
  --space: 5px;
  position: relative;
  padding-left: calc(var(--arrow) + var(--space));
}
.lctn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: url(../../icon/location-white.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
  transform-origin: center right;
}

.banner {
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.8%, #000000 97.34%);
}
.banner.banner-banner {
  background: #fef0fa;
  padding: 105px 0 95px;
  background: #FEF0FA;
}
.banner.banner-banner::before {
  background-image: url(../../images/vector/vector-2-a.svg), url(../../images/vector/vector-2-b.svg);
  background-repeat: no-repeat;
  background-position: 0 100%, 100% 100%;
}
.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}
@media only screen and (max-width: 675px) {
  .banner.center-banner .banner-wrapper {
    bottom: 20%;
    translate: none;
    top: auto;
  }
}
.banner .bg {
  height: 750px;
  line-height: 0;
}
@media only screen and (max-width: 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}
@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 566px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .bg {
    height: 432px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  z-index: 1;
}
.banner .content.content-white h1, .banner .content.content-white p, .banner .content.content-white h5, .banner .content.content-white h6 {
  color: var(--white);
}
.banner .content h5:has(+ *) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .banner .content h5:has(+ *) {
    margin-bottom: 14px;
  }
}
.banner .content h1 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1;
}
@media only screen and (max-width: 520px) {
  .banner .content h1 {
    font-size: 32px;
  }
}
.banner .content h5 {
  font-size: 20px;
  line-height: 1.34;
}
@media only screen and (max-width: 991px) {
  .banner .content h5 {
    font-size: 16px;
  }
}
.banner .content h6 {
  font-size: 18px;
  font-weight: 400;
}

.gray-bg {
  background: #F1F1F1;
}

.tab-nav-amlte {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  overflow-x: auto;
}
.tab-nav-amlte li {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 27px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--gray);
  border-radius: 30px;
  transition: 0.5s ease;
}
.tab-nav-amlte li:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.tab-nav-amlte li.active {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.project-col {
  border: 1px solid #D7D6D6;
  border-radius: 10px;
  overflow: hidden;
  --padtop: 27px;
  --padlr: 22px;
  --padbottom: 34px;
  --btnspace: 40px;
  --btnheight: 40px;
}
.project-col .figure, .project-col figure {
  width: 100%;
  position: relative;
  display: block;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.project-col .figure::before, .project-col figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.project-col .figure:hover::before, .project-col figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.project-col .figure::after, .project-col figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.5%, rgba(0, 0, 0, 0.8) 100%);
}
.project-col .figure:hover > img, .project-col figure:hover > img {
  transform: scale(1.05);
}
.project-col .figure > img, .project-col figure > img {
  width: 100%;
  aspect-ratio: 1.33;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.project-col .figure .fig-dtl, .project-col figure .fig-dtl {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}
.project-col .figure .upr-dv, .project-col figure .upr-dv {
  top: 0;
  padding: 26px 17px 0;
}
.project-col .figure .upr-dv .unfrn-bn, .project-col figure .upr-dv .unfrn-bn {
  --height: 32px;
}
.project-col .figure .btm-dv, .project-col figure .btm-dv {
  bottom: 0;
  padding: 0 22px 20px;
}
.project-col .figure .btm-dv .dscr-fgr, .project-col figure .btm-dv .dscr-fgr {
  font-size: 12px;
  line-height: 22px;
  color: var(--white);
  margin-top: 15px;
}
.project-col figcaption {
  padding: var(--padlr) var(--padlr) calc(var(--padbottom) + var(--btnspace) + var(--btnheight));
  position: relative;
}
.project-col figcaption .upper-col .ttl-prpt {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--black);
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.project-col figcaption .upper-col .ttl-prpt:is(a):hover {
  color: var(--primary);
}
.project-col figcaption .bottom-col {
  margin-top: 22px;
}
.project-col figcaption .bottom-col .descip {
  gap: 0 12px;
  display: flex;
}
.project-col figcaption .bottom-col .descip li {
  flex: 1;
}
.project-col figcaption .bottom-col .descip li span {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #ADADAD;
}
.project-col figcaption .bottom-col .descip li p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
}
.project-col figcaption .btn-wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 var(--padlr) var(--padbottom);
  display: flex;
  gap: 9px;
}
.project-col figcaption .btn-wrp > * {
  flex: 1;
}
.project-col figcaption .btn-wrp .btn {
  --height: var(--btnheight);
}

.commom-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 43px 15px;
}

[data-content] {
  --totalline: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--totalline);
  text-overflow: ellipsis;
  overflow: hidden;
}
[data-content].is-shown {
  -webkit-line-clamp: initial;
}

.read-more-btn {
  margin-top: 30px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  padding-right: 25px;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
  --primaryarrow: url(../../icon/arrow-down-primary.svg) no-repeat 100% 50%;
  background: var(--primaryarrow);
  transform-origin: center;
}
.read-more-btn.active::before {
  transform: rotate(180deg);
}

.table-div table {
  width: 100%;
  border-spacing: 0px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
.table-div table thead {
  background: #E9E9E9;
}
.table-div table th, .table-div table td {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  padding: 11px 28px;
}
.table-div table th {
  color: var(--black);
}
.table-div table td {
  color: var(--text);
}

.checkbox-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}
.checkbox-full:has(input:checked) .check-span::before {
  opacity: 1;
}
.checkbox-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.checkbox-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.checkbox-full .check-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}
.radio-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.radio-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 17px;
  display: inline-block;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
}
.radio-full p {
  padding-left: 14px;
}

.team-col {
  border-radius: 10px;
  overflow: hidden;
}
.team-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.9) 100%);
}
.team-col figure img {
  aspect-ratio: 0.9417721519;
}
.team-col figcaption {
  text-align: center;
  padding: 0 30px 40px;
  color: var(--white);
}
.team-col figcaption h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.167;
}
.team-col figcaption p {
  line-height: 22px;
  font-weight: 500;
  margin-top: 5px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
  transition: box-shadow 0s ease, 0.5s ease;
  background: var(--white);
}
header.header-fixed {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  height: var(--headerfixed);
  --headerpadding: 10px;
}
@media only screen and (max-width: 675px) {
  header.header-fixed {
    --headerpadding: 12px;
  }
}
header.header-fixed::after {
  height: 100%;
}
header .header-wrapper {
  padding: 0 var(--containerfluid);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header-wrapper .colA, header .header-wrapper .colB {
  display: flex;
  height: 100%;
}
header .header-wrapper .colA {
  flex: 0 1 auto;
  padding: var(--headerpadding) 0;
  transition: 0.5s ease;
}
header .header-wrapper .colA a, header .header-wrapper .colA img {
  height: 100%;
  width: 250px;
}
header .header-wrapper .colB {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
header .header-wrapper .colB ul li {
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  font-weight: 500;
}
header .header-wrapper .colB ul li:not(:last-child) {
  margin-right: 17px;
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .colB ul li:not(:last-child) {
    margin-right: 12px;
  }
}
header .header-wrapper .colB ul li a:not(.btn), header .header-wrapper .colB ul li span:not(.btn) {
  color: var(--black);
  display: inline-block;
}
header .header-wrapper .colB ul li a:not(.btn):hover, header .header-wrapper .colB ul li span:not(.btn):hover {
  color: var(--primary);
}
header .header-wrapper .colB ul li:has(.login-btn) {
  margin-right: 27px;
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colB ul li:has(.login-btn, .call-anr) {
    display: none;
  }
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colB ul li:has(.pst-prpt-btn, .enqr-btn) {
    display: none;
  }
}
header .header-wrapper .colB ul li .btn {
  --padding: 14px;
}
header .header-wrapper .colB ul li .ham-btn {
  width: 36px;
  height: 26px;
  display: flex;
  align-items: center;
  --border: 2px;
  --background: var(--black);
  border: var(--border) solid var(--background);
  border-left: none;
  border-right: none;
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colB ul li .ham-btn {
    --background: var(--primary);
  }
}
header .header-wrapper .colB ul li .ham-btn:hover {
  --background: var(--primary);
}
header .header-wrapper .colB ul li .ham-btn:hover span {
  width: 100%;
}
header .header-wrapper .colB ul li .ham-btn span {
  display: block;
  width: 25px;
  height: var(--border);
  background: var(--background);
  transition: 0.5s ease;
}

footer .upper-footer {
  padding: 20px 0;
  background: var(--primary);
}
@media only screen and (max-width: 991px) {
  footer .upper-footer {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .upper-footer {
    display: none;
  }
}
footer .upper-footer .flex {
  align-items: center;
}
footer .upper-footer .flex .colA {
  flex: 1;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colA {
    padding-right: 1rem;
  }
}
footer .upper-footer .flex .colA ul li {
  display: inline-block;
  vertical-align: middle;
}
footer .upper-footer .flex .colA ul li a {
  display: flex;
  flex-wrap: wrap;
  color: var(--white);
  align-items: center;
}
footer .upper-footer .flex .colA ul li a .ico {
  flex: 0 1 auto;
}
footer .upper-footer .flex .colA ul li a .inf {
  flex: 1;
  padding-left: 15px;
}
footer .upper-footer .flex .colA ul li a .inf span {
  display: block;
  font-size: 12px;
  line-height: 1;
}
footer .upper-footer .flex .colA ul li a .inf p {
  font-weight: 600;
}
footer .upper-footer .flex .colA ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 38px;
  margin-right: 38px;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colA ul li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
  }
}
footer .upper-footer .flex .colB {
  flex: 0 1 auto;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .flex .colB {
    display: none;
  }
}
footer .upper-footer .flex .colB li {
  display: inline-block;
  vertical-align: middle;
}
footer .upper-footer .flex .colB li:not(:last-child) {
  margin-right: 19px;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colB li:not(:last-child) {
    margin-right: 8px;
  }
}
footer .upper-footer .flex .colB li .btn {
  --padding: 28px;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colB li .btn {
    --height: 42px;
  }
}
footer .middle-footer {
  padding: 50px 0 45px;
  background: #F8F8F8;
}
footer .middle-footer .footer-wrapper {
  display: grid;
  grid-template-columns: 15.235% auto auto 1fr auto;
  grid-gap: 106px;
}
@media only screen and (max-width: 1280px) {
  footer .middle-footer .footer-wrapper {
    grid-gap: 75px;
  }
}
@media only screen and (max-width: 1024px) {
  footer .middle-footer .footer-wrapper {
    grid-gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 35px 20px;
  }
}
@media only screen and (max-width: 767px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: auto 1fr 46%;
  }
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  footer .middle-footer .footer-wrapper .col-md:has(.logo) {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .col-md:first-child, footer .middle-footer .footer-wrapper .col-md:last-child {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper .col-md:first-child, footer .middle-footer .footer-wrapper .col-md:last-child {
    grid-column: initial;
  }
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .logo {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .middle-footer .footer-wrapper .logo img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .social-icons {
    text-align: center;
  }
}
footer .middle-footer .footer-wrapper .social-icons a {
  display: block;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .social-icons a {
    display: inline-block;
    vertical-align: middle;
  }
}
footer .middle-footer .footer-wrapper .social-icons a:hover path {
  fill: var(--primary);
}
footer .middle-footer .footer-wrapper .social-icons a svg {
  width: 24px;
  height: 24px;
}
footer .middle-footer .footer-wrapper .social-icons a:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .social-icons a:not(:last-child) {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
footer .middle-footer .footer-wrapper h6 {
  color: var(--black);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper h6 {
    margin-bottom: 12px;
  }
}
footer .middle-footer .footer-wrapper ul li a {
  font-size: 14px;
  line-height: 24px;
  display: block;
  padding: 2px 0;
  color: var(--text);
}
footer .middle-footer .footer-wrapper ul li a:has(svg) {
  display: flex;
  gap: 15px;
}
footer .middle-footer .footer-wrapper ul li a svg {
  min-width: 13px;
}
footer .middle-footer .footer-wrapper ul li a:hover {
  color: var(--primary);
}
footer .middle-footer .footer-wrapper ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper ul li:not(:last-child) {
    margin-bottom: 2px;
  }
}
footer .bottom-footer {
  padding: 28px 0;
  background: #ECECEC;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-footer {
    padding: 15px 0 calc(15px + var(--footerstrip));
  }
}
footer .bottom-footer p, footer .bottom-footer a {
  color: var(--text);
  font-size: 14px;
}
footer .bottom-footer .flex {
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .flex {
    text-align: center;
  }
}
footer .bottom-footer .col-df {
  flex: 1;
  padding-right: 2rem;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .col-df {
    flex: 0 1 100%;
    padding-right: 0;
  }
}
footer .bottom-footer .col-df span {
  border-left: 1px solid var(--text);
  padding-left: 15px;
  margin-left: 15px;
}
@media only screen and (max-width: 675px) {
  footer .bottom-footer .col-df span {
    display: block;
    border: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
  }
}
footer .bottom-footer .col-df span a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-left: 8px;
}
footer .bottom-footer .col-df span a img {
  width: 58px;
}

.ham-pop {
  right: 0;
  max-width: 480px;
  background-color: var(--white);
  background-image: url(../../images/vector/vector-1.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% auto;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop .model-body {
  padding: 70px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 60px 25px 20px;
  }
}
.ham-pop .model-body .ico {
  margin-bottom: 3rem;
  line-height: 0;
}
.ham-pop .model-body .ico svg {
  width: 65px;
  height: auto;
}
.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.ham-pop .model-body .nav-list > li > a {
  font-size: 28px;
  line-height: 1.06;
  color: var(--black);
  display: inline-block;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 24px;
  }
}
.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--primary);
}
.ham-pop .model-body .nav-list > li.has-dropdown {
  position: relative;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 22px;
  height: var(--sizeplu);
  width: var(--sizeplu);
  cursor: pointer;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::before, .ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: 0.5s ease;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::before {
  transform: rotate(90deg);
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham {
  display: none;
  border: 1px solid #ccc;
  border-right: none;
  border-left: none;
  margin: 12px 0;
  padding: 15px 0;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li:not(:last-child) {
  margin-bottom: 5px;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li a {
  color: var(--text);
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li a:hover {
  color: var(--black);
}
.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons {
  margin-bottom: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
.ham-pop .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.ham-pop .model-body .bottom-list .social-icons a:hover path {
  fill: var(--primary);
}

.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background-color: var(--white);
  background-image: url(../../images/vector/vector-1.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% auto;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 50px 20px 30px;
  }
}
.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-pop .model-body .title h4 {
  font-size: 28px;
  color: var(--black);
  font-weight: 600;
}
.enquire-pop .model-body .title p {
  color: var(--text);
  margin-top: 10px;
}
.enquire-pop .model-body .title p small {
  line-height: 20px;
}
.enquire-pop .model-body .form {
  --gaptb: 15px;
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}
.video-pop .close-video:hover {
  background: var(--primary);
}
.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--primary);
  display: none;
}
@media only screen and (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-strip ul li a {
  display: block;
  text-align: center;
  color: var(--white);
  height: var(--footerstrip);
  line-height: var(--footerstrip);
}

.wtsp-btn-fixed {
  position: fixed;
  right: 15px;
  bottom: calc(var(--footerstrip) + 10px);
  z-index: 3;
}
@media only screen and (min-width: 675px) {
  .wtsp-btn-fixed {
    display: none;
    right: 40px;
    bottom: 40px;
  }
}
.wtsp-btn-fixed .btn-f-wtsp {
  display: block;
  line-height: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  padding: 12px;
  border: 1px solid var(--white);
}
.wtsp-btn-fixed .btn-f-wtsp svg, .wtsp-btn-fixed .btn-f-wtsp img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=header.css.map */