/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; }

/* Fonts */
/**
 * Usage
 * ----------------------------
 * font-family: 'Futura Std';
   font-weight: 600;
   font-style: normal;
 * ----------------------------
 */
 @font-face {
    font-family: 'Futura Std';
    src: url('fonts/FuturaStd-Medium.woff2') format('woff2'),
        url('fonts/FuturaStd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
 
/*
 * ──────────────────────────────────────────────────────── GLOBAL COMPONENTS ─────
 */
.main-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 600px;
    box-sizing: border-box;
    overflow: hidden;
    visibility: hidden;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    opacity: 0;
}
.logo img {
    position: absolute;
    top: 322px;
    left: 50%;
    width: 172px;
    height: 17px;
    transform: translateX(-50%);
}
.swipe-arrow {
    position: absolute;
    bottom: 42px;
    left: 50%;
    width: 10px;
    height: 15px;
    cursor: pointer;
    transform: translateX(-50%);
}
.swipe-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    content: '';
    /* background-color: red; */
    opacity: 0.3;
}

/*
 * ──────────────────────────────────────────────────────── GALLERY COMPONENT ─────
 */
.gallery-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    overflow: hidden;
    /* background-color: red; */
    cursor: pointer;
}
.gallery-item-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    overflow: hidden;
}
.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 298px;
    background-size: cover;
    background-position: center top;
}
/*
 * ─────────────────────────────────────────────────────── CAROUSEL COMPONENT ─────
 */
.carousel-wrapper {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 234px;
    overflow: hidden;
    /* background-color: pink; */
}
.carousel-items {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 162px;
    height: 162px;
    overflow: hidden;
    /* background-color: red; */
    transform: translateX(-50%) rotateZ(0.01deg);
    /* outline: 1px dashed red; */
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    background-size: cover;
    background-position: center center;
}
.left-arrow,
.right-arrow {
    position: absolute;
    top: 70px;
    cursor: pointer;
}
.left-arrow {
    left: 35px;
    cursor: pointer;
}
.right-arrow {
    position: absolute;
    right: 35px;
}
.left-arrow::after,
.right-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    content: '';
    /* background-color: red; */
    opacity: 0.3;
}
.cta {
    position: absolute;
    bottom: 25px;
    left: 50%;
    /* background-color: red; */
    padding: 6px 8px;
    font-family: 'Futura Std';
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #000000;
    transform: translateX(-50%);
}
.exit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* background-color: blue; */
    opacity: 0.3;
}


