  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

  @font-face {
    font-family: MTD Valky Semibold;
    src: url("../fonts/MTD Valky Semibold.otf") format("opentype");
  }

  :root {
    --colorMain: #F89625;
    --colorSub: #DA8B2A;
    --colorSub2: #FEC853;
    --colorTextWhite: #ffffff;
    --colorTextGray: #d8d8d8;
    --colorBg: #0a264d;
    /* --colorBg: #003070; */
    --colorBgSub: #1A5783;
    --BgGradientMain: linear-gradient(90deg,
        $colorMain 0%,
        $colorSub 50%,
        $colorMain 100%);
    --BgGradientText: linear-gradient(180deg,
        var(--colorSub2) 0%,
        var(--colorSub) 50%,
        var(--colorMain) 86%);
    --BgGradientBg: radial-gradient(100% 100% at 50% 0%,
        var(--colorBg) 0%,
        #1a578300 100%);
    --fontTitle: MTD Valky Semibold, serif;
    --fontTitleSub: "Josefin Sans", sans-serif;
    --fontContent: "Open Sans", sans-serif;
    --fontSizeXL: 10vw;
    --fontSizeBig: 7vw;
    --fontSizeBigS: 5.5vw;
    --fontSizeXS: 2.6vw;
    --fontSizeLarge: 28px;
    --fontSizeMedium: 24px;
    --fontSizeSmall: 14px;
    --fontSizeText: 16px;
    --textShadow: 0px 0px 8px rgb(255 255 255 / 25%);
    --ringArea: 60vh;
    --ringArea1: 80vh;
  }

  html.fp-enabled,
  .fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .fp-section {
    position: relative;
    /* Safari<=5 Android<=3 */
    /* <=28 */
    box-sizing: border-box;
  }

  .fp-slide {
    float: left;
  }

  .fp-slide,
  .fp-slidesContainer {
    height: 100%;
    display: block;
  }

  .fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
  }

  .fp-section.fp-table,
  .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
  }

  .fp-slidesContainer {
    float: left;
    position: relative;
  }

  .fp-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    transform: translate3d(0, 0, 0);
  }

  .fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
  }

  .fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
  }

  .fp-scrollable {
    overflow: hidden;
    position: relative;
  }

  .fp-scroller {
    overflow: hidden;
  }

  .iScrollIndicator {
    border: 0 !important;
  }

  .fp-notransition {
    transition: none !important;
  }

  #fp-nav {
    position: fixed;
    z-index: 100;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translate3d(0, -50%, 0);
  }

  #fp-nav.fp-right {
    right: 17px;
  }

  #fp-nav.fp-left {
    left: 17px;
  }

  .fp-slidesNav {
    position: absolute;
    z-index: 4;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
  }

  .fp-slidesNav.fp-bottom {
    bottom: 17px;
  }

  .fp-slidesNav.fp-top {
    top: 17px;
  }

  #fp-nav ul,
  .fp-slidesNav ul {
    margin: 0;
    padding: 0;
  }

  #fp-nav ul li,
  .fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
  }

  .fp-slidesNav ul li {
    display: inline-block;
  }

  #fp-nav ul li a,
  .fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
  }

  #fp-nav ul li a.active span,
  .fp-slidesNav ul li a.active span,
  #fp-nav ul li:hover a.active span,
  .fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
  }

  #fp-nav ul li a span,
  .fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    transition: all 0.1s ease-in-out;
  }

  #fp-nav ul li:hover a span,
  .fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
  }

  #fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
  }

  #fp-nav ul li:hover .fp-tooltip,
  #fp-nav.fp-show-active a.active+.fp-tooltip {
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
  }

  #fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
  }

  #fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
  }

  .fp-auto-height.fp-section,
  .fp-auto-height .fp-slide,
  .fp-auto-height .fp-tableCell {
    height: auto !important;
  }

  .fp-responsive .fp-auto-height-responsive.fp-section,
  .fp-responsive .fp-auto-height-responsive .fp-slide,
  .fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
  }

  /*Only display content to screen readers*/
  .fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .carousel {
    position: relative;
    box-sizing: border-box;
  }

  .carousel *,
  .carousel *:before,
  .carousel *:after {
    box-sizing: inherit;
  }

  .carousel.is-draggable {
    cursor: move;
    cursor: grab;
  }

  .carousel.is-dragging {
    cursor: move;
    cursor: grabbing;
  }

  .carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
  }

  .carousel__track {
    display: flex;
  }

  .carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .has-dots {
    margin-bottom: calc(0.5rem + 22px);
  }

  .carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
  }

  .carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: 0.25;
    transition: opacity 0.15s ease-in-out;
  }

  .carousel__dots .carousel__dot.is-selected:after {
    opacity: 1;
  }

  .carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity 0.15s ease;
  }

  .carousel__button.is-prev,
  .carousel__button.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .carousel__button.is-prev {
    left: 10px;
  }

  .carousel__button.is-next {
    right: 10px;
  }

  .carousel__button[disabled] {
    cursor: default;
    opacity: 0.3;
  }

  .carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none;
  }

  html.with-fancybox {
    scroll-behavior: auto;
  }

  body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none;
  }

  .fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
  }

  .fancybox__container *,
  .fancybox__container *::before,
  .fancybox__container *::after {
    box-sizing: inherit;
  }

  .fancybox__container :focus {
    outline: none;
  }

  body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  }

  @media all and (min-width: 1024px) {
    .fancybox__container {
      --carousel-button-width: 48px;
      --carousel-button-height: 48px;
      --carousel-button-svg-width: 27px;
      --carousel-button-svg-height: 27px;
    }
  }

  .fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
  }

  .fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10;
  }

  .fancybox__carousel.has-dots {
    margin-bottom: calc(0.5rem + 22px);
  }

  .fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default;
  }

  .fancybox__track {
    display: flex;
    height: 100%;
  }

  .fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
  }

  .fancybox__slide::before,
  .fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto;
  }

  @media all and (min-width: 1024px) {
    .fancybox__slide {
      padding: 64px 100px;
    }
  }

  .fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20;
  }

  .fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none;
  }

  .fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere;
  }

  .is-loading .fancybox__caption {
    visibility: hidden;
  }

  .fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff);
  }

  .fancybox__nav .carousel__button {
    z-index: 40;
  }

  .fancybox__nav .carousel__button.is-next {
    right: 8px;
  }

  @media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
      right: 40px;
    }
  }

  .fancybox__nav .carousel__button.is-prev {
    left: 8px;
  }

  @media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
      left: 40px;
    }
  }

  .carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40;
  }

  @media all and (min-width: 1024px) {
    .carousel__button.is-close {
      right: 40px;
    }
  }

  .fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff);
  }

  .fancybox__no-click,
  .fancybox__no-click button {
    pointer-events: none;
  }

  .fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor);
  }

  .fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053;
  }

  .fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }

  .fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor;
  }

  @keyframes fancybox-rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes fancybox-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
    }

    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
    }

    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -124px;
    }
  }

  .fancybox__backdrop,
  .fancybox__caption,
  .fancybox__nav,
  .carousel__dots,
  .carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1);
  }

  .fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
  .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
  .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,
  .fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
  .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    animation: 0.15s ease backwards fancybox-fadeIn;
  }

  .fancybox__container.is-animated.is-closing .fancybox__backdrop,
  .fancybox__container.is-animated.is-closing .fancybox__caption,
  .fancybox__container.is-animated.is-closing .fancybox__nav,
  .fancybox__container.is-animated.is-closing .carousel__dots,
  .fancybox__container.is-animated.is-closing .carousel__button.is-close {
    animation: 0.15s ease both fancybox-fadeOut;
  }

  .fancybox-fadeIn {
    animation: 0.15s ease both fancybox-fadeIn;
  }

  .fancybox-fadeOut {
    animation: 0.1s ease both fancybox-fadeOut;
  }

  .fancybox-zoomInUp {
    animation: 0.2s ease both fancybox-zoomInUp;
  }

  .fancybox-zoomOutDown {
    animation: 0.15s ease both fancybox-zoomOutDown;
  }

  .fancybox-throwOutUp {
    animation: 0.15s ease both fancybox-throwOutUp;
  }

  .fancybox-throwOutDown {
    animation: 0.15s ease both fancybox-throwOutDown;
  }

  @keyframes fancybox-fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes fancybox-fadeOut {
    to {
      opacity: 0;
    }
  }

  @keyframes fancybox-zoomInUp {
    from {
      transform: scale(0.97) translate3d(0, 16px, 0);
      opacity: 0;
    }

    to {
      transform: scale(1) translate3d(0, 0, 0);
      opacity: 1;
    }
  }

  @keyframes fancybox-zoomOutDown {
    to {
      transform: scale(0.97) translate3d(0, 16px, 0);
      opacity: 0;
    }
  }

  @keyframes fancybox-throwOutUp {
    to {
      transform: translate3d(0, -30%, 0);
      opacity: 0;
    }
  }

  @keyframes fancybox-throwOutDown {
    to {
      transform: translate3d(0, 30%, 0);
      opacity: 0;
    }
  }

  .fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
  }

  .fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  }

  .fancybox__carousel.is-draggable .fancybox__slide,
  .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab;
  }

  .fancybox__carousel.is-dragging .fancybox__slide,
  .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing;
  }

  .fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto;
  }

  .fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in;
  }

  .fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out;
  }

  .fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab;
  }

  .fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing;
  }

  .fancybox__image {
    transform-origin: 0 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: none;
  }

  .has-image .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
  }

  .is-closing .has-image .fancybox__content {
    overflow: visible;
  }

  .has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none;
  }

  .has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto;
  }

  .has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto;
  }

  .has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none;
  }

  .has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%;
  }

  .has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-map .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-video .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
  }

  .fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-map .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%;
  }

  .fancybox__carousel .fancybox__slide.has-video .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
  }

  .fancybox__carousel .fancybox__slide.has-map .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-video .fancybox__content,
  .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, 0.9);
    color: #fff;
  }

  .fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df;
  }

  .fancybox__html5video,
  .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
  }

  .fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0px 3px;
    opacity: var(--fancybox-opacity, 1);
  }

  .fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: 0.15s ease-in backwards fancybox-fadeIn;
  }

  .fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0;
  }

  .fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer;
  }

  .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    opacity: 0;
    transition: opacity 0.15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
  }

  .fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: 0.92;
  }

  .fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
  }

  .fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.006) 8.1%, hsla(0, 0%, 0%, 0.021) 15.5%, hsla(0, 0%, 0%, 0.046) 22.5%, hsla(0, 0%, 0%, 0.077) 29%, hsla(0, 0%, 0%, 0.114) 35.3%, hsla(0, 0%, 0%, 0.155) 41.2%, hsla(0, 0%, 0%, 0.198) 47.1%, hsla(0, 0%, 0%, 0.242) 52.9%, hsla(0, 0%, 0%, 0.285) 58.8%, hsla(0, 0%, 0%, 0.326) 64.7%, hsla(0, 0%, 0%, 0.363) 71%, hsla(0, 0%, 0%, 0.394) 77.5%, hsla(0, 0%, 0%, 0.419) 84.5%, hsla(0, 0%, 0%, 0.434) 91.9%, hsla(0, 0%, 0%, 0.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
  }

  @media all and (min-width: 1024px) {
    .fancybox__toolbar {
      padding: 8px;
    }
  }

  .fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: 0.15s ease-in backwards fancybox-fadeIn;
  }

  .fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0;
  }

  .fancybox__toolbar__items {
    display: flex;
  }

  .fancybox__toolbar__items--left {
    margin-right: auto;
  }

  .fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .fancybox__toolbar__items--right {
    margin-left: auto;
  }

  @media (max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
      display: none;
    }
  }

  .fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
  }

  .fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .fancybox__container:-webkit-full-screen::backdrop {
    opacity: 0;
  }

  .fancybox__container:fullscreen::backdrop {
    opacity: 0;
  }

  .fancybox__button--fullscreen g:nth-child(2) {
    display: none;
  }

  .fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
  }

  .fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
  }

  .fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
  }

  .fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
  }

  .fancybox__button--slideshow g:nth-child(2) {
    display: none;
  }

  .fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none;
  }

  .fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block;
  }

  /* mapify */
  .mapify-holder {
    position: relative;
    display: inline-block;
    font-size: 0;
    max-width: 100%;
    z-index: 1;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  .mapify-imgHolder {
    position: relative;
    z-index: 1;
  }

  .mapify-GPU,
  .mapify-holder * {
    transform: translate3d(0, 0, 0);
  }

  .mapify-imgHolder .mapify {
    max-width: 100%;
    height: auto;
  }

  .mapify-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }

  .mapify-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }

  .mapify-polygon {
    transition: all 0.5s;
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
  }

  .mapify-hover {
    fill: #09f;
  }

  .mapify-popOver {
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 30px;
    width: 260px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 0 2px;
    z-index: 999;
    transform: translateY(-15px);
    border-radius: 5px;
    text-align: center;
    height: auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 14px;
    z-index: -1;
    opacity: 0;
  }

  .mapify-popOver .mapify-popOver-arrow {
    content: "";
    width: 15px;
    height: 15px;
    z-index: -2;
    margin-top: -3px;
    box-shadow: inset #fff 0 0 0 100px;
    border-top: solid transparent 2px;
    border-left: solid transparent 2px;
    border-right: solid rgba(0, 0, 0, 0.15) 2px;
    border-bottom: solid rgba(0, 0, 0, 0.15) 2px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-15px) rotate(45deg) translateY(-50%);
  }

  .mapify-popOver.mapify-bottom .mapify-popOver-arrow {
    top: auto;
    bottom: 100%;
    margin-top: auto;
    margin-bottom: -3px;
    border-bottom: solid transparent 2px;
    border-right: solid transparent 2px;
    border-top: solid rgba(0, 0, 0, 0.15) 2px;
    border-left: solid rgba(0, 0, 0, 0.15) 2px;
    transform: rotate(45deg) translateY(50%);
    -webkit-transform: rotate(45deg) translateY(50%);
    -moz-transform: rotate(45deg) translateY(50%);
    -o-transform: rotate(45deg) translateY(50%);
  }

  .mapify-popOver.mapify-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /**
  * Swiper 11.0.5
  * Most modern mobile touch slider and framework with hardware accelerated transitions
  * https://swiperjs.com
  *
  * Copyright 2014-2023 Vladimir Kharlampidi
  *
  * Released under the MIT License
  *
  * Released on: November 22, 2023
  */
  @font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
  }

  :root {
    --swiper-theme-color: #007aff;
  }

  :host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }

  .swiper-vertical>.swiper-wrapper {
    flex-direction: column;
  }

  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
  }

  .swiper-android .swiper-slide,
  .swiper-ios .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }

  .swiper-horizontal {
    touch-action: pan-y;
  }

  .swiper-vertical {
    touch-action: pan-x;
  }

  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }

  .swiper-slide-invisible-blank {
    visibility: hidden;
  }

  .swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    height: auto;
  }

  .swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }

  .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
  }

  .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
  }

  .swiper-3d {
    perspective: 1200px;
  }

  .swiper-3d .swiper-cube-shadow,
  .swiper-3d .swiper-slide {
    transform-style: preserve-3d;
  }

  .swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
  }

  .swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
  }

  .swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory;
  }

  .swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory;
  }

  .swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none;
  }

  .swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none;
  }

  .swiper-css-mode.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
  }

  .swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
  }

  .swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
  }

  .swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
  }

  .swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
  }

  .swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
  }

  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }

  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
  }

  .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
  .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }

  .swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
  }

  .swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
  }

  @keyframes swiper-preloader-spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }

  .swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }

  .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }

  :root {
    --swiper-navigation-size: 44px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }

  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }

  .swiper-button-next.swiper-button-hidden,
  .swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }

  .swiper-navigation-disabled .swiper-button-next,
  .swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
  }

  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transform-origin: center;
  }

  .swiper-rtl .swiper-button-next svg,
  .swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg);
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }

  .swiper-button-lock {
    display: none;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }

  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    content: "prev";
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
  }

  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: "next";
  }

  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }

  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }

  .swiper-pagination-disabled>.swiper-pagination,
  .swiper-pagination.swiper-pagination-disabled {
    display: none !important;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
  }

  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }

  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  }

  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }

  .swiper-pagination-bullet:only-child {
    display: none !important;
  }

  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }

  .swiper-pagination-vertical.swiper-pagination-bullets,
  .swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
  }

  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }

  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }

  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }

  .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
  }

  .swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
  }

  .swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
  }

  .swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
  }

  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }

  .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }

  .swiper-horizontal>.swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }

  .swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-vertical,
  .swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }

  .swiper-pagination-lock {
    display: none;
  }

  .swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  }

  .swiper-scrollbar-disabled>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
  }

  .swiper-horizontal>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }

  .swiper-scrollbar.swiper-scrollbar-vertical,
  .swiper-vertical>.swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }

  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
  }

  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }

  .swiper-scrollbar-lock {
    display: none;
  }

  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .swiper-zoom-container>canvas,
  .swiper-zoom-container>img,
  .swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
  }

  .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }

  .swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
  }

  .swiper-grid>.swiper-wrapper {
    flex-wrap: wrap;
  }

  .swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
  }

  .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }

  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }

  .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-cube {
    overflow: visible;
  }

  .swiper-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }

  .swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }

  .swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }

  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-next,
  .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }

  .swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
  }

  .swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
  .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden;
  }

  .swiper-flip {
    overflow: visible;
  }

  .swiper-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
  }

  .swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }

  .swiper-flip .swiper-slide-active,
  .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
  .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden;
  }

  .swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }

  .swiper-cards {
    overflow: visible;
  }

  .swiper-cards .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }

  :root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
  }

  .animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
  }

  .animate__animated.animate__infinite {
    animation-iteration-count: infinite;
  }

  .animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat);
  }

  .animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2);
  }

  .animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3);
  }

  .animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay);
  }

  .animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2);
  }

  .animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3);
  }

  .animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4);
  }

  .animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5);
  }

  .animate__animated.animate__faster {
    animation-duration: 0.5s;
    animation-duration: calc(var(--animate-duration) / 2);
  }

  .animate__animated.animate__fast {
    animation-duration: 0.8s;
    animation-duration: calc(var(--animate-duration) * 0.8);
  }

  .animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
  }

  .animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3);
  }

  @media (prefers-reduced-motion: reduce),
  print {
    .animate__animated {
      animation-duration: 1ms !important;
      transition-duration: 1ms !important;
      animation-iteration-count: 1 !important;
    }

    .animate__animated[class*=Out] {
      opacity: 0;
    }
  }

  @keyframes bounce {

    0%,
    20%,
    53%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: translateZ(0);
    }

    40%,
    43% {
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
      transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: translateZ(0) scaleY(0.95);
    }

    90% {
      transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
  }

  .animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom;
  }

  @keyframes flash {

    0%,
    50%,
    to {
      opacity: 1;
    }

    25%,
    75% {
      opacity: 0;
    }
  }

  .animate__flash {
    animation-name: flash;
  }

  @keyframes pulse {
    0% {
      transform: scaleX(1);
    }

    50% {
      transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
      transform: scaleX(1);
    }
  }

  .animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
  }

  @keyframes rubberBand {
    0% {
      transform: scaleX(1);
    }

    30% {
      transform: scale3d(1.25, 0.75, 1);
    }

    40% {
      transform: scale3d(0.75, 1.25, 1);
    }

    50% {
      transform: scale3d(1.15, 0.85, 1);
    }

    65% {
      transform: scale3d(0.95, 1.05, 1);
    }

    75% {
      transform: scale3d(1.05, 0.95, 1);
    }

    to {
      transform: scaleX(1);
    }
  }

  .animate__rubberBand {
    animation-name: rubberBand;
  }

  @keyframes shakeX {

    0%,
    to {
      transform: translateZ(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
      transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
      transform: translate3d(10px, 0, 0);
    }
  }

  .animate__shakeX {
    animation-name: shakeX;
  }

  @keyframes shakeY {

    0%,
    to {
      transform: translateZ(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
      transform: translate3d(0, -10px, 0);
    }

    20%,
    40%,
    60%,
    80% {
      transform: translate3d(0, 10px, 0);
    }
  }

  .animate__shakeY {
    animation-name: shakeY;
  }

  @keyframes headShake {
    0% {
      transform: translateX(0);
    }

    6.5% {
      transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
      transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
      transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
      transform: translateX(2px) rotateY(3deg);
    }

    50% {
      transform: translateX(0);
    }
  }

  .animate__headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
  }

  @keyframes swing {
    20% {
      transform: rotate(15deg);
    }

    40% {
      transform: rotate(-10deg);
    }

    60% {
      transform: rotate(5deg);
    }

    80% {
      transform: rotate(-5deg);
    }

    to {
      transform: rotate(0deg);
    }
  }

  .animate__swing {
    transform-origin: top center;
    animation-name: swing;
  }

  @keyframes tada {
    0% {
      transform: scaleX(1);
    }

    10%,
    20% {
      transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
      transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
      transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
      transform: scaleX(1);
    }
  }

  .animate__tada {
    animation-name: tada;
  }

  @keyframes wobble {
    0% {
      transform: translateZ(0);
    }

    15% {
      transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }

    30% {
      transform: translate3d(20%, 0, 0) rotate(3deg);
    }

    45% {
      transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }

    60% {
      transform: translate3d(10%, 0, 0) rotate(2deg);
    }

    75% {
      transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__wobble {
    animation-name: wobble;
  }

  @keyframes jello {

    0%,
    11.1%,
    to {
      transform: translateZ(0);
    }

    22.2% {
      transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
      transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
      transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
      transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
      transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
      transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
      transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
  }

  .animate__jello {
    animation-name: jello;
    transform-origin: center;
  }

  @keyframes heartBeat {
    0% {
      transform: scale(1);
    }

    14% {
      transform: scale(1.3);
    }

    28% {
      transform: scale(1);
    }

    42% {
      transform: scale(1.3);
    }

    70% {
      transform: scale(1);
    }
  }

  .animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out;
  }

  @keyframes backInDown {
    0% {
      transform: translateY(-1200px) scale(0.7);
      opacity: 0.7;
    }

    80% {
      transform: translateY(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .animate__backInDown {
    animation-name: backInDown;
  }

  @keyframes backInLeft {
    0% {
      transform: translateX(-2000px) scale(0.7);
      opacity: 0.7;
    }

    80% {
      transform: translateX(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .animate__backInLeft {
    animation-name: backInLeft;
  }

  @keyframes backInRight {
    0% {
      transform: translateX(2000px) scale(0.7);
      opacity: 0.7;
    }

    80% {
      transform: translateX(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .animate__backInRight {
    animation-name: backInRight;
  }

  @keyframes backInUp {
    0% {
      transform: translateY(1200px) scale(0.7);
      opacity: 0.7;
    }

    80% {
      transform: translateY(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .animate__backInUp {
    animation-name: backInUp;
  }

  @keyframes backOutDown {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    20% {
      transform: translateY(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: translateY(700px) scale(0.7);
      opacity: 0.7;
    }
  }

  .animate__backOutDown {
    animation-name: backOutDown;
  }

  @keyframes backOutLeft {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    20% {
      transform: translateX(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: translateX(-2000px) scale(0.7);
      opacity: 0.7;
    }
  }

  .animate__backOutLeft {
    animation-name: backOutLeft;
  }

  @keyframes backOutRight {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    20% {
      transform: translateX(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: translateX(2000px) scale(0.7);
      opacity: 0.7;
    }
  }

  .animate__backOutRight {
    animation-name: backOutRight;
  }

  @keyframes backOutUp {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    20% {
      transform: translateY(0) scale(0.7);
      opacity: 0.7;
    }

    to {
      transform: translateY(-700px) scale(0.7);
      opacity: 0.7;
    }
  }

  .animate__backOutUp {
    animation-name: backOutUp;
  }

  @keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
      transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
      transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
      transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  .animate__bounceIn {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceIn;
  }

  @keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
      opacity: 0;
      transform: translate3d(0, -3000px, 0) scaleY(3);
    }

    60% {
      opacity: 1;
      transform: translate3d(0, 25px, 0) scaleY(0.9);
    }

    75% {
      transform: translate3d(0, -10px, 0) scaleY(0.95);
    }

    90% {
      transform: translate3d(0, 5px, 0) scaleY(0.985);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__bounceInDown {
    animation-name: bounceInDown;
  }

  @keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
      opacity: 0;
      transform: translate3d(-3000px, 0, 0) scaleX(3);
    }

    60% {
      opacity: 1;
      transform: translate3d(25px, 0, 0) scaleX(1);
    }

    75% {
      transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }

    90% {
      transform: translate3d(5px, 0, 0) scaleX(0.995);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__bounceInLeft {
    animation-name: bounceInLeft;
  }

  @keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
      opacity: 0;
      transform: translate3d(3000px, 0, 0) scaleX(3);
    }

    60% {
      opacity: 1;
      transform: translate3d(-25px, 0, 0) scaleX(1);
    }

    75% {
      transform: translate3d(10px, 0, 0) scaleX(0.98);
    }

    90% {
      transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__bounceInRight {
    animation-name: bounceInRight;
  }

  @keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
      opacity: 0;
      transform: translate3d(0, 3000px, 0) scaleY(5);
    }

    60% {
      opacity: 1;
      transform: translate3d(0, -20px, 0) scaleY(0.9);
    }

    75% {
      transform: translate3d(0, 10px, 0) scaleY(0.95);
    }

    90% {
      transform: translate3d(0, -5px, 0) scaleY(0.985);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__bounceInUp {
    animation-name: bounceInUp;
  }

  @keyframes bounceOut {
    20% {
      transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
      opacity: 1;
      transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
  }

  .animate__bounceOut {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceOut;
  }

  @keyframes bounceOutDown {
    20% {
      transform: translate3d(0, 10px, 0) scaleY(0.985);
    }

    40%,
    45% {
      opacity: 1;
      transform: translate3d(0, -20px, 0) scaleY(0.9);
    }

    to {
      opacity: 0;
      transform: translate3d(0, 2000px, 0) scaleY(3);
    }
  }

  .animate__bounceOutDown {
    animation-name: bounceOutDown;
  }

  @keyframes bounceOutLeft {
    20% {
      opacity: 1;
      transform: translate3d(20px, 0, 0) scaleX(0.9);
    }

    to {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
  }

  .animate__bounceOutLeft {
    animation-name: bounceOutLeft;
  }

  @keyframes bounceOutRight {
    20% {
      opacity: 1;
      transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }

    to {
      opacity: 0;
      transform: translate3d(2000px, 0, 0) scaleX(2);
    }
  }

  .animate__bounceOutRight {
    animation-name: bounceOutRight;
  }

  @keyframes bounceOutUp {
    20% {
      transform: translate3d(0, -10px, 0) scaleY(0.985);
    }

    40%,
    45% {
      opacity: 1;
      transform: translate3d(0, 20px, 0) scaleY(0.9);
    }

    to {
      opacity: 0;
      transform: translate3d(0, -2000px, 0) scaleY(3);
    }
  }

  .animate__bounceOutUp {
    animation-name: bounceOutUp;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .animate__fadeIn {
    animation-name: fadeIn;
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInDown {
    animation-name: fadeInDown;
  }

  @keyframes fadeInDownBig {
    0% {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInDownBig {
    animation-name: fadeInDownBig;
  }

  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translate3d(-100%, 0, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInLeft {
    animation-name: fadeInLeft;
  }

  @keyframes fadeInLeftBig {
    0% {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInLeftBig {
    animation-name: fadeInLeftBig;
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translate3d(100%, 0, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInRight {
    animation-name: fadeInRight;
  }

  @keyframes fadeInRightBig {
    0% {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInRightBig {
    animation-name: fadeInRightBig;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInUp {
    animation-name: fadeInUp;
  }

  @keyframes fadeInUpBig {
    0% {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInUpBig {
    animation-name: fadeInUpBig;
  }

  @keyframes fadeInTopLeft {
    0% {
      opacity: 0;
      transform: translate3d(-100%, -100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInTopLeft {
    animation-name: fadeInTopLeft;
  }

  @keyframes fadeInTopRight {
    0% {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInTopRight {
    animation-name: fadeInTopRight;
  }

  @keyframes fadeInBottomLeft {
    0% {
      opacity: 0;
      transform: translate3d(-100%, 100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
  }

  @keyframes fadeInBottomRight {
    0% {
      opacity: 0;
      transform: translate3d(100%, 100%, 0);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__fadeInBottomRight {
    animation-name: fadeInBottomRight;
  }

  @keyframes fadeOut {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  .animate__fadeOut {
    animation-name: fadeOut;
  }

  @keyframes fadeOutDown {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  }

  .animate__fadeOutDown {
    animation-name: fadeOutDown;
  }

  @keyframes fadeOutDownBig {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }
  }

  .animate__fadeOutDownBig {
    animation-name: fadeOutDownBig;
  }

  @keyframes fadeOutLeft {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(-100%, 0, 0);
    }
  }

  .animate__fadeOutLeft {
    animation-name: fadeOutLeft;
  }

  @keyframes fadeOutLeftBig {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }
  }

  .animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
  }

  @keyframes fadeOutRight {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(100%, 0, 0);
    }
  }

  .animate__fadeOutRight {
    animation-name: fadeOutRight;
  }

  @keyframes fadeOutRightBig {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }
  }

  .animate__fadeOutRightBig {
    animation-name: fadeOutRightBig;
  }

  @keyframes fadeOutUp {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
  }

  .animate__fadeOutUp {
    animation-name: fadeOutUp;
  }

  @keyframes fadeOutUpBig {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
  }

  .animate__fadeOutUpBig {
    animation-name: fadeOutUpBig;
  }

  @keyframes fadeOutTopLeft {
    0% {
      opacity: 1;
      transform: translateZ(0);
    }

    to {
      opacity: 0;
      transform: translate3d(-100%, -100%, 0);
    }
  }

  .animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft;
  }

  @keyframes fadeOutTopRight {
    0% {
      opacity: 1;
      transform: translateZ(0);
    }

    to {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }
  }

  .animate__fadeOutTopRight {
    animation-name: fadeOutTopRight;
  }

  @keyframes fadeOutBottomRight {
    0% {
      opacity: 1;
      transform: translateZ(0);
    }

    to {
      opacity: 0;
      transform: translate3d(100%, 100%, 0);
    }
  }

  .animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight;
  }

  @keyframes fadeOutBottomLeft {
    0% {
      opacity: 1;
      transform: translateZ(0);
    }

    to {
      opacity: 0;
      transform: translate3d(-100%, 100%, 0);
    }
  }

  .animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft;
  }

  @keyframes flip {
    0% {
      transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
      animation-timing-function: ease-out;
    }

    40% {
      transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
      animation-timing-function: ease-out;
    }

    50% {
      transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
      animation-timing-function: ease-in;
    }

    80% {
      transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
      animation-timing-function: ease-in;
    }

    to {
      transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
      animation-timing-function: ease-in;
    }
  }

  .animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip;
  }

  @keyframes flipInX {
    0% {
      transform: perspective(400px) rotateX(90deg);
      animation-timing-function: ease-in;
      opacity: 0;
    }

    40% {
      transform: perspective(400px) rotateX(-20deg);
      animation-timing-function: ease-in;
    }

    60% {
      transform: perspective(400px) rotateX(10deg);
      opacity: 1;
    }

    80% {
      transform: perspective(400px) rotateX(-5deg);
    }

    to {
      transform: perspective(400px);
    }
  }

  .animate__flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
  }

  @keyframes flipInY {
    0% {
      transform: perspective(400px) rotateY(90deg);
      animation-timing-function: ease-in;
      opacity: 0;
    }

    40% {
      transform: perspective(400px) rotateY(-20deg);
      animation-timing-function: ease-in;
    }

    60% {
      transform: perspective(400px) rotateY(10deg);
      opacity: 1;
    }

    80% {
      transform: perspective(400px) rotateY(-5deg);
    }

    to {
      transform: perspective(400px);
    }
  }

  .animate__flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
  }

  @keyframes flipOutX {
    0% {
      transform: perspective(400px);
    }

    30% {
      transform: perspective(400px) rotateX(-20deg);
      opacity: 1;
    }

    to {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0;
    }
  }

  .animate__flipOutX {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: flipOutX;
    backface-visibility: visible !important;
  }

  @keyframes flipOutY {
    0% {
      transform: perspective(400px);
    }

    30% {
      transform: perspective(400px) rotateY(-15deg);
      opacity: 1;
    }

    to {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0;
    }
  }

  .animate__flipOutY {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    backface-visibility: visible !important;
    animation-name: flipOutY;
  }

  @keyframes lightSpeedInRight {
    0% {
      transform: translate3d(100%, 0, 0) skewX(-30deg);
      opacity: 0;
    }

    60% {
      transform: skewX(20deg);
      opacity: 1;
    }

    80% {
      transform: skewX(-5deg);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out;
  }

  @keyframes lightSpeedInLeft {
    0% {
      transform: translate3d(-100%, 0, 0) skewX(30deg);
      opacity: 0;
    }

    60% {
      transform: skewX(-20deg);
      opacity: 1;
    }

    80% {
      transform: skewX(5deg);
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out;
  }

  @keyframes lightSpeedOutRight {
    0% {
      opacity: 1;
    }

    to {
      transform: translate3d(100%, 0, 0) skewX(30deg);
      opacity: 0;
    }
  }

  .animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in;
  }

  @keyframes lightSpeedOutLeft {
    0% {
      opacity: 1;
    }

    to {
      transform: translate3d(-100%, 0, 0) skewX(-30deg);
      opacity: 0;
    }
  }

  .animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in;
  }

  @keyframes rotateIn {
    0% {
      transform: rotate(-200deg);
      opacity: 0;
    }

    to {
      transform: translateZ(0);
      opacity: 1;
    }
  }

  .animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center;
  }

  @keyframes rotateInDownLeft {
    0% {
      transform: rotate(-45deg);
      opacity: 0;
    }

    to {
      transform: translateZ(0);
      opacity: 1;
    }
  }

  .animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
  }

  @keyframes rotateInDownRight {
    0% {
      transform: rotate(45deg);
      opacity: 0;
    }

    to {
      transform: translateZ(0);
      opacity: 1;
    }
  }

  .animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
  }

  @keyframes rotateInUpLeft {
    0% {
      transform: rotate(45deg);
      opacity: 0;
    }

    to {
      transform: translateZ(0);
      opacity: 1;
    }
  }

  .animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
  }

  @keyframes rotateInUpRight {
    0% {
      transform: rotate(-90deg);
      opacity: 0;
    }

    to {
      transform: translateZ(0);
      opacity: 1;
    }
  }

  .animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
  }

  @keyframes rotateOut {
    0% {
      opacity: 1;
    }

    to {
      transform: rotate(200deg);
      opacity: 0;
    }
  }

  .animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center;
  }

  @keyframes rotateOutDownLeft {
    0% {
      opacity: 1;
    }

    to {
      transform: rotate(45deg);
      opacity: 0;
    }
  }

  .animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
  }

  @keyframes rotateOutDownRight {
    0% {
      opacity: 1;
    }

    to {
      transform: rotate(-45deg);
      opacity: 0;
    }
  }

  .animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
  }

  @keyframes rotateOutUpLeft {
    0% {
      opacity: 1;
    }

    to {
      transform: rotate(-45deg);
      opacity: 0;
    }
  }

  .animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
  }

  @keyframes rotateOutUpRight {
    0% {
      opacity: 1;
    }

    to {
      transform: rotate(90deg);
      opacity: 0;
    }
  }

  .animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
  }

  @keyframes hinge {
    0% {
      animation-timing-function: ease-in-out;
    }

    20%,
    60% {
      transform: rotate(80deg);
      animation-timing-function: ease-in-out;
    }

    40%,
    80% {
      transform: rotate(60deg);
      animation-timing-function: ease-in-out;
      opacity: 1;
    }

    to {
      transform: translate3d(0, 700px, 0);
      opacity: 0;
    }
  }

  .animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left;
  }

  @keyframes jackInTheBox {
    0% {
      opacity: 0;
      transform: scale(0.1) rotate(30deg);
      transform-origin: center bottom;
    }

    50% {
      transform: rotate(-10deg);
    }

    70% {
      transform: rotate(3deg);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .animate__jackInTheBox {
    animation-name: jackInTheBox;
  }

  @keyframes rollIn {
    0% {
      opacity: 0;
      transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }

    to {
      opacity: 1;
      transform: translateZ(0);
    }
  }

  .animate__rollIn {
    animation-name: rollIn;
  }

  @keyframes rollOut {
    0% {
      opacity: 1;
    }

    to {
      opacity: 0;
      transform: translate3d(100%, 0, 0) rotate(120deg);
    }
  }

  .animate__rollOut {
    animation-name: rollOut;
  }

  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
      opacity: 1;
    }
  }

  .animate__zoomIn {
    animation-name: zoomIn;
  }

  @keyframes zoomInDown {
    0% {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomInDown {
    animation-name: zoomInDown;
  }

  @keyframes zoomInLeft {
    0% {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomInLeft {
    animation-name: zoomInLeft;
  }

  @keyframes zoomInRight {
    0% {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomInRight {
    animation-name: zoomInRight;
  }

  @keyframes zoomInUp {
    0% {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomInUp {
    animation-name: zoomInUp;
  }

  @keyframes zoomOut {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
      opacity: 0;
    }
  }

  .animate__zoomOut {
    animation-name: zoomOut;
  }

  @keyframes zoomOutDown {
    40% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom;
  }

  @keyframes zoomOutLeft {
    40% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
      opacity: 0;
      transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
  }

  .animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center;
  }

  @keyframes zoomOutRight {
    40% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
      opacity: 0;
      transform: scale(0.1) translate3d(2000px, 0, 0);
    }
  }

  .animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center;
  }

  @keyframes zoomOutUp {
    40% {
      opacity: 1;
      transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
      opacity: 0;
      transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
  }

  .animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom;
  }

  @keyframes slideInDown {
    0% {
      transform: translate3d(0, -100%, 0);
      visibility: visible;
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__slideInDown {
    animation-name: slideInDown;
  }

  @keyframes slideInLeft {
    0% {
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__slideInLeft {
    animation-name: slideInLeft;
  }

  @keyframes slideInRight {
    0% {
      transform: translate3d(100%, 0, 0);
      visibility: visible;
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__slideInRight {
    animation-name: slideInRight;
  }

  @keyframes slideInUp {
    0% {
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }

    to {
      transform: translateZ(0);
    }
  }

  .animate__slideInUp {
    animation-name: slideInUp;
  }

  @keyframes slideOutDown {
    0% {
      transform: translateZ(0);
    }

    to {
      visibility: hidden;
      transform: translate3d(0, 100%, 0);
    }
  }

  .animate__slideOutDown {
    animation-name: slideOutDown;
  }

  @keyframes slideOutLeft {
    0% {
      transform: translateZ(0);
    }

    to {
      visibility: hidden;
      transform: translate3d(-100%, 0, 0);
    }
  }

  .animate__slideOutLeft {
    animation-name: slideOutLeft;
  }

  @keyframes slideOutRight {
    0% {
      transform: translateZ(0);
    }

    to {
      visibility: hidden;
      transform: translate3d(100%, 0, 0);
    }
  }

  .animate__slideOutRight {
    animation-name: slideOutRight;
  }

  @keyframes slideOutUp {
    0% {
      transform: translateZ(0);
    }

    to {
      visibility: hidden;
      transform: translate3d(0, -100%, 0);
    }
  }

  .animate__slideOutUp {
    animation-name: slideOutUp;
  }

  @keyframes anim_gradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes anim_ring {
    0% {
      opacity: 1;
      width: 0px;
      height: 0px;
    }

    40% {
      width: var(--ringArea);
      height: var(--ringArea);
      opacity: 0;
    }

    41% {
      opacity: 0;
      width: var(--ringArea);
      height: var(--ringArea);
    }

    100% {
      opacity: 0;
      width: var(--ringArea);
      height: var(--ringArea);
    }
  }

  @keyframes anim_ring_1 {
    0% {
      opacity: 1;
      width: 0px;
      height: 0px;
    }

    30% {
      width: var(----ringArea1);
      height: var(----ringArea1);
      opacity: 0;
    }

    31% {
      opacity: 0;
      width: var(----ringArea1);
      height: var(----ringArea1);
    }

    100% {
      opacity: 0;
      width: var(----ringArea1);
      height: var(----ringArea1);
    }
  }

  @keyframes zoomin {
    0% {
      transform: scale(0.8);
      opacity: 1;
    }

    100% {
      transform: scale(2.2);
      opacity: 0.1;
    }
  }

  @keyframes zoomout {
    0% {
      transform: scale(0.8);
      opacity: 1;
    }

    100% {
      transform: scale(1.1);
      opacity: 0.3;
    }
  }

  @keyframes rotate {
    0% {
      transform: rotate(0);
    }

    10% {
      transform: rotate(-25deg);
    }

    20% {
      transform: rotate(25deg);
    }

    30% {
      transform: rotate(-25deg);
    }

    40% {
      transform: rotate(25deg);
    }

    50% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(0);
    }
  }

  @keyframes anim_scroll_dtv {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    80% {
      transform: translate(0, 20px);
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }

  @keyframes anim_textdtv {
    to {
      background-position: 200% center;
    }
  }

  @keyframes shake {

    10%,
    90% {
      transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
      transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
      transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
      transform: translate3d(4px, 0, 0);
    }
  }

  html,
  body.archive,
  body.category,
  body.search {
    background-color: var(--colorBg) !important;
    color: #fff;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .heading-font {
    color: var(--colorMain);
  }

  html.fp-enabled,
  .fp-enabled body {
    margin: 0 !important;
  }

  html::-webkit-scrollbar {
    width: 0 !important;
  }

  div::-webkit-scrollbar {
    width: 6px;
    background-color: #ddd;
  }

  html::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.6509803922);
    border-radius: 5px;
  }

  html.has-off-canvas,
  div.has-off-canvas {
    overflow: hidden;
  }

  body {
    font-family: var(--fontContent);
    font-size: 15px;
    line-height: 1.5;
    background: var(--colorBg);
    color: #fff;
  }

  body.home {
    background: var(--colorBg);
  }

  body.home .footer-wrapper {
    display: none !important;
  }

  body.home .header-wrapper,
  body.home .header-bg-color {
    background: none !important;
  }

  body.home .section-footer-bg {
    border: none;
    border-radius: 0;
  }

  body.archive,
  body.category,
  body.search {
    padding-top: 0 !important;
  }

  body.archive .page-wrapper,
  body.category .page-wrapper,
  body.search .page-wrapper {
    padding-top: 0;
  }

  .header-wrapper,
  .header-bg-color {
    background: none !important;
  }

  .nav-sidebar>li>a {
    color: #c5c5c5;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
  }

  .nav-sidebar>li.current_page_item a,
  .nav-sidebar>li:hover a {
    color: #F89625 !important;
    font-weight: 600;
  }

  .nav-sidebar>li:hover>a {
    padding-left: 40px !important;
  }

  .nav-sidebar.nav-vertical>li+li {
    border-top: 1px solid rgba(236, 236, 236, 0.1294117647);
  }

  .nav>li>a>i.icon-menu,
  body.home .icon-menu {
    font-size: 30px !important;
    background: var(--BgGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
  }

  .nav>li>a>i.icon-search,
  body.home .icon-search {
    font-size: 18px !important;
    background: var(--BgGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
  }

  #mceu_27-body {
    display: flex !important;
    flex-direction: row;
    overflow: hidden;
  }

  .header,
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .header-wrapper.stuck,
  .header-shadow .header-wrapper,
  .layout-shadow #wrapper {
    box-shadow: none;
  }

  #fullpage>.section {
    padding: 0;
    width: 100%;
    height: 100%;
  }

  .header-main .header-inner.container {
    width: 100%;
    max-width: 100%;
  }

  .mfp-ready .mfp-close {
    top: 10px;
    right: 10px;
    font-size: 62px;
    text-decoration: none;
    mix-blend-mode: unset;
  }

  .mfp-ready .mfp-close svg {
    fill: #eed47b;
    color: #eed47b;
    transition: 0.4s;
  }

  .mfp-ready .mfp-close:hover svg {
    transform: rotate(180deg);
  }

  .slider-homes-tfh .flickity-viewport {
    height: 100vh !important;
  }

  .slider-homes-tfh .img .img-inner {
    padding-top: 100% !important;
  }

  .slider-homes-tfh .img .img-inner img {
    height: 100vh !important;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .banner_box {
    padding: 20px;
    margin: 0 15px;
    color: #fff;
    border-radius: 10px;
    position: relative;
  }

  .banner_box ._title {
    font-family: var(--fontTitleSub);
    font-weight: 600;
    font-size: 52px;
    line-height: 64px;
    text-transform: uppercase;
  }

  .banner_box ._big {
    font-family: var(--fontTitleSub);
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    margin-top: 10px;
    text-transform: uppercase;
  }

  .banner_box a {
    color: #fff;
  }

  .banner_box.bg_white {
    background-color: rgba(255, 255, 255, 0.9019607843);
    color: #333;
  }

  .banner_box_cloud {
    position: relative;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 40px 20px;
  }

  .banner_box_cloud:before {
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(230, 131, 131, 0.1411764706) 0, rgba(92, 59, 136, 0.4901960784) 50%, rgba(230, 131, 131, 0.1411764706) 100%);
    filter: blur(50px);
    opacity: 0.8;
    z-index: -1;
  }

  .banner_box_cloud:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/cloud-2.png);
    opacity: 1;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .banner_box_cloud .section-desc {
    text-shadow: 1px 0px 1px #676767;
  }

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--fontTitle);
    font-weight: 600;
  }

  .section_title,
  .section-title {
    font-size: var(--fontSizeXS);
    font-weight: 600 !important;
    line-height: 48px;
    text-transform: uppercase;
    display: block;
    background: var(--BgGradientText);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section_title .thin,
  .section-title .thin {
    font-size: 28px;
    line-height: 48px;
    font-weight: 500;
  }

  .section_title.center,
  .section-title.center {
    text-align: center;
  }

  .section_title .hide-md,
  .section-title .hide-md {
    display: none;
  }

  .section_sub_title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-top: 15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  }

  .section-title span {
    font-family: var(--fontTitle);
    font-size: var(--fontSizeXS);
    text-align: left;
    z-index: 2;
    margin-bottom: 15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .st-title-line {
    font-family: var(--fontTitle);
    font-size: var(--fontSizeXS);
    text-align: left;
    z-index: 2;
  }

  .st-title-line.pd-15px {
    padding: 15px;
  }

  .st-title-line ._title {
    font-family: var(--fontTitleSub);
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
  }

  .st-title-line ._big {
    font-family: var(--fontTitle);
    font-size: var(--fontSizeXS);
    line-height: 1.5;
    font-weight: 600 !important;
    text-transform: uppercase;
    display: inline-block;
    width: auto;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .st-title-line ul {
    font-size: 15px;
  }

  .st-title-line._center {
    text-align: center;
  }

  .st-title-line._center ._button_wrap {
    text-align: center;
  }

  .list-icon-tq .col-inner {
    display: grid;
    grid-template: auto/auto auto;
    grid-gap: 25px 15px;
  }

  .icon-tq {
    margin: 10px 0;
  }

  .icon-tq .icon-box-img {
    width: 50 !important;
    height: 50 !important;
  }

  .icon-tq .icon-box-text {
    padding: 5px 5px 5px 15px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .icon-tq .icon-box-text h5 {
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: none;
    font-weight: 400;
    color: #fff;
  }

  .icon-tq .icon-box-text h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
    opacity: 1;
  }

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

  .text-dtv-animation ._title {
    color: #fff;
    font-family: var(--fontTitleSub);
    font-size: 64px;
    font-weight: 600;
    line-height: 94px;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(to right, #d4a655 20%, #f6e286 50%, #d4a655 80%);
    background-size: auto auto;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: anim_textdtv 2s linear infinite;
  }

  .bg-pattern {
    background-image: url(../imgs/bg-pattern.png);
    background-color: var(--colorBg) !important;
    background-repeat: repeat-x;
    background-size: contain;
  }

  .bg-partern-logo-gray {
    background-image: url(../imgs/bg-pattern-logo-gray.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    background-color: #fff !important;
  }

  .bg-gray-line {
    background-image: url(../imgs/bg-gray-line.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    background-color: #fff !important;
  }

  .bg-gradient-left .fp-tableCell {
    position: relative;
  }

  .bg-gradient-left .fp-tableCell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(100% 340.83% at 0% 50%, #043850 0%, #043850 7.29%, rgba(29, 86, 78, 0) 100%, rgba(29, 86, 78, 0.2) 100%);
    z-index: 1;
  }

  .mt-15 {
    margin-top: 15px;
  }

  .mr-15 {
    margin-right: 15px;
  }

  .dmtt-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .dmtt-nav li {
    list-style: none;
    display: inline-block;
    margin: 0 15px !important;
  }

  .dmtt-nav li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    color: #e8ca72;
    display: block;
    text-align: center;
  }

  .dmtt-nav li a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: -webkit-linear-gradient(#e7d37c, #d3a555);
    transform: translateX(-50%);
    transition: 0.3s;
  }

  .dmtt-nav li a:hover:before {
    width: 100%;
  }

  .dtv-tab-mb .nav-tabs+.tab-panels {
    border-radius: 10px;
  }

  .dtv-tab-mb .nav-tabs>li>a {
    border-radius: 10px 10px 0 0;
  }

  .dtv-tab-mb .nav-tabs>li.active>a {
    border-top: 3px solid;
    border-top-color: #ef4d23;
  }

  .badge.post-date {
    top: 0;
    left: 0;
    height: 3em;
    width: 3.8em;
  }

  .badge.post-date .badge-inner {
    border: 0;
    border-radius: 0;
  }

  .badge.post-date .badge-inner .post-date-day {
    font-size: 28px;
    font-weight: 400;
  }

  .badge.post-date .badge-inner .post-date-month {
    font-weight: 500;
  }

  .has-hover:hover .badge-outline .badge-inner {
    background: var(--BgGradientText);
  }

  .col,
  .gallery-item,
  .columns {
    padding-bottom: 25px;
  }

  .ft-ul-menu {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 6px 15px;
  }

  .wpcf7-form .wpcf7-spinner {
    display: none !important;
  }

  .dktt-prj .form-gr {
    width: 100%;
  }

  .dktt-prj .form-gr label {
    display: block;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
  }

  .dktt-prj .form-gr input {
    width: 100%;
    background: none;
    outline-style: none;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5254901961);
    border-radius: 50px;
    padding: 18px 15px;
  }

  .dktt-prj .form-gr input::-moz-placeholder {
    color: #fff;
  }

  .dktt-prj .form-gr input::placeholder {
    color: #fff;
  }

  .dktt-prj .form-gr .btn-dangki {
    padding: 20px 15px;
    background: #fff;
    color: var(--colorSub);
    border: none;
    border-radius: 50px;
    line-height: 0;
  }

  .dktt-prj.light input::-moz-placeholder {
    color: #333;
  }

  .dktt-prj.light input,
  .dktt-prj.light input::placeholder {
    color: #333;
  }

  .light .dktt-prj .form-gr input::-moz-placeholder {
    color: #333;
  }

  .light .dktt-prj .form-gr input,
  .light .dktt-prj .form-gr input::placeholder {
    color: #333;
  }

  .absolute-footer {
    padding: 0;
  }

  .footer-wrapper {
    background-color: var(--colorBg);
  }

  .section-footer-bg .section-bg {
    background-size: cover !important;
    background-position: center right;
  }

  .button.icon.circle {
    border-color: #d4a655;
    color: #d4a655;
    bottom: 15px;
    margin: 0;
  }

  .button.icon.circle:hover {
    color: #fff;
  }

  .dtv-header-banner {
    position: relative;
    min-height: 350px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
  }

  .dtv-header-banner>* {
    z-index: 1;
  }

  .dtv-header-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    background: radial-gradient(100% 340.83% at 0% 50%, #043850 0%, #043850 7.29%, rgba(29, 86, 78, 0) 100%, rgba(29, 86, 78, 0.2) 100%);
    opacity: 0.4;
    z-index: 0;
  }

  .dtv-header-banner ._title_page {
    text-align: center;
    color: #fff;
  }

  .dtv-header-banner .dtv_breadcrumb {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1215686275);
    padding: 5px 20px;
    border-radius: 10px 10px 0 0;
    max-width: 100%;
    transform: translateX(-50%);
  }

  .dtv-header-banner .dtv_breadcrumb * {
    color: #d6d6d6;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    opacity: 1;
  }

  .dtv-header-banner .dtv_breadcrumb a:hover {
    color: #d4a655;
  }

  .bg-right-contain .section-bg {
    background-size: contain !important;
    background-position: right bottom;
    background-color: #fff;
  }

  .vt-item {
    border-radius: 10px;
    background-color: #f7f7f7;
    padding: 15px;
  }

  .vt-item .box-image {
    border-radius: 50%;
    border: 5px solid #d6d6d6;
  }

  .vt-item .box-text-inner h4 {
    font-size: 36px;
    font-weight: 600;
  }

  .vt-item .box-text-inner p {
    font-size: 15px;
  }

  .uk-grid {
    -ms-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .uk-grid>* {
    display: block;
    width: 25%;
  }

  .uk-grid .item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .uk-grid .item .number {
    justify-content: center;
    border: 1px solid #d4a655;
    border-radius: 50%;
    background: #fff;
    width: 60px;
    height: 60px;
    color: #d4a655;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    line-height: 60px;
  }

  .uk-grid .item .name {
    flex: 1;
    padding-left: 10px;
    line-height: 1.3;
  }

  .blog-archive .post-item .col-inner {
    height: 100% !important;
  }

  .off-canvas-center .nav-vertical>li>a {
    font-size: 1.3em;
    padding: 10px;
  }

  .off-canvas-center .nav-vertical>li>a:hover,
  .off-canvas-center .nav-vertical>li>a.active {
    color: var(--colorSub);
    background: var(--BgGradientText);
    text-shadow: var(--textShadow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .off-canvas-center .nav-vertical>li.current_page_item a {
    color: var(--colorSub);
    background: var(--BgGradientText);
    text-shadow: var(--textShadow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  body.archive,
  body.category,
  body.search {
    padding-top: 80px;
    background-color: #05778A;
  }

  body.archive .html.custom.html_topbar_left,
  body.category .html.custom.html_topbar_left,
  body.search .html.custom.html_topbar_left {
    display: none;
  }

  body.single-post .html.custom.html_topbar_left {
    display: none;
  }

  body.post-template-default {
    background-color: #05778A !important;
  }

  body.post-template-default .page-wrapper {
    padding: 0;
  }

  .row_md_pl_100 {
    padding-left: 100px;
  }

  .row-37-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .row-37-flex .img-map-mb-mark {
    width: 35%;
    padding-left: 60px;
    overflow: hidden;
  }

  .row-37-flex .img-map-mb-mark .title-mb {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #d4a655;
    margin-top: 15px;
  }

  .row-37-flex .img-map-mb-wrap {
    width: 65%;
    max-width: 975px;
  }

  .img-map-mb-wrap {
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow: auto;
    position: relative;
  }

  .img-map-mb-wrap img {
    width: auto;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .img-map-mb-wrap .map-control {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-50%);
  }

  .img-map-mb-wrap .map-control .note {
    font-size: 11px;
    min-width: 182px;
  }

  .img-map-mb-wrap .map-control ._zoom_out {
    margin: 10px 0;
    cursor: pointer;
  }

  .img-map-mb-wrap .map-container {
    text-align: center;
    display: inline-block;
  }

  .box_data_info {
    display: none;
  }

  .mat_bang_wrap {
    position: relative;
  }

  .mat_bang_wrap .st-title-line {
    position: absolute;
    bottom: 10%;
    left: 30px;
  }

  .mat_bang_img_map {
    position: relative;
    text-align: center;
  }

  .mat_bang_img_map img {
    width: auto;
    max-width: -moz-max-content;
    max-width: max-content;
    max-height: 90vh;
    margin: 0 auto;
  }

  .mat_bang_img_map .box_show_info {
    position: absolute;
    left: 50%;
    top: 0;
    width: auto;
    padding: 10px;
    color: #000;
    font-size: 13px;
    border-radius: 10px;
    max-width: 320px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #c97b37 0%, #fdc06b 100%);
    font-weight: 500;
    text-transform: uppercase;
  }

  .mat_bang_img_map>div {
    margin: auto;
  }

  .mb_map_hover {
    display: inline-block;
    position: relative;
  }

  .mb_map_hover .map_img {
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .mb_map_hover .map_pin {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--BgGradientText);
    border: 1px solid rgba(255, 255, 255, 0.5607843137);
    border-radius: 0;
    transition: all 0.3s;
    cursor: pointer;
  }

  .mb_map_hover .map_pin .pin_icon {
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    line-height: 30px;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s;
    z-index: 1;
  }

  .mb_map_hover .map_pin .pin_icon::after {
    content: "";
    position: absolute;
    display: block;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7333333333);
    z-index: 0;
    animation-name: zoomout;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .mb_map_hover .map_pin .pin_content {
    display: none;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--BgGradientText);
    border-radius: 10px;
    border-bottom: 2px solid var(--colorMain);
    padding: 15px;
    min-width: 330px;
    max-width: 100%;
    max-height: 330px;
    z-index: 9;
    overflow: hidden auto;
  }

  .mb_map_hover .map_pin .pin_content * {
    color: #fff;
    text-align: justify;
    font-size: 12px;
  }

  .mb_map_hover .map_pin .pin_content h3 {
    font-size: 15px;
    text-transform: uppercase;
    margin: 0;
  }

  .mb_map_hover .map_pin .pin_content table {
    margin: 0;
  }

  .mb_map_hover .map_pin .pin_content table td {
    padding: 3px;
  }

  .mb_map_hover .map_pin:hover .pin_icon {
    transform: rotate(360deg);
  }

  .mb_map_hover .map_pin:hover .pin_content {
    display: block;
  }

  .modal-dtv {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 48, 112, 0.9215686275);
    transition: all 0.3s;
    z-index: 999;
  }

  .modal-dtv.active {
    display: flex;
    top: 0;
  }

  .modal-dtv .modal-bg {
    width: 500px;
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0;
  }

  .modal-dtv .modal-bg button.close-modal {
    position: absolute;
    top: -16px;
    right: -16px;
    margin: 0;
    color: #fff;
    padding: 0;
    background: rgba(143, 143, 143, 0.5607843137);
    border-radius: 50px;
    width: 36px;
    height: 30px;
    line-height: 0;
    display: block;
    overflow: hidden;
    transition: all 0.4s;
  }

  .modal-dtv .modal-bg button.close-modal:hover {
    transform: rotate(180deg);
  }

  .modal-dtv .modal-ct {
    width: 100%;
    padding: 20px;
    background: radial-gradient(100% 100% at 50% 0%, #003070 0%, rgba(0, 48, 112, 0.9215686275) 100%);
    max-height: 100%;
    overflow: auto;
    border: 1px solid var(--colorSub);
    border-radius: 20px;
    overflow: hidden;
  }

  .modal-dtv .modal-ct img {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    margin: 0 auto;
  }

  .modal-dtv .modal-ct * {
    color: #fff;
  }

  .modal-dtv .modal-ct .wpcf7-not-valid-tip {
    color: #b20000 !important;
  }

  .modal-dtv .modal-ct p {
    margin-bottom: 6px;
  }

  .modal-dtv .modal-ct .modal_title {
    font-family: var(--fontTitle);
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 100%;
    color: var(--colorSub);
    background: var(--BgGradientText);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  .wpcf7 .ajax-loader {
    margin: 0 auto;
    align-items: center;
    position: relative !important;
    background: none;
    border: 1px solid #e0bb67 !important;
  }

  .wpcf7 .ajax-loader::before {
    background-color: #ddb662 !important;
  }

  .wpcf7 .wpcf7-form.submitting input.wpcf7-submit {
    pointer-events: none !important;
    opacity: 0.5 !important;
  }

  .wpcf7 .wpcf7-form.submitting .ajax-loader {
    display: block !important;
    visibility: visible !important;
  }

  .hight_light_dtv {
    color: var(--colorSub);
    font-family: var(--fontTitleSub);
    font-size: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(to right, var(--colorMain) 20%, var(--colorSub2) 50%, var(--colorMain) 80%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: anim_textdtv 2s linear infinite;
    display: inline-block;
  }

  .icon-thuvien {
    margin-bottom: 30px;
    transition: 0.3s;
  }

  .icon-thuvien:hover {
    padding-left: 20px;
  }

  .icon-thuvien h4 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .icon-thuvien i {
    color: #fff;
  }

  .tv-banner-video {
    border-radius: 0px 30px;
    border: 3px solid #D5A856;
    padding: 3px;
    overflow: hidden;
  }

  .comments-area {
    display: none;
  }

  .is-divider {
    width: 46px;
    max-width: 46px;
    height: 1px;
    background: #d4d4d4;
  }

  .dtv_news_home .col-inner {
    box-shadow: none !important;
  }

  .dtv_news_home .col-inner .box {
    overflow: hidden;
    box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }

  .dtv_news_home .box-image>div {
    min-height: 126px;
  }

  .dtv_news_home._first .box-image>div {
    min-height: 292px;
  }

  .dtv_news_home .col.post-item .col-inner {
    overflow: hidden;
  }

  .dtv_news_home .box.box-vertical {
    display: flex;
  }

  .dtv_news_home .is-divider {
    display: none;
  }

  .dtv_news_home .post-title {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }

  .dtv_news_home .col-inner {
    position: relative;
  }

  .dtv_news_home .col-inner img {
    min-height: 224px;
  }

  .dtv_news_home .col-inner .box-text {
    position: relative;
    height: auto;
    align-items: center;
    padding: 15px 10px;
    /* background: var(--colorBgSub); */
    background: rgba(240, 248, 255, 0.3);
    position: absolute;
    bottom: 0;
  }

  .dtv_news_home .col-inner .box-text::after {
    content: " ";
    width: 0;
    height: 0;
    position: absolute;
    border-style: solid;
    border-width: 20px 20px 20px 0;
    border-color: transparent #fff transparent transparent;
    top: 50%;
    margin: -20px 0 0;
    left: -20px;
  }

  .dtv_news_home .col-inner:hover .box-text {
    background: var(--colorSub);
  }

  .dtv_news_home .col-inner:hover .box-text::after {
    border-color: transparent #F89625 transparent transparent;
  }

  .dtv_news_home .col-inner:hover .box-text * {
    color: #fff;
  }

  .box-gt-icon .icon-tq {
    margin: 25px 0;
  }

  .sec-vitri .video-bg {
    object-position: right center !important;
    -o-object-position: right center !important;
    object-fit: cover;
    -o-object-fit: cover;
  }

  .sec-vitri .col {
    border-radius: 0 20px 20px 0;
    padding: 0 !important;
  }

  .location_map_video {
    padding: 0;
  }

  .location_map_video video {
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center right;
    object-position: center right;
  }

  .img-90vh .img-inner {
    text-align: center;
  }

  .img-90vh img {
    max-height: 90vh;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
  }

  .tienich_img_anim {
    position: relative;
  }

  .tienich_img_anim::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border: 5px solid var(--colorMain);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: anim_ring 3s infinite;
    z-index: 2;
  }

  .tienich_img_anim::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #DA8B2A;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: anim_ring_1 3s infinite;
    z-index: 2;
  }

  .matbang-wrap {
    background: none !important;
  }

  .mfp-content .dark .form-flat input:not([type=submit]) {
    background: none;
    border: 0;
    color: #fff !important;
    font-size: 16px;
    padding: 25px;
    opacity: 1;
  }

  .mfp-content .dark .form-flat .icon-search {
    color: #fff !important;
  }

  .mfp-arrow {
    opacity: 0.5;
    background: -webkit-linear-gradient(#a06600, #bc9a60);
    border-radius: 0;
    border: 0;
  }

  .dark a:hover {
    color: #d4a655;
  }

  .btn-dangki {
    cursor: pointer;
  }

  .quick-ct-btn {
    position: fixed;
    left: 15px;
    bottom: 10px;
    z-index: 9;
  }

  .quick-ct-btn ul {
    margin: 0;
    display: flex;
    flex-direction: row;
  }

  .quick-ct-btn li {
    list-style: none;
    margin: 0;
  }

  .quick-ct-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--BgGradientText);
    position: relative;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: solid 2px #fff;
    margin: 5px;
    cursor: pointer;
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.2509803922);
    -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.2509803922);
    -moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.2509803922);
    transition: all 0.2s ease-in-out;
  }

  .quick-ct-btn a:hover {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
  }

  .quick-ct-btn a:hover span {
    visibility: visible;
    opacity: 1;
    right: 50px;
  }

  .quick-ct-btn a svg {
    fill: #fff !important;
  }

  .quick-ct-btn a .icon-phone {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: reverse;
    animation-name: rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
  }

  .quick-ct-btn a span {
    opacity: 0;
    display: none;
    background: #000;
    position: absolute;
    right: 40px;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding: 3px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #fff;
    font-size: 0.8em;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
  }

  .quick-ct-btn a span::after {
    content: "";
    width: 7px;
    height: 7px;
    background: #000;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .quick-ct-btn a.btn-hotline {
    position: relative;
  }

  .quick-ct-btn a.btn-hotline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: solid 1px #DA8B2A;
    animation-name: zoomin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
  }

  .quick-ct-btn a.btn-hotline::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: #DA8B2A;
    z-index: -1;
    animation-name: zoomout;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  .quick-ct-btn a.btn-yctv {
    width: auto;
    border-radius: 0;
    padding: 0 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    background-size: 200% 200%;
    animation: anim_gradient 10s ease infinite;
  }

  #logo {
    width: 7.5vw !important;
  }

  @media screen and (min-width: 991px) {
    #logo {
      width: 7.5vw !important;
      margin: 2em 2em;
    }
  }

  #logo a {
    display: inline-block;
    padding: 10px !important;
    background: none;
    text-align: left;
    overflow: hidden;
    background-size: 200% 200%;
    padding-left: 10px;
  }

  #logo a img {
    background: none;
    overflow: hidden;
    padding: 0 !important;
    width: 12.5vw !important;
    height: 100%;
    max-height: none;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .title-section-fixed {
    position: fixed;
    left: 15px;
    top: 50%;
    width: 400px;
    margin-top: 200px;
    text-align: center;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    z-index: 9;
  }

  .title-section-fixed ._text {
    display: inline-block;
    position: relative;
    padding: 0 10px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
    position: relative;
    background: var(--BgGradientText);
    background-size: auto auto;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: anim_textdtv 3s linear infinite;
  }

  .title-section-fixed ._text::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: 14px;
    width: 60px;
    height: 2px;
    background: var(--BgGradientText);
  }

  .title-section-fixed ._text::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: 14px;
    width: 60px;
    height: 2px;
    background: var(--BgGradientText);
  }

  .ds-canho {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .ds-canho li {
    display: inline-block;
    clear: both;
    margin: 10px !important;
    padding: 0;
  }

  .ds-canho li a {
    clear: both;
    display: block;
    padding: 10px 20px;
    border-radius: 0;
    background: -webkit-linear-gradient(#f6e286, #d4a655);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.4s;
  }

  .ds-canho li a:hover {
    background: -webkit-linear-gradient(#d4a655, #f6e286);
  }

  .badge.post-date {
    display: none;
  }

  .blog-share .is-divider {
    opacity: 0;
    padding: 15px;
  }

  .blog-share .button.icon.circle {
    margin: 2px;
  }

  .dtv-blog-single {
    padding-top: 100px !important;
    clear: both;
  }

  .dtv-blog-single article.post.type-post {
    max-width: 868px;
    margin: 0 auto;
  }

  .dtv-blog-single h2,
  .dtv-blog-single h3 {
    background: var(--BgGradientText);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .blog_home .box-image {
    border: 2px solid var(--colorMain);
  }

  .blog_home .is-divider {
    display: none;
  }

  .wp-caption.aligncenter {
    text-align: center;
  }

  .wp-caption.aligncenter img {
    margin: 0 auto;
    width: 100%;
  }

  .col,
  .gallery-item,
  .columns {
    padding-bottom: 20px;
  }

  .zoom_mb_element {
    overflow: hidden;
  }

  .ani-typing {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    -webkit-animation: anim_typing 3s steps(21, end), anim_blink_caret 0.6s step-end infinite alternate;
  }

  .ani-scroll-btn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 20px;
    height: 40px;
    margin-left: -15px;
    border: 1px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
    z-index: 9;
    cursor: pointer;
  }

  .ani-scroll-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    width: 6px;
    height: 12px;
    margin-left: -3px;
    background: #fff;
    border-radius: 50px;
    animation: anim_scroll_dtv 4s infinite;
    box-sizing: border-box;
  }

  .text-box-bh {
    height: 100%;
    padding: 60px 10px;
  }

  .text-box-bh h2 {
    font-size: 5em;
    text-align: center !important;
    letter-spacing: 6px;
    line-height: 100px !important;
  }

  .text-box-bh .section_sub_title {
    text-align: center;
    font-size: 24px;
    text-shadow: 2px 2px 2px #6a6a6a;
    font-weight: 600;
  }

  .go-details {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px;
    z-index: 10;
  }

  .go-details::before {
    background: url(../imgs/go.png) center top no-repeat;
    height: 100%;
    transition: all 0.3s ease-in-out;
  }

  .go-details::after {
    background: url(../images/go.png) center bottom no-repeat;
    height: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }

  .box-news-home {
    overflow: hidden;
    width: 60%;
    margin: 0 0 20px;
    padding: 0 20px 0 0;
  }

  .box-news-home:nth-child(1) {
    width: 40%;
    margin: 0;
  }

  .box-news-home:nth-child(1) .box-news-home:nth-child(1) .pic-news-home {
    height: calc(42.5531914894vh - 40px);
    max-height: 340px;
    min-height: 280px;
    width: 100%;
  }

  .text-news-home {
    float: right;
    padding: 10px 20px;
    width: 50%;
    display: block;
    background-color: #fff;
    height: 16.6666666667vh;
    max-height: 150px;
    min-height: 120px;
    position: relative;
  }

  .show_mobile {
    display: none;
  }

  .section_mb .show_mobile {
    padding: 15px;
  }

  .btn_hotline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 48px;
    margin: 0 0 0 15px;
    padding: 0;
    opacity: 1;
    z-index: 6;
  }

  .btn_hotline .call {
    width: 46px;
    height: 46px;
    position: relative;
    cursor: pointer;
    display: inline-block;
  }

  .btn_hotline .call::after {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../imgs/icon/call.svg) center center/90% no-repeat no-repeat;
  }

  .btn_hotline .text {
    width: auto;
    position: relative;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }

  .btn_hotline:hover .text {
    font-weight: 700;
    background: var(--BgGradientText);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn_hotline:hover .call::after {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
  }

  .btn_hotline._pop .text {
    font-size: 30px;
    background: var(--BgGradientText);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn_modal_contact {
    width: auto;
    position: relative;
    padding: 0;
    padding-left: 48px;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .btn_modal_contact::before {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../imgs/icon/sent.svg) center center/90% no-repeat no-repeat;
  }

  .btn_modal_contact:hover {
    background: var(--BgGradientText);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn_modal_contact:hover::before {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
  }

  [class^=dtv_amim_],
  [class*=dtv_amim-] {
    opacity: 0 !important;
  }

  .delay1 {
    transition-delay: 0.6s !important;
  }

  .delay2 {
    transition-delay: 0.8s !important;
  }

  .delay3 {
    transition-delay: 1s !important;
  }

  .delay4 {
    transition-delay: 1.2s !important;
  }

  .delay5 {
    transition-delay: 1.4s !important;
  }

  .delay6 {
    transition-delay: 1.6s !important;
  }

  .delay7 {
    transition-delay: 1.8s !important;
  }

  .delay8 {
    transition-delay: 2s !important;
  }

  [class^=dtv_fadeIn],
  [class*=dtv_fadeIn] {
    opacity: 0;
    transition: all ease-out 1.1s;
  }

  .dtv_fadeIn {
    transform: none;
  }

  .dtv_fadeInLeft {
    transform: translate3d(-100%, 0, 0);
  }

  .dtv_fadeInRight {
    transform: translate3d(100%, 0, 0);
  }

  .dtv_fadeInUp {
    transform: translate3d(0, -100%, 0);
  }

  .dtv_fadeInDown {
    transform: translate3d(0, 100%, 0);
  }

  .footer-wrapper [class^=dtv_fadeIn],
  .footer-wrapper [class*=dtv_fadeIn] {
    transform: none !important;
    opacity: 1 !important;
  }

  .tooltipster-base {
    max-width: 260px !important;
    background: rgba(255, 255, 255, 0.9294117647);
    border: 2px solid var(--colorMain);
    color: var(--colorMain);
  }

  .tooltipster-base .tooltipster-arrow-top span {
    border-color: #F89625;
  }

  .table-tongquan * {
    color: var(--colorTextWhite);
  }

  .table-tongquan th:last-child,
  .table-tongquan td:last-child {
    text-align: right;
  }

  .table-tongquan td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(236, 236, 236, 0.0509803922);
  }

  :root {
    --animate-duration: 800ms;
    --animate-delay: 2s;
  }

  .box-ani {
    left: 0;
    float: right;
    width: 100%;
    text-align: left;
    max-width: 560px;
    padding: 25px;
    position: relative;
    color: var(--colorTextWhite);
    border-radius: 30px;
    background: rgba(0, 48, 112, 0.5803921569);
    box-shadow: var(--textShadow);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    opacity: 0;
  }

  .box-ani::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .box-ani::after {
    content: "";
    position: absolute;
    clear: both;
    right: -15px;
    top: -15px;
    width: calc(100% + 15px);
    height: calc(100% + 30px);
    border-left: 0;
    z-index: -1;
  }

  .box-ani._right {
    left: auto;
    right: 0;
    float: right;
  }

  .box-ani._right::after {
    right: 0;
    border-right: 0;
  }

  .box-ani ._content {
    color: #fff;
    max-height: 60vh;
    overflow: auto;
    font-size: 15px;
  }

  .box-ani ._content * {
    color: inherit;
  }

  .box-ani ._content th,
  .box-ani ._content td {
    border-bottom: 0;
    border-bottom: 0;
    font-size: 14px;
    min-width: 130px;
    text-align: left;
  }

  .box-ani._blue::before {
    background: linear-gradient(90deg, rgba(4, 56, 80, 0.8) 0%, rgba(4, 56, 80, 0.8) 45%, rgba(4, 56, 80, 0.6392156863) 100%);
  }

  .box-ani._no_bg {
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
  }

  .box-ani._no_bg::after,
  .box-ani._no_bg::before {
    display: none;
  }

  .active_anim .box-ani {
    opacity: 1;
  }

  .active_anim .box-ani::before {
    animation: fadeInLeft;
    animation-duration: 1.7s;
  }

  .active_anim .box-ani::after {
    animation: zoomIn;
    animation-duration: 2s;
  }

  .active_anim .box-ani._right::before {
    animation: fadeInRight;
    animation-duration: 1.7s;
  }

  .active_anim .box-ani ._small {
    animation: fadeInUp;
    animation-duration: 1.3s;
  }

  .active_anim .box-ani ._big {
    animation: fadeInUp;
    animation-duration: 1.5s;
  }

  .active_anim .box-ani .sec_title {
    animation: fadeInUp;
    animation-duration: 1.2s;
  }

  .active_anim .box-ani ._content {
    animation: fadeInUp;
    animation-duration: 1.5s;
  }

  .active_anim .box-ani ._button_wrap {
    animation: fadeInUp;
    animation-duration: 2s;
  }

  .section {
    position: relative;
    background: var(--colorBg) !important;
  }

  .section._color_main {
    background: var(--colorMain);
  }

  .section .fp-tableCell::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    z-index: 1;
  }

  .section .fp-tableCell::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 2s;
    z-index: 2;
    background: var(--colorBg);
  }

  .section.active_anim [class^=dtv_fadeIn],
  .section.active_anim [class*=dtv_fadeIn] {
    opacity: 1 !important;
  }

  .section.active_anim .dtv_fadeInLeft,
  .section.active_anim .dtv_fadeInRight,
  .section.active_anim .dtv_fadeInUp,
  .section.active_anim .dtv_fadeInDown {
    transform: translate3d(0, 0, 0);
  }

  .section.active_anim .fp-tableCell::after {
    opacity: 0.8;
    transition: all 2s;
  }

  .section.active_anim .fp-tableCell::before {
    opacity: 0;
    transition: all 1s;
    animation-delay: 0.5s;
  }

  .slider-tienich .flickity-page-dots .dot {
    border: 4px solid #fff;
  }

  .slider-tienich .flickity-page-dots .dot.is-selected {
    background-color: var(--colorMain);
  }

  .slider-tienich .flickity-button {
    width: 60px !important;
  }

  .banner-tienich .banner {
    opacity: 0.8;
  }

  .banner-tienich .banner.is-selected {
    opacity: 1;
  }

  ._text_box_ti {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843) 20%, rgba(0, 0, 0, 0) 100%);
  }

  ._text_box_ti h3 {
    font-size: 1.6vw;
    font-weight: 600;
    line-height: 1.3;
  }

  .slider-style-shadow .flickity-slider>*:not(.is-selected) {
    opacity: 0.6;
  }

  .img-logo-cdt img {
    height: 100px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .mapify-GPU {
    transform: none;
  }

  .blog-wrapper {
    background-color: var(--colorBg);
  }

  .blog-wrapper * {
    color: #fff;
  }

  .copyright-footer {
    display: none;
  }

  .has-image[data-image-fit=contain] .fancybox__image {
    border-radius: 12px;
  }

  .sec_title {
    font-family: var(--fontTitle);
    font-size: 3.6vw;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .menu_fullpage {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    min-width: 150px;
    width: 150px;
    opacity: 0.6;
    z-index: 9;
  }

  .menu_fullpage::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 50%;
    width: 1px;
    height: calc(100% - 50px);
    background: var(--colorTextWhite);
    transform: translateY(-50%);
    opacity: 0.8;
  }

  .menu_fullpage>a {
    background: none;
    padding-left: 50px;
    text-align: left;
    color: rgba(255, 255, 255, 0);
    font-size: var(--fontSizeSmall);
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    height: 50px;
    width: 100%;
    line-height: 50px;
    display: block;
    border: none;
    position: relative;
    transition: all 0.3s;
    opacity: 0.8;
    z-index: 1;
  }

  .menu_fullpage>a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--colorTextWhite);
    visibility: visible;
  }

  .menu_fullpage>a::after {
    position: absolute;
    content: "";
    left: -6px;
    top: 50%;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--colorSub);
    opacity: 0;
    transition: all 0.4s;
  }

  .menu_fullpage>a:hover,
  .menu_fullpage>a.active {
    color: var(--colorTextWhite);
    padding-left: 20px;
    visibility: visible;
    opacity: 1;
  }

  .menu_fullpage>a:hover::before,
  .menu_fullpage>a.active::before {
    background: var(--colorMain);
  }

  .menu_fullpage>a:hover::after,
  .menu_fullpage>a.active::after {
    opacity: 1 !important;
  }

  .menu_fullpage.active {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 10px;
    transform: none;
    cursor: pointer;
    z-index: 10;
  }

  .menu_fullpage.active .menu_close {
    display: block;
  }

  .box_copyright {
    width: auto;
    display: none;
    height: 48px;
    position: fixed;
    margin: 0;
    padding: 0;
    left: 15px;
    bottom: 0;
    opacity: 1;
    z-index: 6;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-transform: uppercase;
  }

  .box_copyright .copyright {
    font-family: var(--fontTitleSub);
    font-size: 12px;
    font-weight: 200;
    position: relative;
    width: auto;
    text-align: right;
    display: block;
    padding: 20px 0;
  }

  .box_copyright .copyright b {
    font-weight: 600;
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .box_copyright ._social {
    min-width: 150px;
  }

  .box_copyright ._social a {
    margin: 0 10px;
  }

  .box_copyright .social {
    width: 40px;
    height: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
  }

  .box_copyright .social._zalo {
    background: url(../imgs/icon/zalo.svg) center center/90% no-repeat no-repeat;
  }

  .box_copyright .social._facebook {
    background: url(../imgs/icon/facebook.png) center center/90% no-repeat no-repeat;
  }

  .box_copyright .social._youtube {
    background: url(../imgs/icon/youtube.png) center center/90% no-repeat no-repeat;
  }

  .vitri_img_anim {
    position: relative;
  }

  .vitri_img_anim img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 0;
  }

  .vitri_img_anim::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border: 5px solid var(--colorMain);
    top: 41%;
    left: 54%;
    transform: translate(-50%, -50%);
    animation: anim_ring 3s infinite;
    z-index: 2;
  }

  .vitri_img_anim::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #DA8B2A;
    top: 41%;
    left: 54%;
    transform: translate(-50%, -50%);
    animation: anim_ring_1 3s infinite;
    z-index: 2;
  }

  .mySwiper {
    min-height: 100vh;
  }

  .mySwiper .swiper-wrapper {
    height: 100%;
    min-height: 100vh;
  }

  .mySwiper .swiper-slide {
    min-height: 100vh;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .mySwiper .swiper-slide img {
    height: 100vh;
    min-width: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: grab;
  }

  .mySwiper .swiper-slide ._title {
    position: absolute;
    display: inline-block;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .mySwiper .swiper-slide::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 25vh;
    background: linear-gradient(180deg, rgba(17, 15, 59, 0) 0%, rgba(17, 15, 59, 0.5803921569) 100%);
    transform: translate(-50%, 0%);
    z-index: 1;
  }

  .mySwiper .swiper-button-prev {
    top: auto;
    bottom: 80px;
    left: 0;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    border: 4px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .mySwiper .swiper-button-prev::after {
    content: "";
    font-size: 0;
    position: absolute;
    top: 50%;
    right: 0;
    width: 32px;
    height: 32px;
    background-image: url(../imgs/icon/prev.svg);
    transform: translate(-15%, -50%);
  }

  .mySwiper .swiper-button-prev:hover {
    border: 4px solid rgba(255, 255, 255, 0.3294117647);
  }

  .mySwiper .swiper-button-next {
    top: auto;
    bottom: 80px;
    right: 0;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    border: 4px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    transform: translateX(50%);
    transition: all 0.4s;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .mySwiper .swiper-button-next::after {
    content: "";
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url(../imgs/icon/next.svg);
    transform: translate(15%, -50%);
  }

  .mySwiper .swiper-button-next:hover {
    border: 4px solid rgba(255, 255, 255, 0.3294117647);
  }

  .mySwiper .autoplay-progress {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    color: var(--colorTextWhite);
  }

  .mySwiper .autoplay-progress svg {
    stroke: var(--colorTextWhite);
  }

  .mySwiper .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--colorTextWhite);
    transition: all 0.4s;
  }

  .mySwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 24px;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }

  .quick_contact {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 9;
  }

  .quick_contact a {
    margin-left: 20px;
  }

  .quick_contact a .text {
    color: var(--colorTextWhite);
  }

  .button-fancy {
    display: inline-flex;
    width: auto;
    height: 50px;
    align-items: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 2px 2px 4px 0px rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.4s;
  }

  .button-fancy .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.6s;
  }

  /* @media screen and (max-width: 991px) {
    .quick_contact .button-fancy .icon {
      width: 50px;
      height: 50px;
    }
  } */

  .button-fancy .icon.arrow {
    background-image: url(../imgs/icon/readmore.svg);
  }

  .button-fancy .icon.tel {
    background-image: url(../imgs/icon/tel.svg);
  }

  .button-fancy .icon.email {
    background-image: url(../imgs/icon/email.svg);
  }

  .button-fancy .icon.vr360 {
    background-image: url(../imgs/icon/360.svg);
  }

  .button-fancy .icon.document {
    background-image: url(../imgs/icon/document.svg);
  }

  .button-fancy .text {
    font-family: var(--fontTitleSub);
    color: var(--colorTextWhite);
    text-transform: uppercase;
    font-size: 14px;
    padding: 4px 15px 0 7px;
    line-height: 36px;
  }

  .button-fancy:hover {
    background: var(--BgGradientText);
  }

  .button-fancy:hover .icon {
    transform: rotate(360deg);
  }

  .button-fancy:hover .text {
    color: var(--colorTextWhite);
  }

  .wrap_mat_bang {
    display: flex;
    flex-direction: row;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .wrap_mat_bang ._content {
    padding-left: 20px;
    max-width: 30vw;
  }

  .wrap_mat_bang .mat_bang_img_map {
    position: relative;
  }

  .map_svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .map_svg g:hover {
    stroke: red;
    fill: red;
  }

  .mapify-hover {
    fill: rgba(229, 85, 37, 0.5960784314) !important;
    stroke: var(--colorTextWhite) !important;
    stroke-width: 4 !important;
  }

  .mapify-popOver {
    padding: 10px !important;
  }

  .mapify-popOver .mapify-popOver-content {
    font-size: 13px;
  }

  .mapify-popOver .mapify-popOver-content ._content_box {
    position: relative;
    padding-top: 10px;
  }

  .mapify-popOver .mapify-popOver-content ._content_box strong {
    position: absolute;
    top: -35px;
    left: 0;
    background: var(--colorSub);
    border: 3px solid var(--colorTextWhite);
    color: var(--colorTextWhite);
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 16px;
  }

  .ketnoi_img_anim {
    position: relative;
  }

  .ketnoi_img_anim::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border: 8px solid var(--colorMain);
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: anim_ring 3s infinite;
    z-index: 2;
  }

  .ketnoi_img_anim::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #DA8B2A;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: anim_ring_1 3s infinite;
    z-index: 2;
  }

  .img-100vh .img-inner {
    text-align: center;
  }

  .img-100vh img {
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
  }

  .fancybox__thumb {
    border-radius: 8px;
  }

  .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-radius: 8px;
    border-width: 3px;
    border-color: #E55425;
  }

  .dtv_wrap_libs {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    z-index: 5;
  }

  .dtv_wrap_libs .box {
    width: 33.3333%;
    margin: 0;
    vertical-align: top;
    overflow: hidden;
    padding: 25px;
    display: inline-block;
    cursor: pointer;
    background: none;
  }

  .item-tv ._wrap {
    position: relative;
    aspect-ratio: 1/1;
    transition: all 0.4s;
  }

  .item-tv .colum-pic {
    width: 100%;
    border-radius: 28px;
    aspect-ratio: 1/1;
    position: relative;
    display: block;
    overflow: hidden;
  }

  .item-tv .colum-pic img {
    width: auto;
    min-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    margin: 0;
    transition: all 0.5s ease-in-out;
  }

  .item-tv .colum-pic .h-gallery {
    display: block;
    height: 100%;
  }

  .item-tv ._title {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    background: var(--bg-main-10, rgba(11, 34, 66, 0.1));
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transform: rotate(-90deg) translate(calc(50% - 28px), calc(0% + 28px));
    transition: all 0.4s;
  }

  .item-tv ._title ._icon {
    width: 58px;
    height: 58px;
    position: relative;
    background: rgba(11, 34, 66, 0.5);
    border: 2px solid #DA8B2A;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .item-tv ._title ._icon svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 35px;
    height: 35px;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.4s;
  }

  .item-tv ._title ._text {
    font-family: var(--fontTitleSub);
    font-size: var(--fontSizeLarge);
    font-weight: 600;
    line-height: 1.5;
    padding-top: 12px;
    padding-left: 15px;
    text-transform: uppercase;
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .item-tv:hover ._wrap {
    transform: translateY(-25px);
  }

  .item-tv:hover .colum-pic img {
    transform: rotate(-3deg) scale(1.08);
  }

  .item-tv:hover a .full_screen {
    opacity: 1;
  }

  .item-tv:hover ._title {
    padding-left: 0;
    left: 0;
    transform: rotate(0) translate(0, 0);
  }

  .item-tv:hover ._title ._icon svg {
    transform: translate(-50%, -50%) rotate(0);
  }

  .item-tv:hover ._title::after {
    left: 100%;
  }

  .h-gallery-list {
    display: none;
  }

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

  body.archive .box-image,
  body.archive .image-cover {
    border-radius: 15px;
    overflow: hidden;
  }

  body.archive .post-title {
    font-size: var(--fontSizeMedium);
    font-family: var(--fontTitleSub);
    color: var(--colorSub);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
  }

  body.archive .box-blog-post .is-divider {
    display: none;
  }

  .mfp-wrap .mfp-container {
    background: var(--colorBg);
    background-image: url(../imgs/bg-parttern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mfp-wrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
  }

  .mfp-wrap .mfp-content {
    background: no-repeat;
    box-shadow: none;
  }

  .mfp-wrap .mfp-content .mobile-sidebar {
    height: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
    overflow: auto;
    background: none !important;
    border: 0;
  }

  .mfp-wrap .mfp-content .mobile-sidebar>.sidebar-menu {
    width: 100%;
  }

  .mfp-container {
    overflow: auto;
  }

  .off-canvas-center .nav-vertical>li>a {
    font-family: var(--fontTitleSub);
    font-size: var(--fontSizeLarge);
    font-weight: 600 !important;
  }

  .nav-sidebar.nav-vertical>li.menu-item.active,
  .nav-sidebar.nav-vertical>li.menu-item:hover {
    background: none !important;
  }

  .nav-sidebar.nav-vertical>li.menu-item.active a,
  .nav-sidebar.nav-vertical>li.menu-item:hover a {
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-weight: 600 !important;
  }

  .contact_ft {
    margin-bottom: 25px;
  }

  .contact_ft ._item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contact_ft ._item i {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact_ft ._item i._phone {
    background-image: url(../imgs/icon/phone.svg);
  }

  .contact_ft ._item i._mail {
    background-image: url(../imgs/icon/email1.svg);
  }

  .contact_ft ._item i._web {
    background-image: url(../imgs/icon/web.svg);
  }

  .contact_ft ._item i._pin {
    background-image: url(../imgs/icon/pin.svg);
  }

  .contact_ft ._item span {
    padding-left: 10px;
    font-size: 16px;
  }

  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    position: absolute;
    font-size: 12px;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    transform: translateY(100%);
    border-radius: 50px;
  }

  .wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 11px;
    bottom: 0px;
    padding: 3px 8px;
    left: 15px;
    border-radius: 50px;
    opacity: 1;
  }

  .flickity-viewport .flickity-slider .banner {
    border-radius: 20px;
    overflow: hidden !important;
  }

  .flickity-viewport .text-box-content h3 {
    font-family: var(--fontTitleSub);
    line-height: 1.5;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    background: var(--BgGradientText);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  body.archive .footer-wrapper,
  body.single-post .footer-wrapper {
    display: none !important;
  }

  .entry-header .is-divider {
    display: none;
  }

  .blog-single .entry-category {
    display: none;
  }

  h1.entry-title {
    background: var(--BgGradientText);
    font-size: var(--fontSizeXS);
    font-family: var(--fontTitle);
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: var(--textShadow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mobile-sidebar {
    padding-top: 40px !important;
  }

  .mobile-sidebar .sidebar-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-20%, 0);
    width: 300px;
    height: 135px;
    background-image: url(../imgs/logo-symlife.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .off-canvas-center .nav-sidebar.nav-vertical>li>a {
    font-family: var(--fontTitleSub) !important;
    color: var(--colorTextWhite);
  }

  .nav-icon .icon-menu {
    position: relative;
  }

  .nav-icon .icon-menu:before {
    content: "";
    position: absolute;
    left: -55px;
    top: -20px;
    width: 70px;
    height: 30px;
    background-image: url(../imgs/icon/bar.svg);
  }

  @media screen and (min-width: 991px) {

    .max-w-500 {
      max-width: 510px !important;
    }

  ._image-home-bottom {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    padding: 4px 20px;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
    }

    .box-ani {
      margin-right: 0px;
    }

    .blog-archive .large-columns-3 .post-item:first-child {
      max-width: 66.6666%;
      flex-basis: 66.6666%;
    }

    .blog-archive .large-columns-3 .post-item:first-child .box-text {
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: rgba(239, 77, 35, 0.831372549);
    }

    .blog-archive .large-columns-3 .post-item:first-child .box-text * {
      color: #fff;
    }

    .blog-archive .large-columns-3 .post-item:first-child .box-text .post-title {
      text-transform: uppercase;
    }

    .section.active .animations-ltr,
    .section.active .animations-rtl,
    .section.active .animations-ttb,
    .section.active .animations-btt {
      transform: translateX(0);
      opacity: 1;
    }

    .section.active .animations-rtl {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @media screen and (max-width: 991px) {
    :root {
      --fontSizeXS: 30px;
    }

    .wrap_mat_bang {
      flex-direction: column;
      height: auto;
      clear: both;
    }

    .wrap_mat_bang ._content {
      width: 100%;
      max-width: 100%;
      padding: 15px;
      text-align: center;
    }

    .wrap_mat_bang ._content .st-title-line {
      text-align: center;
    }

    .wrap_mat_bang ._content ._button_wrap {
      display: none;
    }

    .wrap_mat_bang .mat_bang_img_map {
      height: auto;
      min-width: 100vw;
      position: relative;
    }

    .mySwiper {
      min-height: 0 !important;
    }

    .mySwiper .swiper-wrapper {
      min-height: 0 !important;
    }

    .mySwiper .swiper-slide {
      min-height: 0 !important;
      font-size: 18px;
    }

    .mySwiper .swiper-slide img {
      aspect-ratio: 16/9;
      height: auto;
      min-height: 0 !important;
      min-width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      cursor: grab;
    }

    .mySwiper .autoplay-progress {
      left: auto;
      bottom: 0;
      right: 0;
      transform: none;
      opacity: 0.8;
    }

    .sec-tongquan .section-bg {
      background-image: none !important;
    }

    .quick_contact {
      bottom: 10px;
      right: 0;
      width: 100%;
      justify-content: center;
      padding-top: 2px;
      margin-left: 10px;
      margin-right: 10px;
    }

    #fullpage .section {
      padding: 0 0 30px 0;
    }

    #fullpage .section .section-content {
      padding-top: 30px;
    }

    #fullpage .no_padding_sm {
      padding: 0 !important;
    }

    #fullpage .no_padding_sm .section-content {
      padding-top: 0 !important;
    }

    #fullpage .sec-tongquan {
      padding: 0;
    }

    #fullpage .sec-tongquan .section-content {
      padding: 0;
    }

    .hide_mobile {
      display: none !important;
    }

    .section-footer-bg {
      padding-top: 50px;
    }

    .img-90vh img {
      max-height: none;
      width: 100%;
    }

    #content {
      padding-top: 70px;
    }

    #masthead {
      background: var(--colorBg);
    }

    #masthead #logo {
      width: 5em!important
    }

    #masthead #logo>a {
      padding: 0;
      margin: 0;
      border-radius: 8px;
      text-align: center;
    }

    #masthead #logo>a img {
      width: 138px !important;
      margin: 0 auto;
    }

    #menu_fullpage {
      display: none !important;
    }

    [class^=dtv_fadeIn],
    [class*=dtv_fadeIn] {
      opacity: 1 !important;
      transform: none !important;
    }

    .bg-gradient-left .section-bg.bg-loaded {
      background-color: var(--colorBg) !important;
      background-repeat: repeat;
      background-size: inherit;
    }

    .title-section-fixed {
      display: none;
    }

    .slider-homes-tfh .flickity-viewport {
      height: 56.25vw !important;
    }

    .slider-homes-tfh .img .img-inner {
      padding-top: 100% !important;
    }

    .slider-homes-tfh .img .img-inner img {
      height: auto !important;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }

    .section-banner {
      padding: 0 !important;
    }

    .row_md_pl_100 {
      padding-left: 15px;
      padding-right: 15px;
      padding-top: 50px;
      padding-bottom: 30px;
    }

    .show_mobile {
      display: block;
    }

    .sec-vitri {
      padding: 0 !important;
    }

    .sec-vitri .video-bg {
      object-position: bottom center !important;
      -o-object-position: bottom center !important;
      object-fit: contain;
      -o-object-fit: contain;
    }

    .sec-vitri .col {
      background: var(--colorBg);
      border-radius: 0 20px 20px 0;
      padding: 0 !important;
      max-width: 100vw;
      width: 100% !important;
      flex-basis: 100%;
    }

    .mat_bang_wrap .st-title-line {
      position: relative;
      left: 0;
      padding: 0 15px;
    }

    .ani-scroll-btn {
      display: none !important;
    }

    #fullpage {
      background: var(--colorBg);
    }

    .box-ani {
      opacity: 1;
    }

    .section .section-content .box-ani {
      width: 100%;
      max-width: 100%;
    }

    .section .section-content .box-ani::after {
      display: none;
    }

    .section .section-content .box-ani ._content {
      max-height: none;
    }

    .section._color_main {
      background: var(--colorBg);
    }

    .section.bg_img {
      display: block;
    }

    .section.bg_img .section-bg.bg-loaded {
      position: relative;
      width: 100%;
      height: 60vw;
      clear: both;
    }

    .section_img {
      display: block;
      padding: 0 !important;
    }

    .section_img .section-bg {
      position: relative;
      width: 100%;
      min-height: 56.25vw;
    }

    .col-slider .col-inner {
      padding: 0 !important;
    }

    .box_copyright {
      position: relative;
      background: var(--colorBg);
      left: 0;
      justify-content: center;
      padding: 40px 10px 80px;
      border-top: 1px solid rgba(255, 255, 255, 0.3490196078);
    }
  }

  @media screen and (max-width: 768px) {
    :root {
      --ringArea: 60vw;
      --ringArea1: 80vw;
    }

    .stuck #logo img {
      max-height: 70px !important;
    }

    .list-icon-tq .col-inner {
      grid-template: auto/auto;
      grid-gap: 10px;
    }

    .text-dtv-animation ._title {
      font-size: 40px;
      line-height: 130%;
    }

    .bg-partern-logo-gray,
    .bg-gray-line {
      background: none;
    }

    .banner_box {
      padding: 20px 10px;
    }

    .banner_box ._big {
      font-size: 20px;
      line-height: 130%;
    }

    .banner-layers {
      padding-top: 100%;
    }

    .dtv-header-banner .dtv_breadcrumb {
      display: none;
      width: calc(100% - 30px);
      text-align: center;
    }

    .dtv-header-banner .dtv_breadcrumb * {
      font-size: 13px;
    }

    .uk-grid>* {
      width: 50%;
    }

    body.home .header-wrapper,
    body.home .header-bg-color,
    .header-wrapper.stuck {
      background: radial-gradient(100% 100% at 50% 0%, #043850 0%, rgba(27, 86, 80, 0) 100%) !important;
    }

    .modal-dtv .modal-ct {
      zoom: 0.75;
    }

    .quick-ct-btn {
      top: auto;
      bottom: -150px;
      left: 0;
      transform: none;
      width: 100%;
      text-align: center;
      border-bottom: 6px solid #c29c56;
      border-radius: 20px;
      opacity: 0;
      transition: all 0.6s;
    }

    .quick-ct-btn.active {
      bottom: 0;
      opacity: 1;
    }

    .quick-ct-btn ul {
      display: flex;
      flex-direction: row;
      width: 100%;
      justify-content: center;
    }

    .quick-ct-btn .btn-hotline span {
      display: none;
    }

    .quick-ct-btn a.btn-yctv {
      font-size: 12px;
      letter-spacing: -0.6px;
      padding: 0 15px;
    }

    .row-37-flex {
      flex-direction: column;
    }

    .row-37-flex .img-map-mb-mark {
      width: 90%;
    }

    .row-37-flex .img-map-mb-wrap {
      width: 100%;
      margin-top: 20px;
      padding-top: 15px;
    }

    .section-title,
    h1.entry-title {
      font-size: var(--fontSizeXS);
      line-height: 1.4;
    }

    .section-title .hide-md,
    h1.entry-title .hide-md {
      display: block;
      text-align: center;
    }

    .section-lead {
      font-size: 20px;
      line-height: 1.3;
    }

    .large-10.col .post-item .box-blog-post .box-image {
      width: 100% !important;
    }

    .location_map_video {
      padding: 0;
    }

    .location_map_video video {
      height: auto;
    }

    .dtv_wrap_libs {
      flex-direction: column;
    }

    .dtv_wrap_libs .box {
      margin: 10px 0;
      width: 100% !important;
    }

    .quick_hotline {
      left: 45px;
      right: auto;
      bottom: 10px;
    }

    .btn_modal_contact {
      transform: none;
      writing-mode: lr;
      top: auto;
      right: auto;
    }

    .banner-layers {
      padding-top: 0 !important;
    }

    .btn_hotline .call::after {
      animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
      perspective: 1000px;
    }
  }

  @media screen and (min-width: 550px) and (max-width: 849px) {
    ._text_box_ti {
      bottom: 0;
    }

    ._text_box_ti p {
      display: none;
    }
  }

  @media screen and (max-width: 450px) {
    .box-ani {
      padding: 30px 15px;
    }

    .back-to-top {
      display: none !important;
    }

    .quick_contact .btn_hotline .text {
      display: none;
    }

    .quick_contact a .text {
      display: none;
    }

    ._text_box_ti h3 {
      font-size: 16px;
    }

    ._text_box_ti p {
      display: none;
    }
  }

  @media screen and (max-width: 400px) {
    .btn_hotline .text {
      font-size: 12px;
    }
  }

  /*# sourceMappingURL=style.css.map */

  @import url(https://fonts.googleapis.com/css?family=Concert+One);

  .text-gragient {
    animation: glow 10s ease-in-out infinite;



    /* For less laggy effect, uncomment this:
    
    animation:none;
    -webkit-text-stroke:1px #fff; 
    
  =========== */

  }


  figure {
    animation: wobble 5s ease-in-out infinite;
    transform-origin: center center;
    transform-style: preserve-3d;
  }

  @keyframes wobble {

    0%,
    100% {
      transform: rotate3d(1, 1, 0, 40deg);
    }

    25% {
      transform: rotate3d(-1, 1, 0, 40deg);
    }

    50% {
      transform: rotate3d(-1, -1, 0, 40deg);
    }

    75% {
      transform: rotate3d(1, -1, 0, 40deg);
    }
  }

  .text-gragient {
    display: block;
    width: 100%;
    padding: 40px;
    line-height: 1.5;
    font: 900 3.2em 'Concert One', sans-serif;
    text-transform: uppercase;
    position: absolute;
    color: #FFD700 !important;
  }

  @keyframes glow {

    0%,
    100% {
      text-shadow: 0 0 30px red;
    }

    25% {
      text-shadow: 0 0 30px orange;
    }

    50% {
      text-shadow: 0 0 30px forestgreen;
    }

    75% {
      text-shadow: 0 0 30px cyan;
    }
  }

  p:nth-child(2) {
    transform: translateZ(5px);
  }

  p:nth-child(3) {
    transform: translateZ(10px);
  }

  p:nth-child(4) {
    transform: translateZ(15px);
  }

  p:nth-child(5) {
    transform: translateZ(20px);
  }

  p:nth-child(6) {
    transform: translateZ(25px);
  }

  p:nth-child(7) {
    transform: translateZ(30px);
  }

  p:nth-child(8) {
    transform: translateZ(35px);
  }

  p:nth-child(9) {
    transform: translateZ(40px);
  }

  p:nth-child(10) {
    transform: translateZ(45px);
  }

  @media (min-width: 768px) {
    .top-desktop {
      top: -190px !important;
      position: relative;
    }
  }

  .list-utils {
    list-style-type: none;
    margin: 0;
  }

  .list-utils li {
    margin-bottom: 8px!important;
  }

  .list-utils .no-pic {
    padding: 3px 4px;
    border-radius: 100%;
    margin-right: 4px;
    font-weight: 600;
    color: #000;
    box-shadow: inset 0 0 4px #D2F9E7;
    background: #D2F9E7;
    background: linear-gradient(90deg,rgba(210, 249, 231, 1) 0%, rgba(223, 247, 237, 1) 50%, rgba(210, 249, 231, 1) 100%);
    border: 1px solid #fff;
  }

  .list-utils .no-pics {
    padding: 3px 4px;
    border-radius: 100%;
    margin-right: 4px;
    font-weight: 600;
    color: #000;
    box-shadow: inset 0 0 4px #DDAA5C;
    background: #DDAA5C;
    background: linear-gradient(90deg,rgba(221, 170, 92, 1) 0%, rgba(247, 204, 139, 1) 50%, rgba(221, 170, 92, 1) 100%);
    border: 1px solid #fff;
  }

  .custom-utils {
    padding: 10px 2px !important;
    font-size: small !important;
  }

  .list-custom {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }

  @media (min-width: 768px) {
    .hidden-desktop {
      display: none;
    }

    .list-custom {
      columns: 1;
      -webkit-columns: 1;
      -moz-columns: 1;
    }
  }

  ._content_box {
    color: #fff!important;
  }
