/* Banner css */

.banner {
  position: relative;
  width: 100%;
  background-image1: url("../../assets/images/Banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 650px;
  height: 100%;
  z-index: 0;
}

.banner img{
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-position: center;
  object-fit: cover;
  color: transparent;
  position: absolute;
}

.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 1;
}

.banner .banner-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 650px;
}

.banner .container {
  min-height: 650px;
  height: 100%;
  z-index: 3;
}

.banner .banner-content h1 {
  font-size: 66px;
  line-height: 100%;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.banner .banner-content p {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.banner .banner-content .banner-link {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 18px 40px;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .banner .banner-content h1 {
    font-size: 29px;
    margin-bottom: 30px;
  }

  .banner .banner-content p {
      font-size: 14px;
      margin-bottom: 40px;
  }

  .banner .banner-content .banner-link {
      font-size: 15px;
      padding: 14px 43px;
      border-radius: 3px;
  }

  .banner .banner-content, .banner, .banner .container {
    min-height: 480px;
  }
  .banner .banner-content{
    justify-content: flex-end;
  }
}
