@font-face {
    font-family: 'lobster-regular';
    src:url('resources/fonts/Lobster/Lobster-Regular.eot');
    src:url('resources/fonts/Lobster/Lobster-Regular.woff') format('woff'),
        url('resources/fonts/Lobster/Lobster-Regular.ttf') format('truetype'),
        url('resources/fonts/Lobster/Lobster-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;

}

p
{
    font-family: lobster-regular;
}

.dl-cat:visited
{
    color: purple;
}

#head-container
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hide-left
{
    min-width: 33%;
}

.hide-right
{
    min-width: 33%;
}

.header-txt
{
    align-self: center;
    text-align: center;
    font-family: lobster-regular;
    font-size: 40px;
    color: orange;
}

/* Style diapo */
.custom-slider { display: none; }
.slide-container {
  height: max-content;
  width: max-content;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;        
  top: 100%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(59, 59, 59);
  font-size: 30px;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.6s ease;
}
.prev{ left: 15px; }
.next { right: 15px; }
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}

.slide-index {
  color: #000000;
  font-size: 13px;
  padding: 0px;
  position: absolute;
  top: 0;
  left: 95%;
}
.slide-img{ 
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center;
 }
.slide-dot{ text-align: center; }
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #111111; }
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {opacity: 0};
  to {opacity: 1};
}