.home-objective-container{
    padding: 0% 5% 8% 5%;
}

.home-objective-title{
    font-family:"Mona Sans", sans-serif;
    font-size: 50px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
    text-align: center;
}

.home-objective-flex{
    display: flex;
    gap: 4em;
}

.home-objective-left{
    width: 60%;
}

.home-objective-right{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-objective-frame{
    position: relative;
    height: 500px;
    width: 100%;
}

.home-objective-left img{
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 35px;
}

.home-objective-right p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--wp--preset--color--dark);
    margin: 0;
    font-size: 18px;
}

.home-objective-right h3{
    font-family: 'Mona sans', sans-serif;
    font-size: 25px;
    line-height: 90%;
    font-weight: bold;
    color: var(--wp--preset--color--orange);
}

/* Wide screens */
@media (min-width:1600px) {
    
.home-objective-frame{
    position: relative;
    height: 600px;
    width: 100%;
}

.home-objective-right h3{
    margin-top: 2em;
}
}

/* Tablet landscape */
@media (max-device-width:1024px) and (min-device-width:767px) and (orientation:landscape){
    
}


@media (max-device-width: 1376px) and (min-device-width: 767px) and (orientation: landscape){
   

  .home-objective-right h3{
        font-size: 23px;
    }

    .home-objective-right p{
        font-size: 16px;
    }

    
}
/* Tablet portrait */

@media (max-device-width:1024px) and (min-device-width:768px) and (orientation:portrait){
    .home-objective-frame {
        position: relative;
        height: 600px;
        width: 100%;
    }
}

@media (max-device-width:820px) and (min-device-width:768px) and (orientation:portrait){
    .home-objective-flex{
        flex-direction: column;
        gap:2em;
    }

    .home-objective-container {
    padding: 0% 5% 10% 5%;
}

    .home-objective-left{
        width: 100%;
    }

    .home-objective-right{
        width: 100%;
    }
}

/* Mobile portrait */

@media (max-device-width: 767px) and (orientation: portrait) {

    .home-objective-flex{
        flex-direction: column;
    }

    .home-objective-left, .home-objective-right{
        width: 100%;
    }

    .home-objective-frame{
        height: 250px;
    }

    .home-objective-frame img{
        border-radius: 18px;
    }

    .home-objective-title{
        font-size: 30px;
    }

    .home-objective-right h3{
        font-size: 20px;
        text-align: center;
        white-space: nowrap;
    }

    .home-objective-right p{
        font-size: 14px;
        text-align: center;
    }

  }
/* Mobile landscape */

@media (max-device-width: 768px) and (orientation: landscape) {
        .home-objective-flex{
        flex-direction: column;
    }

    .home-objective-left, .home-objective-right{
        width: 100%;
    }

    .home-objective-frame{
        height: 250px;
    }

    .home-objective-frame img{
        border-radius: 18px;
    }

    .home-objective-title{
        font-size: 30px;
    }

    .home-objective-right h3{
        font-size: 20px;
        text-align: center;
        white-space: nowrap;
    }

    .home-objective-right p{
        font-size: 14px;
        text-align: center;
    }
}

/* Long mobile portrait */
@media (max-device-width:767px) and (min-device-height:720px) and (orientation:portrait){
  
}