@font-face {
  font-family: "NowAltMedium";
  src: url("assets/fonts/NowAltMedium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NowAltRegular";
  src: url("assets/fonts/NowAltRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NowAltBold";
  src: url("assets/fonts/NowAltBold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
h1 {
  font-family: "NowAltBold", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.content {
  width: 100%;
}
.content > div {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1470px) {
  .content > div {
    width: calc(100% - 30px);
  }
}
.content > .medium-width {
  width: 1090px;
}
@media (max-width: 1090px) {
  .content > .medium-width {
    width: calc(100% - 40px);
  }
}

#header {
  padding-top: 46px;
  background: #194789;
}
@media (max-width: 1090px) {
  #header {
    padding-top: 30px;
  }
}
#header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
}
@media (max-width: 1090px) {
  #header > div {
    padding-left: 20px;
  }
  #header > div img {
    height: 34px;
  }
}
#header #menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1090px) {
  #header #menu {
    display: none;
  }
}
#header #menu > a {
  color: #FAFAFA;
  font-family: "NowAltBold", sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  margin-right: 36px;
  text-decoration: none;
}
#header #menu #login-button .button {
  height: 40px;
  width: 137px;
  background-color: #F5E971;
  border-radius: 37px;
  box-shadow: 0 10px 30px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#header #menu #login-button a {
  line-height: 42px;
  text-decoration: none;
  font-family: "NowAltBold", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #490606;
  height: 100%;
}
#header #bars {
  margin-right: 15px;
  padding-top: 3px;
}
#header #bars .bar {
  height: 3px;
  width: 30px;
  background: white;
  margin-bottom: 3px;
}
#header #mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 0;
  transition: height 0.2s;
}
#header #mobile-menu.expanded {
  height: 90px;
}
#header #mobile-menu a {
  color: #FAFAFA;
  font-family: "NowAltBold", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  text-decoration: none;
  padding-right: 15px;
}

#title {
  background: #194789;
  height: 713px;
  text-align: center;
}
@media (max-width: 1090px) {
  #title {
    height: 317px;
  }
}
#title h1 {
  margin-top: 130px;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -1.2px;
  line-height: 54px;
  color: #00FFD8;
}
@media (max-width: 1090px) {
  #title h1 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -0.6px;
    width: 80%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
#title p {
  color: #FAFAFA;
  font-size: 24px;
  line-height: 31px;
  width: 1008px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1090px) {
  #title p {
    width: calc(100% - 40px);
    font-size: 16px;
    line-height: 21px;
  }
}

#lang {
  position: absolute;
  right: 20px;
  top: 0px;
  justify-content: flex-end !important;
}
#lang a {
  color: #FAFAFA;
  font-family: "NowAltBold", sans-serif;
  font-size: 12px;
  line-height: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
  opacity: 1;
}
#lang a.active {
  opacity: 0.5;
}

#video {
  background: linear-gradient(white, #FFF9EE, #FFF9EE);
  height: 325px;
}
@media (max-width: 1090px) {
  #video {
    height: 180px;
  }
}
#video > div {
  position: relative;
  top: -305px;
  height: 653px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  background: #fff;
}
@media (max-width: 1090px) {
  #video > div {
    top: -32px;
    width: calc(100% - 30px);
    padding-top: 57%;
    height: 0;
  }
}
#video video {
  width: 1088px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
}
@media (max-width: 1090px) {
  #video video {
    width: 100%;
  }
}

