.connectivity {
  display: block;
}

.connectivity__card {
  position: relative;
  height: calc(-96px + 100vh);
  margin: 48px 24px;
  border-radius: 32px;
  overflow: hidden;
}

.connectivity__card picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.connectivity__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.connectivity__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  opacity: 0.9;
  background: linear-gradient(rgba(0, 0, 0, 0) 72.92%, rgba(0, 0, 0, 0.33) 100%);
  pointer-events: none;
}

.connectivity__header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.connectivity__title {
  padding-top: 64px;
  color: var(--color-on-dark);
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}

.connectivity__text {
  width: calc(-542px + 100vw);
  position: absolute;
  bottom: 0;
  padding-bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.connectivity__describe {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-on-dark);
}

.connectivity__note {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .connectivity__card {
    height: calc(-28px + 100vh);
    margin: 14px 12px;
  }

  .connectivity__header {
    width: 100%;
  }

  .connectivity__title {
    padding-top: 48px;
  }

  .connectivity__text {
    width: calc(100% - 28px);
    padding-bottom: 48px;
  }

  .connectivity__describe {
    font-size: 13px;
    line-height: 21px;
    font-family: var(--font-base);
  }

  .connectivity__note {
    font-size: 11px;
    line-height: 16px;
  }
}
