/* 
    dm zena
    by Operon Design
*/

/* Basics */

.container {
    max-width: 1248px;
    padding: 24px;
    margin: 0 auto;
    width: 100%;
}
.narrow-container {
    width: 100%;
    max-width: 748px;
    padding: 24px;
    margin: 0 auto;
}

/* Typography */


html {
    font-size: 20px;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #fdf7f7;
    color: #181614;
}
h1, h2, h3{
    font-family: 'Martel', serif;
 
}
.intro {
    font-size: 24px;
    font-size: 1.2rem;
    margin-top: 24px;
    padding-top: 24px;
    text-align: center;
}
.intro::before {
    content: ' ';
    height: 4px;
    width: 30%;
    position: absolute;
    top: 0px;
    left: 35%;
    background-color: #aa272a;
}

/* Header */


header {
    background-color:#ffeced;
    border-bottom: 5px solid #ffcac9;
    color: #b36662;
    

    
}
header > img {
    width: 49.99%;
    height: auto;
    
}
h1 {
    font-size: 92px;
    font-size: 4.6rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}
header > .half {
    position: relative;
    left: -15%;
}
h2 {
    font-size: 36px;
    font-size: 1.8rem;
}
h3.overtitle {
    font-size: 18px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Article */

h2 {
    margin-bottom: 16px;
    padding-top: 24px;
    margin-top: 16px;
    position: relative;
    text-align: center;
}
h2::before {
    content: ' ';
    height: 4px;
    width: 30%;
    position: absolute;
    top: 0px;
    left: 35%;
    background-color: #aa272a;
}
header h2::before {
    display: none;
}
header h2 {
    text-align: left;
    padding-top: 8px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.article h3 {
    font-weight: 900;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 24px;
    font-size: 1.2rem;
}
.article p {
    margin-bottom: 16px;
}
.article img {
    width: 70%;
    margin: 0 auto; 
    max-width: 300px;
}
.gallery {
    margin-bottom: 36px;
    margin-top: 36px;
}
.arrow {
    width: 24px;
    height: 24px;
    transform: rotate(-135deg);
    border-right: 5px solid #aa272a;
    border-top: 5px solid #aa272a;
}
.gallery .arrow {
    position: absolute;
    top: 40%;
    cursor: pointer;
    color: #aa272a;
    left: -64px;
}
.gallery .fa-angle-right {
    left: auto;
    right: -64px;
    transform: rotate(48deg);
}
.white-bg .narrow-container {
    padding-bottom: 0px;
}
.gallery p.cta {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 16px;
    font-size: 14px;
    font-size: 0.7rem;
    color: #aa272a;
    opacity: .5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.gallery > div:hover p.cta {
    opacity: 1;
}


@media screen and (max-width: 1025px) {
    header > .half {
        left: auto;
        order: 1;
        text-align: center;
        padding: 24px;
    }
    header > .half::before {
        position: absolute;
        bottom: -5vw;
        width: 100%;
        z-index: 10;
        height: 5vw;
        content: ' ';
        background: linear-gradient(to bottom, #ffeced, transparent);
    }
    header h2 {
        text-align: center;
        font-weight: 600;
    }
    header > img {
        order: 2;
        width: 100%;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 24px;
    }
    .slick-slide .half{
        width: 100%;
    }
    .slick-slide img.half {
        width: 50%;
        margin: 0 auto;
    }
    .gallery .arrow {
        top: 50px;
        left: -6px;
    }
    .gallery .fa-angle-right {
        left: auto;
        right: -6px;
    }
}