/*
Theme Name: Perraudin Nathanael
Theme URI: 
Description: Custom theme for 
Author: Perraudin Nathanael
Author URI: 
Version: 1.0

********************************************************************************************************************

    Table of Contents:

     1. Global
     2. Columns + Rows
     3. Text-Styles
     4. Buttons
     5. Navigation
     6. Section 1
     7. About
     8. Work
     9. Copyright
     10. Project Basics
     11. Background Images
     12. Media Queries
     13. Helper Classes
     14. Print Styles
     15. Notes

      
*******************************************************************************************************************/


/* ==========================================================================
   1. $Global
   ========================================================================== */

/* Border Box */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Container */

.container {
    margin: 0 auto;
    width: 100%;
}

html {
    font-size: 100%;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
img {
    vertical-align: middle;
    max-width:100%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   2. $Columns + Rows
   ========================================================================== */


@media (min-width: 40rem) {

  .column {
    float: left;
    padding-left: .5rem;
    padding-right: 1rem;
    margin: 5px 5px;
  }
  .column.full { width: 100%; }
  .column.two-thirds { width: 65.7%; }
  .column.half { width: 48%; }
  .column.third { width: 31%; }
  .column.fourth { width: 22.95%; }
  .column.flow-opposite { float: right; }  
  }

  .row {
    margin-bottom: 1rem;
  }


.caption {
  text-align: center;
  margin-left: 5px;
  margin-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: #07ad87;
}

/* ==========================================================================
   3. $Text Styles
   ========================================================================== */

h1, h2, h3, h4, h5, p, a, li {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

h1 {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 2rem;
  line-height: .5em;
  color: ##07ad87;
}

h2 {
    font-size: 1.8rem;
    color: #07ad87;
}

h3 {
    font-size: 1.7rem;
    letter-spacing: .15rem;
    text-transform: uppercase;
    color: #222;
}

h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #07ad87;
}

h5 {
  font-size: 1.2rem;
  color: #C9C4C6;
}

p, li {
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: justify;
}

a {
    text-decoration: none;
    color: #07ad87;
    
}


/* Medium screens (640px) */
@media (min-width: 40rem) { 

h2 {
    font-size: 2.8rem;
}

}

@media (min-width: 64rem) { 

p, li {
    font-size: 1.2rem;
    line-height: 2rem;
}

h4 {
    font-size: 1.2rem;
}

}

/* ==========================================================================
   4. $Buttons
   ========================================================================== */

button, .button {
  background-color: #00BADD;
  color: white;
  font-family: 'Lato';
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .15rem;
  text-transform: uppercase;
  padding: 15px 20px;
  border: 1px solid transparent;
  -webkit-transition: background-color 150ms linear;
     -moz-transition: background-color 150ms linear;
       -o-transition: background-color 150ms linear;
          transition: background-color 150ms linear;

}

button:hover, .button:hover {
  background-color: #00D7FF;
}

button:focus {
  outline:0;
}

.greybtn {
   background-color: #E9E7E7;
   color: #BEBCBC;
}

.greybtn:hover {
  background-color: #E9E7E7;
  color: #bebcbc;
}

.small-arrow {
  background-color: #E9E7E7;
  font-size: 1.5rem;
  color: #222;
  border: 1px solid transparent;
}

.small-arrow:hover {
  background-color: #ccc;
}



/* ==========================================================================
   5. $Navigation
   ========================================================================== */


.navigation {
    position: fixed;
    width: 100%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #4e4e4e;
    z-index: 100;
}

.logo, .mobile-logo {
    float: left;
    padding: 12px 0px 12px 30px;
}

.sticky-nav, .sticky-nav li, .logo {
    display: none;
}

.mobile-logo {
    display: inline;
}

#showRightPush {
    display: inline;
    border: none;
    background-color: transparent;
    float: right;
    font-size: 2rem;
    margin-top: 17px;
    margin-right: 24px;
    padding: 0px;
    font-weight: 300;
    color: #222;
    font-family: sans-serif;

}

#showRightPush:focus {
    outline: none;
}

.sticky-nav li a {
    color: #222;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.logo h1{
    font-size: 1.6rem;
}

.mobile-logo h1{
    font-size: 1.6rem;
}

/* Medium screens (640px) */
@media (min-width: 40rem) { 

.mobile-logo {
    display: none;
}

.logo {
    display: inline;
}

}

/* Large screens (1024px) */
@media (min-width: 67rem) { 

.sticky-nav {
    display: inline;
    float: right;
    padding-top: 6px;
    padding-right: 50px;
    padding-left: 0px;
}

.sticky-nav li {
    list-style: none;
    display: inline;
    padding: 8px 8px 8px 8px !important;
    margin-left: 0px;
    margin-right: 0px;
}

.sticky-nav li a:hover {
    color: #07ad87;
    text-decoration: none;
}

#showRightPush {
    display: none;
}

