@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: #666666;
  --labelafter: #666666;
  --borderbefore: var(--white);
  --borderafter: #666666;
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 55px;
  --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;
  font-weight: 500;
}
.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: #333;
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  font-weight: 500;
  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: #666666;
  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: #333;
  font-size: inherit;
  font-family: inherit;
  margin-top: 5px;
  height: calc(var(--textareaheight) - 13px);
  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(--secondary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.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;
  background: var(--labelbackground);
  font-weight: 500;
}
.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;
  --iconpath: url(../../icon/location-primary.svg);
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --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: var(--paddingleftright, 0px);
  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));
  background-image: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.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);
  padding-right: calc(var(--arrow) + var(--arrowspace));
  font-weight: 500;
  text-transform: capitalize;
}
.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: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black) !important;
  font-family: "Barlow";
}
.custom-select .list li.selected {
  background: var(--black);
  color: var(--white) !important;
}
.custom-select .list li.selected:hover {
  background: var(--black);
  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: "Barlow" !important;
}
.daterangepicker option.disabled, .daterangepicker td.disabled {
  text-decoration: none !important;
}
.daterangepicker td.active {
  background-color: var(--secondary) !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: 20px;
  --headerheight: 95px;
  --headerfixed: 95px;
  --footerstrip: 38px;
  --bannerstrip: 123px;
  --filterstrip: 42px;
  --primary: #47A5AE;
  --secondary: #8b1b91;
  --primary-light: #FFF3F3;
  --cyan: #47A5AE;
  --orange: #F8961D;
  --gradient-a: linear-gradient(90deg, #04CAD3 0%, #04CAD3 100%);
  --gradient-b: linear-gradient(90deg, #CCCCCC 0%, #CCCCCC 97.5%);
  --gradient-black: linear-gradient(90deg, #000000 30%, #000000 100%);
  --gradient: linear-gradient(90deg, #04CAD3 0%, #04CAD3 100%);
  --gradient-c: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  --gradient-d: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  --gradient-btn: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #F6F4F2;
  --containerfluid: 2rem;
  --container: 1280px;
}
@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-weight: normal;
}

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(--primary);
}

.green-color {
  color: #13bb75 !important;
}

.lh-normal {
  line-height: normal;
}

.cursor-pointer {
  cursor: pointer !important;
}

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

.social-icons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

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;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 48px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

.heading:has(h2 ~ h6) h3, .heading:has(h2 ~ h6) h2, .heading:has(h3 ~ h6) h3, .heading:has(h3 ~ h6) h2, .heading:has(h2 ~ p) h3, .heading:has(h2 ~ p) h2, .heading:has(h3 ~ p) h3, .heading:has(h3 ~ p) h2 {
  margin-bottom: 8px;
}
.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.25;
  color: var(--black);
}
.heading h3 span, .heading h2 span {
  color: var(--primary);
}
.heading h6 {
  font-size: 18px;
  line-height: 1.34;
  font-weight: 500;
}
.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
}
.heading.lh-1 h3, .heading.lh-1 h2 {
  line-height: 1;
}
.heading.h-medium h2, .heading.h-medium h3 {
  font-size: 36px;
}

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: 18px;
}

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

.justify-between {
  justify-content: space-between;
}

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

img {
  max-width: 100%;
}