#arguments {
  background: #FFF9EE;
  height: 500px;
  color: #232762;
  padding-top: 110px;
}
@media (max-width: 1090px) {
  #arguments {
    height: 1370px;
    padding-top: calc(60vw - 180px);
  }
}
#arguments > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#arguments > div .argument-block {
  width: 500px;
  display: flex;
}
@media (max-width: 1090px) {
  #arguments > div .argument-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: calc(100% - 40px);
  }
}
#arguments > div .argument-block .left {
  width: 160px;
  text-align: center;
}
@media (max-width: 1090px) {
  #arguments > div .argument-block .left img {
    width: 50px;
  }
}
#arguments > div .argument-block .right {
  width: 330px;
}
@media (max-width: 1090px) {
  #arguments > div .argument-block .right {
    width: 100%;
  }
}
#arguments > div .argument-block .right h1 {
  font-size: 26px;
  line-height: 30px;
}
@media (max-width: 1090px) {
  #arguments > div .argument-block .right h1 {
    font-size: 24px;
    line-height: 24px;
    width: 230px;
    margin: auto;
    margin-top: 18px;
  }
}
#arguments > div .argument-block .right p {
  line-height: 24px;
  font-size: 16px;
}
@media (max-width: 1090px) {
  #arguments > div .argument-block .right p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

#nav-balls, #nav-balls-mobile {
  position: absolute;
  bottom: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#nav-balls > .nav-ball-container, #nav-balls-mobile > .nav-ball-container {
  width: 100px;
  display: flex;
  justify-content: space-between;
}
#nav-balls > .nav-ball-container div, #nav-balls-mobile > .nav-ball-container div {
  width: 10px;
  height: 10px;
  background: #a23af4;
  opacity: 0.5;
  border-radius: 15px;
  display: inline-block;
}
#nav-balls > .nav-ball-container div.active, #nav-balls-mobile > .nav-ball-container div.active {
  opacity: 1;
}
#nav-balls #nbc-image div, #nav-balls #nbc-image-mobile div, #nav-balls-mobile #nbc-image div, #nav-balls-mobile #nbc-image-mobile div {
  background: #21adde;
}
#nav-balls .hidden, #nav-balls-mobile .hidden {
  display: none;
}

.hidden {
  display: none;
}

#nav-balls-mobile {
  bottom: 20px;
}

#explanations {
  background: #3F056D;
  overflow: hidden;
  height: 745px;
  position: relative;
}
#explanations.image-search, #explanations.reco {
  transition: background 0.4s;
  background: #235160;
}
#explanations.image-search #nav-line, #explanations.image-search #nav-line-outer, #explanations.reco #nav-line, #explanations.reco #nav-line-outer {
  transition: background 0.4s;
  background: #235160;
}
#explanations.image-search .nav-ball, #explanations.reco .nav-ball {
  transition: background 0.4s;
  background: #565CA2;
}
#explanations #explanations-box {
  position: relative;
}
#explanations > div {
  height: 100%;
  display: flex;
}
@media (max-width: 1090px) {
  #explanations > div {
    display: none;
  }
}
#explanations #nav-line, #explanations #nav-line-outer {
  height: 100px;
  width: 100%;
  z-index: 100;
  background: #3F056D;
  border-bottom: 1px solid #565ca2;
  position: absolute;
  left: 0;
}
#explanations #nav-line a, #explanations #nav-line-outer a {
  color: inherit;
}
#explanations #nav-line a:active, #explanations #nav-line-outer a:active {
  color: inherit;
}
#explanations #nav-line .nav-ball, #explanations #nav-line-outer .nav-ball {
  transition: box-shadow 0.2s, background 0.1s;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #565ca2;
  left: 3px;
  bottom: -7px;
  cursor: pointer;
}
#explanations #nav-line .nav-ball.active, #explanations #nav-line-outer .nav-ball.active {
  background: white;
}
#explanations #nav-line .nav-ball-small-container, #explanations #nav-line-outer .nav-ball-small-container {
  position: absolute;
  left: 18px;
  width: 100px;
  bottom: -6px;
  display: flex;
  justify-content: flex-start;
}
#explanations #nav-line .nav-ball-small-container .nav-ball-small, #explanations #nav-line-outer .nav-ball-small-container .nav-ball-small {
  transition: box-shadow 0.2s, background 0.1s;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background: #565ca2;
  margin-left: 37px;
  flex-shrink: 0;
  cursor: pointer;
}
#explanations #nav-line .nav-ball-small-container .nav-ball-small.active, #explanations #nav-line-outer .nav-ball-small-container .nav-ball-small.active {
  background: white;
}
#explanations #nav-line .nav-text, #explanations #nav-line-outer .nav-text {
  position: absolute;
  height: 100%;
  color: white;
  font-size: 20px;
  font-weight: 500;
  font-family: "NowAltMedium", sans-serif;
  letter-spacing: -0.18px;
  width: 200px;
  display: flex;
  align-items: flex-start;
}
#explanations #nav-line .nav-text .nav-label, #explanations #nav-line-outer .nav-text .nav-label {
  opacity: 0.5;
}
#explanations #nav-line .nav-text.active .nav-label, #explanations #nav-line-outer .nav-text.active .nav-label {
  opacity: 1;
}
#explanations #nav-line .nav-label, #explanations #nav-line-outer .nav-label {
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  display: flex;
  align-items: center;
  z-index: 10000;
}
#explanations #nav-line .nav-label img, #explanations #nav-line-outer .nav-label img {
  position: relative;
  top: 15px;
  width: 20px;
  height: auto;
  display: inline-block;
  margin-right: 15px;
}
#explanations #nav-line #nav-text-search, #explanations #nav-line-outer #nav-text-search {
  top: 0;
  left: 10px;
}
#explanations #nav-line #nav-image-search, #explanations #nav-line-outer #nav-image-search {
  top: 0;
  left: 210px;
}
#explanations #nav-line #nav-autocomplete, #explanations #nav-line-outer #nav-autocomplete {
  top: 0;
  left: 410px;
}
#explanations #nav-line #nav-similar-products, #explanations #nav-line-outer #nav-similar-products {
  top: 0;
  left: 610px;
}
#explanations #explanation-pictures {
  width: 1090px;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  top: -3px;
}
#explanations #explanation-pictures > img {
  position: relative;
  left: 0px;
  top: 0;
  transform: scale(0.6);
  transform-origin: top left;
}
#explanations #explanation-pictures .explanation-picture {
  position: absolute;
  transition: opacity 0.3s;
  opacity: 0;
}
#explanations #explanation-pictures .explanation-picture.active {
  opacity: 1;
}
#explanations #explanation-pictures .explanation-picture-image {
  position: absolute;
  opacity: 0;
}
#explanations #explanation-texts {
  overflow: scroll;
  position: relative;
  top: 0px;
  transition: top 0.4s;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
}
#explanations #explanation-texts .explanation-text {
  padding-top: 173px;
  transition: opacity 0.3s;
  scroll-snap-align: start;
  display: block;
  opacity: 0.5;
  position: relative;
  width: 430px;
  height: 745px;
  box-sizing: border-box;
  left: 660px;
  top: 0;
}
#explanations #explanation-texts .explanation-text.active {
  display: block;
  opacity: 1;
}
#explanations #explanation-texts .explanation-text.first {
  display: block;
}

