/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
#site-footer {
    background: #F6F6F6;
}

#site-footer .footer {
    padding-top: 93px;
    padding-bottom: 50px;
}

#site-footer .footer .footer-row {
    *zoom: 1;
    margin-bottom: 50px;
    position: relative;
}

#site-footer .footer .footer-row:before, #site-footer .footer .footer-row:after {
    content: " ";
    display: table;
    line-height: 0;
}

#site-footer .footer .footer-row:after {
    clear: both;
}

#site-footer .footer .footer-row:last-child {
    margin-bottom: 0;
}

#site-footer .footer .footer-row .footer-navigation {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 55.22059%;
    float: left;
    margin-right: 2.35294%;
    padding-top: 35px;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list {
    *zoom: 1;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list:before, #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list:after {
    content: " ";
    display: table;
    line-height: 0;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list:after {
    clear: both;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list {
    float: left;
    width: 188px;
    margin-right: 13px;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list.desktop-only {
    padding-top: 69px;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links-title {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #1D1D1B;
    text-transform: uppercase;
    margin-bottom: 53px;
    letter-spacing: 0.03em;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links-title .icon {
    display: none;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links-title.title-mobile-only {
    visibility: hidden;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links > li > a {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #1D1D1B;
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    display: block;
    opacity: 0.5;
    -webkit-transition: color 200ms ease-in-out, opacity 200ms ease-in-out;
    transition: color 200ms ease-in-out, opacity 200ms ease-in-out;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links > li > a:hover {
    color: #ed1d24;
    opacity: 1;
}

#site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links .mobile-only {
    display: none;
}

#site-footer .footer .footer-row .newsletter-subscribtion {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 42.42647%;
    float: right;
    margin-right: 0;
}

#site-footer .footer .footer-row .newsletter-subscribtion .tag-line {
    font-family: 'TradeGothicLTPro-Light', Arial, helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    color: #1D1D1B;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    opacity: 0.5;
}

#site-footer .footer .footer-row .newsletter-subscribtion .newsletter-title {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: #1D1D1B;
    text-transform: uppercase;
    margin-bottom: 50px;
}

#site-footer .footer .footer-row .newsletter-subscribtion .error-message {
    padding-left: 20px;
    margin-top: 10px;
    color: #CC181E;
}

#site-footer .footer .footer-row .newsletter-subscribtion .error-message.success {
    color: #ed1d24;
}

#site-footer .footer .footer-row.space-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#site-footer .footer .footer-row.space-between::after, #site-footer .footer .footer-row.space-between::before {
    display: none;
}

#site-footer .footer .footer-row .language-switcher {
    *zoom: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 19.76285%;
    float: left;
    margin-right: 3.16206%;
}

#site-footer .footer .footer-row .language-switcher:before, #site-footer .footer .footer-row .language-switcher:after {
    content: " ";
    display: table;
    line-height: 0;
}

#site-footer .footer .footer-row .language-switcher:after {
    clear: both;
}

#site-footer .footer .footer-row .language-switcher .single-lang {
    text-decoration: none;
    border: 1px solid rgba(151, 151, 151, 0.5);
    border-left: none;
    display: inline-block;
    float: left;
    padding: 11px;
    font-size: 12px;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: rgba(151, 151, 151, 0.5);
    background: #FFFFFF;
    -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out;
    transition: background 200ms ease-in-out, color 200ms ease-in-out;
}

#site-footer .footer .footer-row .language-switcher .single-lang:first-child {
    border-left: 1px solid rgba(151, 151, 151, 0.5);
}

#site-footer .footer .footer-row .language-switcher .single-lang.current, #site-footer .footer .footer-row .language-switcher .single-lang:hover {
    color: #FFFFFF;
    background: #1D1D1B;
    border-color: #1D1D1B;
}

#site-footer .footer .footer-row .footer-logo {
    width: 100px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

#site-footer .footer .footer-row .footer-logo img {
    display: block;
}

#site-footer .footer .footer-row .social-media {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 19.76285%;
    float: right;
    margin-right: 0;
    text-align: right;
}

#site-footer .footer .footer-row .social-media a {
    display: inline-block;
    margin-left: 24px;
}

#site-footer .footer .footer-row .social-media a .icon {
    display: block;
}

#site-footer .footer .footer-row .social-media a .icon svg {
    opacity: 0.5;
    display: block;
    -webkit-transition: fill 200ms ease-in-out, opacity 200ms ease-in-out;
    transition: fill 200ms ease-in-out, opacity 200ms ease-in-out;
}

