*{
    margin: 0;
    padding: 0;
    font-family: 'Overpass', sans-serif;
    font-family: 'Public Sans', sans-serif;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(images/pinot\ noir.jpg);
    background-position: center;
    background-size: cover;
    position: relative;


}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 180px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: #37ce9e;
    display: block;
    margin: auto;
    transition: 0.8s;
}
.nav-links ul li:hover::after{
    width: 100%;

}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 20px;
}
.text-box p{
    margin: 10px 0 10px;
    font-size: 12px;
    color: #fff;

}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #37ce9e;
    background: #37ce9e;
    transition: 1s;

}
@media(max-width: 700px){
    .text-box h1{
    font-size: 20px
    }
}

/*---------------- discover page ------------*/

.sub-header{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(images/pinot\ noir\ blank.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;

}
.sub-header h1{
    margin-top: 50px;
    margin-right: 50px;

}

.discover-us{
    width: 80%
    margin: auto;
    padding-top: 10px;
    padding-bottom: 50px;
}
.discover-col{
    flex-basis: 48%;
    padding: 30px 2px;
    margin-right: 50px;
}
.discover-col img{
    width: 10%;
    margin-right: 55px;
}

.discover-col h1{
    padding-top: 0;
}
.discover-col p{
    padding: 0px 0 0px;
}

/*!----------about--------*/

.about-col{
    margin-right: 55px;
}
