body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url("../img/newBanner1.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section_1{
    height:100vh;
    width: 100%;
    position: relative;
}

.social_1{
    position: absolute;
    top: 40%;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    width: 40px;
    height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1;
}

.social_1 img{
    width: 25px;
    height: 25px;
    transition: .6s;
}
.social_1 img:hover{
    width: 27px;
    height: 27px;
}

.cta_1{
    position: absolute;
    left: 50%;
    top: 60%;
    padding: 5px 10px;
    text-align: center;
    box-shadow: 12px 5px 7px 5px rgba(0, 0, 0, 0.9);
    transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #002e62cb;
    backdrop-filter: blur(5px);
    border-radius: 2px;
    border: 1px solid white;
    transition: 1.2s;
    /* animation: muda_cor 1.5s infinite alternate; */
}

    @keyframes muda_cor{
        0%{
            border: 1px solid #653600;
            background-color: rgba(255, 255, 255, 0.4);
        }
        100%{
            background-color: rgba(255, 255, 255, 0.7);
        }
    }
.cta_1:hover{
    background-color: rgba(255, 255, 255, .8);
    box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.9);
    border: 1px solid #002d62;

}

.cta_1 a{
    width: 200px;
    color: rgba(225, 224, 224, 0.856);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 15px;
    transition: .3s;
    /* font-family: 'silk_italic_medium'; */
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400;
}
.cta_1 a:hover{color: #002e62;}
.cta_1 img{
    margin-top: 2px;
    height: 0px;
}

.box_text_1{
    position: absolute;
    left: 50%;
    bottom: 11%;
    transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid #002d62;
    border-radius: 9px;
    padding: 2px 5px;
    text-align: center;
    line-height: 30px;
    /* font-family: 'silk_italic_medium'; */
    color: #002d62;
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
}

.whatsapp_btn{
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 3;
    transition: .3s;
    opacity: .8;
}
.whatsapp_btn:hover{
    transform: scale(1.1);
}


@media screen and (max-width:500px){
    /* body{
        background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url("../img/g3.jpg");
        background-size: 107% auto;
        background-position: 0 10vh;
    } */

    body{
        background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url("../img/newBanner.jpg");
        background-position: 50% 90%;
        background-repeat: no-repeat;
        background-size: 150%;
        background-attachment: fixed;
    }

    .social_1{
        top: 50%;
        left: unset;
        right: 10px;
        display: none;
    }

    .cta_1{
        position: absolute;
        left: 50%;
        top: 65%;
        transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, -50%);
        padding: 0px;

    }

    .cta_1 a{
        font-size: 17px;
        padding: 10px 8px;
    }


    .box_text_1{
        width: 100vw;
        height: 18vh;
        bottom: 70px;
        border-radius: 0;
        font-size: 20px;
        display: flex;
        align-items: center;
        padding-block: 0px;
        line-height: 35px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9)
    }

    .whatsapp_btn{
        right: 2px;
        opacity: .7;
    }

    .whatsapp_btn img{
        width: 50px;
        right: 20px;
        bottom: 10px;
    }
}