*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth; 
}

.kopje{
    font-family: 'Roboto', sans-serif;
    padding-top: 11vh;
    font-size: 60px;
    color: rgb(113,112,110);
    width: 100%;
    text-align: center;
}
/*colors
Blue: rgb(40,113,182)
green: rgb(121,183,28)
grey: rgb(113,112,110)
*/

/*navbar*/

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 11vh;
    width: 100%;
    position: fixed;
    z-index: 6;
    background-color: white;
    top: 0;
    
}

nav .nav-brand{
    margin-left: 1%;
}

nav .nav-brand a{
    text-decoration: none;
    display: flex;
    flex-direction: row;
}

nav .nav-brand img{
    height: 10vh;
    margin-top: 1vh;
    margin-right: auto;
}

nav .nav-brand h1{
    line-height: 11vh;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    color: rgb(113,112,110,.8);
    padding-left: 10px;
    letter-spacing: 1px;
}

nav .nav-brand h1:hover{
    color: rgb(40,113,182);
    transition: .5s ease-in-out;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 60%;
    height: 100%;
    margin-left: auto;
    align-items: center;
    line-height: 100%;
}

.nav-links li{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold; 
    letter-spacing: 3px;
}

.nav-items{
    text-decoration: none;
    color: black;
    padding-top: 100%;
    
}

.nav-links li:hover{
    font-weight: bolder;
}

#nav-toggle{
    position: absolute;
    top: -100px;
}

nav .icon-burger{
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

nav .icon-burger .line{
    width: 30px;
    height: 5px;
    background-color: black;
    margin: 5px;
    border-radius: 150px;  
}

@media screen and (max-width: 1270px){
    nav .nav-brand h1{
        display: none;
    }
    
    .nav-links{
        width: 80%;
    }
}

@media screen and (max-width: 768px){
    nav .nav-brand{
        float: none;
        width: auto;
        justify-content: center;
    }
    
    nav .nav-brand h1{
        display: none;
    }
    
    .nav-links{
        float: none;
        position: fixed;
        z-index: 2;
        left: 100vh;
        right: -100vh;
        top: 11vh;
        bottom: 100%;
        background: rgb(40,113,182,.7);
        height: 89vh;
        width: auto;
        flex-direction: column;
        justify-content: space-evenly;
        padding-bottom: 100px;
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    
    .nav-items{
        padding-top: 0;
        color: white;
        font-size: 25px;
    }
    
    nav :checked ~ .nav-links{
        left: 0vh;
        right: 0vh;
    }
    
    nav .icon-burger{
        display: block;
    }
    
    nav :checked ~ .icon-burger .line:nth-child(1){
        transform: translateY(10px) rotate(225deg);
        transition: .2s ease-in-out;
    }
    
    nav :checked ~ .icon-burger .line:nth-child(2){
        opacity: 0;
    }
    
    nav :checked ~ .icon-burger .line:nth-child(3){
        transform: translateY(-10px) rotate(-225deg);
         transition: .2s ease-in-out;
    }
}

/*banner*/

header{
    position: relative;
    width: 100%;
    height: 100vh;
}
 
.banner{
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner h2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #fff;
    font-size: 40vw;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    line-height: 80vh;
    mix-blend-mode: screen;
}

.banner h1{
    position: absolute;
    top: 80vh;
    left: 0;
    width: 100%;
    height: 20%;
    background: #fff;
    font-size: 6vw;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    line-height: 20vh;
    mix-blend-mode: screen;
}

/*button*/

.seeMyVideoCV{
    position: relative;
    width: 100%;
    height: 130px;
    padding-top: 70px;
    margin-bottom: 70px;
}

.button{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    letter-spacing: 3px;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    background: linear-gradient(90deg, rgb(40,113,182), rgb(121,183,28), rgb(40,113,182), rgb(121,183,28), rgb(40,113,182));
    background-size: 400%;
    border-radius: 30px;
}

.button:hover{
    animation: animate 8s linear infinite
}

@keyframes animate{
    0%{
        background-position: 0%;
    }
    
    100%{
        background-position: 400%;
    }
}

/*Introduction*/

.whoIsBenjaminVermeer{
    position: relative;
    height: 110vh;
    width: 100%;
}

.BenjaminVermeer{
   position: absolute;
    height: 40vh;
    width: 100%;
    background-image: linear-gradient( black, black, rgba(0,0,0,0));
    z-index: 1;
}
.BenjaminVermeer h1{
    position: absolute;
    height: 70vh;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 11vw;
    color: white;
    margin-top: 60px;
}

.introduction{
    width: 100%;
    height: 100vh;
    top: 10vh;
    position: absolute;
    background: url(afbeeldingen/BenjaminVermeerVegetableEvent.png);
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgb(0,0,0,.5);
    
}

#introductionTitle{
    position: relative;
    margin-top: 25vh;
    font-size: 5vw;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    width: 100%;
    text-align: center;
    margin-right: 50px;
    letter-spacing: 3px;
    color: white;
    z-index: 1;
}

#introductionTitle span{
    background-color: white;
    color: black;
}

