.vision {
    position: relative;
    max-width: 90vw;
    margin: 150px auto 90px auto;
}

.vision img {
    width: 100%;
    display: block;
    border-radius: 10px;
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

.vision .textoverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 15px;
    width: 95%;
    height: auto;
}

.vision .textoverlay h2 {
    font-size: 4rem;
    font-weight: bold;
}

.textoverlay button {
    display: block;
    margin: 20px auto;
    padding: 12px 22px;
    background: rgb(8, 233, 158);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 20px;
}

.textoverlay button:hover {
    background: #0cbe80;
}

.textoverlay button a {
    text-decoration: none;
    color: #0a2906;
}

@media(max-width:1440px) {
    .vision .textoverlay h2 {
        font-size: 3rem;
    }

    .textoverlay button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .vision {
        margin-bottom: 60px;
        margin-top: 0px;
    }

    .vision .textoverlay h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vision img {
        height: 35vh;
    }

    .vision .textoverlay h2 {
        font-size: 2rem;
    }

    .textoverlay button {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .vision img {
        height: 30vh;
    }

    .vision .textoverlay h2 {
        font-size: 1.5rem;
    }

    .vision {
        margin-top: 15%;
    }
}