.banner-section{
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 100px auto;
}

.banner-container:first-child{
    background-image: url(../contents/place-header.jpg);
    background-position-x: 40%;
}
.banner-container:nth-child(3){
    background-image: url(../contents/taura-livestock-banner.png);
}
.banner-container:nth-child(2){
    margin: 0px 50px;
    background-image: url(../contents/place5.jpg);
}

.banner-container{
    background-position: center;
    background-size: 100%;
    transition: 0.5s;
}

.banner-container a {
    color: white;
}
.banner-container a:hover {
    text-decoration: none;
}

.banner-container > div {
    background: #00000094;
    box-shadow: black 0px 0px 15px 8px;
    padding: 20px;
    margin: 20px;
    transition: 0.5s;
}

.banner-container:hover{
    transform: scale(2);
    transition: 0.5s;
    cursor: pointer;
}

.banner-container:hover > div{
    margin: 0px;
    transition: 0.5s;
}

@media only screen and (max-width: 600px) {
    .banner-section{
        flex-direction: column;
        padding: 0px 20px;
    }
    .banner-container:hover {
        transform: scale(1);
    }
    .banner-container:nth-child(2) {
        margin: 50px 0px;
    }
    .banner-container {
        background-size: 100% auto;
        width: 300px;
    }
    .banner-container h3{
        text-align: center;
    }
}