#golfclub{
    min-height: 800px;
    background-color: var(--maincolor);
}

/* Main golf courses */
.logo_shadow{
    box-shadow: 0px 0px 3px 2px var(--secondarycolor);
}
.golfclub_header{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: rgb(241, 215, 109);
}
    .golfclub_header > div:nth-child(1){
        width: 25%;
        display: flex;
        justify-content: flex-end;
    }
    .golfclub_header > div:nth-child(2){
        width: 75%;
    }
    .golfclub_header h2{
        color: var(--secondarycolor);
        text-transform: uppercase;
        font-size: 1.7em;
        text-align: left;
        width: 70%;
    }
    .golfclub_header > div > img{
        width: 40%;
        display: block;
    } 
.top_numbers{
    margin: 30px auto;
    width: 80%;
}
    .top_numbers > ul{
        list-style: none;
        display: flex;
        justify-content: space-between;
    }
    .top_numbers > ul > li{
        display: inline;
        padding: 5px 10px;
        text-align: center;
        font-weight: bold;
        font-size: 1.2em;
    }
    .top_numbers > ul > li:first-of-type{
        flex: 2;
    }
    .top_numbers > ul > li:last-of-type{
        flex: 2;
    }
    .top_numbers > ul > li > span{
        color: var(--secondarycolor);
        font-weight: bold;
    }
#list_center{
    border-left: 2px solid var(--secondarycolor);
    border-right: 2px solid var(--secondarycolor);
    flex:1;
}
article{
    width: 90%;
    margin: 0 auto;
}
#weather a{
    color: var(--secondarycolor);
}
.golfclub_images{
    display: flex;
    margin: 60px auto;
    width: 80%;
    justify-content: center;
    align-items: center;
    height: auto;
}
    .golfclub_images > img{
        width: 90%;
    }
/* Golf courses styles */
.recomend > span{
    font-weight: bold;
}
#club_rates{
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.golfclub_rates{
    background-color: rgb(233, 230, 230);
    width: 80%;
    margin: 0 auto;
}    
#prices{
    text-transform: uppercase;
    color: var(--secondarycolor);
    text-align: center;
    margin: 20px 0;
    width: 80%;
}
#rate_dates{
    border-left: 2px solid var(--secondarycolor);
    border-right: 2px solid var(--secondarycolor);
    padding: 0 4px;
}
#rate_dates_two{
    padding: 0 4px;
}
.golfclub_rates_item{
        margin: 5px 0;
        display: flex;
        justify-content: center;
        padding: 10px;
}
    .golfclub_rates_item > div:nth-child(1){
        width: 25%;
    }
    .golfclub_rates_item > div:nth-child(2), .golfclub_rates_item > div:nth-child(3){
        width: 35%;
        text-align: center;
    }
#note{
    width: 80%;
    padding: 15px;
}
#reservation{
    display: inline-block;
    padding: 15px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--maincolor);
    background-color: var(--secondarycolor);
    border-radius: 10px;
    margin: 30px auto;
    transition: all .2s;
    text-decoration: none;
}
    #reservation:hover{
        opacity: .8;
        background-color: rgb(58, 37, 75);
        color: white;
    }
#googlemaps{
    display: flex;
    justify-content: center;
    width: 50%;
    padding: 30px 0;
    background-color: rgb(230, 230, 230);
}
#golfclubcontainer, #golfclublocation{
    width: 80%;
}
.hidethis{
    opacity: 0.15;
}
    /* responsive */

@media only screen and (max-width: 756px) {
    #googlemaps{
        width: 70%;
    }
    header{
        border-bottom: 5px solid var(--secondarycolor);
        max-height: 50px;
    }
    .golfclub_header{
        width: 90%;
        max-height: 66px;
    }
        .golfclub_header h2{
            font-size: 1.3em;
            text-align: left;
            width: 90%;
        }
    .golfclub_images{
        margin: 30px auto;
        width: 90%;
    }
    #club_rates{
        width: 95%;
    }
    .golfclub_rates{
        width: 90%;
        margin: 0 auto;
    }   
    .top_numbers > ul > li{
        padding: 5px 10px;
        font-size: 0.9em;
    }
    .golfclub_rates_item{
        font-size: .8em;
        padding: 5px;
    }
    #note{
        width: 90%;
        padding: 11px;
    }
    #googlemaps{
        width: 90%;
    }
    #golfclubcontainer, #golfclublocation{
        width: 90%;
    }
}