@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
:root {
  --clr-accent-500: #9d772b;
  --clr-accent-400: #d3a342;
  --clr-accent-300: #d1ab66;
  --clr-accent-200: #EBD61A;
  --clr-accent-100: #FFFF00;
  --clr-primary-900: #14304A;
  --clr-primary-800: #084377;
  --clr-primary-700: #054e8d;
  --clr-primary-500: #005aaa;
  --clr-primary-400: #0765b8;
  --clr-primary-300: #0071BC;
  --clr-primary-200: #008FD5;
  --clr-primary-100: #00AEEF;
  --clr-green-500: #08a83e;
  --clr-green-400: #0FCB4F;
  --clr-green-200: #80FF00;
  --clr-neutral-900: hsl(0, 0%, 0%);
  --clr-neutral-850: #282829;
  --clr-neutral-800: #414142;
  --clr-neutral-600: #6D6F71;
  --clr-neutral-400: #BCBEC0;
  --clr-neutral-200: #E7E8E9;
  --clr-neutral-150: #fafafa;
  --clr-neutral-100: hsl(0 0% 100%);
  --ff-primary: "Inter", sans-serif;
  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);
  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-semi-bold-600: 600;
  --fw-bold: 700;
  --fs-200: 0.75rem;
  --fs-300: 0.8125rem;
  --fs-350: 0.85rem;
  --fs-400: 0.875rem;
  --fs-500: 0.9375rem;
  --fs-600: 1rem;
  --fs-650: 1.2rem;
  --fs-700: 1.875rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;
  --fs-body: var(--fs-400);
  --fs-primary-heading: var(--fs-700);
  --fs-secondary-heading: var(--fs-600);
  --fs-nav: var(--fs-500);
  --fs-button: var(--fs-300);
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (min-width: 50em) {
  :root {
    --fs-body: var(--fs-500);
    --fs-primary-heading: var(--fs-800);
    --fs-secondary-heading: var(--fs-650);
    --fs-nav: var(--fs-300);
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* general styling */
body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-neutral-800);
}

p {
  position: relative;
  margin-top: var(--size-500);
  font-size: var(--fs-600);
  font-weight: var(--fw-regular);
  line-height: 1.7;
}
p[role=tm0] {
  margin-top: 0 !important;
}

.justifyP {
  text-align: justify;
}

.slide-arrow {
  position: absolute;
  top: 40%;
  margin-top: -15px;
  cursor: pointer;
  background: transparent;
  z-index: 9;
  border: 0;
}
.slide-arrow img {
  width: 80px;
}

.prev-arrow {
  left: 0;
}
.prev-arrow[role=outside] {
  left: -80px;
}

.next-arrow {
  right: 0;
}
.next-arrow[role=outside] {
  right: -80px;
}

.slick-disabled {
  filter: grayscale(100%);
  cursor: default;
}

.slick-dots {
  bottom: -55px !important;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0.8rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots button {
  display: block;
  width: 1rem !important;
  height: 1rem !important;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: var(--clr-neutral-600) !important;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: var(--clr-accent-300) !important;
}

form {
  position: relative;
}
form input, form textarea, form select {
  position: relative;
  width: 100%;
  border: 1px solid var(--clr-neutral-400);
  padding: 12px 15px;
  height: 49px;
  outline: 0px;
  font-size: var(--fs-500);
  transition: all 0.3s;
}
form input:focus, form textarea:focus, form select:focus {
  border: 1px solid var(--clr-primary-200);
}
form textarea {
  height: 100%;
}

/* tabs */
.tabAccHeader {
  position: relative;
  font-size: var(--fs-600);
  font-weight: var(--fw-semi-bold);
  color: var(--clr-neutral-900);
  padding: 10px 0;
  border-bottom: 2px solid var(--clr-primary-400);
  transition: all 0.3s;
  cursor: pointer;
}
.tabAccHeader::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--clr-neutral-600);
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.tabAccHeader::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: var(--clr-neutral-600);
  top: 50%;
  margin-top: 0px;
  margin-right: 9px;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.tabAccHeader.accordion-on {
  border-bottom: 1px solid var(--clr-neutral-400) !important;
}
.tabAccHeader.accordion-on::after {
  height: 0px !important;
}

.tabAccDesc {
  position: relative;
  display: none;
  padding: 20px 0 30px;
}

