@charset "UTF-8";

:root {
    --color-aqua: 132,210,231;
    --color-black: 0,0,0;
    --color-blue: 0,134,181;
	--color-white: 255,255,255;
}

html {
	height: 100%;
    color: rgb(var(--color-white));
    font-family: 'Raleway', sans-serif;
}

body {
	width: 100%;
	height: 100%;
    background: rgb(var(--color-black));
}

* {
    position: relative;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

img, iframe {
	display: block;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, button, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
}
		
li {
	list-style: none;
}

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

h1, h2, h3, h4 {
	font-weight: normal;
}

button {
	background: none;
	cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

*:focus {
    outline: 0;
}


/*************************************
	Header
 *************************************/


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    max-width: 1920px;
    height: 150px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    padding: 0 100px;
    z-index: 1000;
}

header .logo {
    width: 122px;
    height: 60px;
}


/*************************************
	Nav
 *************************************/


header nav ul {
    display: flex;
}

header nav li {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 16px;
    text-transform: uppercase;
}

header nav li + li {
    margin-left: 20px;
}

header div.sidebar {
    display: none;
}


/*************************************
	Sections
 *************************************/


.container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
    height: 100%;
	min-height: 100%;
}

.page {
	flex: 1 0 auto;
	display: block;
	position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 150px 100px 0 100px;
}

h2 {
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 0.05em;
    line-height: 42px;
    text-align: center;
    text-shadow: 0 0px 60px rgba(var(--color-black),0.75), 0 0px 45px rgba(var(--color-black),0.75), 0 0px 30px rgba(var(--color-black),1);
    text-transform: uppercase;
    margin-bottom: 50px;
}

h3 {
    display: block;
    width: 100%;
    background: rgb(var(--color-blue));
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 0.05em;
    line-height: 42px;
    text-align: center;
    text-transform: uppercase;
    padding: 50px 25px;
}

p:last-child {
    margin-bottom: 0 !important;
}

strong {
    font-weight: 700;
}

sup {
	display: inline-block;
	position: relative;
	font-size: 0.6em;
	vertical-align: top;
	margin-top: -0.3em;
}

.bt {
	display: inline-block;
	background: rgb(var(--color-aqua));
    box-shadow: 0 0 10px rgba(var(--color-black),0.5);
	color: rgb(var(--color-black));
    font-weight: 700;
	font-size: 18px;
    letter-spacing: 0.05em;
	line-height: 18px;
    text-align: center;
	text-transform: uppercase;
    padding: 18px 36px;
}

section.header,
section.interior {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr auto auto;
    justify-items: center;
    align-content: space-between;
    width: 100%;
    height: calc((618 / 1720) * (100vw - 200px));
}

section.interior {
    grid-template-rows: 1fr auto;
}

section.header picture,
section.interior picture {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

section.header picture img,
section.interior picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.header picture:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(var(--color-black),0.5);
}

section.header .bt,
section.interior .bt {
    margin-bottom: 100px;
}

section.location {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

section.location img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: left center;
}

section.location div.content {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    min-height: 25vw;
    padding: 100px 100px 100px 0;
}

section.location ul {
    margin-bottom: 50px;
}

section.location li {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    padding: 0 0 0 32px;
}

section.location  ul li + li {
    margin-top: 12px;
}

section.location li:before {
    content: "\25A0";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(var(--color-aqua));
    font-size: 1.667em;
    margin-top: -1px;
}

section.location div.content .bt {
    margin-left: 32px;
}

section.contact {
    width: 100%;
    padding-top: 50px;
}

section.contact p {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
}


/*************************************
	Footer
 *************************************/


footer {
    width: 100%;
    max-width: 1920px;
    background: rgb(var(--color-footer));
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 50px 100px;
}

footer span {
    display: inline-block;
}

footer span + span:before {
    content: "-";
    display: inline-block;
    padding: 0 0.5em;
}

@media screen and (max-width: 1920px) {
    h2 {
        margin-bottom: calc((50 / 1920) * 100vw);
    }
    
    h3 {
        padding-top: calc((50 / 1920) * 100vw);
        padding-bottom: calc((50 / 1920) * 100vw);
    }
    
    section.header .bt,
    section.interior .bt {
        margin-bottom: calc((100 / 1920) * 100vw);
    }
    
    section.location div.content {
        padding: calc((100 / 1920) * 100vw) calc((100 / 1920) * 100vw) calc((100 / 1920) * 100vw) 0;
    }
}

