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

:root {
  --headerpadding: 10px;
  --headerheight: calc(75px + (var(--headerpadding) * 2));
  --headerfixed: 75px;
  --footerstrip: 40px;
  --homecounterstrip: 115px;
  --cyan: #0BCFCC;
  --blue: #141559;
  --blue-dark: #0F1043;
  --text: #666666;
  --white: #FFFFFF;
  --white-fade: #B6B6B6;
  --black: #000000;
  --gray: #EEEEEE;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1366px) {
  :root {
    --homecounterstrip: 75px;
  }
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 1007px) {
  :root {
    --headerheight: 90px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
  }
}

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

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: Poppins, sans-serif;
  background: var(--blue-dark);
  font-weight: 400;
}

b {
  font-weight: 600;
}

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

.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: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}

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

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

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

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

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

.heading h3 {
  font-size: 48px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--white);
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .heading h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 520px) {
  .heading h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 320px) {
  .heading h3 {
    font-size: 28px;
  }
}
.heading h3 span {
  color: var(--cyan);
}
.heading h3 b, .heading h3 span {
  font-weight: inherit;
}
.heading.medium h3 {
  font-size: 36px;
}

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

h5 {
  font-size: 28px;
  line-height: 1.15;
}

h6 {
  font-size: 20px;
}

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

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

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

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

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

img {
  max-width: 100%;
}

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

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

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

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

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

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

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

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

