footer {
  background-color: var(--dark1);
  margin-top: 0px;
  padding-top: 0px;
}

/* Banner */

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1d202d;
  width: inherit;
  height: 100%;
  border-radius: 10px;
  padding: 7% 5%;
  letter-spacing: 0.04em;
}

.banner > .banner_img {
  display: flex;
  justify-content: end;
}

@media (max-width: 1400px) {
  .banner {
    flex-direction: column;
  }

  .banner > .banner_img {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 900px) {
  .banner > .banner_info > h1 {
    font-size: 13vw !important;
  }

  .banner > .banner_info > h3 {
    font-size: 4vw !important;
  }

  .buttons > * {
    width: 100% !important;
    padding: 15px 0px !important;
  }
}

.banner > .banner_img > img {
  width: 80%;
}

.banner > .banner_info > h1 {
  margin: 20px 0;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 0em;
}

.banner > .banner_info > h3 {
  font-weight: 400;
  font-size: 20px;
}

.banner > .banner_info > h1 > span {
  background-image: -webkit-linear-gradient(
    45deg,
    rgb(231, 140, 65) 0%,
    rgb(196, 74, 22) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.buttons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }
}

.banner_orange_btn {
  text-align: center;
  display: block;
  width: 120px;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
  background: linear-gradient(
    45deg,
    rgba(245, 141, 55, 1) 0%,
    rgb(235, 106, 50) 100%
  );
  color: white;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  letter-spacing: 0em;
}

.banner_white_btn {
  text-align: center;
  display: block;
  width: 120px;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  letter-spacing: 0em;
}

/* Features */

.features {
  display: grid;
  background-color: #1d202d;
  width: inherit;
  height: 100%;
  border-radius: 10px;
  padding: 5% 7%;
}

.features_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media (max-width: 1400px) {
  .features_grid {
    grid-template-columns: 100%;
  }
}

.grid_item {
  border: 1px solid white;
  border-radius: 15px;
  padding: 8%;
}

.grid_item > p {
  font-size: 20px;
  font-weight: 300;
}

.grid_item_header {
  display: flex;
  align-items: center;
}

.grid_item_header > img {
  width: 56px;
  height: 56px;
}

.grid_item_header > h4 {
  font-size: 24px;
  margin: 0 0 0 5%;
}

/* Recommended */

.recommended {
  display: grid;
  background-color: #1d202d;
  width: inherit;
  height: 100%;
  border-radius: 10px;
  padding: 5% 10%;
}

.recommended_grid {
  display: inherit;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media (max-width: 1400px) {
  .recommended_grid {
    grid-template-columns: 100%;
  }
}

.recommended_grid_item {
  border: 1px solid white;
  border-radius: 10px;
  padding: 10% 7% 2% 7%;
}

.recommended_grid_item > h1 {
  font-size: 22px;
  margin: 0;
}

.recommended_grid_item_price {
  display: flex;
  margin-top: 45px;
}

.recommended_grid_item_price > p {
  margin: 0;
  font-size: 74px;
  font-weight: 600;
}

.recommended_grid_item_price > span {
  margin-top: auto;
  margin-left: auto;
  margin-bottom: 16px;
  opacity: 0.7;
}

.recommended_grid_item:first-child > h1 {
  color: #c19ce5;
}

.recommended_grid_item:last-child > h1 {
  background-image: -webkit-linear-gradient(
    45deg,
    rgb(231, 140, 65) 0%,
    rgb(196, 74, 22) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.dollar {
  font-size: 20px;
  margin-right: 10px;
}

.server_configs {
  margin-top: 45px;
  display: grid;
}

.server_configs > hr {
  width: 100%;
  opacity: 0.7;
}

.config_item {
  display: flex;
  align-items: center;
  margin: 0 25px;
}

.config_item > img {
  width: 18px;
  height: 18px;
  margin-right: 20px;
}

.config_item > p {
  margin: 10px 0;
}

.order_orange_btn {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
  background: linear-gradient(
    45deg,
    rgba(245, 141, 55, 1) 0%,
    rgb(235, 106, 50) 100%
  );
  color: white;
  border: none;
  cursor: pointer;
  letter-spacing: 0em;
  margin: 25px 0;
  padding: 15px 0;
}

.order_btn {
  margin: 0 20px;
}

/* Our Community */

.our_community {
  display: grid;
  width: inherit;
}

.discord {
  display: grid;
  grid-template-columns: 70% 30%;
  background: linear-gradient(45deg, #9c5dcb 0%, #e45d39 100%);
  padding: 5% 10%;
  margin: 0 6%;
  border-radius: 15px;
}

@media (max-width: 900px) {
  .discord {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .discord > .text > p {
    text-align: center;
  }

  .discord > .text {
    margin-right: 0 !important;
  }
}

.discord > .text {
  font-size: 24px;
  margin-right: 40px;
}

.discord > .text > p {
  line-height: 1.8;
}

.discord > .button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.join_discord_btn {
  text-decoration: none;
  color: black;
  background-color: white;
  mix-blend-mode: screen;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 40px;
}

@media (max-width: 1400px) {
  .join_discord_btn {
    text-align: center;
  }
}
