/* [project]/public/assets/font/font.css [app-client] (css) */
@font-face {
  font-family: "Brother 1816";
  src: url("../media/Brother1816-Bold.2f6c0f4e.woff2") format("woff2"), url("../media/Brother1816-Bold.439e3a94.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brother 1816";
  src: url("../media/Brother1816-Medium.9e4a0dae.woff2") format("woff2"), url("../media/Brother1816-Medium.1989a4f2.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brother 1816";
  src: url("../media/Brother1816-Regular.a0039399.woff2") format("woff2"), url("../media/Brother1816-Regular.07e7d4c0.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* [project]/app/(frontend)/global.css [app-client] (css) */
@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(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.has-icon input {
  --iconsize: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0px)) 50%;
  padding-right: calc(var(--paddingleftright, 0px)  + var(--iconsize, 0px)  + var(--paddingleftright, 0px));
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  font-family: inherit;
  border-radius: 0 !important;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group input.valid, .form .form-group textarea.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input[readonly], .form .form-group textarea[readonly] {
  caret-color: rgba(0, 0, 0, 0);
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 0 !important;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group .error {
  color: red;
  font-size: 12px;
  line-height: normal;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  cursor: pointer;
  max-width: 100%;
  height: var(--inputsize);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  font-family: inherit;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
}

.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}

.custom-select.has-icon:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background: none;
  background-image: var(--iconurl);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
}

.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: "";
  top: 0;
  right: var(--paddingleftright, 0);
  width: var(--arrow);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

.custom-select .current {
  text-overflow: ellipsis;
  width: 100%;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow)  + var(--arrowspace));
  display: block;
  overflow: hidden;
}

.custom-select .current.selected {
  color: var(--color);
}

.custom-select .list {
  text-align: left;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  pointer-events: none;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  max-height: 180px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}

.custom-select .list::-webkit-scrollbar {
  background: none;
  width: 4px;
  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 {
  white-space: break-spaces;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.custom-select .list li.selected, .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);
}

.css-b62m3t-container, .css-b62m3t-container input {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control {
  background: none !important;
  border: none !important;
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-t3ipsp-control {
  box-shadow: none !important;
  border: none !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow .css-19bb58m input {
  outline: none !important;
  height: 100% !important;
}

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

:root {
  --headerpadding: 35px;
  --headerheight: 93px;
  --headerfixed: 82px;
  --footerstrip: 64px;
  --primary: #400878;
  --secondary: #611ba7;
  --gradient-a: linear-gradient(270deg, #8f33ec 0%, #400878 100%);
  --gradient-b: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-c: linear-gradient(270deg, #d8d8d8 0%, #ebebeb 50%, #c5c5c5 100%);
  --gradient-d: linear-gradient(360deg, #e6e6e6 0%, #c6c6c6 100%);
  --gradient-e: linear-gradient(180deg, #e5e5e5 0%, #fff 46.5%, #f6f6f6 100%);
  --arrowsize: 15px;
  --arrow: 25px;
  --space: 11px;
  --text: #666;
  --green: green;
  --white: #fff;
  --black: #000;
  --black-light: #313131;
  --gray: #eaeaea;
  --container: 1280px;
  --containerfluid: 2rem;
}

@media only screen and (max-width: 768px) {
  :root {
    --headerfixed: 50px;
  }
}

@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}

@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  background: var(--white);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 7px;
}

body.overflow-hidden {
  margin-right: 10px;
  overflow: hidden;
}

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

* {
  font-family: "Brother 1816";
}

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

b {
  font-weight: 500;
}

p {
  color: var(--text);
}

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

.svg path {
  transition: none;
}

.svg path[stroke], .svg path[fill="none"] {
  stroke: currentColor;
}

.svg path[fill] {
  fill: currentColor;
}

.gray-bg {
  background: #eaeaea;
}

.gray-bg .heading p {
  color: rgba(0, 0, 0, .698);
}

.heading h2 {
  font-size: 48px;
  line-height: 1.2;
}

.heading p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
}

.primary-bg {
  background: var(--primary);
}

.c-primary {
  color: var(--primary);
}

.c-text {
  color: var(--text);
}

.c-red {
  color: red;
}

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

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

select {
  display: none;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

svg path {
  transition: all .5s;
}

.position-relative {
  position: relative;
}

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

  .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);
  margin: 0 auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #000;
  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: 768px) {
  h2 {
    font-size: 40px;
  }
}

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

.heading:has(h2 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}

.heading h2 {
  color: var(--black);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1230px) {
  .heading h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 1152px) {
  .heading h2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .heading h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 345px) {
  .heading h2 {
    font-size: 24px;
  }
}

.heading h2 span {
  color: var(--primary);
}

.heading h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@media only screen and (max-width: 520px) {
  .heading h6 {
    font-size: 16px;
  }
}

.heading h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.29;
}

@media only screen and (max-width: 520px) {
  .heading h5 {
    font-size: 16px;
  }

  .heading p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}

.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
  font-weight: 500;
}

.heading.lh-1 h3, .heading.lh-1 h2 {
  line-height: 1;
}

.heading.h-medium h2, .heading.h-medium h3 {
  font-size: 36px;
}

@media only screen and (max-width: 991px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 24px;
  }
}

.heading.h-small h2, .heading.h-small h3 {
  font-size: 20px;
  line-height: 25.8px;
}

.heading.c-white > :not(.btn) {
  color: var(--white);
}

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

h5 {
  font-size: 24px;
  line-height: 1.167;
}

@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

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

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

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

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

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

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

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

input {
  font-size: inherit;
  border-radius: 0;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
}

.tab-nav-content {
  position: relative;
}

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

.item-md {
  display: block;
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md:after {
  content: none;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.overlay {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .5);
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.btn {
  --height: 38px;
  --padding: 24px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 540px) {
  .btn {
    --height: 30px;
    --padding: 12px;
    font-size: 14px;
  }
}

.btn:not([class*="border-"]) {
  background: var(--primary);
  position: relative;
}

.btn:not([class*="border-"]):after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-b);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-a);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before, .btn:not([class*="border-"]):after {
  z-index: -1;
  transition: all .5s;
}

.btn:not([class*="border-"]):after, .btn:not([class*="border-"]):hover:before {
  opacity: 0;
}

.btn:not([class*="border-"]):hover:after {
  opacity: 1;
}

.btn[class*="border-"] {
  border: 1px solid;
}

.btn.solid-white {
  background: var(--white);
  color: var(--black);
}

.btn.solid-white:before, .btn.solid-white:after {
  content: "";
  display: none;
}

.btn svg path[stroke] {
  stroke: currentColor;
}

.btn svg path[fill] {
  fill: currentColor;
}

.btn.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn.btn-white:before, .btn.btn-white:after {
  display: none;
}

.btn.btn-white:hover {
  background: var(--gradient-a);
  color: var(--white);
}

.btn.border-gray {
  border-color: var(--text);
  color: var(--text);
}

.btn.border-black {
  border-color: var(--black);
  color: var(--black);
}

.btn.border-black:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}

.btn.sqr-radius {
  border-radius: 5px;
}

.btn.border-white {
  border-color: var(--white);
  color: var(--white);
  transition: all .5s;
}

.btn.border-white:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}

.btn.btn-lrg {
  --height: 48px;
}

@media only screen and (max-width: 540px) {
  .btn.btn-lrg {
    --height: 30px;
  }
}

.btn.btn-wide {
  --padding: 36px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-box {
  width: var(--height);
  --padding: 0px !important;
}

.btn.btn-btn {
  border-radius: 5px;
}

.btn2 {
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: var(--white);
  border-radius: 5px;
  margin-top: 40px;
  padding: 4px 16px;
  transition: all .5s;
  display: inline-flex;
}

.btn2:hover {
  color: var(--secondary);
  background: none;
}

.white-border {
  color: var(--white);
  border: 1px solid var(--white);
  background: none;
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.white-border:hover {
  background: var(--white);
  color: var(--black);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close {
  cursor: pointer;
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:is(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

@media only screen and (max-width: 520px) {
  .model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:is(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:is(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

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

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

  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media only screen and (max-width: 540px) {
  .swiper-nav.center-full {
    display: 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.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 {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

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

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  display: flex;
}

.swiper-prev:not(.no-background) path[stroke], .swiper-prev:not(.no-background) path[fill="none"], .swiper-next:not(.no-background) path[stroke], .swiper-next:not(.no-background) path[fill="none"] {
  stroke: currentColor;
}

.swiper-prev:not(.no-background) path[fill], .swiper-next:not(.no-background) path[fill] {
  fill: currentColor;
}

.swiper-prev:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:-moz-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-moz-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:is(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:is(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev.no-background, .swiper-next.no-background {
  background: none;
  border: none;
  width: auto;
  height: auto;
  line-height: 0;
  display: block;
}

.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}

.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}

.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.swiper-prev.secondary-border, .swiper-next.secondary-border {
  border-color: var(--secondary);
  color: var(--secondary);
  background: none;
}

.swiper-prev.secondary-border:hover:not(.swiper-button-disabled), .swiper-next.secondary-border:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  color: var(--white);
}

.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  color: var(--white);
  background: none;
}

.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
  color: var(--secondary);
}

.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--text);
  color: var(--text);
  background: none;
}

.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.swiper-prev.gray-arrow, .swiper-next.gray-arrow {
  color: #888;
}

.swiper-prev.black-arrow, .swiper-next.black-arrow {
  color: var(--black);
}

.swiper-prev.black-arrow:hover:not(.swiper-button-disabled), .swiper-next.black-arrow:hover:not(.swiper-button-disabled) {
  color: var(--secondary);
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .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: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@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 {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  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);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 48px;
  font-weight: normal;
}

@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: 500;
}

@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.21;
}

@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: 20px;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

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

@media only screen and (max-width: 520px) {
  .website-content p, .website-content li {
    font-size: 14px;
  }
}

.website-content p b, .website-content li b {
  color: var(--black);
  font-weight: 600;
}

.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 {
  padding-left: 28px;
  position: relative;
}

@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: "";
  aspect-ratio: 1;
  background: #cfcfcf;
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (max-width: 520px) {
  .website-content ul li:before {
    width: 6px;
  }
}

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

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

.mt-hdr {
  margin-top: var(--headerheight);
}

.mt-hdrfix {
  margin-top: var(--headerfixed);
}

.banner {
  z-index: 0;
  position: relative;
}

.banner:not(.banner-banner) {
  position: relative;
}

.banner:not(.banner-banner):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%), linear-gradient(rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}

.banner.common-banner {
  padding: 90px 0;
}

.banner .bg {
  height: 100vh;
  line-height: 0;
}

@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 520px;
  }
}

