@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: 'bauhauslight';
    src: url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.eot');
    src: url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.woff2') format('woff2'),
         url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.woff') format('woff'),
         url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.ttf') format('truetype'),
         url('../../../assets/fonts/ufonts.com_bauhaus-light-webfont.svg#bauhauslight') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'futura_ptmedium';
    src: url('../../../assets/fonts/futurapt-medium-webfont.woff2') format('woff2'),
         url('../../../assets/fonts/futurapt-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_ptbook';
    src: url('../../../fonts/fonnts.com-futura_pt_book-webfont.woff2') format('woff2'),
         url('../../../fonts/fonnts.com-futura_pt_book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'lektonregular';
    src: url('../../../assets/fonts/lekton-regular-webfont.eot');
    src: url('../../../assets/fonts/lekton-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../../assets/fonts/lekton-regular-webfont.woff') format('woff'),
         url('../../../assets/fonts/lekton-regular-webfont.ttf') format('truetype'),
         url('../../../assets/fonts/lekton-regular-webfont.svg#lektonregular') format('svg');
    font-weight: normal;
    font-style: normal;

} 

@font-face {
    font-family: 'lektonbold';
    src: url('lekton-bold-webfont.eot');
    src: url('lekton-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('lekton-bold-webfont.woff2') format('woff2'),
         url('lekton-bold-webfont.woff') format('woff'),
         url('lekton-bold-webfont.ttf') format('truetype'),
         url('lekton-bold-webfont.svg#lektonbold') format('svg');
    font-weight: normal;
    font-style: normal;

}
#ariane {
	margin-top: 70px;
	border-bottom-style: solid;
	border-color: #222;
	border-bottom-width: thin;
}
.brand-top {
	text-align: left;
	border-bottom: solid;
	border-bottom-width: thin;
	border-bottom-color: #B4B0B0;
	height: 48px;
	width: 100%;
}

.block {
  width: 200px;
	height: 48px;
	text-align: center;
	border-left-color: #B4B0B0;
	border-left-style: solid;
	border-left-width: thin;
	padding-top: 10px;
	padding-bottom: 4px;
}
.top-space {
	padding-top: 15px;
}
a:hover {
	opacity: 0.5;
}
/*SCROLL-SLIDE*/
:root {
  --yellow: #fdb200;
  --sb-track-color: transparent;
  --sb-thumb-color: #aaa;
  --sb-size: 8px;
}

* {
  box-sizing: border-box;
}

html, body {
   
}
body {
 font-family: 'lektonregular';
	
}

.container-slide {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
	margin-top: 60px;
  
  @media (min-width: 768px) {
    padding: 32px;
  }
  
  @media (min-width: 1024px) {
    padding: 40px;
  }
}

.bg-circle {
  width: 90vmin;
  height: 90vmin;
  border-radius: 999px;
  // background-color: #7209b7;
  // background-color: #d1d2e5;
  background-color: var(--yellow);
  position: absolute;
  top: 60%;
  right: 50%;
  opacity: 0.25;
  transform: translate(50%, -50%) scale(0);
  z-index: 0;
  transition: left 500ms, right 500ms, top 500ms, position 500ms, transform 500ms 500ms, opacity 500ms 350ms;
  
  @media (min-width: 577px) {
    width: 75vmin;
    height: 75vmin;
  }
}

.carousel-container {
  display: block;
  width: 100%;
  max-width: 1150px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  overflow: auto;
  // border: 2px solid #ccc;
  // background-color: #e1e2ef;
  // padding: 20px;
 /* border-radius: 20px;*/
  scrollbar-width: none;
  scroll-behavior: smooth;
  
  &::-webkit-scrollbar {
    display: none;
  }
  
  &.dragging {
    scroll-behavior: auto;
  }
}

.carousel {
  display: flex;
  width: auto;
  width: fit-content;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  
  .carousel-slide {
    display: flex;
    // width: 40px;
    // min-width: 40px;
    width: 518px;
    min-width: 518px;
    height: 350px;
    flex-grow: 0;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
   /* border-radius: 20px;*/
    overflow: hidden;
    background-color: #fff;
    transition-property: width, min-width, height, flex, flex-grow, flex-shrink, flex-basis, opacity;
    transition-duration: 240ms;
    
    img,
    .carousel-image {
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center;
      transition: all 2s;
    }
    
    .carousel-content {
      display: none;
      width: 100%;
      max-height: 100%;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      padding: 16px;
      color: #fff;
      transform: translateY(100%);
      backdrop-filter: blur(2px);
      transition-property: transform, color, flex, height, flex-basis, opacity;
      transition-duration: 240ms;
      // transition-property: width, height, flex, flex-grow, flex-shrink, flex-basis, opacity, transform, backdrop-filter;
      // transition-duration: 240ms;
      // transition-delay: 100ms;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      z-index: 2;
      
      h2 {
        font-size: 1.5rem;
        margin: 0;
        // filter: invert(1);
        // color: transparent;
        // background-clip: text;
        // background-image: conic-gradient(red 50deg, yellow 100deg, lime 200deg, aqua, blue, magenta, red);
        // background-color: #fff;
        transition: all 240ms;
		  display: none !important;
      }
      
      p {
        display: none;
        font-size: 0.75rem;
        margin-top: 1em;
        line-height: 1.5;
        margin-top: 16px;
        margin-bottom: 0;
        transform: translateY(101%);
        transition-property: width, height, flex, flex-grow, flex-shrink, flex-basis, opacity, transform, margin;
        transition-duration: 240ms;
        transition-delay: 50ms;
      }
    }
    
    &.loaded {
      img,
      .carousel-image {
        opacity: 1;
        transition-delay: 100ms;
      }

      .carousel-content {
        transition-delay: 100ms;
        transform: translateY(0%);

        h2 {
          font-size: 1.5rem;
        }
      }
    }
      
    &:hover {
      .carousel-content {
        backdrop-filter: blur(15px);
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
      }
    }
  }
  
  &:hover .carousel-slide:not(:hover):not(.active) {
    opacity: 0.5;
  }
}

button.slider-nav {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 999px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  
  svg {
    pointer-events: none;
  }
  
  &:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
}

button.prev {
  left: 0;
  transform: translate(-50%, calc(-50% - 13px));
}

button.next {
  right: 0;
  transform: translate(50%, calc(-50% - 13px));
}

.carousel-scrollbar,
.carousel-scrollbar .scrollbar-track {
  display: flex;
  width: 100%;
  align-items: center;
}

.slider-start {
  button.prev {
    visibility: hidden !important;
    display: none;
  }
}
  
.slider-end {
  button.next {
    visibility: hidden !important;
  }
}

.carousel-scrollbar {
  margin-top: 16px;
  padding: 4px 0;
  
  .scrollbar-track {
    border-radius: 999px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    
  }
  
  .scrollbar-thumb {
    width: 20%;
    height: 100%;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    transition: transform 200ms, background-color 200ms, height 200ms;
    
    &::after {
      content: '';
      display: block;
      height: 16px;
      width: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }
    
    &:hover {
      height: 150%;
    }
    
    &.dragging,
    &.dragging:hover {
      background-color: rgba(0, 0, 0, 1);
      height: 100%;
    }
    
    &.dragging {
      &::after {
        height: 24px;
      }
    }
  }
}
/*SCROOL-SLIDE-END*/

.head-top {
	font-family: 'bauhauslight';
	background-color: #222;
	height: 30px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	font-size: 20px;
	font-weight: 400;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	color: #fff;
	line-height: 22px;
	z-index: 100;
	position: fixed;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	border-bottom-width: thin;
	top: 0;
}
.head-top img {
	line-height: 12px;
	margin-bottom: 6px;
	height: 16px;
	width: 16px;
}
.head-top a {
  color: #fff;
  text-decoration: none;
}
.head-top a:hover,
a:focus {
  color: #8c7c3d;
  text-decoration: none;
}
/* Side Menu */

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    background: #222;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
	font-family: 'futura_ptmedium';
}

