/***************************************************************
# Tags
***************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Catamaran', sans-serif;
}

.wrapper {
    height: 100vh;
    padding: 1.6rem;
}

.frame {
    position: relative;
    height: 100%;
    border: 0.8rem solid #e86210;
}

.icon {
    width: 10rem;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 80%;
}

.icon--hidden {
    display: none;
}

.text {
    text-align: center;
    color: #e86210;
    font-weight: bold;
    background: white;
    position: absolute;
    bottom: 0;
    width: 45em;
    margin-bottom: -1rem;
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    text-decoration: none;
    display: block;
}

.title {
    text-transform: uppercase;
    font-size: 6rem;
}

.subtitle {
    font-size: 2rem;
}

#slider {
    margin: 20px auto;
}



/***************************************************************
# Responsive
***************************************************************/

@media (max-width: 1199.98px) {
    .text { width: 42em; }
    .title {
        font-size: 5rem;
    }
    .subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .text { width: 36em; }
    .title {
        font-size: 4rem;
    }
    .subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .text { width: 28em; }
    .title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.4rem;
    }
    .wrapper { padding: 1rem; }
    .frame { border-width: 0.5rem; }
}

@media (max-width: 575.98px) {
    .text { width: 20em; }
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}