#hero {
  position: relative;
  margin: 0;
  padding: 20px;
  background-color: #0091fe;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 0 0 50px 50px;
  height: 200px;
}
@media (min-width: 768px) {
  #hero {
    height: 400px;
    padding: 20px;
    background-position: center;
    background-attachment: scroll;
  }
}
#hero .blenda {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #0091fe, rgba(0, 145, 254, 0.4));
  z-index: 100;
  height: 200px;
  border-radius: 0 0 50px 50px;
}
@media (min-width: 768px) {
  #hero .blenda {
    height: 400px;
  }
}
#hero .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  right: 20px;
}
@media (min-width: 768px) {
  #hero .content {
    bottom: 40px;
    left: 60px;
    right: auto;
  }
}

.store-links {
  display: none;
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .store-links {
    display: flex;
  }
}
.store-links .store-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.store-links .store-link:hover {
  transform: scale(1.05);
}
.store-links .store-link img {
  height: 50px;
  width: auto;
  display: block;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  background-color: #1a1a1a;
}

.feature {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 300px;
}
@media (min-width: 768px) {
  .feature {
    flex: 1 1 calc(33.333% - 27px);
    min-height: 400px;
  }
}

.feature__media {
  flex-shrink: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .feature__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}
.feature__media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .feature__media img {
    border-radius: 0;
  }
}

.feature__content {
  flex-grow: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 60%, transparent);
}
@media (min-width: 768px) {
  .feature__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    justify-content: flex-end;
    background: none;
    transition: all 0.3s ease;
  }
}
.feature__content h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #0091fe;
  text-align: center;
}
@media (min-width: 768px) {
  .feature__content h3 {
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 20;
    transition: opacity 0.3s ease;
  }
}
.feature__content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  .feature__content p {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

@media (min-width: 768px) {
  .feature::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
    z-index: 5;
    transition: all 0.3s ease;
  }
}

@media (min-width: 768px) {
  .feature:hover::before {
    background: linear-gradient(135deg, rgba(0, 145, 254, 0.8), rgba(0, 91, 180, 0.8));
    height: 100%;
    backdrop-filter: blur(6px);
  }
  .feature:hover .feature__content {
    backdrop-filter: blur(6px);
  }
  .feature:hover .feature__content h3 {
    opacity: 1;
  }
  .feature:hover .feature__content p {
    opacity: 1;
  }
}

h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 768px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0;
  margin: 0;
  font-family: Calibri, "Trebuchet MS", sans-serif;
}

html {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .main {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
  }
}

.store-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 20px 0;
}
@media (min-width: 768px) {
  .store-links {
    flex-direction: row;
    padding: 40px 60px 0;
  }
}
.store-links .store-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.store-links .store-link:hover {
  transform: scale(1.05);
}
.store-links .store-link img {
  height: 60px;
  width: auto;
  display: block;
}

/*# sourceMappingURL=style.css.map */
