/* =======================================================================
 * 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
 * ===================================================================== */
.section.main-links {
    margin: 80px 0;
    padding: 0 20px;
}

.section.main-links .main-links-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
}

.section.main-links .main-links-wrapper .main-link {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 31.2253%;
    float: left;
    margin-right: 3.16206%;
}

.section.main-links .main-links-wrapper .main-link:first-child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 31.2253%;
    float: left;
    margin-right: 3.16206%;
}

.section.main-links .main-links-wrapper .main-link:last-child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 31.2253%;
    float: right;
    margin-right: 0;
}

.section.main-links .main-links-wrapper .main-link .img-header {
    margin-bottom: 0;
}

.section.main-links .main-links-wrapper .main-link .img-header .ratio {
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.section.main-links .main-links-wrapper .main-link .img-header .ratio img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    max-width: none;
}

.section.main-links .main-links-wrapper .main-link .main-link-content {
    padding: 28px 20px 75px;
    text-align: center;
}

.section.main-links .main-links-wrapper .main-link .main-link-content .first-line {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #ed1d24;
    display: block;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section.main-links .main-links-wrapper .main-link .main-link-content h2 {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.section.main-links .main-links-wrapper .main-link .main-link-content .excerpt {
    font-family: 'Domine', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    color: #979899;
    line-height: 1.5;
    margin-bottom: 31px;
}

.section.main-links .main-links-wrapper .main-link .action {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.section.main-links .main-links-wrapper .main-link .action .phone-number {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    font-size: 20px;
    line-height: 3;
}

.section.main-links .main-links-wrapper .main-link .action .phone-number .icon {
    margin-right: 10px;
}

.section.main-links .main-links-wrapper .main-link .action .primary-cta {
    width: 230px;
    padding: 18px 35px;
}

@media (min-width: 0) and (max-width: 1023px) {
    .section.main-links .main-links-wrapper .main-link .main-link-content {
        padding-top: 20px;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content .first-line {
        font-size: 12px;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content h2 {
        font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 35px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-transform: uppercase;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content .excerpt {
        font-family: 'Domine', serif;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .section.main-links .main-links-wrapper .main-link .action .primary-cta {
        width: 190px;
        padding: 14px 30px;
    }
    .section.main-links .main-links-wrapper .main-link .action .primary-cta .text {
        font-size: 14px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .section.main-links .main-links-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .section.main-links .main-links-wrapper .main-link {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .section.main-links .main-links-wrapper .main-link:first-child, .section.main-links .main-links-wrapper .main-link:last-child {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .section.main-links .main-links-wrapper .main-link .img-header .ratio {
        padding-top: 65.25%;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content {
        background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#F4F4F4));
        background: linear-gradient(90deg, #FFFFFF 0%, #F4F4F4 100%);
        padding: 25px 20px 40px;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content .first-line {
        font-size: 15px;
        margin-bottom: 9px;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content h2 {
        font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 50px;
        text-transform: uppercase;
    }
    .section.main-links .main-links-wrapper .main-link .main-link-content .excerpt {
        font-family: 'Domine', serif;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        margin-bottom: 37px;
    }
    .section.main-links .main-links-wrapper .main-link .action {
        bottom: 25px;
        left: 20px;
        right: 20px;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        text-align: center;
    }
    .section.main-links .main-links-wrapper .main-link .action .primary-cta {
        width: 100%;
    }
    .section.main-links .main-links-wrapper .main-link .action .primary-cta .text {
        font-size: 17px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .section.main-links {
        margin: 0;
        padding: 0 10px;
    }
    .section.main-links .salad-wrapper {
        display: none;
    }
}

/*# sourceMappingURL=main-links.css.map */
