.home__top {
  display: flex;
  flex-direction: column;
  top: 30%;
  position: absolute;
  z-index: 5;
}

.home {
  margin-bottom: 100px;
}

.home__top-main > h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-red);
  font-family: "Raleway", sans-serif;
}

.home__top-main > h1 {
  font-size: 56px;
  text-transform: uppercase;
  width: 700px;
  margin-top: 30px;

  @media (max-width: 864px) {
    width: auto;
  }

  @media (max-width: 560px) {
    font-size: 32px;
  }
}

.home__top-main > ul {
  margin-top: 30px;
  margin-bottom: 30px;

  display: flex;
  flex-direction: column;
  position: relative;

  gap: 30px;

  &::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    background: url("../assets/images/Home/dashed-line.svg");
    /* background-position: center; */
    background-repeat: no-repeat;
    /* background-size: cover; */
  }
}

.home__top-main > ul > li {
  line-height: 180%;
  width: 650px;
  margin-left: 50px;

  @media (max-width: 864px) {
    width: auto;
    padding-right: 10px;
  }
}

.home__top-main > button {
  padding: 25px 50px;
  font-size: 22px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: "Raleway", sans-serif;
  border-radius: 10px;
  text-transform: uppercase;
}

.home__top-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;

  width: 1200px;

  @media (max-width: 1268px) {
    width: 900px;
  }

  @media (max-width: 913px) {
    width: 600px;
  }

  @media (max-width: 663px) {
    width: 400px;
  }

  
  @media (max-width: 430px) {
    width: 300px;
  }
}

.home__top-bottom > .swiper-pagination {
  /* order: 1; */
  position: static !important;
  text-align: left !important;
}

.home__top-bottom > .home__social {
  /* order: 0; */
  display: flex;
  align-items: center;
  gap: 10px;
}