.threeIcons{
    position: relative;
    height: 80vh;
    width: 100%;
    margin-top: 15vh;
    display: flex;
    flex-direction: row;
    padding-left: 3%;
    padding-right: 3%;
    justify-content: space-around;
    text-shadow: 0 0 8px rgb(0,0,0,.3);
}

.plantConsultancy i, .ownTeam i{
    color: rgb(121,183,28);
    font-size: 10vw;
    width: 100%;
    text-align: center;
}

.newProject i{
   color: rgb(61, 161, 255);
    font-size: 10vw; 
    width: 100%;
    text-align: center;
}

.plantConsultancy h3, .newProject h3,  .ownTeam h3{
    font-size: 40px;
    text-align: center;
    font-weight: 900;
    text-shadow: 0 0 8px rgb(0,0,0,.3);
}

.plantConsultancy h3, .ownTeam h3{
    color: rgb(121,183,28);
}

.newProject h3{
    color: rgb(61, 161, 255);
}

.plantConsultancy p, .newProject p,  .ownTeam p{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    color: white;
    text-shadow: 0 0 8px rgb(0,0,0,.3);
}

.greenhouseConsultant{
    position: relative;
    left: 0;
    right: 0;
    width: auto;
    height: 80vh;
    padding-top: 3vh;
    background: url(afbeeldingen/Benjamin%20VermeerCucumberGreenhouse.JPG);
    background-position: 0% 10%;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgb(10, 28, 46,.5);
}

@media screen and (max-width: 768px){
    .whoIsBenjaminVermeer{
        height: 127vh;
    }
    
    .BenjaminVermeer{
        background-image: linear-gradient( black, black, black, rgba(0,0,0,0));
    }
    
    .introduction{
        background-position: 70% 0%;
        height: 117vh;
    }
    
    #introductionTitle{
    
        line-height: 5vh;
    }
    
    .threeIcons{
        margin-top: 2vh;
        flex-direction: column;
    }
    
    .plantConsultancy i,.newProject i, .ownTeam i{
        font-size: 70px;
    }
    
    .plantConsultancy h3, .newProject h3,  .ownTeam h3{
        font-size: 25px;
    }
    
    .greenhouseConsultant{
        background-position: 0% 0%;
    }
}

/*Work Experience*/

.workExperience{
    position: relative;
    width: 100%;
    height: 120vh;
}

#workExperience{
    position: relative;
    color: rgb(113,112,110);
    height: 20vh;
}

.card-box{
    position: relative;
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 3%;
    padding-right: 3%;
    background: url(afbeeldingen/internationalVegetableConsultant.png);
    background-size: cover;
    
}

.card{
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
}

.card .faceFront, .card .faceBack{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    transition: 2s ease-in-out;
    transform: perspective(500px) rotateY(0);
}

.card:hover .faceFront{
    transform: perspective(500px) rotateY(180deg);
}

.card .faceBack{
    transform: perspective(500px) rotateY(180deg);
    background-color: rgb(113,112,110);
}

