@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;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: url(../../icon/location-gradient.svg);
  --iconspace: 8px;
}
.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 {
  left: 0;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.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", sans-serif !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 {
  --upperheader: 48px;
  --bottomheader: 94px;
  --bottomheaderpadding: 14px;
  --headerheight: calc(var(--upperheader) + var(--bottomheader));
  --upperheaderfixed: 35px;
  --bottomheaderfixed: 68px;
  --headerfixed: calc(var(--upperheaderfixed) + var(--bottomheaderfixed));
  --footerstrip: 40px;
  --primary: #00aae5;
  --secondary: #05273B;
  --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;
    --bottomheader: 75px;
    --bottomheaderpadding: 10px;
  }
}
@media only screen and (max-width: 675px) {
  :root {
    --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", sans-serif;
  font-weight: 400;
}

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

b {
  font-weight: 600;
}

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;
}

.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;
  font-weight: 600;
}
@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;
  font-weight: 600;
}

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

.heading h3, .heading h2 {
  font-size: 36px;
  line-height: 1.12;
  text-transform: capitalize;
  color: var(--black);
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .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.heading-2 h3, .heading.heading-2 h2 {
  font-family: BonVivant;
  text-transform: uppercase;
  font-size: 80px;
  line-height: 1;
  font-weight: normal;
}
@media only screen and (max-width: 1024px) {
  .heading.heading-2 h3, .heading.heading-2 h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.heading-2 h3, .heading.heading-2 h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 675px) {
  .heading.heading-2 h3, .heading.heading-2 h2 {
    font-size: 36px;
  }
}
.heading.heading-2.heading-2-medium h3, .heading.heading-2.heading-2-medium h2 {
  font-size: 48px;
}
@media only screen and (max-width: 675px) {
  .heading.heading-2.heading-2-medium h3, .heading.heading-2.heading-2-medium h2 {
    font-size: 32px;
  }
}
.heading.f-medium h3, .heading.f-medium h2 {
  font-weight: 500;
}
.heading.h-medium h3, .heading.h-medium h2 {
  font-size: 36px;
}
.heading.h-large h3, .heading.h-large h2 {
  font-size: 64px;
}
.heading.c-white h2, .heading.c-white h3 {
  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 span {
  color: var(--primary);
}
.heading h5, .heading h6, .heading p {
  color: var(--text);
}
.heading p {
  margin-top: 16px;
}
@media only screen and (max-width: 675px) {
  .heading p {
    margin-top: 8px;
  }
}
.heading h5 {
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .heading h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 675px) {
  .heading h5 {
    font-size: 14px;
    margin-top: 8px;
  }
}
.heading h6 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 17px;
}
@media only screen and (max-width: 675px) {
  .heading h6 {
    font-size: 14px;
    margin-top: 8px;
  }
}

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

h5 {
  font-size: 24px;
  line-height: 1.167;
  font-weight: 500;
}
@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;
  font-weight: 500;
}

.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;
  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 img, .item-md .figure video {
  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%);
}

.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: 40px;
  right: 40px;
}
@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);
}

.btn {
  --height: 40px;
  --padding: 24px;
  height: var(--height);
  line-height: var(--height);
  align-items: center;
  display: inline-flex;
  vertical-align: middle;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  text-transform: capitalize;
  color: var(--white);
  border: 1px solid var(--primary);
  background: var(--primary);
  border-radius: 5px;
  padding: 0 var(--padding);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
.btn:hover {
  background: none;
  color: var(--primary);
}
.btn.white {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}
.btn.white:hover {
  background: none;
  color: 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 {
  background: var(--primary);
  color: var(--white);
}
.btn.primary-border:hover path {
  fill: var(--white);
}
.btn.white-border {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border:hover {
  background: var(--white);
  color: var(--black);
}
.btn.white-border:hover path {
  fill: var(--black);
}
.btn.black-border {
  background: none;
  border-color: var(--black);
  color: var(--black);
}
.btn.black-border:hover {
  background: var(--black);
  color: var(--white);
}
.btn.black-border:hover path {
  fill: var(--white);
}
.btn.gray-border {
  background: none;
  border-color: var(--text);
  color: var(--text);
}
.btn.gray-border:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
}
.btn.gray-border:hover path {
  fill: var(--white);
}
.btn.w-100 {
  width: 100%;
}
.btn.wide {
  --padding: 32px;
}
.btn.btn-medium {
  --height: 44px;
}
.btn.btn-large {
  --height: 48px;
}

.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  --btncolor: var(--primary);
  color: var(--btncolor);
  font-weight: 500;
}
.btn2 svg {
  transition: 0.5s ease;
}
.btn2 path {
  stroke: var(--btncolor);
}
.btn2:hover {
  --btncolor: var(--secondary);
}
.btn2:hover svg {
  transform: translateX(10px);
}
.btn2.white {
  --btncolor: var(--white);
}
.btn2.white:hover {
  --btncolor: var(--primary);
}

.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);
}

