@font-face {
  font-family: 'Everett';
  src: url('medias/fonts/ABCFavorit-Regular.woff2') format('woff2');
  font-weight: normal;
}

@font-face {
  font-family: 'Everett';
  src: url('medias/fonts/ABCFavorit-Bold.woff2') format('woff2');
  font-weight: bold;
}

body {
  font-family: 'Everett', sans-serif;
  font-size: 13px;
  line-height: 1.18;
  color: black;
  font-feature-settings: 'ss03';
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

header {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #959595;
  font-size: 22px;
  line-height: 26px;
  color: #959595;
  text-transform: uppercase;
  font-weight: bold;
}

#logo {
  width: 115px;
  height: 90px;
}

@media (min-width: 768px) {
  #logo {
    width: 145px;
  }
}


@media (min-width: 768px) {
  header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

#carousel {
  padding-top: 140px;
  min-height: 100vh;
}

@media (min-width: 768px) {
  #carousel {
    padding-top: 150px;
  }
}

.ps-25 {
  padding-left: 25px;
}

@media (min-width: 768px) {
  .ps-md-25 {
    padding-left: 25px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-100 {
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .pb-lg-100 {
    padding-bottom: 100px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-100 {
  margin-bottom: 100px;
}

.title {
  font-size: 50px;
  line-height: 0.83;
  font-weight: bold;
  text-transform: uppercase;
  color: #cb98a6;
}

@media (min-width: 768px) {
  .title {
    font-size: 60px;
  }
}

h1 {
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
}

@media (min-width: 768px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 18px;
  line-height: 1.18;
  font-weight: bold;
  text-transform: uppercase;
  color: #cb98a6;
}

@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

.fs-large {
  font-size: 17px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .fs-large {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    display: none;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 42px;
  height: 84px;
  transform: translateY(-75px);
}

.carousel-control-prev-icon {
  background-image: url('medias/icons/arrow-left.svg');
}

.carousel-control-next-icon {
  background-image: url('medias/icons/arrow-right.svg');
}

ul {
  padding-left: 17px;
}

ul.fs-large {
  padding-left: 22px;
}

ol {
  padding-left: 22px;
}

ol.letters {
  padding-left: 32px;
  list-style: upper-latin;
}

ul li {
  list-style: none;
  text-indent: -9px;
}

ul.fs-large li {
  list-style: none;
  text-indent: -12px;
}

ul li::before {
  content: '—';
  display: inline-block;
  margin-right: 5px;
}

a {
  color: black;
}

.w-275 {
  width: 275px;
}

.carousel-control-prev,
.carousel-control-next {
  position: fixed;
}

.carousel-control-prev {
  justify-content: start;
  padding-left: 25px;
}

.carousel-control-next {
  justify-content: end;
  padding-right: 25px;
}

@keyframes swipe {
  0% {
    left: calc(50% - 48px);
    transform: rotate(-3deg);
  }

  100% {
    left: calc(50%);
    transform: rotate(3deg);
  }
}

.swipe-for-more {
  animation: swipe 0.8s alternate infinite;
  animation-timing-function: ease;
  position: fixed;
  bottom: 50px;
  left: calc(50% - 24px);
  width: 48px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .swipe-for-more {
    display: none;
  }
}

#button-toggle-menu {
  display: block;
  position: fixed;
  width: 30px;
  height: 14px;
  top: 25px;
  right: 70px;
  z-index: 1000000;
}

@media (max-width: 767px) {
  #button-toggle-menu {
    top: 30px;
    right: 15px;
  }
}

#main-menu {
  display: block;
  position: fixed;
  width: 300px;
  top: 25px;
  right: 70px;
  z-index: 199999;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: all 500ms cubic-bezier(.23, 1, .32, 1);
}

#main-menu.active {
  max-height: 300px;
}

@media (max-width: 767px) {
  #main-menu {
    width: 100%;
    right: 0;
    top: 75px;
    padding: 0 12px;
  }
}

#main-menu a {
  display: block;
  color: #959595;
  text-decoration: none;
  margin-bottom: 10px;
}

#main-menu a:hover {
  color: #cb98a6;
}

#button-toggle-menu span {
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-bottom: 2px solid #959595;
  transition: all 500ms cubic-bezier(.23, 1, .32, 1);
}

#button-toggle-menu span:nth-child(1) {
  top: 0;
}

#button-toggle-menu span:nth-child(2) {
  top: 50%;
}

#button-toggle-menu span:nth-child(3) {
  top: 100%;
}

#button-toggle-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#button-toggle-menu.active span:nth-child(2) {
  width: 0;
}

#button-toggle-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
