
@import url('https://fonts.googleapis.com/css?family=Libre+Franklin:400,900|Quicksand|Roboto:300,400,900');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&display=swap');
html body {
    margin: 0;
    height: auto;
    padding: 0;
    text-rendering: optimizeLegibility;
}

body {
    background-color: #fafafa;
}

nav ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

nav ul li {
    display: inline-block;
    padding: 14px 10px;
}

#mobile-menu ul li {
    display: block;
    padding: 14px 10px;
}

#mobile-menu ul {
    padding:0;
}

#mobile-menu ul li a {
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem
}

.nav-project {
    position: fixed;
    background-color:white;
    z-index: 1000000;
    font-family: 'Roboto', sans-serif;
    border-bottom: solid 2px #0000ff;
    top:0;
    right:0;
    left:0;
    background-color: #fafafa;
}

.nav-project h2 {
    text-align: center;
}

.nav-project ul li a {
    /*        padding: 14px 10px;*/
    /* text-transform: uppercase; */
    list-style:none;
    color:#0000ff;
    font-family: 'Roboto', sans-serif;
}

.nav-project ul li {
    list-style:none;
    padding:10px 0 10px 0;
    display: flex;
    align-items: center;
}

.nav-project ul {
    margin:0;
    padding:0;
    text-align:center;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-project li:first-child{
    margin-left:3vw;
}

.nav-project li:last-child{
    margin-right:3vw;
}

nav ul li a {
    color: #aaa;
    font-family: 'Roboto', sans-serif;
}

nav ul li a:hover {
    color: black;
}

.nav-main{
    display: flex;
}

.nav-right,.nav-left,.nav-mid,.mobile-menu-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
}

.active {
    color:black;
}

.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -3px;
    left: 0;
    /* background-color: #ffc72c; */
    background-color:#0000ff;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: left;
}

.logo-wrapper a {
    /* font-family: 'Franklin Gothic Medium', Helvetica, Arial, sans-serif; */
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    color:black;
    display: flex;
    align-items: center;
    text-align: center;
    /* font-style: bold; */
    font-weight: 700;
}

.nav-right {
    justify-content: flex-end;
}

.nav-mid img {
    max-width: 40px;
}

.nav-mid {
    width: 100%;
    justify-content: center;
}

body nav {
    padding-right: 8vw;
    padding-left: 8vw;
    margin: 3vw auto;
}

a {
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* color: #ffc72c; */
    color:#0000ff;
}

a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -3px;
    left: 0;
    /* background-color: #ffc72c; */
    background-color:#0000ff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    transform-origin: left;
}

a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transform-origin: left;
  }

a:hover{
    color:black;
}

.page-description-wrapper {
    margin-top: 16vh;
    margin-bottom: 16vh;
    max-width: 45vw;
    margin-left: 8vw;
    display: block;
  }

.page-description h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
  }

  #readtime {
      color:gray;
      font-size: 14px;
      font-weight: 400;
  } 

#mobile-menu {
    position: absolute;
    width: 100%;
    height: 100%;
	background-color: #fafafa;
    z-index: 200000;
    color:black;
    opacity:0;
    display: none;
}

#CV-choice {
    position: absolute;
    width: 100%;
    height: 100%;
	background-color: #fafafa;
    z-index: 300000;
    color:black;
    display: flex;
    justify-content: center;
    text-align: center;
    /* opacity:0; */
    /* display: none; */
}

#CV-choice ul li {
    display: block;
    padding: 14px 10px;
}

#CV-choice ul {
    padding:0;
    margin:0;
    list-style:none;
}

#CV-choice ul li a {
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem
}

.nav-mobile-right,.mobile-menu-wrapper {
    justify-content: flex-end;
}

.nav-mobile-mid {
    justify-content: center;
}

.nav-mobile-mid img {
    width: 40px;
}


.mobile-bar-menu {
    display: none;
    width: 100%;
    align-items: center;
}

.nav-mobile-left,.nav-mobile-mid,.nav-mobile-right{
    width: 100%;
    display: flex;
}

.nav-mobile-right img {
    width: 30px;
}

.mobile-menu-icon {
    cursor: pointer;
}

.cross {
    width:30px;
    /* position : absolute;
    right:10px;
    top:10px; */
    cursor: pointer;
    display: none;
}

.projects2 {
    display: flex;
}

.projects2 article {
    width: 100%;
}

.projects2 figure {
    margin:0;
    padding:0;
    position: relative;
}

.overlay-img:hover {
    opacity: 1;
  }
   

.projects2 article figure img {
    width: 100%;
    display: block;
    height: auto;
}

.overlay-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color:rgba(0, 0, 0, .3);
  }

  figcaption {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  figcaption h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: 900;
  }

  figcaption h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

footer .footer-bar {
        display: flex;
        align-items: center;
        padding-right: 8vw;
        padding-left: 8vw;
        margin: 3vw auto;
}

