html,
body {
  height: 100%;
  margin: 0;
  max-width: 100%;
  width: 100%;
  font-family: "Galano Grotesque", sans-serif;
  overflow-x: hidden; 
}

.home {
  position: relative;
  height: 945px;
}

.home-hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(./assets/hero.png);
  background-size: cover;
  background-position: bottom left;
  width: 100%;
  z-index: 0;
  background-color: #0bb3f0;
}
.home-banner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(./assets/banner.png);
  background-size: cover;
  background-position: bottom;
  height: 68%;
  width: 100%;
  z-index: 1;
}

.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
  pointer-events: none;
}

.logo {
  max-width: 180px;
}

.home-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}

.home-group {
  display: flex;
  gap: 28px;
  color: white;
  flex-direction: column;
  align-items: center;
  margin: 340px 0 100px;
}

h1 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  margin: 0;
  text-align: center;
}

h2 {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: white;
  margin: 0;
  text-align: center;
}

p {
  margin: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.home-columns {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.item {
  width: 30%;
  max-width: 315px;
}
.item p {
  font-weight: 400;
  text-align: center;
}
.item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.item span {
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  text-align: center;
}

.ticker {
  position: absolute;
  bottom: 55px;
  left: 0px;
  overflow: hidden;
  display: flex;
  width: calc(100vw + 20px);
  background: #faca15;
  transform: rotate(-5deg);
  margin-left: -10px;
}
.ticker__list {
  display: flex;
  animation: ticker 35s infinite linear;
}

.ticker__item {
  margin-right: 48px;
  width: fit-content;
  white-space: nowrap;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 180%;
  text-transform: uppercase;
}

@keyframes ticker {
  100% {
    transform: translateX(-100%);
  }
}

/* prices */
.prices {
  background: #0bb3f0;
  padding-top: 100px;
  overflow-y: clip;
}
.prices h1 {
  margin-top: 25px;
}

.bottom-ticker {
  background: #0bb3f0;
  position: relative;
  height: 250px;
}

.prices-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  padding: 90px 0;
  margin: 0 50px;
}

.prices-item {
  width: 29%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 24px;
  border-radius: 30px;
  background: #fff;
  max-width: 390px;
  gap: 24px;
}

.price-1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.price-1::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.price-2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.prices-item-text {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  text-align: center;
}

.btn {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 20px;
  text-decoration: none;
  padding: 18px 20px;
  width: 411px;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.black-btn {
  color: white;
  background: #111;
}
.yellow-btn {
  color: #111;
  background: #faca15;
}

.ticker-2 {
  position: absolute;
  bottom: 72px;
  left: 0px;
  overflow: hidden;
  display: flex;
  width: calc(100vw + 20px);
  background: #faca15;
  transform: rotate(5deg);
  margin-left: -10px;
}

.triangle::before {
  content: "";
  position: absolute;
  bottom: -106px;
  left: -10px;
  width: calc(100vw + 20px);
  height: 180px;
  background-color: #fff;
  transform: rotate(5deg);
}

/* info */
.info {
  padding-top: 100px;
  padding-bottom: 100px;
}

.info h1 {
  text-transform: uppercase;
  margin: 0 170px;
  line-height: normal;
}

.btn-groups {
  margin-top: 80px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ticker-3 {
  overflow: hidden;
  display: flex;
  width: 100vw;
}

/* footer */
footer {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3f5f7;
}

.dark-logo {
  width: 138px;
  margin-bottom: 20px;
}

.cr {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.icons {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 1600px) {
  .home {
    height: 906px;
  }

  .home-banner {
    height: 62%;
  }

  .home-group {
    margin: 325px 0 100px;
  }

  .ticker {
    bottom: 30px;
  }
}

@media screen and (max-width: 757px) {
  .home {
    height: auto;
  }

  .logo {
    max-width: 150px;
  }

  .home-content {
    padding-top: 175px;
  }

  .home-banner {
    height: 30%;
  }

  .home-group {
    gap: 15px;
    margin: 50px 0;
  }

  h1 {
    font-size: 36px;
    line-height: 40px;
    margin: 0 30px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 18px;
    text-align: center;
    margin: 0 30px;
  }

  .home-columns {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .item {
    width: 90%;
  }
  .item-img {
    height: 40px;
    margin-bottom: 5px;
  }
  .item-img img {
    height: 36px;
  }

  .ticker {
    bottom: -20px;
  }

  .prices {
    padding-top: 75px;
  }

  .bottom-ticker {
    height: 175px;
  }

  .prices-items {
    padding: 50px 0;
    margin: 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .prices-item {
    width: 70%;
  }

  .price-1 {
    font-size: 24px;
  }
  .price-2 {
    font-size: 44px;
  }
  .prices-item-text {
    font-size: 18px;
  }

  .btn {
    padding: 13px 15px;
    width: 242px;
    font-size: 17px;
  }

  .info {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .info h1 {
    margin: 0 20px;
  }

  .btn-groups {
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    gap: 15px;
  }

  .ticker__item {
    margin-right: 34px;
  }
  .ticker__item img {
    height: 55px;
  }

  footer {
    padding: 50px 0;
  }
}
