@import url("style.css");

#hero {
  backdrop-filter: blur(10px);
  background-color: #fff;
  height: 120vh;
  background-image: url("../img/home/home-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
#hero .row {
  height: 100vh;
}
#hero .container {
  text-align: center;
}

#hero h1 {
  margin-top: 100px;
  font-size: 41px;
  color: #fff;
  font-family: "traveller";
}
#hero h1 label {
  height: 40px;
  border-bottom: 12px solid #239993;
  width: fit-content;
  margin: auto;
}
#hero p {
  font-size: 18px;
  color: #fff;
  text-shadow: 2px 2px 5px #f3c214;
}
#hero a,
#products a {
  margin-top: 20px;
  text-decoration: none !important;
  font-weight: bold;
  background-color: #fff;
  display: block;
  width: 150px;
  text-align: center;
  padding: 10px;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  transition: transform 0.2s;
}

#hero a:hover,
#products a:hover {
  color: #ffbe32;
  transform: scale(1.1);
}
#products img {
  width: 100%;
}
#products .row {
  padding: 0px;
  margin: 0px;
}
#products .row div {
  padding: 70px 80px;
  margin: 0px;
  display: inline-block;
}
#products a {
  margin-top: -25px !important;
  background-color: #fff;
  position: relative;
  margin: auto;
}
#products .row > div:first-child {
  background-color: #339999;
}
#products .row > div:last-child {
  background-color: #f5911e;
}
@media only screen and (max-width: 767px) {
  #hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
  #hero .container {
    padding-top: 10px;
  }
  #hero h1 {
    font-size: 30px;
  }
  #hero h1 label {
    height: 30px;
    border-bottom: 12px solid #239993;
  }
  #hero p {
    font-size: 16px;
  }

  #hero a,
  #products a {
    font-size: 14px;
    padding: 8px;
    margin-top: 0px;
  }
  #products .row div {
    padding: 30px 40px;
  }
  #products a {
    margin-top: -20px !important;
  }
}
