<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider-fullwidth nav.container {
  margin: auto;
  color: #fff;
  bottom: 0;
  padding-bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 1;
  position: absolute;
  transition: all 0.2s ease-in-out;
 }

 .slider-fullwidth .wrap {
  width: 70%;
 }

 .slider-fullwidth .wrap .active-grid-circle {
  display: grid;
  width: 100%;
 }

 .slider-fullwidth .wrap .nav-circle {
  width: 100%;
  height: 4px;
  background: #3581F3;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  top: 0;
  left: 0%;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 0.355s cubic-bezier(0.46, 0.03, 0.52, 0.96);
 }
 .slider-fullwidth .nav-grid {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
 }

 .slider-fullwidth .nav-grid-top {
  background: #ffffff1a;
}

.slider-fullwidth .nav-grid .nav-grid-items {
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff80;
  font-size: 14px;
  transition: color 0.15s;
 }
.slider-fullwidth .nav-grid .nav-grid-items:hover {
  color: #fff;
 }
 .slider-fullwidth .nav-grid .nav-grid-items.active {
  color: #fff;
 }

 .slider-fullwidth .nav-grid .nav-grid-items .icon {
  color: #212121;
  font-size: 2.8rem;
 }
 .slider-fullwidth .nav-grid .nav-grid-items.active .icon {
  color: #f24c5e;
 }
 .slider-fullwidth .grid-item-active {
  display: flex !important;
  align-items: center;
  justify-content: center;
 }
 .slider-fullwidth .container.theme-dark .wrap {
  background: #212121;
 }
 .slider-fullwidth .container.theme-dark .nav-grid .nav-grid-items .icon {
  color: #eee;
 }
 .slider-fullwidth .container.theme-dark .nav-grid .nav-grid-items.active .icon {
  color: #f24c5e;
 }

 @keyframes moveActive {
  0% {
   width: 100%;
  }
  100% {
   width: 100%;
  }
 }

 .slider-fullwidth .control {
   color: black;
 }

 .slider-fullwidth  {
   background: white;
   height: 750px;
   overflow: hidden;
   position: relative;
   color: white;
 }

 .slider-fullwidth .wrapper {
  width: 100%;
  flex-shrink: 0;
}

.slider-fullwidth .slide-text {
  width: 100%;
  bottom: 150px;
  opacity: 0;
  position: absolute;
  transition: 
    opacity 100ms ease-in-out, 
    bottom 0.2s ease-in-out;
  color: white;
  padding: 0px;
}

.slider-fullwidth .slide-main-text {
  font-size: 24px;
}

.slider-fullwidth .slide-text.active {
  opacity: 1;
  z-index: 1;
}

.slider-fullwidth .slide {
  height: 750px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: margin 700ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s;
  opacity ease-in-out 300ms;
  color: white;
  flex-shrink: 0;
}

.slider-fullwidth .slides {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transition: left .5s ease-in-out;
}

.mobile__control-wrap {
  display: none;
  justify-content: space-between;
}

.mobile__control-prev::after, .mobile__control-next::after {
  content: ' ';
  background-size: cover;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 12px;
  transition: transform 0.2s ease-in-out;
}

.mobile__control-prev::after {
  transform: rotateY(180deg);
}

@media screen and (max-width: 1200px) {
  .slider-fullwidth .wrap {
    width: 80%;
  }
  
  .slider-fullwidth .slide-text
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .slider-fullwidth .wrap {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .mobile__control-wrap {
    display: flex;
  }

  .slider-fullwidth .wrap {
    width: 100%;
    padding-bottom: 0;
  }

  .slider-fullwidth nav.container {
    padding: 0;
  }

  .slider-fullwidth .nav-grid .nav-grid-items {
    display: none;
  }
  .slider-fullwidth .nav-grid {
    padding: 0 5%;
    width: 100%;
 }

 .slider-fullwidth .slide-text {
   bottom: 82px;
   padding: 0 20px;
  }
}

@media screen and (min-width: 767px) {
  .slider-fullwidth .slide-text {
    width: 70%;
    padding: 0 20px;
   }

  .slider-fullwidth nav.container {
    padding: 0 20px 60px 20px;
  }
}

</pre></body></html>