body {
    font-family: "Libre Franklin", serif;
    background:#1C0071;
    overflow-x: hidden;
}


b {
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0px 20px;
}

input {
    padding: 20px 15px;
    background: white;
    color: #111760;
    border: 1px solid #D4D4D4;
    box-shadow: 0px 4px 0px #E1E1E1;
    border-radius: 20px;
    font-family: "Libre Franklin", serif;
    font-size: 16px;
    max-width: 400px;
    width: -webkit-fill-available;
}

button {
    padding: 15px 10px;
    background: #1C0071;
    color: white;
    border: 1px solid #170158;
    box-shadow: 0px 4px 0px #180359;
    border-radius: 20px;
    font-family: "Libre Franklin", serif;
    font-size: 18px;
    width: -webkit-fill-available;
    max-width: 432px;
}

.header {
    height: 100px;
    background: linear-gradient(180deg, rgba(0,11,57,0.5) 0%, rgba(255,255,255,0) 100%);
    color:white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0px 20px;
}

.header-logo{
    font-family: "Rubik Mono One", serif;
    line-height:90%;
    font-size:24px;
}

.header-links {
    display: flex;
    gap: 30px;
}

.header-links a{
    text-decoration:none;
    color:white;
}

.header-links a:last-of-type{
    margin-right:10px;
}

@media only screen and (max-width:600px) {
    .header-links {
            display: none;
    }
    
}

@media only screen and (min-width:600px) {
    .header-menu-icon {
        display: none;
    }
}

@media only screen and (min-width:1000px) {
    .content {
        width:1000px;
        margin: 0 auto;
    }

    .header-content{
        width:1000px;
        margin: 0 auto;
    }
}


.hero-map {
  width: 100vw;
  height: 140vh;
  background-image: url(https://limitlesspotential.nl/img/map.svg);
  background-position: center;
  position: absolute;
  top: -100px;
  left: 0;
  opacity: 0.1;
  z-index: -1;
  transition: background-size 0.5s ease;
}

.hero {
    height: calc(100vh - 100px);
}

.hero-content {
    padding: 60px 30px;
    color: white;
}

.hero-content h1 {
    font-size: max(1.5vw, 24px);
}

.info {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    background: white;
    color: #111760;
    max-width: 400px;
    border: 1px solid #D4D4D4;
    box-shadow: 0px 4px 0px #E1E1E1;
    border-radius: 20px;
    cursor:pointer;
    transition: all 0.25s;
}

.info-item:active {
    box-shadow: none;
    transform: translateY(4px);
}

.info-title b {
    color: #0C1590;
}

.info-title {
    display: flex;
    gap: 16px;
    padding: 20px 15px;
    align-items: center;
}

.info-content {
    display: none;
    padding: 0px 20px 20px 20px;
    line-height: 24px;
    font-weight: 300;
}

.info-title p {
    line-height: 25px;
}

.over {
    background: white;
}

.content#over {
    position: relative;
    top: -130px;
}

.divider {
    height: 240px;
    width: 100%;
    background-image: url(img/divider.svg);
    background-position: center;
    background-size: cover;
    margin-top: 100px;
}

.over-title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #111760;
}

.over-text {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    margin-bottom:20px;
}

.over-text p {
    max-width: 350px;
    line-height: 24px;
    text-align: center;
}

.footer {
    width: 100%;
    height: 80px;
}

.footer-map {
    width: 100%;
    height: 80px;
    background-image: url(https://demo.limitlesspotential.nl/img/map.svg);
    background-position: center;
    opacity: 0.1;
    transition: background-size 0.5s ease;
}

.footer-content {
    display: flex;
    height: 80px;
    width: 100%;
    z-index: 1;
    text-align: center;
    position: absolute;
    align-items: center;
    justify-content: center;
    color: white;
}

div#response-message {
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
}

button:active {
    box-shadow: none;
    transform: translateY(4px);
}