input, button, select {
  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;
  filter: grayscale(1);
}

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 a::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 75%);
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
}
.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 figcaption h6 {
  font-family: "Barlow";
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
.item-md figcaption .calender-time {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.item-md figcaption .calender-time img {
  padding-right: 10px;
}
.item-md figcaption .calender-time p {
  font-family: "Barlow";
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--white);
}
.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: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.btn {
  --height: 44px;
  display: inline-flex;
  vertical-align: middle;
  font-family: "Barlow";
  font-weight: 600 !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  overflow: hidden;
  font-size: 14px !important;
  line-height: 16px !important;
  color: var(--black);
  -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;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.btn::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: var(--gradient-a);
}
.btn::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: var(--gradient-b);
}
.btn::before, .btn::after {
  transition: 0.6s ease;
  z-index: -1;
}
.btn::after {
  opacity: 0;
}
.btn:not(.disabled-btn):hover::before {
  opacity: 0;
}
.btn:not(.disabled-btn):hover::after {
  opacity: 1;
}
.btn.btn-primary-border {
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn.btn-primary-border::before {
  background: var(--white);
}
.btn.btn-primary-border:not(.disabled-btn):hover {
  color: var(--white);
  border-color: transparent;
}
.btn.btn-gray-border {
  color: var(--text);
  border: 1px solid var(--text);
}
.btn.btn-gray-border::before {
  background: var(--white);
}
.btn.btn-gray-border path {
  fill: var(--text);
}
.btn.btn-gray-border:hover:not(.disabled-btn) {
  color: var(--white);
  border-color: transparent;
}
.btn.btn-gray-border:hover:not(.disabled-btn) path {
  fill: var(--white);
}
.btn.btn-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.btn.btn-wide {
  --padding: 40px;
}
.btn.btn-medium {
  --height: 36px;
  --padding: 22px;
}
.btn.btn-small {
  --height: 30px;
  font-size: 14px;
  --padding: 12px;
}
.btn.w-100 {
  width: 100%;
}
.btn.box {
  --padding: 0px;
  width: var(--height);
}
.btn.btn-btn {
  border-radius: 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%;
  position: relative;
  z-index: 1000 !important;
}
.model .close {
  cursor: pointer;
}
.model .close:not(.btn, .close-video, .not-ab) {
  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, .not-ab) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video, .not-ab) 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;
  width: 100% !important;
  align-items: center;
  justify-content: flex-end;
  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);
}

.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: none;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.no-background:hover path, .swiper-next.no-background:hover path {
  fill: none;
}
.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(--black);
  border-color: 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: block !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);
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --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);
}
.play-btn.play-btn2 {
  --btnsize: 52px;
  --offset: 8px;
  --background: var(--white);
  background: var(--black);
  --playbtncolor: var(--white);
  border: none;
  outline: 1px solid var(--background);
  outline-offset: var(--offset);
}
@media only screen and (max-width: 991px) {
  .play-btn.play-btn2 {
    --btnsize: 62px;
    --offset: 4px;
  }
}
@media only screen and (max-width: 991px) {
  .play-btn.play-btn2 {
    --btnsize: 32px;
    --offset: 4px;
  }
}
.play-btn.play-btn3 {
  --btnsize: 52px;
  --offset: 8px;
  --background: var(--white);
  background: var(--white);
  --playbtncolor: #87CFE9;
  border: none;
  outline: 1px solid var(--background);
  outline-offset: var(--offset);
}
@media only screen and (max-width: 991px) {
  .play-btn.play-btn3 {
    --btnsize: 62px;
    --offset: 4px;
  }
}

.website-content {
  font-family: "Barlow";
}
.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-weight: 400;
}
@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;
    font-weight: bold;
  }
}
.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;
  line-height: 1.3;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  line-height: 1.3;
  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;
}

.banner {
  position: relative;
}
@media only screen and (max-width: 540px) {
  .banner .bg {
    height: 330px;
  }
}
.banner .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner:not(.banner-banner) {
  position: relative;
}
.banner:not(.banner-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:not(.banner-banner)::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0.5%, rgba(0, 0, 0, 0) 55.5%, rgba(0, 0, 0, 0.95) 99.61%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}
.banner.center-banner .banner-wrapper {
  bottom: 45%;
  translate: 0 50%;
}
@media only screen and (max-width: 675px) {
  .banner.center-banner .banner-wrapper {
    bottom: 20%;
    translate: none;
    top: auto;
  }
}
.banner.banner-banner {
  background: var(--primary-light);
  padding-top: var(--headerheight);
}
.banner .bg {
  line-height: 0;
}
.banner .bg-project-detail::before {
  width: 100%;
  height: 100%;
  z-index: 1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0.5%, rgba(0, 0, 0, 0) 55.5%, rgba(0, 0, 0, 0.95) 99.61%), linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.banner .bg-project-detail video, .banner .bg-project-detail 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: 3;
}
.banner .content.ttl-m h1 {
  font-size: 36px;
}
.banner .content.f-semibold h1 {
  font-weight: 600;
}
.banner .content h1 {
  font-size: 48px;
  line-height: 1.146;
  color: var(--white);
}
.banner .content h6 {
  font-size: 18px;
  line-height: 1.34;
  color: var(--text);
  margin-top: 12px;
  font-weight: 500;
}
.banner .content h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-color: var(--primary);
}

