.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;
  flex-direction: column;
}

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

.arshine2-foot_top .tit h5 {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

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

.arshine2-foot_top a {
  background: var(--color-primary);
  color: #fff;
  border-radius: 5px;
  font-size: clamp(14px, 0.83vw, 16px);
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  margin-top: 25px;
}

.arshine2-foot_top a:hover {
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

@media(max-width:991px){
  .arshine2-foot_top {
    height: 250px;
  }
}