@media only screen and (max-width: 520px) {
  .banner .bg {
    height: 320px;
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 3;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 520px) {
  .banner .banner-wrapper {
    bottom: 18%;
  }
}

.banner .content.content-white > :not(.btn) {
  color: var(--white);
}

.banner .content.content-font2 h1 {
  color: var(--black-light);
  font-weight: 600;
  line-height: 1.25;
}

.banner .content.ttl-m h1 {
  font-size: 36px;
}

.banner .content.f-semibold h1 {
  font-weight: 600;
}

.banner .content .ico {
  margin-bottom: 30px;
  line-height: 0;
}

.banner .content .ico img {
  width: 68px;
}

.banner .content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1152px) {
  .banner .content h1 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .banner .content h1 {
    font-size: 34px;
  }
}

.banner .content h1:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content p {
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .banner .content p {
    font-size: 14px;
  }
}

.banner .content p:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h6 {
  color: var(--text);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@media only screen and (max-width: 520px) {
  .banner .content h6 {
    font-size: 14px;
  }
}

.banner .content h6:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h4 {
  font-size: 24px;
}

.banner .content h4:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h5 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.banner .content h5:has( ~ *) {
  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;
  }

  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  grid-gap: 30px 25px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 675px) {
  .common-grid-wrap {
    grid-template-columns: 100%;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

.slider-section .upper-sec .swiper-nav {
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  background: var(--white);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col .figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.news-col .figure:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.news-col .figure:hover:before {
  animation: .4s linear shine;
}

.news-col .figure img {
  aspect-ratio: 1.2;
  width: 100%;
  transition: all .5s;
}

.news-col .figcaption {
  --pdt: 18px;
  --pdlr: 24px;
  --pdb: 35px;
  --btnsize: 40px;
  --btnmargin: 27px;
  padding: var(--pdt) var(--pdlr) calc(var(--pdb)  + var(--btnmargin)  + var(--btnsize));
  flex: 1;
  position: relative;
}

.news-col .figcaption .btn-div {
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-col .figcaption .ttl {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: all .5s;
}

.news-col .figcaption .desc {
  color: rgba(0, 0, 0, .7);
  margin-bottom: 16px;
}

.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item .figure {
  line-height: 0;
  display: block;
}

.product-item .figure img {
  width: 100%;
  transition: all 1s;
}

.product-item .figcaption {
  text-align: center;
  padding-top: 30px;
}

.product-item .figcaption h4 {
  font-size: 32px;
}

.product-item .figcaption h5 {
  font-size: 24px;
}

.product-item .figcaption h4, .product-item .figcaption h5 {
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.167;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black);
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

.sec-pad {
  padding: 60px 0 70px;
}

@media only screen and (max-width: 991px) {
  .sec-pad {
    padding: 60px 0 80px;
  }
}

@media only screen and (max-width: 768px) {
  .sec-pad {
    padding: 50px 0 70px;
  }
}

@media only screen and (max-width: 540px) {
  .sec-pad {
    padding: 40px 0 50px;
  }
}

.bg-circle {
  --bgcolor: #fff;
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
  position: relative;
}

.bg-circle:before {
  top: var(--top);
  right: var(--right);
  content: "";
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3px);
  position: absolute;
}

.bg-circle .container {
  z-index: 1;
  position: relative;
}

.common-slider-1 .swiper {
  max-width: calc(100% - 45px);
}

@media only screen and (max-width: 540px) {
  .common-slider-1 .swiper {
    max-width: 100%;
  }
}

.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0 1px 3px 1px rgba(60, 64, 67, .15), 0 1px 2px rgba(60, 64, 67, .3);
}

.over-hidden {
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: .5;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.sticky {
  z-index: -1;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(99, 99, 99, .2);
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* [project]/uploads/styles/header.css [app-client] (css) */
@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(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.has-icon input {
  --iconsize: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0px)) 50%;
  padding-right: calc(var(--paddingleftright, 0px)  + var(--iconsize, 0px)  + var(--paddingleftright, 0px));
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  font-family: inherit;
  border-radius: 0 !important;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group input.valid, .form .form-group textarea.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input[readonly], .form .form-group textarea[readonly] {
  caret-color: rgba(0, 0, 0, 0);
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 0 !important;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group .error {
  color: red;
  font-size: 12px;
  line-height: normal;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  cursor: pointer;
  max-width: 100%;
  height: var(--inputsize);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  font-family: inherit;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
}

.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}

.custom-select.has-icon:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background: none;
  background-image: var(--iconurl);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
}

.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: "";
  top: 0;
  right: var(--paddingleftright, 0);
  width: var(--arrow);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

.custom-select .current {
  text-overflow: ellipsis;
  width: 100%;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow)  + var(--arrowspace));
  display: block;
  overflow: hidden;
}

.custom-select .current.selected {
  color: var(--color);
}

.custom-select .list {
  text-align: left;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  pointer-events: none;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  max-height: 180px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}

.custom-select .list::-webkit-scrollbar {
  background: none;
  width: 4px;
  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 {
  white-space: break-spaces;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.custom-select .list li.selected, .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);
}

.css-b62m3t-container, .css-b62m3t-container input {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control {
  background: none !important;
  border: none !important;
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-t3ipsp-control {
  box-shadow: none !important;
  border: none !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow {
  height: 100% !important;
}

.css-b62m3t-container .css-13cymwt-control .css-hlgwow .css-19bb58m input {
  outline: none !important;
  height: 100% !important;
}

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

:root {
  --headerpadding: 35px;
  --headerheight: 93px;
  --headerfixed: 82px;
  --footerstrip: 64px;
  --primary: #400878;
  --secondary: #611ba7;
  --gradient-a: linear-gradient(270deg, #8f33ec 0%, #400878 100%);
  --gradient-b: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-c: linear-gradient(270deg, #d8d8d8 0%, #ebebeb 50%, #c5c5c5 100%);
  --gradient-d: linear-gradient(360deg, #e6e6e6 0%, #c6c6c6 100%);
  --gradient-e: linear-gradient(180deg, #e5e5e5 0%, #fff 46.5%, #f6f6f6 100%);
  --arrowsize: 15px;
  --arrow: 25px;
  --space: 11px;
  --text: #666;
  --green: green;
  --white: #fff;
  --black: #000;
  --black-light: #313131;
  --gray: #eaeaea;
  --container: 1280px;
  --containerfluid: 2rem;
}

@media only screen and (max-width: 768px) {
  :root {
    --headerfixed: 50px;
  }
}

@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}

@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  background: var(--white);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 7px;
}

body.overflow-hidden {
  margin-right: 10px;
  overflow: hidden;
}

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

* {
  font-family: "Brother 1816";
}

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

b {
  font-weight: 500;
}

p {
  color: var(--text);
}

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

.svg path {
  transition: none;
}

.svg path[stroke], .svg path[fill="none"] {
  stroke: currentColor;
}

.svg path[fill] {
  fill: currentColor;
}

.gray-bg {
  background: #eaeaea;
}

.gray-bg .heading p {
  color: rgba(0, 0, 0, .698);
}

.heading h2 {
  font-size: 48px;
  line-height: 1.2;
}

.heading p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
}

.primary-bg {
  background: var(--primary);
}

.c-primary {
  color: var(--primary);
}

.c-text {
  color: var(--text);
}

.c-red {
  color: red;
}

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

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

select {
  display: none;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

svg path {
  transition: all .5s;
}

.position-relative {
  position: relative;
}

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

  .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);
  margin: 0 auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #000;
  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: 768px) {
  h2 {
    font-size: 40px;
  }
}

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

.heading:has(h2 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h6) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ h5) h2 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h2 ~ p) h2 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h3 {
  margin-bottom: 12px;
}

.heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}

.heading h2 {
  color: var(--black);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1230px) {
  .heading h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 1152px) {
  .heading h2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .heading h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 345px) {
  .heading h2 {
    font-size: 24px;
  }
}

.heading h2 span {
  color: var(--primary);
}

.heading h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@media only screen and (max-width: 520px) {
  .heading h6 {
    font-size: 16px;
  }
}

.heading h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.29;
}

