@import url('reset.css');

@font-face {
  font-family: NeueHaasGrotesk;
  src: url('../fonts/HaasGrotDisp-55Roman.otf');
  font-weight: normal;
}

@font-face {
  font-family: NeueHaasGrotesk;
  src: url('../fonts/HaasGrotDisp-75Bold.otf');
  font-weight: bold;
}

@font-face {
  font-family: NeueHaasGroteskLight;
  src: url('../fonts/HaasGrotDisp-45Light.otf');
  font-weight: normal;
}

@font-face {
  font-family: NeueHaasGroteskItalic;
  src: url('../fonts/HaasGrotDisp-56Italic.otf');
  font-weight: normal;
}

*{box-sizing: border-box; -webkit-appearance: none;}
html{font-size: 10px;}

body{
  font-family: NeueHaasGrotesk;
  font-size: 1.6rem;
  line-height: normal;
  background: #231F20; /*black*/
}

h1{font-size: 3.2rem;}

h2{font-size: 2.6rem;}

h3{font-size: 2rem;}

section{margin-bottom: 50px;}

/*h1,h2{margin-bottom: 20px;}*/

.center{
  text-align: center;
}

.all-caps{
  text-transform: uppercase;
}

.uppercase{
  text-transform: capitalize;
}

.lighter{
  font-family: NeueHaasGroteskLight;
}

.italic{
  font-family: NeueHaasGroteskItalic;
}

strong{
  font-weight: bold;
}

em{
  font-family: NeueHaasGroteskItalic;
}

  span.hide{display: none;}

  nav{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: /*105px;*/ 70px; /*Could someone upload a smaller version of the logo?*/
    background: #231F20; /*black*/
    transition: background 1s;
  }

  nav.fixed{
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
  }

  nav.clear{
    background-color: rgba(35, 31, 32, 0.5);/*black*/
  }

    nav ul{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      /*border: 1px solid;*/
    }

      nav ul li{
        margin-left: 30px;
      }

      nav ul.nav-logos li:nth-child(2){
        margin-left: 10px;
        transition: opacity 1s;
      }

        nav ul.nav-logos li.hide-logo-text{
          opacity: 0;
        }

        li.show-logo{
          opacity: 1!important;
        }

        nav ul li a{
          display: block;
          text-decoration: none;
          color: #fff;
          font-weight: bold;
        }

        a#logo{
          background-image: url("../images/logo_smaller.png");
          width: 32px;
          height: 40px;
          margin: 0 auto;
        }

        a#logo-type{
          /*font-weight: normal;*/
          background-image: url("../images/logo_text.png");
          width: 408px;
          height: 145px;
        }

          /*nav h1{
            font-family: continuo, sans-serif;
            color: #F7931E;
            font-size: 4.2rem;
            font-style: normal;
            font-weight: 400;
            margin-bottom: 0;
          }*/

        a#menu_mobile{
          display: none;
          color: #F7931E;
          width: 100%;
          text-decoration: none;
          font-size: 3.6rem;
        }

    nav ul#nav-links{
      justify-content: flex-end;
    }
        /*nav h1{
          font-family:Continuo;
          color: #F7931E;
          margin-bottom: 0;
        }*/

      nav ul#nav-links li{
        margin-left: 0;
        margin-right: 40px;
      }

      nav ul#nav-links li:last-child{
        margin-right: 70px;
      }

      /*SVG animation*/

  @-webkit-keyframes trace {
    0% { stroke-dashoffset: 500 }
    100% { stroke-dashoffset: 0 }
  }

  @keyframes trace {
    0% { stroke-dashoffset: 500 }
    100% { stroke-dashoffset: 0 }
  }

  header.landing{
    /*text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;*/
    padding: 50px;
    margin-top: 105px;
    height: 80vh;
    color: #FF8300;
  }

    hgroup{
      /*background-color: #242528;*/
      width: 100%;
      height: 100%;
      padding: 25px;
    }

  svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

}

  path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    -webkit-animation: trace 16s linear infinite;
            animation: trace 16s linear infinite;
  }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .fadeIn {
      animation-name: fadeIn;
    }

    header img{
      width: 100%;
      height: auto;
      display: block;
    }

    .videos{
      /*border: 1px solid red;*/
      position:relative;
	    padding:56.25% 0 0;
    }

      video{
        width:100%;
	      height:100%;
	      background:#231F20;
	      position:absolute;
	      left:0;
	      top:0;
	      right:0;
	      bottom:0;
      }

    #wrapper{
        background-color: #fff;
    }

    #about{
      background: #231F20; /*black*/
      color: #fff;
      padding-top: 80px;
      padding-bottom: 80px;
      margin-bottom: 70px;
      text-align: center;
    }

      #about h2 {
          line-height: 36px;
      }

      #about h2:last-of-type{
        margin-bottom: 40px;
      }

      #about p{
        width: 675px;
        margin: 0 auto 20px;
        line-height: 24px;
      }

        #about a{
          color: #F7931E;
          text-decoration: none;
        }

      ul.job-groups{
        display: flex;
        justify-content: space-between;
        width: 675px;
        margin: 50px auto;
        /*border: 1px solid red;*/
      }

        ul.job-groups label{
          font-weight: bold;
          color: #F7931E;
          cursor: pointer;
          padding: 0 10px 10px;
          transition: color 1s, border .5s;
        }

        ul.job-groups input{
          display: none;
        }

        input.ff-selector-type-all:checked ~ label.ff-label-type-all,
        input.ff-selector-type-design:checked ~ label.ff-label-type-design,
        input.ff-selector-type-development:checked ~ label.ff-label-type-development,
        input.ff-selector-type-multimedia:checked ~ label.ff-label-type-multimedia{
          color: #231F20;
          border-bottom: 5px solid #231F20;
        }

      ul.students{
        width: 1042px;
        /*display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;*/
        text-align: center;
        margin: 0 auto;
        /*border: 1px solid red;*/
      }

        ul.students li{
          display: inline-block;
          position: relative;
          width: 200px;
	  margin: 0em 1em 2em 2em;
        }

          ul.students li a{
            text-decoration: none;
            color: #333333;
            font-size: 18px;
          }

            ul.students span{
              color: #666666;
              font-size: 1.5rem;
            }

            ul.students img{
              display: block;
              margin-bottom: 20px;
              width: 100%;
              height: auto;
            }

            ul.students img.portrait{
              position: absolute;
              top: 0;
              opacity: 0;
              transition: opacity 1s;
              /*border: 1px solid red;*/
            }

            ul.students a:hover img.portrait{
              opacity: 1;
            }

    #schdule{
      text-align: center;
      color: #fff;
      background: #231F20;
      padding-top: 90px;
      padding-bottom: 90px;
      margin-bottom: 0px;
    }

      #schdule h2{
        margin-bottom: 60px;
      }

      #schdule p{
        margin-bottom: 20px;
      }

      #schdule p:last-of-type{
        margin-bottom: 50px;
      }

      #schdule p:last-of-type span{
        margin-right: 15px;
      }

      .boxes{
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
      }

        .boxes li{
          margin: 0 20px;
          /*background: #FBB03B;*/
        }

        .boxes.buttons li{
            margin: 10px 10px 20px;
        }

          .boxes a{
            display: block;
            box-sizing: border-box;
            text-decoration: none;
            /*color: #fff;*/
            font-size: 1.3em;
            font-weight: 800;
            color: #f7931e;
            width: 140px;
            height: 60px;
            padding: 21px;
            text-align: center;
            /*background: #FBB03B;*/
          }

          .boxes a:hover{
            text-decoration: underline;
          }

          .boxes.rsvp a{
            font-size: 11pt;
            font-weight: 600;
            color: #fff;
            background: #FBB03B;
          }

          .boxes.rsvp a:hover{
            text-decoration: none;
          }

    #map{
      width: 100%;
      height: 490px;
    }


    footer{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100px;
      color: #939292; /*grey*/
      background: #231F20;
    }

    footer.student-footer{
      color: #000;
      background-color: #fff;
    }