.btn-div-wrap > *:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap > *:not(:last-child) {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.event-col {
  border: 1px solid var(--primary);
  border-radius: 15px;
  overflow: hidden;
}
.event-col:has(input) {
  position: relative;
}
.event-col:has(input:checked) figure .xuq-chk, .event-col:has(input:checked) .figure .xuq-chk {
  background: var(--primary);
}
.event-col:has(input:checked) figure .xuq-chk::before, .event-col:has(input:checked) .figure .xuq-chk::before {
  opacity: 1;
}
.event-col.border-gray-col {
  border-color: rgba(102, 102, 102, 0.5019607843);
}
.event-col:is(a) figure {
  overflow: hidden;
}
.event-col:is(a) figure img {
  transition: 0.5s ease;
}
.event-col:is(a) figcaption h6 {
  transition: 0.5s ease;
}
.event-col:is(a):hover figure img {
  transform: scale(1.05);
}
.event-col:is(a):hover figcaption h6 {
  color: var(--primary);
}
.event-col figure, .event-col .figure {
  line-height: 0;
}
.event-col figure img, .event-col .figure img {
  width: 100%;
  aspect-ratio: 1.49;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-col figure:has(.xuq-chk), .event-col .figure:has(.xuq-chk) {
  position: relative;
}
.event-col figure .xuq-chk, .event-col .figure .xuq-chk {
  --sizechk: 25px;
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  height: var(--sizechk);
  width: var(--sizechk);
  border-radius: 5px;
  background-color: var(--white);
  overflow: hidden;
  transition: 0.5s ease;
}
.event-col figure .xuq-chk::before, .event-col .figure .xuq-chk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-size: 50% auto;
  background-position: 50% 50%;
  opacity: 0;
  transition: 0.5s ease;
}
.event-col figcaption {
  padding: 25px;
  text-align: center;
}
.event-col figcaption h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.event-col figcaption p {
  color: var(--text);
}
.event-col input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.event-col.awac-col {
  border-radius: 10px;
}
.event-col.awac-col figcaption h6 {
  font-size: 16px;
  line-height: 1.3;
}
.event-col.awac-col figcaption p {
  font-size: 14px;
  line-height: 21px;
}

.vec-bg {
  --size: 171px;
  position: relative;
}
.vec-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  background: var(--primary);
  filter: blur(105px);
  opacity: 0.6;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.plan-even-form {
  background: #FFEAEA;
  --padtop: 85px;
  --paddingbottom: 105px;
  padding: var(--padtop) 0 var(--paddingbottom);
}
.plan-even-form .flex {
  gap: 100px;
}
.plan-even-form .flex .colA {
  flex: 1;
  position: sticky;
  top: calc(var(--headerfixed) + var(--padtop, 0px));
  height: 100%;
}
.plan-even-form .flex .colA::before {
  z-index: 0;
  left: 80%;
}
.plan-even-form .flex .colA figure {
  line-height: 0;
}
.plan-even-form .flex .colA figure img {
  width: 100%;
}
.plan-even-form .flex .colB {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  --padcolBlr: 15px;
}
.plan-even-form .flex .colB .heading {
  margin-bottom: 42px;
  padding: 0 var(--padcolBlr);
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .heading {
    margin-bottom: 30px;
  }
}
.plan-even-form .flex .colB .form-c {
  --padlr: var(--padcolBlr ,15px);
  --padt: 15px;
  --padb: 30px;
}
.plan-even-form .flex .colB .form-c .col-md:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .form-c .col-md:not(:last-child) {
    margin-bottom: 5px;
  }
}
.plan-even-form .flex .colB .form-c .col-md h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 var(--padlr);
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .form-c .col-md h6 {
    font-size: 14px;
  }
}
.plan-even-form .flex .colB .form-c .col-md .swiper {
  max-width: 100%;
  padding: var(--padt) var(--padlr) var(--padb);
}
.plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-prev, .plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-next {
  position: absolute;
  top: 34%;
  z-index: 2;
}
.plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-prev svg, .plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-next svg {
  width: 14px;
  height: auto;
}
.plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-prev {
  right: 100%;
}
.plan-even-form .flex .colB .form-c .col-md .swiper-nav .swiper-next {
  left: 100%;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input {
  border: 1px solid rgba(102, 102, 102, 0.5019607843);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease;
  padding: 16px;
  text-align: center;
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .form-c .col-md .radio-div .type-input {
    padding: 10px 15px;
  }
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input:has(input:checked) {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input:has(input:checked) span {
  --background: var(--primary);
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input:has(input:checked) span::before {
  transform: scale(1);
  opacity: 1;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input:has(input:checked) p {
  color: var(--primary);
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input:has(input:checked) .ico img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(96%) saturate(2014%) hue-rotate(280deg) brightness(102%) contrast(108%);
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .type-input input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  z-index: 2;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div span {
  display: block;
  text-align: center;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  --background: #666666B2;
  border: 2px solid var(--background);
  position: relative;
  transition: 0.3s ease;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div span::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: var(--background);
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .form-c .col-md .radio-div span {
    height: 20px;
    width: 20px;
  }
}
.plan-even-form .flex .colB .form-c .col-md .radio-div span::before {
  bottom: auto;
  right: auto;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  transform: scale(0.7);
  opacity: 0;
  transition: 0.2s ease-out;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div p {
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: 0.5s ease;
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .ico {
  width: 45px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1366px) {
  .plan-even-form .flex .colB .form-c .col-md .radio-div .ico {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
}
.plan-even-form .flex .colB .form-c .col-md .radio-div .ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.1s ease;
}
.plan-even-form .flex .colB .form-c .col-md .form {
  --item: 2;
  --gaptb: 25px;
  --gaplr: 38px;
  margin-top: 0rem;
  padding: 0 var(--padlr);
}
.plan-even-form .flex .colB .form-c .col-md .form .btn-grp {
  margin-top: 30px;
}

.has-kids-dropdown {
  position: relative;
}
.has-kids-dropdown .kids-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 2;
}
.has-kids-dropdown .kids-dropdown ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px 18px;
  padding: 20px 15px 10px;
}
.has-kids-dropdown .kids-dropdown ul li:not(:last-child) {
  margin-bottom: 5px;
}
.has-kids-dropdown .kids-dropdown ul li p {
  line-height: 1;
  font-size: 11px;
  color: #959595;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.has-kids-dropdown .kids-dropdown ul li input {
  --inputsize: 30px;
  text-align: center;
  font-size: 14px;
  border-radius: 5px !important;
  overflow: hidden;
  font-weight: 500;
  border: 1px solid #d8d8d8;
}
.has-kids-dropdown .kids-dropdown .ttl-kids {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f5f5f5;
  padding: 10px 15px;
}
.has-kids-dropdown .kids-dropdown .ttl-kids p {
  flex: 1;
  line-height: 1;
  font-size: 14px;
  color: var(--text);
  padding-right: 10px;
}
.has-kids-dropdown .kids-dropdown .ttl-kids p span {
  color: var(--black);
  font-weight: 500;
}
.has-kids-dropdown .kids-dropdown .ttl-kids .btn {
  flex: 0 1 auto;
  --height: 30px;
  font-size: 12px;
  --padding: 14px;
}

.product-col .dtl-prt {
  border: 1px solid rgba(102, 102, 102, 0.5019607843);
  border-radius: 5px;
  padding: 12px;
  position: relative;
  --icort: 25px;
}
.product-col .dtl-prt::before {
  content: "";
  position: absolute;
  height: var(--icort);
  width: var(--icort);
  border-radius: 50%;
  background: var(--primary) url(../../icon/close-ico.svg) no-repeat;
  background-size: 35%;
  background-position: 50% 50%;
  left: calc(100% - var(--icort) * 0.5);
  bottom: calc(100% - var(--icort) * 0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: 0.1s ease-out;
}
.product-col .dtl-prt:has(input:checked) {
  border-color: var(--primary);
}
.product-col .dtl-prt:has(input:checked)::before {
  opacity: 1;
  transform: scale(1);
}
.product-col .dtl-prt .pr-img {
  line-height: 0;
  margin-bottom: 10px;
}
.product-col .dtl-prt .pr-img img {
  height: 60px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-col .dtl-prt .name, .product-col .dtl-prt .prc {
  color: var(--text);
}
.product-col .dtl-prt .name {
  font-size: 12px;
  font-weight: 500;
}
.product-col .dtl-prt .prc {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-top: 3px;
}
.product-col .dtl-prt input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.product-col .val-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.product-col .val-wrap .count-val {
  font-size: 14px;
  width: 50px;
  border: 0;
  background: none;
  text-align: center;
  color: var(--text);
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  .product-col .val-wrap .count-val {
    font-size: 20px;
  }
}
.product-col .val-wrap .count-val:focus {
  outline: none;
}
.product-col .val-wrap .minus-val, .product-col .val-wrap .plus-val {
  --size: 26px;
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--text);
  background: none;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  line-height: var(--size);
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
}
.product-col .val-wrap .minus-val.disabled, .product-col .val-wrap .plus-val.disabled {
  opacity: 0.4;
  cursor: no-drop;
}

.nt-fnd-wrp {
  text-align: center;
}
.nt-fnd-wrp .ico {
  max-width: 150px;
}
.nt-fnd-wrp p {
  font-size: 20px;
  font-weight: 600;
}

.ham-btn {
  width: 39px;
  height: 22px;
  --border: 2px;
  --background: var(--black);
  border: var(--border) solid var(--background);
  border-left: none;
  border-right: none;
  transition: 0.5s ease;
  position: relative;
}
.ham-btn::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: var(--background);
}
.ham-btn::before {
  height: var(--border);
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
  transition: 0.5s ease;
}
.ham-btn:hover {
  --background: var(--primary);
}

.tfisn-col:not(:last-child) {
  margin-bottom: 40px;
}
.tfisn-col .rvccf {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 20px;
}
.tfisn-col .product-grid-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 22px;
}

.blog-col {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
}
.blog-col .figure {
  line-height: 0;
  display: block;
  overflow: hidden;
}
.blog-col .figure img {
  width: 100%;
  aspect-ratio: 1.32;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
.blog-col .figure:is(a):hover img {
  transform: scale(1.05);
}
.blog-col .figcaption {
  padding: 24px 22px;
}
.blog-col .figcaption .date {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.blog-col .figcaption .ttl {
  font-size: 20px;
  line-height: 1.4;
  color: var(--text);
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-col .figcaption .ttl:is(a):hover {
  color: var(--primary);
}

.contact-form-sec {
  padding: 95px 0 120px;
}
.contact-form-sec .heading {
  margin-bottom: 48px;
}
.contact-form-sec .form {
  max-width: 592px;
  margin-left: auto;
  margin-right: auto;
  --item: 2;
  --gaplr: 35px;
  --gaptb: 35px;
}

.btn.disabled-btn {
  opacity: 0.4;
  cursor: no-drop;
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 0;
  --background: var(--white);
  --theme: #666666;
  --label: rgb(256 256 256 / .6);
  --color: #666666;
  --font: 300;
  --border: var(--blue);
  --inputsize: 42px;
  --labelbefore: var(--white);
  --labelafter: var(--white);
  --borderbefore: var(--white);
  --borderafter: var(--white);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--white);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .contact-form-group {
  border-bottom: 1px solid var(--white) !important;
}
.form .contact-form-group input {
  color: var(--white) !important;
}
.form .form-group {
  margin-bottom: 10px;
  --inputsize: 42px;
  --lrgap: 15px;
  --tbgap: 20px;
  border-bottom: 1px solid #666666;
  position: relative;
  flex: 0 1 100%;
  --selectheight: var(--inputsize);
}
.form .form-group.flex50 {
  flex: 0 1 48%;
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  color: var(--theme);
  line-height: 1;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Barlow";
  font-weight: 500;
  line-height: 24px;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: var(--inputsize);
  border: none;
  color: #666666;
  border-bottom: 1px solid var(--white);
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  font-size: inherit;
  font-family: "Barlow";
}
.form .form-group .select.valid {
  border-color: var(--black);
  font-family: "Barlow";
  font-weight: 500;
  line-height: 24px;
}
.form .form-group .select:focus, .form .form-group .select.valid {
  outline: none;
  color: var(--white);
}
.form .form-group .select:focus ~ label, .form .form-group .select.valid ~ label {
  top: 0;
  font-size: 16px;
  color: var(--white);
  font-family: "Barlow";
  font-weight: 500;
  line-height: 24px;
}
.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;
  background: var(--labelbackground);
  font-weight: 500;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group textarea {
  min-height: var(--inputsize);
  padding-top: 10px;
  line-height: 1.2;
}
.form .form-group textarea ~ label {
  background: var(--sectionbackground);
}
.form .form-group.message-bx textarea {
  min-height: 86px;
  height: 100%;
  padding-top: 15px;
}
.form .form-group.message-bx label {
  top: 12px;
  translate: 0 0;
  color: #666666;
  font-family: "Barlow";
  font-weight: 500;
  line-height: 24px;
}
.form .form-group.message-bx textarea {
  padding-right: 15px;
}
.form .form-group.message-bx textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 15px;
}
.form .form-group.message-bx textarea:focus ~ label, .form .form-group.message-bx textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  translate: 0 -50%;
}
.form .form-group.captcha-box {
  --size: 120px;
}
.form .form-group.captcha-box input {
  width: calc(100% - var(--size));
}
.form .form-group.captcha-box input:focus ~ .captcha-question, .form .form-group.captcha-box input.valid ~ .captcha-question {
  border-color: var(--brown);
}
.form .form-group.captcha-box .captcha-question {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: var(--inputsize);
  width: var(--size);
  font-weight: 600;
  border-bottom: 1px solid #666;
  text-align: center;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.common-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .common-grid-wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px 20px;
  }
}

.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);
  }
}
@media only screen and (max-width: 767px) {
  .common-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px 20px;
  }
}

.property-col figure img, .blog-col figure img {
  aspect-ratio: 0.872;
}
.property-col figure::before, .blog-col figure::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  content: "";
  z-index: 1;
  height: 100%;
}
.property-col figcaption, .blog-col figcaption {
  padding: 0 50px 22px;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .property-col figcaption, .blog-col figcaption {
    padding: 0 25px 30px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption, .blog-col figcaption {
    padding: 0 15px 30px;
  }
}
.property-col figcaption .fig-top, .blog-col figcaption .fig-top {
  padding-top: 5px;
}
.property-col figcaption h6, .blog-col figcaption h6 {
  font-size: 24px;
  line-height: 28px;
  margin-top: 15px;
  color: var(--white);
  font-family: "Barlow";
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .property-col figcaption h6, .blog-col figcaption h6 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .property-col figcaption h6, .blog-col figcaption h6 {
    font-size: 20px;
  }
}
.property-col figcaption p, .blog-col figcaption p {
  font-size: 14px;
  line-height: 18px;
  margin-top: 10px;
  color: var(--white);
  font-family: "Barlow";
  font-weight: 500;
  padding: 0;
}
.property-col:hover figure img, .blog-col:hover figure img {
  transform: scale(1.1);
}

@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.bg-black {
  background: #000000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  transition: 0.7s ease;
  background: var(--black);
}
header.header-fill, header.header-fixed, header.header-block {
  height: 87px;
}
header.header-fill::before, header.header-fixed::before, header.header-block::before {
  height: 100%;
}
header::after {
  height: 0;
  transition: 0.5s ease;
  z-index: -2;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  transition: 0.7s ease;
}
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: 81px;
  transition: 0.5s ease;
}
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);
  line-height: 1;
  font-family: "Barlow";
  font-weight: 600;
}
header .header-wrapper .colB ul li:not(:last-child) {
  margin-right: 2.2rem;
}

