.arshine2-foot_top {
  position: relative;
  /* height: 400px; */
  background-size: cover;
  background-position: center;
  aspect-ratio: 1920/400;
}

.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: 2%;
}

.arshine2-foot_top .tit {
  flex: 1;
}

.arshine2-foot_top .tit h5 {
  font-size: clamp(24px, 2.19vw, 42px);
  color: #fff;
  line-height: 1.2;
  margin-top: 20px;
  text-shadow: 2px 2px 2px #333;
}

.arshine2-foot_top .tit p {
  font-size: clamp(14px, 1.25vw, 24px);
  color: #fff;
  text-transform: capitalize;
  text-shadow: 2px 2px 2px #333;
}

.arshine2-foot_top a {
  background: #ffbc5c;
  border-radius: 50px;
  font-size: clamp(14px, 1.04vw, 20px);
  color: #333;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  padding: 12px 50px;
}

.arshine2-foot_top a:hover {
  background:  #fdd8a1;
  
  color:#333;
}

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

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

  .arshine2-foot_top {
    /* height: 300px; */
  }


  .arshine2-foot_top a {
  padding: 10px 40px;
  }
}

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

  .arshine2-foot_top {
    /* height: 200px; */
  }

  .arshine2-foot_top .tit h5 {
    margin-top: 0;
    font-size: 14px;
  }

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

  .arshine2-foot_top .container{flex-direction:column;gap: 2px;}

  .arshine2-foot_top a {
    padding: 4px 22px;
    font-size: 8px;
    margin: 0;
  }
}