@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input,
textarea,
button {
  appearance: none;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  border-radius: 0;
}

body {
  background-color: black;
  width: 100%;
  margin: 0;
  height: 0;
  color: white;
  font-family: "Josefin Sans", serif;
}
body .menu {
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 20;
  position: sticky;
  top: 10px;
}
body .menu .menu-cent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
  padding: 10px 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
body .menu ul {
  display: none;
}
@media (min-width: 750px) {
  body .menu ul {
    display: flex;
    list-style: none;
  }
}
body .menu ul li {
  margin: 0 5px;
}
body .menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 6px 10px;
  background-color: #6448DD;
  border-radius: 20px;
  font-size: 17px;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
body .menu #menu-icon {
  display: block;
  width: 30px;
}
@media (min-width: 750px) {
  body .menu #menu-icon {
    display: none;
  }
}
body .cent {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
body .cent .phone-flex {
  max-width: 1200px;
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  body .cent .phone-flex {
    justify-content: space-between;
    align-items: center;
    flex-direction: unset;
  }
}
body .cent .phone-flex .flex-left {
  width: 100%;
  order: 2;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-left {
    width: 40%;
    order: 1;
  }
}
@media (min-width: 992px) {
  body .cent .phone-flex .flex-left {
    width: 45%;
  }
}
body .cent .phone-flex .flex-left img {
  max-width: 300px;
  width: 100%;
  z-index: 3;
  position: relative;
  margin: 0 auto;
  display: block;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-left img {
    width: 100%;
    max-width: unset;
  }
}
body .cent .phone-flex .flex-right {
  padding: 20px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  order: 1;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-right {
    background-color: #09091b;
    padding: 40px 20px;
    width: 60%;
    order: 2;
  }
}
@media (min-width: 992px) {
  body .cent .phone-flex .flex-right {
    width: 55%;
  }
}
body .cent .phone-flex .flex-right h1 {
  font-size: 27px;
  text-align: center;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-right h1 {
    font-size: 25px;
    text-align: left;
  }
}
@media (min-width: 750px) {
  body .cent .phone-flex .flex-right h1 {
    font-size: 31px;
  }
}
@media (min-width: 992px) {
  body .cent .phone-flex .flex-right h1 {
    font-size: 40px;
  }
}
body .cent .phone-flex .flex-right h3 {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-right h3 {
    font-size: 17px;
    font-weight: unset;
  }
}
@media (min-width: 750px) {
  body .cent .phone-flex .flex-right h3 {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  body .cent .phone-flex .flex-right h3 {
    font-size: 22px;
    line-height: 22px;
  }
}
body .cent .phone-flex .flex-right a {
  display: block;
  background-color: #6448DD;
  width: fit-content;
  color: white;
  text-decoration: none;
  padding: 8px 17px;
  border-radius: 20px;
  font-size: 18px;
  border: 2px solid #6448DD;
  margin: 30px auto 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) {
  body .cent .phone-flex .flex-right a {
    margin: 30px 0 0 0;
  }
}
@media (min-width: 992px) {
  body .cent .phone-flex .flex-right a {
    padding: 10px 20px;
  }
}
body .cent .phone-flex .flex-right a:hover {
  background-color: #5433e4;
  border: 2px solid #281091;
}
body .cent #ellipse {
  position: absolute;
  top: -300px;
  z-index: 1;
  right: 0;
}
body .sell-background {
  background-color: #050508;
  overflow: hidden;
  position: relative;
}
body .sell-background .sell {
  max-width: 1200px;
  width: 90%;
  margin: 0px auto;
  padding: 40px 0;
}
@media (min-width: 750px) {
  body .sell-background .sell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
}
body .sell-background .sell .sell-left {
  width: 100%;
}
@media (min-width: 750px) {
  body .sell-background .sell .sell-left {
    width: 50%;
  }
}
@media (min-width: 992px) {
  body .sell-background .sell .sell-left {
    width: 40%;
  }
}
body .sell-background .sell .sell-left h2 {
  font-size: 27px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body .sell-background .sell .sell-left h2 {
    font-size: 30px;
    text-align: center;
  }
}
body .sell-background .sell .sell-left p {
  font-size: 17px;
  margin: 15px 0;
}
@media (min-width: 992px) {
  body .sell-background .sell .sell-left p {
    font-size: 18px;
  }
}
body .sell-background .sell .sell-left p span {
  font-weight: 900;
}
body .sell-background .sell .sell-right {
  width: 100%;
}
@media (min-width: 750px) {
  body .sell-background .sell .sell-right {
    width: 50%;
  }
}
@media (min-width: 992px) {
  body .sell-background .sell .sell-right {
    width: 60%;
  }
}
body .sell-background .sell .sell-right img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 440px;
}
@media (min-width: 750px) {
  body .sell-background .sell .sell-right img {
    max-width: 0;
    margin: 0;
  }
}
body .sell-background #ellipse-left {
  position: absolute;
  top: 0;
  left: 0;
}
body .details {
  margin: 50px auto;
  width: 90%;
  border: 2px solid white;
  padding: 30px 15px 10px 15px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  body .details {
    width: 80%;
    max-width: fit-content;
    padding: 30px 40px;
  }
}
@media (min-width: 992px) {
  body .details {
    padding: 40px 60px;
    margin: 100px auto;
  }
}
body .details h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body .details h2 {
    font-size: 30px;
  }
}
body .details p {
  font-size: 17px;
  display: flex;
  align-items: center;
  margin: 15px 0;
  border-bottom: 1px dotted white;
  padding-bottom: 7px;
}
@media (min-width: 576px) {
  body .details p {
    font-size: 20px;
    margin: 20px 0;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  body .details p {
    font-size: 22px;
  }
}
body .details p img {
  margin-right: 10px;
}
body .contact {
  width: 100%;
  border-top: 2px solid white;
}
body .contact .contact-cent {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 750px) {
  body .contact .contact-cent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
  }
}
body .contact .contact-cent .cent-left {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 750px) {
  body .contact .contact-cent .cent-left {
    width: 40%;
    margin: 0;
  }
}
body .contact .contact-cent .cent-left h2 {
  font-size: 26px;
  padding: 0 0 20px 20px;
}
@media (min-width: 750px) {
  body .contact .contact-cent .cent-left h2 {
    font-size: 30px;
  }
}
body .contact .contact-cent .cent-left a {
  display: flex;
  color: white;
  width: fit-content;
  align-items: center;
  font-size: 18px;
  padding: 5px 0;
  margin: 10px 0;
  text-decoration: none;
}
@media (min-width: 750px) {
  body .contact .contact-cent .cent-left a {
    font-size: 20px;
  }
}
body .contact .contact-cent .cent-left a img {
  width: 30px;
  margin-right: 5px;
}
body .contact .contact-cent .cent-right {
  width: 100%;
  height: 100%;
}
@media (min-width: 750px) {
  body .contact .contact-cent .cent-right {
    width: 60%;
  }
}
body .contact .contact-cent .cent-right iframe {
  width: 100%;
  height: 300px;
}
body .contact .my {
  width: 100%;
  margin-top: 2px solid white;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
}
body .contact .my a {
  text-decoration: none;
  color: white;
  font-family: "Pacifico", cursive;
  font-weight: 200;
  font-size: 14px;
}

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