/* ===== Student information page styles =====*/

body.student{
    background: #fff;
}
  .student-wrapper{
    width: 1160px;
    margin: 30px auto 0;
    /*border:1px solid red;*/
  }

    #student-group{
      display: flex;
      /*justify-content: center;*/
    }
      #info{
        /*border: 1px solid green;*/
        margin-right: 50px;
      }

      #info img{
        width: 250px;
        height: auto;
        max-height: 350px;
        margin-bottom: 60px;
        display: block;
      }

      #info p {
        letter-spacing: 1px;
        line-height: 20px;
      }

      #work{
        /*border: 1px solid orange;*/
        background: url('../images/macbook.png')no-repeat;
  	    background-size: 100%;
        width: 100%;
        margin: 0 auto 20px;
      }

        /*#work img{
          margin-top: 1.6em;
          width: 100%;
          height: auto;
        }*/

        #work img{
   	    	margin-bottom: 10px;
   	      margin-top: 1.2em;
   		    width:77%;
   		    height: auto;
 	      }

        #work a{
          display: block;
          text-align: center;
          text-decoration: none;
          color: #000;
        }

      h3.title{
        margin-bottom: 30px;
      }

        .pic-quote{
          display: flex;
          justify-content: space-between;
        }

      #student-group .title-quote{
        width: 200px;
        align-self: flex-end;
        margin-bottom: 60px;
        margin-left: 20px;
      }

      #student-group .title-quote .student_name {
        font-size: 26px;
      }

      #student-group .title-quote  .student_statement {
        line-height: 24px;
        letter-spacing: 1px;
      }

      #student-group p{
        width: 470px;
      }

      #work h4 { margin-top: 3em; }

/* ===== Student bio styles =====*/

.bio-wrapper{
  margin: 30px auto 0;
  /*border: 1px solid black;*/
  text-align: center;
}

.bio-wrapper :focus{outline: none;}

  .bio-wrapper form{
    margin-bottom: 20px;
  }

    .bio-wrapper legend{
      width: 100%;
      margin-bottom: 20px;
    }

    .bio-wrapper ul{
      display: flex;
      flex-direction: column;
      align-items: center;
      /*border: 1px solid red;*/
    }

      .bio-wrapper ul li{
        margin-bottom: 10px;
        width: 400px;
        /*border: 1px solid blue;*/
      }

      .group-options{
        text-align: left;
      }

        .group-options input{
          -webkit-appearance: checkbox;
        }

        .bio-wrapper ul li input[type=text]{
          width: 100%;
          font-size: 1.6rem;
          border: 1px solid black;
          padding: 6px 8px;
        }

        .bio-wrapper ul li textarea{
          width: 100%;
          height: 200px;
          font-size: 1.6rem;
          border: 1px solid black;
          resize: none;
          padding: 6px 8px;
        }

          .bio-wrapper ul li input[type=submit]{
            -webkit-appearance: none;
            font-size: 1.6rem;
            background-color: #fff;
            border: 1px solid black;
            border-radius: 12px;
            color: #000;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
          }

@media screen and (max-width: 641px){
  .bio-wrapper{
    width: 90%;
  }

    .bio-wrapper ul li{
      width: 100%;
    }
}



/*Changhee added*/
.studentProfile {
    display: none;
}
.displayProfile {
    display: block;
}
