.arshine2-foot_top {
  position: relative;
  height: 300px;
}

.arshine2-foot_top .background {
  width: 100%;
  aspect-ratio: 5;
  object-fit: cover;
}

.arshine2-foot_top .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  gap: 25px;
  flex-direction: column;
}

.arshine2-foot_top .tit {
  flex: 1;
  text-align: center;
}

.arshine2-foot_top .tit h5 {
  font-size: clamp(24px, 1.88vw, 36px);
  color: #fff;
  line-height: 1;
}

.arshine2-foot_top .tit p {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  margin: 17px 0 0;
}

.arshine2-foot_top a {
  padding: 10px 25px;
  background: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(14px, 0.94vw, 18px);
  color: #fff;
  display: inline-block;
  text-align: center;
  border: 2px solid #b5b5b5;
  border-top: none;
  transition: transform 0.3s ease;
}

.arshine2-foot_top a:hover {
  transform: translateY(-3px);
}

@media screen and (max-width:992px) {

  .arshine2-foot_top .background {
    width: 100%;
    aspect-ratio: 3;
  }

}

