

.service_card_1__wrapper {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.service_card_1__wrapper:nth-child(n+2){
  margin-top: 10rem;
}

.service_card_1__textBox {
    width: 40%;
}


.service_card_1__imgBox {
    width: 60%;
    overflow: hidden;
  border-radius: 4rem;
  transition:1s all;
  height: 38rem;
}

.service_card_1__textBox h3{
margin-bottom: 2rem;
}

.service_card_1__textBox__li {
  margin-bottom: 2rem;
  list-style: square; 
  margin-left: 2rem;
}

.service_card_1__textBox__li p{
  
}

.service_card_1__imgBox img{
  width: 100%;
  height: 100%;
    height: 40rem;
    object-fit: cover;
    border-radius: 4rem;
  transition:1s all;
}

.service_card_1__imgBox img:hover {
    transform:scale(1.2,1.2);
  transition:1s all;

}





{# CTA #}
.service_card_1__textBox__cta {
  position: relative;
  transition: all 0.3s;
  z-index: 0;
}

.service_card_1__textBox__ctaText {
 position: relative;
    color: #000;
    border-radius: 0.5rem;
    padding: 1.5rem 6rem;
    display: inline-block;
    z-index: 2;
    overflow: hidden;
    border: 1px solid;
    background: #fff;
    transition: all 0.5s ease-in-out;
}

.service_card_1__textBox__ctaText:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  background: #1A4472;
  z-index: -1000;
}

.service_card_1__textBox__cta:hover .service_card_1__textBox__ctaText {
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.service_card_1__textBox__cta:hover .service_card_1__textBox__ctaText:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

@media screen and (max-width :1024px){
  .service_card_1__wrapper {
    gap: 2rem;
}
  
  .service_card_1__textBox {
    width: 60%;
}
  
  .service_card_1__imgBox {
    width: 40%;
}


@media screen and (max-width :768px){
  .service_card_1__wrapper {
    flex-direction: column;
    align-items: center;
}
  
  .service_card_1__textBox {
    width: 100%;
}
  
  .service_card_1__imgBox {
    width: 100%;
    height: 30rem;
}
  
  .service_card_1__imgBox img {
    height: 20rem;
}
  
  .service_card_1__wrapper:nth-child(n+2) {
    margin-top: 0rem;
}
  }

