.greatest {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    color: black;
     background-color: #fd; 
    background-image: url('../assets/bg/bg_greeting.jpg');
    /*background-image: url(../assets/bg/headerBG.jpg); */
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 350px; */
    box-shadow: 5px 0 5px 3px gray;
}

.greatest_title {
    display: flex;
    flex-direction: column;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    /* width: ; */
}

.greatest_title span {
    font-size: 35px;
    font-weight: 600;
    color: black;
}

.greatest_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
}

.greatest_logo img {
    width: 100%;
}



@media screen and (max-width: 460px) {
    .greatest {
        height: 150px;
    }
    .greatest_logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35%;
    }
    .greatest_logo img {
        width: 100%;
    }
    .greatest_title {
        display: flex;
        flex-direction: column;
        /* flex-direction: row; */
        justify-content: center;
        align-items: center;
        /* width: ; */
    }
    .greatest_title span {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: black;
    }
}