@media screen and (max-width: 1366px) {
    header,
    .page,
    footer {
        padding-right: 50px;
        padding-left: 50px;
    }
    
    section.header,
    section.interior {
        height: calc((618 / 1720) * (100vw - 100px));
    }
}

@media screen and (max-width: 1280px) {
    header div.sidebar {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 50px;
        height: 50px;
        right: 50px;
        top: 50%;
        background: rgb(var(--color-blue));
        cursor: pointer;
        transform: translateY(-50%);
    }
    
    header div.sidebar > div {
        position: relative;
        width: 30px;
        height: 24px;
    }

    header div.sidebar span {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        background: rgb(var(--color-white));
        transition: background 0.3s 0.3s, opacity 0.3s 0.3s, top 0.3s 0.3s, transform 0.3s;
    }
    
    body.open {
        height: 100vh;
        overflow: hidden;
    }

    body.open header div.sidebar span {
        transition: background 0.3s, opacity 0.3s, top 0.3s, transform 0.3s 0.3s;
    }

    header div.sidebar span:nth-child(1) {
        top: 0px;
    }

    header div.sidebar span:nth-child(2) {
        top: calc(50% - 2px);
    }

    header div.sidebar span:nth-child(3) {
        top: calc(100% - 4px);
    }

    body.open header div.sidebar span:nth-child(1) {
        top: calc(50% - 2px);
        transform: rotate(45deg);
    }

    body.open header div.sidebar span:nth-child(2) {
        opacity: 0;
    }

    body.open header div.sidebar span:nth-child(3) {
        top: calc(50% - 2px);
        transform: rotate(-45deg);
    }

    header nav {
        position: absolute;
        width: calc(100vw - 100px);
        height: 0;
        left: 50px;
        top: 150px;
        background: rgba(var(--color-black),0.9);
        overflow: hidden;
        transition: height 0.8s;
    }
    
    header nav ul {
        display: flex;
        flex-flow: column nowrap;
        align-items: flex-end;
        padding: 25px;
    }

    header nav li + li {
        margin-top: 16px;
        margin-left: 0;
    }
    
    body.open header nav {
        height: calc((618 / 1720) * (100vw - 100px));
    }
    
    footer span:nth-child(1) {
        display: block;
    }
    
    footer span:nth-child(2):before {
        content: none;
    }
}

@media screen and (max-width: 960px) {
    body.open header nav {
        height: calc(100vw - 100px);
    }
    
    section.header,
    section.interior {
        grid-template-rows: auto 1fr auto;
        height: calc(100vw - 100px);
    }
    
    section.interior {
        grid-template-rows: 1fr auto;
    }
    
    h2 {
        grid-row-start: 1;
        line-height: 52px;
        text-shadow: 0 0px 30px rgba(var(--color-black),1), 0 0px 30px rgba(var(--color-black),1);
        padding: 50px 100px;
    }
    
    h3 {
        padding: 50px;
    }
    
    section.header .bt,
    section.interior .bt {
        margin-bottom: 50px;
    }
    
    section.location {
        grid-template-columns: auto;
    }
    
    section.location > div {
        min-height: calc(100vw - 100px);
    }
    
    section.location > div:last-child {
        grid-row-start: 1;
    }
    
    section.location div.content {
        padding: 50px 50px 50px 0;
    }
    
    section.location div.content .bt {
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    header {
        height: 100px;
    }

    header .logo {
        width: 102px;
        height: 50px;
    }
    
    header div.sidebar {
        right: 25px;
    }
    
    header nav {
        width: calc(100vw - 50px);
        left: 25px;
        top: 100px;
    }
    
    body.open header nav {
        height: calc((440 / 375) * 100vw);
    }
    
    .page {
        padding-top: 100px;
    }
    
    header,
    .page,
    footer {
        padding-right: 25px;
        padding-left: 25px;
    }
  
    section.header,
    section.interior {
        height: calc((440 / 375) * 100vw);
    }
    
    h2 {
        font-size: 36px;
        line-height: 40px;
        padding: 40px 10px;
    }
    
    h3 {
        font-size: 30px;
        line-height: 36px;
        padding: 40px 10px;
    }
    
    .bt {
        font-size: 16px;
        line-height: 16px;
        padding: 16px 32px;
    }

    section.location div.content {
        padding: 50px 0;
    }
    
    section.location li {
        font-size: 16px;
    }
    
    section.contact p {
        font-size: 16px;
    }
    
    footer {
        line-height: 24px;
    }
    
    footer span {
        display: block;
    }
    
    footer span + span:before {
        content: none;
    }
}