.contact-nav {
  border: 2px solid #07ad87;
  border-radius: 6px;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
       -o-border-radius: 6px;

}

}

/* ==========================================================================
   6. $Section-1
   ========================================================================== */

.landing {
    text-align: center;
    padding: 100px 20px 0px 20px;
}

.landing p {
    font-size: 1.3rem;
    line-height: 2.4rem;
}

.social {
    text-align: center;
    padding: 0px 20px 20px 20px;
}

.social a {
    font-size: 2rem;
    color: #C9C4C6;
    padding: 0px 10px;
}

.social a:hover {
    color: #07ad87;
}

/* Medium screens (640px) */
@media (min-width: 40rem) { 

.landing {
    padding: 140px 20px 0px 20px;
}

.landing p, .about p {
    font-size: 1.6rem;
    line-height: 2.6rem;
}

.social {
    padding: 10px 20px 50px 20px;
}

.social a {
    font-size: 3.5rem;
}

}

/* ==========================================================================
   7. $About
   ========================================================================== */

.about-me {
  width: 80%;
  margin: 0px auto;
}

.about {
  margin-top: 100px;
  color: #07ad87;

}

.clients ul, .get-in-touch ul {
  list-style-type: none;
  padding: 0px;
}

.h-border {
  border: 1px solid #222;
  padding: 0px 17px;
}

.awards {
  padding-top: 19px;
}

@media (min-width: 613px) { 

.column.follow, .column.clients, .column.get-in-touch {
  width: 100%;

}

}

/* Medium screens (640px) */
@media (min-width: 40rem) { 

.clients-2 {
  margin-top: 90px;
}

}

@media (min-width: 64rem) { 

.column.follow, .column.clients, .column.get-in-touch {
  width: 32%;
}

.follow img {
  padding-top: 50px;
}

}

/* ==========================================================================
   8. $Work

   -pop.org
   -graduation
   -season of promise
   -pop book
   -crisis text line
   ========================================================================== */


.work-samples {
  padding: 60px 0px 100px 0px;
}

.work-samples h5 {
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  background-color: rgba(30, 30, 30, .4);
  color: white;
  z-index: 1000;
  border: 1px solid white;
  padding: 5px 10px;
  left: 10%;
  right: 10%;
  top: 25%;
}

.work-description {
  text-align: center;
}

.work-description h2{
  margin-top: 40px;
}

.item-1 {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.item-1 img {
  min-width: 100%;
  position: absolute;
  z-index: -1000;
}

.work-item h4, .work-item p{
  text-align: center;
}

.column.work-item {
  padding: 0px;
}

.block {
  max-height: 100%;
  max-width: 100%;
}


@media (min-width: 40rem) { 


.column.work-item{
  width: 48%;
}

}



@media (min-width: 64rem) { 

.work-description h2{
  margin-top: 5%;
}

.column.work-item {
  width: 32%;
}

.work-samples {
  width: 80%;
  margin: 0px auto;
}

}

.column.third.imageperso img{
  min-width: 90%;  
  max-width: 90%;  
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  display: block;
}

/* ==========================================================================
   9. $Copyright
   ========================================================================== */

.copyright {
    text-align: center;
    padding: 0px 20px 20px 20px;
}

.copyright hr {
    width: 70%;
    margin: 0 auto;
}

.baseline {
  background-color: #07ad87;
  padding: 7px 0px;
  bottom: 0px;
  position: fixed;
  margin: 0px;
}

.column.baseline {
  margin-bottom: 0px;
}

/* Medium screens (640px) */
@media (min-width: 40rem) { 

.copyright {
    padding: 100px 20px 0px 20px;
}

}

/* ==========================================================================
   10. $Project Basics
   ========================================================================== */

.top-section {
  height: 320px;
  z-index: 5;
  position: relative;
  overflow: hidden;
}

.visuals img {
  border-left: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
}

.top-section img {
  max-width: 100%;
  position: absolute;
}

 #video_background, iframe {
  display: none;
}

.overlay {
  background-image: url(../img/dots.png);
  background-repeat: repeat;
  height: 100%;
  position: relative;
}

.overlay img {
  max-width: 100%;
  bottom: 23%;
  left: 0%;
}

.pop-logo img {
  left: 15%;
  bottom: 29%;
  height: 67px;
}

.ctl-logo img {
  left: 10%;
  bottom: 13%;
}

.sop img {
  bottom: 16%;
  left: 7%;
}

.book-logo img {
  bottom: 17%;
}

.arrow {
  display: none;
}

.web-browser-2 {
  margin-top: 30px;
  border-radius: 3px 3px 0 0;
  border: 1px solid #b3b3b3;
  height: 22px;
  font-size: 1px;
  background-color: #efefef;
  line-height: 26px;
}

.circle-red, .circle-yellow, .circle-green {
  margin-top: 5px;
  width: 10px;
  padding: 5px 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  display: inline;
}

