#vip {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    min-height: 100vh;
}

.container-vip {
    width: 100%;
    display: flex;
    gap: 50px;
    margin-top: 110px;
}

#text-content-vip {
    width: 100%;
    text-align: left;
    margin-left: 50px;
    height: auto;
    margin-top: 110px;
}

#text-content-vip h1 {
    font-family: "Aboreto", serif;
    font-size: 3.4rem;
    font-weight: 400;
    color: #DD1111;
    margin-bottom: 20px;
}

#text-content-vip p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

#img-vip {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: right;
}

#img-vip img {
    display: flex;
    flex-direction: column;
    align-items: right;
}

h2 {
    font-size: 1.5rem;
    color: #DD1111;
    font-weight: 400;
}

.btn-info a {
    text-decoration: none;
}

#btn_info {
    text-align: center;
    border: none;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-color: #C50B0B;
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: backgound-color .3s ease;
}

@media screen and (max-width: 1170px) {
    #img-vip{
        width: 70%;
    }

    .container-vip {
        flex-wrap: wrap;
        justify-content: center;
    }

    #text-content-vip {
        width: 100%;
        text-align: center;
        margin-left: 10px;
        height: auto;
        margin-top: 10px;
    }
    
    #text-content-vip h1 {
        font-family: "Aboreto", serif;
        font-size: 3rem;
        font-weight: 400;
        color: #DD1111;
        margin-bottom: 20px;
    }
    
    #text-content-vip p {
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #000000;
        text-align: justify;
        display: flex;
        flex-direction: column;
    }

    .btn-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }
}

@media screen and (max-width: 600px) {
    #img-vip{
        width: 100%;
    }
}