/*------------------------------------*\
    
    Page Footer CSS

    Page footer...........The main page footer.

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

.page-footer {
    margin-top: auto; /* used to affix footer at bottom of page */
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .page-footer {
        margin-bottom: 0;
    }
}

.footer__logo {
    display: block;
    max-width: 241px;
    margin: 0 auto;
}


@media (min-width: 768px) {
    .footer__logo {
        margin: 0 auto 40px;
    }
}

@media (min-width: 1025px) {
    .footer__logo {
        max-width: 352px;
        margin: 0 auto 45px;
    }
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__upper {
    padding: 20px 0 45px;
    background-color: #000;
    position: relative;
}

@media (min-width: 768px) {
    .footer__upper {
        padding: 20px 0 50px;
    }
}

@media (min-width: 1025px) {
    .footer__upper {
        padding: 20px 0 55px;
    }
}

.footer__upper__container,
.footer__lower__container {
    position: relative;
    z-index: 2;
}

/*
@media (min-width: 1025px) {
    .footer__upper__container,
    .footer__lower__container {
        max-width: calc(1228px + 44px);
        margin: 0 auto;
    }
}
*/

.footer__upper__container:before,
.footer__upper__container:after,
.footer__lower__container:before,
.footer__lower__container:after {
    display: none;
}

.footer__upper__curve {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer__upper__curve {
        height: 120px;
    }
}

.footer__upper__curve:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: scaleX(1.1);
    background-color: #000;
}

.footer__links {}

@media (min-width: 1025px) {
    .footer__links {
        margin-bottom: 45px;
    }
}

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

@media (min-width: 1025px) {
    .footer__links ul {
        display: flex;
        justify-content: space-between;
    }
}

