@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html,
body {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Lato", sans-serif;
}

.img-flip-x {
  transform: scaleX(-1);
}

#hero {
  background-image: url("../img/hero-img.webp");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width:576px) {
  #hero {
    background-position: calc(0% - 4.5rem) top;
  }
}

#hero .row {
  min-height: 60vh;
}

@media (min-width:576px) {
  #hero .row {
    min-height: 100vh;
  }
}

h3 {
  font-weight: 400;
  font-style: normal;
}

.dalman-text-navy {
  color: #23323b;
}

#collection button {
  transform: translate(50%,-1.5rem);
}

@media (min-width:992px) {
  #collection button {
    transform: translate(50%,-3rem);
  }
}