*, *:after, *::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: #fff;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
    }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #465e2c;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hide {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
}

#boxer {
    position: fixed;
    bottom: -60px;
    right: -35px;
}

header {
    width: 100%;
    height: 60px;
    background: #cbddb3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

section {
    padding: 50px;
    width: 100%;
    max-width: 1300px;
    height: calc(100vh - 75px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#balade_image {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: 1;
    position: relative;
}

#balade_image > img {
    position: absolute;
    top: 100%;
    right: 100%;
    transform: translate(50%, -50%);
}

.balade_content {
    margin-left: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#balade_name {
    width: 100%;
    text-align: left;
    color: #465e2c;
    font-size: 27px;
}

.balade_infos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#balade_location {
    margin-top: 10px;
    font-size: 20px;
    text-align: left;
}

.booleans {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booleans > div {
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider {
    margin-top: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider h3 {
    font-size: 20px;
    color: #465e2c;
}

.slider .slider_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider span {
    margin-top: 10px;
}

.slider_background {
    width: 250px;
    height: 7px;
    background: rgba(70, 94, 44, .1);
    border-radius: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.slider_background > .background {
    height: 7px;
    background: #465e2c;
    border-radius: 100px;
    position: absolute;
    left: 0;
}

.thumb {
    width: 20px;
    height: 20px;
    background: #465e2c;
    border-radius: 100px;
    position: absolute;
}

#map {
    height: 300px;
    width: 100%;
}

.bottom_buttons {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom_buttons > div {
    padding: 20px 40px;
    cursor: pointer;
    font-size: 25px;
    border-radius: 5px;
}

#go {
    background: #cbddb3;
    color: #465e2c;
}

#more_infos {
    margin-left: 30px;
    background: #465e2c;
    color: #fff;
}

#download_app {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
}

.get_it_on {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 25px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.get_it_on > h2 {
    text-align: center;
    margin-bottom: 20px;
}

.get_it_on > a {
    width: 100%;
    max-width: 200px;
}

.get_it_on img {
    width: 100%;
    height: auto;
}

#close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    cursor: pointer;
}

.download_app_mobile {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.download_app_mobile h2 {
    margin: 25px 0;
    color: #465e2c;
    font-size: 16px;
    text-align: center;
}

.download_app_mobile a {
    width: 100%;
    max-width: 200px;
}

.download_app_mobile a img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 850px) {
    #content {
        flex-direction: column;
        padding: 0;
        min-height: 100vh;
    }

    #balade_image {
        width: 100%;
        height: 300px;
        flex: none;
    }

    #balade_image > img {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .balade_content {
        margin-left: 0;
        width: 100%;
        padding: 25px;
        justify-content: start;
    }

    #balade_name {
        text-align: center;
    }

    .balade_infos {
        align-items: center;
    }

    #balade_location {
        text-align: center;
    }

    .booleans {
        justify-content: center;
    }

    #parking {
        margin: 0 25px;
    }

    #map {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    #download_app {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .download_app_mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 1;
        visibility: visible;
    }

    .bottom_buttons {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}