
.text_image_banner{
    background: #DFFDFB;
    background-size: cover !important;
}

.tib_container {
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
}

img.tib_right_img {
    height: 100% ;
    max-width: 100% ;
    width: 100% ;
}

.col-60.tib_right {
    max-width: 50%;
    width:50%
}

.tib_left_img{
    max-width: 100% ;
    width: 100% ;
}

.col-40.tib_left {
    max-width: 40%;
    width: 40%;
    display: flex ;
    flex-direction: column ;
    align-items: center;
}

.tib_left_button {
    display: inline-block;
    background: #79CBE4;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    padding: 15px 30px;
    margin-top: 30px;
    text-decoration: none !important ;
    color: #fff ;
    line-height: 1.3em ;
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%) ;
}

/* Tablet */
@media(max-width: 1024px){
    .tib_container {
        padding: 0 30px;
    }

    .tib_left_button {
        font-size: 22px;
    }
}

/* Mobile */
@media(max-width: 769px){
    .tib_container {
        padding: 30px 20px 0 20px;
        flex-wrap: wrap;
    }

    .col-60.tib_right {
        width: 100%;
        max-width: 100%
    }
    
    .tib_right_img{
        height: 350px;
        object-fit: cover;
    }
    
    .col-40.tib_left {
        width: 100%;
        max-width: 100%;
    }

    .tib_left_button {
        font-size: 16px;
        display: block;
        width: 100%;
        margin: 30px 0;
    }
}