.btn {
  --height: 44px;
  --padding: 25px;
  display: inline-block;
  vertical-align: middle;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  background: var(--cyan);
  overflow: hidden;
  text-transform: capitalize;
  color: var(--black);
  border: 1px solid var(--cyan);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  border-radius: 30px;
  font-weight: 500;
}
.btn:hover {
  background: var(--white);
  border-color: var(--white);
}
.btn.black {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn.white {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.btn.white:hover {
  background: none;
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn.w-100 {
  width: 100%;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAGCAYAAAAVMmT4AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACTSURBVHgBdY/BCQMhEEV3XBXLsIQF8Z5O4kWxiyW3HPesF1NBSAVpQA/pZCvQaIiwCDswMMy8P/MHlFKcEHLx3ofpJBqDMeaIMTYBwGqMWc9ASukbIbTMMcZdSvkqpWxCiD2l9BnBWj6cc/e5NQ+C0AUdrL1btbg1Do4nrbU85/zbVPP6B0Ofw+hRa73UH54j2OILQRtE9p2nXZ4AAAAASUVORK5CYII=") no-repeat;
  background-position: calc(100% - var(--paddingleftright)) 50%;
}
.custom-select .current {
  display: block;
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-weight: var(--font);
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 10px 20px;
  white-space: break-spaces;
}
@media only screen and (max-width: 420px) {
  .custom-select .list li {
    font-size: 14px;
  }
}
.custom-select .list li.selected {
  background: var(--cyan);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--cyan);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.form {
  --inputsize: 42px;
  --color: var(--black);
  --labelbefore: var(--black);
  --labelafter: rgb(0 0 0 / .5);
  --borderbefore: var(--black);
  --borderafter: var(--blue-dark);
  --borderwidth: 1px;
  --labelfontafter: 14px;
  --labelbackground: none;
  --font: 500;
  --textareaheight: 86px;
  --paddingleftright: 0px;
  --item: 1;
  --gaplr: 19px;
  --gaptb: 20px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form .full {
  grid-column-start: 1;
  grid-column-end: calc(var(--item) + 1);
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input {
  height: var(--inputsize);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
  translate: 0 0;
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 15px;
  height: calc(var(--textareaheight) - 15px);
}
.form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  line-height: 1;
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea ~ label {
  top: 0;
  translate: 0 0;
  line-height: var(--inputsize);
}
.form .form-group select {
  width: 100%;
  height: var(--inputsize);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAGCAYAAAAVMmT4AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACTSURBVHgBdY/BCQMhEEV3XBXLsIQF8Z5O4kWxiyW3HPesF1NBSAVpQA/pZCvQaIiwCDswMMy8P/MHlFKcEHLx3ofpJBqDMeaIMTYBwGqMWc9ASukbIbTMMcZdSvkqpWxCiD2l9BnBWj6cc/e5NQ+C0AUdrL1btbg1Do4nrbU85/zbVPP6B0Ofw+hRa73UH54j2OILQRtE9p2nXZ4AAAAASUVORK5CYII=") no-repeat;
  background-position: 99% 50%;
  padding: 0 var(--paddingleftright);
  margin-left: -12px;
  color: var(--labelbefore);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group select option {
  font-size: 14px;
  color: var(--text);
}
.form .submit-grp {
  text-align: center;
  margin-top: 32px;
}

.banner {
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.banner .bg {
  height: 700px;
  line-height: 0;
}
@media (max-height: 700px) {
  .banner .bg {
    height: 100vh;
  }
}
@media only screen and (max-width: 1024px) {
  .banner .bg {
    height: 430px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 8rem;
}
@media only screen and (max-width: 1366px) {
  .banner .banner-wrapper {
    bottom: 5rem;
  }
}
.banner .content {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.banner .content h1 {
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}
.banner .content p {
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  margin-top: 0.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .banner .content p {
    font-size: 18px;
  }
}
.banner .content .scrtl-to {
  margin-top: 5rem;
  animation: hang 1.5s ease-in-out infinite forwards;
}
@media only screen and (max-width: 1366px) {
  .banner .content .scrtl-to {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .banner .content .scrtl-to {
    margin-top: 2rem;
  }
}
@keyframes hang {
  0% {
    transform: translateY(18px);
  }
  50% {
    transform: translateY(9px);
  }
  100% {
    transform: translateY(18px);
  }
}
@media only screen and (max-width: 675px) {
  .banner .content .scrtl-to svg {
    width: 30px;
    height: auto;
  }
}
.banner.center-banner .banner-wrapper {
  bottom: auto;
  top: 50%;
}

.swiper-slide {
  height: auto;
}

.swiper-nav.in-title {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 16px;
}
@media only screen and (max-width: 1152px) {
  .swiper-nav.in-title {
    gap: 0 8px;
  }
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.btn-no-background .swiper-prev, .swiper-nav.btn-no-background .swiper-next {
  border: none;
  height: auto;
  width: auto;
  border-radius: initial;
}
.swiper-nav.btn-no-background .swiper-prev svg, .swiper-nav.btn-no-background .swiper-next svg {
  position: unset;
  translate: 0 0;
}
.swiper-nav.btn-no-background .swiper-prev:hover, .swiper-nav.btn-no-background .swiper-next:hover {
  background: none;
}
.swiper-nav.btn-no-background .swiper-prev:hover path, .swiper-nav.btn-no-background .swiper-next:hover path {
  stroke: var(--blue-dark);
  fill: none;
}

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

.swiper-prev, .swiper-next {
  flex: 0 1 auto;
  --btn: 50px;
  height: var(--btn);
  width: var(--btn);
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  position: relative;
  background: var(--white);
}
.swiper-prev svg, .swiper-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.swiper-prev path, .swiper-next path {
  transition: 0.5s ease;
  stroke: var(--blue);
}
.swiper-prev:hover, .swiper-next:hover {
  background: none;
  border-color: var(--white);
}
.swiper-prev:hover path, .swiper-next:hover path {
  stroke: var(--white);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.container-fluid, .header-wrapper {
  height: 100%;
}

.header-wrapper .colA, .header-wrapper .colB, .header-wrapper .colC {
  height: 100%;
  display: flex;
  align-items: center;
}

.website-content * {
  color: var(--white);
}
.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content h1 {
  font-size: 56px;
  margin-bottom: 45px;
  text-align: center;
}
@media only screen and (max-width: 365px) {
  .website-content h1 {
    font-size: 32px;
    margin-bottom: 35px;
  }
}
.website-content h2 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  .website-content h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 22px;
  }
}
.website-content h3 {
  font-size: 36px;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.website-content h4 {
  font-size: 22px;
}
.website-content h5 {
  font-size: 20px;
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 32px 0 22px;
  font-weight: 600;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
  font-weight: 600;
}
.website-content p, .website-content li {
  color: var(--white-fade);
  text-align: justify;
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
}

.play-btn {
  --btnsize: 60px;
  --border: 2px;
  --bordercolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  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 {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(var(--btnsize) * 0.25);
  height: calc(var(--btnsize) * 0.25);
  background: url(../../icon/play.svg) no-repeat;
  background-size: 100% auto;
  background-position: 50% 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-md {
  background: linear-gradient(180deg, #141546 0%, #141546 100%);
  border-radius: 15px;
}

.price-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.price-wrap .col-md {
  flex: 1;
  padding: 28px 22px 35px;
  color: var(--white);
  background: var(--blue);
  border-radius: 15px;
}
.price-wrap .col-md .title {
  display: flex;
  justify-content: space-between;
}
.price-wrap .col-md .title h4 {
  font-size: 24px;
  line-height: 1.166;
  font-weight: 600;
}
.price-wrap .col-md .title p {
  line-height: 28px;
}
.price-wrap .col-md .title .colA p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.3rem;
  color: var(--white);
}
.price-wrap .col-md .title .colB h4 {
  color: var(--cyan);
}
.price-wrap .col-md .title .colB p {
  font-size: 13px;
  color: var(--white);
}
.price-wrap .col-md .content {
  margin: 2.5rem 0 2rem;
}
.price-wrap .col-md .content li, .price-wrap .col-md .content p {
  line-height: 1.25;
  color: var(--white-fade);
  font-size: 14px;
}
.price-wrap .col-md .content ul li {
  padding-left: 25px;
  position: relative;
}
.price-wrap .col-md .content ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.price-wrap .col-md .content ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--cyan);
}
.price-wrap .col-md .btn-wrp {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.price-wrap .col-md .btn-wrp .cupn {
  border: 1px dashed var(--white);
  border-radius: 5px;
  color: var(--white);
  padding: 6px 12px;
  font-size: 15px;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.price-wrap .col-md .btn-wrp .cupn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.price-wrap .col-md .btn-wrp .cupn.active {
  border-style: solid;
}
.price-wrap .col-md .btn-wrp .cupn.active::before {
  opacity: 1;
}
.price-wrap .col-md .btn-wrp .cupn.active:hover {
  border-color: var(--cyan);
}
.price-wrap .col-md .btn-wrp .cupn::before {
  content: "Copied!";
  position: absolute;
  white-space: nowrap;
  font-size: 14px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 1;
  font-weight: 600;
  padding: 8px 12px;
  color: var(--black);
  background: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.price-wrap .col-md .btn-wrp .cupn span {
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
}
.price-wrap .col-md .btn-wrp .cupn p {
  line-height: 20px;
  font-weight: 600;
  margin-top: 0.2rem;
}
.price-wrap .col-md .hls-des {
  font-size: 12px;
  margin-top: 1.5rem;
  color: var(--white-fade);
}

.chs-animate {
  transition: 1.5s ease;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  height: var(--headerheight);
  transition: 0.6s ease;
  --hamburgercolor: var(--white);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  z-index: -1;
  height: 0;
  transition: 0.6s ease;
}
header.header-fixed {
  height: var(--headerfixed);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
header.header-fixed::before {
  height: var(--headerfixed);
}
header .container-fluid {
  display: flex;
  align-items: center;
}
header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: calc(100% - var(--headerpadding) * 2);
  width: 100%;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper {
    justify-content: space-between;
    padding: 0;
  }
}
header .header-wrapper .colA {
  flex: 0 1 auto;
  transition: 0.5s ease;
}
header .header-wrapper .colA .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-wrapper .colA .logo img {
  height: 100%;
}
header .header-wrapper .colB {
  flex: 1;
  gap: 0 25px;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: flex-end;
}
@media only screen and (max-width: 1007px) {
  header .header-wrapper .colB {
    display: none;
  }
}
header .header-wrapper .colB li {
  display: inline-block;
  vertical-align: middle;
}
header .header-wrapper .colB li a {
  color: var(--white);
  transition: 0.5s ease;
  font-weight: 500;
}
header .header-wrapper .colB li a:hover {
  color: var(--cyan);
}
header .header-wrapper .colC .ham-btn {
  margin-left: 3rem;
  width: 60px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (max-width: 1152px) {
  header .header-wrapper .colC .ham-btn {
    margin-left: 1.5rem;
  }
}
@media only screen and (max-width: 675px) {
  header .header-wrapper .colC .ham-btn {
    width: 40px;
    margin-left: 20px;
    height: 22px;
  }
}
header .header-wrapper .colC .ham-btn:hover span {
  background: var(--cyan);
}
header .header-wrapper .colC .ham-btn span {
  display: inline-block;
  height: 2px;
  width: 100%;
  background: var(--hamburgercolor);
  transition: 0.5s ease;
}

.upper-footer {
  background: var(--cyan);
  padding: 21px 0;
}
.upper-footer .flex {
  align-items: center;
}
.upper-footer .flex .colA {
  flex: 1;
}
.upper-footer .flex .colA ul li {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}
.upper-footer .flex .colA ul li .ico {
  line-height: 0;
}
.upper-footer .flex .colA ul li a {
  color: var(--black);
  max-width: 300px;
  font-weight: 500;
}
.upper-footer .flex .colA ul li:not(:last-child) {
  border-right: 1px solid var(--black);
  padding-right: 1rem;
  margin-right: 1rem;
}
.upper-footer .flex .colB {
  flex: 0 1 auto;
  line-height: 0;
}
.upper-footer .flex .colB .btn:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.upper-footer .flex .colB .brchr {
  margin-right: 1rem;
}

.main-footer {
  padding: 3rem 0 0;
  background: var(--blue-dark) url(../../images/vector/footer-bg.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.main-footer .footer-wrapper {
  display: grid;
  grid-template-columns: 265px 1fr;
  align-items: center;
}
.main-footer .footer-wrapper .foot-nav {
  text-align: right;
  padding-left: 4rem;
}
.main-footer .footer-wrapper .foot-nav li {
  display: inline-block;
  vertical-align: middle;
}
.main-footer .footer-wrapper .foot-nav li:not(:last-child) {
  margin-right: 3rem;
}
.main-footer .footer-wrapper .foot-nav li a {
  color: var(--white);
  font-weight: 600;
}
.main-footer .footer-wrapper .foot-nav li a:hover {
  color: var(--cyan);
}
.main-footer .footer-wrapper .social-icons {
  --btn: 43px;
  margin: 3rem 0;
}
.main-footer .footer-wrapper .social-icons a {
  height: var(--btn);
  width: var(--btn);
  border: 1px solid var(--white);
  border-radius: 50%;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.main-footer .footer-wrapper .social-icons a:not(:last-child) {
  margin-right: 18px;
}
.main-footer .footer-wrapper .social-icons a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.main-footer .footer-wrapper .social-icons a:hover path {
  fill: var(--blue-dark);
}
.main-footer .footer-wrapper .social-icons, .main-footer .footer-wrapper .cpyrt-desc {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
}
.main-footer .footer-wrapper .cpyrt-desc p, .main-footer .footer-wrapper .cpyrt-desc a {
  display: inline-block;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}
.main-footer .footer-wrapper .cpyrt-desc a {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1rem;
  margin-left: 1rem;
}
.main-footer .footer-wrapper .cpyrt-desc a:hover {
  color: var(--white);
}
.main-footer .bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 2rem 0;
  margin-top: 4rem;
}
.main-footer .bottom-footer ul {
  text-align: center;
}
.main-footer .bottom-footer ul li {
  display: inline-block;
  vertical-align: middle;
}
.main-footer .bottom-footer ul li:not(:last-child) {
  border-right: 1px solid #DAD7D7;
  padding-right: 2rem;
  margin-right: 2rem;
}
.main-footer .bottom-footer ul li p {
  color: var(--white);
  font-weight: 600;
  margin-right: 1rem;
}
.main-footer .bottom-footer ul li p, .main-footer .bottom-footer ul li img {
  display: inline-block;
  vertical-align: middle;
}

.model.register-pop {
  left: 0;
  right: 0;
  max-width: 100%;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  transform: translateY(100%);
  transition: 0.6s ease;
}
.model.register-pop.is-open {
  transform: translateY(0%);
}
.model.register-pop .heading {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1366px) {
  .model.register-pop .heading {
    margin-bottom: 2rem;
  }
}
.model.register-pop .heading h3 {
  font-size: 30px;
}

.ham-pop {
  right: 0;
  max-width: 480px;
  --videowidth: 400px;
  background: var(--white);
  transform: translateX(calc(100% + var(--videowidth)));
  transition: 0.8s ease;
  background: #fff url(../../images/vector/bg1.png) no-repeat;
  background-position: 100% 118%;
  background-size: 41%;
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--blue-dark);
  stroke-width: 2;
}
.ham-pop .ham-video {
  position: absolute;
  right: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: var(--videowidth);
}
.ham-pop .ham-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 14%, transparent 41%);
}
.ham-pop .ham-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ham-pop .ham-video .count-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  color: var(--white);
  padding: 2rem;
}
.ham-pop .ham-video .count-wrap h4 {
  font-size: 25px;
  line-height: 1.44;
  font-weight: 600;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .ham-video .count-wrap h4 {
    font-size: 18px;
  }
}
.ham-pop .ham-video .count-wrap p {
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 1366px) {
  .ham-pop .ham-video .count-wrap p {
    font-size: 14px;
  }
}
.ham-pop .model-body {
  padding: 70px 52px 30px;
  background-position: 100% 100%;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 70px 25px 20px;
  }
}
.ham-pop .model-body .nav-list li:not(:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.ham-pop .model-body .nav-list li a {
  font-size: 32px;
  line-height: 1.06;
  color: var(--blue-dark);
  display: inline-block;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list li a {
    font-size: 28px;
  }
}
.ham-pop .model-body .nav-list li a:hover {
  color: var(--cyan);
  transform: translateX(5px);
}
.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons {
  margin-bottom: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
.ham-pop .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.ham-pop .model-body .bottom-list .social-icons a:hover path {
  fill: var(--cyan);
}/*# sourceMappingURL=header.css.map */