.footer__links ul li {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 1025px) {
    .footer__links ul li:not(:last-child) {
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    .footer__lower__links li:first-child {
        width: 100%;
        margin-bottom: 10px;
    }
}

.footer__links .menu {
    margin-left: 0;
}

.footer__links .menu > li > a,
.footer__links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.footer__helpers {
    position: relative;
}

.footer__helpers__info h4 {}

@media (min-width: 768px) {
    .footer__helpers {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .footer__helpers__info {
        width: 70%;
        padding-right: 16px;
    }

    .footer__helpers__social {
        width: 30%;
        text-align: right;
        padding-left: 16px;
    }

    .footer__helpers__info li {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 15px;
    }

    .footer__helpers__info li:first-child {
        display: block;
    }

    .footer__helpers__info li:nth-child(2) {
        padding-right: 10px;
    }

    .footer__helpers__info li:nth-child(3) {
        padding-left: 10px;
        border-left: 1px solid var(--color-tertiary);
    }
    
    .footer__helpers__info li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer__helpers__info {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .footer__helpers__info li {
        display: block;
        text-align: center;
    }

    .footer__helpers__info li:nth-child(2) {
        padding: 0;
        border: 0;
    }
}

@media (min-width: 1025px) {
    .footer__helpers {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__helpers ul:first-child {
        margin-right: 10px;
    }

    .footer__helpers ul:last-child {
        margin-left: 10px;
    }
}

.footer__helpers__info {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .footer__helpers__info {
        margin-top: 40px;
    }
}

.footer__helpers__info li {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 1025px) {
    .footer__helpers__info li:not(:first-child) {
        border-left: 1px solid var(--color-secondary);
    }
}

.footer__helpers__info address,
.footer__helpers__info p,
.footer__helpers__info a {
    font-style: normal;
    color: var(--color-white);
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
    text-decoration: none;
}

@media (min-width: 1025px) {
    .footer__helpers__info address {
        margin-right: 20px;
    }

    .footer__helpers__info p {
        margin: 0 20px;
    }

    .footer__helpers__info address,
    .footer__helpers__info p,
    .footer__helpers__info p a {
        font-size: 18px;
    }

    .footer__helpers__info a {
        box-shadow: inset 0 0 var(--color-white);
        transition: box-shadow 0.15s ease-in-out;
        display: inline-block;
    }

    .footer__helpers__info a:hover {
        box-shadow: inset 0 -2px var(--color-white);
    }
}

.footer__helpers__info p {
    font-weight: 600;
}

.footer__helpers__info p a {
    font-weight: normal;
    text-decoration: none;
}

.footer__helpers__social {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .footer__helpers__social {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .footer__helpers__social {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 35px;
        margin-bottom: 0;
    }
}

.footer__helpers__social li {
    display: inline-block;
    vertical-align: middle;
}

.footer__helpers__social li:not(:last-child) {
    margin-right: 12px;
}

.footer__helpers__social a {
    color: #000;
    background-color: var(--color-white);
    text-decoration: none;
    width: 55px;
    height: 55px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    position: relative;
}

@media (min-width: 768px) {
    .footer__helpers__social a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.footer__helpers__social a i {
    position: relative;
    z-index: 1;
}

.footer__helpers__social a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transform: scale(0);
    background-color: var(--color-primary);
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 1025px) {
    .footer__helpers__social a:hover {
        color: var(--color-white);
    }

    .footer__helpers__social a:hover:before {
        transform: scale(1.5);
    }
}

.footer__lower {
    background-color: #000;
    padding: 20px 0;
}

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

.footer__lower__links {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .footer__lower__links {
        text-align: center;
        margin-right: 0;
        width: 100%;
    }
}

.footer__lower__top {
    margin-left: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer__lower__top {
        position: absolute;
        margin-left: 0;
        bottom: 0px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .footer__lower__top {
        margin-left: 0;
        text-align: center;
        margin-top: 35px;
    }
}

.footer__lower__links a,
.footer__lower__links p {
    margin: 0;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    line-height: 1em;
}

@media (min-width: 1025px) {
    .footer__lower__links a {
        line-height: 1.2em;
        box-shadow: inset 0 0 #fff;
        transition: box-shadow 0.3s ease-in-out;
    }

    .footer__lower__links a:hover {
        box-shadow: inset 0 -2px #fff;
    }
}

@media (max-width: 1024px) {
    .footer__lower__links a,
    .footer__lower__links p {
        font-size: 14px;
    }
}

.footer__lower__links li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1em;
}

@media (min-width: 768px) {
    .footer__lower__links li:not(:first-child) {
        border-left: 1px solid #96A799;
        margin-left: 8px;
    }

    .footer__lower__links li:not(:first-child) > *{
        margin-left: 8px;
    }
}

@media (min-width: 1025px) {
    .footer__lower__links li:not(:first-child) {
        border-left: 1px solid #96A799;
        margin-left: 12px;
    }

    .footer__lower__links li:not(:first-child) > *{
        margin-left: 12px;
    }
}
@media (max-width: 767px) {
    .footer__lower__links li:not(:first-child):not(:last-child) {
        border-right: 1px solid #96A799;
    }

    .footer__lower__links li:not(:first-child) > *{
        margin-right: 5px;
    }
}

.footer__lower__top a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
}

@media (min-width: 1025px) {
    .footer__lower__top a:hover i {
        animation: backToTop 0.6s linear infinite alternate-reverse;
    }
}

.footer__lower__top a i,
.footer__lower__top a span {
    display: inline-block;
    vertical-align: middle;
}

.footer__lower__top a span {
    position: relative;
    top: 0;
    transition: top 0.25s ease-in-out;
}

.footer__lower__top a i {
    font-size: 10px;
    display: inline-block;
    position: relative;
    top: -2px;
    transform: rotate(-90deg);
    margin-left: 10px;
}

@keyframes backToTop {
    0% {
        top: -10px;
    }
    25% {
        top: -2px;
    }
    50% {
        top: -10px;
    }
    100% {
        top: -2px;
    }
}

.footer__form {
    margin: 50px auto 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__form {
        max-width: 768px;
        margin: 30px auto 0;
    }
}

@media (min-width: 1025px) {
    .footer__form {
        margin: 50px auto 0;
    }
}

.footer__form p {
    color: var(--color-white);
    margin: 0;
    font-size: 14px;
}

.footer__form strong {
    font-family: var(--font-primary);
    color: var(--color-white);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .footer__form strong {
        margin-bottom: 0;
    }
}

.footer__form form {
    display: flex;
    align-self: center;
    width: 100%;
    margin-top: 20px;
}

.footer__form label {
    display: block;
    flex: 1;
}

.footer__form input {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 1024px) {
    .footer__form input {
        padding: 13px 15px;
        height: 51px;
    }
}

.footer__form .btn {
    padding: 15px 30px;
    width: auto;
    min-width: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer__form .btn:before {
    left: -28%;
}

@media (max-width: 1024px) {
    .footer__form .btn:before {
        display: none;
    }

    .footer__form .btn:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-right: 0;
        border-bottom: 8px solid transparent;
        border-left: 8px solid var(--color-white);
    }
}

.footer__form .btn span:after {
    position: relative;
    right: 3px;
    top: 1px;
}

@media (min-width: 1025px) {
    .footer__form .btn span:after {
        display: none;
    }
}

@media (max-width: 1025px) {
    .footer__form .btn {
        font-size: 0;
        padding: 0;
        height: 51px;
        width: 51px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1025px) {
    .footer__upper__wrapper {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 1025px) {
    .footer__links,
    .footer__form {
        width: 100%; /*change to 50% if you want form*/
        order: 0;
        margin: 0;
        max-width: 100%;
    }

    .footer__form {
        padding-left: 80px;
        text-align: right;
    }

    .footer__helpers {
        order: 1;
        width: 100%;
        margin-top: 50px;
    }

    .footer__links ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* .footer__links ul li {
        width: 16.66%;
    } */

    .footer__links ul li:not(:last-child) {
        margin: 0;
    }
}


/*Mobile*/ 
img.footer__logo.wedgewood {
   width: 141px !important;
}

/*Tablet up*/
@media(min-width:768px) {
    .logos {
        display: flex;
        width: calc(75% - 15px);
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    
    .footer__helpers--multiple-contact-infos {
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        margin: 0 -16px -20px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__helpers__info {
        flex: 1 0 33.33%;
        max-width: calc(33.33% - 32px);
        margin: 0 16px 20px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__helpers__social {
        flex: 1 0 100%;
        text-align: center;
    }
    
    /*.footer__helpers--multiple-contact-infos .footer__helpers__social a {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }*/
}

@media (min-width: 768px) and (max-width: 1025px) {
    .footer__helpers--multiple-contact-infos .footer__helpers__social {
        margin-top: 15px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__lower__top {
        left: 50%;
        transform: translate(-50%, 10px);
        text-align: center;
    }
}
        
/*Small Laptops Up*/
@media(min-width:1025px) {
    .logos {
        display: flex;
        width: calc(50% - 15px);
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    
    .footer__helpers--multiple-contact-infos {
        margin-top: 50px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__helpers__info {
        flex: 1 0 20%;
        max-width: calc(20% - 32px);
        margin: 0 16px 20px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__helpers__info p {
        margin-bottom: 10px;
    }
    
    .footer__helpers--multiple-contact-infos .footer__helpers__info p a:hover {
        box-shadow: none;
        text-decoration: underline;
    }
}