.explanation-style {
  width: 100% !important;
}
.explanation-style h1 {
  color: #00FFD8;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.96px;
  line-height: 48px;
  margin-top: 0;
}
@media (max-width: 1090px) {
  .explanation-style h1 {
    font-size: 28px;
    line-height: 30px;
  }
}
.explanation-style p {
  color: white;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1090px) {
  .explanation-style p {
    font-size: 16px;
    line-height: 24px;
  }
}

#explanations-mobile {
  background: #3F056D;
  color: #FAFAFA;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100vw;
  overflow-x: hidden;
}
#explanations-mobile .nav-line-mobile {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
  width: 100% !important;
  margin-top: 30px;
  height: 60px;
  width: 100%;
  display: flex;
  border-top: 1px solid #565ca2;
}
#explanations-mobile .nav-line-mobile.active .nav-ball {
  background: white;
}
#explanations-mobile .nav-line-mobile.active .nav-text {
  left: 100px;
}
#explanations-mobile .nav-line-mobile > div {
  position: relative;
  top: 21px;
}
#explanations-mobile .nav-line-mobile .nav-ball {
  transition: box-shadow 0.2s, background 0.1s;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #565ca2;
  top: -27px;
  left: 3px;
}
#explanations-mobile .nav-line-mobile .nav-text {
  position: relative;
  transition: left 0.2s;
  width: 220px;
  flex-shrink: 0;
}
#explanations-mobile .nav-line-mobile .nav-text .nav-label {
  height: 100%;
  color: white;
  font-size: 20px;
  font-weight: 500;
  font-family: "NowAltMedium", sans-serif;
  letter-spacing: -0.18px;
}
#explanations-mobile #explanation-texts-mobile {
  display: flex;
  flex-direction: column;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  overflow-y: visible;
  overflow-x: scroll;
  height: 100%;
  text-align: center;
}
#explanations-mobile #explanation-texts-mobile > div {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: calc(100vw - 40px);
  scroll-snap-align: center;
}
#explanations-mobile #explanation-texts-mobile .explanation-picture-mobile-container {
  height: 280px;
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#explanations-mobile #explanation-texts-mobile .explanation-picture-mobile {
  height: 250px;
}

#ep1 {
  transform: scale(0.65) translate(-127px, -84px) !important;
}

#ep2 {
  transform: scale(0.65) translate(-153px, -130px) !important;
}

#ep3 {
  transform: scale(0.65) translate(-104px, -105px) !important;
}

