.section-3 {
  background-color: #29363B;
}

.section-3__container {
  max-width: 128rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 0; 
  color: #EBEBEB;
}

.section-3__heading{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-3__heading::after{
  content: "";
  background-color: #AC0000;
  width: 5rem;
  height: .4rem;
  margin-top: 1rem; 
}


.section-3__wrapper{
  display: flex;
  gap: 2rem; 
  /* justify-content: space-between; */
  flex-wrap: nowrap;
}
@media screen and (max-width: 56.25rem) {
  .section-3__wrapper{
    flex-wrap: wrap;
    justify-content: center;
  }
}


.section-3__img {
  flex: 0 1 60rem; 
  width: 60rem; 
  aspect-ratio: 4/3;
  padding: 50px;
  /* aspect-ratio: 100/95; */

  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(100,100,100,0.5); */

  transform: translateY(5rem);
  opacity: 0.1;
  transition: 1s ease;
}
@media screen and (max-width: 56.25rem) {
  .section-3__img {
    /* padding: 0 1rem; */
    width:100%;
    padding:0;
  }
}
.section-3__img .swiper{
  /* display:block !important; */
  width:100%;
  height:100%;
}

.section-3__img .swiper-button-prev{
  transform: translateX(-11px);
}
.section-3__img .swiper-button-next {
  transform: translateX(12px);
}

.section-3__content{
  flex: 0 1 76rem; 
  line-height: 1.6;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* transform: translateY(10rem); */
}

.section-3__heading{
  display: flex;
  align-items: center; 
}

.section-3__heading-logo{
  height: 3.8rem; 
}




.section-3__background{
  position: absolute;
  /* left: 0; */
  /* bottom: 1rem;  */
  font-weight: 600;
  font-size: 16rem;
  color: rgba(182,182,182,0.05);
  transform: rotate(-30deg)
  /* transform: translateY(18rem); */
}
@media screen and (max-width: 37.5rem) {
  .section-3__background{
    display: none;
  }
}