@import url('https://fonts.googleapis.com/css?family=Playfair+Display');

html,
body {
    padding: 0px;
    margin: 0px;
    height: 100%;
    overflow-x: hidden;
}

body {
    opacity: 0;
    left: 0px;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

body.unload {
    opacity: 0 !important;
    left: 100%;
    position: relative;
    -webkit-transition: opacity 0.7s, left 0.9s;
    transition: opacity 0.7s, left 0.9s;
}

* {
    font-family:
        /*"Times New Roman", Times, serif;*/
        'Playfair Display', serif;
    font-weight: 100;
}

#menu {
    width: auto;
    height: 100vh;
    position: fixed;
    left: -160px;
    z-index: 50;
    background-color: rgb(140, 1, 55);
    -webkit-transition: left 0.7s;
    transition: left 0.7s;
}

#menu.open {
    left: 0px;
    position: fixed;
}

#menu .logo {
    width: 100px;
    margin: 20px auto;
    left: 0px;
    right: 0px;
    display: block;
    padding: 0px 30px;
}

#menu .menuItem {
    display: block;
    padding: 10px 30px;
    text-align: center;
    color: white;
    cursor: pointer;
}

#menu .menuItem:hover {
    color: black;
}

#menu .menuButton {
    display: block;
    position: absolute;
    left: calc(100% + 5px);
    top: 5px;
    cursor: pointer;
}

#menu .menuButton span {
    width: 35px;
    height: 3px;
    background-color: lightgray;
    opacity: 0.8;
    display: block;
    margin: 6px 0;
    transition: transform 0.4s, opacity 0.4s;
}

#menu.open .menuButton span:nth-of-type(1) {
    opacity: 1;
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
}

#menu.open .menuButton span:nth-of-type(2) {
    opacity: 0;
}

#menu.open .menuButton span:nth-of-type(3) {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-6px, -8px);
}

.section {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

#homeSection {
    height: 100%;
}

.pageTitle {
    font-size: 3.5vw;
    width: 100%;
    text-align: center;
    line-height: 1em;
}

.heading {
    font-size: 4vw;
    margin: 0.2em 0px;
    width: 100%;
    text-align: center;
}

.info {
    width: 100%;
    font-size: 1.5vw;
    text-align: center;
    padding: 25px;
    box-sizing: border-box;
    font-weight: 200;
    margin: 0.2em 0px;
}

.buttonParent {
    text-align: center;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
}

.infoButton {
    font-size: 2vw;
    border-style: solid;
    color: white;
    text-align: center;
    margin: auto;
    left: 0px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0);
    position: relative;
    padding: 10px;
    cursor: pointer;
    outline: 0;
    border-color: rgb(140, 1, 55);
    -webkit-transition: opacity 0.7s, background-color 0.5s, color 0.5s !important;
    transition: opacity 0.7s, background-color 0.5s, color 0.5s, border-color 0.3s !important;
}

.infoButton:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(140, 1, 55, 1);
}

.scrollDown .infoButton {
    color: black;
    font-size: 1vw;
    padding: 8px;
    -webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
}

.scrollDown .infoButton:hover {
    color: rgba(140, 1, 55, 1);
    border-color: white;
}


.hidden {
    visibility: hidden;
}

/*Footer section*/
footer {
    background-color: rgb(140, 1, 55);
    display: block;
    padding-top: 1em;
}

footer .footerChild {
    display: flex;
    justify-content: space-between;
    vertical-align: bottom;
    width: 95%;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: white;
    margin: auto;
    top: 1em;
}

footer .footerChild div {
    width: 30%;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

footer .contact a {
    display: block;
    color: white;
    text-decoration: none;
    text-align: center;
}

footer .footerChild .infotext {
    margin-top: 0px;
}

footer .infotext a {
    color: white;
    margin-top: 0px;
    text-align: left;
    line-height: 2;
    vertical-align: top;
}

footer .logo img {
    width: 80%;
}

footer .contact,
footer .contact a,
footer .infotext a {
    text-align: left;
    vertical-align: middle;
    line-height: 50px;
}

footer .contact {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

footer .contact .detail,
footer .infotext a {
    display: flex;
    justify-content: space-between;
    margin: 4px 0px;
}

footer .contact .detail i:hover {
    transform: scale(1.18);
}

footer .contact .far,
footer .contact .fab,
footer .contact .fas {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background-color: white;
    font-size: 30px;
    color: rgb(140, 1, 55);
    -webkit-transition: transform 0.6s;
    transition: transform 0.6s;
}

footer .copyright {
    margin: 0px;
    padding: 0.3em;
    color: white;
    width: 100%;
    text-align: center;
}