#ep4 {
  transform: scale(0.68) translate(-141px, -108px) !important;
}

#ep5 {
  transform: scale(0.62) translate(40px, -66px) !important;
}

#ep6 {
  transform: scale(0.6) translate(47px, -54px) !important;
}

#ep7 {
  transform: scale(0.6) translate(-18px, -69px) !important;
}

#ep8 {
  transform: scale(0.45) translate(-17px, 320px) !important;
}

#ep9 {
  transform: scale(0.45) translate(-17px, 320px) !important;
}

#ep10 {
  transform: scale(0.39) translate(-8px, 482px) !important;
}

#ep10m {
  width: 90%;
  max-width: 440px;
  height: auto !important;
}

#explanation-texts::-webkit-scrollbar {
  display: none;
}

#explanation-texts {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.noscroll {
  overflow: hidden;
}

#features {
  background: #FFF9EE;
  height: 650px;
  color: #232762;
}
@media (max-width: 1090px) {
  #features {
    height: 659px;
  }
}
#features > div {
  padding-top: 96px;
}
@media (max-width: 1090px) {
  #features > div {
    padding-top: 40px;
    width: calc(100% - 40px);
  }
}
#features > div > h1 {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1.2px;
  margin: 15px 0;
}
@media (max-width: 1090px) {
  #features > div > h1 {
    text-align: center;
    font-size: 30px;
    letter-spacing: -0.72px;
    line-height: 35px;
  }
}
#features > div > p {
  width: 454px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1090px) {
  #features > div > p {
    width: 100%;
  }
}
#features > div > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 48px;
}
#features > div > div .feature-block {
  width: 290px;
  margin-top: 15px;
}
@media (max-width: 1090px) {
  #features > div > div .feature-block {
    width: 45%;
    text-align: center;
  }
}
#features > div > div .feature-block .left {
  height: 50px;
}

#compare {
  height: 857px;
  background: white;
  padding-top: 61px;
  padding-bottom: 90px;
}
@media (max-width: 1090px) {
  #compare {
    height: auto;
    padding-bottom: 20px;
  }
}
@media (max-width: 1090px) {
  #compare > div {
    width: 100%;
  }
}
#compare .text-image-based {
  display: flex;
  justify-content: flex-end;
  color: #979797;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  letter-spacing: 0.86px;
  margin-bottom: 50px;
}
#compare .text-image-based #text-based {
  position: relative;
  right: 220px;
}
#compare .text-image-based #image-based {
  position: relative;
  right: 70px;
}
#compare .text-image-based img {
  position: relative;
  top: 21px;
}
#compare .text-image-based-mob {
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 11px;
  border: none;
  color: #979797;
}
#compare h1 {
  font-size: 50px;
  letter-spacing: -1.2px;
  color: #232762;
}
@media (max-width: 1090px) {
  #compare h1 {
    text-align: center;
    font-size: 30px;
    letter-spacing: -0.72px;
    line-height: 35px;
    margin-bottom: 40px;
  }
}
#compare #table-us {
  width: 279px;
  pointer-events: none;
}
@media (max-width: 1090px) {
  #compare #table-us {
    width: auto;
    position: absolute;
    z-index: 10;
    background: white;
  }
}
#compare #table-them {
  width: 800px;
}
@media (max-width: 1090px) {
  #compare #table-them {
    position: relative;
    left: 132px;
    width: auto;
  }
}
#compare #tables {
  display: block;
  width: 100%;
}
@media (max-width: 1090px) {
  #compare #tables {
    width: calc(100% - 20px);
    margin-left: 20px;
    overflow-x: auto;
  }
}
#compare table {
  display: inline-block;
  font-size: 18px;
  line-height: 50px;
  color: #232762;
  border-collapse: collapse;
}
#compare table .mobile-only {
  height: 40px;
  border: none !important;
}
@media (max-width: 1090px) {
  #compare table img {
    width: 20px;
  }
}
#compare table .aleph {
  color: #75CFC1;
}
@media (max-width: 1090px) {
  #compare table {
    font-size: 12px;
    line-height: 38px;
  }
}
#compare table thead {
  font-family: "NowAltBold", sans-serif;
}
#compare table thead > tr {
  border-bottom: 1px solid #232762;
}
@media (max-width: 1090px) {
  #compare table thead {
    line-height: 20px;
    font-size: 14px;
  }
}
@media (max-width: 1090px) {
  #compare table thead th {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
  }
}
#compare table tbody td {
  text-align: center;
}
#compare table tbody th {
  text-align: left;
  font-weight: normal;
}
@media (max-width: 1090px) {
  #compare table tbody th {
    min-width: 130px;
  }
}
#compare table tr {
  height: 56px;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 1090px) {
  #compare table tr {
    border: none;
  }
}
#compare table td {
  width: 1%;
}
@media (max-width: 1090px) {
  #compare table td {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
  }
}

