.two-banners__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.two-banners__item {
    width: 100%;
}

.two-banners__item:first-child {
    margin-bottom: 30px;
}

.two-banners__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.two-banners__details h3,
.two-banners__details p {
    text-align: center;
}

.two-banners__item-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.two-banners__item-img--wrapper {
    height: 40vh;
    overflow: hidden;
}

.two-banners__item .two-banners__item-img {
    transition: transform 1.2s ease;
}

.two-banners__item:hover .two-banners__item-img {
    transform: scale(1.2);
}

@media screen and (min-width: 767px) {
    .two-banners__item {
        width: calc(50% - 15px);
    }
    
    .two-banners__item:first-child {
        margin-bottom: 0;
    }
    
    .two-banners__item-img--wrapper {
        height: 60vh;
    }
    
    .two-banners__details p {
        padding: 0 20px;
    }
}
