* {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #222;
}

html, body {
    margin: 0;
    height: 100vh;
    text-align: center;
}

.header {
    background-image: url(./img/hero.jpeg);
    background-repeat: no-repeat;
    background-position: 50% 60%;
    background-attachment: scroll;
    background-size: cover;
    height: 40vh;
    margin: 0;
    padding-top: 60vh;
    box-sizing: initial;
}

.logo {
    position: absolute;
    top: 1em;
}

.heading {
    color: #ffffff;
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 6em;
    font-weight: normal;
    text-shadow: 0 0 20px #000;
}

.heading-subtext {
    color: #fff;
    display: block;
    font-family: 'Caveat', cursive;
    font-size: .6em;
}

.fixed-button {
    background: rgba(20, 20, 20, .5);
    border-radius: 1em;
    bottom: 1em;
    color: white;
    font-weight: bold;
    padding: 1em;
    position: fixed;
    right: 1em;
    text-decoration: none;
    z-index: 9999;
}

.fixed-button::after {
    content: "\25BE";
    display: block;
    font-size: 28px;
    line-height: 0;
    margin-bottom: 6px;
    margin-top: 10px;
    text-align: center;
}

.fixed-button:active,
.fixed-button:hover {
    background: rgba(20, 20, 20, .9);
}

.section {
    margin: 0 auto;
    max-width: 1024px;
    padding: 1em 2.4em;
}

.sub-heading {
    font-family: 'Caveat', cursive;
    font-size: 3em;
    margin-top: 1em;
}

.details {
    margin: 0 auto 8em;
}

.details-heading {
    font-weight: bold;
    text-transform: uppercase;
}

.mdi.x2 {
    font-size: 3em;
    opacity: .8;
}

.resort-image {
    width: 100%
}

.fs-3 {
    font-size: 1.5em;
}


.table {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

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

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-bottom: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    font-weight: bold;
}

.table tfoot td {
    font-style: italic;
    text-align: center;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.text-start {
    text-align: left !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.w-50 {
    width: 50% !important;
}


.buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    margin: 5px;
    display: inline-block;
    transition: all .3s;
}

.buttons a:hover {
    background: #5e3c3c;
    color: #fff;
}

.line-v1 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 5rem 0 1em;
}

.mt-1 {
    margin-top: 1em;
}

@media only screen and (max-width: 600px) {
    .heading {
        font-size: 4em;
    }
}