@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.show-on-mob-only {
  visibility: hidden;
}
@media (max-width: 600px) {
  .show-on-mob-only {
    visibility: initial;
  }
}

html, body {
  background-color: #100F0F;
  font-size: 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
  font-size: 1.15rem;
  font-weight: 200;
}

.container {
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}

p {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.4rem; /* 1.92rem */
  max-width: 70%;
}

button {
  border: none;
  outline: none;
}

@property --myColor1 {
  syntax: "<color>";
  initial-value: rgba(217, 217, 217, 0.1);
  inherits: false;
}
@property --myColor2 {
  syntax: "<color>";
  initial-value: rgba(217, 217, 217, 0.15);
  inherits: false;
}
.btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--myColor1), var(--myColor2));
  border-radius: 2rem;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  width: auto;
  box-sizing: unset;
  display: flex;
  justify-content: space-between;
  transition: --myColor1 0.3s ease-in-out, --myColor2 0.3s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus {
  --myColor1: #4D041B;
  --myColor2: #940432;
}

.btn-secondary {
  font-size: 1.25rem;
  padding-block: 1rem;
  color: #fff;
  cursor: pointer;
  width: auto;
  text-wrap: nowrap;
}
@media (max-width: 600px) {
  .btn-secondary {
    font-size: 1rem;
  }
}

.btn-secondary::after {
  content: "";
  display: block;
  cursor: pointer;
  width: 100%;
  height: 1px;
  margin-top: 0.5rem;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: 700;
}

.logo span {
  color: #940432;
}

nav {
  display: flex;
  justify-content: space-between;
  padding-block: 2.5rem;
  position: relative;
  z-index: 100;
}
nav ul {
  display: flex;
  gap: 5.25rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  nav ul {
    gap: 3.25rem;
  }
}
@media (max-width: 600px) {
  nav ul li:nth-child(1), nav ul li:nth-child(2) {
    display: none;
  }
}

ul {
  list-style: none;
}

.special {
  font-weight: 200;
  font-style: italic;
  font-size: 20rem;
  color: #fff;
  opacity: 0.75%;
  overflow: hidden;
  word-break: keep-all;
  word-wrap: normal;
  cursor: auto;
  width: 100vw;
}
@media (max-width: 600px) {
  .special {
    width: 100%;
    font-size: 10rem;
    overflow: hidden;
  }
}

