.get {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.get-bg {
  display: flex;
  width: calc(100% - 16px);
  aspect-ratio: 1424/800;
  border-radius: 12px;
  margin: 8px;
  overflow: hidden;
}
.get-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get-content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.get-content .h2 {
  font-size: 64px;
  font-family: Semi;
  line-height: 1.2;
  text-align: center;
  max-width: 760px;
}

.get-text {
  color: #4D5159;
  line-height: 1.5;
  text-align: center;
  max-width: 680px;
  margin: 24px auto 32px;
}

.get-bg-mobile {
  display: none;
}

@media (max-width: 1300px) {
  .get-content {
    top: 100px;
  }
  .get-text {
    margin: 24px auto;
  }
}
@media (max-width: 1100px) {
  .get-content {
    top: 20px;
  }
  .get-content .h2 {
    font-size: 28px;
  }
  .get-text {
    margin: 8px 0 24px;
    font-size: 14px;
    line-height: 1.4;
  }
  .get-bg {
    aspect-ratio: 1;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .get-bg {
    aspect-ratio: 360/440;
  }
  .get-bg-desktop {
    display: none;
  }
  .get-bg-mobile {
    display: flex;
  }
  .get-content {
    top: 48px;
  }
  .get-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
}
@media (max-width: 420px) {
  .get-btn {
    width: 100%;
    justify-content: space-between;
  }
}