@charset "UTF-8";
.zero {
  margin: 0;
  padding: 0;
}

.sep {
  height: 0.8rem;
  background-color: transparent;
}

.notification {
  cursor: pointer;
}
@media (max-width: 768px) {
  .notification {
    margin-bottom: -2rem;
    margin-top: -1rem;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.background-text {
  background-color: rgb(250, 44, 71);
  border-radius: 0.3rem;
  color: white;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.background-text-white {
  background-color: white;
  color: rgb(250, 44, 71);
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-radius: 0.3rem;
}

.lmfao {
  position: fixed;
  background-color: rgb(250, 44, 71);
  height: 4rem;
  width: 4rem;
  border-radius: 2rem;
  bottom: 0.8rem;
  right: 0.8rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border-style: solid;
  border-color: rgba(211, 211, 211, 0.5);
  background: linear-gradient(90deg, rgb(255, 44, 71) 0%, rgb(255, 9, 121) 100%);
  border-width: 1px;
  filter: drop-shadow(0px 4px 24px rgba(255, 255, 255, 0.25));
  color: white;
  font-size: 1rem;
}
.lmfao:hover {
  opacity: 0.7;
}
.lmfao p {
  margin: 0;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.z-top {
  z-index: 10;
}

.blur {
  position: absolute;
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.buttonSelected {
  border-width: 2px;
  border-style: solid;
  border-color: gray;
}

.phone-nav {
  position: absolute;
  left: 0;
  top: 5rem;
  width: 100%;
  padding-top: 0.8rem;
  background-color: white;
  z-index: 50;
  padding-bottom: 0.8rem;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .phone-nav {
    display: none;
  }
}
.phone-nav .first-buttons {
  display: flex;
  position: relative;
  gap: 0.8rem;
}
.phone-nav .first-buttons .button {
  text-decoration: none;
  background-color: rgb(250, 44, 71);
  color: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
.phone-nav .first-buttons .button:hover {
  opacity: 0.7;
}
.phone-nav .first-buttons .modules-button {
  margin-left: auto;
}

.underline {
  border-bottom: 0.2rem;
  border-bottom: 0.2rem solid rgb(250, 44, 71);
}

.s-separator {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.s-separator .s-left {
  flex-grow: 1;
  height: 0.25rem;
  background-color: rgb(250, 44, 71);
  border-radius: 0.25rem;
}
.s-separator h2 {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}
.s-separator .s-right {
  flex-grow: 1;
  height: 0.25rem;
  background-color: rgb(250, 44, 71);
  border-radius: 0.125rem;
}

#nav-bar {
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
  padding: 0.8rem 0rem 0.8rem 0rem;
}
#nav-bar h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

.nav-bar-2 {
  height: 4rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.nav-left {
  height: 100%;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.nav-left img {
  height: 4rem;
  border-radius: 0.5rem;
}

.nav-center {
  margin: 0;
  height: 100%;
  width: 9.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
}

.vertical-sep {
  width: 1px;
  background-color: rgb(0, 0, 0);
  height: 100%;
}

.log-but {
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}
.log-but:hover {
  opacity: 0.7;
}
.log-but .item-1 {
  height: 70%;
}
.log-but .item-2  {
  height: 30%;
}
.log-but img {
  max-width: 100%;
  max-height: 100%;
}

.nav-right {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgb(250, 44, 71);
  border-radius: 0.5rem;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
.nav-right:hover {
  opacity: 0.7;
}
.nav-right h4 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  color: rgb(255, 255, 255);
  margin: 0;
}
@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
}

.nav-right-phone {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  right: 0.8rem;
  top: 0;
  border-radius: 0.3rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(250, 44, 71);
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-right-phone {
    display: none;
  }
}
.nav-right-phone img {
  padding-left: 1rem;
  padding-right: 1rem;
}
.nav-right-phone:hover {
  opacity: 0.7;
}

.section-sep {
  height: 3rem;
}

#section-1 {
  height: 45rem;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap-reverse;
}
@media (max-width: 768px) {
  #section-1 {
    height: auto;
    margin-top: 4rem;
    margin-bottom: 1rem;
  }
}

.sec-1-right {
  width: 50%;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec-1-right {
    padding-right: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
.sec-1-right .test-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-1-right .phone-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .sec-1-right .phone-img {
    display: none;
  }
}
.sec-1-right .glider-test {
  position: relative;
}
.sec-1-right .glider-test div {
  position: relative;
  height: 100%;
  width: 100%;
}
.sec-1-right .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(closest-side, rgba(196, 196, 196, 0), rgb(255, 255, 255));
}

a {
  text-decoration: none;
}

.sec-1-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 0.8rem;
}
@media (max-width: 768px) {
  .sec-1-left {
    width: 100%;
    padding-right: 0;
  }
}
.sec-1-left .only-phone {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sec-1-left .only-phone {
    display: none;
  }
}
.sec-1-left .only-phone .phone-img {
  width: 65%;
  transform: translateX(-31%);
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .sec-1-left .only-phone .phone-img {
    display: none;
  }
}
.sec-1-left .only-phone .lap-img {
  position: absolute;
  width: 100%;
  right: -2rem;
  bottom: 0;
}
.sec-1-left .left-buttons {
  height: 5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sec-1-left .style-bar {
  height: 5rem;
  width: 0.8rem;
  background: rgb(250, 44, 71);
  border-radius: 0.4rem;
}
.sec-1-left .download-redirect {
  display: flex;
  border-radius: 2rem;
  background-color: rgb(250, 44, 71);
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
  text-decoration: none;
  height: 4rem;
  color: white;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.sec-1-left .download-redirect:hover {
  opacity: 0.7;
}
.sec-1-left .download-redirect h2 {
  margin-bottom: 0;
}
.sec-1-left .download-item {
  height: 5rem;
  width: 5rem;
  border-radius: 2.5rem;
  background-color: rgb(250, 44, 71);
  border-color: rgb(0, 0, 0);
  border-style: solid;
  border-width: 0rem;
  transition-timing-function: linear;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
.sec-1-left .download-item:hover {
  opacity: 0.7;
}
.sec-1-left .download-item:hover {
  opacity: 0.7;
  width: 5.6rem;
}

#section-2 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}
@media (max-width: 768px) {
  #section-2 {
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
  }
}

.outer-shape {
  padding-top: 75%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  position: relative;
}
.outer-shape .or-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
}
.outer-shape .shape {
  width: 100%;
  height: 100%;
  transform: rotate(-4deg);
  border-radius: 1rem;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
  background: rgb(255, 44, 71);
  background: linear-gradient(90deg, rgb(255, 44, 71) 0%, rgb(255, 9, 121) 100%);
}
.outer-shape .shape-img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  z-index: 5;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
.outer-shape .shape-img {
  position: absolute;
  top: 50%;
  left: 23%;
  transform: translate(-50%, -50%);
  width: 40%;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
.outer-shape .landscape-img {
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translate(50%, -12%);
  width: 80%;
  z-index: 5;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}

.s-2-r {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .s-2-r {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
}
.s-2-r h3 {
  position: relative;
  z-index: 6;
}
.s-2-r p {
  position: relative;
  z-index: 6;
  margin-bottom: 0.4rem;
}
.s-2-r .back-test-l {
  overflow: hidden;
  position: relative;
  padding: 0.8rem;
  border-radius: 1rem;
  margin-left: -50%;
  padding-left: 50%;
  border-color: rgb(250, 44, 71);
  border-style: solid;
  border-width: rgb(250, 44, 71);
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, rgb(255, 44, 71) 0%, rgb(255, 9, 121) 100%);
}
@media (max-width: 768px) {
  .s-2-r .back-test-l {
    margin-left: 0;
    padding-left: 0.8rem;
    margin-top: -50%;
    padding-top: 50%;
  }
}
.s-2-r .back-test-l img {
  opacity: 0.8;
}
.s-2-r .back-test-l .texture {
  height: 100%;
  width: 100%;
  position: absolute;
  background: url("https://www.kindpng.com/picc/m/170-1708187_halftone-texture-overlay-manga-texture-hd-png-download.png");
  background-blend-mode: multiply;
  opacity: 0.1;
}
.s-2-r .back-test-l-reverse {
  overflow: hidden;
  position: relative;
  padding: 0.8rem;
  border-radius: 1rem;
  margin-right: -50%;
  padding-right: 50%;
  border-color: rgb(250, 44, 71);
  border-style: solid;
  border-width: rgb(250, 44, 71);
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, rgb(255, 44, 71) 0%, rgb(255, 9, 121) 100%);
}
@media (max-width: 768px) {
  .s-2-r .back-test-l-reverse {
    margin-right: 0;
    padding-right: 0;
    padding-left: 0.8rem;
    margin-top: -50%;
    padding-top: 50%;
  }
}
.s-2-r .back-test-l-reverse img {
  opacity: 0.8;
}
.s-2-r .back-test-l-reverse .texture {
  height: 100%;
  width: 100%;
  position: absolute;
  background: url("https://www.kindpng.com/picc/m/170-1708187_halftone-texture-overlay-manga-texture-hd-png-download.png");
  background-blend-mode: multiply;
  opacity: 0.1;
}

#section-3 {
  position: relative;
  background: rgb(250, 44, 71);
  padding-top: 10rem;
  padding-bottom: 4rem;
}
#section-3 .spacing {
  padding-top: 3.5rem;
}
#section-3 svg {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 10rem;
  background: white;
}
#section-3 h2 {
  color: white;
}
#section-3 .left-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#section-3 .left-holder div {
  width: 100%;
}
#section-3 .left-holder div .h1  {
  color: white;
  transition-timing-function: linear;
  opacity: 1;
  transition: font-size 0.3s, width 0.3s, height 0.3s, translate 0.3s;
}
#section-3 .left-holder div .h1 :hover {
  transform: translateX(4rem);
  font-size: 15rem;
  opacity: 0;
}
#section-3 .img-holder {
  position: relative;
  height: 35rem;
  display: flex;
  overflow-x: auto;
  gap: 0.8rem;
  border-radius: 1rem;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  #section-3 .img-holder {
    height: auto;
  }
}
#section-3 .img-holder img {
  height: 100%;
  border-radius: 1rem;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  #section-3 .img-holder img {
    width: 95%;
  }
}
@media (max-width: 768px) {
  #section-3 .left-holder {
    display: none;
  }
}

