.header{
    background: url('../img/headers/visa.webp') center/cover no-repeat;
}

.header-entrance{
    background: url('../img/headers/entrance.webp') center/cover no-repeat;
}

.visa-card{
    display: flex;
    gap: 1rem;
    border-radius: .5rem;
    overflow: hidden;
    width: 100%;
    box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 18rem;
}

.visa-img{
    /* width: 25rem; */
    min-height: 18rem;
    width: 45%;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .visa-card{
        flex-direction: column;
    }
    .visa-img{
        width: 100%;
        height: 200px;
    }
}