@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/bergen.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.logo {
    padding: 15px;
}

.logo img {
    width: 80px;
    margin-top: 95px;
}

h3 {
    font-size: 32px;
    color: #fff;
}

/** MENU **/

.menu-area a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
   background-color: rgba(255, 255, 255, 0.2);
    height: 45px;
   
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-area a:hover {
    background: black;
    color: #fff;
}

.menu-area ul {
    list-style: none;
    display: flex;
}

.menu-area li {
    position: relative;
    width: 100%;
    text-align: center;
}

.menu-area li:hover .sub-menu > li {
    top: 0;
    display: block;
}

.sub-menu li {
    display: none;
    position: relative;
}

.sub-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
}



/**FULLSCREEN BACKGROUND**/
.banner-area {
    
    display: flex;
    justify-content: center;
    height: calc(100vh - 50px);
    overflow: auto;

}

.banner-area h2 {
    text-transform: uppercase;
    color: #FFF;
    font-size: 60px;
    font-family: monospace;
    text-align: center;

}

.banner-area h4 {
    text-transform: uppercase;
    color: #FFF;
    font-size: 20px;
    font-family: monospace;
    text-align: center;

}

/**CONTAINER**/
.container {
    width: 950px;
}

/**CARD**/
.card {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 25px;
    margin-top: 150px;
    margin-bottom: 50px;
    border-radius: 20px 2px 20px 2px;
}

.card header {
    padding-bottom: 25px;
}

.card h3 {
    margin-bottom: 15px
}

.card p {
    color: #fff;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.row div {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    padding: 15px;
}
.text {
    
    padding: 25px;
    margin-top: 250px;
    margin-bottom: 60px;
}
.hoek {
    border-radius: 20px 2px 20px 2px;
}
.full {
    width: 100%;
}
.half {
    width: 50%;
}
footer {
    width: 80%;
    margin:auto;
    text-align: center;
    height: 150px;
    color: #fff;
    line-height: 300px;
    
}
