* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root{
    --colorBlack: rgb(0,0,0);
    --colorWhite: rgb(255,255,255);
    --colorGray: rgb(50,50,50);
    --colorStrong2: rgb(5, 62, 71);
    --colorStrong3: rgb(18, 93, 103);
    --borderConts: 30px;
    --fontText: "Montserrat", sans-serif;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* footer */
.footer{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contFooter{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--colorStrong2);
    padding: 30px;
    gap: 30px;
}

.contFooterTwo{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.infoFooter{
    flex: 1;
    text-align: left;
}

.logoFooter img{
    width: 60%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.infoFooter p{
    font-size: 17px;
    font-family: var(--fontText);
    color: var(--colorWhite);
}

.footerSocial{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;
}

.footerSocial h6{
    font-size: 35px;
    color: var(--colorWhite);
    margin-bottom: 15px;
}

.socialIcons{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.socialIcons a img{
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.socialIcons a:hover img{
    transform: scale(1.2);
    opacity: 0.8;
}

.footerReserv{
    width: 90%;
    text-align: center;
    font-size: 15px;
    color: var(--colorWhite);
    border-top: 1px solid var(--colorWhite);
    padding-top: 20px;
    margin-top: 20px;
}

@media (max-width: 1280px){
    .infoFooter p{
        font-size: 16px;
    }
    .footerSocial h6{
        font-size: 33px;
    }
    .socialIcons a img{
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 1100px){
    .logoFooter img{
        width: 65%;
    }
    .contFooterTwo{
        width: 95%;
    }
    .infoFooter p{
        font-size: 15px;
    }
}

@media (max-width: 900px){
    .logoFooter img{
        width: 70%;
    }
}

@media (max-width: 850px){
    .contFooterTwo{
        width: 100%;
    }
    .infoFooter p{
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .contFooterTwo{
        justify-content: center;
        flex-direction: column;
    }
    .infoFooter{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .infoFooter p{
        padding: 0 50px;
    }
    .logoFooter img{
        width: 43%;
    }
    .footerSocial h6{
        margin-bottom: 10px;
    }
}

@media (max-width: 650px){
    .infoFooter p{
        padding: 0 40px;
        font-size: 14px;
    }
    .logoFooter img{
        width: 42%;
    }
    .footerSocial h6{
        font-size: 30px;
        margin-bottom: 5px;
    }
    .socialIcons a img{
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 550px){
    .infoFooter p{
        padding: 0 10px;
        font-size: 13.5px;
    }
    .logoFooter img{
        width: 43%;
    }
    .footerSocial h6{
        font-size: 28px;
        margin-bottom: 5px;
    }
    .socialIcons a img{
        width: 37px;
        height: 37px;
    }
}

@media (max-width: 500px){
    .contFooter{
        padding: 20px;
        gap: 20px;
    }
    .infoFooter p{
        padding: 0px;
        font-size: 13px;
    }
    .logoFooter img{
        width: 45%;
    }
    .footerSocial h6{
        font-size: 27px;
    }
    .socialIcons a img{
        width: 36px;
        height: 36px;
    }
    .footerReserv{
        font-size: 14px;
    }
}

@media (max-width: 450px){
    .contFooter{
        padding: 15px;
        gap: 15px;
    }
    .infoFooter p{
        font-size: 12.5px;
    }
    .logoFooter img{
        width: 52%;
    }
    .footerSocial h6{
        font-size: 25px;
    }
    .socialIcons a img{
        width: 35.5px;
        height: 35.5px;
    }
    .footerReserv{
        font-size: 14px;
    }
}

@media (max-width: 393px){ 
    .logoFooter img{
        width: 55%;
    }
}

@media (max-width: 60px){ 
    .logoFooter img{
        width: 57%;
    }
    .infoFooter p{
        font-size: 12px;
    }
    .footerSocial h6{
        font-size: 24px;
    }
    .socialIcons a img{
        width: 35px;
        height: 35px;
    }
    .footerReserv{
        font-size: 13px;
    }
}