.card:hover .faceBack{
    transform: perspective(500px) rotateY(360deg);
    background-color: rgb(113,112,110);
}

.card .faceFront h2, .card .faceBack .workExperienceButton{
    font-size: 2em;
    text-transform: uppercase;
    transform: perspective(500px) translateZ(50px); 
}

.card .faceFront h2{
    color: white;
    text-shadow: 0 0 8px rgb(0,0,0,.3);
}

.card .faceBack a{
    text-decoration: none;
}

.card .faceBack a .workExperienceButton{
    width: 200px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    letter-spacing: 3px;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    background: linear-gradient(90deg, rgb(40,113,182), rgb(121,183,28), rgb(40,113,182), rgb(121,183,28), rgb(40,113,182));
    background-size: 400%;
    border-radius: 30px;
}

.workExperienceButton:hover{
    animation: animate 8s linear infinite
}

@keyframes animate{
    0%{
        background-position: 0%;
    }
    
    100%{
        background-position: 400%;
    }
}

#Mexico .faceFront{
    background: url(afbeeldingen/BenjaminVermeerBeltPepperGreenHouse.JPG);
    background-size: cover;
}

#Russia .faceFront{
    background: url(afbeeldingen/BenjaminVermeerAgrizar.JPG);
    background-size: cover;
    background-position: right;
}

#Holland .faceFront{
     background: url(afbeeldingen/CucumberConsultantWithCucumbers.JPG);
    background-size: cover;
}

#Spain .faceFront{
    background: url(afbeeldingen/BenjaminVermeerBelltPeppers.JPG);
    background-size: cover;
}

#Mexico .faceBack, #Russia .faceBack, #Holland .faceBack, #Spain .faceBack{
    background-color: rgb(113,112,110);
}

.presentationVermeerHollandConsultancy{
   position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    padding-top: 3vh;
    background: url(afbeeldingen/BenjaminVermeerWithGreenHouse.JPG);
    background-position: 10% 40%;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgb(10, 28, 46,.5); 
}

@media screen and (max-width: 768px){
    .kopje{
        font-size: 7vw;
    }
    
    .workExperience{
        height: 280vh;
    }
    
    .card-box{
        flex-direction: column;
        height: 250vh;
    }
    
    .card{
        transform-style: flat;
        margin-top: 50px;
    }
    
    .card .faceFront{
        z-index: 2;
        height: 300px;
        box-shadow: 0 0 20px rgba(46, 46, 46,.8);
    }
    
    .card:hover .faceFront{
        transform: none;
    }
    
    .card .faceBack{
        height: 430px;
        transform: none;
         box-shadow: 0 0 10px rgba(46, 46, 46,.8);
    }
    
    
    .card:hover .faceBack{
        transform: none;
        
    }
    
    .card .faceFront h2, .card .faceBack a .workExperienceButton{
        transform: none;
    }
    
    .card .faceBack a{
        text-decoration: none;
        width: 100%;
        height: 100%;
        justify-content: center;
        display: flex;
    }
    
    .card .faceBack a .workExperienceButton{
        position: absolute;
        top: 335px;
    }
    
    .workExperienceButton:hover{
        animation: none;
    }
    
    .presentationVermeerHollandConsultancy{
        background-image: rotate(90deg);
    } 
}

/*World wide web page*/
.workExperiencePageBody{
    background-color: ghostwhite;
}

.workExperiencePageBody nav{
    box-shadow: 0 0 10px rgba(113,112,110,.5);
    display: flex;
    justify-content: center;
}

.workExperiencePageBody nav .arrow {
    border: solid rgb(113,112,110);
    height: 20px;
    width: 20px;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 3px;
}

.workExperiencePageBody nav .left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.workExperiencePageBody .kopje{
    background-color: white;
    margin-top: 15vh;
    width: auto;
    margin-left: 15%;
    margin-right: 15%;
}

.imgWorldWideWorkExperienceMap{
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    justify-content: center;
    background-color: white;
    padding-top: 15px;
}
.imgWorldWideWorkExperienceMap img{
        width: 100%;
        height: auto;
    }

