@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --headerpadding: 10px;
  --headerheight: 81px;
  --footerstrip: 94px;
  --primary: #336666;
  --secondary: #993333;
  --tertiary: #D2B64F;
  --text: #333333;
  --soft-gray: #F4F4F4;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #333333;
  --container: 1280px;
  --containerfluid: 2rem;
}
@media only screen and (max-width: 1280px) {
  :root {
    --containerfluid: 1rem;
    --container: 1180px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
    --headerpadding: 12px;
    --headerheight: 85px;
    --container: 90%;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --headerheight: 71px;
    --containerfluid: 20px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --headerheight: 71px;
    --container: 90%;
  }
}
@media only screen and (max-width: 375px) {
  :root {
    --containerfluid: 10px;
    --headerheight: 71px;
    --container: 90%;
  }
}

body {
  font-family: "Montserrat", sans-serif;
}
body::-webkit-scrollbar {
  width: 8px;
  background: var(--gray);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerheight);
}

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

b {
  font-weight: 500;
}

a, p {
  color: inherit;
}

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

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

.content-w-medium p {
  font-weight: 500;
}

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

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

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

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

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

.c-red {
  color: red;
}

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

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

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

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

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

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

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.container-fluid {
  display: block;
  margin: 0 auto;
}

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

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

h1 {
  font-size: 36px;
  line-height: 1.1;
}

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

h3 {
  font-size: 32px;
  line-height: 1.25;
}

h4 {
  font-size: 28px;
  line-height: 1.3;
}

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

h6 {
  font-size: 20px;
  line-height: 1.4;
}

.heading h1, .heading h2 {
  font-size: 42px;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .heading h1, .heading h2 {
    font-size: 36px;
  }
}
.heading h1 span, .heading h2 span {
  font-size: inherit;
  font-weight: inherit;
}
.heading h1 span:first-child, .heading h2 span:first-child {
  color: var(--primary);
}
.heading h1 span:last-child:not(:only-child), .heading h2 span:last-child:not(:only-child) {
  color: var(--secondary);
}
.heading h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .heading h6 {
    margin-bottom: 18px;
  }
}

