html body {
    font-size: 14px;
    line-height: 1.42857143;
    overflow-x: hidden;
}

/* =================================================================================
    Button
================================================================================= */
body .btn {
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    padding: 6px 12px;
    text-transform: uppercase;
}
.btn.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #333;
}
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default.active {
    color: #fff;
    background-color: #333;
    border-color: #000;
}

/* =================================================================================
    Parallax
================================================================================= */
.parallax {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    min-height: 600px;
    padding: 80px 0;
    position: relative;
    text-transform: uppercase;
}
.parallax-body {
    max-width: 300px;
}
.parallax-body h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: #FFFFFF;
    font-size: 40px;
    font-weight: normal;
    line-height: 60px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    word-break: break-word;
}
.parallax-body .parallax-content {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 28px;
}
.content-layers-item.parallax a:hover {
    text-decoration: none;
}

@media only screen and (min-width: 300px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.5) {
    .parallax {
        background-size: cover !important;
    }
}

@media screen and (max-width: 767px) {
    .parallax {
        min-height: 400px;
        padding: 60px 0;
    }
}

/* =================================================================================
    Large full bleed
================================================================================= */
div.large-full-bleed .card-layer {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
}
div.large-full-bleed .layer-title {
    font-size: 48px;
    padding-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}
div.large-full-bleed .layer-title:after {
    background: #FFFFFF;
    content: "";
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
    width: 300px;
}
div.large-full-bleed .sub-title {
    font-size: 20px;
}

/* Large full bleed - custum title */
div.large-full-bleed-white-box .sub-title * {
    color: #fff;
}
div.large-full-bleed-white-box .sub-title h2 {
    font-size: 32px;
    font-weight: bold;
}
div.large-full-bleed-white-box .sub-title {
    font-size: 16px;
}


@media screen and (min-width: 768px) {
    div.large-full-bleed {
        height: 50vh !important;
        min-height: 400px;
    }
}
@media screen and (max-width: 767px) {
    div.large-full-bleed-custom-title .layer-title {
        font-size: 32px;
    }
    div.large-full-bleed-custom-title .sub-title {
        font-size: 17px;
    }
}



/* =================================================================================
    Video Responsive
================================================================================= */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}