.our-features {
  position: relative;
  padding: 83px 0;
}
.our-features .bg-wrp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.our-features .bg-wrp img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.our-features .bg-wrp.mobile img{display: none;}

.our-features .col-md-12 > h2 {
  color: var(--yellow);
  text-align: center;
  margin-bottom: 31px;
}
.our-features .col-md-12 > p {
  color: var(--white2);
  text-align: center;
  margin: 0;
}
.our-features .services-wrp {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  column-gap: 32px;
  row-gap: 51px;
  justify-content: center;
}
.our-features .services-wrp .services-in {
  width: calc((100% - 32px) / 2);
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1);
}
.our-features .services-wrp .services-in h4 {
  text-align: center;
  color: var(--yellow);
  margin-bottom: 10px;
}
.our-features .services-wrp .services-in p {
  color: var(--white2);
  margin: 0;
}
.our-features .bg-wrp.mobile {
    display: none;
}

@media (min-width: 1200px){
    .our-features .container {
        max-width: 1191px;
    }
}

@media (max-width: 1199px){
    .our-features {
        padding: 70px 0;
    }
    .our-features .col-md-12 > h2 {
        margin-bottom: 25px;
    }
    .our-features .services-wrp {
        row-gap: 40px;
    }
}

@media (max-width: 992px){
    .our-features {
        padding: 60px 0;
    }
    .our-features .services-wrp{
        column-gap: 25px;
    }
    .our-features .services-wrp .services-in {
        width: calc((100% - 25px) / 2);
    }
}

@media (max-width: 767px){
    .our-features {
        padding: 30px 0 63px;
    }
    .our-features .col-md-12 > h2 {
        margin-bottom: 15px;
    }
    .our-features .col-md-12 > p {
        line-height: 30px;
    }
    .our-features .services-wrp {
        gap: 30px;
        margin-top: 30px;
    }
    .our-features .services-wrp .services-in {
        width: 100%;
        padding: 24px 15px;
        text-align: center;
    }
    .our-features .services-wrp .services-in h4 {
        margin-bottom: 4px;
        line-height: 40px;
    }
    .our-features .services-wrp .services-in p {
        line-height: 32px;
    }
    .our-features .bg-wrp.mobile {
        display: block;
    }
    .our-features .bg-wrp.desktop img{display: none;}
    .our-features .bg-wrp.mobile img{display: block;}

}