#contact {
  height: 394px;
  background: #1D686F;
}
@media (max-width: 1090px) {
  #contact {
    height: 340px;
  }
}
#contact > div {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1090px) {
  #contact > div {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
  }
}
#contact > div h1 {
  color: #00FFD8;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.96px;
  line-height: 48px;
  width: 429px;
}
@media (max-width: 1090px) {
  #contact > div h1 {
    width: 100%;
    font-size: 30px;
    letter-spacing: -0.72px;
    line-height: 35px;
    margin-top: 49px;
    margin-bottom: 35px;
  }
}
#contact > div #submitted-message {
  height: 50px;
  max-width: 608px;
  color: white;
  font-family: "NowAltMedium", sans-serif;
  text-indent: 27px;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
}
@media (max-width: 1090px) {
  #contact > div #submitted-message {
    width: 100%;
  }
}
@media (min-width: 1090px) {
  #contact > div #submitted-message {
    border-radius: 37px;
    background-color: rgba(255, 255, 255, 0.27);
    box-shadow: 0 10px 30px 15px rgba(0, 0, 0, 0.1);
    line-height: 50px;
  }
}
#contact > div .form-container {
  height: 50px;
  width: 608px;
  max-width: 95%;
  font-family: Arial, sans-serif;
  position: relative;
}
@media (max-width: 1090px) {
  #contact > div .form-container {
    height: 200px;
  }
}
#contact > div .form-container .input {
  width: 100%;
  height: 50px;
  border-radius: 37px;
  background-color: rgba(255, 255, 255, 0.27);
  box-shadow: 0 10px 30px 15px rgba(0, 0, 0, 0.1);
  border: 0;
  text-indent: 27px;
  color: #FFFFFF;
  font-size: 18px;
  padding: 0;
}
#contact > div .form-container .input::placeholder {
  color: white;
}
@media (max-width: 1090px) {
  #contact > div .form-container .input {
    height: 40px;
    width: 100%;
    font-size: 14px;
  }
}
#contact > div .form-container .button {
  height: 100%;
  width: 231px;
  border-radius: 37px;
  background-color: #F5E971;
  box-shadow: 0 10px 30px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  color: #490606;
  font-family: "NowAltMedium", sans-serif;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  cursor: pointer;
}
@media (max-width: 1090px) {
  #contact > div .form-container .button {
    height: 40px;
    width: 100%;
    position: relative;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
  }
}

input:focus {
  outline: none;
  box-shadow: 0 0 1px 2px #ddd;
}

#footer {
  background: #FFF9EE;
  height: 120px;
}
#footer div, #footer a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  line-height: 120px !important;
  color: #490606;
  font-family: "NowAltMedium", sans-serif;
  letter-spacing: 0.4px;
}
@media (max-width: 1090px) {
  #footer div, #footer a {
    flex-direction: column-reverse;
    line-height: 32px !important;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

.fab {
  line-height: 120px !important;
  font-size: 24px;
  margin-left: 15px;
  position: relative;
  bottom: 3px;
}
.fab.leftmost {
  margin-left: 25px;
}

@media (max-width: 1090px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1090px) {
  .mobile-only {
    display: none !important;
  }
}

#logo {
  display: flex;
}

#cursor {
  width: 1px;
  height: 30px;
  position: relative;
  border-right: 2px solid white;
  right: 3px;
  top: 17px;
}
@media (max-width: 1090px) {
  #cursor {
    height: 21px;
    top: 12px;
    right: 2px;
  }
}

@media (max-width: 1090px) {
  .social {
    display: none !important;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1.6s step-start 0s infinite;
  -webkit-animation: blink 1.6s step-start 0s infinite;
}

#contact-message {
  color: #FAFAFA;
  text-align: right;
  margin-top: 20px;
  font-weight: bold;
}
@media (max-width: 1090px) {
  #contact-message {
    text-align: center;
  }
}

#information {
  color: white;
  text-align: right;
  margin-top: 20px;
}

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