.WWWEpage{
    margin-left: 15%;
    margin-right: 15%;
    background-color: white;
    font-size: 18px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    margin-bottom: 10%;
}

.onderKopje{
    font-family: 'Roboto', sans-serif;
    padding-top: 10vh;
    font-size: 40px;
    color: rgb(113,112,110);
    width: 100%;
    text-align: left;
}

.WWWEpage ol h4{
    padding-top: 30px;
    font-size: 20px;
    font-weight: bold;
}

.WWWEpage ol li ul li{
    list-style: circle;
    padding-top: 5px;
}

/*Services*/

#services{
    position: relative;
    padding-top: 11vh;
    width: 100%;
    margin: auto;  
}

@media screen and (max-width: 768px){
    
}

/*skills*/

#skills{
    position: relative;
    width: 100%;
    background: url(afbeeldingen/VegetableConsultantAtDesktop.JPG);
    background-size: cover;
 
    background-position: 70% 30%;
    background-blend-mode: overlay;
    background-color: rgb(255,255,255,.3);
    display: flex;
    flex-wrap: wrap;
}

#skills h2{
    background-image: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,0));
    padding-bottom: 70px;
}

#skills .skills{
    display: flex;
    position: relative;
    left: 3%;
    margin: 20px 0;
    padding: 24px 30px 18px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 4px rgb(113,112,110);
    transition: 0.5s;
    width: 94%;
    background-color: rgba(255,255,255,.8);
}

#skills .skills:hover{
    background-color: rgb(121,183,28);
}

#skills .skills .name{
    position: relative;
    font-size: 20px;
    width: 60%;
    text-align: left;
    margin-top: -2px;
    text-transform: uppercase;
    color: rgb(113,112,110);
}

#skills .skills:hover .name{
    color: white;
}

#skills .skills .name i{
    font-size: 30px;
    margin-right: 15px;
}

 #skills .skills .skillHighness{
        display: flex;
        flex-direction: row;
        width: 40%;
    }

#skills .skills .skillHighness .value{
    position: relative;
    width: 10%;
    font-size: 25px;
    text-align: right;
    margin-top: -2px;
    text-transform: uppercase;
    color: rgb(113,112,110);
}

#skills .skills:hover .skillHighness .name, #skills .skills:hover .skillHighness .value{
    color: white;
}

#skills .skills .skillHighness .percent{
    position: relative;
    width: 80%;
    height: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 8px;
    border-radius: 10px;
    background: rgb(113,112,110);
    overflow: hidden;
}

#skills .skills:hover .skillHighness .percent{
    background: rgb(40,113,182);
}

#skills .skills .skillHighness .percent .progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 2px #000;
    animation: line 4s ease-in-out forwards;
}

#skills .skills .skillHighness .value{
    width: 20%;
}

@keyframes line{
    from{
        width: 0;
    }
}

#skills .languages{
    display: flex;
    position: relative;
    left: 3%;
    margin: 20px 0;
    padding: 15px 30px 18px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 4px rgb(113,112,110);
    transition: all 1s ease-in-out;
    width: 30%;
    background-color: rgba(113,112,110,.8);
    margin-right: 2%;
    margin-bottom: 30px;
}

#skills .languages .skillHighness{
    width: 100%;
    display: flex;
    flex-direction: row;
}

#skills #DuthAndEnglish:hover{
    background: url(afbeeldingen/Netherlands:England%20flag.jpg);
    background-size: 150px;
     transition: all 1s ease-in-out;
}

#skills #SpanishAndGerman:hover{
    background: url(afbeeldingen/German:Spain%20Flag.png);
    background-size: 150px;
}

#skills #French:hover{
    background: url(afbeeldingen/French%20Flag.png);
    background-size: 150px;
}


#skills .languages .name{
    position: relative;
    font-size: 20px;
    width: 60%;
    text-align: left;
    margin-top: 4px;
    text-transform: uppercase;
    color: white;
}

