@import "modal.css";

html,
body {
    min-height: 100%;
    margin: 0;
    font-style: normal;
    font-size: 18px;
    line-height: 1.4em;
    font-family: Brandon, sans-serif;
    background-color: #F2F2F2;
    color: #404040;
}

body {
    display: flex;
    flex-direction: column;
}

* {
    box-sizing: border-box;
}

a {
    cursor: pointer;
    color: inherit;
}

button {
    cursor: pointer;
    margin: 0;
    background-color: transparent;
    border: 0;
    outline: none;
    font-size: inherit;
    font-weight: inherit;
    padding: 0;
    font-family: inherit;
}

.button {
    cursor: pointer;
    margin: 0;
    background-color: transparent;
    border: 0;
    outline: none;
    font-size: inherit;
    font-weight: inherit;
    padding: 10px 14px;
    font-family: inherit;
    background-color: rgba(237, 214, 95, 1);
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

a {
    text-decoration: none;
}

a:visited {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.4em;
    font-family: Cinzel, serif;
}

h1 {
    letter-spacing: 0.7em;
    margin-right: -0.7em;
    font-size: 2.8em;
    line-height: 1;
    margin-top: 75px;
}

h3 {
    font-size: 1.2em;
    line-height: 1.6em;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
}

.p1 {
    padding: 2px;
}

.p2 {
    padding: 4px;
}

.p3 {
    padding: 8px;
}

.p3v {
    padding-right: 8px;
    padding-left: 8px;
}

.p4 {
    padding: 16px;
}

.mt5 {
    margin-top: 32px;
}

.modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}

.modal-backdrop {
    background-color: white;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-frame {
    background-color: #EDD65F;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 11px;
    right: 15px;
    padding: 3px;
    font-size: 22px;
    background-color: transparent;
}

.btn {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    margin-top: 10px;
}

#left-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 72px;
    background-color: #F2F2F2;
}

#right-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 72px;
    background-color: #F2F2F2;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 72px;
    padding-right: 72px;
    background-color: #F2F2F2;
    z-index: 2;
}

#menu {
    margin-left: 1.4em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 50px;
    position: absolute;
    width: 100%;
    background-color: #F2F2F2;
}

#menu > a {
    line-height: 39px;
    margin: 0 15px;
    padding: 0 5px;
    color: inherit;
    font-family: Brandon, sans-serif;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0.6;
}

#menu > a:hover {
    color: #CFB015;
    opacity: 1;
}

#menu > a.active {
    font-weight: bold;
    opacity: 1;
}

#title {
    align-content: space-between;
    margin-top: 10%;
    margin-right: -0.7em;
    z-index: 1;
    font-weight: bold;
}
#subtitle{
    background-color: yellow;
}

#address-footer {
    margin: 70px 20px 50px;
    font-size: 16px;
    line-height: 1.5;
    text-align: right;
}

#footer {
    padding: 14px;
    background-color: #363636;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.09em;
    z-index: 1;
    position: relative;
}

#page-content {
    max-width: 1600px;
    flex: 1;
    align-self: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}
#page-content > div > div > p:nth-child(1){
    font-weight: bold;
}
#page-content > div > div > p:nth-child(3){
    font-weight: bold;
}
/* Animations */
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Responsive */
@media all and (max-width: 760px) {
    html,
    body {
        font-size: 13px;
        line-height: 1.1em;
    }

    .sm-hide {
        display: none !important;
    }

    .sm-mx-1 {
        margin-right: 2px !important;
        margin-left: 2px !important;
    }

    .sm-px-1 {
        padding-right: 2px !important;
        padding-left: 2px !important;
    }
    #title {
        transform: translateX(-50%);
        margin: 50%;
        align-items: center;
        z-index: -1;
    }

    #header > div.flex.align-items-center > div.flex > p {
        display: none;
    }

    .tns-controls {
        display: none;
    }

    .tns-nav {
        display: none;
    }



    .parallax-grid > div:not(:last-child) {
        margin-right: 0px !important;
    }

    #menu {
        margin-left: 0px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-top: 6px;
        padding-bottom: 50px;
        position: absolute;
        width: 100%;
        background-color: #F2F2F2;
    }
    #header > div.flex.align-items-center {
        z-index: -1;
    }
    #tns1-item0, #tns2-item1, #tns3-item2 {
        height: 204px;
    }
}

