:root {
  --grey-10: #f7f8fa;
  --grey-70: #5e5f69;
  --grey-60: #858794;
  --grey-80: #4d4e54;

  --black-12: rgba(0, 0, 0, 0.12);
  --black-80: rgba(0, 0, 0, 0.8);

  --blue-60: #3876f2;
  --blue-70: #0E4473;

  --white: #ffffff;
}

.types-container {
  width: 100vw;
  height: 90vh;
  background-color: #F3F1ED;
  padding: 0 2.5rem;
  overflow: hidden;
}
.types-wrapper {
  max-width: 960px;
  margin: auto;
}
.types-content {
  position: relative;
  padding-top: 8.75rem;
  z-index: 10;
}
.types-content-logo {
  width: 3rem;
  height: 3rem;
  margin-bottom: 24px;
}
.types-content-text {
  font-size: 3.265rem;
  letter-spacing: -3.05px;
}
.types-content-text--description {
  color: var(--blue-70);
  -webkit-text-fill-color: var(--blue-70);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  transform: translateX(-6px);
  position: relative;
}
.types-content-text--main {
  color: var(--blue-70);
  font-weight: 700;
}
.types-content-intro-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 3rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  background-color: var(--blue-70);
  color: white;
  -webkit-text-fill-color: white;
  font-weight: 700;
  font-size: 1rem;
}
.types-content-app-link {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.types-content-app-link--icon {
  width: 8.125rem;
  height: 2.5rem;
}
.types-content-app-link--android {
  margin-left: 1.25rem;

}
.types-content-image {
  top: 0;
  z-index: -10;
  transform: scale(1.2) translate(15%, -62%);
}
.types-content-image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 950px) {
  .types-content-image {
    transform: scale(1.5) translate(10%, -50%);
  }
}

/* from mobile */
@media screen and (max-width: 768px){

  .types-content {
    padding-top: 10vh;
  }

  .types-content-text {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: -1.6px;
  }

  .types-content-intro-link {
    width: 12.5rem;
    height: 2.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    background-color: var(--blue-70);
    color: white;
    -webkit-text-fill-color: white;
    font-weight: 700;
    font-size: 0.75rem;
  }

  .types-content-app-link {
    flex-direction: column;
    align-items: flex-start;
  }
  .types-content-app-link--android {
    margin-left: 0;
    margin-top: 1.25rem;
  }
  .types-content-image {
    transform: scale(1.5) translate(10%, -50%);
  }
}

@media screen and (max-width: 670px) {
  .types-content-image {
    transform: scale(2) translate(5%, -40%);
  }
}

@media screen and (max-width: 512px){
  .types-content {
    padding-top: 8vh;
  }
  .types-content-image {
    transform: scale(3) translate(2%, -20%);
    opacity: 0.8;
  }
}