.box-absolute {
  position: absolute;
}

.small-box-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFC522;
  border: 1px solid #fff;
}

.data-wrapper {
  position: absolute;
  bottom: 5%;
  padding: 0% 12% 0% 12%;
  width: 100%;
  /* cursor: pointer; */
}

.data-wrapper .title{
  font-size: 2vw;
  font-weight: bolder;
}

.data-wrapper .align-icon{
  margin: auto 0;
}

.small-box-wrapper .small-box-position {
  top: 20%;
  left: 15%;
}

.small-box-wrapper .title {
  font-size: 3.5vw;
  font-weight: bolder;
  line-height: 3.5vw;
  text-transform: uppercase;
  width: 70%;
  margin-bottom: 2%;
}

.small-box-wrapper .sub-title {
  font-size: 1vw;
  font-weight: bolder;
  line-height: 1vw;
  text-transform: uppercase;
  margin-bottom: 10%;
}

.dl-but-wrapper{
  display: flex;
}

.linkbut{
  background: linear-gradient(135deg, #212529 50%, transparent 50%) ;
  color: #f8f9fa;
  font-size: 0.8vw;
  width: 35%;
  transition:all .5s ease-out;
  position: relative;
  text-transform: uppercase;
}

.linkbut:after{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
 /* background: linear-gradient(135deg, transparent 50%, #212529 0%) !important; */
  z-index: -1;
}

.linkbut, .linkbut:after{
  background-size: 300% !important;
  background-position: 99% !important;
  transition: 1s;
  
}

.linkbut:hover, .linkbut:hover:after{
  background-position: 0 !important;
  border-color: #212529 !important;
  color: #f8f9fa !important;
}

.box-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.vw-2{
  width: 2vw;
}


@media only screen and (max-width: 992px) {
  
  .small-box-wrapper .title {
    margin-bottom: 10%;
  }

  .small-box-wrapper .title {
    font-size: 6vw;
    line-height: 6vw;
  }
  .linkbut {
    font-size: 1.8vw;
    width: 75%;
  }

}

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

}

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

}



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

  .data-wrapper .title {
    font-size: 4vw;
    font-weight: bolder;
  }
  
  .vw-2 {
    width: 4vw
  }

}