.warrenties-banner {
  position: relative;
  width: 100%;
  /* min-height: 650px; */
}

.warrenties-slide {
  position: relative;
  width: 100%;
  /* min-height: 650px; */
}

.warrenties-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.warrenties-slide .container {
  position: absolute;
  /* min-height: 650px; */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  top: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.warrenties-slide > img {
  width: 100%;
  height: 100%;
  /* min-height: 650px; */
  object-fit: cover;
}

.warrenties-slide .bottom-content {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.warrenties-slide .container > h1 {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 96px;
}

.warrenties-slide .bottom-content .img-wrap img {
  max-width: 119px;
}

.warrenties-slide .bottom-content .subtitle p {
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: none;
  opacity: 1;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background-color: #757575;
}

.warrenties-banner ul.slick-dots {
  position: absolute;
  bottom: 60px;
  right: 150px;
}

.warrenties-mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .warrenties-mobile-banner {
    display: block;
  }

  .warrenties-banner {
    display: none;
  }

  .warrenties-mobile-slide {
    position: relative;
}

.warrenties-mobile-slide .container {
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.warrenties-mobile-slide .container .text-area {
    margin-bottom: 60px;
    text-align: center;
}

.warrenties-mobile-slide .container .text-area h1 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 500;
    font-size: 29px;
    margin-bottom: 15px;
}

.warrenties-mobile-slide .container .text-area h4 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.warrenties-mobile-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
}

.warrenties-mobile-slide .container .bottom-content img {
    max-width: 70px;
}

.warrenties-mobile-slide .container .bottom-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.warrenties-mobile-banner ul.slick-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
}