/* Fonts */
.ss-heading {
    max-width: 80%;
}

.ss-heading--blue {
    color: #02bae0;
}

.ss-heading--uppercase {
    text-transform: uppercase;
}

.ss-subheading {
    color: #fff;
    text-align: center;
    max-width: 80%;
    font-size: calc(17px + (20 - 17) * ( (100vw - 400px) / (992 - 400)));
}
/* Fonts END */

/** CTA Button **/
.ss-cta-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: 0 0;
    border-radius: 0;
    border-color: #fff;
    color: #fff;
    text-decoration: none;
    min-width: 200px;
    min-height: 40px;
    margin: 10px;
    border-style: solid;
    border-width: 1px;
    font-size: 13px;
    font-weight: 400;
    padding: 5px 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.ss-cta-button--black {
    border-color: #000;
    color: #000;
}

.ss-cta-button:after {
    font-family: SurfStitch-Icons!important;
    speak: none;
    font-style: normal;
    font-weight: 100;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\e913";
    margin-left: 3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ss-cta-button:hover,
.ss-cta-button:active,
.ss-cta-button:focus {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.ss-cta-button--black:hover,
.ss-cta-button--black:active,
.ss-cta-button--black:focus {
    background: #000;
    color: #fff;
    border-color: #000;
}
/** CTA Button END **/

/* Banner */
.ss-banner__content > *:not(:last-child) {
    margin: 0 0 20px;
}

.ss-banner--with-nav .ss-banner__content {
    padding-top: 50px;
}

.ss-banner__content--black {
    color: #000;
}

.ss-banner__content span {
    font-size: 14px;
    color: #fff;
    width: 475px;
    max-width: 95%;
    text-align: center;
    padding: 0 20px 20px;
}

.ss-banner__links--bottom {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 65%;
    height: 30%;
    align-items: center;
}

/* Banner LOGO */
.ss-banner__logo {
    margin-bottom: 20px;
    width: calc(300px + (400 - 300) * ( (100vw - 400px) / (992 - 400)));
}

.ss-banner__logo--sm {
    width: calc(250px + (325 - 250) * ( (100vw - 400px) / (992 - 400)));
}
/* Banner LOGO END */

.ss-banner__links {
    max-width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* TABLET */
@media (min-width: 768px) {
    .ss-banner--hero {
        padding-top: 75%;
    }

    .ss-banner--with-nav .ss-banner__content {
        padding-top: 80px;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .ss-banner {
        padding-top: 43.75%;
    }
}
/* Banner END */

/* Top Banner */
.ss-top-banner {
    padding: 0 10px;
}

.ss-top-banner__description {
    text-align: justify;
    padding: 10px 0;
    display: none;
}

.ss-top-banner__description p {
    margin-bottom: 10px;
}

/* DESKTOP */
@media (min-width: 992px) {
    .ss-top-banner__description {
        display: block;
    }
}
/* Top Banner END */


/*Tile*/
.ss-tile {
    margin: 10px 0;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 75%;
    position: relative;
}

.ss-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ss-tile__links {
    max-width: 100%;
    text-align: center;
}

.ss-tile__links--bottom {
    display: flex;
    width: 100%;
    position: absolute;
    top: 70%;
    height: 30%;
    align-items: center;
    justify-content: center;
}

.ss-tile__logo {
    width: calc(220px + (275 - 220) * ( (100vw - 400px) / (768 - 400)));
    max-width: 350px;
}

.ss-tile__logo--sm {
    width: calc(150px + (250 - 150) * ( (100vw - 400px) / (768 - 400)));
    max-width: 300px;
}

.ss-tile__logo--promo {
    width: 70%;
    max-width: 70%;
}

.ss-tile__content > *:not(:last-child){
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .ss-tile--left {
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .ss-tile--right {
        margin-left: 5px;
        margin-bottom: 5px;
    }
}
/*Tile END*/

/* Utility */
.ss-hide {
    display: none;
}

.ss-hover-opacity:hover {
    opacity: .9;
}

@media (max-width: 767px) {
    .ss-hide--mobile {
        display: none;
    }
}

@media (max-width: 992px) {
    .ss-hide--tablet {
        display: none;
    }
}
/* Utility END */