.footer-right,.footer-left,.footer-mid{
    width: 100%;
    display: flex;
    align-items: center;
}

.footer-mid {
    justify-content: center;
}

.footer-right {
    justify-content: flex-end;
    color: #aaa;
    font-family: 'Roboto', sans-serif;
}

.footer-right p {
    margin:0;
}

.footer-left img {
    width: 30px;
}

/* Datart */

.page-description p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
}

.img-container {
    display: flex;
    background-color: #fafafa;
}

.img-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10%;
}
.img-container-5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container article {
    width: 100%;
}

.img-container figure {
    margin:0;
    padding:0;
    position: relative;
}

.img-container figure img {
    width: 100%;
    display: block;
    height: auto;
}

#CV-img {
    width:70%;
    margin: 0 auto;
}

.img-container-2 figure {
    margin:0;
    padding:0;
    position: relative;
}

.img-container-2 figure img {
    width: 100%;
    display: block;
    height: auto;
}

.img-container-3 figure {
    margin:0;
    padding:0;
    position: relative;
}

.img-container-3 figure img {
    width: 100%;
    display: block;
    height: auto;
}

.img-container-4 figure {
    margin:0;
    padding:0;
    position: relative;
}

.img-container-4 figure img {
    width: 100%;
    display: block;
    height: auto;
}
.img-container-5 figure {
    margin:0;
    padding:0;
    position: relative;
}

.img-container-5 figure img {
    width: 100%;
    display: block;
    height: auto;
}

.text-container{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}   

.text-img-container {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-right: 15vw;
    padding-left: 15vw;
    margin-bottom: 100px;
    margin-top: 100px;
}

.text-img-container-2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-right: 15vw;
    padding-left: 15vw;
    margin-bottom:100px;
}

.text-only-container-2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-right: 15vw;
    padding-left: 15vw;
    margin-bottom:100px;
}

.text-container article {
    text-align: center;
}

.content-container {
    width:80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
}

