section.banners{
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 50px 0;
    background: linear-gradient(125deg, #18b359 40%, rgb(66 169 127) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.banners img{
    width: 3vw;
}

section.banners h1{
    color: #fff;
    font-size: 3vw;
    margin: 10px 0 0 0;
}

section.banners h2{
    color: #fff;
    font-weight: 300;
    font-size: 1.6vw;
    margin: 10px 0;
}

section.banners a{
    text-decoration: none;
}

section.banners button{
    margin: 20px auto 0 auto;
    width: 100%;
    max-width: 20vw;
    height: 3vw;
    max-height:45px;
    color: #13BD79;
    border: none;
    background-color: #fff;  
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: 1vw;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

section.banners button:hover{
    transition: 0.3s;
    color: #fff;
    border: 2px solid #fff;  
    background-color: transparent;

}

section.banners button i{
    margin: 0 0 0 10px;
}

@media screen and (max-width: 1025px) {
      section.banners img {
        width: 6vw;
    }

    section.banners h1 {
       font-size: 4vw;
    }
    
    section.banners h2 {
        font-size: 2.6vw;
    }

    section.banners button {
        max-width: 30vw;
        height: 5vw;
        font-size: 2vw;
    }
}

@media screen and (max-width: 500px) {
    section.banners img {
        width: 10vw;
    }

    section.banners h1 {
       font-size: 8vw;
    }
    
    section.banners h2 {
        font-size: 5vw;
    }

    section.banners button {
        max-width: 60vw;
        height: 10vw;
        font-size: 4vw;
    }
}