.sidebar-nav {
	position: absolute;
	top: 0;
	width: 250px;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #222;
	right: 10px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #8c7c3d;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #fff;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #8c7c3d;
    background: none;
}

#menu-toggle {
	z-index: 1000;
	position: fixed;
	top: 0;
	right: 10px;
	background-color: #222;
	border-radius: 0; 
}
#menu {
	z-index: 1000;
	position: fixed;
	top: 0;
	right: 10px;
	background-color: #222;
	border-radius: 0; 
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
	z-index: 1000;
}

.toggle {
	margin: 5px 5px 0 0;
	color: #FFF;
	z-index: 1000;
}
#menu-close {
	background-color: #222;
	color: #fff;
	border: 0;
}
.accordion-body {
	font-size: 16px;
}
.modal-body {
	font-size: 16px;
}
.btn-primary {
 background-color: transparent;
color: #222;
outline: none !important;
}
.btn-primary:hover {
	background-color: transparent;
opacity: 0.5;
	
}
.btn-primary:active:focus,.btn-primary.active:focus,
.btn-primary.focus,.btn-primary:active.focus,.btn-primary.active.focus {
    outline: none;
	box-shadow: none;
}

.accordion-button {
	font-size: 20px;
}
.accordion-button:hover {
  opacity: 0.5;
}
.accordion-button:focus {
  outline: none !important;
	box-shadow: none;
}
.accordion-button:focus,.btn:active:focus,.btn.active:focus,
.btn.focus,.btn:active.focus,.btn.active.focus {
    outline: none;
	box-shadow: none;
}
footer {
	font-family: 'futura_ptmedium';
	margin-top: 200px !important;
	border-top: 1px solid #222;
	margin-bottom: 140px !important;
	font-size: 16px;
	padding: 0;
	text-align: center;
	margin: 40px;
	padding: 15px;
	background-color: #fff;

}