/*-------------------- General --------------------*/

.container {
  max-width: 700px;
}

.container-fluid {
  max-width: 1000px;
}

body {
  background-image: url(../images/vertical-bg.svg);
  position: relative;
  overflow-x: hidden;
}

a,
p,
h1,
h2,
h3,
ul,
li {
  font-family: 'Manrope', sans-serif;
  color: #fff;
}

a,
a:active,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
}

h2 {
  font-size: 48;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.9);
}

h3 {
  font-size: 32;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

h4 {
  font-size: 18;
  font-weight: 700;
}

p,
li {
  font-size: 18;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

li {
  margin-bottom: 0;
}

/*-------------------- Reusable --------------------*/

.link,
.link:visited {
  display: inline-block;
  font-size: 16;
  color: #fff;
}

.link,
.link:visited {
  transition: color 0.15s;
}

.link--underlined {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.color--blue {
  color: #3E83EB;
}

.color--red {
  color: #ED4E4E;
}

.color--green {
  color: #589E95;
}

.font-weight--semibold {
  font-weight: 600;
}

.font-weight--bold {
  font-weight: 700;
}

.constrain-center {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.display--block {
  display: block;
}

.spacing-bottom--sm {
  margin-bottom: 16px;
}

.spacing-bottom {
  margin-bottom: 24px;
}

.spacing-bottom--md {
  margin-bottom: 40px;
}

.spacing-bottom--lg {
  margin-bottom: 80px;
}

.spacing-bottom--xl {
  margin-bottom: 160px;
}

.spacing-top--md {
  margin-top: 40px;
}

.spacing-top--xl {
  margin-top: 160px;
}

.full-img {
  width: 100%;
}

.hide-on-mobile, .hide-on-desktop {
  display: block;
}

@media (max-width: 600px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 600px) {
  .hide-on-desktop {
    display: none;
  }
}

/*-------------------- Page --------------------*/

.nav-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .nav-container {
    margin-top: 16px;
  }
}

.nav-item {
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.nav-container__items {
  display: flex;
}

.nav-item:first-child {
  margin-right: 24px;
}

.nav-item:last-child {
  margin-left: 24px;
}

.app-icon-container {
  margin-top: calc(50vh - 260px);
}

.app-icon {
  width: 64px;
}

.title {
  font-family: sans-serif;
  z-index: -100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(50vh - 120px);
  font-size: 160;
  font-weight: 700;
  letter-spacing: 0.3;
  /* -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #3E83EB; */
}

.intro-container {
  display: flex;
  flex-direction: row;
  margin-top: 12%;
}

.intro-container__desc {
  margin-top: 160px;
  flex: 1;
}

.intro-container__desc p {
  padding-right: 20px;
  padding-left: 40px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 18;
  font-weight: 400;
}

.intro-container__phone {
  flex: 1;
}

.intro-container__metadata {
  flex: 1;
}

.intro-phone {
  width: 375px;
}

.metadata {
  margin-top: 120px;
  padding: 40px;
}

.metadata__item {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.metadata__item--title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #3E83EB;
  color: rgba(255, 255, 255, 0.9);
}

.main-point {
  display: flex;
  flex-direction: column;
  border-left-style: solid;
  border-left-width: 4px;
  padding-left: 16px;
}

.main-point__label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}

.main-point__content {
  margin-bottom: 0;
}

.more-work-container {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.work-entry {
  display: flex;
  padding: 16px;
  border-radius: 4px;
  transition: background-color 0.15s;
}

.work-entry__content {
  margin-left: 24px;
}

.work-entry__icon {
  width: 48px;
  height: 48px;
}

.work-entry__heading {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
}

.work-entry__cta {
  margin-bottom: 0;
  line-height: normal;
}

@media (max-width: 800px) {
  .app-icon {
    width: 48px;
  }

  .title {
    display: none;
  }

  .intro-container {
    margin-top: 0;
    flex-direction: column;
    text-align: center;
  }

  .intro-container__desc {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .intro-container__desc p {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-phone {
    width: 100%;
    max-width: 375px;
  }

  .metadata {
    margin-top: 0;
    padding-top: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .metadata__item {
    margin-bottom: 4px;
  }

  .metadata__item--title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .spacing-top--xl {
    margin-top: 120px;
  }

  .spacing-bottom--xl {
    margin-bottom: 120px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 60;
  }
}
