  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

  .body-wrap {
  padding: 50px 0;
}
.btn-custom {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}
.btn-custom p {
  font-size: 20px;
  /* margin-top: 15px; */
  color: #414042;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.circle {
  width: 75px;
  height: 75px;
  /* background-color: #e74c3c; */
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-weight: bold;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
  /* left: -25px;
  top: 0; */
  /* transform: translateY(-50%); */
  border: 5px solid #fff;
  z-index: 2;
}
.circle.blue {
  background: #3498db;
}
.circle.orange {
  background: #e74c3c;
}

.circle.purple {
  background: #942582;
}
.circle.green {
  background: #79c422;
}
.circle.brown {
  background: #ce3871;
}
.circle.skyblue {
  background: #00a79d;
}

.image-long-arrow img {
  width: 70%;
  display: flex;
  justify-content: end;
  margin: 0 auto;
}
.btn-custom img {
  width: 100%;
  /* height: 360px; */
  justify-content: center;
  object-fit: cover;

  /* height: auto; */
}
a.btn{
  transition: 0.3s;
  text-decoration: none;
}
a.btn:hover{
  opacity: 0.8;
}
html body a.btn:focus,
html body a.btn:active{
  outline: none;
  box-shadow: none;
  border: none;
}
.button-container {
  position: relative;
}
.arroww {
  position: absolute;
  top: 50%;
  right: -9%;
  transform: translateY(-50%);
  width: 80px;
  height: 22px;
  width: 108px;
  height: 18px;
  z-index: 9999;
  top: calc(50% - 20px);
    right: -12%;
}
@media only screen and (max-width: 1399px) {
  .arroww{
    right: -20%;
  }
}
@media only screen and (max-width: 991px) {
  .circle{
    left: -5px;
    font-size: 18px;
    width: 55px;
    height: 55px
  }
  .arroww {
    position: absolute;
    top: calc(50% - 15px);
    width: 86px;
    height: 14px;
    right: -20%;
  }
  .btn-custom img{
    padding: 0 10px;
  }
  .btn-custom p {
    font-size: 16px;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .arroww,
  .image-long-arrow{
    display: none;
  }
  
}
@media only screen and (max-width: 575px) {
  .circle{
    left: -35px;
  }
  .btn-custom p {
    font-size: 18px;
    margin-top: 15px;
  }
}