.content-home{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 30px;
}
.text-wrapper{
    flex: 1 1 50%;
    min-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.img-wrapper{
    flex: 1 1 48%;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 12px;
    max-width: 80%;
    height: 100%;
    border: 8px solid white;
    border-radius: 0 90px 0 90px;
    overflow: hidden;
     max-height: 400px;
    opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}
.title{
 font-family: 'Poppins', sans-serif;
 color: white;
 text-align: center;
}

.title > h3{
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 200;
    word-spacing:4px;
     opacity: 0;
     transform: translateX(100%);
  animation: slideInRight 1.5s ease-out forwards;
}

.title  h1{
    font-size: clamp(36px,5.8vw, 56px);
    font-weight: 900;
    font-family: 'Libre Bodoni', serif;
     opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 1.7s ease-out forwards;
}

.text-content{
    margin-top: 22px;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 200;
    padding: 0 24px;
}

.text-content  b{
    font-weight: 700;
}

.cta-button{
    max-width: 350px;
    margin-top: 32px;
    border: 1px solid white;
    border-radius: 50px;
     opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 2s ease-out forwards;
}

.cta-button  a {
    padding: 8px 16px;
    width: 100%;
    height: 100%;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

 .cta-button:hover {
    cursor: pointer;
    background-color: white;
}

.cta-button  a:hover {
    color: #2F5B44;
}


.cta-button  a > i {
    font-size: 16px;
}

.cta-button  a > span{
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}



@media (min-width: 1024px) {

  .content-home{
    gap: 0;
  }
    .text-wrapper{
        align-items: flex-start;
        padding-left: 40px;
    }

    .title{
        text-align: left;
    }
    .title > h3{
        height: 30px;
        font-size: 28px;
    }
    .title  h1{
        justify-content: flex-start;
        padding-top: 0;
        max-height: 70px;
        font-size: 60px;
    }
    .text-content{
        padding:0;
        text-align: left;
    }
    .img-wrapper{
       margin-top: 0;
       margin-right: 0;
       height: 600px;
       border-radius: 0 0 0 15rem;
       border: 16px solid white;
       border-right: none;
    }

    .img-wrapper > img{
        min-height: 400px;
        object-fit: cover;
    }
}

.fade-zoom-up {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  animation: fadeZoomUp ease-out forwards;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}

.slide-in-right {
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInRight ease-out forwards;
  animation-timeline: view();
  animation-range: entry 5% cover 15%;
}

.slide-in-left {
  transform: translateX(100%);
  opacity: 0;
  animation: slideInRight ease-out forwards;
  animation-timeline: view();
  animation-range: entry 15% cover 35%;
}

@keyframes fadeZoomUp {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}



@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