#skills .languages .name i{
    font-size: 30px;
    margin-right: 15px;
}

#skills .languages .skillHighness .value{
    position: relative;
    width: 20%;
    font-size: 20px;
    text-align: right;
    margin-top: 4px;
    text-transform: uppercase;
    color: white;
}

#skills .languages:hover .name, #skills .language:hover .skillHighness .value{
    color: white;
}

#skills #DuthAndEnglish:hover .name, #skills #DuthAndEnglish:hover .skillHighness .value{
    color: black;
    font-weight: 700;
    text-shadow: 0 0 4px white;
}

#skills #SpanishAndGerman:hover .name, #skills #SpanishAndGerman:hover .skillHighness .value{
    color: black;
    font-weight: 700;
    text-shadow: 0 0 4px white;
}

#skills #French:hover .name, #skills #French:hover .skillHighness .value{
    color: black;
    font-weight: 700;
    text-shadow: 0 0 4px white;
}

#skills .languages .skillHighness{
    position: relative;
    width: 50%;
}

#skills .languages .skillHighness .percent{
    position: relative;
    width: 80%;
    height: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 8px;
    border-radius: 10px;
    background: rgb(113,112,110);
    overflow: hidden;
}

#skills .languages:hover .skillHighness .percent{
    background: rgb(40,113,182);
}

#skills .languages .skillHighness .percent .progress{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 2px #000;
    animation: line 4s ease-in-out forwards;
}

@keyframes line{
    from{
        width: 0;
    }
}

@media screen and (max-width: 768px){
    #skills{
        height: 200vh;
    }
    
    #skills .skills{
           flex-direction: column;
        }
    
    #skills .skills .name{
        width: 100%;
    }
    
    #skills .languages{
        height: 100px;
    }
    
    #skills .languages .name i{
        font-size: 70px;
    }
    
    #skills .skills .skillHighness{
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    #skills .skills .skillHighness .percent{
        width: 100%;
    }
    
    #skills .languages{
        flex-direction: column;
        width: 94%;
    }
    
    #skills .languages .skillHighness{
         display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    #skills .languages .skillHighness .percent{
        width: 100%;
    }
}

/*Partners*/
.AgrikolPartner{
   position: relative;
    width: 100%;
    left: 0;
    right: 0;
    height: 80vh;
    padding-top: 3vh;
    background: url(afbeeldingen/AgrikolPartner.PNG);
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgb(10, 28, 46,.5);
    z-index: 1;  
}

#partners{
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
    padding-top: 11vh;
    position: relative; 
}

#partners h2{
    position: absolute;
    top: 0;
}


.swiper-container { 
    position: absolute;
    top: 10px;
      padding-top: 50px;
      padding-bottom: 50px;
    width: 100%;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
        display: flex;
        justify-content: center;
    align-items: center;
    }

.swiper-slide img{
    width: auto;
    height: 300px;
}

.swiper-pagination{
    position: absolute;
    top: 280px;
}

@media screen and (max-width: 768px){
    
    .swiper-container{
        top: 0;
        padding-top: 0;
    }
    
    .swiper-slide img{
        height: 200px;
    }
    
}

/*Footer*/

.BenjaminVermeerAtField{
   position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 80vh;
    padding-top: 3vh;
    background: url(afbeeldingen/BenjaminVermeerAtField.JPG);
    background-position: 0% 30%;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgb(10, 28, 46,.5);
    z-index: 1;   
}

footer{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 70vh;
    width: 100%;
    justify-content: space-around;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1%;
    margin-bottom: 20px;
}

footer .kopje{
    padding-top: 3vh;
    padding-bottom: 0;
    margin-bottom: 0;
}

