/* Scroll-to-Top Button */
.return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -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: 99999999;
}

.return-to-top:hover,
.return-to-top:active {
    background: rgba(255, 255, 255, 0.6);
}


/* REVIEW SLIDER */
.slider-text {
  height: fit-content;
  padding: 2vw;
  margin: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
  background: var(--light-dark-color);
}

.slick-arrow,
.slick-next,
.slick-prev {
  display: none !important;
}

.slick-dots {
  bottom: -25px;
  max-width: none;
}

.slick-dots li button::before {
  color: white;
  font-size: 8px;
}


.slick-dots li.slick-active button::before {
  opacity: .75;
  color: white;
}


/* CONTACT FORM */
.contact-form-formbold {
  display: flex;
  flex-direction: column;
  gap: calc(var(--breakpoint_unit) * calc(10*var(--basic_unit)));
  padding: calc(var(--breakpoint_unit) * calc(10*var(--basic_unit))) calc(var(--breakpoint_unit) * calc(13*var(--basic_unit)));
  border: solid 2px var(--light-color);
  background-color: #00000014;
  width: calc(var(--breakpoint_unit) * calc(180*var(--basic_unit)));
}

.contact-form-formbold input {
  width: 70%;
  background-color: #ffffff9c;
  border: transparent 2px solid;
}

.contact-form-formbold textarea {
  width: 100%;
  background-color: #ffffff9c;
  height: calc(var(--breakpoint_unit) * calc(45*var(--basic_unit)));
  border: transparent 2px solid;
}

.contact-form-formbold input:focus-visible,
.contact-form-formbold textarea:focus-visible {
  outline: solid 1.5px var(--light-color);
}

.contact-form-formbold button {
  background-color: #00000014;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: none;
  border: none;
  border-top: solid 2px var(--light-color);
  border-bottom: solid 2px var(--light-color);
  padding: calc(var(--breakpoint_unit) * calc(2*var(--basic_unit))) calc(var(--breakpoint_unit) * calc(8*var(--basic_unit)));
  width: 35%;
  margin: auto;
  transition: 0.9s ease;
}

.contact-form-formbold button:hover {
  cursor: pointer;
  transform: scale(1.07);
}


/* PERFORMANCE IMAGE SLIDER */
.fading-slideshow-performance {
  flex-basis: calc(var(--breakpoint_unit) * calc(150*var(--basic_unit)));
  position:relative;
  height: 520px;
  order: -1;
}

.div-loader {
  width: calc(var(--breakpoint_unit) * calc(150*var(--basic_unit)));
  /* background: var(--light-dark-color) url(/images/icons/loader-flower.svg) center center no-repeat; */
  background: var(--light-dark-color-2);
  position: absolute;
  top: 0;
  left: calc(var(--breakpoint_unit) * calc(-75*var(--basic_unit)));
  aspect-ratio: 0.75;
  display: none;
}

.slider-show-type {
  width: calc(var(--breakpoint_unit) * calc(150*var(--basic_unit)));
  overflow: hidden;
  background: #fff;
  opacity:0;
  position:absolute;
  top:0;
  left: calc(var(--breakpoint_unit) * calc(-75*var(--basic_unit)));
}

.show-type-img {
  width:100%;
  width: calc(var(--breakpoint_unit) * calc(150*var(--basic_unit)));
  height: 520px;
  object-fit: cover;
  display: block;
  transition: all 1.5s ease-in-out;
}

.fade-in-image {
  animation: fadeIn 4s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  25% {opacity:1;}
  100% {opacity:1;}
}

.fade-out-image {
  animation: fadeOut 4s;
}

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


/* MOBILE MENU */
.nav_ico {
  width: 30px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: calc(var(--breakpoint_unit) * calc(-52*var(--basic_unit)));
  right: 0;
}

.nav_ico_two {
  width: 30px;
  height: 20px;
  position: absolute;
  top: calc(var(--breakpoint_unit) * calc(-38*var(--basic_unit)));
  right: 51px;
}

.mobile-menu {
  position: relative;
}

.nav_ico span {
  transition: all 0.3s ease-in-out;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: white;
}

.nav_ico_two span {
  transition: all 0.3s ease-in-out;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: white;
}

.nav_ico_two span:first-child {
  transform: rotate(45deg);
  transform-origin: 10px 2px 0;
  width: 100%;
  margin: 0;
}

.nav_ico_two span:last-child {
  transform: rotate(-45deg);
  transform-origin: 5px -2px 0;
  width: 100%;
  margin: 0;
}

.nav_ico_two span:nth-child(2) {
  opacity: 0;
}

.nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* z-index: 998; */
  z-index: 997;
  background: transparent;
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}

.nav-overlay.active {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.side_nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: var(--dark-color);
  z-index: 998;
  padding-top: 150px;
  transition: all 0.6s ease-in-out;
  transform: translateX(100%);
}

.side_nav.active{
  transform: translateX(0%);
}

.side_nav_div {
  position: relative;
}

.side_nav ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.side_nav ul li{
  margin: 0;
}

.side_nav ul li a{
  display: block;
  color: var(--light-color);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  transition: all 0.3s ease-in-out;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: right center;
  border-top: solid 2px transparent;
  border-bottom: solid 2px transparent;
}

.side_nav ul li a:hover,
.side_nav ul li a:active {
  background-size: 100% 100%;
  border-top: solid 2px var(--light-color);
  border-bottom: solid 2px var(--light-color);
  transition: all 1.4s;
}






