:root {
  /*Light mode -> normal*/
  --color-mode: "light";

  --primary-background: #ffffff;
  --secondary-background: #dfdfdf;
  --tertiary-background: #c2c2c2;

  --primary-title-color: #273645;
  --secondary-title-color: #000000;

  --primary-text-color: #000000;
  --secondary-text-color: #ffffff;

  --a-text-color: #000000;

  --standard-border-radius: 1.2em;


  --btn-color:  #2f2e2e;
  --divider-color: #ececec;
  --tsuru-gold:  #bc9b5d;

  --color1: #ffffff;
  --color2: #ffffff;
  --color3: #ffffff;
  --color4: #ffffff;
  --color5: #ffffff;

  --parent-height : 26.5em ;
  --duration: 1s ;
  --duration-text-wrap: 12s 1.5s cubic-bezier(0.82, 0.82, 1, 1.01) ;
  --cubic-header: var(--duration) cubic-bezier(0.71, 0.21, 0.3, 0.95) ;
  --cubic-slider : var(--duration) cubic-bezier(0.4, 0, 0.2, 1) ;
  --cubic-play-list : .35s var(--duration) cubic-bezier(0, 0.85, 0.11, 1.64) ;
  --cubic-slider-context : cubic-bezier(1, -0.01, 1, 1.01) ;
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary-text-color);
  background-color: var(--primary-background);
  text-align: left;
  font-family: sans-serif;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  transition: 500ms ease-in-out, color 200ms ease;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);

  /* height: 100vh ; */
  display: flex ;
  user-select: none ;
  /* align-items: center ; */
  justify-content: center ;
}
html, body {
  width: 100%;
  height: 100%;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 1px solid var(--divider-color);
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-title-color);
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
a, p {
  font-family: 'Montserrat',sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #273645;
  line-height: 1.42857143;
}
a {
  text-decoration: none;
  color: var(--a-text-color);
}
@media(hover:hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}
p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-text-color);
}
small {
  font-size: 80%;
}
strong {
  font-weight: bolder;
}
mark {
  padding: 0.15em;
  background-color: var(--tsuru-gold);
}
em {
  margin-top: 0;
  margin-bottom: 1rem;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #727272;
  text-align: left;
  caption-side: bottom;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 0 !important;
}
input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
select {
  word-wrap: normal;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="radio"], input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
