/* --------- MainPage FOOTER --------- */

.footer {
    background: #111;
    padding-top: 61px;
    padding-bottom: 45px;
}

.logoSlogan  {
    width: 195px;
    height: 50px;
}

.buttons{
    position: relative;
}

.footerLine {
    border-bottom: 1px solid #fff;

}

.infoRowFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerLink{
    color: #FFF;
    font-size: 18px;
    font-family: Onest;
    text-decoration: none;
}

.companyNumber{
    display: flex;
    flex-direction: column ;
    align-items: end;
}

.socialsFooter {
    display: flex;
    justify-content: end;
    gap: 13px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.socialPhoto  {
    height: 42px;
    width: 42px;
}

.linksFooterGroup {
    display: flex;
    flex-wrap: wrap;
    
    width: max-content;
    
}

.footerLink {
    display: block;
    margin: 0;
    padding: 7px;
    padding-left: 10px;
}

.companyNumber__num {
    color: #FFF;
    font-size: 30px;
    font-family: Onest;
    font-weight: 700;
    text-decoration: none;
}

.companyNumber__text {
    color: #FFF;
    font-size: 13px;
    font-family: Onest;
}

.companyConfidentials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
}


.companyTitle {
    color: #FFF;
    font-size: 15px;
    font-family: Onest;
}

.confidentialPolicy {
    text-decoration: none;
    color: #FFF;
    font-size: 15px;
    font-family: Onest;
}

.socialPhoto:hover {
    scale: 1.1;
}

.linksFooterGroup__col:first-child {
    padding-right: 100px;
}




@media (max-width: 980px) {
    .footer {
        padding: 20px 0 25px 0;
    }
    .socialsFooter {
        justify-content: center;
    }
    .linksFooterGroup {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .linksFooterGroup__col {
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }
}


@media (max-width: 800px) {
    .footerLink  {
        font-size: 15px;
    }
    .companyNumber__num {
        font-size: 20px;
    }
    .companyNumber__text {
        font-size: 10px;
    }
}

@media (max-width: 670px) {
    .infoRowFooter {
        flex-direction: column;
    }
    .linksFooterGroup__col2 {
        flex-direction: row;
    }
}

@media (max-width: 460px) {
    .confidentialPolicy {
        font-size: 10px;
    }
    .companyTitle {
        font-size: 10px;
    }
    .companyConfidentials {
        padding-top: 10px;
    }
    .socialsFooter {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .footer {
        padding-top: 15px;
        padding-bottom: 10px;
    }
}

