h1 {
    font-size: 30px;
    margin-left: 2cm;
}

img {
    width: 100%;
    height: auto;
}

h2 {
    margin-bottom: .5em;
}

h1 {
    font-family: "LS Fixture Ultra Light", Arial, Helvetica, sans-serif;
    font-size: 20.5vw;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1em;
    margin: 1cm 2cm 2cm;
    padding-top: 5vh;
}


/* hover styles */

.location-listing {
    position: relative;
    font-size: 7px;
    cursor: pointer;
}

.location-image {
    line-height: 0;
    overflow: hidden;
}

.location-image img {
    filter: blur(0px);
    transition: filter 0.3s ease-in;
    transform: scale(1.1);
}

.location-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}

.location-listing:hover .overlay {
    width: 100%;
}

.text {
    font-weight: bold;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 1;
}


/* for touch screen devices */

@media (hover: none) {
    .location-title {
        opacity: 1;
    }
}


/* modal */

.modal .modal-lg {
    max-width: 80% !important;
    border-radius: 0px;
    font-family: "LS Fixture Regular", Barlow, Arial, Helvetica, sans-serif, Helvetica, sans-serif;
}

.modal .modal-body {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    color: black;
}

.modal-footer .stroked-btn:link {
    background-color: #FC1A5C;
    text-decoration: none;
}

.modal-header h4 {
    color: black;
    text-transform: uppercase;
}

.modal-header .stroked-btn {
    color: black;
    border: 0;
    font-size: 20px;
}

.modal-header .close {
    background-color: transparent;
    border: 0;
}

.modal-body {
    margin: 10px 10px;
}

.modal-body .information-modal {
    margin-left: 30px;
    margin-top: 20px;
}

.modal-body .information-modal h5 {
    font-weight: bold;
}

.modal-body .information-modal .profil p strong {
    font-weight: bold;
}

@media screen and (max-width: 572px) {
    .modal-lg {
        left: 8%;
    }
}