.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: none;
}
.banner::before {
  z-index: 1;
  background: linear-gradient(179.92deg, rgba(0, 0, 0, 0) 0.07%, rgba(0, 0, 0, 0.95) 86.92%);
}
.banner .bg {
  line-height: 0;
  height: 688px;
}
@media only screen and (max-width: 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}
@media only screen and (max-width: 1024px) {
  .banner .bg {
    height: 500px;
  }
}
.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: 20%;
  z-index: 1;
}
.banner .banner-wrapper h1 {
  font-size: 48px;
  line-height: 1.125;
  font-weight: 700;
  color: var(--white);
}
@media only screen and (max-width: 1024px) {
  .banner .banner-wrapper h1 {
    font-size: 40px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper h1 {
    font-size: 34px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper h1 {
    font-size: 24px;
  }
}
.banner .banner-wrapper h1 span {
  display: block;
  font-family: BonVivant;
  font-weight: normal;
  font-size: 96px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper h1 span {
    font-size: 75px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper h1 span {
    font-size: 48px;
  }
}
.banner .banner-wrapper h1 em {
  font-style: normal;
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.8em;
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper h1 em {
    font-size: 20px;
    letter-spacing: 0.5em;
  }
}
.banner .banner-wrapper h4 {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
  margin-top: 6px;
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper h4 {
    font-size: 18px;
  }
}
.banner .banner-wrapper p {
  color: var(--white);
  margin-top: 12px;
  max-width: 482px;
}
.banner .banner-wrapper .ico {
  line-height: 0;
  margin-bottom: 45px;
}
.banner .banner-wrapper .content.text-center p {
  margin-left: auto;
  margin-right: auto;
}
.banner .banner-wrapper h6 {
  color: var(--white);
}

.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.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);
}

.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 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.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(--secondary);
}
.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(--black);
}
.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;
}
@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;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  font-weight: 600;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 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: 700;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.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);
}

