/* ======================== Button ===================== */
/* input[type=submit], input[type=reset], input[type=button],
button, .button {
  background-color: #ececec;
  border-radius: 10px;
  padding: 0.75em 1em;
  margin-bottom: 10px;
  color: #353535;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover,
button:hover, .button:hover {
  background-color: #ececec;
  opacity: 0.8;
  color: #353535;
}
input[type=submit]:active, input[type=reset]:active, input[type=button]:active,
button:active, .button:active {
  opacity: 0.5;
  background-color: #ececec;
  color: #353535;
}
input[type=submit].icon i, input[type=reset].icon i, input[type=button].icon i,
button.icon i, .button.icon i {
  font-size: 1.2em;
  padding-left: 0.5em;
  padding-bottom: 1px;
}
input[type=submit].project, input[type=reset].project, input[type=button].project,
button.project, .button.project {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  height: 0.75em;
  padding: 0.6em;
  font-size: 1em;
  color: #353535;
}
input[type=submit].project.white, input[type=reset].project.white, input[type=button].project.white,
button.project.white, .button.project.white {
  color: #f4f3ef;
}

@media screen and (max-width: 992px) {
  input[type=submit], input[type=reset], input[type=button],
  button, .button {
    font-size: 0.6em;
  }
  input[type=submit].icon i, input[type=reset].icon i, input[type=button].icon i,
  button.icon i, .button.icon i {
    font-size: 1.2em;
  }
} */

/* ======================== Slide Menu ===================== */
.slide-menu {
  display: table;
  margin: 0 auto;
  padding-bottom: 2vh;
}
.slide-menu .dots {
  margin-bottom: -10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slide-menu .dots .dot {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  background-color: #c6c6c6;
  cursor: pointer;
  width: 80px;
  height: 50px;
  border-radius: 50%;
  margin: 2px;
  transition: all 0.2s ease-in-out;
}
.slide-menu .dots .dot:after {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.slide-menu .dots .dot:hover {
  transform: scale(1.4);
}
.slide-menu .dots .dot.active {
  background-color: #E2a3a3;
  transform: scale(2);
}


/* ======================== Selection ===================== */
select {
  border-color: transparent;
  border-radius: 5px;
  padding: 5px 3px;
  background-color: #ececec;
  display: inline;
  line-height: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  border: 0;
  outline: none;
  margin: inherit;
  height: 30px;
  text-underline-offset: 1px;
  width: inherit;
}
select option {
  white-space: nowrap;
  overflow: hidden;
}
select:hover {
  cursor: pointer;
}
select:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
}

/* ======================== Slider Display ===================== */
.slider-container {
  box-shadow: none;
  outline: none;
  --divider-width: 1px;
  --divider-color: #000;
  --default-handle-width: clamp(10px, 5vw, 40px);
  --default-handle-color: #000;
}
.slider-container.white {
  --divider-color: #fff;
  --default-handle-color: #fff;
}
.slider-container img {
  padding: 0 !important;
}

.before, .after {
  margin: 0;
}

.before figcaption {
  left: 8px;
}

.after figcaption {
  right: 8px;
}

.before figcaption,
.after figcaption {
  font-size: 90%;
  font-family: "Poppins";
  background: transparent;
  color: #353535;
  padding: 8px;
  position: absolute;
  top: 99%;
  transform: translateY(-100%);
  line-height: 100%;
}
.before figcaption.white,
.after figcaption.white {
  color: #f4f3ef;
}

/* ======================== Video Control =====================
.video-control {
  display: flex;
  justify-content: center;
  padding: 5px 0;
  gap: 10px;
}

.video-speed {
  opacity: 0;
}
.video-speed.fade-in-out {
  animation: fadeInOut 1.4s linear forwards;
}

.video-caption {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} */
/* ======================== Slide Show Control ===================== */
.slideshow .navigation {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 10px;
}

.slideshow .slider {
  position: relative;
  width: 100%;
  height: 440px;
  padding-bottom: 20px;
  overflow: hidden;
}
.slideshow .slider:hover {
  cursor: pointer;
}
.slideshow .slider .slider-item {
  width: 400px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 40px;
}
.slideshow .slider .slider-item video {
  display: block;
  padding-bottom: 40px;
}

h1, h2, h3, h4, h5, h6, p, a, code, pre, ol, ul, li {
  line-height: 1.5;
}


/* ======================== Button ===================== */
input[type=submit], input[type=reset], input[type=button],
button, .button {
  font-size: 0.65em;
  font-weight: 500;
}

/* ======================== Selection ===================== */
select {
  padding: 2px 2px;
}

/* ======================== Slider Display ===================== */
.before figcaption,
.after figcaption {
  font-size: 70%;
}/*# sourceMappingURL=main_free.css.map */