.map-container {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

#map-canvas {
    position: relative;
    width: 100%;
    height: 90vh;
}

#map-modal {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 9000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.map-modal__content {
    opacity: 0;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    width: 90%;
    max-height: 90%;
    max-width: 1024px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: transparent;
    color: #fff;
}

#map-modal__title {
    padding-bottom: 10px;
    font-size: 34px;
}

.map-modal__intro {
    overflow: hidden;
    display: table;
    width: 100%;
    height: auto;
}

.map__intro-left {
    width: 33.333333%;
    display: table-cell;
    vertical-align: middle;
}

.map__intro-right {
    width: 66.333333%;
    padding-left: 20px;
    display: table-cell;
    vertical-align: middle;
}

#map-modal__excerpt {
    margin: 20px 0;
}

.map-modal__gallery {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map__intro-image {
    width: 100%;
    overflow: hidden;
}

.map-modal__menu {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
}

.map-modal__menu-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.map-modal__close {
    color: #aaa;
    float: right;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: -20px;
    z-index: 9999;
    text-transform: uppercase;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-family: monospace;
}

.map-modal__close:hover,
.map-modal__close:focus {
    color: orangered;
    text-decoration: none;
    cursor: pointer;
}

.map-modal__video {
    display: none;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.map-modal__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.map-modal__button {
    height: 40px;
    width: 70px;
    margin: 0 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-size: 45%;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 3px solid transparent;
}

.map-modal__button:hover {
    border-bottom: 3px solid orangered;
}

.map-modal__button--active {
    border-bottom: 3px solid red;
}

.map-modal__button.map-modal__button-intro {
    background-image: url(../images/home.svg);
}

.map-modal__button.map-modal__button-picture {
    background-image: url(../images/gallery.svg);
}

.map-modal__button.map-modal__button-video {
    background-image: url(../images/camera-video.svg);
}

.map-modal__button.map-modal__button-video360 {
    background-image: url(../images/360-degrees.svg);
}

.map-modal__button:hover {
    cursor: pointer;
    color: orangered;
}

.map-modal__post-link {
    display: inline-block;
    color: #000;
    margin-top: 3px;
    padding: 3px 20px;
    background-color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    float: right;
}

.map-modal__post-link:hover {
    background-color: orangered;
    color: #fff;
}

.swiper-container {
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
}

.swiper-container .swiper-slide {
    height: 100%;
    background: transparent;
}

#branding {
    padding: 0;
}

.header.header-default {
    height: 400px;
    background-image: url(../images/map-hero.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.header.header-default .logo {
    display: none;
}

.grid {
    display: none;
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
}

.grid__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.grid__card {
    width: 32%;
    margin-bottom: 2%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.grid__card:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    cursor: pointer;
}

.grid__card-image {
    height: 200px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.grid__card-title {
    padding: 5px;
    text-align: center;
    color: #000;
    font-size: 20px;
}

.grid__card-excerpt {
    padding: 5px;
}

.grid .grid__card .grid__card-content:hover {
    cursor: pointer;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

#masthead {
    margin-bottom: 0px;
}

.navigation {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0;
}

.navigation__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px;
    background-color: #000;
    color: #fff;
}

.navigation__button {
    position: relative;
    padding: 5px 10px;
    text-align: right;
    width: 81px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.navigation__button.navigation__grid:hover,
.navigation__button.navigation__map:hover {
    background-color: #f76969;
}

.navigation__button.navigation__grid::before {
    content: "";
    display: table;
    background-image: url(../images/grid.svg);
    background-size: 63%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
    left: 0;
    height: 30px;
    width: 30px;
    z-index: 0;
}

.navigation__button.navigation__map::before {
    content: "";
    display: table;
    background-image: url(../images/placeholder.svg);
    background-size: 63%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
    left: 0;
    height: 30px;
    width: 30px;
    z-index: 0;
}

.navigation__active {
    background-color: red;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@media only screen and (max-width: 768px) {
    .header.header-default {
        height: 200px;
    }
}

@media only screen and (max-width: 479px) {
    .header.header-default,
    .inner-cell {
        width: 100%;
    }
    .grid .grid__card-image {
        height: 110px;
    }
}

.map-modal__content .swiper-slide {
    max-height: 690px;
}