ul.list-dot li {
  position: relative;
}
ul.list-dot li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0E2031 0%, #3F65CA 100%);
}

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

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

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

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

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

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

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

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
  z-index: 15;
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.btn {
  height: -moz-fit-content;
  height: fit-content;
  --padding: 23px;
  padding: 10px var(--padding);
  overflow: hidden;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(90deg, #243B7D 0%, #416BE3 100%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-wrap: nowrap;
  font-weight: 400;
  z-index: 1;
}
@media only screen and (max-width: 375px) {
  .btn {
    font-size: 15px;
  }
}
.btn:hover {
  background: linear-gradient(90deg, #416BE3 0%, #243B7D 100%);
  transition: 0.5s ease;
}
.btn:hover:has(.drop-down)::before, .btn:hover:has(.icon)::before {
  filter: brightness(0) invert(1);
}
.btn:has(.drop-down), .btn:has(.icon) {
  position: relative;
  padding-right: 32px;
}
.btn:has(.drop-down)::before, .btn:has(.icon)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 18px;
  height: 8px;
  background: url("../../icons/down-blue.svg");
}
.btn:hover:has(.drop-down)::before {
  transition: 0.5s ease;
  transform: rotate(180deg);
}
.btn:has(.icon) {
  padding-right: 32px;
}
.btn:has(.icon)::before {
  background: url("../../icons/right.svg");
  width: 12px;
  height: 12px;
  right: 16px;
}
.btn.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn.btn-white:not(.disabled-btn, .btn-no-hover):hover {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
}
.btn.btn-white:has(.icon)::before {
  background: url("../../icons/right-blue-bold.svg");
  width: 20px;
  height: 20px;
  background-size: 100%;
}
.btn.btn-border-primary {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
.btn.btn-border-primary:not(.disabled-btn, .btn-no-hover):hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn.btn-border-primary:has(.icon)::before {
  background: url("../../icons/right-blue-bold.svg");
  width: 20px;
  height: 20px;
  background-size: 100%;
}
.btn.btn-border-secondary {
  background: none;
  border-color: var(--gray);
  color: var(--gray);
}
.btn.btn-border-secondary:not(.disabled-btn, .btn-no-hover):hover {
  border-color: var(--gray);
  background: var(--gray);
  color: var(--white);
}
.btn.btn-border-secondary:not(.disabled-btn, .btn-no-hover):hover path {
  fill: var(--white);
}
.btn.btn-border-white {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.btn-border-white:has(.drop-down)::before {
  filter: brightness(0) invert(1);
}
.btn.btn-border-white:has(.icon)::before {
  background: url("../../icons/right-blue-bold.svg");
  width: 20px;
  height: 20px;
  background-size: 100%;
  filter: brightness(0) invert(1);
}
.btn.btn-border-white:hover:has(.icon)::before {
  filter: none;
}
.btn.btn-border-white:hover:has(.drop-down)::before {
  filter: none;
}
.btn.btn-border-white:not(.disabled-btn, .btn-no-hover):hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}
.btn.btn-border-white:not(.disabled-btn, .btn-no-hover):hover path {
  fill: var(--black);
}
.btn.btn-border-gray {
  background: none;
  border-color: var(--text);
  color: var(--text);
}
.btn.btn-border-gray:not(.disabled-btn, .btn-no-hover):hover {
  border-color: var(--gray);
  background: var(--gray);
  color: var(--white);
}
.btn.btn-border-gray:not(.disabled-btn, .btn-no-hover):hover path {
  fill: var(--white);
}
.btn.btn-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.btn.btn-wide {
  --padding: 40px;
}
.btn.btn-medium {
  --padding: 16px;
  font-size: 14px;
}
.btn.btn-small {
  --padding: 12px;
}
.btn.w-100 {
  width: 100%;
}
.btn.box {
  --padding: 0px !important;
  width: var(--height);
}
.btn.btn-btn {
  border-radius: 5px;
}
.btn:has(.icon) {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.accordion {
  overflow: hidden;
}
.accordion.open .accordion-content {
  grid-template-rows: 1fr;
  padding: 16px 0;
}
.accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
  cursor: pointer;
  color: var(--text);
}
.accordion .accordion-header span:first-child {
  font-weight: 500;
}
.accordion .accordion-header .toggle img {
  width: 32px;
  height: 32px;
}
.accordion .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.accordion .accordion-content .content {
  overflow: hidden;
}

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

.swiper:not(.no-padding) {
  padding-bottom: 10px;
}

.swiper-slide {
  height: auto;
}

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

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

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

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

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1 {
  font-size: 36px;
  margin-bottom: 45px;
  text-align: center;
  font-weight: 600;
}
@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: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 24px;
  line-height: 1.21;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  hyphens: auto;
  word-spacing: -0.07em;
}
@media only screen and (max-width: 375px) {
  .website-content p, .website-content li {
    font-size: 15px;
  }
}
.website-content p b, .website-content li b {
  font-weight: 600;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 16px;
}
.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: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--text);
}
.website-content.website-content-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 10px;
  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;
}

.redirect {
  --arrowsize: 20px;
  --space: 11px;
  font-weight: 600;
  color: var(--primary);
  background-image: url(../../icon/move-right.svg);
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: 20px;
  background-position-y: 50%;
  background-position-x: 100%;
  background-position: 100% 50%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
  transition: color 0.5s ease;
}
.redirect:hover {
  background-image: url(../../icon/move-right.svg);
  transform: translateX(5px);
}

.read-more {
  --arrowsize: 20px;
  --space: 11px;
  font-weight: 500;
  color: var(--gray);
  background-image: url(../../icon/down.svg);
  background-repeat: no-repeat;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 20px;
  background-position-y: 50%;
  background-position-x: 100%;
  background-position: 100% 50%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
  transition: color 0.5s ease;
  text-transform: uppercase;
}
.read-more.less {
  background-image: url(../../icon/up.svg);
}
@media only screen and (max-width: 767px) {
  .read-more {
    font-size: 13px;
    line-height: 18px;
    margin: 0 auto;
    display: block;
  }
}

