

.cv-pic{
    border-radius: 50%;
 
}

.name{
    font-weight: 100;
    font-size: 1.6em;
}

.company-name{
    margin-bottom: 0.6em;
}

.post-title{
    font-size: 1.4em;
}

.projects{
    font-style: italic;
    padding: 0px;
    text-indent: 0px;
}

.projects > ul {
    list-style: none;
    padding: 0px;
}

.projects > ul li:before{
    content: none;
    margin: 0 1em;
}

.footer > div{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center; /* Safari */
    justify-content:         center;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap:         wrap;

}

.footer-ul{
    padding-inline-start: 0px;
    margin-bottom: 10%;
    text-align: center;
}

.footer-ul > li {
    cursor: pointer;
}

.footer-ul > li::before {
    margin: 0em 2em;
    
}

.footer-ul > li:nth-child(1)::before{
    content: "";
    display: block;
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../../img/common/linkedin.svg');
}

.footer-ul > li:nth-child(2)::before{
    content: "";
    display: block;
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../../img/common/github.svg');
}

.footer-ul > li:nth-child(3)::before{
    content: "";
    display: block;
    height: 3em;
    width: 3em;
    background-size: 3em 3em;
    background-repeat: no-repeat;   
    background-position: center;
    background-image: url('../../img/common/instagram.svg');
}


@media (min-width: 48em) {
    .projects > ul li:before{
        content: none; /*\0950*/
        margin: 0 1em;
    }

    .header{
        margin: 50% 2em 0;
    }

}

.less{
    display: none;
}


.expand{
    display: block;
    background-color: #ffffff;
    max-height: 0px;
    width: 100%;
    transition: max-height 400ms cubic-bezier(.72,.07,.66,1);
    overflow: hidden;

}


#check1{
    display:none;

}

  
.menu-icon {
  cursor: pointer;
  min-width: 7em;
  display: inline-block;
  border: 1px solid #444444;
  border-radius: 3px;
  padding: 5px;
  transition: 200ms cubic-bezier(.72,.07,.66,1);
}

.menu-icon:hover{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.menu-icon:active{
    box-shadow: none;
}

.menu-icon > .up-down{
    float: right;
}
.menu-icon > .up-down > div {
    display: inline-block;
    background-color: #444444;
    border-radius: 7px;
    width: 0.6em;
    height: 2px;
    transition: 400ms cubic-bezier(.72,.07,.66,1);
}

.menu-icon > .up-down > div:nth-child(1)  {
    transform: translateX(0.25em) translateY(-0.2em) rotate(45deg);
}


.menu-icon > .up-down > div:nth-child(2) {
    transform: translateX(-0.25em) translateY(-0.2em) rotate(-45deg);
}

#check1:checked ~ .expand{
    max-height: 900px;
}

#check1:checked ~ .label1  .more {
    display: none;
}

#check1:checked ~ .label1  .less {
    display: inline;
}

#check1:checked ~ .label1 > .menu-icon > .up-down > div:nth-child(1){
    transform: translateX(0.25em) translateY(-0.2em) rotate(-45deg);
}

#check1:checked ~ .label1 > .menu-icon > .up-down > div:nth-child(2){
    transform: translateX(-0.25em) translateY(-0.2em) rotate(45deg);
}