.banner {
  background-image: url(../img/waterfall-valley-mobile.webp);
}

@media screen and (min-width: 1180px) {
  .banner {
    background-image: url(../img/waterfall-valley.webp);
  }
}
.category-cards .mini-card:nth-of-type(1) {
  background-image: url(../img/blue-landscape.webp);
}
.category-cards .mini-card:nth-of-type(2) {
  background-image: url(../img/weathered-clock.webp);
}
.category-cards .mini-card:nth-of-type(3) {
  background-image: url(../img/elegant-red-formal-fashion.webp);
}
.category-cards .mini-card:nth-of-type(4) {
  background-image: url(../img/four-friends.webp);
}
.category-cards .mini-card:nth-of-type(5) {
  background-image: url(../img/dark-wall-bedside-table.webp);
}
.category-cards .mini-card:nth-of-type(6) {
  background-image: url(../img/laptop.webp);
}
.category-cards .mini-card:nth-of-type(7) {
  background-image: url(../img/ramen.webp);
}
.category-cards .mini-card:nth-of-type(8) {
  background-image: url(../img/skyline-dusk.webp);
}
.category-cards .mini-card:nth-of-type(9) {
  background-image: url(../img/dog-paws.webp);
}
.category-cards .mini-card:nth-of-type(10) {
  background-image: url(../img/standing-in-woods.webp);
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

svg {
  width: 50px;
}

body {
  font-size: 100%;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  color: white;
}

.navbar {
  background-color: #2b3d5b;
  padding: 9px;
}
.navbar .container {
  display: flex;
  flex: 1;
  width: 90%;
  margin: 0 auto;
}
.navbar .container a {
  display: flex;
  align-items: center;
  height: 70px;
}
.navbar .container a svg {
  width: auto;
  height: 60px;
  fill: rgb(209, 209, 209);
}
.navbar .container nav {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 70px;
  background-color: #2b3d5b;
  z-index: 9999;
}
.navbar .container nav.show {
  height: auto;
  overflow: visible;
}
.navbar .container nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  line-height: 70px;
}
.navbar .container nav ul li {
  flex-grow: 1;
  text-align: center;
}
.navbar .container nav ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
}
.navbar .container nav ul li:first-of-type a {
  margin-left: none;
}
@media screen and (min-width: 855px) {
  .navbar .container nav ul {
    justify-content: end;
  }
  .navbar .container nav ul li {
    flex: none;
    margin-left: 2rem;
  }
}
.navbar .container .btn {
  width: 70px;
  height: 70px;
  background: none;
  border: none;
  color: white;
}
@media screen and (min-width: 995px) {
  .navbar .container .btn {
    display: none;
  }
}
@media screen and (min-width: 1180px) {
  .navbar .container {
    width: 1180px;
  }
}

.banner {
  height: 85vh;
  background-size: cover;
  background-position: center;
  color: white;
}
.banner .container {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.banner .container .banner-content {
  position: absolute;
  bottom: 20vh;
  width: 80%;
}
.banner .container .banner-content h2 {
  display: flex;
  flex-direction: column;
  font-family: "Piazzolla", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.25rem;
}
.banner .container .banner-content h2 span {
  color: white;
  font-size: clamp(3.375rem, 10vw, 7.594rem);
  font-family: "roboto", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 2px;
}
.banner .container .banner-content .searchbar {
  position: relative;
}
.banner .container .banner-content .searchbar form input {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding-left: 3rem;
  border-radius: 0.2;
  border: none;
}
.banner .container .banner-content .searchbar img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 16px;
  left: 13px;
}
.banner .container .banner-content p {
  margin-top: 1rem;
}
.banner .container .banner-content p a {
  color: inherit;
}
@media screen and (min-width: 1180px) {
  .banner .container {
    width: 1180px;
  }
}

main .features {
  margin-top: 3rem;
}
main .features .feature-card {
  background-color: #2c3e5b;
  margin-bottom: 2rem;
  min-width: 100%;
}
main .features .feature-card .icon-image {
  background-color: #f9f8f7;
  text-align: center;
  padding: 2rem 0;
}
main .features .feature-card .icon-image svg {
  width: 100px;
}
main .features .feature-card .text-content {
  padding: 1.5rem 1.5rem 4rem 1.5rem;
}
main .features .feature-card .text-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
main .feature-card:first-of-type {
  margin-top: 2rem;
}
@media screen and (min-width: 650px) {
  main .features {
    width: 95%;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 33% 1fr 33% 1fr 33%;
  }
  main .features .feature-card:nth-of-type(1) {
    grid-column-start: 1;
  }
  main .features .feature-card:nth-of-type(2) {
    grid-column-start: 3;
  }
  main .features .feature-card:nth-of-type(3) {
    grid-column-start: 5;
  }
  main .feature-card:first-of-type {
    margin-top: 0;
  }
}
@media screen and (min-width: 1180px) {
  main .features {
    width: 1180px;
  }
}
main .testimonials {
  color: #2c3e5b;
  background-color: #f9f8f7;
  padding: 3rem 1rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
main .testimonials h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
main .testimonials p {
  font-family: "Piazzolla", sans-serif;
  line-height: 1.2;
  font-style: italic;
}
main .testimonials p:last-of-type {
  margin-top: 1rem;
}
main .testimonials img {
  margin: 3rem 0 1rem 0;
  width: 100%;
}
@media screen and (min-width: 330px) {
  main .testimonials {
    height: 370px;
    margin-bottom: 6rem;
  }
  main .testimonials .container {
    width: 95%;
    margin: 0 auto;
  }
  main .testimonials .container .flex-row {
    display: flex;
    justify-content: space-between;
  }
  main .testimonials .container .flex-row img {
    margin: 0;
    width: 250px;
  }
}
@media screen and (min-width: 1180px) {
  main .testimonials .container {
    width: 1180px;
  }
}
main .categories h2 {
  color: #2c3e5b;
  font-size: 1.5rem;
  width: 95%;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 1180px) {
  main .categories h2 {
    width: 1180px;
  }
}
main .categories .category-cards {
  display: grid;
  grid-template-columns: 50% 50%;
}
main .categories .category-cards .mini-card {
  background-size: cover;
  background-position: center;
  height: 222px;
  width: 100%;
}
main .categories .category-cards .mini-card a {
  text-decoration: none;
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .categories .category-cards .mini-card a p:first-of-type {
  font-style: italic;
}
main .categories .category-cards .mini-card a p:last-of-type {
  font-size: 1.5rem;
}
@media screen and (min-width: 850px) {
  main .categories .category-cards {
    grid-template-columns: 20% 20% 20% 20% 20%;
  }
}
main .statistics {
  color: #2c3e5b;
  background-color: #f9f8f7;
  margin-top: 2rem;
  padding-bottom: 4rem;
}
main .statistics .container {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}
main .statistics .container h2 {
  padding: 1rem 0;
  width: 100%;
  font-size: 1.5rem;
}
main .statistics .container .data-display {
  text-align: center;
  padding: 1rem 2rem;
  flex: 1;
}
main .statistics .container .data-display p:first-of-type {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 1180px) {
  main .statistics .container {
    width: 1180px;
  }
}

footer {
  color: #8b8b8b;
  margin-top: 2rem;
  text-transform: uppercase;
}
footer .container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
footer .container p:first-of-type {
  margin-bottom: 0.5rem;
  margin-right: auto;
}
footer .container p {
  text-align: center;
}
@media screen and (min-width: 1180px) {
  footer .container {
    width: 1180px;
  }
}/*# sourceMappingURL=styles.css.map */