.collapsible-content {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 240px;
  overflow: hidden;
  transition: height 0.5s ease;
}
.collapsible-content.more {
  height: auto;
  max-height: none;
}

.ico-sys {
  -webkit-mask-image: url(../../images/vector/vector-4.svg);
          mask-image: url(../../images/vector/vector-4.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  aspect-ratio: 1;
  line-height: 0;
}
.ico-sys.ico-sys2 {
  position: relative;
  -webkit-mask-image: none;
          mask-image: none;
}
.ico-sys.ico-sys2::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: url(../../images/vector/vector-2-c.svg);
}
.ico-sys.ico-sys2::after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.ico-sys.ico-sys2 video {
  -webkit-mask-image: url(../../images/vector/vector-2-a.svg);
          mask-image: url(../../images/vector/vector-2-a.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.ico-sys video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-filter-wrap h1 {
  max-width: 320px;
  margin-bottom: 24px;
}
.search-filter-wrap .search-filter {
  box-shadow: 0px 1px 3px 4px rgba(0, 0, 0, 0.0196078431);
  max-width: 686px;
  border-radius: 10px;
  background: var(--white);
}
.search-filter-wrap .search-filter .form {
  display: flex;
  flex-wrap: wrap;
  --inputsize: 62px;
  --paddingleftright: 20px;
}
.search-filter-wrap .search-filter .form .form-group {
  flex: 0 1 auto;
}
.search-filter-wrap .search-filter .form .form-group::before, .search-filter-wrap .search-filter .form .form-group::after {
  display: none;
}
.search-filter-wrap .search-filter .form .form-group.location_select {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}
.search-filter-wrap .search-filter .form .form-group:not(:has(select)) {
  flex: 1;
}
.search-filter-wrap .search-filter .form .form-group:has(select) {
  max-width: 180px;
  border-right: 1px solid #F4F3F3;
}
.search-filter-wrap .search-filter .form .form-group:has(input) {
  flex: 1;
}
.search-filter-wrap .search-filter .form .form-group:has(.btn) {
  flex: 0;
  display: flex;
  align-items: center;
  padding-right: 9px;
}
.search-filter-wrap .search-filter .form .form-group input {
  font-size: 14px;
}
.search-filter-wrap .search-filter .form .form-group input:placeholder {
  color: #A6A5A5;
}
.search-filter-wrap .search-filter .form .btn {
  --padding: 16px;
}

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

.banner {
  position: relative;
}
.banner:not(.banner-banner) {
  position: relative;
}
.banner:not(.banner-banner)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner:not(.banner-banner)::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 61.81%, rgba(0, 0, 0, 0.75) 83.33%), linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 88.99%);
}
.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}
.banner .bg {
  line-height: 0;
  height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .banner .bg {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .banner .bg {
    height: 60vh;
  }
}
@media only screen and (max-width: 767px) {
  .banner .bg {
    height: 50vh;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  z-index: 3;
}
.banner .content {
  padding: 10px;
}
.banner .content.content-white > *:not(.btn) {
  color: var(--white);
}
.banner .content.ttl-m h1 {
  font-size: 36px;
}
.banner .content.f-semibold h1 {
  font-weight: 600;
}
.banner h1 {
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .banner h1 {
    font-size: 48px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .banner h1 {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 375px) {
  .banner h1 {
    font-size: 28px;
    line-height: 35px;
  }
}
.banner h6 {
  font-size: 18px;
  line-height: 1.34;
  color: var(--text);
  margin-top: 12px;
  font-weight: 500;
}
.banner h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
.banner p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .banner p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .banner p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner p {
    font-size: 12px;
    line-height: 18px;
  }
}

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

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

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

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

.swiper-pagination-fraction {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.263;
  width: 50px;
  text-align: center;
}
.swiper-pagination-fraction span {
  text-align: center;
}

.slider-section .upper-sec {
  position: relative;
  margin-bottom: 50px;
}
.slider-section .upper-sec .vew-all-btn {
  margin-right: 14px;
}
.slider-section .upper-sec .vew-all-btn:hover {
  color: var(--black);
}
.slider-section .upper-sec .slider-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.slider-section .upper-sec .slider-nav .swiper-prev, .slider-section .upper-sec .slider-nav .swiper-next {
  --size: 40px;
}

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

.menu-modal {
  right: 0;
  max-width: 500px;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
}
.menu-modal.is-open {
  transform: translateX(0%);
}
.menu-modal .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.menu-modal .model-body {
  padding: 50px 40px 30px;
  height: 100%;
  overflow-y: auto;
}
.menu-modal .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.menu-modal .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.menu-modal .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .menu-modal .model-body {
    padding: 40px 25px 20px;
  }
}
@media only screen and (max-width: 520px) {
  .menu-modal .model-body {
    padding: 40px 15px 20px;
  }
}
.menu-modal .model-body .ico {
  max-width: 75px;
  width: 100%;
  margin-bottom: 22px;
  line-height: 0;
}
.menu-modal .model-body .ico img, .menu-modal .model-body .ico svg {
  width: 100%;
  height: auto;
}
.menu-modal .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1366px) {
  .menu-modal .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.menu-modal .model-body .nav-list > li > a {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  display: inline-block;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .menu-modal .model-body .nav-list > li > a {
    font-size: 22px;
  }
}
.menu-modal .model-body .nav-list > li > a:hover {
  color: var(--primary);
}
.menu-modal .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-modal .model-body .bottom-list .cal-btn-ham {
  color: var(--text);
  font-weight: 600;
}
@media only screen and (max-width: 520px) {
  .menu-modal .model-body .bottom-list .cal-btn-ham {
    font-weight: 500;
  }
}
.menu-modal .model-body .bottom-list .cal-btn-ham:hover {
  color: var(--primary);
}
.menu-modal .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.menu-modal .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 520px) {
  .menu-modal .model-body .bottom-list .social-icons a:not(:last-child) {
    margin-right: 10px;
  }
}
.menu-modal .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.menu-modal .model-body .bottom-list .social-icons a:hover path {
  fill: var(--primary);
}

.enquire-modal {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: linear-gradient(180deg, #fff 30%, #E5E5E5 100%);
}
.enquire-modal::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 600px;
  background: url("../../vector/particle.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.enquire-modal::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 247px;
  background: url("../../img/doctor.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.enquire-modal .close svg path {
  stroke: var(--text) !important;
}
.enquire-modal.is-open {
  transform: translateX(0%);
}
.enquire-modal .model-body {
  padding: 40px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-modal .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-modal .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-modal .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-modal .model-body {
    padding: 50px 20px 30px;
  }
}
.enquire-modal .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-modal .model-body .title h4 {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
}
.enquire-modal .model-body .title p {
  color: var(--text);
  font-size: 14px;
  margin-top: 4px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.enquire-modal .model-body .form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.enquire-modal .model-body .form .sbmt-grp {
  margin-top: 20px;
}

@keyframes drawH {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes drawV {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.comman_sec {
  padding: 80px var(--containerfluid);
  background: var(--soft-gray);
}
@media only screen and (max-width: 767px) {
  .comman_sec {
    padding: 40px var(--containerfluid);
  }
}
.comman_sec .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 60px;
  align-items: start;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.comman_sec .container .heading {
  position: relative;
  width: 100%;
  max-width: 259px;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .heading {
    max-width: 100%;
    text-align: center;
  }
}
.comman_sec .container .text-col {
  position: relative;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col {
    padding-top: 0;
    position: static;
    transform: translateY(0);
  }
}
.comman_sec .container .text-col .bracket-tr {
  position: absolute;
  top: -90px;
  right: 30%;
  width: 185px;
  height: 80px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col .bracket-tr {
    display: none;
  }
}
.comman_sec .container .text-col .bracket-tr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  background: var(--black);
  width: 0;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col .bracket-tr::before {
    display: none;
  }
}
.comman_sec .container .text-col .bracket-tr::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  background: var(--black);
  height: 0;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col .bracket-tr::after {
    display: none;
  }
}
.comman_sec .container .text-col .bracket-bl {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 50px;
  height: 80px;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col .bracket-bl {
    display: none;
  }
}
.comman_sec .container .text-col .bracket-bl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--black);
  height: 0;
  transform-origin: bottom;
}
.comman_sec .container .text-col .bracket-bl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--black);
  width: 0;
}
.comman_sec .container .text-col .content {
  width: 100%;
  padding-left: 8rem;
  opacity: 0;
  transform: translateY(20px);
}
@media only screen and (max-width: 767px) {
  .comman_sec .container .text-col .content {
    padding-left: 0;
    text-align: center;
  }
}
.comman_sec .container .text-col .content p {
  color: var(--text);
}
.comman_sec .container .text-col .content h2 {
  font-size: 36px;
  line-height: 1.2;
}
.comman_sec .container .text-col .content h2 span {
  font-size: inherit;
  font-weight: inherit;
}
.comman_sec .container .text-col .content h2 span:first-child {
  color: var(--primary);
}
.comman_sec .container .text-col .content h2 span:last-child:not(:only-child) {
  color: var(--secondary);
}
.comman_sec.in-view .text-col .bracket-tr::before {
  animation: drawH 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.comman_sec.in-view .text-col .bracket-tr::after {
  animation: drawV 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.comman_sec.in-view .text-col .bracket-bl::before {
  animation: drawV 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.comman_sec.in-view .text-col .bracket-bl::after {
  animation: drawH 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
.comman_sec.in-view .text-col .content {
  animation: fadeUp 0.8s ease 1.3s forwards;
}
@media only screen and (max-width: 767px) {
  .comman_sec.in-view .text-col .content {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background: var(--white);
  z-index: 3;
  position: relative;
}
footer .footer-top {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  footer .footer-top {
    padding: 50px var(--containerfluid);
  }
}
footer .footer-top h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.8rem;
}
@media only screen and (max-width: 991px) {
  footer .footer-top h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-top h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
footer .footer-top .content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  width: 100%;
  max-width: 442px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  footer .footer-top .content {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0px;
    gap: 20px;
  }
}
footer .footer-top .content .item {
  flex: 0 0 calc(50% - 15px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  footer .footer-top .content .item {
    font-size: 14px;
  }
}
footer .footer-top .content .item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
footer .footer-top .content .item svg path {
  fill: var(--text);
}
footer .footer-top .content .item a {
  font-weight: 500;
  color: var(--text);
}
@media only screen and (max-width: 767px) {
  footer .footer-top .content .item a {
    font-weight: 400;
    line-height: 24px;
  }
}
footer .footer-top .content .phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-bottom {
  background: var(--gray);
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom {
    padding: 30px var(--containerfluid) 20px;
  }
}
footer .footer-bottom .content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
footer .footer-bottom .content .signature {
  width: 230px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .content .signature {
    width: 140px;
  }
}
footer .footer-bottom .content .signature img {
  width: 100%;
  display: block;
}
footer .footer-bottom .content .social_media {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 22px 0 28px;
}
footer .footer-bottom .content .social_media li {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .content .social_media li {
    width: 25px;
    height: 25px;
  }
}
footer .footer-bottom .content .social_media li svg {
  width: 20px;
  height: 20px;
  display: block;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .content .social_media li svg {
    width: 16px;
    height: 16px;
  }
}
footer .footer-bottom .content p {
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .content p {
    font-size: 12px;
    max-width: 78%;
    margin: 0 auto;
  }
}

@keyframes sign {
  from {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }
  to {
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
  }
}/*# sourceMappingURL=footer.css.map */