@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
.landing {
  font-family: "Montserrat";
  color: #222222;
  background-color: #ffffff;
}
.landing * {
  box-sizing: border-box;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.btn {
  width: 300px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 0;
  color: #ffffff;
  border: 1px solid;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn {
    height: 48px;
  }
}
.btn--primary {
  background-color: rgb(254, 196, 101);
  color: #ffffff!important;
  border-color: rgb(254, 196, 101);
}
.btn--primary:hover {
  background-color: transparent;
  color: rgb(254, 196, 101)!important;
}
.btn--secondary {
  background-color: transparent;
  color: #ffffff!important;
  border-color: #ffffff;
}
.btn--secondary:hover {
  background-color: #ffffff;
  color: #000000!important;
}
.btn--primary-dark {
  background-color: rgb(254, 196, 101);
  color: #000000!important;
  border-color: rgb(254, 196, 101);
}
.btn--primary-dark:hover {
  background-color: transparent;
  color: rgb(254, 196, 101)!important;
}
.btn--secondary-dark {
  background-color: transparent;
  color: #000000!important;
  border-color: #000000;
}
.btn--secondary-dark:hover {
  background-color: #000000;
  color: #ffffff!!important;
}

.landing-banner {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 40px 0;
}
@media (max-width: 768px) {
  .landing-banner {
    background-color: #000000;
    padding-top: 0;
    background-image: none !important;
  }
}
.landing-banner__content {
  flex: 1;
}
@media (max-width: 768px) {
  .landing-banner .desktop {
    display: none;
  }
}
.landing-banner .mobile {
  display: none;
}
@media (max-width: 768px) {
  .landing-banner .mobile {
    display: block !important;
  }
}
.landing-banner__label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .landing-banner__label {
    font-size: 14px;
  }
}
.landing-banner__title {
  margin-bottom: 18px;
  max-width: 430px;
  font-size: 70px;
  line-height: 0.8;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 768px) {
  .landing-banner__title {
    font-size: 36px;
  }
}
.landing-banner__title span {
  font-style: italic;
  font-weight: 400;
}
.landing-banner__subtitle {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 580px;
}
@media (max-width: 768px) {
  .landing-banner__subtitle {
    font-size: 14px;
  }
}
.landing-banner__buttons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .landing-banner__buttons {
    flex-direction: column;
  }
  .landing-banner__buttons .btn {
    width: 100%;
    text-align: center;
  }
}
.landing-banner__features {
  padding-top: 104px;
}
@media (max-width: 768px) {
  .landing-banner__features {
    padding-top: 40px;
  }
}
.landing-banner__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}
@media (max-width: 768px) {
  .landing-banner__features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .landing-banner__features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.landing-banner__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.landing-banner__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-banner__feature-icon img {
  max-width: 100%;
  height: auto;
}
.landing-banner__feature-content {
  flex: 1;
}
.landing-banner__feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}
.landing-banner__feature-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
}

.landing-membership {
  padding: 40px 0;
}
.landing-membership__header {
  text-align: center;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .landing-membership__header {
    margin-bottom: 28px;
    text-align: left;
  }
}
.landing-membership__label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .landing-membership__label {
    font-size: 14px;
    text-align: right;
  }
}
.landing-membership__title {
  margin: 0 auto 18px auto;
  max-width: 660px;
  font-size: 70px;
  line-height: 0.8;
  font-weight: bold;
}
@media (max-width: 768px) {
  .landing-membership__title {
    font-size: 36px;
    margin: 0 0 25px 0;
    max-width: 250px;
  }
}
.landing-membership__title span {
  font-style: italic;
  font-weight: 400;
}
.landing-membership__subtitle {
  font-size: 20px;
  line-height: 1.4;
  max-width: 630px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .landing-membership__subtitle {
    font-size: 14px;
    margin: 0;
  }
}
.landing-membership__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}
@media (max-width: 768px) {
  .landing-membership__steps {
    gap: 26px;
  }
}
.landing-membership__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 390px;
  text-align: center;
  padding: 30px 30px 20px 30px;
  border: 1px solid #D5D7DD;
}
@media (max-width: 768px) {
  .landing-membership__step {
    min-height: auto;
    padding: 30px;
  }
}
.landing-membership__step-number {
  font-weight: 700;
  font-size: 70px;
  color: rgb(254, 196, 101);
  margin-bottom: 20px;
  line-height: 1;
}
.landing-membership__step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.landing-membership__step-description {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .landing-membership__step-description {
    margin-bottom: 30px;
  }
}
.landing-membership__step-label {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
}

