/* FOOTER 1 */

footer {
    font-family: "Roboto", sans-serif;
}

.footer1 {
    min-height: 93px;
    display: flex;
    align-items: center;
    background-color: var(--footer1);
}

.footer1 .row>* {
    display: flex;
    align-items: center;
}

.footer1 .c2 {
    justify-content: center;
}

.footer1 .logo img {
    max-width: 171px;
}

.footer1 .follow {
    color: var(--white);
    font-size: 14px;
    font-variation-settings: "wght" 250;
    line-height: 16px;
}

.footer1 .follow strong {
    font-variation-settings: "wght" 600;
}

.footer1 .rss {
    display: inline-flex;
    width: 100%;
    justify-content: end;
}

.footer1 .rss .rs {
    width: 100%;
    max-width: 120px;
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}

.footer1 .rss .rs svg {
    min-height: 22px;
    width: auto;
}

.footer1 .rss .rs svg path {
    fill: var(--white);
    transition: .3s ease-in-out;
}

.footer1 .rss .rs:hover {
    background-color: var(--footer2);
    transition: background-color .3s ease-in-out;
}

.footer1 .rss .rs:hover svg path {
    fill: var(--white);
    transition: all .3s ease-in-out;
}


/* FOOTER 1 ! */


/* FOOTER 2 */

.footer2 {
    padding: 33px 0 45px;
    background-color: var(--footer2)
}

.footer2 .stitle {
    color: var(--white);
    font-size: 20px;
    font-variation-settings: "wght" 600;
    line-height: 23px;
    margin-bottom: 28px;
}

.footer2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer2 ul li {
    margin-bottom: 10px;
}

.footer2 ul li a,
.footer2 .local,
.footer2 .hour,
.footer2 .telp,
.footer2 .mailp {
    color: var(--white);
    font-size: 16px;
    font-variation-settings: "wght" 250;
    line-height: 23px;
    letter-spacing: 0.01em;
}

.footer2 .telp,
.footer2 .mailp {
    margin-bottom: 8px;
}


/* FOOTER 2 ! */


/* FOTTER DESIGN */

.footer-design {
    min-height: 98px;
    background-color: var(--footer-design);
    padding: 15px 0;
}

.footer-design .lgpd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 64px;
    height: 64px;
    border-radius: 4px;
    margin-right: 20px;
    padding: 10px;
    color: var(--white);
    font-variation-settings: "wght" 200;
    font-size: 14px;
    letter-spacing: 0.004em;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}

.footer-design .lgpd svg {
    min-width: 23px;
    min-height: 23px;
    margin-bottom: 5px;
}

.footer-design .site {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.footer-design .sitetitle,
.footer-design .site .text {
    color: var(--white);
    font-size: 14px;
    font-variation-settings: "wght" 250;
    line-height: 16px;
    letter-spacing: 0.004em;
}

.footer-design .site .sitetitle strong {
    font-variation-settings: "wght" 500;
}

.footer-design .site .text strong {
    color: inherit;
}

.footer-design .c2 {
    display: flex;
    justify-content: end;
    align-items: center;
}

.footer-design .design {
    display: flex;
    align-items: center;
    height: 34px;
    border-left: 1.5px solid var(--white);
    padding-left: 21px;
    color: var(--white);
    font-size: 14px;
    font-variation-settings: "wght" 200;
    line-height: 16px;
    letter-spacing: 0.004em;
}

.footer-design .design a {
    color: var(--white);
    font-variation-settings: "wght" 500;
}


/* FOTTER DESIGN  !*/


/* MEDIA QUERIES */

@media(max-width: 992px) {
    .footer1 {
        padding-top: 1rem;
    }
    .footer1 .logo img {
        min-width: unset;
        max-width: 100%;
    }
    .footer1 .follow {
        margin-top: 18px;
    }
    .footer1 .rss,
    .footer1 .c2 {
        justify-content: start;
    }
    .footer2 {
        padding: 2rem 0;
    }
    .footer2 .row>* {
        margin-bottom: 20px;
    }
    .footer2 .c2 {
        display: none;
    }
    .footer-design .c2 {
        justify-content: start;
        margin-top: 20px;
    }
}

@media(max-width:768px) {
    .footer1 .row>*,
    .footer1 .rss,
    .footer2 .local {
        justify-content: center;
    }
    .footer2 .stitle,
    .footer2 ul li {
        text-align: center;
    }
    .footer2 .telp,
    .footer2 .mailp {
        width: fit-content;
        margin: 0 auto 8px;
    }
}

@media(max-width: 575px) {
    .footer-design .d-inline-flex {
        display: flex !important;
        flex-direction: column;
    }
    .footer-design .site {
        margin-top: 15px;
        text-align: center;
    }
    .footer-design .lgpd {
        margin: 0 auto;
    }
    .footer-design .c2 {
        justify-content: center;
        border: none;
    }
    .footer-design .c2 .design {
        border: none;
        padding: 0;
    }
    .footer-design .site .text {
        text-align: center;
    }
}

@media(max-width: 375px) {
    .footer2 .form form {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .footer2 .form form input[type="email"] {
        margin-bottom: 15px;
    }
}


/* MEDIA QUERIES ! */