.capsule {
  display: block !important;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 200;
  background: linear-gradient(90deg, #4D041B, #940432);
  line-height: normal;
}

h1 {
  font-size: 2rem;
}

.text-red {
  color: #940432;
}

.toastify {
  box-shadow: none !important;
}

h1.first {
  position: absolute;
  left: 0%;
  top: 3%;
}

.hero {
  display: flex;
  margin-top: 8rem;
  margin-left: 10%;
}
@media (max-width: 600px) {
  .hero {
    margin-left: 5%;
    flex-direction: column;
    margin-top: 4rem;
    gap: 2rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .hero .left {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .hero .left {
    width: 95%;
  }
}
.hero .left .capsule {
  margin-bottom: 2rem;
}
.hero .left h1 {
  margin-bottom: 1.5rem;
}
.hero .left .para {
  margin-bottom: 4rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .hero .left .para {
    margin-bottom: 2.5rem;
    width: 90%;
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .hero .left .para {
    margin-bottom: 2.5rem;
  }
}
.hero .left .subscribe {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero .left input {
  border: 0.75px rgba(255, 255, 255, 0.25) solid !important;
  border-radius: 4rem;
  background-color: transparent;
  padding: 1rem 2rem;
  max-width: 60%;
  color: #fff;
  box-sizing: unset;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .hero .left input {
    max-width: 80%;
  }
}
@media (max-width: 600px) {
  .hero .left input {
    max-width: 80%;
  }
}
.hero .left button {
  max-width: 60%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .hero .left button {
    max-width: 80%;
  }
}
@media (max-width: 600px) {
  .hero .left button {
    max-width: 80%;
  }
}
.hero .right {
  width: 60%;
}
@media (max-width: 600px) {
  .hero .right {
    width: 95%;
  }
}
.hero .right img {
  width: 100%;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -4rem;
  margin-left: 2rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .hero .right img {
    margin-top: -2rem;
    margin-left: 2rem;
  }
}
@media (max-width: 600px) {
  .hero .right img {
    margin-top: 1.5rem;
    margin-left: 0;
  }
}

.intro {
  padding-block: 20rem;
  padding-bottom: 10rem;
}
@media (max-width: 600px) {
  .intro {
    padding-block: 14rem;
    padding-bottom: 2rem !important;
  }
}
.intro .flex {
  display: flex;
  justify-content: center;
}
.intro h2 {
  width: 50%;
  font-style: italic;
  font-size: 2rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .intro h2 {
    font-size: 1.5rem;
    width: 60%;
  }
}
@media (max-width: 600px) {
  .intro h2 {
    font-size: 1.25rem;
    width: 80%;
  }
}

/*
h1.second{
    position: absolute;
    left: 5%;
    @include mobile{
        margin-top: 60%;
        left: -20%;
        font-size: 10rem;
    }
}
*/
#features {
  height: -moz-fit-content;
  height: fit-content;
}
#features .row {
  display: flex;
  margin: 0 auto;
  gap: 8rem;
  align-items: center;
  margin-left: 4rem;
  margin-bottom: 40vh;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row {
    gap: 1.5rem;
    margin-left: 0rem;
    margin-bottom: 25vh;
  }
}
@media (max-width: 600px) {
  #features .row {
    flex-direction: column;
    margin-left: 0rem;
    margin-top: 10vh;
    margin-bottom: 30vh;
  }
}
#features .row .img-stack {
  position: relative;
}
#features .row .img-stack img:nth-child(1) {
  height: 65vh;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row .img-stack img:nth-child(1) {
    height: 40vh;
  }
}
@media (max-width: 600px) {
  #features .row .img-stack img:nth-child(1) {
    height: 50vh;
  }
}
#features .row .img-stack img:nth-child(2) {
  height: 40vh;
  box-shadow: -8px 12px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -20%;
  right: -30%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row .img-stack img:nth-child(2) {
    height: 20vh;
    right: -10%;
    bottom: -30%;
  }
}
@media (max-width: 600px) {
  #features .row .img-stack img:nth-child(2) {
    height: 25vh;
    right: -10%;
    bottom: -30%;
  }
}
#features .row .text {
  margin-top: 2.5rem;
}
#features .row .text .detail {
  padding-left: 1rem;
  width: 80%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row .text .detail {
    padding-left: 1.5rem;
    margin-top: 2.5rem;
  }
  #features .row .text .detail p {
    font-size: 0.75rem;
    width: 100%;
    display: inline;
  }
}
@media (max-width: 600px) {
  #features .row .text .detail {
    padding-left: 0rem;
    width: 90%;
  }
  #features .row .text .detail p {
    font-size: 0.75rem;
    width: 100%;
    display: inline;
  }
}
#features .row .text .detail h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row .text .detail h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  #features .row .text .detail h3 {
    font-size: 1.25rem;
    width: 80%;
  }
}
#features .row .text .detail:nth-child(2) {
  margin-top: 6rem;
  margin-left: 8rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row .text .detail:nth-child(2) {
    margin-top: 6rem;
    margin-left: 2rem;
  }
}
@media (max-width: 600px) {
  #features .row .text .detail:nth-child(2) {
    margin-top: 3rem;
    margin-left: 2rem;
  }
}
#features .row:nth-child(2) {
  flex-direction: row-reverse;
  margin-left: 0;
}
@media (max-width: 600px) {
  #features .row:nth-child(2) {
    flex-direction: column;
  }
}
#features .row:nth-child(2) .img-stack {
  position: relative;
}
#features .row:nth-child(2) .img-stack img:nth-child(1) {
  height: 60vh;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .img-stack img:nth-child(1) {
    height: 40vh;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .img-stack img:nth-child(1) {
    height: 45vh;
  }
}
#features .row:nth-child(2) .img-stack img:nth-child(2) {
  height: 40vh;
  box-shadow: 8px 12px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -40%;
  left: -25%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .img-stack img:nth-child(2) {
    height: 20vh;
    left: -10%;
    bottom: -30%;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .img-stack img:nth-child(2) {
    height: 25vh;
    left: -10%;
    bottom: -30%;
  }
}
#features .row:nth-child(2) .text {
  margin-top: 2.5rem;
}
#features .row:nth-child(2) .text .detail {
  width: 100%;
  float: right;
  margin-top: 10rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .text .detail {
    padding-left: 0;
    margin-top: 2.5rem;
  }
  #features .row:nth-child(2) .text .detail p {
    font-size: 0.75rem;
    width: 100%;
    display: inline;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .text .detail {
    padding-left: 0rem;
    width: 90%;
    margin-top: 0;
  }
  #features .row:nth-child(2) .text .detail p {
    font-size: 0.75rem;
    width: 100%;
    display: inline;
  }
}
#features .row:nth-child(2) .text .detail h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .text .detail h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .text .detail h3 {
    font-size: 1.25rem;
    width: 80%;
  }
}
#features .row:nth-child(2) .text .detail:nth-child(1) {
  margin-right: -20%;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .text .detail:nth-child(1) {
    margin-right: -5%;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .text .detail:nth-child(1) {
    margin-right: 0;
  }
}
#features .row:nth-child(2) .text .detail:nth-child(2) {
  margin-top: 10rem;
  margin-left: 8rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #features .row:nth-child(2) .text .detail:nth-child(2) {
    margin-top: 6rem;
    margin-left: 0;
    margin-right: 2rem;
  }
}
@media (max-width: 600px) {
  #features .row:nth-child(2) .text .detail:nth-child(2) {
    margin-top: 3rem;
    margin-right: 2rem;
  }
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20vh;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .profile {
    margin-bottom: 5vh;
  }
}
@media (max-width: 600px) {
  .profile {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
    margin-bottom: 10vh;
  }
}
.profile h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .profile h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .profile h3 {
    font-size: 1.25rem;
    width: 80%;
  }
}
.profile .text, .profile img, .profile .more {
  width: 33%;
}
@media (max-width: 600px) {
  .profile .text, .profile img, .profile .more {
    width: 100%;
  }
}
.profile .text {
  padding-left: 2rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .profile .text {
    padding-left: 0;
    padding-right: 1rem;
  }
}
@media (max-width: 600px) {
  .profile .text {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .profile .text h3 {
    display: block;
    width: 100%;
  }
}
.profile .text p {
  width: 110%;
  display: inline;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .profile .text p {
    font-size: 0.75rem;
    width: 100%;
    display: inline;
  }
}
@media (max-width: 600px) {
  .profile .text p {
    font-size: 0.75rem;
    width: 80% !important;
    display: block;
  }
}
.profile img {
  height: 60vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .profile img {
    padding-right: 1rem;
  }
}
.profile .more {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile .more p {
  margin-bottom: 1rem;
}
.profile .more .capsule:nth-child(3) {
  margin-left: 5rem !important;
}
.profile .more .capsule:nth-child(4) {
  margin-right: 3rem !important;
  margin-bottom: 2rem;
}

#footer footer {
  display: flex;
  justify-content: space-between;
  padding-block: 3rem;
}
@media (max-width: 600px) {
  #footer footer {
    flex-direction: column;
    gap: 2.5rem;
  }
}
#footer footer .footnotes h3 {
  padding-bottom: 1rem;
}
#footer footer .footnotes h3 a {
  font-weight: 700 !important;
}
#footer footer .footnotes h3 a:hover {
  text-decoration: underline;
  color: #940432;
}
#footer footer .footnotes p {
  font-size: 1rem;
  width: 90% !important;
}
@media (max-width: 600px) {
  #footer footer .footnotes p {
    width: 90% !important;
    max-width: 90% !important;
  }
}
#footer footer .links {
  display: flex;
  gap: 4rem;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  #footer footer .links {
    gap: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */