/***************************************************************
# Tags
***************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p,
ol,
ul {
    margin: 1rem 0;
    line-height: 1.4;
}

html {
    font-family: 'Open Sans', sans-serif;
    background: #F98040;
    color: white;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scene__layer {
    position: absolute;
    top: -3% !important;
    left: -3% !important;
    width: 106%;
    height: 106%;
}

.scene__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient {
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.text {
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 5em;
    color: #ED6B24;
    z-index: 2;
    text-transform: uppercase;
    text-shadow: 0.05em 0.05em 0 white;
    font-weight: 800;
    text-align: right;
    line-height: 0.8;
}

.text span {
    font-size: 0.6em;
    text-shadow: none;
}




@media (max-width: 1199.98px) {

    .text { line-height: 0.9; }

}

@media (max-width: 991.98px) {}
@media (max-width: 767.98px) {

    .text { font-size: 4em; }
    
}
@media (max-width: 575.98px) {
    
    .text { font-size: 3em; }

}