html {
  width: 100vw;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overflow-x: hidden;
}

body {
  background-color: #1b1b1b;
  width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica", sans-serif;
}

@media screen and (max-width: 992px) {
  body {
    overflow: auto;
    overflow-x: hidden;
  }
}

.main-content {
  width: 100vw;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .main-content {
    height: 100%;
    overflow-x: hidden;
  }
}
.topnav {
  background-color: #1b1b1b;
  height: 100px;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .topnav {
    flex-shrink: 0;
    height: 150px;
  }
}

.logo-wrapper {
  width: 339px;
  cursor: pointer;
  margin-left: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .logo-wrapper {
    width: 50%;
  }
}

.logo {
  display: block;
  width: 100%;
  height: 45%;
  background-image: url("../img/logo_v3.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .logo {
    background-position: center;
  }
}

.menu-wrapper {
  width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  margin-right: 100px;
  align-items: center;
}

.top-button {
  font-family: "Red Hat Display", sans-serif;
  color: white;
  cursor: pointer;
  height: 75px;
  margin-left: 50px;
  line-height: 75px;
  width: fit-content;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  transition: 250ms linear;
}

.top-button:hover {
  color: #f83500;
}

.button-active {
  color: #f83500;
}

@media screen and (max-width: 992px) {
  .top-button {
    font-size: 2rem;
  }
  .carousel {
    display: flex;
    flex-direction: column;
  }
}

.carousel {
  height: 100%;
  width: 100%;
}

.col-orange {
  color: #f83500;
}
.fo-img {
  filter: invert(32%) sepia(78%) saturate(7213%) hue-rotate(353deg)
    brightness(108%) contrast(105%);
  width: 35px;
  cursor: pointer;
}
.slick-slide {
  -webkit-transition: -webkit-filter 500ms linear;
  filter: grayscale(100%) !important;
}

.slick-current {
  filter: grayscale(0%) !important;
}
.arrow{
  width: 77px;
  height: 77px;
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: url('../img/switch-arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 5000;
  cursor: pointer;
}
.arrow-right{
  right: 15px;
  left: unset;
  transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .arrow{
    display: none;
  }
  .topnav{
    position: fixed;
    top: 0;
    z-index: 50000;
  }
}
