/*!
 * Start Bootstrap - Scrolling Nav (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

body {
    width: 100%;
    height: 100%;
}

html {
    width: 100%;
    height: 100%;
}


@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;

    }

    .top-nav-collapse {
        padding: 0;
    }
}

/* Sections */

.intro-section {
    height: 100%;
    padding-top: 100px;
    text-align: center;
    background: #c5d5cb;

}

.intro-text {
  background-color: #FFF8DC;
  padding: 10px;
  text-align: justify;
  border: 3px solid black;
  margin: 20px;
  line-height: 150%;
}

.intro-contents, .tech-contents, .projects-contents, .skills-contents {
    position: relative;
}

.tech-section {
    height: 100%;
    padding-top: 90px;
    text-align: center;
    background: #e3e0cf;
}

.tech-list {
  margin-top: 20px;
  box-sizing: border-box;
  padding: 10px;
  background: #9fa8a3;
  display: inline-block;
}

.tech-logo {
  height: 100px;
  padding: 10px;
}

.projects-section {
    height: 100%;
    padding-top: 90px;
    text-align: center;
    background: #9fa8a3;
}

.carousel-inner {
  height: 400px;
}

.project-gallery-img {
  height: 50%;
  width: 60%;
  margin-left: 20%;
}

.carousel-caption {
  background-color: #3b3a36;
  opacity: 0.8;
}

.carousel-caption a {
  color: white;
}

.skills-section {
    height: 100%;
    padding-top: 100px;
    text-align: center;
    background: #c0dfd9;
}

.skill-item {
  margin-top: 20px;
  box-sizing: border-box;
  padding: 10px;
  background: #F0FFFF;
  display: inline-block;
  border: 2px solid black;
}

.skill-details {
  visibility: hidden;
  text-align: left;
  opacity: 0; 
  height: 0;
  transition: visibility 0s, opacity 0.5s linear;
  overflow: hidden;

}

.skill-item:hover .skill-details {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.contact-section {
    height: 100%;
    padding-top: 100px;
    text-align: center;
    background: #3b3a36;
    color: white;
}

.contact-table {
  margin-left: 33%;
  font-size: 20px;
  padding: 10px;
  text-align: left;
  background: white;
}

.contact-content {
  padding: 10px;
  color: black;
}

.icon {
  width: 50px;
  height: 50px;
}

/* Scrolling Arrows */

/* the wrapper element that will become the outer circle */
.arrow-wrap {
  position:absolute;
  bottom: 0;
  z-index:1;
  left:50%;
  /*top:-20em;*/
  margin-left:-5em;
  background:#111;
  width:10em;
  height:10em;
  padding:4em 2em;
  border-radius:50%;
  font-size:0.5em;
  display:block;
  box-shadow:0px 0px 5px 0px #333;
}

/* a triangle to make the main part of the arrow. Adjust the border-color to fit your needs */
.arrow {
  float:left;
  position:relative;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3em 3em 0 3em;
  border-color: #ffffff transparent transparent transparent;
  -webkit-transform:rotate(360deg);/* added for better anti-aliasing on webkit browsers */
}

/* a pseudo element arrow placed on top of the other one with the same color as the wrapper */
.arrow:after {
  content:'';
  position:absolute;
  top:-3.2em;
  left:-3em;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3em 3em 0 3em;
  border-color: #111 transparent transparent transparent;
  -webkit-transform:rotate(360deg);/* added for better anti-aliasing on webkit browsers */
}

  @-webkit-keyframes arrows {
    0% { top:0; }
    10% { top:12%; }
    20% { top:0; }
    30% { top:12%; }
    40% { top:-12%; }
    50% { top:12%; }
    60% { top:0; }
    70% { top:12%; }
    80% { top:-12%; }
    90% { top:12%; }
    100% { top:0; }
  }
  
  .arrow-wrap .arrow {
    -webkit-animation: arrows 2.8s 0.4s;
    -webkit-animation-delay: 3s;
  }

/* Images */

.profile-pic {
    float: left;
    height: 50px;
    border-radius: 50%;
    -webkit-transition: all 0.5s; /* Safari */
    transition: all 0.5s;
    margin-right: 10px;
}

.profile-pic:hover {
    height: 100px;
    border-radius: 30%;
}