body {
    margin: 0;
}

nav {
    display: flex;
    justify-content: flex-end;
    background-color: #1e313e;
    padding: 10px;
}

.item {
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px;
    color: #efd3a2;
    font-family: 'Montserrat', sans-serif;
}

.item:hover {
    background-color: #bb8a5e;
    transition: 0.7s;
    border-radius: 30px;
}

.section-header {
    display: flex;
    justify-content: center;
}

.heading {
    text-transform: uppercase;
    color: #1e313e;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

#section-about {
    display: flex;
    justify-content: space-around;
    background-color: #1e313e;
    padding: 60px;
}

.about-us {
    color: white;
    font-size: 16px;
    align-self: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    display: flex;
    background-color: #1e313e;
    padding: 80px;
    color: white;
}

.reason-block {
    padding: 30px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
    
}

span {
    font-size: 70px;
    align-self: baseline;
    color: #1e313e;
    background-color: #bb8a5e;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    margin: 40px;
    padding: 20px;
}

.services {
    display: flex;
    justify-content: center;
    background-color: #1e313e;
    padding: 60px;
}

.section-prices {
    background-color: #1e313e;
    display: flex;
    justify-content: center;
    padding: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

#section-map {
    display: flex;
    justify-content: center;
    background-color: #1e313e;
    padding: 60px;
}

.footer-container {
    background-color: #1e313e;
    padding: 5px;
}

.footer {
    color: #efd3a2;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #efd3a2;
    text-decoration: none;
    font-size: 16px;
}


button {
    background-color: #1e313e;
    color: #efd3a2;
    border-radius: 30px;
    padding: 30px;  
    margin: 10px;

}

.goUp_btn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 50%;
    cursor: pointer;
    height: 65px;
    width: 65px;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goUp_btn img {
    height: 55px;
    width: 55px;
}

@media all and (max-width:600px) {

    .img_book {
        height: 100px;
        width: 200px;
        margin: auto;
    }

    #section-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .btn {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .reason-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .img_services {
        width: 400px;
    }

    #section-map {
        display: flex;
        justify-content: center;
        padding: auto;
        margin: auto;
        height: 300px;
    }

    .map {
        width: 100%;
    }

    #gmap_canvas {
        width: 300px;
        height: 300px;
    }
}

@media all and (max-width:800px) {


    .section-about {
        display: flex;
        flex-wrap: wrap;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
    }

    #gmap_canvas {
        display: flex;
        justify-content: center;
    }

}

@media all and (max-width: 1200px) {
    
    .wrapper {
        display: flex;
        flex-direction: column;
    }
}