header.header-fill {
  background: #FFF0F0;
}
header.header-fit, header.header-fixed, header.header-block {
  --headerpadding: 10px;
}
@media only screen and (max-width: 675px) {
  header.header-fit, header.header-fixed, header.header-block {
    --headerpadding: 12px;
  }
}
header.header-fixed::after {
  height: 100%;
}

.footer-sec {
  background-image: url("../../images/footer.jpg");
  padding-top: 60px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .footer-sec {
    padding-bottom: 80px;
  }
}
.footer-sec .footer-1 {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-sec li {
  flex: 1 1 auto;
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .footer-sec li {
    padding-bottom: 20px;
  }
}
.footer-sec .phone-content {
  color: var(--white);
  font-size: 16px;
  font-weight: 14px;
  font-weight: 700;
  font-family: "Barlow";
  display: flex;
  align-items: center;
}
.footer-sec .phone-content a {
  color: var(--white);
}
.footer-sec .phone-content a img {
  padding-right: 20px;
}
.footer-sec .logo {
  text-align: center;
  width: 20%;
  padding: 0;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .footer-sec .logo {
    width: 100%;
  }
}
.footer-sec .logo img {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .footer-sec .logo {
    order: -1;
  }
}
.footer-sec .social-media-content {
  flex: 1 1 auto;
  text-align: right;
}
.footer-sec .social-media-content .social-media {
  display: flex;
  justify-content: end;
}
.footer-sec .social-media-content .social-media .social-media-icon {
  width: 200px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-sec .social-media-content .social-media .social-media-icon {
    padding-top: 25px;
  }
}
.footer-sec .compnay-related-content {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .footer-sec .compnay-related-content {
    padding-top: 24px;
  }
}
.footer-sec .compnay-related-content .compnay-content {
  width: 600px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-sec .compnay-related-content .compnay-content {
    flex-direction: column;
    align-items: center;
  }
}
.footer-sec .compnay-related-content .compnay-content li a span {
  color: var(--white);
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Barlow";
}
.footer-sec .compnay-related-content .compnay-content li a span:hover {
  color: #47A5AE;
}
.footer-sec .footer-3 {
  display: flex;
  justify-content: center;
}
.footer-sec .footer-3 .footer-content .made-txt {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .footer-sec .footer-3 .footer-content .made-txt {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  .footer-sec .footer-3 .footer-content .made-txt {
    flex-direction: column;
    align-items: center;
  }
}
.footer-sec .footer-3 .footer-content .made-txt p {
  padding-right: 20px;
  padding-bottom: 20px;
}
.footer-sec .footer-3 p {
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
  font-family: "Barlow";
  text-align: center;
}
.footer-sec .footer-3 .term-privacy {
  color: var(--white);
}

.ham-pop {
  right: 0;
  max-width: 439px;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  background-size: 60% auto, 100% 100%;
  background-position: 80% 100%, 0 0;
  z-index: 10001;
}
@media only screen and (max-width: 768px) {
  .ham-pop {
    width: 100%;
    max-width: 100%;
  }
}
.ham-pop.is-open {
  z-index: 1000;
  transform: translateX(0%);
  display: block;
}
.ham-pop.is-open .close {
  display: block !important;
}
.ham-pop .close {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  z-index: 100000;
}
.ham-pop .model-body {
  position: relative;
  z-index: 10001;
  padding: 22px 40px 30px;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body .ico {
  max-width: 75px;
  width: 100%;
  margin-bottom: 22px;
  line-height: 0;
}
.ham-pop .model-body .ico img, .ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.ham-pop .model-body .nav-list {
  border-bottom: 1px solid #34B6BC;
  padding-bottom: 40px;
}
.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 12px;
}
.ham-pop .model-body .nav-list > li > a {
  font-size: 36px;
  font-family: "Barlow";
  display: inline-block;
  line-height: 48px;
  color: var(--black);
  text-transform: uppercase;
  transition: 0.5s ease;
  width: 100%;
  color: var(--black);
  font-weight: 600;
}
.ham-pop .model-body .nav-list > li > a:hover {
  color: #34B6BC;
  margin-left: 10px;
}
.ham-pop .model-body .company-info-list {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  padding-bottom: 73px;
}
.ham-pop .model-body .company-info-list li {
  font-family: "Barlow";
  font-size: 16px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 25px;
  transition: 0.5s ease;
}
.ham-pop .model-body .company-info-list li a {
  color: #666666;
  display: inline-block;
  line-height: 16px;
  font-family: "Barlow";
  width: 100%;
}
.ham-pop .model-body .company-info-list li a:hover {
  color: #34B6BC;
  cursor: pointer;
  margin-left: 10px;
}
.ham-pop .model-body .social-icon-list {
  display: flex;
  gap: 10px;
}
.ham-pop .model-body .social-icon-list li {
  padding-right: 20px;
}
.ham-pop .model-body .social-icon-list li a {
  transition: 0.5s ease;
  font-family: "Barlow";
  color: #666666;
  transition: 0.9s ease;
}
.ham-pop .model-body .social-icon-list li a svg {
  transition: 0.9s ease;
}
.ham-pop .model-body .social-icon-list li a svg:hover {
  color: #34B6BC;
  margin-top: -4px;
}

.enquire-pop {
  max-width: 438px;
  transform: translateX(100%);
  right: 0;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.7s ease;
  position: fixed;
}
@media only screen and (max-width: 768px) {
  .enquire-pop {
    width: 293px !important;
  }
}
.enquire-pop::before {
  z-index: 2;
}
.enquire-pop.is-open {
  transform: translateX(0%);
  z-index: 1000 !important;
}
.enquire-pop.is-open .close {
  display: block !important;
}
.enquire-pop .close {
  position: absolute;
  top: 6px;
  right: 15px;
}
.enquire-pop .close path {
  stroke: var(--black);
}
.enquire-pop .model-body {
  padding: 10px 42px 20px;
  height: 100%;
  z-index: 10001;
}
.enquire-pop .model-body .title-content {
  display: flex;
  justify-content: center;
}
.enquire-pop .model-body .title-content .title {
  margin-bottom: 35px;
  max-width: 364px;
}
.enquire-pop .model-body .title-content .title h2 {
  text-align: center;
  font-family: "Barlow";
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
  color: var(--black);
  font-weight: 600;
  padding: 20px 0 10px 0;
}
.enquire-pop .model-body .title-content .title p {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  line-height: 20.24px;
  margin-top: 10px;
  font-weight: 450;
  color: #666666;
  font-family: "Barlow";
}
.enquire-pop .model-body form {
  gap: 10px 0;
}
.enquire-pop .submit-btn-content {
  text-align: center;
  width: 100%;
}
.enquire-pop .submit-btn-content .sbmit-btn {
  display: inline-block;
  color: var(--white);
  background: #34B6BC;
  border-radius: 50px;
  width: 148px;
  height: 44px;
  margin-top: 30px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.5s ease;
}
.enquire-pop .submit-btn-content .sbmit-btn:hover {
  color: var(--white);
  background-color: #666666;
}

.model.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;
}
.model.video-pop.is-open {
  transform: translateY(0%);
}
.model.video-pop .close {
  display: block !important;
  background: var(--black);
}
.model.video-pop .close:not(.btn) {
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .model.video-pop .close:not(.btn) {
    right: 0;
  }
}
.model.video-pop .close:not(.btn) svg {
  height: 35%;
  width: 35%;
}
.model.video-pop .close:not(.btn) path {
  stroke-width: 2;
  stroke: var(--white);
}
.model.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) {
  .model.video-pop .model-body {
    max-width: 95%;
  }
}
.model.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: #34B6BC;
  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);
  font-size: 16px;
  font-weight: 500;
  font-family: "Barlow";
}/*# sourceMappingURL=header.css.map */