/* Intro */

.c-intro-slide {
    position: relative;
    min-height: 90vh;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 80px;
}

.c-intro-slide__top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.c-intro-slide__title {
    width: 100%;
    max-width: 350px;
}

.c-intro-slide__subtitle {
    padding: 0;
}

.c-intro-slide__arrow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    background-image: url('../images/icon-chevron-down.svg');
    background-size: contain;
}

.c-intro-slide__body {
    padding: 0 10px;
    margin-top: 20px;
}

.c-intro-slide__body-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 30px;
}

@media (min-width: 500px) {
    .c-intro-slide__body-container {
        padding: 35px;
        max-width: 524px;
    }
}

@media (min-width: 700px) {
    .c-intro-slide__title {
        max-width: 480px;
    }
}

.c-intro-slide__body strong {
    color: #b14b4f;
    font-size: 24px;
}

/* Pad image element */

@media (min-width: 1200px) {
    .c-image-panel__image-el {
        left: 20%;
    }
}

@media (min-width: 1480px) {
    .c-image-panel__image-el {
        left: 30%;
    }
}

/* Slide */

.c-slide {
    padding-top: 20px;
    padding-bottom: 20px;
}

.c-slide__content {
    color: #333;
}

.c-slide__content-arrow {
    border-width: 25px 35px 25px 0;
}

.c-slide__title {
    color: #b14b4f;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .05em;
    font-size: 22px;
}

/* Change order of slide image */

@media only screen and (max-width: 30em) {
    .c-slide {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-negative: 0;
    }
    .c-slide__content {
        -ms-flex-negative: 0;
    }
    .c-slide__image {
        width: 100%;
        padding-bottom: 93.33333333333333%;
        /* height: 320px; */
        -ms-flex-negative: 0;
        pointer-events: none;
        position: relative;
        z-index: 2;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -moz-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: -15%;
    }
    .c-slide__image .o-ratio {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    .c-slide__content-arrow {
        display: none;
    }
    .c-slide__content {
        padding-bottom: 15%;
    }
    .c-slide[data-id="0"] .c-slide__image,
    .c-slide[data-id="3"] .c-slide__image,
    .c-slide[data-id="2"] .c-slide__image {
        margin-top: -23%;
    }
}

@media (min-width: 700px) {
    .c-slide__title {
        font-size: 30px;
    }
}

/* CTA */

.c-cta-slide {
    /* -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 70vh;
}

.c-cta-slide>* {
    width: 100%;
}

.c-cta-slide__image {
    padding-bottom: 0;
    margin-bottom: 0;
}

.c-cta-slide__callout {
    padding: 0;
}

/* Button */

.c-button {
    background-color: #fff;
    color: #287c8a;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .05em;
    font-size: 20px;
}

.c-button:hover,
.c-button:focus {
    color: #b14b4f;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, .125);
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .125);
}

.c-button:active {
    background-color: #3f531b;
}