@font-face {
    font-family: "Poppins";
    src: url("../../fonts/Poppins-Regular.ttf");
}
body{
    margin: 0px;
    left: 0px;
    width: 100%;
}
.contentPage{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Poppins", sans-serif;
}
.header{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 66, 0.562), transparent);
}
.topHeader{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.socialMedias{
    width: 75%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.socialMedia{
    margin-left: 8px;
    margin-right: 8px;
}
.socialMedia a{
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: all 0.4s;
}
.socialMedia a:hover{
    color: #FF0000;
}
.contentHeader{
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar{
    width: 75%;
    height: 90px;
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: background 0.4s;
}
.logo img{
    width: 110px;
    height: 70px;
    object-fit: contain;
}
.linksNav{
    margin-left: auto;
    display: flex;
    align-items: center;
}
.linkNav{
    margin-left: 10px;
    margin-right: 10px;
}
.linkNav a{
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s;
}
.linkNav a:hover{
    color: #FF0000;
}
.navLoose{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: white;
}
.navLoose .logo{
    margin-left: 168px;
}
.navLoose .linksNav{
    margin-right: 168px;
}
.navLoose .linkNav a{
    color: black;
}
.navLoose .linkNav a:hover{
    color: #FF0000;
}

.btnMobile{
    margin-right: 30px;
    margin-left: auto;
    display: none;
    cursor: pointer;
}
.btnMobile span{
    display: block;
    width: 38px;
    height: 5px;
    background-color: black;
    border-radius: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.footer{
    margin-top: 48px;
    width: 100%;
    height: 108px;
    background-color: #14191C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans";
}
.footerContacts{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerContact{
    margin-left: 16px;
    margin-right: 16px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s;
}
.footerContact:hover{
    color: #FF0000;
}
.copyright{
    margin-top: 16px;
    color: #b0b0b0;
    font-size: 14px;
}
.copyright a{
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.4s;
}
.copyright a:hover{
    color: #FF0000;
}

.btnWhatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 28px;
    border-radius: 100%;
}

@media screen and (max-width: 980px){
    .topHeader{
        height: 136px;
        border: 0px;
        background-color: #14191C;
    }
    .socialMedias{
        width: auto;
        height: auto;
    }
    .socialMedia{
        margin-left: 22px;
        margin-right: 22px;
    }
    .socialMedia a{
        font-size: 54px;
    }
    .contentHeader{
        height: 200px;
        background-color: white;
    }
    .navbar{
        width: 95%;
        height: 200px;
        background-color: white;
    }
    .logo img{
        width: 220px;
        height: 140px;
    }
    .linksNav{
        position: absolute;
        top: 200px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        flex-direction: column;
        background-color: white;
        transition: all 0.4s;
    }
    .linkNav{
        width: 100%;
        min-height: 98px;
        border: 2px solid rgba(0, 0, 0, .08);
        display: flex;
        align-items: center;
    }
    .linkNav a{
        font-size: 32px;
        margin-left: 32px;
    }
    .navLoose{
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
    }
    .navLoose .logo{
        margin-left: 30px;
    }
    .navLoose .linksNav{
        display: flex;
    }
    .navLoose .btnMobile{
        display: block;
    }

    .footer{
        margin-top: 198px;
        height: 330px;
    }
    .footerContacts{
        flex-direction: column;
        align-items: center;
    }
    .footerContact{
        margin: 0px;
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 34px;
    }
    .copyright{
        font-size: 34px;
        text-align: center;
    }

    .btnWhatsapp{
        width: 160px;
        height: 160px;
        font-size: 72px;
    }
}