.content-container-2 {
    width:80%;
    margin-right: 10%;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-container-3 {
    width:80%;
    margin-left: 10%;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.content-container-4 {
    width:65%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
    font-size: 18px;
}

.content-container-5 {
    width:80%;
    /* margin-right: 10%; */
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 0em;
    text-transform: none;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    line-height: 1em;
}

.classic-text-container-3 h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.content-container h1 {
    font-size:2.5rem;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-weight: 300;
}

.content-container-2 h1 {
    font-size:2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.content-container-3 h1 {
    font-size:2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.content-container-4 h1 {
    font-size:2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.content-container-5 h1 {
    font-size:2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.content-container h2 {
    font-size:1.2rem;
}

.basics-container {
    display: flex;
    justify-content: space-around;
}

.basics-container div:not(:last-child) {
    margin-right:30px;
}

.horizontal-line {
    width: 10%;
    color: #bbbbbb;
    margin-top:100px;
    margin-bottom:100px;
}

.horizontal-line-2 {
    width: 10%;
    color: #bbbbbb;
    margin-bottom:100px;
    margin-top:0;
}

.classic-text-container {
    width: 50%;
    margin: 0 auto;
    font-family: Roboto;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: .01em;
    line-height: 1.8em;
    text-transform: none;
    color: #333;
}

.classic-text-container-2 {
    /* width: 50%; */
    margin: 0 auto;
    font-family: Roboto;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: .01em;
    line-height: 1.8em;
    text-transform: none;
    color: #333;
}

.classic-text-container-3 {
    width: 60%;
    margin: 0 auto;
    font-family: 'Lora', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 300;
    font-style: normal;
    font-size: 21px;
    letter-spacing: .01em;
    line-height: 1.8em;
    text-transform: none;
    color: #333;
}

.classic-text-container-3 figure img{
    width: 100%;
    height: auto;
    display: block;
}

.classic-text-container-3 figure {
    margin: 0;
}

.classic-text-container-3 figure p {
    font-family: 'Roboto', sans-serif;
    margin:0;
    color:gray;
    font-size: 14px;
    text-align: center;
}

.classic-text-container h1 {
    font-family: Georgia, 'Times New Roman', Times, serif !important;
}


.classic-text-container p {
    margin:0;
}

.classic-text-container-2 p {
    margin:0;
}

.project-container {
    margin-bottom: 100px;
}

/* story */

.about-container {
    display: flex;
}

.about-title {
    flex:1;
}

.about-text {
    flex:2;
}

/* What I do at Veepee */

#quote {
    font-style: italic;
    font-size: 1.5em;
    color: gray;
    line-height: 1.6em;
}

/* contact */

#contact {
    padding-top: 20px;
    padding-bottom: 20px;
}

#contact,
#contact_name,
#contact_email,
#contact_object,
textarea {
    background-color: #E9E9E9;
}

#contact h1 {
    color: #2A2B3D;
    text-align: center;
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

form {
    margin: 0;
    padding: 0;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

input {
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

input,
textarea {
    font-size: 1em;
    color: #2A2B3D;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

#contact_name {
    width: 100%;
}

#contact_email {
    width: 100%;
}

#contact_object {
    width: 100%;
}

textarea {
    width: 100%;
    border: 1px solid #2A2B3D;
    padding: 5px;
}

#contact_name,
#contact_email,
#contact_object {
    height: 36px;
    padding: 0;
    border: none;
    border-bottom: 1px solid #2A2B3D;
}

.message {
    display: block;
    font-family: 'Roboto', sans-serif;
    height: 36px;
    line-height: 36px;
    color: #2A2B3D;
    margin-top: 15px;
    font-weight: 300;
}

textarea {
    padding: 0;
}

.button_form {
    width: 130px;
    text-align: center;
    text-decoration: none;
    color: #2A2B3D;
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 22px;
    padding: 5px 10px 7px;
    line-height: 24px;
    border: 1px solid #2A2B3D;
    margin: 0 auto;
    cursor: pointer;
}

.button_form:hover {
    color: #fff;
    background-color: #2A2B3D;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.eaddress {
    text-decoration:none;
    color:#2A2B3D;
}

.eaddress:hover{
    text-decoration: underline;
}

.veepee{
    color:#EC008C;
}

.backtoprojects{
    display: inline-block;
    text-align: center;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    height: 36px;
    line-height: 36px;
    color: #2A2B3D;
    /* margin-top: 50px; */
    font-weight: 300;
}

.backtoprojects a{
    font-family: 'Roboto', sans-serif;
    height: 36px;
    line-height: 36px;
    color: #2A2B3D;
    font-size:1.5em;
    font-weight: 800;
    padding:5px;
    border: solid black 2px;
}

.backtop {
    position:fixed;
    bottom:3.5vw;
    right:3.5vw;
    border: solid 1.5px  #0000ff;
    border-radius: 100%;
    transform: scale(1.5);
}

@media screen and (min-width: 1024px) {
    #mobile-menu {
       display: none;
    }
}

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

    .nav-left,.nav-right,.nav-mid {
        display: none;
    }

    .mobile-bar-menu {
        display: flex;
        align-items: center;
        width: 100%;
    }

    #mobile-menu {
        display: flex;
        /* align-items: center; */
        justify-content: center;
        text-align: center;
    }

    footer .footer-bar {
        flex-direction: column;
    }

    .footer-left,.footer-right {
        justify-content: center;
    }
    .footer-left,.footer-mid,.footer-right{
        padding:15px;
    }
    .page-description h1 {
        font-size: 2rem;
      }
    .page-description-wrapper {
        max-width: 100%;
        margin-left: 8vw;
        margin-right: 10vw;
        display: block;
      }
    .content-container {
        width: 100%;
    }
    .content-container-2 {
        width: 100%;
    }
    .content-container-3 {
        width: 100%;
    }
    .content-container-4 {
        width: 100%;
    }
    .content-container-5 {
        width: 100%;
    }
    .classic-text-container{
        width: 90%;
    }
    .text-container {
    padding-right: 8vw;
    padding-left: 8vw;
    }
    .text-img-container {
        flex-direction: column-reverse;
        align-items: center;
        padding-right: 8vw;
        padding-left: 8vw;
    }
    .text-img-container-2 {
        flex-direction: column;
        align-items: center;
        padding-right: 8vw;
        padding-left: 8vw;
    }
    .content-container-2 {
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 50px;
    }
    .content-container-3 {
        margin-left: 0;
        margin-bottom: 0;
        margin-top:50px;
    }
    .content-container-5 {
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 0;
    }
    .img-container-2{
        /* margin-top: 100px; */

    }
    .img-container-5{
        margin-top: 100px;
    }
    .img-container-4 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        /* margin-top: 100px; */
        margin-bottom: 0;
    }
    .about-container{
        flex-direction: column;
    }

}

    @media screen and (max-width: 768px) {
        .projects2 {
            flex-direction: column;
        }
        .basics-container {
            display: flex;
            flex-direction: column;
        }
        .basics-container div:not(:last-child) {
            margin-right:0;
        }
        .classic-text-container{
            width: 100%;
        }
        .classic-text-container-3{
            width: 100%;
        }
        form {
            width: 80%;
        }
        .logo-wrapper a {
            font-size:18px;
        }
        /* .overlay-img {
            opacity: 1;
          }  */
          #CV-img {
            width:90%;
            margin: 0 auto;
        }  
        .backtop {
            bottom:8vw;
            right:8vw;
        } 

        .classic-text-container p {
            text-align: left;
        }
        .classic-text-container-2 p {
            text-align: left;
        }
        .classic-text-container-3 p {
            text-align: left;
            font-size: 18px;
            line-height: 1.7em;
        }
    }