:root {
  --red-signature: #E1251B;
  --red-deep: #64131E;
  --red-deep2: #871C23;
  --red-mid: #B8252E;
  --red-mid2: #F26A52;
  --red-mid3: #FFB9A2;
  --red-pale: #F0C7BF;
  --red-pale2: #FAECEB;

  --purple-deep: #4D144A;
  --purple-deep2: #7A126B;
  --purple-pale: #D9C1D8;
  --purple-pale2: #D9C1D8;

  --blue-deep: #11184F;
  --blue-deep2: #294E95;
  --blue-pale: #C9D0F0;
  --blue-pale2: #EAEEF5;

  --black-signature: #1E0013;
  --grey-deep: #4E444E;
  --grey-mid: #ABA8B1;
  --grey-pale: #E6E2E4;
}


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
--------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol,
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
sup {
  position: relative;
  font-size: 65%;
  line-height: 0;
  vertical-align: baseline;
  top: -0.4em;
}
strong, b {
  font-weight: bold;
}
em {
  font-style: italic;
}
figure {
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 1.875rem;
}


/*  Basic
--------------------------------- */
.ci-clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.ci-img-full {
  max-width: 100%;
  height: auto;
}
.ci-text-uppercase {
  text-transform: uppercase;
}
.ci-text-center {
  text-align: center;
}
.ci-text-right {
  text-align: right;
}
.ci-float-right {
  float: right;
}


/* Modal : Bootstrap Default */

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

  /* Modal : Video - YouTube
--------------------------------- */
.modal-backdrop.show {
  opacity: .85;
}
.modal .modal-header {
  display: flex;
  justify-content: flex-end;
  padding:0;
  position: absolute;
  width: 100%;
}
.modal .modal-content {
  background-color: transparent;
  border-radius: 0;
}
.modal .modal-header .ci-btn-close {
  background-color: white;
  box-shadow: 0 0 3px 1px #00000008;
  border:none;
  cursor: pointer;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .3;
  padding: 0 !important;
  transform:scale(1);
  transition: all .3s;
  z-index: 1;
}
.modal .modal-header .ci-btn-close:hover {
  opacity:1;
  box-shadow: 0 0 4px 0 #0002, 0 0 3px 1px #0001;
  transform:scale(1.1);
}
.modal-video .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);
  max-width: 70vw;
  width: 70vw;
}
.modal-video .modal-body {
  background-color: transparent;
  padding:0;
}

/*  Aspect Ratio
--------------------------------- */
.ratio-1x1 .image,
.ratio-16x9 .image,
.ratio-4x3 .image {
  overflow: hidden;
  position: relative;
}

.ratio-1x1 .image.border-radius,
.ratio-16x9 .image.border-radius,
.ratio-4x3 .image.border-radius {
  border-radius: 6px;
}

.ratio-1x1 .image:after,
.ratio-1x1 .video:after,
.ratio-1x1.image:after,
.ratio-1x1.video:after {
    content:'';
    display: block;
    padding-bottom:100%;
}
.ratio-16x9 .image:after,
.ratio-16x9 .video:after,
.ratio-16x9.image:after,
.ratio-16x9.video:after {
    content: '';
    display: block;
    padding-bottom: 56.25%
}
.ratio-4x3 .image:after,
.ratio-4x3 .video:after,
.ratio-4x3.image:after,
.ratio-4x3.video:after {
    content:'';
    display: block;
    padding-bottom: 75%;
}