.circle-red {
  margin-left: 8px;
  background-color: indianred;
}

.circle-yellow {
  margin-left: 25px;
  background-color: rgb(238, 217, 29);
}

.circle-green {
  margin-left: 42px;
  background-color: lightgreen;
}

.visuals img {
  max-width: 100%;
}

.visuals {
  padding: 0px 20px;
}

.web-content {
  max-width: 69%;
  margin: -100px auto 0px auto;
  overflow: hidden;
  box-shadow: 0px 0px 20px #204E41;
}

.content {
  margin-top: 8px;
  padding: 0px 30px;
  border-left: 1px solid #c5c5c5;
}

.content h4 {
  margin-bottom: 0px;
  text-align: center;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 7px;
}

.content p {
  margin-top: 7px;
  text-align: justify;
}

.content button {
  margin: 20px 0px 30px 0px;
  width: 100%;
}

.content .small-arrow {
  margin: 0px 5px 50px 5px;
  float: right;
  width: auto;
}

.print-visuals img{
  border: 1px solid #ccc;
  margin-bottom: 1%;
}

.bts-logo img {
  bottom: 0%;
}

/* Medium screens (640px) */
@media (min-width: 40rem) { 

 #video_background {
  display: inline;
  position: absolute;
  min-width: 100%;
  min-height: 670px;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}

iframe {
  display: inline;
  z-index: -1000;
  position: absolute;
}

.top-section {
  height: 500px;
}

.overlay img {
  bottom: 23%;
  left: 19%;
}

.pop-logo img {
  left: 35%;
  bottom: 33%;
}

.ctl-logo img {
  left: 29%;
}

.gala-logo img {
  left: 8%;
}

.sop img {
  bottom: 18%;
  left: 9%;
}

.arrow {
  display: inline;
  position: relative;
  z-index: 7;
  left: 49%;
}

.down {
  font-size: 2em;
  margin-top: -40px;
  margin-left: -.8em;
  background: #fff;
  width: 2em;
  height: 2em;
  display: block;
  color: #333232;
  -webkit-border-radius: 30%;
     -moz-border-radius: 30%;
      -ms-border-radius: 30%;
       -o-border-radius: 30%;
          border-radius: 30%;
  position: absolute;
  left: 49%;
}

.visuals {
  padding: 0px 40 0px 0px;
}

.content {
  padding-right: 3rem;
}

.content h4 {
  text-align: left;
}

.bts-logo img {
  bottom: 5%;
}

}


/* Large screens (1024px) */
@media (min-width: 64rem) { 

.top-section {
  height: 670px;
}

.overlay img {
  bottom: 34%;
  left: 30%;
}

.pop-logo img {
  left: 32%;
  bottom: 37%;
  height: 117px;
}

.ctl-logo img {
  left: 39%;
}

.sop img {
  bottom: 26%;
}

.web-browser-2 {
  margin: 30px 0px 0px 0px;
}

.content button {
  width: auto;
}

.book-logo img {
  bottom: 32%;
  left: 33%;
}

.gala-logo img {
  bottom: 32%;
  left: 22%;
}

.bts-logo img {
  bottom: 20%;
}

.gala-visuals {
  padding-top: 10px;
}

}

/* ==========================================================================
   11. $Background-Images
   ========================================================================== */


.ctl-visuals, .print-visuals {
  margin-top: 5%;
}


/* ==========================================================================
   12. $Media Queries
   ========================================================================== */

/* Medium screens (640px) */
@media (min-width: 40rem) { 

}
 
/* Large screens (1024px) */
@media (min-width: 64rem) { 

}


@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {

}

/* ==========================================================================
   13. $Helper classes
   ========================================================================== */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
 
.clearfix:after {
  clear: both;
}
 
.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   14. $Print styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;

    }
}

/* ==========================================================================
   15. $Test
   ========================================================================== */

.purple-item-box {
/*  background-color: #07ad87; */
  background-color: #FFFFFF;
  height: 200px;
  width: 300px;
  display: inline-block;
}
.software-item-box {
  background-color: #FFFFFF;
  min-height: 100px;
  max-width: 100%;
  width: 600px;
  display: inline-block;
}

.half.purple-item {
  width: 100%;
  margin: 0px auto;
}

.purple-item {
  text-align: center;
  padding-bottom: 5%;
}

.purple-item h4, .purple-item p, .purple-item ul{
  padding: 0px 10%;
}


/* Custom Break (840px) */
@media (min-width: 52rem) { 

.half.purple-item {
  width: 48%;
}

.purple-item-box {
  height: 250px;
  width: 375px;
  display: inline-block;
  padding: 0px;
}

.purple-item h4, .purple-item p {
  padding: 0px 6%;
}


}


/* ==========================================================================
   1. $Notes
   ========================================================================== */


.notes_general{
  display: table;
  margin: auto;
}