@media only screen and (max-width: 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}
.slider-section .upper-sec {
  position: relative;
  margin-bottom: 4.3rem;
}
@media only screen and (max-width: 1024px) {
  .slider-section .upper-sec {
    margin-bottom: 3.3rem;
  }
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec {
    margin-bottom: 2.5rem;
    padding-right: 15px;
  }
}
.slider-section .upper-sec .swiper-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}
.slider-section .upper-sec .swiper-nav .swiper-prev {
  margin-right: 14px;
}
.slider-section .upper-sec .heading {
  text-align: center;
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .common-grid {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}

.testimonial-col, .service-col {
  border-radius: 10px;
  overflow: hidden;
}

.testimonial-col figcaption {
  padding: 0 28px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media only screen and (max-width: 675px) {
  .testimonial-col figcaption {
    padding: 0 20px 30px;
  }
}
.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 p {
    font-size: 14px;
  }
}
.testimonial-col figcaption .play-btn {
  flex: 0 1 auto;
}

.service-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.service-col:hover figure img {
  transform: scale(1.05);
}
.service-col figure {
  position: relative;
}
.service-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;
}
.service-col figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.service-col figure img {
  aspect-ratio: 1.1875;
}
.service-col figcaption {
  padding: 0 30px 40px;
  text-align: center;
  color: var(--white);
}
@media only screen and (max-width: 675px) {
  .service-col figcaption {
    padding: 0 20px 30px;
  }
}
.service-col figcaption h5 {
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .service-col figcaption h5 {
    font-size: 20px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 675px) {
  .service-col figcaption h5 {
    font-size: 18px;
  }
}

.gray-bg {
  background: #EFEFEF;
}

.team-col {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.team-col:is(a):hover figure img {
  transform: scale(1.1);
}
.team-col:is(a):hover figcaption p {
  color: var(--primary);
}
.team-col figure {
  line-height: 0;
  overflow: hidden;
}
.team-col figure img {
  width: 100%;
  aspect-ratio: 1.2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.team-col figcaption {
  background: #E9E9E9;
  padding: 13px 2rem 23px;
  text-align: center;
}
.team-col figcaption p {
  font-weight: 500;
  color: var(--black);
  transition: 0.5s ease;
}
.team-col figcaption h6 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
}
.team-col figcaption span {
  color: var(--text);
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 4px;
}

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;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.0588235294), 0px 4px 6px -1px rgba(0, 0, 0, 0.1019607843);
}
header.header-fixed {
  height: var(--headerfixed);
  --bottomheader: var(--bottomheaderfixed);
  --upperheader: var(--upperheaderfixed);
  --bottomheaderpadding: 10px;
}
@media only screen and (max-width: 675px) {
  header.header-fixed {
    height: var(--headerheight);
  }
}
@media only screen and (max-width: 675px) {
  header .upper-header {
    display: none;
  }
}
header .upper-header ul {
  height: var(--upperheader);
  display: flex;
  align-items: center;
  background: var(--primary);
  padding: 0 var(--containerfluid);
  transition: 0.5s ease;
}
header .upper-header ul li {
  line-height: 0;
}
header .upper-header ul li:has(.loca-uphdr) {
  margin-left: auto;
}
header .upper-header ul li .loca-uphdr:hover path {
  stroke: var(--secondary);
}
header .upper-header ul li:not(:last-child) {
  margin-right: 45px;
}
@media only screen and (max-width: 1024px) {
  header .upper-header ul li:not(:last-child) {
    margin-right: 18px;
  }
}
header .upper-header ul li a {
  color: var(--white);
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  header .upper-header ul li a {
    font-size: 14px;
  }
}
header .upper-header ul li a:not([href="javascript:void(0);"]):hover {
  color: var(--secondary);
}
header .bottom-header {
  padding: 0 var(--containerfluid);
  display: flex;
  flex-wrap: wrap;
  height: var(--bottomheader);
  background: var(--white);
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  header .bottom-header {
    height: var(--headerheight);
  }
}
header .bottom-header .colA, header .bottom-header .colB {
  height: 100%;
}
header .bottom-header .colA {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 675px) {
  header .bottom-header .colA {
    flex: 1;
  }
}
header .bottom-header .colA ul {
  height: 100%;
  display: flex;
}
header .bottom-header .colA ul li {
  display: flex;
  align-items: center;
}
header .bottom-header .colA ul li .logo {
  height: 100%;
  padding: var(--bottomheaderpadding) 0;
}
header .bottom-header .colA ul li .logo img {
  height: 100%;
}
header .bottom-header .colA .ham-btn {
  width: 36px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 38px;
}
@media only screen and (max-width: 991px) {
  header .bottom-header .colA .ham-btn {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 675px) {
  header .bottom-header .colA .ham-btn {
    margin-right: 18px;
    width: 30px;
    height: 20px;
  }
}
header .bottom-header .colA .ham-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: 0.5s ease;
}
header .bottom-header .colA .ham-btn:hover span {
  background: var(--primary);
}
header .bottom-header .colB {
  flex: 1;
  padding-left: 2rem;
}
@media only screen and (max-width: 675px) {
  header .bottom-header .colB {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 675px) {
  header .bottom-header .colB {
    flex: 0 1 auto;
  }
}
header .bottom-header .colB > ul {
  display: flex;
  height: 100%;
  justify-content: flex-end;
}
header .bottom-header .colB > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
}
header .bottom-header .colB > ul > li:not(:last-child) {
  margin-right: 26px;
}
@media only screen and (max-width: 991px) {
  header .bottom-header .colB > ul > li:not(:last-child) {
    margin-right: 12px;
  }
}
header .bottom-header .colB > ul > li > a:not(.servc-drp) {
  display: block;
}
header .bottom-header .colB > ul > li > a:not(.btn) {
  color: var(--black);
}
header .bottom-header .colB > ul > li .btn {
  --padding: 18px;
}
@media only screen and (max-width: 991px) {
  header .bottom-header .colB > ul > li:has(.servc-drp) {
    display: none;
  }
}
@media only screen and (max-width: 675px) {
  header .bottom-header .colB > ul > li:has(.call-btn) {
    display: none;
  }
}
header .bottom-header .colB > ul > li .enquire-btn .mbl {
  display: none;
}
@media only screen and (max-width: 991px) {
  header .bottom-header .colB > ul > li .enquire-btn .mbl {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header .bottom-header .colB > ul > li .enquire-btn .desktp {
    display: none;
  }
}
header .bottom-header .colB > ul > li .servc-drp {
  font-weight: 500;
  padding: 12px 0;
  padding-right: 22px;
  border-right: 1px solid var(--black);
}
header .bottom-header .colB > ul > li.hasDropdown {
  position: relative;
}
header .bottom-header .colB > ul > li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .bottom-header .colB > ul > li.hasDropdown:hover > a {
  color: var(--primary);
}
header .bottom-header .colB > ul > li.hasDropdown:hover > a path {
  fill: var(--primary);
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 250px;
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: var(--primary);
  transform: rotate(45deg);
  z-index: -1;
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu ul {
  background: var(--white);
  padding: 16px 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  text-align: left;
  border-top-left-radius: 0;
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-bottom: 2px;
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu ul li a {
  font-size: 14px;
  display: block;
  color: var(--black);
  padding: 5px 20px;
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu ul li a:hover {
  background: #f5f5f5;
  color: var(--primary);
}
header .bottom-header .colB > ul > li.hasDropdown .dropdown-menu ul li a span {
  display: block;
  width: 24px;
  line-height: 0;
}

footer {
  background: var(--secondary);
}
footer .upper-footer {
  padding: 25px 0;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer {
    padding: 15px 0;
  }
}
footer .upper-footer .flex {
  align-items: center;
}
footer .upper-footer .flex .colA {
  flex: 1;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  line-height: 0;
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .flex .colA {
    padding-right: 0;
    flex: 0 1 100%;
    justify-content: space-between;
  }
}
footer .upper-footer .flex .colA .call-ftr {
  color: var(--white);
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colA .call-ftr {
    font-size: 16px;
  }
}
footer .upper-footer .flex .colA .call-ftr:hover {
  color: var(--primary);
}
footer .upper-footer .flex .colA .social-icons {
  margin-left: 4rem;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colA .social-icons {
    margin-left: 2rem;
  }
}
footer .upper-footer .flex .colA .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
footer .upper-footer .flex .colA .social-icons a:not(:last-child) {
  margin-right: 1rem;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .flex .colA .social-icons a:not(:last-child) {
    margin-right: 7px;
  }
}
footer .upper-footer .flex .colA .social-icons a:hover path {
  fill: var(--primary);
}
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 {
  border: 1px solid rgba(252, 253, 253, 0.2);
  border-left: none;
  border-right: none;
  padding: 38px 0;
}
footer .middle-footer .footer-wrapper {
  display: grid;
  grid-template-columns: 10% auto auto 1fr;
  grid-gap: 106px;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: 10% auto auto 35%;
    grid-gap: 40px;
  }
}
@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;
  }
}
footer .middle-footer .footer-wrapper .logo img {
  width: 100%;
}
footer .middle-footer .footer-wrapper h6 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 22px;
  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 {
  display: block;
  padding: 5px 0;
  color: var(--white);
}
footer .middle-footer .footer-wrapper ul li a:has(svg) {
  display: flex;
  gap: 15px;
}
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;
}
@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(--white);
  font-size: 14px;
}
footer .bottom-footer .flex {
  align-items: 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;
}
@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(--white);
  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-b {
  flex: 0 1 auto;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .col-df-b {
    flex: 0 1 100%;
    margin-top: 1rem;
  }
}
footer .bottom-footer .col-df-b li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
footer .bottom-footer .col-df-b li:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 12px;
  margin-right: 12px;
}
footer .bottom-footer .col-df-b li a:hover {
  color: var(--primary);
}

.ham-pop {
  left: 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: auto 30%;
  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: 40px 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(--secondary);
  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(--secondary);
  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(--secondary);
}

.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: auto 28%;
}
.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: 32px;
  color: var(--secondary);
}
.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(--secondary);
  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 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);
}/*# sourceMappingURL=header.css.map */