@media only screen and (max-width: 520px) {
  .heading h5 {
    font-size: 16px;
  }

  .heading p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}

.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
  font-weight: 500;
}

.heading.lh-1 h3, .heading.lh-1 h2 {
  line-height: 1;
}

.heading.h-medium h2, .heading.h-medium h3 {
  font-size: 36px;
}

@media only screen and (max-width: 991px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 520px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 24px;
  }
}

.heading.h-small h2, .heading.h-small h3 {
  font-size: 20px;
  line-height: 25.8px;
}

.heading.c-white > :not(.btn) {
  color: var(--white);
}

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

h5 {
  font-size: 24px;
  line-height: 1.167;
}

@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

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

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

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

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

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

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

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

input {
  font-size: inherit;
  border-radius: 0;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
}

.tab-nav-content {
  position: relative;
}

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

.item-md {
  display: block;
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md:after {
  content: none;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.overlay {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .5);
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.btn {
  --height: 38px;
  --padding: 24px;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 540px) {
  .btn {
    --height: 30px;
    --padding: 12px;
    font-size: 14px;
  }
}

.btn:not([class*="border-"]) {
  background: var(--primary);
  position: relative;
}

.btn:not([class*="border-"]):after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-b);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--gradient-a);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn:not([class*="border-"]):before, .btn:not([class*="border-"]):after {
  z-index: -1;
  transition: all .5s;
}

.btn:not([class*="border-"]):after, .btn:not([class*="border-"]):hover:before {
  opacity: 0;
}

.btn:not([class*="border-"]):hover:after {
  opacity: 1;
}

.btn[class*="border-"] {
  border: 1px solid;
}

.btn.solid-white {
  background: var(--white);
  color: var(--black);
}

.btn.solid-white:before, .btn.solid-white:after {
  content: "";
  display: none;
}

.btn svg path[stroke] {
  stroke: currentColor;
}

.btn svg path[fill] {
  fill: currentColor;
}

.btn.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn.btn-white:before, .btn.btn-white:after {
  display: none;
}

.btn.btn-white:hover {
  background: var(--gradient-a);
  color: var(--white);
}

.btn.border-gray {
  border-color: var(--text);
  color: var(--text);
}

.btn.border-black {
  border-color: var(--black);
  color: var(--black);
}

.btn.border-black:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}

.btn.sqr-radius {
  border-radius: 5px;
}

.btn.border-white {
  border-color: var(--white);
  color: var(--white);
  transition: all .5s;
}

.btn.border-white:hover {
  background: var(--gradient-a);
  border-color: var(--primary);
  color: var(--white);
}

.btn.btn-lrg {
  --height: 48px;
}

@media only screen and (max-width: 540px) {
  .btn.btn-lrg {
    --height: 30px;
  }
}

.btn.btn-wide {
  --padding: 36px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-box {
  width: var(--height);
  --padding: 0px !important;
}

.btn.btn-btn {
  border-radius: 5px;
}

.btn2 {
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: var(--white);
  border-radius: 5px;
  margin-top: 40px;
  padding: 4px 16px;
  transition: all .5s;
  display: inline-flex;
}

.btn2:hover {
  color: var(--secondary);
  background: none;
}

.white-border {
  color: var(--white);
  border: 1px solid var(--white);
  background: none;
  border-radius: 5px;
  padding: 5px 15px;
  transition: all .5s;
}

.white-border:hover {
  background: var(--white);
  color: var(--black);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close {
  cursor: pointer;
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

.model .close:not(:is(.btn, .close-video, .not-ab)) {
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 25px;
}

@media only screen and (max-width: 520px) {
  .model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:-moz-any(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }

  .model .close:not(:is(.btn, .close-video, .not-ab)) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(:-webkit-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:-moz-any(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

.model .close:not(:is(.btn, .close-video, .not-ab)) path {
  stroke: var(--black);
}

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

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

  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media only screen and (max-width: 540px) {
  .swiper-nav.center-full {
    display: 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.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 {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

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

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  display: flex;
}

.swiper-prev:not(.no-background) path[stroke], .swiper-prev:not(.no-background) path[fill="none"], .swiper-next:not(.no-background) path[stroke], .swiper-next:not(.no-background) path[fill="none"] {
  stroke: currentColor;
}

.swiper-prev:not(.no-background) path[fill], .swiper-next:not(.no-background) path[fill] {
  fill: currentColor;
}

.swiper-prev:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-webkit-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:-moz-any(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:-moz-any(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev:hover:not(:is(.swiper-button-disabled, .no-background)), .swiper-next:hover:not(:is(.swiper-button-disabled, .no-background)) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.swiper-prev.no-background, .swiper-next.no-background {
  background: none;
  border: none;
  width: auto;
  height: auto;
  line-height: 0;
  display: block;
}

.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}

.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}

.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.swiper-prev.secondary-border, .swiper-next.secondary-border {
  border-color: var(--secondary);
  color: var(--secondary);
  background: none;
}

.swiper-prev.secondary-border:hover:not(.swiper-button-disabled), .swiper-next.secondary-border:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  color: var(--white);
}

.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  color: var(--white);
  background: none;
}

.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
  color: var(--secondary);
}

.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--text);
  color: var(--text);
  background: none;
}

.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.swiper-prev.gray-arrow, .swiper-next.gray-arrow {
  color: #888;
}

.swiper-prev.black-arrow, .swiper-next.black-arrow {
  color: var(--black);
}

.swiper-prev.black-arrow:hover:not(.swiper-button-disabled), .swiper-next.black-arrow:hover:not(.swiper-button-disabled) {
  color: var(--secondary);
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .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: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@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 {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  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);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 48px;
  font-weight: normal;
}

@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: 500;
}

@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.21;
}

@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: 20px;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

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

@media only screen and (max-width: 520px) {
  .website-content p, .website-content li {
    font-size: 14px;
  }
}

.website-content p b, .website-content li b {
  color: var(--black);
  font-weight: 600;
}

.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 {
  padding-left: 28px;
  position: relative;
}

@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: "";
  aspect-ratio: 1;
  background: #cfcfcf;
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (max-width: 520px) {
  .website-content ul li:before {
    width: 6px;
  }
}

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

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

.mt-hdr {
  margin-top: var(--headerheight);
}

.mt-hdrfix {
  margin-top: var(--headerfixed);
}

.banner {
  z-index: 0;
  position: relative;
}

.banner:not(.banner-banner) {
  position: relative;
}

.banner:not(.banner-banner):before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%), linear-gradient(rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, .95) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}

.banner.common-banner {
  padding: 90px 0;
}

.banner .bg {
  height: 100vh;
  line-height: 0;
}

@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 520px;
  }
}

