/* shell */

.shell {
    max-width: calc(117.2rem + 1.8rem * 2);
    padding: 0rem 1.6rem;
    margin: 0 auto;
}


/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */

.footer {
    position: relative;
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 3.2rem 1.6rem 3.6rem;
    color: var(--footer-text-color-base);
    font-size: 1.3rem;
    line-height: 1.2;
}

.footer .shell-alt {
    max-width: calc(112rem);
    margin: 0 auto;
    padding: unset;
}

.footer .footer__logo {
    display: inline-block;
    cursor: unset;
}

.footer .footer__inner {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .footer__content {
    flex: 0 0 16.7%;
    max-width: 16.7%;
    padding-right: 1rem;
}

.footer .footer__cols {
    display: flex;
    flex: 1;
    margin: 0rem -1rem;
    gap: 60px;
}

.footer .footer__col {
    padding: 0rem 1rem;
    flex: 1;
}


.footer .footer__col .footer__logo {
    max-width: 280px;
    margin-bottom: 16px;
}

.footer .footer__col .footer__phone {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer .footer__col .footer__phone .phone {
    font-size: 18px;
    font-weight: 700;
    margin-left: 8px;
}

.footer .footer__col .footer__phone img {
    width: 14px; 
    height: auto;
}

.footer .footer__col .footer__email {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer .footer__col .footer__email .email {
    font-size: 18px;
    margin-left: 8px;
}

.footer .footer__col .footer__email img {
    width: 14px; 
    height: auto;
}

.footer .footer__col .footer__address {
    display: flex;
    align-items: center;
}

.footer .footer__col .footer__address .address {
    font-size: 18px;
    margin-left: 8px;
}

.footer .footer__col .footer__address img {
    width: 14px; 
    height: auto;
}

@media screen and (max-width: 767px) {
    .footer .footer__col .footer__logo {
        width: 208px;
    }
    .footer .footer__col .footer__phone {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
    
    .footer .footer__col .footer__phone .phone {
        font-size: 16px;
        font-weight: 700;
        margin-left: 8px;
    }
    
    .footer .footer__col .footer__phone img {
        width: 12px; 
        height: auto;
    }
    
    .footer .footer__col .footer__email {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }
    
    .footer .footer__col .footer__email .email {
        font-size: 16px;
        margin-left: 8px;
    }
    
    .footer .footer__col .footer__email img {
        width: 12px; 
        height: auto;
    }
    
    .footer .footer__col .footer__address {
        display: flex;
        align-items: center;
    }
    
    .footer .footer__col .footer__address .address {
        font-size: 16px;
        margin-left: 8px;
    }

    .footer .footer__col .footer__address .address span {
        display: block;
    }
    
    .footer .footer__col .footer__address img {
        width: 10px; 
        height: auto;
    }

}

@media screen and (max-width:1000px) and (min-width:767px)  {
    .footer .footer__cols {
        gap: 0;
    }

}

 /* h5:nth-child(3) */
.footer__col h5:nth-of-type(2) {
    margin-top: 3.2rem;
}

.footer .footer__col--size1 {
    flex: 0 0 33%;
    max-width: 33%;
}

.footer .footer__col--size2 {
    flex: 0 0 33%;
    max-width: 33%;
}

.footer h5 {
    font-size: 2.4rem;
    color: var(--footer-text-color-base);
    font-family: var(--header-text-font-alt);
    margin-bottom: 1.4rem;
    max-width: 24.5rem;
    padding-bottom: 0.4rem;
    font-size: 2.1rem;
}

.footer .footer__nav ul {
    list-style: none;
}

.footer .footer__nav li + li {
    margin-top: .8rem;
}

.footer .footer__nav li a {
    color: var(--footer-text-color-anchor);
    text-decoration: none;
    font-size: 1.4rem;
}

.footer .footer__nav a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 3.2rem 2.4rem;
    }

    .footer h5 {
        margin-bottom: 1.6rem;
        max-width: unset;
    }

    .footer .footer__inner {
        display: block;
    }

    .footer .footer__logo {
        max-width: 15.8rem;
        margin-bottom: 3.3rem;
    }

    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__cols {
        display: block;
    }

    .footer .footer__col:not(:last-child){
        padding: 0rem 1rem;
        margin-bottom: 3.2rem;
    }

    .footer .footer__col--size1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer .footer__nav li a {
        font-size: 1.2rem;
    }
    .footer .footer__nav ul {
        margin-left: 2.4rem;
    }
    .footer h5 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.section__copyright {
    background-color: var(--footer-background-color-alt);
}

.copyright {
    text-align: left;
    font-size: 1.4rem;
    padding: 2.9rem 1.6rem;
    color: var(--footer-text-color-anchor);
}

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


.copyright__container .social__images a + a {
    margin-left: 24px;
}

.copyright p span {
    display: none;
}

@media screen and (max-width: 767px) {
    .copyright p span {
        display: block;
    }
    .copyright {
        padding: .8rem 1.6rem .8rem 0;
        font-size: 10px;
        font-weight: 400;
    }
    .copyright__container .social__images a + a {
        margin-left: 15px;
    }

}

@media screen and (min-width: 767px) {
    .copyright__container .social__images .facebook {
        width: 27px; 
        height: auto;
    }
    .copyright__container .social__images .instagram {
        width: 29px; 
        height: auto;
    }
    .copyright__container .social__images .youtube {
        width: 39px; 
        height: auto;
    }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 1.6rem;
}

.socials li + li {
    margin-left: 1.6rem;
}

.socials li a {
    transition: opacity 0.3s;
}

.socials li:hover a {
    opacity: 0.7;
}

.socials li:hover a:has(.ssl-badge) {
    opacity: 1;
    -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 767px) {
    .socials li {
        transform: scale(0.95);
    }
    .socials li + li {
        margin-left: 1.6rem;
    }
}


.is-fixed {
    overflow: hidden;
}