footer h3{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold; 
    letter-spacing: 3px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.content{
    display: flex;
    flex-direction: row;
}

.content p{
    padding-top: 5px;
    margin: 0 10px;
}

.socialeMediaBox{
    flex-grow: 1;
    padding-right: 10px;
    max-width: 42%;
}

.socialeMedia{
    position: absolute;
    display: flex;
    padding-top: 20px;
}
.socialeMedia .socialeMediaIcon{
    list-style: none;
}

.socialeMedia .socialeMediaIcon a{
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #262626;
    margin: 0 10px;
    transition: .5s;
}

.socialeMedia .socialeMediaIcon a span{
    position: absolute;
    transform: .5s;
}

.socialeMedia .socialeMediaIcon a span:nth-child(1),.socialeMedia .socialeMediaIcon a span:nth-child(3){
    width: 100%;
    height: 1px;
    background: #262626;
    
}

.socialeMedia .socialeMediaIcon a span:nth-child(1){
    top: 0;
    left: 0;
    transform-origin: right;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a:hover span:nth-child(1){
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a span:nth-child(3){
    bottom: 0;
    left: 0;
    transform-origin: left;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a:hover span:nth-child(3){
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a span:nth-child(2),.socialeMedia .socialeMediaIcon a span:nth-child(4){
    width: 1px;
    height: 100%;
    background: #262626;
    
}

.socialeMedia .socialeMediaIcon a span:nth-child(2){
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a:hover span:nth-child(2){
    transform: scaleY(1);
    transform-origin: top;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a span:nth-child(4){
    top: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s;
}

.socialeMedia .socialeMediaIcon a:hover span:nth-child(4){
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform .5s;
}


.contactForms{
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    padding-right: 20px;
}

.contactBenjaminVermeer{
display: flex;
    flex-direction: column;
    
}

.text{
    padding-left: 20px;
    line-height: 50px;
}

.contactForms li{
    list-style: none;
    display: flex;
    flex-direction: row;
    padding-top: 5px;
}

.contactBenjaminVermeer li a{
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #262626;
    margin: 0 10px;
    transition: .5s;
}

.contactBenjaminVermeer li a i{
    width: 50px;
    height: 50px;
}

.contactBenjaminVermeer li a span{
    position: absolute;
    transform: .5s;
}

.contactBenjaminVermeer li a span:nth-child(1),.contactBenjaminVermeer li a span:nth-child(3){
    width: 100%;
    height: 1px;
    background: #262626;
    
}

.contactBenjaminVermeer li a span:nth-child(1){
    top: 0;
    left: 0;
    transform-origin: right;
    transition: transform .5s;
}

.contactBenjaminVermeer li a:hover span:nth-child(1){
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s;
}

.contactBenjaminVermeer li a span:nth-child(3){
    bottom: 0;
    left: 0;
    transform-origin: left;
    transition: transform .5s;
}

.contactBenjaminVermeer li a:hover span:nth-child(3){
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}



.contactBenjaminVermeer li a span:nth-child(2),.contactBenjaminVermeer li a span:nth-child(4){
    width: 1px;
    height: 100%;
    background: #262626;
    
}

.contactBenjaminVermeer li a span:nth-child(2){
    top: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s;
}

.contactBenjaminVermeer li a:hover span:nth-child(2){
    transform: scaleY(1);
    transform-origin: top;
    transition: transform .5s;
}

.contactBenjaminVermeer li a span:nth-child(4){
    top: 0;
    right: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s;
}

.contactBenjaminVermeer li a:hover span:nth-child(4){
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform .5s;
}

.interviews{
    display: flex;
    flex-grow: 2;
   flex-direction: column;
    position: relative;
}

.interviews a{
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold; 
    letter-spacing: 3px;
    color: black;
    margin-bottom: 15px;
    margin-top: 5px;
}

.rightsToVermeerHollandConsultancy{
    position: relative;
    text-align: center;
    width: 100%;
    height: 50px;
    background: rgb(113,112,110,.3);
    margin-top: auto;
    bottom: 0;
}

.rightsToVermeerHollandConsultancy span{
    color: white;
    line-height: 50px;
}

@media screen and (max-width: 768px){
    footer{
        height: 150vh;
        padding-top: 11vh;
    }
    
    .content{
        flex-direction: column;
    } 
    
    .socialeMediaBox{
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 120px;
    }
    
    .contactForms{
        padding-right: 0;
        padding-bottom: 50px;
    }
}