@import 'fonts.css';

html {
    --light-grey-2: #ECECEC;
    --light-grey-3: #E3E3E3;
    --dark-grey: #191919;
    font-size: 62.5%;
}

footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: Hind;
    font-size: 1.3rem;
    color: var(--dark-grey);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

footer {
    width: 100%;
    background-color: var(--light-grey-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    /*margin-top: 25px;*/
}

.description_footer {
    width: 70%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
}

.description_footer img {
    width: 3rem;
    margin-bottom: 1rem;
}

.main-content_footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    width: 80vw;
    max-width: 128rem;
}

.list-item_footer {
    display: flex;
    flex-direction: column;
}

.list-item_footer strong {
    font-weight: 900;
    margin-bottom: .5rem;
}

.list-item_footer p, .list-item_footer a {
    margin: .1rem 0;
    width: fit-content;
}

.list-item_footer a:hover {
    text-decoration: underline;
}

.social-networks-container a {
    margin-right: 1rem;
    text-decoration: none !important;
}

.social-networks-container img {
    width: 2.5rem;
    height: 2.5rem;
}

.end_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin-top: 2rem;
    background-color: var(--light-grey-3);
}

.end_footer p {
    margin: 0 auto;
    text-align: center;
}

html .palette1 .spopupbtnok{
    background-color:#e21617!important;
    color:white !important;
    border-radius:6px !important;
}
html .palette1 *{
    font-family: Hind !important;
    font-size: 1.6rem !important;
}
html .banner.bottom .credit{
    display:none !important;
}
body footer .phone_number{
    margin-bottom:3rem;
}

@media (min-width: 480px) { /* Tablet */
    * {
        font-size: 1.5rem;
    }

    .description_footer {
        width: 50%;
        margin: 4rem 0;
    }
    
    .description_footer img {
        width: 5rem;
        margin-bottom: 1.5rem;
    }

    .main-content_footer {
        grid-gap: 2rem;
    }

    .item-list_footer h6 {
        margin-bottom: .7rem;
    }
    
    .item-list_footer p, .item-list_footer a {
        margin: .2rem 0;
    }
    
    .social-networks-container a {
        margin-right: 2rem;
    }
    
    .social-networks-container img {
        width: 3rem;
        height: 3rem;
    }
    
    .end_footer {
        padding: 3rem 30%;
        margin-top: 3rem;
    }

    /*footer{
        margin-top: 50px;
    }*/
}

@media (min-width: 770px) { /* Desktop */
    * {
        font-size: 1.6rem;
    }

    .description_footer {
        width: 30%;
        margin: 3rem 0 6rem 0;
    }
    
    .description_footer img {
        width: 6rem;
        margin-bottom: 2rem;
    }

    .main-content_footer {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 3rem;
    }

    .item-list_footer h6 {
        margin-bottom: 1rem;
    }
    
    .item-list_footer p, .item-list_footer a {
        margin: .3rem 0;
    }
    
    .social-networks-container a {
        margin-right: 2rem;
    }
    
    .social-networks-container img {
        width: 3rem;
        height: 3rem;
    }
    
    .end_footer {
        padding: 3rem 20%;
        margin-top: 4rem;
        flex-direction: row;
    }
}