@media only screen and (max-width: 520px) {
  .banner .bg {
    height: 320px;
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 3;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 520px) {
  .banner .banner-wrapper {
    bottom: 18%;
  }
}

.banner .content.content-white > :not(.btn) {
  color: var(--white);
}

.banner .content.content-font2 h1 {
  color: var(--black-light);
  font-weight: 600;
  line-height: 1.25;
}

.banner .content.ttl-m h1 {
  font-size: 36px;
}

.banner .content.f-semibold h1 {
  font-weight: 600;
}

.banner .content .ico {
  margin-bottom: 30px;
  line-height: 0;
}

.banner .content .ico img {
  width: 68px;
}

.banner .content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

@media only screen and (max-width: 1152px) {
  .banner .content h1 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .banner .content h1 {
    font-size: 34px;
  }
}

.banner .content h1:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content p {
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .banner .content p {
    font-size: 14px;
  }
}

.banner .content p:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h6 {
  color: var(--text);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.34;
}

@media only screen and (max-width: 520px) {
  .banner .content h6 {
    font-size: 14px;
  }
}

.banner .content h6:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h4 {
  font-size: 24px;
}

.banner .content h4:has( ~ *) {
  margin-bottom: 10px;
}

.banner .content h5 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.banner .content h5:has( ~ *) {
  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;
  }

  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  grid-gap: 30px 25px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 675px) {
  .common-grid-wrap {
    grid-template-columns: 100%;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

.slider-section .upper-sec .swiper-nav {
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  background: var(--white);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure:before {
  animation: .4s linear shine;
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .ttl {
  color: var(--primary);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .desc {
  color: var(--black);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .date {
  color: var(--text);
}

.news-col:has(.figure:-webkit-any(a):hover, .figcaption .ttl:-webkit-any(a):hover, .figcaption .read-more-btn:-webkit-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:-moz-any(a):hover, .figcaption .ttl:-moz-any(a):hover, .figcaption .read-more-btn:-moz-any(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}

.news-col .figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.news-col .figure:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.news-col .figure:hover:before {
  animation: .4s linear shine;
}

.news-col .figure img {
  aspect-ratio: 1.2;
  width: 100%;
  transition: all .5s;
}

.news-col .figcaption {
  --pdt: 18px;
  --pdlr: 24px;
  --pdb: 35px;
  --btnsize: 40px;
  --btnmargin: 27px;
  padding: var(--pdt) var(--pdlr) calc(var(--pdb)  + var(--btnmargin)  + var(--btnsize));
  flex: 1;
  position: relative;
}

.news-col .figcaption .btn-div {
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.news-col .figcaption .ttl {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: all .5s;
}

.news-col .figcaption .desc {
  color: rgba(0, 0, 0, .7);
  margin-bottom: 16px;
}

.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}

.product-item:has(.figure:-webkit-any(a):hover, .figcaption .dtl-btn:-webkit-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:-moz-any(a):hover, .figcaption .dtl-btn:-moz-any(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}

.product-item .figure {
  line-height: 0;
  display: block;
}

.product-item .figure img {
  width: 100%;
  transition: all 1s;
}

.product-item .figcaption {
  text-align: center;
  padding-top: 30px;
}

.product-item .figcaption h4 {
  font-size: 32px;
}

.product-item .figcaption h5 {
  font-size: 24px;
}

.product-item .figcaption h4, .product-item .figcaption h5 {
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.167;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black);
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

.sec-pad {
  padding: 60px 0 70px;
}

@media only screen and (max-width: 991px) {
  .sec-pad {
    padding: 60px 0 80px;
  }
}

@media only screen and (max-width: 768px) {
  .sec-pad {
    padding: 50px 0 70px;
  }
}

@media only screen and (max-width: 540px) {
  .sec-pad {
    padding: 40px 0 50px;
  }
}

.bg-circle {
  --bgcolor: #fff;
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
  position: relative;
}

.bg-circle:before {
  top: var(--top);
  right: var(--right);
  content: "";
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3px);
  position: absolute;
}

.bg-circle .container {
  z-index: 1;
  position: relative;
}

.common-slider-1 .swiper {
  max-width: calc(100% - 45px);
}

@media only screen and (max-width: 540px) {
  .common-slider-1 .swiper {
    max-width: 100%;
  }
}

.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0 1px 3px 1px rgba(60, 64, 67, .15), 0 1px 2px rgba(60, 64, 67, .3);
}

.over-hidden {
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: .5;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.sticky {
  z-index: -1;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(99, 99, 99, .2);
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

header {
  z-index: 5;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

header:before {
  content: "";
  background: var(--gradient-a);
  z-index: -1;
  height: 0;
  transition: all .7s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 5px 2px rgba(99, 99, 99, .2);
}

header.header-fixed:before, header.header-fill:before {
  height: 100%;
}

header.header-fixed .header-wrapper {
  padding: 15px 0;
}

@media only screen and (max-width: 768px) {
  header.header-fixed .header-wrapper {
    padding: 27px 0;
  }
}

@media only screen and (max-width: 540px) {
  header.header-fixed .header-wrapper {
    padding: 34px 0;
  }
}

header .header-wrapper {
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 40px;
  padding: 0;
  transition: all .7s;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  header .header-wrapper {
    gap: 40px;
  }
}

@media only screen and (max-width: 360px) {
  header .header-wrapper {
    gap: 29px;
  }
}

header .header-wrapper .colA {
  flex: 0 92px;
  transition: all .7s;
}

@media only screen and (max-width: 768px) {
  header .header-wrapper .colA {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 540px) {
  header .header-wrapper .colA {
    flex: 0 66px;
  }
}

header .header-wrapper a {
  display: block;
}

header .header-wrapper img {
  width: 100%;
  height: 100%;
}

header .ham-btn {
  --lineheight: 2px;
  flex-direction: column;
  flex: 0 auto;
  gap: 8px;
  width: 42px;
  height: 24px;
  margin-left: auto;
  line-height: 0;
  display: none;
  position: relative;
}

header .ham-btn span:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

header .ham-btn span:nth-child(2) {
  position: absolute;
  top: 10px;
  right: 0;
}

header .ham-btn span:nth-child(3) {
  width: 30px;
  position: absolute;
  top: 20px;
  left: 0;
}

header .ham-btn span {
  height: var(--lineheight);
  width: inherit;
  background: var(--white);
  display: block;
}

.colB {
  flex: 1;
}

.colB .nav-list {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .colB .nav-list {
    justify-content: right;
  }
}

.colB .nav-list .col li a {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}

.colB .nav-list .col li img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 24px;
  height: 24px;
}

.colB .nav-list .col:first-child {
  gap: 20px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .colB .nav-list .col:first-child {
    display: none;
  }
}

.colB .nav-list .col:first-child a {
  color: var(--text);
}

.colB .nav-list .col:first-child li:first-child a {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 14px;
  display: flex;
}

.colB .nav-list .col:first-child li:first-child a.active {
  color: var(--primary);
  background: #f6e7ad;
}

.colB .nav-list .col:first-child li:last-child a {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 14px;
  display: flex;
}

.colB .nav-list .col:first-child li:last-child a.active {
  background: #f6e7ad;
}

.colB .nav-list .col:last-child {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  .colB .nav-list .col:last-child {
    gap: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .colB .nav-list .col:last-child li:last-child {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .colB .nav-list .col:last-child li:first-child {
    display: none;
  }
}

.colB .nav-list .col:last-child li:first-child a {
  background: #f3ebfa;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .colB .nav-list .col:last-child li:nth-child(2) {
    display: none;
  }
}

.colB .nav-list .col:last-child li:nth-child(2) a {
  border: 1px dashed var(--primary);
  background: #f6e7ad;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  display: flex;
}

.colB .nav-list .col:last-child li:nth-child(3) button {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 5px;
  padding: 2px 16px;
  font-weight: 500;
  transition: all .5s;
}

.colB .nav-list .col:last-child li:nth-child(3) button:hover {
  background: var(--primary);
  color: var(--white);
}

@media only screen and (max-width: 540px) {
  .colB .nav-list .col:last-child li:nth-child(3) button {
    font-size: 12px;
  }
}

.colB .nav-list .col:last-child li:nth-child(3) a {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 4px 16px;
}

.colB .nav-list .col:last-child li:nth-child(3) a:hover {
  background: var(--primary);
  color: var(--white);
}

@media only screen and (max-width: 540px) {
  .colB .nav-list .col:last-child li:nth-child(3) a {
    font-size: 12px;
  }
}

.colB .nav-list .col:last-child li:nth-child(4) button {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 5px;
  padding: 2px 16px;
  font-weight: 500;
  transition: all .5s;
}

.colB .nav-list .col:last-child li:nth-child(4) button:hover {
  background: var(--primary);
  color: var(--white);
}

@media only screen and (max-width: 540px) {
  .colB .nav-list .col:last-child li:nth-child(4) button {
    font-size: 12px;
  }
}

.colB .nav-list .col:last-child li:nth-child(4) a {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 4px 16px;
}

.colB .nav-list .col:last-child li:nth-child(4) a:hover {
  background: var(--primary);
  color: var(--white);
}

.colB .nav-list .col:last-child li:nth-child(5) a {
  align-items: center;
  gap: 10px;
  display: flex !important;
}

.colB .nav-list .col:last-child li:nth-child(5) a figure {
  background: #e7b806;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.colB .nav-list .col:last-child li:nth-child(5) a figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 24px;
  height: 24px;
}

.colB .nav-list .col:last-child li:nth-child(5) a .no p:first-child {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.colB .nav-list .col:last-child li:nth-child(5) a .no p:last-child {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
}

.colB .right-menu-list {
  align-items: center;
  gap: 30px;
  display: flex;
}

.colB .right-menu-list li:first-child a {
  align-items: center;
  gap: 10px;
  font-weight: 700;
  display: flex;
}

.colB .right-menu-list li:first-child a img {
  aspect-ratio: 1;
  width: 21px;
}

.colB .right-menu-list li:first-child a p:first-child {
  text-align: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 400;
}

.colB .right-menu-list li:first-child a p:last-child {
  text-align: center;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: all .5s;
}

.colB .right-menu-list li:first-child a:hover p:last-child {
  color: var(--primary);
}

.colB .right-menu-list li:last-child a {
  border: 1px solid #fff;
  border-radius: 25px;
  width: 40px;
  height: 40px;
  padding: 10px;
}

.cl-wht-icon {
  border-left: 2px solid #fff;
  margin: 0 0 0 30px;
  display: inline-block;
}

.cl-wht-icon li {
  padding: 0 0 0 20px;
}

.cl-wht-icon li:nth-child(2) {
  padding-right: 35px;
}

.cl-wht-icon li a img {
  width: 25px;
}

@media (max-width: 520px) {
  .mobile-nav {
    padding: 90px 40px 40px;
  }
}

@media (max-width: 991px) {
  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav .close {
    display: block;
  }
}

@media (max-width: 520px) {
  .mobile-nav .close {
    right: 25px;
  }
}

@media (max-width: 991px) {
  .mobile-nav ul {
    text-align: left;
    display: block;
  }

  .mobile-nav ul li button, .mobile-nav ul li a {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: var(--gradient);
    color: var(--black);
    text-transform: uppercase;
    font-size: 42px;
  }
}

@media only screen and (max-width: 365px) {
  .mobile-nav ul li button, .mobile-nav ul li a {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .mobile-nav ul.menu-list li {
    display: block;
  }
}

@media (max-width: 1230px) {
  .mobile-nav ul.menu-list li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .mobile-nav ul.menu-list li:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media (max-width: 520px) {
  .mobile-nav ul.menu-list li:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media (max-width: 1230px) {
  .mobile-nav ul.enquire-menu {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .mobile-nav ul.enquire-menu {
    display: none;
  }
}

@media (max-width: 1230px) {
  .mobile-nav ul.enquire-menu li:not(:last-child) {
    margin-right: 15px;
  }
}

footer {
  position: relative;
}

footer:before {
  content: "";
  background: var(--primary);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 540px) {
  footer {
    margin-bottom: var(--footerstrip);
  }
}

footer .upper-footer {
  width: 100%;
  position: absolute;
  top: -10%;
  left: 0;
}

@media only screen and (max-width: 1024px) {
  footer .upper-footer {
    top: -16%;
  }
}

footer .upper-footer .grid-box {
  background: #e7b806;
  border-radius: 50px;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  height: 86px;
  padding: 0 40px;
  display: grid;
}

@media only screen and (max-width: 1024px) {
  footer .upper-footer .grid-box {
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  footer .upper-footer .grid-box {
    border-radius: 100px;
  }
}

@media only screen and (max-width: 540px) {
  footer .upper-footer .grid-box {
    border-radius: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
}

footer .upper-footer .grid-box .col {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

footer .upper-footer .grid-box .col:first-child .flex, footer .upper-footer .grid-box .col:nth-child(2) .flex {
  padding-bottom: 0;
}

footer .upper-footer .grid-box .col .flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .upper-footer .grid-box .col .flex {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    padding: 30px 0;
  }
}

footer .upper-footer .grid-box .col .flex figure {
  flex: 0 20%;
  width: 43px;
  height: 43px;
}

footer .upper-footer .grid-box .col .flex figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

footer .upper-footer .grid-box .col .flex .content {
  flex: 0 75%;
}

footer .upper-footer .grid-box .col .flex .content h4 {
  color: #000;
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

footer .upper-footer .grid-box .col .flex .content p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

footer .main-footer {
  gap: 60px;
  padding: 80px 25px 50px;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .main-footer {
    gap: 0;
    padding: 150px 25px 50px;
  }
}

@media only screen and (max-width: 991px) {
  footer .main-footer {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  footer .main-footer {
    padding: 100px 25px 50px;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer {
    padding: 200px 15px 0;
  }
}

footer .main-footer .colA {
  flex-direction: column;
  flex: 0 233px;
  gap: 40px;
  display: flex;
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colA {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 768px) {
  footer .main-footer .colA {
    flex: 0 163px;
    gap: 10px;
    margin: 0 auto 40px;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colA {
    margin: 0 auto 30px;
  }
}

footer .main-footer .colA figure {
  width: 134px;
  height: 134px;
}

@media only screen and (max-width: 768px) {
  footer .main-footer .colA figure {
    margin: auto;
  }
}

footer .main-footer .colA .social-icons {
  justify-content: start;
  align-items: center;
  gap: 8px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colA .social-icons {
    gap: 19px;
  }
}

footer .main-footer .colA .social-icons a {
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: flex;
}

footer .main-footer .colA .social-icons a:hover {
  background: #fff;
}

footer .main-footer .colA .social-icons a:hover svg path {
  fill: var(--primary);
}

footer .main-footer .colA .social-icons a svg path {
  fill: #fff;
}

footer .main-footer .colA img {
  height: -moz-fit-content;
  height: fit-content;
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colA img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
  }
}

footer .main-footer .colB {
  flex: 1;
  gap: 20px;
  padding: 0 40px;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .main-footer .colB {
    padding: 0 0 0 40px;
  }
}

@media only screen and (max-width: 991px) {
  footer .main-footer .colB {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB {
    flex-wrap: wrap;
    gap: 10px 30px;
    padding: 0;
  }
}

footer .main-footer .colB .list {
  flex: 10%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list {
    flex: 0 46%;
  }
}

footer .main-footer .colB .list h6 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

footer .main-footer .colB .list ul li {
  margin-bottom: 5px;
}

footer .main-footer .colB .list ul li a {
  color: var(--white);
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  transition: all .5s;
}

footer .main-footer .colB .list:first-child ul li {
  margin: 0 0 15px;
}

footer .main-footer .colB .list:first-child ul li a {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 18px;
}

footer .main-footer .colB .list:nth-child(2) {
  flex: 1;
}

footer .main-footer .colB .list:nth-child(2) ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

footer .main-footer .colB .list:nth-child(3) {
  flex: 0 30%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) {
    flex: 1;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

footer .main-footer .colB .list:nth-child(3) ul {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

footer .main-footer .colB .list:nth-child(3) ul li a svg path {
  fill: #fff;
}

footer .main-footer .colB .list:nth-child(3) ul li a svg:first-child {
  stroke: #fff;
}

footer .main-footer .colB .list:nth-child(3) ul li:first-child span {
  max-width: 80%;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) ul li:first-child span {
    max-width: 100%;
  }
}

footer .main-footer .colB .list:nth-child(3) ul .phone a {
  justify-content: start;
  align-items: center;
  font-size: 25px;
  font-weight: 600;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  footer .main-footer .colB .list:nth-child(3) ul .phone a {
    font-size: 18px;
  }
}

footer .main-footer .colB .list:nth-child(3) ul .bottom-btn {
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background: #e7b806;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .main-footer .colB .list:nth-child(3) ul .bottom-btn {
    padding: 10px 24px;
  }
}

footer .main-footer .colB .list:nth-child(3) a {
  gap: 10px;
  display: flex;
}

footer .main-footer .colB .list:nth-child(3) a svg {
  flex: 0 30px;
}

footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, .17);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 25px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .bottom-footer {
    flex-direction: column;
    gap: 22px;
    padding: 30px 25px 40px;
  }
}

footer .bottom-footer p, footer .bottom-footer a {
  color: #fff;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .bottom-footer p, footer .bottom-footer a {
    text-align: center;
    flex-direction: column;
    gap: 7px;
  }
}

footer .bottom-footer p .madeby, footer .bottom-footer a .madeby {
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

@media only screen and (max-width: 540px) {
  footer .bottom-footer p .none, footer .bottom-footer a .none {
    display: none;
  }
}

footer .bottom-footer p span, footer .bottom-footer a span {
  height: 23px;
  display: inline-block;
}

footer .bottom-footer p span img, footer .bottom-footer a span img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

footer .bottom-footer .pret {
  justify-content: end;
  gap: 50px;
  display: flex;
}

footer .bottom-footer .pret a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.model.ham-pop {
  z-index: 10;
  background: linear-gradient(#d7ccff 2%, #fff 89%);
  max-width: 480px;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.model.ham-pop nav {
  flex: 1;
}

.model.ham-pop:before {
  content: "";
  aspect-ratio: 1.22;
  transitionc: 1s ease-in-out;
  background: rgba(102, 102, 102, .08);
  width: 224px;
  height: 300px;
  line-height: 0;
  position: absolute;
  top: 95%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask-image: url("/assets/images/services/service-bg.png");
  mask-image: url("/assets/images/services/service-bg.png");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.model.ham-pop.is-open {
  transform: translateX(0%);
}

.model.ham-pop .close {
  top: 17px;
  right: 22px;
}

.model.ham-pop .close svg {
  width: 18px;
}

.model.ham-pop .close svg path {
  stroke: var(--black) !important;
  stroke-width: 2px !important;
}

.model.ham-pop .model-body {
  flex-direction: column;
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 40px 30px;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.model.ham-pop .model-body::-webkit-scrollbar {
  background: var(--black);
  width: 0;
  height: 0;
}

.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0;
}

@media only screen and (max-width: 540px) {
  .model.ham-pop .model-body {
    padding: 0 20px 40px;
  }
}

.model.ham-pop .model-body .icon {
  letter-spacing: 4px;
  color: #000;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 0;
  display: flex;
}

.model.ham-pop .model-body .icon img, .model.ham-pop .model-body .icon svg {
  width: 70px;
  height: auto;
}

.model.ham-pop .model-body .icon img path, .model.ham-pop .model-body .icon svg path {
  fill: #000;
}

.model.ham-pop .model-body .nav-list {
  flex: 1;
  width: 100%;
}

.model.ham-pop .model-body .nav-list .single-menulist {
  color: var(--primary);
  font-size: 30px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list .single-menulist:hover {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li {
  cursor: pointer;
}

.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}

.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown {
  position: relative;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown:hover .title h5 {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title.active img {
  transform: rotate(90deg);
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title h5 {
  color: var(--primary);
  font-size: 30px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title .arrow {
  -o-object-fit: contain;
  object-fit: contain;
  width: 15px;
  height: 15px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title svg {
  width: 16px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham.active {
  opacity: 1;
  pointer-events: auto;
  max-height: 300px;
  padding-top: 10px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul {
  max-height: 175px;
  padding: 0 10px 10px;
  overflow-y: auto;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  background: #fff;
  width: 4px;
  height: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li:first-child a {
  padding-top: 0;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a {
  color: var(--primary);
  padding: 5px 0;
  font-size: 16px;
  font-weight: 600;
  transition: all .5s;
  display: block;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a:hover {
  color: #ffa319;
}

.model.ham-pop .model-body .nav-list > li > a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.06;
  display: inline-block;
}

.model.ham-pop .model-body .nav-list > li > a:hover {
  color: #666;
}

.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1rem;
  display: flex;
}

.model.ham-pop .model-body .bottom-list .social-icons a {
  vertical-align: middle;
  color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  line-height: 0;
  display: inline-flex;
  overflow: hidden;
}

.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}

.model.ham-pop .model-body .bottom-list .social-icons a:hover img {
  opacity: .5;
  transform: scale(1.1);
}

.model.ham-pop .model-body .bottom-list .social-icons a img {
  filter: invert();
  width: 24px;
  height: 24px;
  transition: all .5s;
}

.enquire-pop {
  background: #fff;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.enquire-pop.is-open {
  transform: translateX(0%);
}

.enquire-pop .model-body {
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 35px 30px;
  overflow-y: auto;
}

.enquire-pop .model-body::-webkit-scrollbar {
  background: var(--white);
  width: 3px;
  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;
}

.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}

.enquire-pop .model-body .title .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.enquire-pop .model-body .title .icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.enquire-pop .model-body .title h2 {
  text-align: center;
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.enquire-pop .model-body .title p {
  color: var(--text);
  max-width: 340px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.2;
}

@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title p {
    max-width: 300px;
    font-size: 14px;
  }
}

.enquire-pop .model-body .form {
  --gaptb: 15px;
  --item: 1;
  --labelbefore: var(--text);
  --labelafter: #000;
  --borderbefore: var(--text);
  --borderafter: #000;
}

.enquire-pop .model-body .btn2 {
  color: var(--white);
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto auto;
  font-weight: 600;
  transition: all .5s;
}

.enquire-pop .model-body .btn2:hover {
  color: var(--secondary);
  background: none;
}

.login-pop, .signUp-pop {
  background: var(--white);
  background: var(--white);
  max-width: 511px;
  transition: all .7s;
  right: 0;
  transform: translateX(100%);
}

.login-pop.is-open, .signUp-pop.is-open {
  transform: translateX(0%);
}

.login-pop .close, .signUp-pop .close {
  top: 25px;
  right: 25px;
}

@media only screen and (max-width: 675px) {
  .login-pop .close, .signUp-pop .close {
    top: 20px;
    right: 20px;
  }
}

.login-pop .close path, .signUp-pop .close path {
  stroke: var(--black);
}

.login-pop .model-body, .signUp-pop .model-body {
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 35px 30px;
  transition: all .5s;
  overflow-y: auto;
}

@media only screen and (max-width: 675px) {
  .login-pop .model-body, .signUp-pop .model-body {
    padding: 40px 25px 50px;
  }
}

.login-pop .model-body .title, .signUp-pop .model-body .title {
  margin-bottom: 2.5rem;
}

.login-pop .model-body .title .icon, .signUp-pop .model-body .title .icon {
  width: 102px;
  height: 76px;
  margin: 0 auto 25px;
  line-height: 0;
}

.login-pop .model-body .title .icon svg path, .signUp-pop .model-body .title .icon svg path {
  fill: #000;
}

.login-pop .model-body .title .icon img, .signUp-pop .model-body .title .icon img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.login-pop .model-body .title h2, .signUp-pop .model-body .title h2 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: 500;
}

.login-pop .model-body .form, .signUp-pop .model-body .form {
  --gaptb: 15px;
  --item: 1;
  --labelbefore: var(--text);
  --labelafter: #000;
  --borderbefore: var(--text);
  --borderafter: #000;
}

.login-pop .model-body .form .verify, .signUp-pop .model-body .form .verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

.login-pop .model-body .sbmt-btn-div, .signUp-pop .model-body .sbmt-btn-div {
  text-align: center;
  margin: 40px 0 20px;
}

.login-pop .model-body .sbmt-btn-div .btn, .signUp-pop .model-body .sbmt-btn-div .btn {
  --height: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom-width: 1px;
  border-radius: 5px;
  width: 100%;
  padding: 5px 110px;
}

.login-pop .model-body .split-sec, .signUp-pop .model-body .split-sec {
  overflow: hidden;
}

.login-pop .model-body .split-sec p, .signUp-pop .model-body .split-sec p {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text);
  margin: 0 auto;
  font-weight: 500;
  position: relative;
}

.login-pop .model-body .split-sec p:before, .login-pop .model-body .split-sec p:after, .signUp-pop .model-body .split-sec p:before, .signUp-pop .model-body .split-sec p:after {
  content: "";
  background: #ececec;
  width: 200px;
  height: 1px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.login-pop .model-body .split-sec p:before, .signUp-pop .model-body .split-sec p:before {
  left: calc(100% + 12px);
}

.login-pop .model-body .split-sec p:after, .signUp-pop .model-body .split-sec p:after {
  right: calc(100% + 12px);
}

.login-pop .model-body .btm-social-wrp, .signUp-pop .model-body .btm-social-wrp {
  align-items: center;
  gap: 0 30px;
  margin: 40px 0;
  display: flex;
}

.login-pop .model-body .btm-social-wrp > *, .signUp-pop .model-body .btm-social-wrp > * {
  flex: 1;
}

.login-pop .model-body .btm-social-wrp svg, .signUp-pop .model-body .btm-social-wrp svg {
  width: auto;
}

.login-pop .model-body .btm-social-wrp .google-btn, .login-pop .model-body .btm-social-wrp .facebook-btn, .signUp-pop .model-body .btm-social-wrp .google-btn, .signUp-pop .model-body .btm-social-wrp .facebook-btn {
  opacity: 1;
  background: #fff;
  border-width: 1px;
  border-radius: 5px;
  padding: 8px 23px;
}

.login-pop .model-body .btm-social-wrp a, .signUp-pop .model-body .btm-social-wrp a {
  color: #611ba7;
  letter-spacing: 10%;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.login-pop .model-body .btm-social-wrp a:hover, .signUp-pop .model-body .btm-social-wrp a:hover {
  background: var(--primary);
  color: #fff;
}

.login-pop .model-body .btm-social-wrp a:hover svg path, .signUp-pop .model-body .btm-social-wrp a:hover svg path {
  fill: var(--white);
}

.login-pop .model-body .btm-social-wrp a svg path, .signUp-pop .model-body .btm-social-wrp a svg path {
  fill: #611ba7;
}

.login-pop .model-body .non_member, .signUp-pop .model-body .non_member {
  text-align: center;
  color: var(--text);
}

.login-pop .model-body .non_member .signup, .signUp-pop .model-body .non_member .signup {
  color: var(--black);
}

.login-pop .otp-model-body, .signUp-pop .otp-model-body {
  transition: all .5s;
}

.login-pop .otp-model-body .back-btn, .signUp-pop .otp-model-body .back-btn {
  align-items: center;
  gap: 10px;
  display: flex;
}

.login-pop .otp-model-body .back-btn:hover p, .signUp-pop .otp-model-body .back-btn:hover p {
  margin-left: 3px;
}

.login-pop .otp-model-body .back-btn p, .signUp-pop .otp-model-body .back-btn p {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: all .3s;
}

.login-pop .otp-model-body .back-btn img, .signUp-pop .otp-model-body .back-btn img {
  width: -moz-fit-content;
  width: fit-content;
}

.login-pop .otp-model-body .title, .signUp-pop .otp-model-body .title {
  text-align: center;
  padding-top: 100px;
}

.login-pop .otp-model-body .title h4, .signUp-pop .otp-model-body .title h4 {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.login-pop .otp-model-body .title p, .signUp-pop .otp-model-body .title p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.login-pop .otp-model-body .form .otp-box, .signUp-pop .otp-model-body .form .otp-box {
  justify-content: center;
  gap: 10px;
  display: flex;
}

.login-pop .otp-model-body .form .otp-box input, .signUp-pop .otp-model-body .form .otp-box input {
  text-align: center;
  color: #666;
  border: 1px solid #ccc;
  outline: none;
  width: 59px;
  height: 51px;
  padding: 10px;
  font-size: 24px;
  transition: all .2s;
  border-radius: 5px !important;
}

.login-pop .otp-model-body .form .otp-box input .otp-box input:focus, .signUp-pop .otp-model-body .form .otp-box input .otp-box input:focus {
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0, 123, 255, .4);
}

.login-pop .otp-model-body .resend-otp, .signUp-pop .otp-model-body .resend-otp {
  text-align: center;
  margin: 40px auto;
}

.login-pop .otp-model-body .resend-otp p, .signUp-pop .otp-model-body .resend-otp p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.login-pop .otp-model-body .resend-otp p a, .signUp-pop .otp-model-body .resend-otp p a {
  color: var(--secondary);
  font-weight: 500;
}

.login-pop .hide-model, .signUp-pop .hide-model {
  display: none;
}

.flight-search-dropdown {
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.flight-search-dropdown .dropdown-menu {
  background: var(--white);
  z-index: 999999;
  border-radius: 4px;
  width: 20rem;
  max-width: 20rem;
  max-height: 316px;
  transition: all .7s;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
}

.flight-search-dropdown .dropdown-menu::-webkit-scrollbar {
  background: none;
  width: 5px;
  height: 5px;
}

.flight-search-dropdown .dropdown-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.flight-search-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 2px;
}

@media only screen and (max-width: 540px) {
  .flight-search-dropdown .dropdown-menu {
    border-radius: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.flight-search-dropdown .search-input {
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  width: 100%;
  padding: 6px 16px;
  font-size: 16px;
}

.flight-search-dropdown .search-input::placeholder {
  color: #999;
}

.flight-search-dropdown .suggestions-container .section {
  border-bottom: 1px solid #eee;
}

.flight-search-dropdown .suggestions-container .section:last-child {
  border-bottom: none;
}

.flight-search-dropdown .suggestions-container .section .section-title {
  color: #666;
  text-transform: uppercase;
  margin: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .suggestion-item {
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  padding: 12px 16px;
  transition: background .2s;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .suggestion-item:hover, .flight-search-dropdown .suggestions-container .section .suggestions-list .suggestion-item:focus {
  background: #f8f9fa;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .suggestion-item:last-child {
  border-bottom: none;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .item-content .item-main {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
  display: flex;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .item-content .item-name {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .item-content .item-code {
  color: #999;
  font-size: 14px;
  font-weight: bold;
}

.flight-search-dropdown .suggestions-container .section .suggestions-list .item-content .item-subtitle {
  color: #666;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.FlightSearchdropdown-overlay {
  z-index: 999;
  background: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.flight-calendar {
  width: 100%;
}

.detail-section {
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px 0;
  display: block;
}

.detail-label {
  color: #666;
  margin-bottom: 4px;
  font-size: 12px;
}

.detail-value {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: bold;
}

.detail-value b {
  font-size: 20px;
}

.detail-text {
  color: #999;
  font-size: 12px;
}

.calendar-popup {
  z-index: 1000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 820px;
  max-width: 820px;
  position: absolute;
  top: -230%;
  left: 7%;
  right: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.calendar-header {
  color: #333;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.navigation-bar {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  display: flex;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navigation-bar .disabled {
  visibility: hidden;
}

.nav-arrow {
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 8px;
  font-size: 20px;
  line-height: 0;
  transition: background .3s;
  display: flex;
}

.nav-arrow:hover {
  background: rgba(241, 228, 255, .99);
}

.selected-dates {
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin: 0 16px;
  line-height: 1;
  display: flex;
}

.selected-dates span {
  color: #333;
}

.selected-dates p {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.months-container {
  gap: 0;
  max-height: 400px;
  padding: 0;
  display: flex;
  overflow-y: auto;
}

.month {
  border-right: 1px solid #f0f0f0;
  flex: 1;
  padding: 16px;
}

.month:last-child {
  border-right: none;
}

.month h3 {
  color: #000;
  text-align: center;
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 600;
}

.week-days {
  background: #f0f0f0;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 4px;
  display: grid;
}

.week-day {
  text-align: center;
  color: #666;
  background: #fff;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 600;
}

.days-grid {
  grid-template-columns: repeat(7, 1fr);
  display: grid;
}

.day-cell {
  cursor: pointer;
  background: #fff;
  border: 1px solid #f0f0f0;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
  position: relative;
}

.day-cell:hover {
  background: rgba(241, 228, 255, .482);
}

.day-cell.empty {
  cursor: default;
  background: none;
}

.day-content {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  position: relative;
}

.day-number {
  color: #333;
  z-index: 2;
  font-size: 14px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.day-price {
  color: #666;
  white-space: nowrap;
  z-index: 2;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.day-price.lower {
  color: green;
}

.day-cell.empty {
  border: none;
}

.day-cell.empty:hover {
  background: none;
}

.day-cell.disable {
  cursor: no-drop;
  border: none;
}

.day-cell.disable:hover {
  background: none;
}

.day-cell.disable .day-content .day-number, .day-cell.disable .day-content .day-price {
  color: #dce0e0;
}

.day-cell.in-range {
  background: #e3f2fd !important;
  border-color: #bbdefb !important;
}

.day-cell.in-range .day-number {
  color: #fff;
}

.day-cell.selected {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.day-cell.selected .day-price {
  color: var(--white);
}

.day-cell.selected .day-price.lower {
  color: green;
}

.day-cell.selected .day-number {
  color: var(--white);
}

.calendar-footer {
  text-align: left;
  color: var(--text);
  background: rgba(241, 228, 255, .99);
  border-top: 1px solid #e9ecef;
  padding: 12px 38px;
  font-size: 12px;
}

.round-trip-note {
  color: #666;
  text-align: center;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 8px 16px;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .months-container {
    flex-direction: column;
  }

  .month {
    border-bottom: 1px solid #f0f0f0;
    border-right: none;
  }

  .month:last-child {
    border-bottom: none;
  }

  .day-number {
    font-size: 12px;
  }

  .day-price {
    padding: 1px 2px;
    font-size: 9px;
  }
}

.Calendardropdown-overlay {
  z-index: 999;
  background: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.travellers-wrapper {
  position: relative;
}

.travellers-wrapper .travellers-dropdown {
  z-index: 100;
  background: #fff;
  border-radius: 10px;
  width: 680px;
  padding: 30px 20px;
  position: absolute;
  top: -200px;
  left: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.travellers-wrapper .travellers-dropdown .travellers-group {
  margin-bottom: 16px;
}

.travellers-wrapper .travellers-dropdown .travellers-group .number-row {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.travellers-wrapper .travellers-dropdown .travellers-group .number-row .num-btn {
  cursor: pointer;
  color: #333;
  background: #f2f4f6;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 32px;
  font-size: 14px;
  transition: all .2s;
}

.travellers-wrapper .travellers-dropdown .travellers-group .number-row .num-btn.active {
  background: var(--secondary);
  color: #fff;
}

.travellers-wrapper .travellers-dropdown .group-label {
  color: #333;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.travellers-wrapper .travellers-dropdown .group-label span {
  color: #666;
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
}

.travellers-wrapper .travellers-dropdown .class-section {
  margin-top: 12px;
}

.travellers-wrapper .travellers-dropdown .class-section .class-buttons {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.travellers-wrapper .travellers-dropdown .class-section .class-btn {
  cursor: pointer;
  background: #f2f4f6;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  transition: all .2s;
}

.travellers-wrapper .travellers-dropdown .class-section .class-btn.active {
  background: var(--secondary);
  color: #fff;
}

.travellers-wrapper .travellers-dropdown .apply-btn {
  float: right;
  margin-top: 16px;
  padding: 5px 30px;
  font-size: 14px;
  font-weight: 600;
}

.video-pop {
  z-index: 9;
  background: rgba(0, 0, 0, .48);
  max-width: 100%;
  transition: all .5s;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.video-pop.is-open {
  transform: translateY(0%);
}

.video-pop .close-video {
  background: var(--secondary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .5s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: calc(100% + 20px);
  right: -40px;
}

@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}

.video-pop .close-video:hover {
  background: var(--primary);
}

.video-pop .close-video svg {
  width: 35%;
  height: 35%;
}

.video-pop .close-video path {
  stroke-width: 2px;
  stroke: var(--white);
}

.video-pop .model-body {
  width: 100%;
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}

.video-pop .model-body iframe {
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
  width: 100%;
}

.footer-strip {
  z-index: 4;
  background: var(--gradient-a);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .footer-strip {
    display: block;
  }
}

.footer-strip ul {
  flex-wrap: wrap;
  display: flex;
}

.footer-strip ul li {
  flex: 1;
}

.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer-strip ul li button {
  width: 100%;
}

.footer-strip ul li a, .footer-strip ul li button {
  color: var(--white);
  height: var(--footerstrip);
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
  font-size: 14px;
  display: flex;
}

.footer-strip ul li a svg, .footer-strip ul li button svg {
  width: 20px;
  height: 20px;
}

.footer-strip ul li a svg[stroke], .footer-strip ul li button svg[stroke] {
  stroke: var(--white);
}

.footer-strip ul li a svg[fill], .footer-strip ul li button svg[fill] {
  fill: var(--white);
}

.footer-strip ul li a svg path[stroke], .footer-strip ul li button svg path[stroke] {
  stroke: var(--white);
}

.footer-strip ul li a svg path[fill], .footer-strip ul li button svg path[fill] {
  fill: var(--white);
}

/* [project]/uploads/styles/components/component.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.item.projectCard {
  cursor: pointer;
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  overflow: hidden;
}

.item.projectCard:hover figcaption {
  transform: translateY(0);
}

.item.projectCard:hover figure img {
  transform: scale(1.2);
}

.item.projectCard:before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
}

.item.projectCard figure img {
  transition: all .5s;
}

.item.projectCard figcaption {
  background-color: var(--white);
  width: 90%;
  right: 0;
  left: unset;
  border-radius: 15px 0 0;
  padding: 25px;
  transition: all .5s;
  transform: translateY(60%);
}

.item.projectCard figcaption h6 {
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .item.projectCard figcaption h6 {
    font-size: 16px;
  }
}

.item.projectCard figcaption p {
  color: var(--black);
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.item.projectCard .sector {
  z-index: 1;
  align-items: center;
  gap: 15px;
  display: flex;
  position: absolute;
  top: 5%;
  left: 10%;
}

.item.projectCard .sector img {
  width: 35px;
}

.item.projectCard .sector h6 {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
}

.blogCard {
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
}

.blogCard:before {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
}

.blogCard:hover figure img {
  transform: scale(1.2);
}

.blogCard figcaption {
  padding: 0 20px 30px;
}

.blogCard figcaption h6 {
  color: var(--white);
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.2;
}

.blogCard figcaption p {
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .blogCard figcaption p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 540px) {
  .blogCard figcaption p {
    font-size: 16px;
  }
}

.no-record-container {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-record-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.no-record-container .not-found img {
  filter: hue-rotate(337deg);
  width: 120px;
}

.no-record-container .not-found h3 {
  color: var(--black);
}

.no-record-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: hue-rotate(337deg);
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.global-container {
  text-align: center;
  max-width: 100%;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .global-container {
    margin-top: 50px;
  }
}

.global-container .map-image {
  -o-object-fit: none;
  object-fit: none;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .global-container .map-image {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.global-container .pointer {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: 2s .2s infinite forwards blink;
  position: absolute;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .global-container .pointer {
    width: 8px;
    height: 8px;
  }
}

.global-container .pointer:hover span {
  opacity: 1;
}

.global-container .pointer:before {
  content: "";
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 21px;
  height: 20px;
  padding: 15px;
  position: absolute;
  bottom: -11px;
  left: -12px;
}

@media only screen and (max-width: 768px) {
  .global-container .pointer:before {
    width: 10px;
    height: 10px;
    padding: 10px;
    bottom: -9px;
    left: -9px;
  }
}

.global-container .pointer.point1 {
  top: 40%;
  right: 32%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point1 {
    top: 35%;
    right: 19%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point1 {
    right: 26%;
  }
}

.global-container .pointer.point2 {
  top: 27%;
  right: 22%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point2 {
    top: 10%;
    right: 8%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point2 {
    top: 18%;
    right: 14%;
  }
}

.global-container .pointer.point3 {
  top: 22%;
  right: 40%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point3 {
    top: 6%;
    right: 26%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point3 {
    top: 10%;
    right: 37%;
  }
}

.global-container .pointer.point4 {
  top: 40%;
  right: 45%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point4 {
    top: 31px;
    right: 38%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point4 {
    top: 36%;
    right: 44%;
  }
}

.global-container .pointer.point5 {
  top: 60%;
  right: 42%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point5 {
    top: 60%;
    right: 39%;
  }
}

.global-container .pointer.point6 {
  bottom: 36%;
  left: 35%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point6 {
    bottom: 29%;
    left: 21%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point6 {
    left: 29%;
  }
}

.global-container .pointer.point7 {
  top: 34%;
  left: 28%;
}

@media only screen and (max-width: 991px) {
  .global-container .pointer.point7 {
    top: 16%;
    left: 10%;
  }
}

@media only screen and (max-width: 768px) {
  .global-container .pointer.point7 {
    top: 28%;
    left: 18%;
  }
}

.global-container .pointer span {
  background-color: var(--primary);
  color: var(--white);
  opacity: 0;
  --triangle: 10px;
  border-radius: 5px;
  padding: 4px 20px;
  transition: all .5s;
  position: absolute;
  bottom: 100%;
  left: -100%;
  transform: translate(-30%, -80%);
}

@media only screen and (max-width: 768px) {
  .global-container .pointer span {
    bottom: 60%;
    transform: translate(-38%, -60%);
  }
}

.global-container .pointer span:before {
  content: "";
  top: calc(100% - var(--triangle) / 2);
  width: var(--triangle);
  height: var(--triangle);
  background: var(--primary);
  z-index: -1;
  display: block;
  position: absolute;
  left: 50%;
  transform: rotate(45deg);
}

/* [project]/node_modules/intl-tel-input/build/css/intlTelInput.css [app-client] (css) */
:root {
  --iti-hover-color: rgba(0, 0, 0, .05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-search-icon-color: #999;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("../media/flags.896aaec2.webp");
  --iti-path-flags-2x: url("../media/flags@2x.46d6ca51.webp");
  --iti-path-globe-1x: url("../media/globe.401fe630.webp");
  --iti-path-globe-2x: url("../media/globe@2x.b29cece5.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  display: inline-block;
  position: relative;
}

.iti * {
  box-sizing: border-box;
}

.iti__a11y-text {
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.iti input.iti__tel-input, .iti input.iti__tel-input[type="text"], .iti input.iti__tel-input[type="tel"] {
  z-index: 0;
  position: relative;
  margin: 0 !important;
}

[dir="rtl"] .iti input.iti__tel-input, [dir="rtl"] .iti input.iti__tel-input[type="text"], [dir="rtl"] .iti input.iti__tel-input[type="tel"] {
  text-align: right;
}

.iti__country-container {
  padding: var(--iti-border-width);
  position: absolute;
  top: 0;
  bottom: 0;
}

.iti__selected-country {
  z-index: 1;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.iti__selected-country-primary {
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
  align-items: center;
  display: flex;
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
  width: 0;
  height: 0;
}

[dir="rtl"] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  background-color: var(--iti-dropdown-bg);
  border-radius: 3px;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  position: absolute;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
}

.iti__search-input {
  border-width: 0;
  border-radius: 3px;
  width: 100%;
  padding-left: 30px;
  padding-right: 28px;
}

[dir="rtl"] .iti__search-input {
  padding-left: inherit;
  background-position: right 8px center;
  padding-right: 30px;
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}

.iti__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.iti__search-input-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.iti__search-icon {
  pointer-events: none;
  display: flex;
  position: absolute;
  left: 8px;
}

[dir="rtl"] .iti__search-icon {
  left: auto;
  right: 8px;
}

.iti__search-icon-svg {
  stroke: var(--iti-search-icon-color);
  fill: none;
  stroke-width: 3px;
}

.iti__search-clear {
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  transition: background-color .15s;
  display: flex;
  position: absolute;
  right: 4px;
}

.iti__search-clear .iti__search-clear-x {
  stroke-width: 2px;
}

.iti__search-clear .iti__search-clear-bg {
  fill: var(--iti-search-icon-color);
}

[dir="rtl"] .iti__search-clear {
  left: 4px;
  right: auto;
}

.iti__search-clear:hover {
  background: var(--iti-hover-color);
  outline: none;
}

.iti__search-clear:focus-visible {
  background: var(--iti-hover-color);
  outline: none;
}

.iti__no-results {
  text-align: center;
  padding: 30px 0;
}

.iti__country-list {
  cursor: pointer;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}

.iti__country {
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
  align-items: center;
  display: flex;
}

.iti__dial-code {
  color: var(--iti-dialcode-color);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir="rtl"] .iti__country-list .iti__flag, [dir="rtl"] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])) button.iti__selected-country {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])) .iti__selected-country-primary:hover {
  background-color: var(--iti-hover-color);
}

.iti--allow-dropdown .iti__country-container:not(:has( + input[disabled])):not(:has( + input[readonly])) .iti__selected-country:has( + .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

[dir="rtl"] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}

.iti--container {
  z-index: 1060;
  padding: var(--iti-border-width);
  position: fixed;
  top: -1000px;
  left: -1000px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti--fullscreen-popup.iti--container {
  padding: var(--iti-mobile-popup-margin);
  background-color: rgba(0, 0, 0, .5);
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.iti--fullscreen-popup .iti__dropdown-content {
  flex-direction: column;
  max-height: 100%;
  display: flex;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
  border-radius: 1px;
  box-shadow: 0 0 1px #888;
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  box-shadow: none;
  background-position: 100%;
  background-size: contain;
  height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }

  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}

/* [next]/internal/font/google/poppins_2024bc9.module.css [app-client] (css) */
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/7e832ad540183e91-s.a2f18b1a.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/2094fb60fd9c8287-s.3ed55436.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/c875c6f5d3e977ac-s.p.80fc2c9e.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/41e95f694c5c4549-s.666bad7d.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6c55a692938ebbbc-s.0a77efb4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a218039a3287bcfd-s.p.4a23d71b.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/bdc7e24a509eb931-s.43b0b13e.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/0da9c7f357bd9d4d-s.b2288445.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/8e6fa89aa22d24ec-s.p.3aec397d.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/0a7740363b4d4863-s.95e4158a.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/5f9d24ebef5d5292-s.bd593fbe.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/e2334d715941921e-s.p.d82a9aff.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b53057dbf91a7acf-s.c55744ae.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/798ea22d9983e047-s.b460e02c.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/47fe1b7cd6e6ed85-s.p.855a563b.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins Fallback;
  src: local(Arial);
  ascent-override: 93.62%;
  descent-override: 31.21%;
  line-gap-override: 8.92%;
  size-adjust: 112.16%;
}

.poppins_2024bc9-module__OvfM1W__className {
  font-family: Poppins, Poppins Fallback;
  font-style: normal;
}

.poppins_2024bc9-module__OvfM1W__variable {
  --font-poppins: "Poppins", "Poppins Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__cddfa09f._.css.map*/