#site-footer .footer .footer-row .social-media a:hover svg {
    opacity: 1;
    fill: #ed1d24;
}

#site-footer .footer .footer-row .social-media a:first-child {
    margin-left: 0;
}

#site-footer .footer .footer-row .copyright {
    text-align: center;
    padding-top: 12px;
    margin-bottom: 30px;
}

#site-footer .footer .footer-row .copyright p {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    color: #1D1D1B;
    opacity: 0.5;
    line-height: 1.8em;
    letter-spacing: 0.08em;
}

#site-footer .footer .footer-row .copyright p br {
    display: none;
}

#site-footer .footer .footer-row .link-legal {
    text-align: center;
}

#site-footer .footer .footer-row .link-legal a {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    color: #1D1D1B;
    text-decoration: none;
    letter-spacing: 0.1em;
    -webkit-transition: color 200ms ease-in-out;
    transition: color 200ms ease-in-out;
}

#site-footer .footer .footer-row .link-legal a:hover {
    color: #ed1d24;
}

#site-footer .footer .footer-row .link-legal span {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #1D1D1B;
    text-decoration: none;
    letter-spacing: 0.1em;
}

@media (min-width: 0) and (max-width: 1439px) {
    #site-footer .footer {
        padding-top: 93px;
        padding-bottom: 40px;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list {
        width: 165px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    #site-footer .footer .footer-row .footer-navigation {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 49.06417%;
        float: left;
        margin-right: 1.87166%;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list.desktop-only {
        padding-top: 0;
        margin-left: 178px;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list:last-child {
        margin-bottom: 0;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links-title {
        margin-bottom: 30px;
    }
    #site-footer .footer .footer-row .newsletter-subscribtion {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 49.06417%;
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    #site-footer .footer {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    #site-footer .footer .footer-row {
        margin-bottom: 45px;
    }
    #site-footer .footer .footer-row .footer-navigation, #site-footer .footer .footer-row .newsletter-subscribtion {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
    }
    #site-footer .footer .footer-row .footer-navigation {
        display: block;
        float: none;
        margin-bottom: 29px;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list {
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list.desktop-only {
        display: none;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper {
        padding-top: 26px;
        padding-bottom: 28px;
        border-top: 1px solid rgba(151, 151, 151, 0.5);
        overflow: hidden;
        -webkit-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper.open .links-title .icon {
        -webkit-transform: translateY(-50%) rotate(0deg);
                transform: translateY(-50%) rotate(0deg);
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper.open .links-title .icon svg {
        stroke: #ed1d24;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper .links-title {
        font-size: 20px;
        margin-bottom: 0;
        position: relative;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper .links-title .icon {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        -webkit-transform-origin: center center;
                transform-origin: center center;
        -webkit-transform: translateY(-50%) rotate(180deg);
                transform: translateY(-50%) rotate(180deg);
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper .links-title .icon svg {
        display: block;
        stroke: #ed1d24;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .accordion-wrapper .links-title.title-mobile-only {
        visibility: visible;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links {
        padding-top: 34px;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links > li > a {
        font-size: 14px;
        margin-bottom: 26px;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links > li:last-child > a {
        margin-bottom: 0;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list .links .mobile-only {
        display: block;
    }
    #site-footer .footer .footer-row .footer-navigation .wrapper-sections-list .section-list:last-child > ul {
        border-bottom: 1px solid rgba(151, 151, 151, 0.5);
    }
    #site-footer .footer .footer-row .newsletter-subscribtion .newsletter-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    #site-footer .footer .footer-row .language-switcher {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 28px;
        width: 100%;
        margin-right: 0;
    }
    #site-footer .footer .footer-row .language-switcher:not(.mobile-only) {
        display: none;
    }
    #site-footer .footer .footer-row.space-between {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    #site-footer .footer .footer-row .footer-logo {
        position: relative;
        left: auto;
        top: auto;
        -webkit-transform: none;
                transform: none;
        margin: 0 auto;
    }
    #site-footer .footer .footer-row .social-media {
        margin-bottom: 47px;
        float: none;
        width: 100%;
        text-align: center;
    }
    #site-footer .footer .footer-row .social-media a {
        padding: 12px 12px;
        margin-left: 0;
    }
    #site-footer .footer .footer-row .copyright {
        padding-top: 0;
        margin-bottom: 42px;
    }
    #site-footer .footer .footer-row .copyright p {
        line-height: 1.5;
        font-size: 12px;
    }
    #site-footer .footer .footer-row .copyright p br {
        display: block;
    }
}

/*# sourceMappingURL=footer.css.map */
