/** Extras (common style classes used in JavaScript) **/

.noscroll {
  overflow: hidden;
}

/*** Animate Resume Page **/
.ar-left {
  -webkit-transform: translate(-15%, 0);
  -ms-transform: translate(-15%, 0);
  transform: translate(-15%, 0);
}
.ar-right {
  -webkit-transform: translate(15%, 0);
  -ms-transform: translate(15%, 0);
  transform: translate(15%, 0);
}

/*** Magnific Popup ***/
.fadeInLeft {
  -webkit-animation: fadeInLeft 0.7s;
  animation: fadeInLeft 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
}
/** For Chrome, safari, opera **/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/** For firefox and IE **/
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes roll-out {
  0% {
    transform: scaleX(.8);
  }

  100% {
    transform: scaleX(1);
  }
}

/*
  HOME SECTION
  ============================================
 */

 .title{
  text-align: center;
  margin-bottom:30px;
 }

 .content{
    display: block;
    width: 100%;
    padding-top: 180px;
 }

 a {
  color: #fff;
  text-decoration:none;
 }

 a.underlined {
   position: relative;
 }

 a:after {
  content: "";
  display: block;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: #fff;
 }
 a:hover:after {
  animation: roll-out 1.2s cubic-bezier(.075,.82,.165,1) forwards;
 }

.call-me{
  display: block;
  width: 279px;
  margin: 0 auto;
}

 .pic{
  width: 279px;
  height: 279px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 279px;
  background: url('/img/quentinjolliet.jpg') no-repeat;
  background-position: -15px 0;
 }

// .pic:hover{
  //background:url('/img/callme.gif') no-repeat;
  //background-position: -150px 1px;
 //}

/*
  PAGE FOOTER
  ========================================
 */
.page-foot {
  width: 100%;
  background: #151d2a;
  height: 100px;
  color: #fff;
}
    .page-foot .copyright {
      float: left;
      margin-top: 42px;
      text-transform: uppercase;
    }
/** Social Btns **/
.page-foot .socials {
  padding-left: 0;
  list-style: none;
  width: 283px;
  margin: 0 auto;
}
    .page-foot .socials li {
      float: left;
      margin-left: 10px;
    }
    .page-foot .socials li:last-child {
      margin-left: none;
    }
        .page-foot .socials li > a {
          color: #fff;
          display: inline-block;
          padding: 6px 14px;
          border: 1px solid #fff;
          -webkit-transition: 0.3s;
          transition: 0.3s;
        }
        .page-foot .socials li > a:before {
          line-height: 1.571428571428571;
        }
        .page-foot .socials li:nth-child(1) a:hover {
          background: #4467b0;
        }
        .page-foot .socials li:nth-child(2) a:hover {
          background: #5ad8ff;
        }
        .page-foot .socials li:nth-child(3) a:hover {
          background: #1f88bd;
        }
        .page-foot .socials li:nth-child(4) a:hover {
          background: #5f756f;
        }


.g-recaptcha{
  position: absolute;
  margin: 320px 0 0 15px;
}
