/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');




.title{
    grid-column:1/3;
    height: 80px;
}

.entitled{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0
}



.wrapper {
            background: #fff;
            max-width: 1600px;
            grid-gap:1em;
            padding: 1em;
            max-width: 1720px;
            margin: 0 auto;
            display: grid;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            line-height: 1.5;
        }

a:link {color: #DA1010; text-decoration: none;}
a:visited {color: #DA1010;}
a:hover {color: black;}
a:active {color: black;}



        ul.ba{
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .gal{
            display:grid;
            /* stick to 'fractionals' */
            grid-template-columns: repeat(1, 1fr 1.5fr);
            grid-gap:1em;
            padding: 0em;
            /* grid-auto-rows: 100px;*/
            grid-auto-rows: minmax(10px, auto);
            
        }

        .cv {
            display: grid;
            grid-template-columns: 1fr 5fr;
            grid-template-rows: repeat(1fr);
            padding: 0em;
            grid-gap: 0px 20px;
            grid-row-gap: 0;
            margin:0;
}


.date {

}

.cv_desc {

}

.work {
    max-width: 500px;
}

.bio{
    max-width: 600px
}

.item_bloc_wrapper{
    max-width: 400px;
}

/* 16:9*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 3:3.1*/
.videoWrapper2 {
  position: relative;
  padding-bottom: 75%; /* 640:480 */
  height: 0;
}

.videoWrapper2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-container {
    width: 100%;
    background: #fff;
  }  
       
nav {
    max-width: 1750px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
        
nav a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'ubuntu', sans-serif;
    transition: .3s all ease-in-out;
  }

nav a:hover {
    opacity: .7;
  }

.left-menu {
    grid-column: 1;
    align-self: center;
  }
        
.left-menu a {
    padding: 10px 0;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }

.logo {
    font-family: 'ubuntu', sans-serif;
    grid-column: 2;
    font-size: 25px;
    padding: 1rem;
  }
        
        
#nav-toggle, .burger-menu {
    display: none;
  }
        
.burger-menu {
    grid-column: 1;
    align-self: center;
    margin-left: 20px;
    font-size: 20px;
  }

.fp {
    width: 85%;
    font-size: 8vw;
    font-size: 5vh;
    
}
    
#nav-toggle:checked ~ .left-menu {
    display: grid;
    grid-row: 2;
}

.nested{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap:1em;
    padding-top: 1em;
        }

    .footer {
        font-family: 'tahoma', sans-serif;
        position: fixed;
        left:0;
        bottom: 0;
        width: 100%;
        
    }


@media only screen and (max-width: 1025px) {
    .burger-menu {
      display: inline-block;
    }
      
    .left-menu{
      display: none;
    }
    
      .logo{
          font-size: 20px;
      }
      
      .gal{
          grid-template-columns: repeat(1, 1fr);
      }
    
    .title{
        grid-column:1/2;
        
  }
    .item_bloc_wrapper{
        max-width: 100%;
        }
    

}
    
