/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   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,
main, 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, main, menu, nav, section {
	display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
menu, 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;
}



/* PERSONALISED normalize.css v2.1.3 | MIT License | git.io/normalize */
img,legend{border:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body,figure{margin:0}a{background:0 0}a:focus{outline:dotted thin}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}


@font-face {
    font-family: "NORD";
    src: url('../../fonts/Nord-Regular.woff2') format('woff2'),
        url('../../fonts/Nord-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url('../../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: regular;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Gilroy", "Helvetica";
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

.btn {
    font-family: "NORD";
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    background: #682D44;
    padding: 1em;
    border-radius: 8px;
    color: #fff;
    line-height: 1;
    margin: 0;
    height: auto;
    vertical-align: middle;
    transition: background .3s ease;
}
.btn:hover {
    background: #4F2234;
}

.container {
    width: clamp(300px, 90%, 2520px);
    margin: 0 auto;
}


header {
    position: absolute; left: 0; right: 0; top: 0; z-index: 9;
    margin-top: .5vw;
    padding-top: 5vw;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 260px;
}


.hero {
    position: relative;
    margin-top: .5vw;
    margin-left: .5vw;
    width: calc(100vw - 1vw);
    height: calc(100vh - 1vw);
    background: #C3BDB4;
    border-radius: 8px;
    background: #C3BDB4 url("../../images/LP/hero-silenzia.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 33.3%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.5));
}

h1 {
    position: absolute; left: 50%; bottom: 8rem; z-index: 9;
    width: 95%;
    font-family: "NORD";
    color: #fff;
    text-align: center;
    font-size: 2rem;
    line-height: 1.05;
    transform: translateX(-50%);
}

.address {
    position: absolute; left: 50%; bottom: 5vw; z-index: 9;
    text-align: center;
    color: #fff;
    transform: translateX(-50%);
}

.address a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

@media screen and (max-width: 767px) {
    .btn {
        font-size: .82rem;
    }
}


@media screen and (max-width: 559px) {
    body {
        font-size: 12px;
    }
    .btn {
        font-size: .75rem;
    }
    .hero {
        border-radius: 6px;
        margin-top: 1vw;
        margin-left: 1vw;
        width: calc(100vw - 2vw);
        height: calc(100vh - 2vw);
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    header img {
        width: 220px;
        margin: 1.5rem auto;
        order: 2;
    }

    h1 {
        bottom: 8rem;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1024px) {
    
    
    header {
        padding-top: 2.5vw;
    }

    h1 {
        bottom: 12vw;
    }

    .address {
        bottom: 2.5vw;
    }
}
@media screen and (min-width: 1920px) {
    
    h1 {
        font-size: 2.5rem;
    }
}