@import url(https://fonts.bunny.net/css?family=alata:400);
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #101213;
  color: #fff;
  font-family: "Alata", sans-serif;
}

header {
  position: sticky;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.brand {
  margin: 0;
  font-size: 1rem;
}

.hamburger-menu {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 30px;
}

.hamburger-menu > img {
  padding-left: 3px;
  padding-top: 2px;
}

.hero {
  background: linear-gradient(267deg, #F2B362 0%, white 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-top: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .subtext {
    font-size: 1rem;
    text-align: left;
    margin-top: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .card {
    color: white;
    flex: 0 0 calc(70% - 50px);
    margin-left: 3rem;
    margin-top: 2rem;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 24px;
    height: 10rem;
    width: auto;
    position: relative;
  }
  .carousel-container {
    width: 100%;
    overflow-x: scroll;
    position: relative;
    margin-right: 1rem;
    overflow-y: hidden;
    height: 20rem;
  }
  .card > img {
    width: 100%;
    height: 10rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
  .miniCardContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    width: auto;
  }
  .miniCard {
    position: relative;
    height: 4rem;
    border-radius: 14px;
    border: 0.55px rgba(255, 255, 255, 0.1) solid;
    margin-top: 1rem;
    padding: 1rem;
    justify-content: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }
  .contenitore {
    padding: 0 0 4rem 0;
  }
}
@media screen and (min-width: 701px) {
  h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-top: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .subtext {
    font-size: 1rem;
    text-align: center;
    margin-top: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .card {
    color: white;
    flex: auto;
    margin-left: 3rem;
    margin-top: 2rem;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 24px;
    height: 16rem;
    width: auto;
    position: relative;
  }
  .card > img {
    width: 100%;
    height: 16rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
  .carousel-container {
    width: 100%;
    position: relative;
    margin-right: 1rem;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 24rem;
  }
  .miniCardContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem 4rem 4rem;
    align-items: center;
  }
  .miniCard {
    position: relative;
    width: 18rem;
    height: 4rem;
    border-radius: 14px;
    border: 0.55px rgba(255, 255, 255, 0.1) solid;
    margin-top: 1rem;
    padding: 1rem;
    justify-content: flex-start;
    display: inline-flex;
    align-items: center;
    place-content: center;
    gap: 1rem;
  }
  .contenitore {
    padding: 0 30% 4rem 30%;
  }
}
.highlight {
  color: rgb(243, 185, 109);
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  padding-bottom: 1px;
  height: 100%;
}

.card:last-child {
  margin-right: 3rem;
}

.card-text {
  position: absolute;
  bottom: -3rem;
  left: 0;
  font-size: 14px;
}

.darkBg {
  background-color: #1F1E1E;
  padding-top: 1rem;
  padding-bottom: 0;
  width: 100%;
}

.miniCardIcon {
  position: relative;
}

footer {
  color: rgb(196, 196, 196);
  padding-top: 2rem;
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 300;
  font-size: 13px;
  font-family: system-ui;
}

.image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  animation: pulse 2.5s infinite;
  background-color: rgba(255, 255, 255, 0.1);
}

@keyframes pulse {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
}
.photoContained.loaded::before {
  content: none;
  animation: none;
}

.photoContained {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.photoContained.loaded > img {
  opacity: 1;
  border-radius: 8px;
}/*# sourceMappingURL=styleNew.css.map */