/* tabs */
/* Utility classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

section {
  position: relative;
  background: #fff;
}
section[bg=none] {
  background: transparent !important;
}

.container {
  position: relative;
  --max-width: 1200px;
  --container-padding: 1rem;
  width: min(var(--max-width), 100% - var(--container-padding) * 2);
  margin-inline: auto;
}

.borderBox {
  border: 2px solid var(--clr-accent-300);
}

[radius="15"] {
  border-radius: 15px;
}

.flex-columns {
  display: flex;
  flex-direction: column;
}

.even-columns, .columns-2-3 {
  display: grid;
  gap: 1rem;
}
.even-columns[role=mob-2-col], .columns-2-3[role=mob-2-col] {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.even-columns[gap=small], .columns-2-3[gap=small] {
  gap: 1rem;
}
.even-columns[gap=none], .columns-2-3[gap=none] {
  gap: 0rem;
}

.even-columns-4, .even-3-columns {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.even-columns-4[gap=min], .even-3-columns[gap=min] {
  gap: 2rem !important;
}
.even-columns-4[gap=small], .even-3-columns[gap=small] {
  gap: 1rem;
}

.even-columns-2 {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.even-columns-2[gap=min] {
  gap: 2rem !important;
}
.even-columns-2[gap=small] {
  gap: 1rem;
}

.even-columns-flex {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.even-columns-flex[role=justifyContent] {
  align-items: center;
  gap: auto;
  justify-content: space-between;
}
.even-columns-flex[role=spaceAround] {
  align-items: center;
  gap: auto;
  justify-content: space-around;
}
.even-columns-flex.inverse {
  flex-direction: column;
}

@media (min-width: 50em) {
  .columns-2-3 {
    gap: 3rem;
    grid-template-columns: 1fr 2fr;
  }
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 2rem;
  }
  .even-columns[gap=small] {
    gap: 1rem;
  }
  .even-columns-flex {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .even-columns-flex > div {
    width: 50% !important;
  }
  .even-columns-flex.inverse {
    flex-direction: row-reverse;
  }
  .even-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .even-3-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .even-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.vertical-align-center {
  align-items: center;
}

.vertical-align-top {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

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

.justify-self-end {
  justify-self: end;
}

@media (min-width: 50em) {
  .justify-self-end-md {
    justify-self: end;
  }
}
:where(.flow :not(:first-child)) {
  margin-top: var(--flow-spacer, 3em);
}

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

.text-center p {
  margin-inline: auto;
}

@media (max-width: 50em) {
  .text-center-sm-only {
    text-align: center;
  }
  .text-center-sm-only p {
    margin-inline: auto;
  }
}
.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-300 {
  color: var(--clr-primary-300);
}

.text-primary-200 {
  color: var(--clr-primary-200);
}

.text-accent-400 {
  color: var(--clr-accent-400);
}

.text-accent-300 {
  color: var(--clr-accent-300);
}

.text-accent-200 {
  color: var(--clr-accent-200);
}

.text-accent-100 {
  color: var(--clr-accent-100);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.text-green-500 {
  color: var(--clr-green-500);
}

.text-green-400 {
  color: var(--clr-green-400);
}

.text-green-200 {
  color: var(--clr-green-200);
}

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

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

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

.bg-accent-400 {
  background-color: var(--clr-accent-400);
}

.bg-accent-300 {
  background-color: var(--clr-accent-300);
}

.bg-accent-250 {
  background-color: var(--clr-accent-250);
}

.bg-accent-100 {
  background-color: var(--clr-accent-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-150 {
  background-color: var(--clr-neutral-150);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.bg-neutral-850 {
  background-color: var(--clr-neutral-850);
}

.bg-neutral-800 {
  background-color: var(--clr-neutral-800);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.bg-green-500 {
  background-color: var(--clr-green-500);
}

.bg-green-400 {
  background-color: var(--clr-green-400);
}

.border-primary-200 {
  border: 1px solid var(--clr-primary-200);
}

.border-primary-300 {
  border: 1px solid var(--clr-primary-300);
}

.border-primary-400 {
  border: 1px solid var(--clr-primary-400);
}

.border-accent-400 {
  border: 1px solid var(--clr-accent-400);
}

.border-accent-300 {
  border: 1px solid var(--clr-accent-300);
}

.border-accent-250 {
  border: 1px solid var(--clr-accent-250);
}

.border-accent-100 {
  border: 1px solid var(--clr-accent-100);
}

.border-neutral-100 {
  border: 1px solid var(--clr-neutral-100);
}

.border-neutral-150 {
  border: 1px solid var(--clr-neutral-150);
}

.border-neutral-200 {
  border: 1px solid var(--clr-neutral-200);
}

.border-neutral-850 {
  border: 1px solid var(--clr-neutral-850);
}

.border-neutral-800 {
  border: 1px solid var(--clr-neutral-800);
}

.border-neutral-900 {
  border: 1px solid var(--clr-neutral-900);
}

.border-green-500 {
  border: 1px solid var(--clr-green-500);
}

.border-green-400 {
  border: 1px solid var(--clr-green-400);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}

.fw-semi-bold-600 {
  font-weight: var(--fw-semi-bold-600);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
  line-height: 1.5;
}

.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
  line-height: 1.5;
}

.fs-200 {
  font-size: var(--fs-200);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-650 {
  font-size: var(--fs-650);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-800 {
  font-size: var(--fs-800);
}

.fs-900 {
  font-size: var(--fs-900);
}

.h-100 {
  height: 100vh !important;
}

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

.text-normal {
  text-transform: none !important;
}

@media (min-width: 50em) {
  .display-md-inline-flex {
    display: inline-flex;
  }
}
.padding-block-900 {
  padding: var(--size-900) 0;
}

.padding-block-700 {
  padding: var(--size-700) 0;
}

.padding-block-500 {
  padding: var(--size-500) 0;
}

.padding-block-300 {
  padding: var(--size-300) 0;
}

.padding-block-200 {
  padding: var(--size-200) 0;
}

.padding-500 {
  padding: var(--size-500);
}

.padding-300 {
  padding: var(--size-500);
}

.padding-side-300 {
  padding: 0 var(--size-500);
}

.padding-top-900 {
  padding-top: var(--size-900);
}

.padding-top-400 {
  padding-top: var(--size-400);
}

.padding-top-0 {
  padding-top: 0 !important;
}

.margin-top-auto {
  margin-top: auto !important;
}

.margin-top-100 {
  margin-top: var(--size-100) !important;
}

.margin-top-200 {
  margin-top: var(--size-200) !important;
}

.margin-top-300 {
  margin-top: var(--size-300) !important;
}

.margin-top-400 {
  margin-top: var(--size-400) !important;
}

.margin-top-500 {
  margin-top: var(--size-500) !important;
}

.margin-top-900 {
  margin-top: var(--size-900) !important;
}

.margin-top-800 {
  margin-top: var(--size-800) !important;
}

.margin-top-700 {
  margin-top: var(--size-700);
}

.margin-top-600 {
  margin-top: var(--size-600);
}

.margin-top-500 {
  margin-top: var(--size-500);
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-top-auto {
  margin-top: auto !important;
}

.margin-left-100 {
  margin-left: var(--size-100) !important;
}

.margin-left-400 {
  margin-left: var(--size-400) !important;
}

.margin-bottom-100 {
  margin-bottom: var(--size-100) !important;
}

.margin-bottom-700 {
  margin-bottom: var(--size-700);
}

.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

.height-80 {
  height: 80px;
}

.loadItem {
  display: none;
}

.moretext {
  display: none;
}

.error, .error p, label.error {
  font-size: var(--fs-200);
  margin-top: 0;
  color: #ff0000;
}

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 30px 0 0;
}
header.scroll {
  background-color: var(--clr-primary-700);
  padding: 10px 0;
}

.inner_main_menu {
  margin: 0 auto;
  width: 1170px;
}

.inner_main_menu ul {
  margin: 0;
  list-style: none;
  text-align: right;
}

.inner_main_menu ul li {
  float: none;
  display: inline-block;
  position: relative;
}

.inner_main_menu ul li:nth-child(1) {
  float: left;
}

.inner_main_menu ul li:nth-child(2) {
  float: left;
}

.inner_main_menu ul li:nth-child(3) {
  float: left;
}

.inner_main_menu ul li:nth-child(4) {
  float: left;
}

.inner_main_menu ul li a {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-semi-bold);
  text-decoration: none;
  display: block;
  padding: 10px 20px;
}

.inner_main_menu ul li a:hover {
  color: var(--clr-accent-100);
}

.inner_main_menu ul li ul {
  position: absolute;
  top: 40px;
  left: -9999999px;
  width: 200px;
  background: #262626;
  padding: 0;
}

.inner_main_menu ul li:hover ul {
  left: 0px;
}

.inner_main_menu ul li ul li {
  float: left;
  width: 100%;
  text-align: left;
}

.inner_main_menu ul li ul li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
}

.inner_main_menu ul li ul li a:hover {
  background: #ddd;
  color: #262626;
}

.inner_main_menu ul li ul li ul {
  top: 0;
  left: -999999px;
}

.inner_main_menu ul li:hover ul li ul {
  top: 0;
  left: -999999px;
}

.inner_main_menu ul li ul li:hover ul {
  top: 0;
  left: 200px;
}

.inner_main_menu ul li:hover a {
  color: var(--clr-accent-100);
}

.inner_main_menu ul li:hover ul li a {
  color: #ffffff;
}

.inner_main_menu ul li ul li a:hover {
  color: #262626;
}

.inner_main_menu ul li ul li:hover a {
  background: #ddd;
  color: #262626;
}

.inner_main_menu ul li ul li:hover ul li a {
  background: #262626;
  color: #fff;
}

.inner_main_menu ul li ul li ul li a:hover {
  background: #ddd;
  color: #262626;
}

.slicknav_menu {
  font-size: 16px;
  padding: 5px;
  display: none;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 99999;
}

ul.slicknav_nav {
  background: var(--clr-primary-900) none repeat scroll 0 0;
  left: 0;
  position: absolute;
  top: 50px;
  width: 100%;
}

.slicknav_btn {
  top: 0px;
}

#main_menu {
  width: 100%;
  position: relative;
}

.logo_area {
  width: 200px;
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  transform: translateX(-50%);
  text-align: center;
}

@media only screen and (min-width: 200px) and (max-width: 767px) {
  header {
    padding: 10px 0 0;
  }
  .slicknav_menu {
    display: block;
  }
  .inner_main_menu {
    display: none;
  }
  .logo_area {
    height: auto;
    left: 10px;
    transform: translateX(0%);
    margin-left: 0;
    position: relative;
    top: 0;
    width: 130px;
  }
  .logo_area img {
    height: auto;
    width: 100%;
  }
}
/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */
.slicknav_btn,
.slicknav_nav .slicknav_item {
  cursor: pointer;
}

.slicknav_menu,
.slicknav_menu * {
  box-sizing: border-box;
}

.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em;
  line-height: 1.125em;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em;
}

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_icon:before {
  background: 0 0;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}

.slicknav_menu .slicknav_no-text {
  margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_menu:after,
.slicknav_menu:before {
  content: " ";
  display: table;
}

.slicknav_menu:after {
  clear: both;
}

.slicknav_nav li,
.slicknav_nav ul {
  display: block;
}

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item a {
  display: inline;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  display: block;
}

.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_menu {
  font-size: 16px;
  padding: 5px;
}

.slicknav_nav,
.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
}

.slicknav_menu .slicknav_icon-bar {
  background-color: #fff;
}

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background-color: #222;
}

.slicknav_nav {
  clear: both;
  color: #fff;
  margin: 0;
  font-size: 0.875em;
}

.slicknav_nav ul {
  margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
}

.slicknav_nav .slicknav_row:hover {
  border-radius: 6px;
  background: #ccc;
  color: #fff;
}

.slicknav_nav a {
  text-decoration: none;
  color: #fff;
}

.slicknav_nav a:hover {
  background: var(--clr-primary-300);
  color: #ffffff;
}

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}

