#content {
  align-items: center;
}
@media screen and (max-width: 767px) {
  #content {
    margin: 2vh 0;
    padding: 0;
    width: 100%;
  }
}

h1 {
  font-size: clamp(2vw, 4rem, 5vw);
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

img {
  max-width: 100%;
  border-radius: 10px;
}

h2 {
  font-size: clamp(1.7rem, 1.7rem, 2vh);
  margin-bottom: clamp(1vh, 3rem, 2vh);
  color: #57d2db;
}
@media screen and (max-width: 767px) {
  h2 {
    text-align: left;
    font-size: 1.5rem;
  }
}

.glowPhone {
  position: relative;
}
.glowPhone::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 88%;
  border-radius: 20px;
  box-shadow: 5px 8px clamp(15px, 2vw, 45px) #2d6fd2;
  background: transparent;
  z-index: -1;
}

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  margin: 2vw 0 2rem;
  min-height: 60vh;
  perspective: 1000px;
}
#hero .phoneContainer {
  height: 100%;
  position: absolute;
  top: -5%;
  left: 50%;
  z-index: -1;
  width: 15vw;
  min-width: 300px;
}
#hero .phoneContainer.leftPhoneContainer {
  transform: translateX(-130%) rotateZ(-20deg) rotateY(45deg) skewX(-13deg) skewY(20deg);
}
#hero .phoneContainer.rightPhoneContainer {
  transform: translateX(30%) rotateZ(20deg) rotateY(-45deg) skewX(13deg) skewY(-20deg);
}
#hero img {
  position: absolute;
  width: 100%;
  height: 100%;
}
#hero .featureList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: auto 0;
  z-index: 20;
}
#hero .featureList a {
  border: 1px solid #b9b1b1;
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 1vw, 3rem);
  color: #00ff88;
  margin: 1vw 0;
  font-weight: bold;
}
#hero .featureList a:hover, #hero .featureList a:focus {
  color: #57d2db;
  border-color: #eee;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #hero .featureList a {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  #hero .phoneContainer {
    width: 25vw;
    min-width: 25vw;
  }
}
@media screen and (max-width: 767px) {
  #hero {
    overflow: hidden;
    max-width: 100vw;
  }
  #hero .featureList a {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  #hero .phoneContainer {
    position: absolute;
    top: 0;
    left: 50%;
    filter: brightness(0.9);
  }
  #hero .phoneContainer.leftPhoneContainer {
    transform: translate(-102%) rotateY(30deg);
  }
  #hero .phoneContainer.rightPhoneContainer {
    transform: translate(2%) rotateY(-30deg);
  }
}

.fullHeight {
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 1200px;
  min-height: 800px;
}
.fullHeight .twoColumnInfo {
  width: 90%;
  padding: 2rem 0;
}
.fullHeight .twoColumnInfo .text {
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
.fullHeight .twoColumnInfo .text p {
  font-size: clamp(1rem, 2rem, 1.1vw);
  letter-spacing: 1.6px;
  line-height: clamp(0.5vh, 2.5rem, 2.8vh);
  margin: 1rem 0;
}
.fullHeight .twoColumnInfo .imageRow {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  perspective: 1000px;
  z-index: 1;
}
.fullHeight .twoColumnInfo .imageRow .tilted {
  transform: rotateY(-15deg) rotateX(7deg) rotateZ(3deg);
}
.fullHeight.desktopSection .twoColumnInfo .text {
  margin: auto auto clamp(5%, 30vh, 15%);
  height: fit-content;
  padding: 2rem;
}
.fullHeight.desktopSection .twoColumnInfo .imageRow img {
  width: 200%;
  max-width: 80vw;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .fullHeight.desktopSection .twoColumnInfo {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fullHeight.desktopSection {
    position: relative;
    margin: 3rem 0;
    height: 75vh;
    padding: 0 1rem;
    min-height: unset;
  }
  .fullHeight.desktopSection:last-of-type {
    margin-bottom: 5rem;
  }
  .fullHeight.desktopSection .twoColumnInfo {
    width: 100%;
    margin: auto;
  }
  .fullHeight.desktopSection .twoColumnInfo > div {
    width: 90%;
  }
  .fullHeight.desktopSection .twoColumnInfo.rightAlign .imageRow {
    right: -30%;
  }
  .fullHeight.desktopSection .twoColumnInfo.rightAlign .text {
    margin-right: auto;
  }
  .fullHeight.desktopSection .twoColumnInfo.leftAlign .imageRow {
    left: -30%;
  }
  .fullHeight.desktopSection .twoColumnInfo.leftAlign .imageRow .tilted {
    transform: rotateY(15deg) rotateX(7deg) rotateZ(-3deg);
  }
  .fullHeight.desktopSection .twoColumnInfo.leftAlign .text {
    margin-left: auto;
  }
  .fullHeight.desktopSection .twoColumnInfo .text {
    padding: 1rem;
    margin: 0rem;
  }
  .fullHeight.desktopSection .twoColumnInfo .text p {
    font-size: 1rem;
    line-height: 1.1rem;
  }
  .fullHeight.desktopSection .twoColumnInfo .imageRow {
    position: absolute;
    top: 0;
  }
  .fullHeight.desktopSection .twoColumnInfo .imageRow img {
    max-width: 75vw;
  }
}

.hover {
  background-color: #141926;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.6666666667);
  border: 1px solid #777;
}

.registrationButton {
  border: 1px solid #b9b1b1;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: clamp(1rem, 1vw, 3rem);
  color: #00ff88;
  background: #141926;
  margin: 1vh 0;
  font-weight: bold;
  z-index: 10;
}
.registrationButton:hover, .registrationButton:focus {
  color: #57d2db;
  border-color: #eee;
}
@media screen and (max-width: 767px) {
  .registrationButton {
    width: 90%;
  }
}/*# sourceMappingURL=public.css.map */