/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  font-size: 100%;
  font-family: "Droid Serif", serif;
  color: #7f8c97;
  background: #e9f0f5;
}

.wrap {
  width: 1250px;
  margin: 0 auto;
}

.clearFloat {
  clear: both;
}

.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
.textLeft {
  text-align: left;
}
.textCenter {
  text-align: center;
}
.textRight {
  text-align: right;
}

.btn-greenCV {
  background-color: #40bea5;
  border-color: #2ca38b;
  color: #fff;
}

/* HEADER */
#mainHeaderArea {
  text-align: center;
  margin: -25px 0 25px 0;
  background-color: #39bba1;
}
  #mainHeaderArea h1 {
    color: #39bba1;
    font-family: Hanged Letters;
    font-size: 26pt;
  }
  #mainHeaderArea h2 {
    color: #39bba1;
    font-family: Helvetica;
    font-size: 18pt;
  }

#statementArea {
  text-align: center;
  margin: 10px 0 25px 0;
}

.workEducationHeader {
  color: #40bea5;
}

/* Animations & Keyframes */

.fadeInDownAnimation { 
    -webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 

@-webkit-keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 

.fadeInDown { 
    -webkit-animation-name: fadeInDown; 
    animation-name: fadeInDown; 
}

.bounceInDownAnimation { 
    -webkit-animation-duration: 2s; 
    animation-duration: 2s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 

@-webkit-keyframes bounceInDown { 
   0% { 
       opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
    60% { 
        opacity: 1; 
        -webkit-transform: translateY(30px); 
    } 
    80% { 
        -webkit-transform: translateY(-10px); 
    } 
    100% { 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateY(30px); 
    } 
    80% { 
        transform: translateY(-10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
} 

.bounceInDown { 
    -webkit-animation-name: bounceInDown; 
    animation-name: bounceInDown; 
}

.rollInAnimation { 
    -webkit-animation-duration: 2s; 
    animation-duration: 2s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

@-webkit-keyframes rollIn { 
    0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); } 
} 
@keyframes rollIn { 
    0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; transform: translateX(0px) rotate(0deg); } 
} 
.rollIn { 
    -webkit-animation-name: rollIn; 
    animation-name: rollIn; 
}

.pulseAnimation { 
    -webkit-animation-duration: 2s; 
    animation-duration: 2s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

@-webkit-keyframes pulse { 
    0% { -webkit-transform: scale(1); } 
    50% { -webkit-transform: scale(1.1); } 
    100% { -webkit-transform: scale(1); } 
} 
@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.1); } 
    100% { transform: scale(1); } 
} 
.pulse { 
    -webkit-animation-name: pulse; 
    animation-name: pulse; 
}

.portfolioTransition {
  -webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -moz-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
      -o-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
        transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.portfolioTransitionTiming {
  -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -moz-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
      -o-transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); 
        transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}

/* OBJECTIVE & CONTACT */
.contactHeader {
  color: #40bea5;
  margin-bottom: 25px;
  text-align:center;
}
.contactForm {
  width: 400px;
  margin: 0 auto;
}
#socialContactSection {
  width: 1030px;
  height: 170px;
  margin: 0 auto;
}
.socialSection {
  width: 450px;
  height: 150px;
  padding: 10px;
  margin-right: 10px;
  text-align: left;
  background-color: #fff;
  float: left;
  box-shadow: 0px 3px 2px #d7e4ed;
}
  .socialSection h2 {
    margin: 0 0 10px 0;
    color: #39bba1;
    font-size: 12pt;
  }
  .socialSection p {
    font-size: 12pt;
  }
  .socialList {
    text-align: center;
    margin-bottom: 25px;
  }
  .socialList ul {
    display: block;
    margin-bottom: 25px;
  }
  .socialList li {
    display: inline;
    margin-right: 25px;
  }
  .socialList span {
    margin-right: 20px;
  }
  .socialList img {
    width: 60px;
    height: 60px;
  }
  .contactSection {
    width: 350px;
    height: 150px;
    padding: 10px;
    margin-right: 10px;
    text-align: left;
    background-color: #fff;
    float: right;
    box-shadow: 0px 3px 2px #d7e4ed;
  }

  .contactSection h2 {
    margin: 0 0 10px 0;
    font-size: 12pt;
    color: #40bea5;
  }
  .contactSection p {
    margin: 0 0 10px 0;
    font-size: 12pt;
  }
  .contactList ul {
    display: block;
  }
  .contactList li {
    display: block;
    margin: 0 0 10px 0;
  }

.myWork ul {
  display: block;
}
.myWork li {
  display: inline;
}
.myWork img {
  width: 250px;
  height: 141px;
}

/* SKILLS */

.skillsSection {
  text-align: center;
  margin: 0 0 25px 0;
}
.skillsHeader {
  color: #cb4856;
  margin-bottom: 25px;
}
.skillsList {
  margin: 0 50px 25px 60px;
  padding: 20px 10px;
  width: 260px;
  height: 200px;
  float: left;
  font-size: 12pt;
  background-color: #fff;
}
.skillsList ul {
  font-size: 12pt;
}
.skillsList li {
  font-size: 12pt;
}


/* NAVBAR
-------------------------------------------------- */

/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

/* Flip around the padding for proper display in narrow viewports */
.navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-wrapper .navbar {
  padding-right: 15px;
  padding-left: 15px;
}
.navbar-wrapper .navbar .container {
  width: auto;
}

/* Nav */
.navbar {
  margin-top: -25px;
}


/* CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  height: 500px;
  margin-bottom: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 500px;
  background-color: #777;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 20px;
  text-align: center;
}
.marketing h2 {
  font-weight: normal;
}
.marketing .col-lg-4 p {
  margin-right: 10px;
  margin-left: 10px;
}

/* EducationSection */

.educationSection {
  text-align: center;
}

/* PORTFOLIO */
#portfolioSection {

}
.portfolioBox {
  width: 50%;
  height: 600px;
}

/* Featurettes
------------------------- */

.featurette-divider {
  margin: 80px 0; /* Space out the Bootstrap <hr> more */
}

.featurette-content {
  width: 495px;
  height: 250px;
  float: left;
}

.featurette-image {
  width: 445px;
  height: 250px;
  float: right;
  box-shadow: 10px 10px 5px #ccc;
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}
.featurette-subheading {
  font-weight: 100;
  font-size: 20pt;
  margin-top: 10px;
  line-height: 1;
  letter-spacing: -1px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {
  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .featurette-heading {
    margin-top: 120px;
  }
}