.slicknav_brand {
  float: left;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

.boxButton {
  position: relative;
}
.boxButton a, .boxButton button {
  position: relative;
  display: flex;
  padding: 7px 12px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--clr-neutral-100);
  justify-content: center;
  text-decoration: none;
  font-size: var(--fs-400);
  font-weight: var(--fw-semi-bold);
  color: var(--clr-primary-500);
  border: 2px solid var(--clr-primary-500);
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}
.boxButton a h2, .boxButton button h2 {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.boxButton a span, .boxButton button span {
  font-size: var(--fs-400) !important;
  font-weight: var(--fw-semi-bold) !important;
  z-index: 1;
}
.boxButton a::before, .boxButton button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-primary-500);
  left: -100%;
  top: 0;
  z-index: 0;
  transition: 0.3s;
}
.boxButton a:hover, .boxButton button:hover {
  color: var(--clr-neutral-100);
}
.boxButton a:hover::before, .boxButton button:hover::before {
  left: 0;
}

.arrowBtn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.arrowBtn a, .arrowBtn button {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-650);
  background: transparent;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  gap: 7px;
  color: var(--clr-accent-100);
}
.arrowBtn a i, .arrowBtn button i {
  position: relative;
  margin-left: 0px;
  transition: 0.3s;
}
.arrowBtn a:hover i, .arrowBtn button:hover i {
  margin-left: 15px;
}
.arrowBtn[size=big] {
  margin-inline: auto;
  text-align: center;
}
.arrowBtn[size=big] a, .arrowBtn[size=big] button {
  font-size: var(--fs-800);
}
.arrowBtn[color=blue] a {
  color: var(--clr-primary-500) !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.homeBannerSlider {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ccc;
}
.homeBannerSlider .item {
  position: relative;
  height: 100vh;
}
.homeBannerSlider .item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../images/banner-pattern.png");
  opacity: 0.8;
}
.homeBannerSlider video, .homeBannerSlider .slideImg {
  position: absolute;
  width: 100%;
  height: 105vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeBannerSlider .details {
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
}
.homeBannerSlider .content {
  position: relative;
  max-width: 760px;
  width: 70%;
  left: 15%;
}
.homeBannerSlider h3 {
  font-size: var(--fs-650);
  font-weight: var(--fw-semi-bold);
}
.homeBannerSlider p {
  font-size: var(--fs-600);
  font-weight: var(--fw-regular);
  color: var(--clr-neutral-100);
  margin-top: 10px;
}

.inpagebanner {
  position: relative;
  background-color: var(--clr-primary-500);
  height: 400px;
}
.inpagebanner .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 50em) {
  .inpagebanner {
    height: 200px;
    padding-top: 100px;
  }
}

.inpagebanner2 {
  position: relative;
  background-color: var(--clr-primary-500);
  background-position: center !important;
  background-size: cover !important;
  height: 600px;
}
.inpagebanner2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 90, 170, 0), rgb(0, 90, 170));
}
.inpagebanner2 .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.about .logoAbout .vanImg {
  position: relative;
  width: 384px;
}
.about .logoAbout .wheel {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 0;
  animation: wheel 1s infinite linear;
}
.about .logoAbout .wheel img {
  width: 100%;
}
.about .logoAbout .wheel.front {
  left: 313px;
}
.about .logoAbout .wheel.rear {
  left: 101px;
}
.about .logoAbout svg {
  width: 100%;
}
.about .logoAbout .van {
  position: absolute;
  animation: run 0.7s infinite;
}
.about .logoAbout .ground {
  position: absolute;
  animation: ground 0.7s infinite;
}
.about .logoAbout .force {
  position: absolute;
  animation: force 0.6s infinite;
}
.about .logoAbout .force2 {
  position: absolute;
  animation: force 0.8s infinite;
}
.about .logoAbout .force3 {
  position: absolute;
  animation: force 1s infinite;
}
.about .logoAbout .force4 {
  position: absolute;
  animation: force 1.2s infinite;
}
@keyframes run {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ground {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-150px);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
@keyframes force {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-90px);
    opacity: 0;
  }
}
@keyframes wheel {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fasilities {
  position: relative;
}
.fasilities .box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 20px;
  border-right: 1px solid var(--clr-neutral-400);
}
.fasilities .box .title {
  display: flex;
}
.fasilities .box .title img {
  width: 50px;
  margin: 5px;
}
.fasilities .box .title h2 {
  position: relative;
  color: var(--clr-neutral-700);
  font-size: var(--fs-650);
  font-weight: var(--fw-semi-bold);
}
.fasilities .box:last-child {
  border: none;
}
@media (max-width: 50em) {
  .fasilities .box {
    border: none;
    padding: 20px 0;
  }
}

.packages {
  background-color: var(--clr-primary-500);
}
.packages .even-columns {
  gap: 0;
}
.packages .item {
  position: relative;
  overflow: hidden;
  height: 550px;
}
.packages .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) -67.57%, rgb(0, 0, 0) 100%);
  opacity: 0.4;
  transition: 0.3s;
}
.packages .item .bgImg {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  transition: 0.6s;
}
.packages .item .details {
  position: absolute;
  z-index: 2;
  padding: 50px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.packages .item h1 {
  position: relative;
  font-size: var(--fs-800);
  font-weight: 500;
  color: var(--clr-neutral-100);
  line-height: 1.2;
}
.packages .item span {
  font-size: var(--fs-700);
}
.packages .item .hind {
  font-family: "Hind", sans-serif;
  font-size: var(--fs-800);
}
.packages .item:hover::before {
  opacity: 0.7;
}
.packages .item:hover .bgImg {
  transform: scale(1.2);
}

.prices {
  background-color: var(--clr-primary-500);
}
.prices .item {
  position: relative;
  overflow: hidden;
}
.prices .item h2 {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--clr-accent-100);
  background-color: var(--clr-primary-800);
}
.prices .item .details {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-primary-700);
}
.prices .item .details .rs {
  font-size: 30px;
  color: var(--clr-neutral-100);
}
.prices .item .details h3 {
  font-size: 18px;
  color: var(--clr-neutral-200);
}
.prices .item h4 {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary-700);
  border-top: 1px solid #fff;
}

.packageitem {
  margin-bottom: 30px;
}

.packagesDays .item {
  padding: 20px;
  background-color: var(--clr-primary-700);
}

.whatxplovan {
  background-image: url("../images/van.svg");
  background-repeat: no-repeat;
  background-position: right 50vw top 70%;
  background-size: auto 53%;
}

.xplovan {
  position: relative;
  background: url("../images/background/explore.jpg");
  background-size: cover;
  background-position: center center;
}

.freedom {
  position: relative;
  background: url("../images/background/freedom.jpg");
  background-size: cover;
  background-position: center center;
}

.comfort {
  position: relative;
  background: url("../images/background/comfort.jpg");
  background-size: cover;
  background-position: center center;
}

