﻿/*#region Home*/
body {
    overflow-x: hidden;
}

.jumpto {
    background: rgb(227, 242, 253);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    height: 100px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: flex-start;
    z-index: 10;
    width: 100%;
}

    .jumpto a {
        color: var(--main-color);
        position: relative;
    }


.title {
    /*font-family: "Montserrat", sans-serif;*/
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .8px;
    margin-bottom: 1rem;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    box-sizing: border-box;
}

.alert-cookies {
    width: 60vw;
}

.header {
    padding: 4rem 4rem 0rem 4rem;
}




.wrapper {
    display: flex;
    flex-direction: column;
}

.image {
    position: static;
    height: 50vh;
    width: 100vw;
}

    .image img {
        object-fit: cover;
        max-height: 80vh;
        width: 100%;
    }

.column {
    background: rgb(227, 242, 253);
    color: var(--bs-gray-600);
    padding: 4rem .5rem 4rem 6rem;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

section {
    padding-bottom: 3rem;
}

    section:last-of-type {
        padding-bottom: 0;
    }


/*adjust the section top*/
:target {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}
.banner {
    background: rgb(227, 242, 253);
    color: var(--bs-gray-600);
    padding: 0rem 4rem 1rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner__title {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: .8px;
}

.banner__button {
    align-items: center;
    border-radius: 4px;
    background: #AB9B96;
    color: rgb(227, 242, 253);
    display: flex;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    text-transform: uppercase;
    font-size: 12px;
}

    .banner__button:hover {
        color: rgb(227, 242, 253);
    }


@media screen and (min-width: 900px) {
    .wrapper {
        flex-direction: row;
    }

    .column {
        width: 50%;
    }

    .image {
        height: calc(100vh - 100px);
        height: -moz-calc(100vh - 100px);
        height: -webkit-calc(100vh - 100px);
        height: -o-calc(100vh - 100px);
        /*width: 50vw;*/
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

.menu, .menu.horizontal {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul {
    margin-left: 1.25rem;
    list-style-type: disc;
}
ul, ol, dl {
    margin-bottom: 1rem;
    list-style-position: outside;
    line-height: 1.6;
}
li {
    margin: 0;
    padding: 0;
}
.menu a, .menu .button {
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 0.7rem 1rem;
}
/*#endregion Home*/


