/* =======================================================================
 * 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
 * ===================================================================== */
.post {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 30.12048%;
    float: left;
    margin-right: 4.81928%;
    min-height: 480px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(197, 197, 197, 0.5);
            box-shadow: 0 5px 15px 0 rgba(197, 197, 197, 0.5);
    overflow: hidden;
    margin-bottom: 40px;
    background-color: white;
    position: relative;
}

.post.double-post {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 65.06024%;
    float: left;
    margin-right: 4.81928%;
}

.post.double-post .post-image {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.post.double-post .post-image .overlay-color {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
    background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
    background: linear-gradient(0deg, #000000 0%, transparent 100%);
}

.post.double-post .post-image img {
    width: 100%;
}

.post.double-post .post-info {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 30px;
    bottom: 0%;
}

.post.double-post .post-info .post-info-title {
    color: #FFFFFF;
    width: 50%;
}

.post.double-post .post-info .post-info-description {
    color: #FFFFFF;
    color: white;
    width: 50%;
}

.post.double-post .post-info .primary-cta {
    background-color: transparent;
}

.post.double-post .post-info .primary-cta:hover {
    background-color: #80C341;
}

.post.double-post .post-info .post-author .post-author-name {
    color: #F3F7EE;
}

.post.double-post .post-info .post-author .post-author-job {
    color: #F3F7EE;
}

.post:nth-child(2n+2) {
    float: right;
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.post .post-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.post .post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.post .post-image a img {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.post .post-info {
    padding: 30px;
}

.post .post-info .post-info-category {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    color: #80C341;
}

.post .post-info a.title-link {
    text-decoration: none;
}

.post .post-info .post-info-title {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    padding: 10px 0 20px;
}

.post .post-info .post-info-description {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 1.3;
    padding-bottom: 60px;
}

.post .post-info .action {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.post .post-info .action .primary-cta {
    padding: 11px 32px;
}

.post .post-info .post-author {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 45%;
    text-align: right;
}

.post .post-info .post-author .post-author-name {
    position: absolute;
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    right: 50px;
    bottom: 24px;
    opacity: 0.5;
}

.post .post-info .post-author .post-author-job {
    position: absolute;
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    right: 50px;
    top: 23px;
    opacity: 0.5;
}

.post .post-info .post-author .post-author-image-wrapper {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    float: right;
    overflow: hidden;
}

.post .post-info .post-author .post-author-image-wrapper .post-author-image {
    height: 100%;
    max-width: none;
    margin-left: -25%;
}

@media (min-width: 0) and (max-width: 1439px) {
    .post.double-post .post-image img {
        height: 100%;
        width: auto;
        max-width: none;
    }
    .post.double-post .post-info {
        padding: 20px;
    }
    .post .post-image {
        height: 160px;
    }
    .post .post-info {
        padding: 20px;
    }
    .post .post-info .action {
        bottom: 20px;
        left: 20px;
    }
    .post .post-info .action .primary-cta {
        padding: 11px 24px;
    }
    .post .post-info .post-author {
        right: 20px;
        bottom: 20px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .post {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 48.583%;
        float: left;
        margin-right: 2.83401%;
    }
    .post.double-post {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 48.583%;
        float: left;
        margin-right: 2.83401%;
    }
    .post.double-post .post-info .post-info-title {
        width: 100%;
    }
    .post.double-post .post-info .post-info-description {
        width: 100%;
    }
    .post:nth-child(2n+2) {
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .post {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        max-height: none;
        height: auto;
        width: 100%;
        max-width: 370px;
        min-height: 400px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .post.double-post {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .post.double-post .post-info {
        bottom: 0;
        height: auto;
        padding: 20px;
    }
    .post.double-post .post-info .post-info-title {
        width: 100%;
    }
    .post.double-post .post-info .post-info-description {
        width: 100%;
    }
    .post.double-post .post-info .primary-cta {
        left: 0;
        bottom: 0;
        position: relative;
    }
    .post.double-post .post-info .post-author {
        right: 20px;
        bottom: 20px;
    }
    .post:nth-child(2n+2) {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .post:not('double-post') .post-image {
        height: auto;
    }
    .post:not('double-post') .post-image img {
        position: relative;
        -webkit-transform: none;
                transform: none;
        left: 0;
        top: 0;
    }
    .post .post-info {
        width: 100%;
        float: none;
        height: 60%;
    }
    .post .post-info .post-info-title {
        padding: 10px 0;
    }
    .post .post-info .primary-cta {
        padding: 10px 20px;
        position: relative;
        left: 0;
        bottom: 0;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    .post .post-info .post-author {
        right: 20px;
        bottom: 20px;
        width: 45%;
    }
}

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