.featureBanner {
  position: relative;
  overflow: hidden;
}
.featureBanner .container {
  position: relative;
  z-index: 2;
}
.featureBanner .camp {
  position: absolute;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.featureBanner .fireplace {
  width: 180px;
  height: 180px;
  right: 325px;
  bottom: 35px;
  z-index: 2;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.featureBanner .fireplace__flame, .featureBanner .fireplace__flame_big {
  height: 150px;
  width: 90px;
  background: linear-gradient(0deg, rgb(236, 221, 66) 10%, rgb(237, 174, 52) 15%, rgb(237, 100, 52) 50%, rgb(250, 71, 8) 59%);
  position: relative;
  margin-bottom: -15px;
  z-index: 3;
  opacity: 0.8;
}
.featureBanner .fireplace__flame {
  width: 350px;
  margin-left: 10px;
  animation: burn 1.5s linear forwards infinite;
}
.featureBanner .fireplace__flame_big {
  margin-bottom: -5px;
  z-index: -1;
  opacity: 1;
  animation: burn_alt 2.5s linear forwards infinite;
}
.featureBanner .fireplace__log {
  background: linear-gradient(#e66465, #5d5e55);
  height: 50px;
  width: 12px;
  position: absolute;
  bottom: -10px;
  border-radius: 10px;
  transform-origin: bottom center;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.featureBanner .fireplace__log:after {
  content: "";
  display: block;
  background: #ff915b;
  width: 100%;
  height: 20px;
  border-radius: 20px;
  transform-origin: top center;
  transform: scale(1, 0.5);
}
.featureBanner .fireplace section:nth-of-type(1) {
  left: 38px;
  transform: rotateZ(67deg);
  z-index: 2;
}
.featureBanner .fireplace section:nth-of-type(2) {
  left: 61px;
  transform: rotateZ(25deg);
}
.featureBanner .fireplace section:nth-of-type(3) {
  left: 78px;
  transform: rotateZ(5deg);
}
.featureBanner .fireplace section:nth-of-type(4) {
  left: 90px;
  transform: rotateZ(-5deg);
}
.featureBanner .fireplace section:nth-of-type(5) {
  left: 99px;
  transform: rotateZ(-15deg);
}
.featureBanner .fireplace section:nth-of-type(6) {
  left: 102px;
  transform: rotateZ(-35deg);
}
.featureBanner .fireplace section:nth-of-type(7) {
  left: 115px;
  transform: rotateZ(273deg);
  z-index: 2;
}
.featureBanner .fireplace__spark {
  position: absolute;
  height: 4px;
  width: 4px;
  border-radius: 1px;
  top: 0;
  left: 0;
  filter: blur(1px);
  background: yellow;
  z-index: 10;
  opacity: 0;
}
.featureBanner .fireplace main:nth-of-type(1) {
  animation: spark_1 1s forwards infinite;
}
.featureBanner .fireplace main:nth-of-type(2) {
  animation: spark_2 1s 0.75s forwards infinite;
}
.featureBanner .fireplace main:nth-of-type(3) {
  animation: spark_3 1s 0.25s forwards infinite;
}
.featureBanner .fireplace main:nth-of-type(4) {
  animation: spark_4 1s 0.5s forwards infinite;
}
.featureBanner .fireplace__light {
  height: 100%;
  width: 100%;
  border-radius: 50% 50% 30% 30%;
  transform: scale(1.1, 1.2);
  filter: blur(50px);
  background: orange;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  opacity: 0.4;
}
.featureBanner .fireplace .blur {
  filter: blur(1px);
}
.featureBanner .fireplace .blur.fix {
  position: absolute;
}
@keyframes burn {
  0% {
    -webkit-clip-path: polygon(48% 97%, 42% 97%, 37% 93%, 31% 92%, 28% 88%, 26% 81%, 29% 84%, 34% 84%, 33% 79%, 30% 74%, 31% 67%, 34% 57%, 34% 65%, 39% 71%, 43% 65%, 43% 55%, 40% 45%, 48% 59%, 49% 69%, 51% 76%, 55% 71%, 54% 65%, 54% 58%, 58% 64%, 61% 72%, 57% 92%, 61% 97%, 64% 98%, 66% 95%, 64% 93%, 57% 96%, 54% 93%, 48% 97%);
            clip-path: polygon(48% 97%, 42% 97%, 37% 93%, 31% 92%, 28% 88%, 26% 81%, 29% 84%, 34% 84%, 33% 79%, 30% 74%, 31% 67%, 34% 57%, 34% 65%, 39% 71%, 43% 65%, 43% 55%, 40% 45%, 48% 59%, 49% 69%, 51% 76%, 55% 71%, 54% 65%, 54% 58%, 58% 64%, 61% 72%, 57% 92%, 61% 97%, 64% 98%, 66% 95%, 64% 93%, 57% 96%, 54% 93%, 48% 97%);
  }
  25% {
    -webkit-clip-path: polygon(49% 97%, 41% 97%, 35% 92%, 33% 86%, 34% 80%, 30% 74%, 34% 77%, 38% 81%, 38% 78%, 36% 72%, 35% 67%, 37% 61%, 37% 54%, 39% 61%, 39% 67%, 43% 63%, 43% 58%, 45% 44%, 44% 58%, 48% 66%, 51% 67%, 51% 59%, 54% 67%, 56% 72%, 57% 79%, 59% 77%, 60% 71%, 61% 77%, 61% 83%, 60% 89%, 61% 94%, 57% 97%, 52% 98%);
            clip-path: polygon(49% 97%, 41% 97%, 35% 92%, 33% 86%, 34% 80%, 30% 74%, 34% 77%, 38% 81%, 38% 78%, 36% 72%, 35% 67%, 37% 61%, 37% 54%, 39% 61%, 39% 67%, 43% 63%, 43% 58%, 45% 44%, 44% 58%, 48% 66%, 51% 67%, 51% 59%, 54% 67%, 56% 72%, 57% 79%, 59% 77%, 60% 71%, 61% 77%, 61% 83%, 60% 89%, 61% 94%, 57% 97%, 52% 98%);
  }
  50% {
    -webkit-clip-path: polygon(46% 97%, 39% 96%, 35% 89%, 36% 84%, 34% 77%, 30% 73%, 30% 65%, 30% 70%, 35% 75%, 38% 68%, 37% 61%, 40% 53%, 41% 42%, 42% 56%, 44% 65%, 50% 67%, 51% 57%, 53% 68%, 52% 74%, 51% 81%, 55% 78%, 57% 72%, 58% 79%, 57% 85%, 55% 88%, 60% 87%, 63% 82%, 63% 89%, 59% 94%, 55% 98%, 51% 92%, 50% 99%, 45% 96%);
            clip-path: polygon(46% 97%, 39% 96%, 35% 89%, 36% 84%, 34% 77%, 30% 73%, 30% 65%, 30% 70%, 35% 75%, 38% 68%, 37% 61%, 40% 53%, 41% 42%, 42% 56%, 44% 65%, 50% 67%, 51% 57%, 53% 68%, 52% 74%, 51% 81%, 55% 78%, 57% 72%, 58% 79%, 57% 85%, 55% 88%, 60% 87%, 63% 82%, 63% 89%, 59% 94%, 55% 98%, 51% 92%, 50% 99%, 45% 96%);
  }
  75% {
    -webkit-clip-path: polygon(45% 97%, 38% 97%, 33% 93%, 31% 87%, 31% 81%, 29% 76%, 25% 69%, 29% 61%, 30% 69%, 35% 71%, 35% 62%, 34% 54%, 38% 45%, 38% 54%, 43% 62%, 47% 57%, 48% 49%, 44% 38%, 50% 46%, 53% 60%, 54% 71%, 53% 79%, 59% 76%, 60% 66%, 64% 73%, 63% 79%, 59% 85%, 64% 90%, 68% 84%, 68% 92%, 60% 97%, 53% 98%, 48% 99%);
            clip-path: polygon(45% 97%, 38% 97%, 33% 93%, 31% 87%, 31% 81%, 29% 76%, 25% 69%, 29% 61%, 30% 69%, 35% 71%, 35% 62%, 34% 54%, 38% 45%, 38% 54%, 43% 62%, 47% 57%, 48% 49%, 44% 38%, 50% 46%, 53% 60%, 54% 71%, 53% 79%, 59% 76%, 60% 66%, 64% 73%, 63% 79%, 59% 85%, 64% 90%, 68% 84%, 68% 92%, 60% 97%, 53% 98%, 48% 99%);
  }
  100% {
    -webkit-clip-path: polygon(48% 97%, 42% 97%, 37% 93%, 31% 92%, 28% 88%, 26% 81%, 29% 84%, 34% 84%, 33% 79%, 30% 74%, 31% 67%, 34% 57%, 34% 65%, 39% 71%, 43% 65%, 43% 55%, 40% 45%, 48% 59%, 49% 69%, 51% 76%, 55% 71%, 54% 65%, 54% 58%, 58% 64%, 61% 72%, 57% 92%, 61% 97%, 64% 98%, 66% 95%, 64% 93%, 57% 96%, 54% 93%, 48% 97%);
            clip-path: polygon(48% 97%, 42% 97%, 37% 93%, 31% 92%, 28% 88%, 26% 81%, 29% 84%, 34% 84%, 33% 79%, 30% 74%, 31% 67%, 34% 57%, 34% 65%, 39% 71%, 43% 65%, 43% 55%, 40% 45%, 48% 59%, 49% 69%, 51% 76%, 55% 71%, 54% 65%, 54% 58%, 58% 64%, 61% 72%, 57% 92%, 61% 97%, 64% 98%, 66% 95%, 64% 93%, 57% 96%, 54% 93%, 48% 97%);
  }
}
@keyframes burn_alt {
  0%, 100% {
    -webkit-clip-path: polygon(48% 97%, 43% 97%, 38% 97%, 34% 94%, 33% 91%, 32% 87%, 29% 83%, 26% 80%, 21% 75%, 20% 71%, 20% 66%, 20% 59%, 20% 65%, 24% 68%, 28% 67%, 28% 62%, 25% 60%, 21% 52%, 21% 43%, 24% 32%, 23% 39%, 24% 46%, 28% 48%, 33% 44%, 33% 39%, 31% 32%, 28% 23%, 30% 14%, 31% 22%, 35% 28%, 39% 28%, 41% 25%, 40% 21%, 39% 13%, 41% 6%, 42% 15%, 45% 23%, 49% 25%, 52% 22%, 51% 13%, 54% 21%, 56% 29%, 53% 35%, 50% 41%, 53% 46%, 58% 46%, 60% 39%, 60% 34%, 64% 39%, 65% 45%, 63% 51%, 61% 56%, 64% 61%, 68% 59%, 71% 55%, 73% 48%, 73% 40%, 76% 48%, 77% 56%, 76% 62%, 74% 66%, 69% 71%, 71% 74%, 75% 74%, 79% 71%, 81% 65%, 82% 72%, 81% 77%, 77% 82%, 73% 86%, 73% 89%, 78% 89%, 82% 85%, 81% 91%, 78% 95%, 72% 97%, 65% 98%, 59% 98%, 53% 99%, 47% 97%);
            clip-path: polygon(48% 97%, 43% 97%, 38% 97%, 34% 94%, 33% 91%, 32% 87%, 29% 83%, 26% 80%, 21% 75%, 20% 71%, 20% 66%, 20% 59%, 20% 65%, 24% 68%, 28% 67%, 28% 62%, 25% 60%, 21% 52%, 21% 43%, 24% 32%, 23% 39%, 24% 46%, 28% 48%, 33% 44%, 33% 39%, 31% 32%, 28% 23%, 30% 14%, 31% 22%, 35% 28%, 39% 28%, 41% 25%, 40% 21%, 39% 13%, 41% 6%, 42% 15%, 45% 23%, 49% 25%, 52% 22%, 51% 13%, 54% 21%, 56% 29%, 53% 35%, 50% 41%, 53% 46%, 58% 46%, 60% 39%, 60% 34%, 64% 39%, 65% 45%, 63% 51%, 61% 56%, 64% 61%, 68% 59%, 71% 55%, 73% 48%, 73% 40%, 76% 48%, 77% 56%, 76% 62%, 74% 66%, 69% 71%, 71% 74%, 75% 74%, 79% 71%, 81% 65%, 82% 72%, 81% 77%, 77% 82%, 73% 86%, 73% 89%, 78% 89%, 82% 85%, 81% 91%, 78% 95%, 72% 97%, 65% 98%, 59% 98%, 53% 99%, 47% 97%);
  }
  10% {
    -webkit-clip-path: polygon(44% 100%, 39% 100%, 35% 99%, 32% 99%, 32% 99%, 27% 97%, 24% 95%, 21% 92%, 19% 89%, 18% 86%, 16% 83%, 16% 79%, 17% 73%, 18% 68%, 17% 64%, 16% 64%, 12% 60%, 13% 52%, 16% 45%, 18% 40%, 17% 47%, 17% 53%, 21% 57%, 26% 59%, 29% 56%, 30% 48%, 28% 45%, 25% 38%, 25% 33%, 27% 23%, 29% 15%, 28% 23%, 29% 31%, 32% 38%, 36% 49%, 39% 52%, 40% 59%, 41% 64%, 47% 66%, 52% 64%, 50% 56%, 47% 48%, 47% 42%, 51% 34%, 53% 29%, 51% 40%, 53% 46%, 55% 52%, 59% 54%, 62% 53%, 64% 49%, 63% 43%, 67% 46%, 68% 54%, 67% 60%, 64% 65%, 63% 71%, 66% 75%, 71% 77%, 75% 75%, 76% 68%, 78% 72%, 79% 76%, 77% 80%, 73% 82%, 72% 86%, 77% 88%, 82% 87%, 84% 81%, 84% 88%, 83% 92%, 77% 96%, 73% 99%, 68% 99%, 62% 98%, 57% 100%, 53% 100%, 53% 95%, 50% 94%, 44% 93%);
            clip-path: polygon(44% 100%, 39% 100%, 35% 99%, 32% 99%, 32% 99%, 27% 97%, 24% 95%, 21% 92%, 19% 89%, 18% 86%, 16% 83%, 16% 79%, 17% 73%, 18% 68%, 17% 64%, 16% 64%, 12% 60%, 13% 52%, 16% 45%, 18% 40%, 17% 47%, 17% 53%, 21% 57%, 26% 59%, 29% 56%, 30% 48%, 28% 45%, 25% 38%, 25% 33%, 27% 23%, 29% 15%, 28% 23%, 29% 31%, 32% 38%, 36% 49%, 39% 52%, 40% 59%, 41% 64%, 47% 66%, 52% 64%, 50% 56%, 47% 48%, 47% 42%, 51% 34%, 53% 29%, 51% 40%, 53% 46%, 55% 52%, 59% 54%, 62% 53%, 64% 49%, 63% 43%, 67% 46%, 68% 54%, 67% 60%, 64% 65%, 63% 71%, 66% 75%, 71% 77%, 75% 75%, 76% 68%, 78% 72%, 79% 76%, 77% 80%, 73% 82%, 72% 86%, 77% 88%, 82% 87%, 84% 81%, 84% 88%, 83% 92%, 77% 96%, 73% 99%, 68% 99%, 62% 98%, 57% 100%, 53% 100%, 53% 95%, 50% 94%, 44% 93%);
  }
  20% {
    -webkit-clip-path: polygon(44% 99%, 41% 99%, 35% 98%, 29% 97%, 24% 93%, 21% 86%, 20% 80%, 16% 74%, 16% 64%, 16% 71%, 21% 75%, 25% 72%, 25% 65%, 22% 59%, 19% 53%, 19% 44%, 21% 52%, 25% 59%, 29% 57%, 29% 51%, 26% 44%, 26% 38%, 30% 32%, 31% 26%, 30% 18%, 34% 25%, 33% 35%, 33% 44%, 34% 50%, 39% 53%, 44% 52%, 45% 49%, 44% 44%, 42% 38%, 44% 33%, 48% 26%, 45% 35%, 47% 41%, 50% 44%, 51% 52%, 49% 60%, 48% 65%, 53% 69%, 58% 65%, 57% 59%, 58% 51%, 62% 41%, 66% 40%, 64% 47%, 61% 58%, 63% 66%, 66% 68%, 70% 67%, 72% 62%, 73% 57%, 71% 48%, 75% 53%, 79% 57%, 79% 64%, 76% 70%, 72% 75%, 70% 78%, 74% 80%, 78% 79%, 82% 76%, 84% 71%, 85% 66%, 84% 62%, 88% 67%, 89% 72%, 89% 79%, 87% 83%, 84% 89%, 81% 93%, 76% 97%, 69% 98%, 60% 99%, 54% 99%, 48% 100%, 45% 97%);
            clip-path: polygon(44% 99%, 41% 99%, 35% 98%, 29% 97%, 24% 93%, 21% 86%, 20% 80%, 16% 74%, 16% 64%, 16% 71%, 21% 75%, 25% 72%, 25% 65%, 22% 59%, 19% 53%, 19% 44%, 21% 52%, 25% 59%, 29% 57%, 29% 51%, 26% 44%, 26% 38%, 30% 32%, 31% 26%, 30% 18%, 34% 25%, 33% 35%, 33% 44%, 34% 50%, 39% 53%, 44% 52%, 45% 49%, 44% 44%, 42% 38%, 44% 33%, 48% 26%, 45% 35%, 47% 41%, 50% 44%, 51% 52%, 49% 60%, 48% 65%, 53% 69%, 58% 65%, 57% 59%, 58% 51%, 62% 41%, 66% 40%, 64% 47%, 61% 58%, 63% 66%, 66% 68%, 70% 67%, 72% 62%, 73% 57%, 71% 48%, 75% 53%, 79% 57%, 79% 64%, 76% 70%, 72% 75%, 70% 78%, 74% 80%, 78% 79%, 82% 76%, 84% 71%, 85% 66%, 84% 62%, 88% 67%, 89% 72%, 89% 79%, 87% 83%, 84% 89%, 81% 93%, 76% 97%, 69% 98%, 60% 99%, 54% 99%, 48% 100%, 45% 97%);
  }
  30% {
    -webkit-clip-path: polygon(38% 100%, 34% 99%, 28% 96%, 25% 93%, 23% 89%, 19% 85%, 18% 79%, 21% 74%, 24% 68%, 24% 62%, 22% 55%, 20% 50%, 24% 53%, 28% 61%, 31% 68%, 36% 68%, 38% 69%, 43% 67%, 41% 59%, 35% 54%, 33% 46%, 35% 39%, 41% 32%, 41% 26%, 38% 17%, 42% 21%, 46% 29%, 46% 39%, 43% 45%, 43% 51%, 47% 55%, 52% 56%, 55% 54%, 55% 49%, 54% 42%, 52% 34%, 59% 43%, 61% 51%, 60% 58%, 58% 63%, 65% 68%, 69% 67%, 72% 63%, 72% 57%, 71% 51%, 76% 39%, 73% 50%, 77% 56%, 81% 55%, 82% 49%, 84% 59%, 79% 69%, 72% 74%, 69% 76%, 71% 81%, 77% 81%, 81% 77%, 84% 70%, 87% 75%, 86% 81%, 84% 84%, 81% 87%, 81% 91%, 79% 94%, 77% 96%, 74% 97%, 71% 95%, 68% 96%, 67% 99%, 63% 100%, 60% 100%, 55% 100%, 53% 100%, 50% 100%, 48% 100%, 46% 100%, 44% 100%, 44% 100%, 42% 100%, 41% 100%);
            clip-path: polygon(38% 100%, 34% 99%, 28% 96%, 25% 93%, 23% 89%, 19% 85%, 18% 79%, 21% 74%, 24% 68%, 24% 62%, 22% 55%, 20% 50%, 24% 53%, 28% 61%, 31% 68%, 36% 68%, 38% 69%, 43% 67%, 41% 59%, 35% 54%, 33% 46%, 35% 39%, 41% 32%, 41% 26%, 38% 17%, 42% 21%, 46% 29%, 46% 39%, 43% 45%, 43% 51%, 47% 55%, 52% 56%, 55% 54%, 55% 49%, 54% 42%, 52% 34%, 59% 43%, 61% 51%, 60% 58%, 58% 63%, 65% 68%, 69% 67%, 72% 63%, 72% 57%, 71% 51%, 76% 39%, 73% 50%, 77% 56%, 81% 55%, 82% 49%, 84% 59%, 79% 69%, 72% 74%, 69% 76%, 71% 81%, 77% 81%, 81% 77%, 84% 70%, 87% 75%, 86% 81%, 84% 84%, 81% 87%, 81% 91%, 79% 94%, 77% 96%, 74% 97%, 71% 95%, 68% 96%, 67% 99%, 63% 100%, 60% 100%, 55% 100%, 53% 100%, 50% 100%, 48% 100%, 46% 100%, 44% 100%, 44% 100%, 42% 100%, 41% 100%);
  }
  40% {
    -webkit-clip-path: polygon(45% 99%, 40% 98%, 34% 98%, 31% 96%, 28% 93%, 26% 89%, 27% 84%, 26% 81%, 23% 77%, 20% 73%, 18% 70%, 19% 65%, 19% 60%, 20% 53%, 20% 43%, 24% 41%, 28% 32%, 28% 40%, 28% 48%, 29% 53%, 33% 52%, 35% 49%, 36% 42%, 36% 35%, 36% 27%, 39% 19%, 42% 12%, 40% 23%, 39% 29%, 41% 37%, 43% 41%, 44% 47%, 45% 52%, 47% 55%, 50% 57%, 52% 54%, 53% 48%, 52% 42%, 51% 33%, 50% 26%, 54% 36%, 55% 39%, 57% 46%, 57% 52%, 55% 58%, 55% 61%, 58% 65%, 62% 64%, 64% 60%, 65% 54%, 64% 49%, 65% 43%, 68% 38%, 67% 44%, 69% 51%, 72% 53%, 72% 59%, 70% 65%, 68% 69%, 68% 74%, 71% 75%, 74% 73%, 76% 69%, 78% 63%, 82% 58%, 81% 63%, 81% 69%, 81% 75%, 76% 80%, 75% 85%, 79% 87%, 82% 84%, 83% 91%, 79% 94%, 75% 96%, 71% 97%, 64% 98%, 58% 99%, 53% 98%, 46% 100%);
            clip-path: polygon(45% 99%, 40% 98%, 34% 98%, 31% 96%, 28% 93%, 26% 89%, 27% 84%, 26% 81%, 23% 77%, 20% 73%, 18% 70%, 19% 65%, 19% 60%, 20% 53%, 20% 43%, 24% 41%, 28% 32%, 28% 40%, 28% 48%, 29% 53%, 33% 52%, 35% 49%, 36% 42%, 36% 35%, 36% 27%, 39% 19%, 42% 12%, 40% 23%, 39% 29%, 41% 37%, 43% 41%, 44% 47%, 45% 52%, 47% 55%, 50% 57%, 52% 54%, 53% 48%, 52% 42%, 51% 33%, 50% 26%, 54% 36%, 55% 39%, 57% 46%, 57% 52%, 55% 58%, 55% 61%, 58% 65%, 62% 64%, 64% 60%, 65% 54%, 64% 49%, 65% 43%, 68% 38%, 67% 44%, 69% 51%, 72% 53%, 72% 59%, 70% 65%, 68% 69%, 68% 74%, 71% 75%, 74% 73%, 76% 69%, 78% 63%, 82% 58%, 81% 63%, 81% 69%, 81% 75%, 76% 80%, 75% 85%, 79% 87%, 82% 84%, 83% 91%, 79% 94%, 75% 96%, 71% 97%, 64% 98%, 58% 99%, 53% 98%, 46% 100%);
  }
  50% {
    -webkit-clip-path: polygon(40% 99%, 35% 99%, 31% 98%, 25% 95%, 23% 92%, 21% 88%, 20% 83%, 21% 80%, 22% 76%, 21% 70%, 20% 68%, 18% 64%, 21% 68%, 23% 71%, 25% 75%, 26% 79%, 31% 84%, 31% 79%, 28% 69%, 23% 60%, 17% 53%, 19% 41%, 25% 31%, 24% 24%, 24% 19%, 26% 24%, 28% 30%, 26% 37%, 25% 44%, 28% 49%, 33% 50%, 39% 48%, 40% 43%, 39% 35%, 37% 29%, 42% 34%, 43% 40%, 44% 47%, 43% 53%, 45% 59%, 51% 60%, 53% 56%, 51% 49%, 51% 44%, 53% 36%, 55% 32%, 54% 22%, 57% 29%, 57% 44%, 56% 50%, 58% 56%, 62% 59%, 66% 59%, 68% 53%, 66% 45%, 65% 38%, 70% 44%, 71% 50%, 72% 55%, 71% 62%, 68% 66%, 65% 70%, 67% 74%, 72% 74%, 76% 71%, 78% 65%, 80% 68%, 81% 73%, 78% 81%, 76% 89%, 77% 93%, 75% 97%, 70% 98%, 67% 98%, 62% 98%, 58% 98%, 53% 99%, 50% 99%, 47% 99%, 45% 99%);
            clip-path: polygon(40% 99%, 35% 99%, 31% 98%, 25% 95%, 23% 92%, 21% 88%, 20% 83%, 21% 80%, 22% 76%, 21% 70%, 20% 68%, 18% 64%, 21% 68%, 23% 71%, 25% 75%, 26% 79%, 31% 84%, 31% 79%, 28% 69%, 23% 60%, 17% 53%, 19% 41%, 25% 31%, 24% 24%, 24% 19%, 26% 24%, 28% 30%, 26% 37%, 25% 44%, 28% 49%, 33% 50%, 39% 48%, 40% 43%, 39% 35%, 37% 29%, 42% 34%, 43% 40%, 44% 47%, 43% 53%, 45% 59%, 51% 60%, 53% 56%, 51% 49%, 51% 44%, 53% 36%, 55% 32%, 54% 22%, 57% 29%, 57% 44%, 56% 50%, 58% 56%, 62% 59%, 66% 59%, 68% 53%, 66% 45%, 65% 38%, 70% 44%, 71% 50%, 72% 55%, 71% 62%, 68% 66%, 65% 70%, 67% 74%, 72% 74%, 76% 71%, 78% 65%, 80% 68%, 81% 73%, 78% 81%, 76% 89%, 77% 93%, 75% 97%, 70% 98%, 67% 98%, 62% 98%, 58% 98%, 53% 99%, 50% 99%, 47% 99%, 45% 99%);
  }
  60% {
    -webkit-clip-path: polygon(45% 99%, 41% 99%, 35% 98%, 30% 98%, 25% 94%, 22% 89%, 21% 84%, 23% 77%, 23% 70%, 19% 63%, 23% 66%, 27% 71%, 28% 76%, 32% 78%, 35% 72%, 32% 67%, 28% 64%, 24% 58%, 24% 49%, 27% 42%, 30% 34%, 31% 24%, 29% 13%, 33% 18%, 38% 25%, 38% 36%, 37% 44%, 41% 48%, 45% 48%, 48% 45%, 48% 39%, 46% 33%, 48% 27%, 52% 20%, 50% 29%, 51% 38%, 53% 44%, 54% 52%, 56% 57%, 61% 57%, 64% 55%, 65% 48%, 63% 39%, 63% 32%, 66% 37%, 69% 44%, 70% 52%, 68% 59%, 66% 64%, 67% 69%, 73% 72%, 76% 71%, 77% 66%, 76% 58%, 76% 51%, 80% 57%, 82% 62%, 82% 68%, 80% 73%, 77% 78%, 74% 82%, 75% 87%, 78% 87%, 81% 84%, 84% 79%, 86% 74%, 88% 78%, 87% 83%, 84% 89%, 82% 92%, 78% 97%, 74% 97%, 69% 97%, 66% 98%, 61% 98%, 57% 97%, 53% 99%, 49% 96%, 47% 99%, 48% 99%);
            clip-path: polygon(45% 99%, 41% 99%, 35% 98%, 30% 98%, 25% 94%, 22% 89%, 21% 84%, 23% 77%, 23% 70%, 19% 63%, 23% 66%, 27% 71%, 28% 76%, 32% 78%, 35% 72%, 32% 67%, 28% 64%, 24% 58%, 24% 49%, 27% 42%, 30% 34%, 31% 24%, 29% 13%, 33% 18%, 38% 25%, 38% 36%, 37% 44%, 41% 48%, 45% 48%, 48% 45%, 48% 39%, 46% 33%, 48% 27%, 52% 20%, 50% 29%, 51% 38%, 53% 44%, 54% 52%, 56% 57%, 61% 57%, 64% 55%, 65% 48%, 63% 39%, 63% 32%, 66% 37%, 69% 44%, 70% 52%, 68% 59%, 66% 64%, 67% 69%, 73% 72%, 76% 71%, 77% 66%, 76% 58%, 76% 51%, 80% 57%, 82% 62%, 82% 68%, 80% 73%, 77% 78%, 74% 82%, 75% 87%, 78% 87%, 81% 84%, 84% 79%, 86% 74%, 88% 78%, 87% 83%, 84% 89%, 82% 92%, 78% 97%, 74% 97%, 69% 97%, 66% 98%, 61% 98%, 57% 97%, 53% 99%, 49% 96%, 47% 99%, 48% 99%);
  }
  70% {
    -webkit-clip-path: polygon(41% 99%, 34% 99%, 27% 98%, 23% 96%, 18% 94%, 17% 90%, 16% 85%, 16% 81%, 14% 75%, 12% 68%, 11% 62%, 14% 67%, 19% 72%, 21% 69%, 19% 62%, 18% 57%, 17% 54%, 18% 49%, 22% 43%, 24% 36%, 25% 30%, 24% 23%, 27% 24%, 29% 33%, 28% 39%, 29% 48%, 31% 53%, 36% 53%, 39% 47%, 37% 41%, 40% 43%, 42% 49%, 41% 55%, 42% 57%, 45% 59%, 50% 60%, 53% 55%, 54% 49%, 53% 44%, 50% 39%, 56% 42%, 58% 47%, 58% 56%, 58% 59%, 66% 61%, 67% 58%, 67% 51%, 72% 46%, 70% 55%, 72% 59%, 72% 64%, 68% 69%, 66% 74%, 64% 80%, 68% 82%, 72% 78%, 74% 73%, 76% 77%, 76% 80%, 74% 83%, 73% 87%, 76% 89%, 78% 88%, 79% 85%, 80% 82%, 83% 86%, 83% 90%, 82% 92%, 79% 94%, 76% 96%, 73% 99%, 70% 98%, 66% 98%, 62% 99%, 58% 100%, 54% 100%, 51% 100%, 49% 100%, 46% 100%, 44% 100%);
            clip-path: polygon(41% 99%, 34% 99%, 27% 98%, 23% 96%, 18% 94%, 17% 90%, 16% 85%, 16% 81%, 14% 75%, 12% 68%, 11% 62%, 14% 67%, 19% 72%, 21% 69%, 19% 62%, 18% 57%, 17% 54%, 18% 49%, 22% 43%, 24% 36%, 25% 30%, 24% 23%, 27% 24%, 29% 33%, 28% 39%, 29% 48%, 31% 53%, 36% 53%, 39% 47%, 37% 41%, 40% 43%, 42% 49%, 41% 55%, 42% 57%, 45% 59%, 50% 60%, 53% 55%, 54% 49%, 53% 44%, 50% 39%, 56% 42%, 58% 47%, 58% 56%, 58% 59%, 66% 61%, 67% 58%, 67% 51%, 72% 46%, 70% 55%, 72% 59%, 72% 64%, 68% 69%, 66% 74%, 64% 80%, 68% 82%, 72% 78%, 74% 73%, 76% 77%, 76% 80%, 74% 83%, 73% 87%, 76% 89%, 78% 88%, 79% 85%, 80% 82%, 83% 86%, 83% 90%, 82% 92%, 79% 94%, 76% 96%, 73% 99%, 70% 98%, 66% 98%, 62% 99%, 58% 100%, 54% 100%, 51% 100%, 49% 100%, 46% 100%, 44% 100%);
  }
  80% {
    -webkit-clip-path: polygon(47% 99%, 42% 99%, 37% 98%, 32% 96%, 28% 92%, 26% 89%, 26% 83%, 26% 80%, 26% 72%, 23% 67%, 16% 63%, 14% 52%, 16% 46%, 16% 53%, 20% 60%, 26% 58%, 27% 51%, 25% 46%, 20% 41%, 19% 36%, 19% 30%, 21% 26%, 24% 20%, 23% 13%, 22% 7%, 26% 11%, 28% 17%, 28% 24%, 26% 30%, 30% 34%, 34% 34%, 39% 32%, 40% 27%, 38% 21%, 43% 28%, 43% 36%, 41% 41%, 46% 44%, 51% 41%, 53% 35%, 53% 26%, 57% 26%, 59% 33%, 60% 39%, 57% 46%, 55% 53%, 58% 57%, 64% 56%, 66% 52%, 69% 41%, 70% 48%, 69% 56%, 66% 63%, 64% 67%, 65% 71%, 70% 71%, 74% 68%, 76% 62%, 77% 54%, 79% 60%, 81% 66%, 80% 71%, 76% 75%, 72% 78%, 71% 82%, 75% 84%, 80% 83%, 84% 78%, 86% 83%, 83% 89%, 78% 92%, 74% 92%, 73% 96%, 69% 97%, 65% 96%, 62% 98%, 57% 99%, 54% 97%, 51% 99%, 46% 99%);
            clip-path: polygon(47% 99%, 42% 99%, 37% 98%, 32% 96%, 28% 92%, 26% 89%, 26% 83%, 26% 80%, 26% 72%, 23% 67%, 16% 63%, 14% 52%, 16% 46%, 16% 53%, 20% 60%, 26% 58%, 27% 51%, 25% 46%, 20% 41%, 19% 36%, 19% 30%, 21% 26%, 24% 20%, 23% 13%, 22% 7%, 26% 11%, 28% 17%, 28% 24%, 26% 30%, 30% 34%, 34% 34%, 39% 32%, 40% 27%, 38% 21%, 43% 28%, 43% 36%, 41% 41%, 46% 44%, 51% 41%, 53% 35%, 53% 26%, 57% 26%, 59% 33%, 60% 39%, 57% 46%, 55% 53%, 58% 57%, 64% 56%, 66% 52%, 69% 41%, 70% 48%, 69% 56%, 66% 63%, 64% 67%, 65% 71%, 70% 71%, 74% 68%, 76% 62%, 77% 54%, 79% 60%, 81% 66%, 80% 71%, 76% 75%, 72% 78%, 71% 82%, 75% 84%, 80% 83%, 84% 78%, 86% 83%, 83% 89%, 78% 92%, 74% 92%, 73% 96%, 69% 97%, 65% 96%, 62% 98%, 57% 99%, 54% 97%, 51% 99%, 46% 99%);
  }
  90% {
    -webkit-clip-path: polygon(43% 99%, 39% 99%, 33% 99%, 29% 98%, 25% 97%, 20% 94%, 18% 91%, 17% 87%, 16% 82%, 17% 78%, 17% 73%, 18% 65%, 22% 61%, 23% 56%, 23% 51%, 21% 46%, 25% 51%, 26% 59%, 26% 64%, 28% 65%, 31% 65%, 33% 63%, 33% 59%, 31% 54%, 29% 49%, 28% 43%, 30% 37%, 31% 30%, 31% 24%, 33% 28%, 34% 33%, 33% 39%, 35% 46%, 37% 50%, 39% 55%, 44% 54%, 43% 49%, 43% 44%, 44% 39%, 44% 33%, 46% 38%, 48% 42%, 48% 47%, 52% 49%, 52% 51%, 51% 57%, 52% 60%, 57% 59%, 58% 56%, 59% 50%, 57% 42%, 56% 38%, 61% 44%, 62% 47%, 64% 53%, 64% 57%, 62% 61%, 61% 66%, 63% 69%, 68% 69%, 70% 67%, 71% 64%, 71% 58%, 71% 53%, 73% 49%, 73% 55%, 75% 58%, 76% 63%, 74% 68%, 73% 73%, 76% 78%, 77% 81%, 77% 85%, 77% 90%, 74% 94%, 71% 97%, 68% 99%, 61% 99%, 53% 100%, 48% 100%);
            clip-path: polygon(43% 99%, 39% 99%, 33% 99%, 29% 98%, 25% 97%, 20% 94%, 18% 91%, 17% 87%, 16% 82%, 17% 78%, 17% 73%, 18% 65%, 22% 61%, 23% 56%, 23% 51%, 21% 46%, 25% 51%, 26% 59%, 26% 64%, 28% 65%, 31% 65%, 33% 63%, 33% 59%, 31% 54%, 29% 49%, 28% 43%, 30% 37%, 31% 30%, 31% 24%, 33% 28%, 34% 33%, 33% 39%, 35% 46%, 37% 50%, 39% 55%, 44% 54%, 43% 49%, 43% 44%, 44% 39%, 44% 33%, 46% 38%, 48% 42%, 48% 47%, 52% 49%, 52% 51%, 51% 57%, 52% 60%, 57% 59%, 58% 56%, 59% 50%, 57% 42%, 56% 38%, 61% 44%, 62% 47%, 64% 53%, 64% 57%, 62% 61%, 61% 66%, 63% 69%, 68% 69%, 70% 67%, 71% 64%, 71% 58%, 71% 53%, 73% 49%, 73% 55%, 75% 58%, 76% 63%, 74% 68%, 73% 73%, 76% 78%, 77% 81%, 77% 85%, 77% 90%, 74% 94%, 71% 97%, 68% 99%, 61% 99%, 53% 100%, 48% 100%);
  }
}
@keyframes spark_1 {
  0% {
    opacity: 1;
    left: 100px;
    top: 170px;
  }
  100% {
    top: 100px;
    left: 110px;
    opacity: 0;
  }
}
@keyframes spark_2 {
  0% {
    opacity: 1;
    left: 100px;
    top: 170px;
  }
  100% {
    top: 60px;
    left: 150px;
    opacity: 0;
  }
}
@keyframes spark_3 {
  0% {
    opacity: 1;
    left: 120px;
    top: 170px;
  }
  100% {
    top: 70px;
    left: 70px;
    opacity: 0;
  }
}
@keyframes spark_4 {
  0% {
    opacity: 1;
    left: 20px;
    top: 170px;
  }
  100% {
    top: 70px;
    left: 40px;
    opacity: 0;
  }
}

.features {
  position: relative;
}
.features .list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.features .list li {
  padding: 80px 0;
  border-bottom: 1px solid #dfdfdf;
}
.features .list li:first-child {
  padding-top: 0;
}
.features .list li:last-child {
  padding-bottom: 0;
  border: none;
}
.features .list h2 {
  font-size: 26px;
}
.features .list .readmore {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-neutral-800);
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 10px;
}

.gallery {
  background: var(--clr-primary-500);
}
.gallery img {
  width: 100%;
}

.shorts {
  background: var(--clr-primary-500);
  padding-bottom: 100px;
}
.shorts a {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 200/355;
  overflow: hidden;
}
.shorts a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.conatctWapper {
  position: relative;
  background-color: var(--clr-primary-500);
  padding-top: 200px;
  min-height: 100vh;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed;
}
.conatctWapper .container {
  position: relative;
}
.conatctWapper .details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.conatctWapper .logo {
  width: 200px;
}
.conatctWapper .reachus {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conatctWapper .reachus p {
  color: var(--clr-neutral-100);
  font-size: var(--fs-650);
  font-weight: var(--fw-semi-bold-650);
  text-align: center;
}
.conatctWapper .reachus .contact {
  position: relative;
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
.conatctWapper .reachus .contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-neutral-100);
  font-size: var(--fs-650);
}
.conatctWapper .reachus .contact li i {
  font-size: var(--fs-650);
}
@media (max-width: 50em) {
  .conatctWapper .reachus .contact {
    flex-direction: column;
    gap: 10px;
  }
  .conatctWapper .reachus .contact li {
    justify-content: center;
  }
}
.conatctWapper .reachus .social {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.conatctWapper .reachus .social li {
  position: relative;
}
.conatctWapper .reachus .social li a {
  position: relative;
}
.conatctWapper .reachus .social li a svg {
  height: 28px;
  fill: var(--clr-neutral-100);
}
.conatctWapper .reachus .social li a:hover svg {
  height: 28px;
  fill: var(--clr-accent-100);
}

.pageNotFound {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-primary-500);
}
.pageNotFound .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pageNotFound .wrapper h1 {
  position: relative;
  font-size: 130px;
  line-height: 1;
  color: var(--clr-accent-100);
}
.pageNotFound .wrapper h2 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}
.pageNotFound .wrapper p {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-neutral-100);
  margin: 50px 0;
}

img.vbox-figlio {
  margin: auto !important;
}

.md-modal .md-content {
  background-color: var(--clr-neutral-100);
}

.youtubeShorts {
  min-height: 822px !important;
}

footer {
  position: relative;
}
footer .details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logo {
  width: 200px;
}
footer .reachus {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .reachus p {
  color: var(--clr-neutral-100);
  font-size: var(--fs-650);
  font-weight: var(--fw-semi-bold-650);
  text-align: center;
}
footer .reachus .contact {
  position: relative;
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
footer .reachus .contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-neutral-100);
  font-size: var(--fs-650);
}
footer .reachus .contact li i {
  font-size: var(--fs-650);
}
@media (max-width: 50em) {
  footer .reachus .contact {
    flex-direction: column;
    gap: 10px;
  }
  footer .reachus .contact li {
    justify-content: center;
  }
}
footer .reachus .social {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
footer .reachus .social li {
  position: relative;
}
footer .reachus .social li a {
  position: relative;
}
footer .reachus .social li a svg {
  height: 28px;
  fill: var(--clr-neutral-100);
}
footer .reachus .social li a:hover svg {
  height: 28px;
  fill: var(--clr-accent-100);
}

.floating-call {
  position: fixed;
  width: 50px;
  z-index: 88;
  right: 0;
  top: 30%;
  width: 45px;
}
.floating-call svg {
  position: relative;
}
.floating-call .van {
  position: absolute;
  height: 40px;
  animation: vanrun 0.7s infinite;
}
@keyframes vanrun {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0px);
  }
}/*# sourceMappingURL=style.css.map */