/*html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}*/

body {
  font-family: "Lato", "Georgia";
  text-align: center;          
}

.fixed-header {
  width: 100%;
  position: fixed;
  top: 0px;
  background: #d9d9d9;
  left: 0;
  padding-bottom: 20px;
  text-align: left;
  z-index: 1;
}

.fixed-header-title {
  font-variant: small-caps;
  text-align: center;
  font-size: 150%;
  margin-top: 10px;
  color: #000033;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #b3b3b3;
  margin: 6px 8px;
  transition: 0.4s;
  opacity: 1;
}

.change .bar1 {
  -webkit-transform: rotate(180deg) translate(0px, -22px);
  transform: rotate(180deg) translate(0px, -22px);
}

.change .bar2 {
  -webkit-transform: rotate(180deg) translate(0px, 0px);
  transform: rotate(180deg) translate(0px, 0px);
}

.change .bar3 {
  -webkit-transform: rotate(180deg) translate(0px, 22px);
  transform: rotate(180deg) translate(0px, 22px);
}

.dropdown {
  position: absolute;
  display: inline-block;
  transition: open 3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0.7
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #f1f1f1
}

.show {
  display: block;
}


/* The hero image */
.hero-image {
  /* The image used */
  background-image: url("flatirons.jpg");
  /* Set a specific height */
  height: 50%;
  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


/* Place text in the middle of the image */

.hero-text {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f1f1f1;
}

.parallax {
  /* The image used */
  background-image: url("flatirons.jpg");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -6px;
  margin-right: -6px;
}

#bottom.parallax {
  min-height: 300px;
}


.section {
  margin: -1%;
  margin-top: 0px;
  background-color: #000033;
  color: #f2f2f2;
  margin-bottom: 0px;
}

.section-text {
  font-size: 14pt;
  margin-right: 10%;
  margin-left: 10%;
  line-height: 140%;
}

#about.section {
  height: 100%;
}

#about.section-text {
  display: flex;   
  flex-wrap: wrap;
  display: -webkit-flex; /* Safari */
  -webkit-flex-wrap: wrap; /* Safari 6.1+ */
  margin: auto;
}


#about.section-text div {
  width: 50%;
  margin: auto;
  min-width: 350px;

}

#raina-pic.img-circle {
  border-radius: 100% 100%;
  border: 5px solid #f9f9f9;
  height: 340px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

#contact.section {
  font-variant: small-caps;
  height: 100px;
  background: black;
  text-align: center;
}

#projects.section {
  background: #bbd0f7;
}

#resume.section {
  height: 100%;
  background-color: #f2f2f2;
  color: #595959;
}

.header {
  font-variant: small-caps;
  font-size: 150%;
}

#about-header.header {
  color: #f2f2f2;
  margin-bottom: 20px;
}

#resume-header.header {
  color: #000033;
}


#resume-text.section-text {
  text-align: left;
  margin-bottom: 50px;
}

#resume-header-small.header {
  color: #000033;
  font-size: 90%;
}

.resume-title {
  font-size: 100%;
  font-weight: bold;
  line-height: 200%;
}

.resume-subtitle {
  font-size: 80%;
  font-weight: bold;
  line-height: 200%;
}

.resume-subtitle2 {
  font-style: italic;
  float: right;
  line-height: 200%;
  text-align: right;
  font-size: 90%;
}

.skills-icon {
  border: 1.5px solid #000033;
  border-radius: 12px;
  background-color: #f9f9f9;
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px;
  font-size: 60%;
  min-width: 60px;
}

#projects {
      background-color: #d9d9d9;
}

#projects-header.header {
  margin: 50px;
}

.col-sm-4 {
  margin-bottom: 50px;
}

.thumbnail {
  min-height: 300px;
}

.img-circle {
  margin: 20px;
}