.landing-delivery {
  padding: 90px 0;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .landing-delivery {
    background-color: #000000;
    padding-top: 0;
    background-image: none !important;
  }
}
@media (max-width: 992px) {
  .landing-delivery {
    padding: 24px 0 50px 0;
  }
}
.landing-delivery__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .landing-delivery__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .landing-delivery .desktop {
    display: none;
  }
}
.landing-delivery .mobile {
  display: none;
}
@media (max-width: 768px) {
  .landing-delivery .mobile {
    display: block !important;
  }
}
.landing-delivery__content {
  width: 50%;
  padding-right: 50px;
}
@media (max-width: 768px) {
  .landing-delivery__content {
    width: 100%;
    padding-right: 0;
  }
}
.landing-delivery__label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .landing-delivery__label {
    font-size: 14px;
    text-align: right;
    margin-bottom: 23px;
  }
}
.landing-delivery__title {
  margin-bottom: 18px;
  max-width: 635px;
  font-size: 70px;
  line-height: 0.8;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 768px) {
  .landing-delivery__title {
    max-width: 260px;
    font-size: 36px;
    margin-bottom: 23px;
  }
}
.landing-delivery__title span {
  font-style: italic;
  font-weight: 400;
}
.landing-delivery__subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .landing-delivery__subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.landing-delivery__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .landing-delivery__features {
    margin-top: 20px;
  }
}
.landing-delivery__feature {
  display: flex;
  gap: 12px;
}
.landing-delivery__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.landing-delivery__feature-icon img {
  max-width: 100%;
  height: auto;
}
.landing-delivery__feature-content {
  flex: 1;
}
.landing-delivery__feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}
.landing-delivery__feature-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
}

.landing-built {
  padding: 150px 0;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .landing-built {
    padding: 80px 0 160px 0;
  }
}
.landing-built__wrapper {
  display: flex;
  align-items: center;
}
.landing-built__content {
  width: 50%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .landing-built__content {
    width: 100%;
    padding-right: 0;
  }
}
.landing-built__label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .landing-built__label {
    font-size: 14px;
    margin-bottom: 23px;
    text-align: right;
  }
}
.landing-built__title {
  margin-bottom: 50px;
  max-width: 300px;
  font-size: 70px;
  line-height: 0.8;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 768px) {
  .landing-built__title {
    font-size: 36px;
    margin-bottom: 23px;
  }
}
.landing-built__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
}
.landing-built__subtitle {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .landing-built__subtitle {
    font-size: 14px;
  }
}
.landing-built__description {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 768px) {
  .landing-built__description {
    font-size: 14px;
  }
}
.landing-join {
  padding: 70px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .landing-join {
    padding: 40px 0;
  }
}
.landing-join__content {
  max-width: 760px;
  margin: 0 auto;
}
.landing-join__label {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(254, 196, 101);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .landing-join__label {
    font-size: 14px;
    margin-bottom: 23px;
  }
}
.landing-join__title {
  margin: 0 auto 18px auto;
  font-size: 70px;
  line-height: 0.8;
  font-weight: bold;
}
@media (max-width: 768px) {
  .landing-join__title {
    font-size: 36px;
    margin: 0 auto 23px auto;
  }
}
.landing-join__title span {
  font-style: italic;
  font-weight: 400;
}
.landing-join__subtitle {
  margin-bottom: 33px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .landing-join__subtitle {
    font-size: 14px;
  }
}
.landing-join__buttons {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .landing-join__buttons {
    flex-direction: column;
  }
  .landing-join__buttons .btn {
    width: 100%;
  }
}

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