@font-face {
  font-family: "EuclidSquare-Light";
  src: url(/fonts/EuclidSquare/EuclidSquare-Light.ttf);
}
@font-face {
  font-family: "EuclidSquare-Regular";
  src: url(/fonts/EuclidSquare/EuclidSquare-Regular.ttf);
}
@font-face {
  font-family: "EuclidSquare-Medium";
  src: url(/fonts/EuclidSquare/EuclidSquare-Medium.ttf);
}
@font-face {
  font-family: "JetbrainsMono-Bold";
  src: url(/fonts/JetbrainsMono/JetbrainsMonoBold.ttf);
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}
html, body {
  position: absolute;
  width: 100%;
  height: fit-content;
  margin: 0;
  bottom: 0;
  top: 0;
  overflow-x: hidden;
}
.header-section .header {
  position: relative;
  font-family: "EuclidSquare-Light", Arial;
  font-size: 80px;
}
.header-section {
  position: relative;
  left: 30px;
  top: 150px;
  height: 1000px;
}
.nav-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.logo {
  position: relative;
  background-image: url(/images/elements/offly.png);
  background-size: cover;
  left: 0;
  top: 0;
  width: 130px;
  height: 80px;
  float: left;
}
.header-background {
  position: absolute;
  width: 100%;
  height: 700px;
  left: 0;
  right: 0;
  top: 320px;
  pointer-events: none;
}
.header-section .text {
  position: absolute;
  top: 140px;
  font-family: "EuclidSquare-Light", Arial;
  font-size: 28px;
  max-width: 700px;
}
.button {
  position: absolute;
  width: 160px;
  padding: 10px;
  font-family: "EuclidSquare-Light", Arial;
  font-size: 22px;
  color: #000 !important;
  background: #f6efec;
  border: 3px solid #000;
  border-radius: 30px;
  transition: background .1s ease-out;
  -webkit-tap-highlight-color: transparent;
}
.button::before {
  content: "";
  opacity: 0;
  transition: opacity .05s ease-out;
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border-radius: 35px;
  background: linear-gradient(45deg, #57a4d6, #2397d1, #d4eeff);
  background-size: 400% 400%;
  animation: gradient 2s linear infinite;
  z-index: -1;
}
.button:hover::before {
  opacity: 1;
}
.button:hover {
  border: 3px solid transparent;
}
.button:active {
  background: #c6d9ec;
  border: 3px solid transparent;
}
.nav-bar .button {
  right: 20px;
  float: right;
  top: 15px;
}
.button.get-started-button {
  padding: 6px;
  font-size: 20px;
  margin-left: 8px;
}
@media only screen and (max-width:1200px) {
  .header-section .header {
    font-size: 70px;
  }
  .header-section .text {
    top: 120px;
  }
}
@media only screen and (max-width:890px) {
  .header-section .header {
    font-size: 60px;
  }
  .header-section .text {
    font-size: 26px;
    top: 130px;
    max-width: 650px;
  }
  .header-background {
    height: 600px;
  }
}
@media only screen and (max-width:770px) {
  .header-section .text {
    font-size: 22px;
    top: 120px;
    max-width: 600px;
  }
  .header-background {
    height: 500px;
  }
}
@media only screen and (max-width:670px) {
  .header-section .header {
    font-size: 50px;
  }
}
@media only screen and (max-width:610px) {
  .header-section {
    left: 20px;
  }
  .button.get-started-button {
    padding: 6px;
    font-size: 14px;
    margin-left: 8px;
    width: 120px;
  }
}
@media only screen and (max-width:560px) {
  .header-section .header {
    font-size: 40px;
    font-family: "EuclidSquare-Regular", Arial;
  }
  .header-section .text {
    top: 100px;
    font-size: 20px;
    max-width: 400px;
  }
  .button {
    width: 140px;
    padding: 8px;
    font-size: 18px;
    border: 2px solid #000;
    border-radius: 26px;
  }
}
@media only screen and (max-width:430px) {
  .header-section .header {
    font-size: 40px;
  }
  .header-section .text {
    top: 110px;
    font-size: 20px;
    max-width: 400px;
  }
  .button:hover {
    border-width: 2px;
  }
  .button:active {
    border-width: 2px;
  }
  .header-background {
    height: 400px;
    top: 340px;
  }
}
.info-box {
  width: 230px;
  height: 230px;
  padding: 8px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 11px 34px 0 rgba(120, 120, 128, 0.2);
}
.info-box::before {
  content: "";
  transition: opacity .05s ease-out;
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border-radius: 35px;
  background: linear-gradient(45deg, #57a4d6, #2397d1, #d4eeff);
  background-size: 400% 400%;
  animation: gradient 3s linear infinite;
  z-index: -1;
}
.info-box .title {
  position: relative;
  font-size: 22px;
  font-family: "EuclidSquare-Medium", Arial;
  max-width: 95%;
  margin-top: 20px;
  padding-left: 30px;
}
.info-box .title .arrow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 34px;
  background-image: url(/images/elements/arrow.png);
  background-size: 100%;
  transform: translateY(-50%);
}
.info-box .description {
  position: relative;
  font-size: 16px;
  font-family: "EuclidSquare-Regular", Arial;
  max-width: 98%;
  margin-top: 10px;
}
.info-box {
  position: relative;
  left: 100px;
  margin: 30px;
}
.bubbles {
  position: relative;
  width: 250px;
  top: 400px;
  right: 450px;
  float: right;
}
a {
  color: #509fef;
}
.body-section .section1 {
  position: relative;
  width: 380px;
  float: left;
}
.body-section .section2 {
  position: absolute;
  float: right;
  right: 150px;
  width: 800px;
  text-align: center;
  margin-top: 100px;
}
.body-section .section2 .header {
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 70px;
}
.body-section .section2 .text {
  margin-top: 30px;
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 20px;
}
@media only screen and (max-width:1400px) {
  .body-section .section2 {
    right: 100px;
    width: 800px;
  }
}
@media only screen and (max-width:1300px) {
  .body-section .section2 {
    right: 70px;
    width: 700px;
  }
}
@media only screen and (max-width:1200px) {
  .body-section .section2 {
    right: 30px;
    width: 600px;
  }
  .body-section .section2 .header {
    font-size: 60px;
  }
  .body-section .section2 .text {
    margin-top: 30px;
    font-size: 16px;
  }
  .bubbles {
    width: 200px;
    top: 300px;
    right: 300px;
  }
}
@media only screen and (max-width:1030px) {
  .body-section .section2 {
    width: 500px;
  }
  .bubbles {
    width: 180px;
    top: 320px;
    right: 200px;
  }
}
@media only screen and (max-width:900px) {
  .body-section .section2 {
    right: 50px;
    width: 450px;
  }
  .body-section .section1 {
    transform: scale(0.8);
    transform-origin: top left;
  }
  .body-section .section2 .header {
    font-size: 50px;
  }
  .body-section .section2 .text {
    font-size: 14px;
  }
  .bubbles {
    width: 200px;
    right: 180px;
  }
}
@media only screen and (max-width:800px) {
  .body-section .section2 {
    right: 30px;
  }
  .body-section .section1 {
    transform: scale(0.7);
  }
  .body-section .section2 .header {
    font-size: 45px;
  }
  .body-section .section2 .text {
    margin-top: 25px;
    font-size: 12px;
  }
  .bubbles {
    width: 150px;
    top: 300px;
    right: 190px;
  }
}
@media only screen and (max-width:740px) {
  .body-section .section2 {
    right: 20px;
    width: 350px;
  }
}
@media only screen and (max-width:640px) {
  .body-section .section2 {
    width: 300px;
  }
  .body-section .section2 .header {
    font-size: 35px;
  }
  .body-section .section2 .text {
    font-size: 10px;
  }
  .bubbles {
    width: 140px;
    right: 110px;
  }
  .info-box {
    left: 30px;
  }
}
@media only screen and (max-width:540px) {
  .body-section .section2 {
    position: absolute;
    width: 300px;
    float: none;
    right: 0;
    left: 50%;
    margin-left: -150px;
    margin-top: -170px;
  }
  .body-section .section1 {
    transform: scale(0.8);
    transform-origin: top center;
    width: 100%;
  }
  .body-section .section2 .header {
    font-size: 35px;
  }
  .body-section .section2 .text {
    font-size: 13px;
  }
  .bubbles {
    display: none;
  }
  .info-box {
    position: relative;
    left: 50%;
    margin-left: -120px;
  }
}
.section-wrapper-1 {
  position: relative;
  width: 100%;
  height: 800px;
}
.body-section .section3 {
  position: relative;
}
.waves-background {
  position: relative;
  width: 100%;
  background: url(/images/elements/waves.png);
  background-size: 100% 100%;
  height: 800px;
  z-index: 0;
}
.waves-box {
  position: absolute;
  width: 500px;
  height: 400px;
  left: 50%;
  top: 50%;
  margin-left: -264px;
  margin-top: -190px;
  background: #f6efec;
  border-radius: 30px;
  padding: 14px;
  z-index: 0;
}
.waves-box .header {
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 40px;
  margin-top: 30px;
}
.waves-box ol {
  list-style: none;
  counter-reset: num;
  margin-top: 20px;
}
.waves-box ol li {
  counter-increment: num;
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 20px;
  margin-bottom: 10px;
}
.waves-box ol li::before {
  content: counter(num);
  position: relative;
  display: inline-block;
  color: #000;
  font-family: "EuclidSquare-Medium", Arial;
  font-size: 20px;
  background: #f4e9c5;
  border-radius: 100%;
  border: 3px solid #000;
  width: 30px;
  height: 30px;
  text-align: center;
  align-content: center;
  margin-right: 10px;
}
@media only screen and (max-width:1000px) {
  .waves-background {
    background-size: 1000px 100%;
  }
}
@media only screen and (max-width:600px) {
  .waves-box {
    width: 400px;
    height: 350px;
    margin-left: -214px;
    margin-top: -180px;
  }
}
@media only screen and (max-width:450px) {
  .waves-background {
    height: 600px;
  }
  .waves-box {
    transform: scale(0.75);
  }
}
.section4 {
  position: relative;
  top: 100px;
  padding-left: 50px;
  background-image: url(/images/elements/silk.png);
  background-size: 100% 600px;
  background-repeat: no-repeat;
  height: 100%;
  white-space: nowrap;
  pointer-events: none;
}
.section4 .header {
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 50px;
}
.section4 .text {
  font-family: "EuclidSquare-Regular", Arial;
  font-size: 20px;
  margin-top: 30px;
}
.window-box {
  position: relative;
  width: 500px;
  height: 300px;
  border-radius: 20px;
  font-family: "JetbrainsMono-Bold", monospace, Arial;
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 11px 34px 0 rgba(120, 120, 128, 0.2);
  margin-top: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.window-box.terminal {
  background: linear-gradient(150deg, #4f515c 50%, #474953 50%);
  color: #fff;
}
.window-box.editor {
  background: linear-gradient(150deg, #f7f8ff 50%, #e8ebf7 50%);
  color: #cd6b52;
}
.terminal span, .editor span {
  display: block;
  margin-top: 6px;
}
.circle {
  position: relative;
  display: inline-block;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 100%;
  margin: 0;
}
.circle.circle-red {
  background: #ec3c1d;
}
.circle.circle-yellow {
  background: #fdea3b;
}
.circle.circle-green {
  background: #98de29;
}
.section-wrapper-3 {
  height: 700px;
}
@media only screen and (max-width:1220px) {
  .section4 .window-box {
    transform-origin: top left;
    transform: scale(0.8);
  }
  .section4 .window-box.editor {
    margin-left: -120px;
  }
  .section4 .header {
    font-size: 40px;
  }
}
@media only screen and (max-width:1000px) {
  .section4 .window-box {
    transform-origin: top left;
    transform: scale(0.7);
  }
  .section4 .window-box.editor {
    margin-left: -170px;
  }
  .section4 {
    padding-left: 30px;
  }
  .section4 .text {
    margin-top: -40px;
  }
}
@media only screen and (max-width:850px) {
  .section4 .window-box {
    transform-origin: top left;
    transform: scale(0.6);
  }
  .section4 .window-box.editor {
    margin-left: -230px;
  }
  .section4 .header {
    font-size: 35px;
  }
  .section4 .text {
    margin-top: -70px;
  }
}
@media only screen and (max-width:720px) {
  .section4 .window-box {
    transform-origin: center top;
    transform: scale(0.7);
    display: block;
  }
  .section4 .window-box.editor {
    margin-top: -70px;
  }
  .section4 .window-box {
    left: 50%;
    margin-left: -270px !important;
  }
  .section4 .header {
    text-align: center;
    font-family: "EuclidSquare-Medium", Arial;
  }
  .section4 .text {
    max-width: 100%;
    font-size: 16px;
    white-space: pre-wrap;
    text-align: center;
    padding: 0 20px;
  }
  .section4 {
    padding: 0 !important;
    background-size: 720px 720px;
  }
  .section-wrapper-3 {
    height: 850px;
  }
}
@media only screen and (max-width:460px) {
  .section4 .window-box {
    transform: scale(0.6);
  }
  .section4 .window-box.editor {
    margin-top: -110px;
  }
  .section4 .header {
    font-size: 26px;
  }
}
.footer-section {
  margin-top: 20px;
  text-align: center;
  font-family: "EuclidSquare-Regular", Arial;
  padding-bottom: 50px;
}
.footer-section .links a {
  margin-right: 10px;
  font-size: 14px;
}
.footer-section .icon {
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -4px;
  margin-right: 3px;
}
::selection {
  background: rgba(157, 157, 212, 0.4);
}