@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


/* Body */

body {
    max-width: 2000px;
    margin: 0px auto;
    min-height: 100vh;
}


/* Block start */

body.overflow-hidden {
    overflow: hidden;
}

.header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

.header:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 2;
}

.header-body {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo img{
    margin-top: 12px;
    margin-left: 50px;
    width: 160px;
    height: auto;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.header-burger {
    display: none;
}

.header-burger.active::before {
    transform: rotate(45deg);
    top: 9px;
}

.header-burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.header-burger.active span {
    transform: scale(0);
}

.header-list {
    display: flex;
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.header-list li{
    list-style: none;
    margin: 0px 0px 0px 20px;
}

.header-list li:first-child{
	margin: 0;
}

.header-link {
    color: black;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    line-height: 22px;
    font-size: 18px;
    padding: 7px;
    padding-top: 20px;
    padding-bottom: 20px;
}


.header-link:focus {
    color: #0066CB;
}

.header-link:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #0066CB;
}

.button-nav-donate {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-color: #0066CB;
    border-radius: 5px;
    font-size: 18px;
}

.header-menu.active {
    top: 0;
}

@media (max-width: 990px) {
    body.lock {
        overflow: hidden;
    }
        
    .header-body {
        height: 50px;
    }
    .header-burger {
        display: block;
        position: relative;
		margin: 0 20px;
        width: 30px;
        height: 20px;
        z-index: 3;
    }
    .header-burger:before,
    .header-burger:after {
        content: '';
        background-color: black;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header-burger:before {
        top: 0;
    }
    .header-burger:after {
        bottom: 0;
    }
    .header-burger span {
        position: absolute;
        background-color: black;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }
    .header-menu {
        position: fixed;
		z-index: 1;
        height: 100%;
        margin-top: 50px;
        top: -150%;
        width: 100%;
        background-color: white;
        padding: 0px 10px 20px 10px;
        transition: all 0.3s ease 0s;
        overflow: auto;
    }

    .header-menu.active {
        padding-top: 130px;
    }

    .header-list {
        display: block;
    }

    .header-list li {
        margin: 0px 0px 20px 0px;
        font-size: 35px;
    }
}

@media (max-width: 769px) {
    .header-logo img {
        width: 120px;
    }
}

@media (max-width: 720px) {
    .header-logo img {
        width: 100px;
    }
}

@media (max-width: 431px) {
    .header-logo img {
        width: 80px;
		margin-left: 20px;
    }
	
}

/* Block End */

.contact-info {
    border: 1px solid #585858;
    background-color: #585858;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.logo-end-store {
    padding-left: 100px;
    flex: 1 1 20%;
}

.logo-end-store img {
    width: 101px;
    height: 138px;
}

.address-and-kvk {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 20px;
    flex: 1 1 30%;
    padding: 15px;
}

.mail {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 20px;
    flex: 1 1 30%;
    padding: 15px;
}

.mail-line {
    color: white;
}

.social {
    padding-right: 100px;
    flex: 1 1 20%;
}

.social-icons {
    width: 40px;
    padding: 0px 10px 0px 10px;
}

@media (max-width: 1225px) {
    .social {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .logo-end-store {
        padding-left: 70px;
    }
}

@media (max-width: 908px) {
    .contact-info {
        flex-direction: column-reverse;
        text-align: center;
    }
    .social {
        display: flex;
        flex-direction: row;
    }
    .logo-end-store {
        display: none;
    }
    .mail {
        padding: 0;
    }
    .address-and-kvk {
        padding: 0;
    }
}

@media (max-width: 500px) {
    .mail {
        font-size: 10px;
    }
    .address-and-kvk {
        font-size: 10px;
    }
}