/*

:root {
    --page-width: 1300px;
}

.page-title {
    width: 100%;
    height: 300px;
    background-repeat: repeat-x;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-title.location {
    height: 500px;
    position: relative;
}

.page-title h1 {
    width: 100%;
    max-width: var(--page-width);
    font-size: 2em;
    margin: 0;
    color: #fff;
    letter-spacing: 0.05em;
}

@media (max-width: 1300px) {
    .page-title {
        padding: 0 20px;
        height: 200px;
        background-size: cover;
    }
    .page-title.location {
        padding: 0;
        height: 300px;
    }
    .page-title h1 {
        max-width: calc(100% - 40px);
    }
}

.page-title.location h1 {
    width: initial;
    max-width: initial;
    text-align: center;
    font-size: 1.5em;
    color: #000;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 40px;
    border-top-left-radius: 10px;
}

.page-title h1 span {
    display: block;
    font-size: 1.3em;
}

.page-title.location h1 span {
    font-size: 1.5em;
}

.page-container {
    display: flex;
    justify-content: center;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    padding-bottom: 60px;
    max-width: var(--page-width);
    font-size: 1.2em;
    line-height: 1.4em;
}

.page-heading {
    font-size: 1.5em;
    font-weight: var(--montserrat-bold);
    color: var(--green-font);
    padding: 20px 0;
}

.page-content p {
    margin: 10px 0;
    font-weight: var(--montserrat-light);
}

.page-content a {
    color: #000;
}

.page-content ul {
    list-style-type: none;
}

.page-content ul li {
    margin-left: 0;
    display: flex;
    font-weight: var(--montserrat-light);
}

.page-content ul li::before {
    content: '\2022';
    padding-right: 10px;
}

.page-content a.btn-schedule-tour {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #027fe4;
    color: #fff;
    font-weight: var(--montserrat-bold);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1.1em;
    text-decoration: none;
    min-width: 320px;
}

.page-content a.btn-schedule-tour:hover {
    background-color: hsl(207deg 98% 55%);
}

.page-content a.btn-schedule-tour img {
    height: 54px;
}

.page-content a.btn-schedule-tour span {
    display: inline-block;
    margin-left: 20px;
}
*/