#footer {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  background-color: #D6002F;
  padding-bottom: 0.8rem;
  padding-top: 0.8rem;
}
#footer .separator {
  width: 1px;
  height: 50%;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  background-color: white;
  display: inline-block;
}
@media (max-width: 768px) {
  #footer .separator {
    height: 1px;
    width: 3rem;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    margin-left: 3.8rem;
  }
}
#footer .download-icons {
  position: relative;
  display: flex;
  justify-content: center;
}
#footer .download-icons a {
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  #footer .download-icons a {
    display: block;
    text-align: center;
  }
}

.d-section {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  background-color: rgb(250, 44, 71);
  border-radius: 0.5rem;
  padding: 0.8rem;
  color: white;
}
.d-section .os-selector {
  display: flex;
  position: relative;
  gap: 0.8rem;
  flex-direction: row;
  margin-bottom: 1.6rem;
}
.d-section .os-button {
  background-color: white;
  color: rgb(250, 44, 71);
  border-radius: 0.5rem;
  text-align: center;
  padding: 0.8rem;
  width: 100%;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
.d-section .os-button:hover {
  opacity: 0.7;
}
.d-section .os-button h5 {
  margin-bottom: 0;
}
.d-section .how-to-install {
  position: relative;
  background-color: rgb(250, 44, 71);
  color: white;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.25);
  border-width: 1px;
  border-radius: 0.5rem;
  padding: 0.8rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.d-section .how-to-install .decorator {
  position: absolute;
  width: 0.35rem;
  height: 100%;
  background-color: white;
  margin-left: -0.8rem;
  margin-top: -0.8rem;
}
.d-section .how-to-install p {
  margin-bottom: 0;
}
.d-section .ios-tutorial {
  display: flex;
  position: relative;
  gap: 1.6rem;
  flex-direction: row;
  margin-top: 0.8rem;
  color: black;
}
@media (max-width: 768px) {
  .d-section .ios-tutorial {
    gap: 0.8rem;
    flex-direction: column;
  }
}
.d-section .ios-tutorial .vertical {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  transform: translate(0%, -50%);
}
@media (max-width: 768px) {
  .d-section .ios-tutorial .vertical {
    display: none;
  }
}
.d-section .ios-tutorial .m-holder-l {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.d-section .ios-tutorial .m-holder-l .d-ipa-div {
  width: 100%;
  color: white;
}
.d-section .ios-tutorial .m-holder-l .d-ipa-div p {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  margin-left: 0.5rem;
}
.d-section .ios-tutorial .m-holder-r {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.d-section .ios-tutorial .m-holder-r iframe {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}

#contest {
  padding: 0.8rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.test-img   {
  max-width: 100%;
  border-radius: 0.5rem;
  border-style: solid;
}

.purchase h5 {
  margin-bottom: 0.8rem;
}
.purchase p {
  margin-bottom: 0;
}
.purchase a {
  color: white;
  text-decoration: underline;
}

.flex-center {
  position: relative;
  display: flex;
  width: auto;
}
.flex-center .payment-holder {
  position: relative;
  display: flex;
  flex-direction: column;
}
.flex-center p {
  display: inline-block;
}

.download-but {
  margin-top: 0.5rem;
  color: rgb(250, 44, 71);
  background-color: white;
  position: relative;
  gap: 0.8rem;
  align-items: center;
  display: flex;
  flex-direction: row;
  border-radius: 0.5rem;
  padding: 0.8rem;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  cursor: pointer;
}
.download-but:hover {
  opacity: 0.7;
}

.complete-purchase h5 {
  margin-bottom: 0.8rem;
}
.complete-purchase p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.complete-purchase a {
  color: white;
  text-decoration: underline;
}

.paypal-button {
  background-color: rgb(0, 156, 222);
  text-decoration: none;
  color: white;
}

.a-link {
  color: white;
  text-decoration: none;
  text-decoration: underline;
}

.iframe-holder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modules-holder {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.modules-waring {
  padding: 0.3rem;
  background-color: rgb(250, 44, 71);
  color: white;
  border-radius: 0.5rem;
}

.small-button {
  background-color: rgb(250, 44, 71);
  padding: 0.6rem;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
}
.small-button:hover {
  opacity: 0.8;
  cursor: pointer;
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=styles.css.map */