body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #2e2e2e;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    padding: 1em 2em;
}

header h1 {
    display: block;
    margin: 0;
    align-items: center;
    font-style: italic;
    margin-left: auto;
    text-align: right;
}

header h1 mark.blue{
    color: #2face6;
    background: none;
}

.landing {
    display: flex;
    background: rgb(18, 153, 219);
    background: linear-gradient(90deg, rgba(18, 153, 219, 1) 0%, rgba(22, 173, 230, 1) 100%);
    color: #fff;
}

.landing .picture {
    flex: 1;
    width: 50%;
    object-fit: cover;
    max-height: 650px;
}

.landing .picture-phone-portrait{
    display: none;
}

.landing .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5em;
}

.landing .content .content-wrapper {
    max-width: 430px;
}

.landing .content ul{
    margin: 2em 0em;
}

.landing .content h2 {
    font-weight: 400;
    font-size: 1.3em;
    margin-bottom: 0.3em;
}

.landing .content li {
    font-weight: 400;
    font-size: 1.3em;
    margin: 0.2em 0em;
}

.landing .content .phone {
    margin-top: 2.5em;
    display: flex;
    justify-content: center;
}

button {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: rgb(13 127 184 / 27%) 0px 8px 24px;
    border-radius: 10px;
    padding: 0.5em 1em;
    outline: 0;
    border: 0;
    font-size: 0.95em;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: 0.2s;
}

button:hover {
    background: #f2f9ff;
}

button img {
    width: 2em;
    margin-right: 0.7em;
}

.gallery {
    padding: 4em;
}

.gallery h3,
.contact h3 {
    margin: 1.5em 0em;
    font-weight: 500;
    font-size: 1.5em;
}

.gallery .images-outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 2em;
}

.gallery .small-image {
    width: 100%;
    border-radius: 4px;
}

.gallery .tobii-zoom__icon {
    border-radius: 100%;
    right: 1.5em;
    top: 1.5em;
}

.contact {
    background: rgb(18, 153, 219);
    background: linear-gradient(90deg, rgba(18, 153, 219, 1) 0%, rgba(22, 173, 230, 1) 100%);
    color: #fff;
    padding: 4em;
}

.contact p {
    font-size: 1.1em;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.contact p img {
    height: 20px;
    padding-right: 1em;
}

.contact p img.location {
    padding-left: 2px;
    padding-right: calc(1em + 2px);
}

.contact p.name {
    padding-top: 1.5em;
    margin-bottom: 0em;
}

.contact button {
    margin-top: 0.7em;
}

#map {
    height: 500px;
    width: 100%;
}

@media (min-width: 1921px){
    .landing .picture{
        max-height: 750px;
    }
}

@media (max-width: 1300px){
    header h1{
        width: 450px;
    }
}

@media (max-width: 1200px) {
    .landing .content{
        padding: 3em 4em;
    }
    .gallery .images-outer {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header h1{
        margin-left: initial;
        text-align: center;
        width: initial;
        margin: 0.5em 0em;
    }

    .landing {
        flex-direction: column;
    }

    .landing .content {
        padding: 3em;
    }

    .landing .picture {
        flex: auto;
        height: 400px;
        width: 100%;
    }

    .gallery h3, .contact h3 {
        margin: 1.5em 0em;
    }

    .contact p {
        padding: 0em;
    }

    .contact button {
        margin: 0.7em 0em 0em 0em;
    }
}

@media (max-width: 767px), (max-height: 500px) {
    body {
        font-size: 14px;
    }

    header h1{
        font-size: 1.7em;
    }

    header .logo img{
        width: 100%;
    }

    .gallery .images-outer {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }

    .gallery, .contact {
        padding: 3em;
    }

    #map {
        max-height: 50vh;
    }
    button{
        font-size: 1em;
    }
}

@media (max-width: 767px){
    .landing .picture{
        width: 100%;
        height: auto;
    }
}

@media (max-width: 400px) {

    body {
        font-size: 13px;
    }
}