.ratio-1x1 img,
.ratio-16x9 img,
.ratio-4x3 img {
    object-fit: cover;
    position: absolute;
    transform: scale(1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
}


/*  Font-sizes ~24px | ~22px | ~18px | ~14px | ~12px
--------------------------------- */
.ci-font-xl {
  font-size: 1.5em !important;
  line-height: 135% !important;
}
.ci-font-l {
  font-size: 1.375em !important;
  line-height: 135% !important;
}
.ci-font-m {
  font-size: 1.125em !important;
  line-height: 135% !important;
}
.ci-font-s {
  font-size: 0.875em !important;
  line-height: 150% !important;
}
.ci-font-xs {
  font-size: 0.750em !important;
  line-height: 150% !important;
}
.ci-font-900 {
  font-weight: 900;
}
.ci-font-500 {
  font-weight: 500;
}
.ci-font-400 {
  font-weight: 400;
}
.ci-font-300 {
  font-weight: 300;
}


/*  Spacing
--------------------------------- */
.ci-px-xl { padding-left: 100px; padding-right: 100px; }
.ci-py-xl { padding-top: 100px; padding-bottom: 100px; }
.ci-pt-xl { padding-top: 100px }
.ci-pb-xl { padding-bottom: 100px }
.ci-pl-xl { padding-left: 100px }
.ci-pr-xl { padding-right: 100px }
.ci-px-l { padding-left: 80px; padding-right: 80px; }
.ci-py-l { padding-top: 80px; padding-bottom: 80px; }
.ci-pt-l { padding-top: 80px }
.ci-pb-l { padding-bottom: 80px }
.ci-pl-l { padding-left: 80px }
.ci-pr-l { padding-right: 80px }
.ci-px-m { padding-left: 60px; padding-right: 60px; }
.ci-py-m { padding-top: 60px; padding-bottom: 60px; }
.ci-pt-m { padding-top: 60px }
.ci-pb-m { padding-bottom: 60px }
.ci-pl-m { padding-left: 60px }
.ci-pr-m { padding-right: 60px }
.ci-px-s { padding-left: 30px; padding-right: 30px;  }
.ci-py-s { padding-top: 30px; padding-bottom: 30px }
.ci-pt-s { padding-top: 30px }
.ci-pb-s { padding-bottom: 30px }
.ci-pl-s { padding-left: 30px }
.ci-pr-s { padding-right: 30px }
.ci-px-xs { padding-left: 15px; padding-right: 15px; }
.ci-py-xs { padding-top: 15px; padding-bottom: 15px }
.ci-pt-xs { padding-top: 15px }
.ci-pb-xs { padding-bottom: 15px }
.ci-pl-xs { padding-left: 15px }
.ci-pr-xs { padding-right: 15px }
  @media (max-width: 1100px) {
    .ci-px-xl, .ci-px-l { padding-left: 60px; padding-right: 60px; }
    .ci-py-xl, .ci-py-l { padding-top: 60px; padding-bottom: 60px; }
    .ci-pt-xl, .ci-pt-l { padding-top: 60px }
    .ci-pb-xl, .ci-pb-l { padding-bottom: 60px }
    .ci-pl-xl, .ci-pl-l { padding-left: 60px }
    .ci-pr-xl, .ci-pr-l { padding-right: 60px }
  }
  @media (max-width: 980px) {
    .ci-px-xl, .ci-px-l, .ci-px-m { padding-left: 30px; padding-right: 30px; }
    .ci-py-xl, .ci-py-l, .ci-py-m { padding-top: 30px; padding-bottom: 30px; }
    .ci-pt-xl, .ci-pt-l, .ci-pt-m { padding-top: 30px }
    .ci-pb-xl, .ci-pb-l, .ci-pb-m { padding-bottom: 30px }
    .ci-pl-xl, .ci-pl-l, .ci-pl-m { padding-left: 30px }
    .ci-pr-xl, .ci-pr-l, .ci-pr-m { padding-right: 30px }
  }

.ci-mx-xl { margin-left: 100px; margin-right: 100px; }
.ci-my-xl { margin-top: 100px; margin-bottom: 100px; }
.ci-mt-xl { margin-top: 100px }
.ci-mb-xl { margin-bottom: 100px }
.ci-ml-xl { margin-left: 100px }
.ci-mr-xl { margin-right: 100px }
.ci-mx-l { margin-left: 80px; margin-right: 80px; }
.ci-my-l { margin-top: 80px; margin-bottom: 80px; }
.ci-mt-l { margin-top: 80px }
.ci-mb-l { margin-bottom: 80px }
.ci-ml-l { margin-left: 80px }
.ci-mr-l { margin-right: 80px }
.ci-mx-m { margin-left: 60px; margin-right: 60px; }
.ci-my-m { margin-top: 60px; margin-bottom: 60px; }
.ci-mt-m { margin-top: 60px }
.ci-mb-m { margin-bottom: 60px }
.ci-ml-m { margin-left: 60px }
.ci-mr-m { margin-right: 60px }
.ci-mx-s { margin-left: 30px; margin-right: 30px;  }
.ci-my-s { margin-top: 30px; margin-bottom: 30px }
.ci-mt-s { margin-top: 30px }
.ci-mb-s { margin-bottom: 30px }
.ci-ml-s { margin-left: 30px }
.ci-mr-s { margin-right: 30px }
.ci-mx-xs { margin-left: 15px; margin-right: 15px; }
.ci-my-xs { margin-top: 15px; margin-bottom: 15px }
.ci-mt-xs { margin-top: 15px }
.ci-mb-xs { margin-bottom: 15px }
.ci-ml-xs { margin-left: 15px }
.ci-mr-xs { margin-right: 15px }
.ci-mb-0 { margin-bottom: 0 !important; }
  @media (max-width: 1100px) {
    .ci-mx-xl, .ci-mx-l { margin-left: 60px; margin-right: 60px; }
    .ci-my-xl, .ci-my-l { margin-top: 60px; margin-bottom: 60px; }
    .ci-mt-xl, .ci-mt-l { margin-top: 60px }
    .ci-mb-xl, .ci-mb-l { margin-bottom: 60px }
    .ci-ml-xl, .ci-ml-l { margin-left: 60px }
    .ci-mr-xl, .ci-mr-l { margin-right: 60px }
  }
  @media (max-width: 980px) {
    .ci-mx-xl, .ci-mx-l, .ci-mx-m { margin-left: 30px; margin-right: 30px; }
    .ci-my-xl, .ci-my-l, .ci-my-m { margin-top: 30px; margin-bottom: 30px; }
    .ci-mt-xl, .ci-mt-l, .ci-mt-m { margin-top: 30px }
    .ci-mb-xl, .ci-mb-l, .ci-mb-m { margin-bottom: 30px }
    .ci-ml-xl, .ci-ml-l, .ci-ml-m { margin-left: 30px }
    .ci-mr-xl, .ci-mr-l, .ci-mr-m { margin-right: 30px }
  }


/* Display
--------------------------------- */
.ci-d-block {
  display: block;
}
.ci-d-inline-block {
  display: inline-block;
}
.ci-d-flex {
  display: flex;
}
.ci-d-none {
  display: none;
}
@media (max-width: 768px) {
  .ci-d-mhide {
    display: none;
  }
}

/* Flex item
--------------------------------- */
.ci-d-flex.ci-flex-align-end {
  align-items: flex-end;
}
.ci-d-flex.ci-flex-align-start {
  align-items: flex-start;
}
.ci-d-flex.ci-flex-align-center {
  align-items: center;
}
.ci-d-flex.ci-flex-justify-between {
  justify-content: space-between;
}
.ci-d-flex.flex-justify-around {
  justify-content: space-around;
}
.ci-d-flex.flex-justify-center {
  justify-content: center;
}
.ci-d-flex.flex-justify-end {
  justify-content: flex-end;
}
.ci-d-flex .ci-order-1 {
  order: 1;
}
.ci-d-flex .ci-order-2 {
  order: 2;
}

/* Flex item
--------------------------------- */
.ci-col-grid {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}
.ci-col-grid.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.ci-col-grid > .ci-col-grid-item {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.ci-col-grid.no-gutters > .ci-col-grid-item {
  margin-left: 0;
  margin-right: 0;
}
.ci-col-grid-onehalf > .col-grid-item {
  max-width: 50%;
}
.ci-col-grid-onethird > .col-grid-item {
  max-width: 33.3%;
}
.ci-col-grid-oneforth > .col-grid-item {
  max-width: 25%;
}
.ci-col-grid-onefifth > .col-grid-item {
  max-width: 20%;
}
.ci-col-grid-onesixth > .col-grid-item {
  max-width: 16.6%;
}

/* Custom check
--------------------------------- */
.ci-custom-check {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  line-height: 140%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ci-custom-check input {
  /* Hide the browser's default checkbox */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ci-custom-check .checkmark {
  /* Create a custom checkbox */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 2px;
  background-color: #fff;
}
.ci-custom-check:hover input~.checkmark {
  /* On mouse-over, add a grey background color */
  background-color: #fff;
}
.ci-custom-check input:checked~.checkmark {
  /* When the checkbox is checked, add a green background */
  background-color: #6AC346;
}
.ci-custom-check .checkmark:after {
  /* Create the checkmark/indicator (hidden when not checked) */
  content: "";
  position: absolute;
  display: none;
}
.ci-custom-check input:checked~.checkmark:after {
  /* Show the checkmark when checked */
  display: block;
}
.ci-custom-check .checkmark:after {
  /* Style the checkmark/indicator */
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  box-sizing: content-box;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Responsive Video
--------------------------------- */
.ci-videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
}
.ci-videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Container wrapper
--------------------------------- */
.ci-wrap-mid {
  margin-left: auto;
  margin-right: auto;
}
.ci-wrap-xl {
  width: 80%;
  max-width: 1405px;
  margin-left: auto;
  margin-right: auto
}
.ci-wrap-l {
  width: 80%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto
}
.ci-wrap-m {
  width: 80%;
  max-width: 980px;
}
.ci-wrap-s {
  width: 80%;
  max-width: 767px;
}
.ci-wrap-xs {
  width: 80%;
  max-width: 479px;
}

/* Background color
--------------------------------- */
.ci-bg-black { background-color: var(--black-signature); }
.ci-bg-greydeep { background-color: var(--grey-deep); }
.ci-bg-greymid { background-color: var(--grey-mid); }
.ci-bg-greypale { background-color: var(--grey-pale); }

.ci-bg-bluedeep { background-color: var(--blue-deep); }
.ci-bg-bluedeep2 { background-color: var(--blue-deep2); }
.ci-bg-bluepale { background-color: var(--blue-pale); }
.ci-bg-bluepale2 { background-color: var(--blue-pale2); }

.ci-bg-purpledeep { background-color: var(--purple-deep); }
.ci-bg-purpledeep2 { background-color: var(--purple-deep2); }
.ci-bg-purplepale { background-color: var(--purple-pale); }
.ci-bg-purplepale2 { background-color: var(--purple-pale2); }

.ci-bg-redsignature { background-color: var(--red-signature); }
.ci-bg-reddeep { background-color: var(--red-deep); }
.ci-bg-reddeep2 { background-color: var(--red-deep2); }
.ci-bg-redmid { background-color: var(--red-mid); }
.ci-bg-redmid2 { background-color: var(--red-mid2); }
.ci-bg-redmid3 { background-color: var(--red-mid3); }
.ci-bg-redpale { background-color: var(--red-pale); }
.ci-bg-redpale2 { background-color: var(--red-pale2); }

/* Text Color
--------------------------------- */
.ci-text-black { color: var(--black-signature); }
.ci-text-greydeep { color: var(--grey-deep); }
.ci-text-greymid { color: var(--grey-mid); }
.ci-text-greypale { color: var(--grey-pale); }

.ci-text-bluedeep { color: var(--blue-deep); }
.ci-text-bluedeep2 { color: var(--blue-deep2); }
.ci-text-bluepale { color: var(--blue-pale); }
.ci-text-bluepale2 { color: var(--blue-pale2); }

.ci-text-purpledeep { color: var(--purple-deep); }
.ci-text-purpledeep2 { color: var(--purple-deep2); }
.ci-text-purplepale { color: var(--purple-pale); }
.ci-text-purplepale2 { color: var(--purple-pale2); }

.ci-text-redsignature { color: var(--red-signature); }
.ci-text-reddeep { color: var(--red-deep); }
.ci-text-reddeep2 { color: var(--red-deep2); }
.ci-text-redmid { color: var(--red-mid); }
.ci-text-redmid2 { color: var(--red-mid2); }
.ci-text-redmid3 { color: var(--red-mid3); }
.ci-text-redpale { color: var(--red-pale); }
.ci-text-redpale2 { color: var(--red-pale2); }

.ci-text-white { color: #ffffff; }

/* Buttons
--------------------------------- */
/* <> Primary <> */
.ci-btn {
  background: var(--blue-deep2) !important;
  color: #ffffff !important;
  text-align: left;
  padding: 8px 20px !important;
  display: inline-flex;
  align-items: center;
  line-height: 1.7em !important;
  border: 0;
  border-radius: 4px !important;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow-x: hidden;
}
.ci-btn strong {
  display: block;
  margin-right: 4px !important;
}
.ci-btn .material-icons-outlined {
  font-size: 1.5em;
  margin-top: -1px !important;
  transition: all 0.3s cubic-bezier(0.59, 0.73, 0.17, 1) !important;
}
.ci-btn::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.1);
  transition: all 0.5s cubic-bezier(0.59, 0.73, 0.17, 1);
}
.ci-btn > * {
  position: relative;
  z-index: 2;
}
.ci-btn:hover::after {
  left: 0;
}
.ci-btn:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* List group
--------------------------------- */
ul.ci-list-empty {
  list-style-type: none;
}
ul.ci-list-square {
  list-style-type: square;
}
ul.ci-list-disc {
  list-style-type: disc;
  margin-left: 15px;
}
ul.ci-list-decimal {
  list-style-type: decimal;
  margin-left: 15px;
}

/* Hover effect
--------------------------------- */
.ci-hover-lift {
  transition: all 0.2s ease-out;
}
.ci-hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}


/* Toggle
--------------------------------- */
.ci-toggle-item {
  border-bottom: 1px solid #dddddd;
  padding-right: 100px;
  padding-top: 3.750rem;
  padding-bottom: 3.750rem;
  position: relative;
}
  .ci-toggle-item:after {
    content: '×';
    position: absolute;
    top: 3.750rem;
    right: 0;
    margin-top: 10px;
    font-size: 3rem;
    transform: rotate(-45deg);
    transition: all .7s;
  }
  .ci-toggle-item.current:after {
    transform: none;
  }
.ci-toggle-item .ci-toggle-title {
  cursor: pointer;
}
.ci-toggle-item .ci-toggle-body {
  display: none;
}
.ci-toggle-item.current .ci-toggle-body {
  display: block;
}
.ci-toggle-item .ci-toggle-title i {
  font-style: normal;
  position: relative;
  padding-right: 50px;
  display: inline-block;
  margin-right: 20px;
}
.ci-toggle-item .ci-toggle-title i:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  width: 30px;
  height: 1px;
  background: #111;
}


/* Animate content show on scroll
   Based on slidein.js
--------------------------------- */
/* <> Parallax <> */
.ci-parallax-bg {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

/* <> Content Clip <> */
.byn-anima-clip {
  clip-path: inset(0);
  transition: clip-path 1s cubic-bezier(0.59, 0.73, 0.17, 1);
}
.anima-initiate.byn-anima-clip {
  clip-path: inset(0 5%);
}

/* <> Clip Circle <> */
.byn-anima-clipAppear {
  clip-path: inset(0 100% 0 0);;
  transition: clip-path 1s cubic-bezier(0.59, 0.73, 0.17, 1);
}
.anima-initiate.byn-anima-clipAppear {
  clip-path: inset(0 0 0 0);
}

/* <> Clip Right <> */
.byn-anima-clipRight {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .7s cubic-bezier(0.59, 0.73, 0.17, 1);
}
.anima-initiate .byn-anima-clipRight {
  clip-path: inset(0 0 0 0);
}

/* <> Clip Right <> */
.byn-anima-clipUp {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .7s cubic-bezier(0.59, 0.73, 0.17, 1);
}
.anima-initiate .byn-anima-clipUp {
  clip-path: inset(0 0 0 0);
}

/* <> Fade Down <> */
.enb-anima .byn-anima-fadeDown {
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
}

/* <> Fade Right <> */
.enb-anima .byn-anima-fadeRight {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
}

/* <> Fade Rotate <> */
.enb-anima .byn-anima-rotate {
  transform-origin: 50% 50%;
  transform: translate3d(0px, 0px, 0px) rotate(5.0277deg);
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
}

/* <> Zoom <> */
.enb-anima .byn-anima-zoom {
  transform: scale(0.5);
  transition-duration: .5s;
  visibility: hidden;
  opacity: 0;
}
.anima-initiate .byn-anima-zoom {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/* <> Pulse <> */
.enb-anima .byn-anima-pulse {
  animation-duration: .5s;
  visibility: hidden;
  opacity: 0;
}
.anima-initiate .byn-anima-pulse {
  transform: scale(1);
  animation-name: pulse;
  animation-fill-mode: both;
}
.anima-initiate .byn-anima-pulse.step0 { animation-delay: 0; }
.anima-initiate .byn-anima-pulse.step1 { animation-delay: .3s; }
.anima-initiate .byn-anima-pulse.step2 { animation-delay: .6s; }
.anima-initiate .byn-anima-pulse.step3 { animation-delay: .9s; }
.anima-initiate .byn-anima-pulse.step4 { animation-delay: 1.2s; }
.anima-initiate .byn-anima-pulse.step5 { animation-delay: 1.5s; }

  @keyframes pulse {
  	0% {
  		transform: scale(0.5);
      opacity: 0;
      visibility: hidden;
      /* box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); */
  	}

  	70% {
  		transform: scale(1.1);
      opacity: 1;
      visibility: visible;
      /* box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); */
  	}

  	100% {
  		transform: scale(1);
      opacity: 1;
      visibility: visible;
      /* box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); */
  	}
  }

/* <> Initiate step & delay <> */
.anima-initiate .step0,
.anima-initiate .step1,
.anima-initiate .step2,
.anima-initiate .step3,
.anima-initiate .step4,
.anima-initiate .step5 {
  transform: none;
  visibility: visible;
  opacity: 1;
}
.anima-initiate .step0 {
  transition-delay: 0;
}
.anima-initiate .step1 {
  transition-delay: .3s;
}
.anima-initiate .step2 {
  transition-delay: .6s;
}
.anima-initiate .step3 {
  transition-delay: .9s;
}
.anima-initiate .step4 {
  transition-delay: 1.2s;
}
.anima-initiate .step5 {
  transition-delay: 1.5s;
}