@import url('https://fonts.googleapis.com/css?family=Exo+2:600');
@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
    margin: 0;
    padding: 0;
}

body {
    background: url(../img/background.jpg) no-repeat fixed;
    background-size: cover;
}

/* WEBSITE */

#website {
    width: 1030px;
    height: auto;
    min-height: 100vh;
    margin-top: 0px;
    margin-left: 0px;
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1100px) {
    #website {
        width: 100vw;
    }
}

@media (min-width: 2300px) {
    #website {
        width: 45vw;
    }
}

@media (max-width: 2020px) and (max-height: 1180px) {
    #website {
        width: 100vw;
    }
}

/* LOGO */

#logo {
    width: 100%;
    height: 150px;
    text-align: center;
    padding-bottom: 30px;
}

#logo > img {
    width: 320px;
    margin-top: 20px;
}

/* CONTENT */

#content {
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    text-align: center;
}

#content > p:not(:first-child) {
    margin-top: 35px;
}

#content > ul {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 10px;
    list-style-type: circle;
}

#content > a > .menu_pdf {
    margin-top: 35px;
    background-color: #D8A441;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-radius: 10px;
}

#content > a > .menu_pdf:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

/* MENU - BOOKBLOCK */

.bb-custom-wrapper {
	width: auto;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 0px;
}

.bb-bookblock {
	width: inherit;
    height: 671px;
	max-height: 671px;
	margin: 0 auto;
	position: relative;
	z-index: 100;
	-webkit-perspective: 1300px;
	perspective: 1300px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.bb-item img {
    width: inherit;
    height: inherit;
}

@media (max-width: 1100px) {
    .bb-bookblock {
        height: 60vw;
    }
}

/* CONTACT INFO */

#contact_info {
    margin-top: 30px;
    margin-bottom: 50px;
}

#contact_info > p:not(:first-child) {
    margin-top: 20px;
}

#contact_info > p > span {
    display: block;
    font-size: 18px;
    line-height: 30px;
}

/* CONTACT FORM */

#contact_form {
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
}

#contact_form > div {
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

#contact_form > div:nth-child(3), #contact_form > div:nth-child(4) {
    max-width: none;
}

@media (min-width: 800px) {
    #contact_form > div:nth-child(1), #contact_form > div:nth-child(2) {
        width: calc(50% - 18px);
    }
    
    #contact_form > div:nth-child(1) {
        display: inline-block;
        margin-right: 30px;
    }
    
    #contact_form > div:nth-child(2) {
        display: inline-block;
    }
}

#contact_form > div:not(:first-child) {
    margin-top: 15px;
}

#contact_form > div > input {
    display: block;
    width: 100%;
    height: 35px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid black;
    padding-left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

#contact_form > div > textarea {
    display: block;
    width: 100%;
    height: 90px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid black;
    resize: vertical;
    padding-top: 10px;
    padding-left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

#contact_form > div > button {
    padding: 10px;
    background-color: #4B6B9A;
    color: white;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}

#result {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 1px solid black;
    padding: 15px 0;
    color: white;
    text-align: center;
    margin-top: 30px;
}

.green {
    background-color: #63B660;
}

.red { 
    background-color: #971116;
}

/* CONTACT MAP */

#contact_map {
    margin-top: 30px;
    border: 1px solid black;
    width: 100%;
    height: 250px;
}

#map {
    width: inherit;
    height: inherit;
}

/* NAV */

#nav {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.nav_icon {
    display: block;
    position: relative;
    width: 220px;
    margin: 20px 0 20px 0;
}

.nav_icon > img {
    border-radius: 50%;
    border: 2px solid black;
    width: 200px;
    height: 200px;
    margin: 0 0 0 10px;
}

.nav_icon > span {
    position: absolute; bottom: 40px; left: 43px;
    width: 140px;
    padding: 10px 0;
    text-align: center;
    background-color: lightgrey;
    color: black;
    opacity: 0.9;
    font-size: 19px;
    font-family: 'Exo 2', sans-serif;
    border-radius: 5px;
}

/* COUNTER */

#counter {
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 10px;
}