* {
  margin: 0;
  padding: 0;
}

#index-container {
  overflow: hidden;
  transition: top 100ms cubic-bezier(0.5, 0.33, 0.3, 0.9) 1ms;
  height: auto;
  width: 100%;
}

h3 {
  color: #27A9E1;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 40px;
}

#about-us, #contact, #brands{
  position: absolute;
  height: 10px;
  width: 100%;
  top: -1px;
}
/* Hero section */
.hero-wrap,
.slider-hero-wrap,
.slider-hero-wrap .slick-list .slick-track,
.slider-hero-wrap .slick-list {
  height: 100vh;
}

.slider-hero-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.slick-dots {
  bottom: 30px;
}

.slick-dots li.slick-active button:before {
  background: #27A9E1;
  color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 100px;
}

.slick-dots li button:before {
  background: rgba(255, 255, 255, 0.90);
  color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 100px;
}

.slick-dots li button {
  padding: 0;
  width: 0;
  height: 0;
}

.slick-dots li {
  height: 0;
}

/* About us */
.about-us-container{
  position: relative;
}

.card-about-us{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.text-card-about-us{
  width: 40%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card-about-us h2{
  color: #27A9E1;
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.text-card-about-us h2 b{
  font-weight: 600;
}

.text-card-about-us p{
  color: black;
  font-size: 20px;
  line-height: 25px;
  max-width: 95%;
  margin-bottom: 40px;
}

.card-about-us img{
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.background-blue .text-card-about-us{
  background: #27A9E1;
}

.background-blue .text-card-about-us h2, .background-blue .text-card-about-us p{
  color: white;
}

/* Brands */
.brand-container{
  background: rgba(39, 169, 225, 0.06);
  position: relative;
  padding: 300px 5%;
}

.arrows-slider{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.arrows-slider img{
  margin: 7px;
  cursor: pointer;
}

.arrows-slider img:hover{
 opacity: 0;
}

.slider-brands .slick-slide{
  margin: 10px;
}

.slider-brands .slick-slide img{
  width: 100%;
}

.slick-arrow.slick-hidden{
  display: block;
}


/*--------------------- RESPONSIVE ----------------------*/

/* Mobile */
@media screen and (max-width: 1000px) {
  .hero-wrap, .slider-hero-wrap, .slider-hero-wrap .slick-list .slick-track, .slider-hero-wrap .slick-list {
    height: 70vh;
}
  .card-about-us{
    flex-direction: column;
  }
  .text-card-about-us{
    width: 90%;
    padding: 40px 5% 50px;
  }
  .text-card-about-us h2, h3{
    font-size: 25px;
    line-height: 25px;
  }
  .text-card-about-us p{
    font-size: 14px;
    line-height: 20px;
  }
  .no-button{
    margin-bottom: 0 !important;
  }
  .card-about-us img{
    width: 100%;
  }
  .brand-container{
    padding: 100px 0%;
    width: 100%;
  }
  .arrows-slider{
    display: none;
  }
  h3{
    margin-bottom: 20px;
  }
}