summary {
  display: list-item;
  cursor: pointer;
}
.page-section {
  padding: 5rem 0;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
.overflow-hidden {
  overflow: hidden !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-muted {
  color: #6c757d !important;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.text-white {
  color: #ffffff;
}
.text-black {
  color: #000000;
}
.hide {
  opacity: 0;
  pointer-events: none;
}
.show {
  opacity: 1;
}
.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.shadow-s {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-m {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-l {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.container,
.col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-9, .col-10, .col-11, .col-12, 
.col-s, .col-s-auto, .col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-9, .col-s-10, .col-s-11, .col-s-12, 
.col-m, .col-m-auto, .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-9, .col-m-10, .col-m-11, .col-m-12, 
.col-l, .col-l-auto, .col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-9, .col-l-10, .col-l-11, .col-l-12, 
.col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  transition: all 400ms ease;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .col-s {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-s-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-s-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-s-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-s-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-s-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-s-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-s-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-s-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-s-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-s-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-s-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-s-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-s-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-m {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-m-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-m-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-m-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-m-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-m-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-m-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-m-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-m-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-m-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-m-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-m-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-m-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-m-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-l {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-l-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-l-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-l-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-l-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 15px;
  }
  .col-l-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-l-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-l-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-l-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-l-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-l-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-l-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-l-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-l-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.m-auto {
  margin: auto !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.ml-auto {
  margin-left: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.ml-5 {
  margin-left: 3rem !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mr-5 {
  margin-right: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.p-auto {
  padding: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-auto {
  padding-top: auto !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pb-auto {
  padding-bottom: auto !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pl-auto {
  padding-left: auto !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.pl-5 {
  padding-left: 3rem !important;
}
.pr-auto {
  padding-right: auto !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pr-5 {
  padding-right: 3rem !important;
}
.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.mt-n5 {
  margin-top: -3rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}
.mb-n5 {
  margin-bottom: -3rem !important;
}
.ml-n1 {
  margin-left: -0.25rem !important;
}
.ml-n2 {
  margin-left: -0.5rem !important;
}
.ml-n3 {
  margin-left: -1rem !important;
}
.ml-n4 {
  margin-left: -1.5rem !important;
}
.ml-n5 {
  margin-left: -3rem !important;
}
.mr-n1 {
  margin-right: -0.25rem !important;
}
.mr-n2 {
  margin-right: -0.5rem !important;
}
.mr-n3 {
  margin-right: -1rem !important;
}
.mr-n4 {
  margin-right: -1.5rem !important;
}
.mr-n5 {
  margin-right: -3rem !important;
}
.mx-n1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}
.mx-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}
.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.mx-n4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}
.mx-n5 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.p-n1 {
  padding: -0.25rem !important;
}
.p-n2 {
  padding: -0.5rem !important;
}
.p-n3 {
  padding: -1rem !important;
}
.p-n4 {
  padding: -1.5rem !important;
}
.p-n5 {
  padding: -3rem !important;
}
.pt-n1 {
  padding-top: -0.25rem !important;
}
.pt-n2 {
  padding-top: -0.5rem !important;
}
.pt-n3 {
  padding-top: -1rem !important;
}
.pt-n4 {
  padding-top: -1.5rem !important;
}
.pt-n5 {
  padding-top: -3rem !important;
}
.pb-n1 {
  padding-bottom: -0.25rem !important;
}
.pb-n2 {
  padding-bottom: -0.5rem !important;
}
.pb-n3 {
  padding-bottom: -1rem !important;
}
.pb-n4 {
  padding-bottom: -1.5rem !important;
}
.pb-n5 {
  padding-bottom: -3rem !important;
}
.pl-n1 {
  padding-left: -0.25rem !important;
}
.pl-n2 {
  padding-left: -0.5rem !important;
}
.pl-n3 {
  padding-left: -1rem !important;
}
.pl-n4 {
  padding-left: -1.5rem !important;
}
.pl-n5 {
  padding-left: -3rem !important;
}
.pr-n1 {
  padding-right: -0.25rem !important;
}
.pr-n2 {
  padding-right: -0.5rem !important;
}
.pr-n3 {
  padding-right: -1rem !important;
}
.pr-n4 {
  padding-right: -1.5rem !important;
}
.pr-n5 {
  padding-right: -3rem !important;
}
.px-n1 {
  padding-left: -0.25rem !important;
  padding-right: -0.25rem !important;
}
.px-n2 {
  padding-left: -0.5rem !important;
  padding-right: -0.5rem !important;
}
.px-n3 {
  padding-left: -1rem !important;
  padding-right: -1rem !important;
}
.px-n4 {
  padding-left: -1.5rem !important;
  padding-right: -1.5rem !important;
}
.px-n5 {
  padding-left: -3rem !important;
  padding-right: -3rem !important;
}
.py-n1 {
  padding-top: -0.25rem !important;
  padding-bottom: -0.25rem !important;
}
.py-n2 {
  padding-top: -0.5rem !important;
  padding-bottom: -0.5rem !important;
}
.py-n3 {
  padding-top: -1rem !important;
  padding-bottom: -1rem !important;
}
.py-n4 {
  padding-top: -1.5rem !important;
  padding-bottom: -1.5rem !important;
}
.py-n5 {
  padding-top: -3rem !important;
  padding-bottom: -3rem !important;
}
.fade-up {
  opacity: 0;
  transition: transform 4s .25s cubic-bezier(0,1,.3,1), opacity .3s .25s ease-out;
  transform: translateY(8rem);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0em);
}
.fade-down {
  opacity: 0;
  transition: transform 4s .25s cubic-bezier(0,1,.3,1), opacity .3s .25s ease-out;
  transform: translateY(-8rem);
}
.fade-down.is-visible {
  opacity: 1;
  transform: translateY(0em);
}
.fade-left {
  opacity: 0;
  transition: transform 4s .25s cubic-bezier(0,1,.3,1), opacity .3s .25s ease-out;
  transform: translateX(8rem);
}
.fade-left.is-visible {
  opacity: 1;
  transform: translateX(0em);
}
.fade-right {
  opacity: 0;
  transition: transform 4s .25s cubic-bezier(0,1,.3,1), opacity .3s .25s ease-out;
  transform: translateX(-8rem);
}
.fade-right.is-visible {
  opacity: 1;
  transform: translateX(0em);
}
.btn-bsc-1 {
  background-color: var(--btn-color);
  border: 1px solid var(--btn-color);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: 0.2s all;
}
@media(hover:hover) and (pointer: fine) {
  .btn-bsc-1:hover {
    background-color: var(--tsuru-gold);
    border: 1px solid var(--tsuru-gold);
    color: #ffffff;
  }
}
.btn-adv-1 {
  background-color: var(--btn-color);
  border: 1px solid var(--btn-color);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: 0.4s all;
}
@media(hover:hover) and (pointer: fine) {
  .btn-adv-1:hover {
    background-color: var(--tsuru-gold);
    border: 1px solid var(--tsuru-gold);
    color: #ffffff;
  }
}
.btn-adv-1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s all;
}
.btn-adv-1 span:after {
  content: '\00bb';
  opacity: 0;
  position: absolute;
  right: -20px;
  top: 0;
  transition: 0.5s all;
}
@media(hover:hover) and (pointer: fine) {
  .btn-adv-1:hover span {
    padding-right: 25px;
  }
  .btn-adv-1:hover span:after {
    opacity: 1;
    right: 0;
  }
}
.dropbtn {
  background-color: var(--btn-color);
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 0 10px 0;
  transition: 0.3s all;
  width: 160px;
}
@media(hover:hover) and (pointer: fine) {
  .dropbtn:hover {
    color: rgb(229, 145, 145);
  }
}
.dropbtn:focus {
  outline: 0;
}
.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown-content {
  background-color: var(--btn-color);
  /* display: none; */
  position: absolute;
  overflow: auto;
  z-index: 1;
  transform: scale(0);
  transition: 150ms all;
  transform-origin: top;
  width: 100%;
}
.dropdown-content a {
  color: #ffffff;
  padding: 10px 0 10px 0;
  text-decoration: none;
  display: block;
  transition: 0.3s all;
  text-align: center;
  border: none;
}
@media(hover:hover) and (pointer: fine) {
  .dropdown a:hover {
    color: rgb(229, 145, 145);
  }
}
.show-dropdown {
  display: block;
  transform: scale(1);
}
#popup-message {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: var(--btn-color);
  color: #ffffff;
  text-align: center;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  border-bottom: 3px solid #bc9b5d;
}
#popup-message.show {
  visibility: visible;
  -webkit-animation: fadeinpopup 0.5s, fadeoutpopup 0.5s 2.5s;
  animation: fadeinpopup 0.5s, fadeoutpopup 0.5s 2.5s;
 }
@-webkit-keyframes fadeinpopup {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@keyframes fadeinpopup {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeoutpopup {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
@keyframes fadeoutpopup {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
.bsc-divider-hor-1 {
  max-width: 3.25rem;
  border-width: 0.2rem;
  border-color: var(--tsuru-gold);
}
.bsc-divider-vert-1 {
  border: none;
  height: 50px;
  border-left: 1px solid var(--tsuru-gold);
  width: 1px;
  margin: 0 auto;
}
.scroll-indicator {
  position: fixed;
  height: 2px;
  background: var(--tsuru-gold);
  width: 0%;
  z-index: 9999999;
}
.return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--btn-color);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index:998;
}
.return-to-top i {
  color: #ffffff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.return-to-top:hover {
  background-color: var(--tsuru-gold);
  cursor: pointer;
}
.return-to-top:hover i {
  color: #ffffff;
  top: 5px;
}
.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px 0 20px;
}
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--primary-background);
  background-clip: border-box;
  border-bottom: 4px solid var(--tsuru-gold);
  padding: 20px 20px 15px 20px;
}
.card-deck .card {
  margin-bottom: 15px;
  border-bottom: 3px solid var(--tsuru-gold);
}
@media (min-width: 992px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.modal-btn {
  display: none;
}
.modal-btn:checked + label, .modal-btn:not(:checked) + label {
  transition: 0.3s all;
  border: none;
  cursor: pointer;
  background-color: var(--btn-color);
  color: #ffffff;
  padding: 10px 25px 10px 25px;
  text-decoration: none;
  display: block;
  width: 175px;
  text-align: center;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media(hover:hover) and (pointer: fine) {
  .modal-btn:not(:checked) + label:hover {
    background-color: var(--tsuru-gold);
    color: #ffffff;
  }
}
.modal-btn:checked + label:after,
.modal-btn:not(:checked) {
  position: fixed;
  top: 5%;
  right: 5%;
  z-index: 110;
  padding: 3px 12px 6px 12px;
  text-align: center;
  background-color: var(--tsuru-gold);
  color: #ffffff;
  content: 'x';
  font-size: 20px;
  transition: 0.3s all;
  opacity: 0;
}
@media(hover:hover) and (pointer: fine) {
  .modal-btn:checked + label:hover:after,
  .modal-btn:not(:checked) + label:hover:after {
    background-color: var(--tsuru-gold);
    color: #041218;
  }
}
.modal-btn:checked + label:after {
  transition: opacity 300ms 300ms ease, transform 300ms 300ms ease, background-color 250ms linear, color 250ms linear;
  opacity: 1;
}
.modal {
  position: fixed;
  display: block;          
  margin: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms 700ms ease;
}
.modal-btn:checked ~ .modal {
  pointer-events: auto;
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.modal-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  background-color: var(--primary-background);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 250ms 250ms ease, transform 300ms 250ms ease;
}
.modal-btn:checked ~ .modal .modal-wrap {
  opacity: 1;
  transform: scale(1);
  transition: opacity 250ms 500ms ease, transform 350ms 500ms ease;
}
@media (max-width: 500px) {
	.modal-wrap {
		width: calc(100% - 40px);
		padding-bottom: 15px;
	}
}
.lazy-img {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
}
.masonry-lazy-img {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
}
.masonry-wrapper {
  padding: 1.5em;
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}
.masonry {
  --columns: 1;
  --gap: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: height 300ms ease;
}
@media only screen and (max-width: 690px) and (min-width: 500px) {
  .masonry {
    --columns: 2;
  }
}
@media only screen and (min-width: 691px) {
  .masonry {
    --columns: 3;
  }
}
.masonry-item {
  z-index: 1;
  width: calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns));
  min-width: 100px;
  display: inline-block;
  vertical-align: top;
  transition: left 300ms ease, top 300ms ease, clip-path 300ms ease-out;  
}
.masonry-content {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.filter-menu {
  padding: 0;
}
.filter-menu li {
  display: inline-block;
  padding: 10px 18px 10px 18px;
  background: black;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s all;
}
.filter-menu li:hover, .filter-menu li.current {
  background: var(--tsuru-gold); 
}
.switch {
  position: relative;
}
.switch input {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
}
.switch label {
  height: 40px;
  width: 100px;
  background-color: #fffaf4;
  margin:auto;
  border-radius: 100px;
  display: block;
  box-shadow: inset 0 0 5px rgb(0,0,0,0.2), inset 0 0 5px -2px rgb(0,0,0,0.4);
}
.switch label .bulb {
  height: 25px;
  width: 25px;
  background-color: #3b3b3b;
  border-radius: 50%;
  position: relative;
  top: 8px;
  left: 10px;
  display: block;
  transition: 0.7s;
  box-shadow: inset 0 0 1px 3px #363636, inset 0 0 6px 8px #313131, 0 20px 30px -10px rgb(0,0,0,0.4);
}
.switch label .bulb .bulb-center {
  position: absolute;
  display: block;
  height: 36px;
  width: 36px;
  background-color: rgb(58, 58, 58, 0.7);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.7s;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 4px #646370;
}
.switch label .bulb .bulb-center:after {
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  background-color: #3f3f3f;
  border-radius: 50%;
  position: absolute;
  transition: 0.7s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 2px 4px #2b2b2b;
}
.sparks .spark1 {
  display: block;
  height: 1px;
  width: 1px;
  background-color: #f0bc5c;
  position: absolute;
  right: -5px;
  border-radius: 50%;
  bottom: 23px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark2 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #f0bc5c;
  position: absolute;
  right: 20px;
  border-radius: 50%;
  bottom: 80px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark3 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #f0bc5c;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  bottom: 30px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark4 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #f0bc5c;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  bottom: -10px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark5 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #f0bc5c;
  position: absolute;
  left: 10px;
  border-radius: 50%;
  bottom: 0px;
  transition: 0.3s;
  opacity: 0;
}
.sparks .spark6 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #f0bc5c;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  bottom: 15px;
  transition: 0.2s;
  opacity: 0;
}
.switch input:checked ~ label .bulb {
  left: 66px;
  background-color: rgb(253, 153, 71);
}
.switch input:checked ~ label .bulb > .bulb-center {
  background-color: rgb(255, 244, 161, 0.6);
  box-shadow: inset 0 0 0 10px rgba(255, 213, 122, 0.7), 0 0 4px 3px rgba(255, 242, 121, 0.9), 0 0 4px 3px #ffaf54;
}
.switch input:checked ~ label .bulb > .bulb-center:after {
  background-color: rgb(255, 255, 255, 0.6);
  height: 4px;
  width: 4px;
  box-shadow: 0 0 1px 2px rgba(255, 228, 110, 0.7);
}
.switch input:checked ~ label .bulb > .sparks .spark1 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark1 3s ease-in-out;
  animation: spark1 3s ease-in-out;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  animation-iteration-count: infinite;
}
.switch input:checked ~ label .bulb > .sparks .spark2 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark2 2.4s ease-in-out;
  animation: spark2 2.4s ease-in-out;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  animation-iteration-count: infinite;
}
.switch input:checked ~ label .bulb > .sparks .spark3 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark3 1s ease-in-out;
  animation: spark3 1s ease-in-out;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  animation-iteration-count: infinite;
}
.switch input:checked ~ label .bulb > .sparks .spark4 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark4 1.4s ease-in-out;
  animation: spark4 1.4s ease-in-out;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  animation-iteration-count: infinite;
}
.switch input:checked ~ label .bulb > .sparks .spark5 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark5 1.4s ease-in-out;
  animation: spark5 1.4s ease-in-out;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  animation-iteration-count: infinite;
}
.switch input:checked ~ label .bulb > .sparks .spark6 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark6 1.2s ease-in-out;
  animation: spark6 1.2s ease-in-out;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes spark1 {
  0% {
    right: -5px;
    height: 1px;
    width: 1px;
    opacity: 0;
  }
  20% {
    height: 3px;
    width: 3px;
    right: 0px;
    opacity: 1;
  }
  30% {
    right: -5px;
    opacity: 1;
    height: 3px;
    width: 3px;
  }
  70% {
    height: 3px;
    width: 3px;
  }
  100% {
    right: -60px;
    bottom: 40px;
    opacity: 0;
  }
}
@keyframes spark1 {
  0% {
    height: 1px;
    width: 1px;
    right: -6px;
    opacity: 0;
  }
  20% {
    height: 3px;
    width: 3px;
    right: 0px;
    bottom: 3px;
    opacity: 1;
  }
  30% {
    height: 3px;
    width: 3px;
    right: 3px;
    opacity: 1;
  }
  70% {
    height: 3px;
    width: 3px;
    bottom: 10px;
  }
  100% {
    right: -30px;
    bottom: 20px;
    opacity: 0;
  }
}
@-webkit-keyframes spark2 {
  0% {
    height: 3px;
    width: 3px;
    bottom: 30px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    bottom: 50px;
  }
  100% {
    right: -10px;
    bottom: 70px;
    opacity: 0;
  }
}
@keyframes spark2 {
  0% {
    height: 3px;
    width: 3px;
    bottom: 30px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    bottom: 50px;
  }
  100% {
    right: -10px;
    bottom: 70px;
    opacity: 0;
  }
}
@-webkit-keyframes spark3 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 0px;
    bottom: 50px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark3 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 0px;
    bottom: 50px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@-webkit-keyframes spark4 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark4 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@-webkit-keyframes spark5 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 20px;
    bottom: 10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark5 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 20px;
    bottom: 10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@-webkit-keyframes spark6 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark6 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
.loader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  transition: width 0s 1.4s ease;
}
.loader .loader-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.loader .loader-icon svg {
  transform-origin: 0 0;
}
.loader .loader-tile {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  border: transparent;
  background-color: #ffffff;
  transition: width 0.7s ease;
}
.loader-active {
  width: 100%;
  transition-delay: 0s;
}
.loader-active .loader-icon {
  opacity: 1;
  transition: opacity 0.5s 1.4s ease;
}
.loader-active .loader-tile {
  width: 100%;
}
.loader-active .loader-tile:nth-child(0) {
  transition-delay: -0.2s;
}
.loader-active .loader-tile:nth-child(1) {
  transition-delay: 0s;
}
.loader-active .loader-tile:nth-child(2) {
  transition-delay: 0.2s;
}
.loader-active .loader-tile:nth-child(3) {
  transition-delay: 0.4s;
}
.loader-active .loader-tile:nth-child(4) {
  transition-delay: 0.6s;
}
.loader-active .loader-tile:nth-child(5) {
  transition-delay: 0.8s;
}
#loader-logo {
  z-index: 9999999;
  width: 60px;
  height: auto;
  margin: auto;
  margin-bottom: 25px;
}
.slider-auto-container {
  width: 100%;
  overflow: hidden;
}
.slider-auto {
  width: 100px;
  height: auto;
  position: relative;
}
.slider-auto-container-img {
  display: flex;
  height: 100%;
}
.slider-auto-img {
  min-width: 100%;
  margin: 0;
}
.slider-auto-img img {
  width: 100%;
  height: 100%;
}