/* =========================================================
   STRONG CROP FOOTER
   ========================================================= */

#Footer .widgets_wrapper {
    padding: 8px 0 18px !important;
}

#Footer .widget,
#Footer .widget_text,
#Footer .textwidget {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

#Footer .strongcrop-footer-content {
    box-sizing: border-box;
    width: min(100%, 1140px);
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    font-family: "Prompt", sans-serif;
}


/* Logo */

#Footer .strongcrop-footer-content__logo {
    display: flex;
    margin: 0 0 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#Footer .strongcrop-footer-content__logo a {
    display: block;
}

#Footer .strongcrop-footer-content__logo img {
    display: block;
    width: 125px;
    height: auto;
    margin: 0 auto;
}


/* Columns */

#Footer .strongcrop-footer-content__columns {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 1fr)
        minmax(0, 1fr) !important;
    grid-template-areas: "company contact social";
    width: 100%;
    column-gap: 76px;
    align-items: start;
}

#Footer .strongcrop-footer-content__column {
    display: block;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

#Footer .strongcrop-footer-content__column--company {
    grid-area: company;
}

#Footer .strongcrop-footer-content__column--contact {
    grid-area: contact;
}

#Footer .strongcrop-footer-content__column--social {
    grid-area: social;
}

#Footer .strongcrop-footer-content__heading {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Prompt", sans-serif;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 0;
}


/* Address */

#Footer .strongcrop-footer-content__address {
    margin: 0;
    color: #fff;
    font-family: "Prompt", sans-serif;
    font-size: 16px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 0;
    font-style: normal;
}


/* Contact */

#Footer .strongcrop-footer-content__contact {
    display: grid;
    margin: 0;
    padding: 0;
    grid-auto-rows: 24px;
    gap: 10px;
    list-style: none;
}

#Footer .strongcrop-footer-content__contact li {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 24px !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    align-items: center;
    gap: 10px;
    line-height: 1 !important;
}

#Footer .strongcrop-footer-content__contact li::before,
#Footer .strongcrop-footer-content__contact li::after {
    display: none !important;
    content: none !important;
}

#Footer .strongcrop-footer-content__contact li > br {
    display: none !important;
}

#Footer .strongcrop-footer-content__contact li:nth-child(1) {
    transform: translateY(-8px);
}

#Footer .strongcrop-footer-content__contact li:nth-child(2) {
    transform: translateY(-16px);
}

#Footer .strongcrop-footer-content__contact i {
    width: 16px;
    color: #fff;
    text-align: center;
}

#Footer .strongcrop-footer-content__contact a {
    display: inline-flex;
    height: 24px;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    color: #fff;
    font-family: "Prompt", sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

#Footer .strongcrop-footer-content__contact a:hover,
#Footer .strongcrop-footer-content__contact a:focus-visible {
    color: #B38A05;
}


/* Social media */

#Footer .strongcrop-footer-content__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* WordPress Text Widget may insert p/br around inline links. */
#Footer .strongcrop-footer-content__social > p {
    display: contents;
    margin: 0 !important;
    padding: 0 !important;
}

#Footer .strongcrop-footer-content__social > br,
#Footer .strongcrop-footer-content__social > p > br {
    display: none !important;
}

#Footer .strongcrop-footer-content__social-link {
    display: inline-flex;
    box-sizing: border-box;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#Footer .strongcrop-footer-content__social-link i {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center;
}

#Footer .strongcrop-footer-content__social-link:hover,
#Footer .strongcrop-footer-content__social-link:focus-visible {
    color: #fff;
    opacity: 0.85;
    transform: translateY(-3px);
}

#Footer .strongcrop-footer-content__social-link--facebook {
    background: #1877f2;
}

#Footer .strongcrop-footer-content__social-link--tiktok {
    background: #111;
}

#Footer .strongcrop-footer-content__social-link--youtube {
    background: #f00;
}

#Footer .strongcrop-footer-content__social-link--instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}


/* Tablet */

@media only screen and (max-width: 959px) {
    #Footer .strongcrop-footer-content__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-areas:
            "company contact"
            "social social";
        gap: 40px;
    }
}


/* Mobile */

@media only screen and (max-width: 575px) {
    #Footer .strongcrop-footer-content {
        padding-inline: 24px;
    }

    #Footer .strongcrop-footer-content__logo {
        margin-bottom: 32px;
    }

    #Footer .strongcrop-footer-content__columns {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "company"
            "contact"
            "social";
        gap: 30px;
        text-align: center;
    }

    #Footer .strongcrop-footer-content__contact li,
    #Footer .strongcrop-footer-content__social {
        justify-content: center;
    }
}
