* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
	font-family: "Source Sans Pro", sans-serif;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.section-container {
  margin-top: 20px;
}

nav {
  background-color: #2273E9;
  position: fixed;
  top: 0px;
  width: 100%;
}

nav a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: white;
}

nav li {
  display: inline;
  list-style-type: none;
  margin-right: 20px;
}

.navbar-container {
  height: 50px;
}

.navbar-brand {
  float: left;
}

.navbar-menu {
  float: right;
}

.navbar-brand, .navbar-menu {
  padding: 15px;
}

#bar-icon {
  display: none;
  padding: 8px;
  border: 1px solid white;
  border-radius: 4px;
}

.navbar-menu li:hover {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

@media screen and (min-width: 751px) {
  .flex {
    flex-direction: row;
  }

  .box, .box-2 {
    margin: 20px !important;
  }
}

@media screen and (max-width: 750px) {
  #bar-icon {
    display: block;
    position: absolute;
    top: 7px;
    right: 15px;
  }

  .navbar-brand {
    float: unset;
  }

  .nav-mobile {
    height: unset;
  }

  .nav-mobile > .navbar-brand {
    border-bottom: 1px solid #ffffff;
  }

  .nav-mobile > .navbar-menu {
    float: unset;
    display: block !important;
  }

  .nav-mobile > .navbar-menu li {
    display: block;
    margin-right: 0px;
    padding: 5px;
  }

  .navbar-menu {
    padding: 8px;
    display: none;
  }

  .flex {
    flex-direction: column;
  }

  .btn-submit {
    width: 97% !important;
    margin-right: 5px !important;
    margin-left: 5px;
    float: unset !important;
  }
}

.navbar-menu > ul > li > a {
  font-size: 15px;
}

.jumbotron {
  padding-top: 70px;
  padding-bottom: 30px;
  text-align: center;
  background-image: url(../images/cover.jpg);
  background-position-y: -230px;
}

.jumbotron img {
  width: 200px;
  border: 3px solid #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}

.jumbotron h1 {
  color: white;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
  color: white;
}

.title-section {
  text-align: center;
}

.flex {
  display: flex;
  height: auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.box {
  flex-grow: 1;
  margin: 5px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
}

.box-2 {
  flex-grow: 2;
  margin: 5px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px;
}

.box > img {
  max-width: 100%;
  height: auto;
}

.project-description {
  padding: 10px;
  color: #29293a;
}

.project-description > p {
  margin-top: 5px;
  font-size: 13px;
}

.body-section {
  margin-top: 15px;
}

hr {
  width: 250px;
  border-top: 3px solid #999;
  margin: 7px auto;
}

.box-profile img {
  width: 100px;
  border: 3px solid #d2d6de;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  padding: 3px;
}

#contact {
  background-color: #eee;
  padding-top: 10px;
}

#contact aside {
  border-top: 3px solid #2273e9;
  background: #fff;
  border-radius: 3px !important;
  border-right: unset !important;
  border-bottom: unset !important;
  border-left: unset !important;
}

.box-profile-header {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f4f4;
}

.form-container {
  background-color: #fff;
  border: 0px;
  border-top: 3px solid #2273e9;
}

.form-container > form {
  padding: 5px;
}

.form-control {
  padding: 5px;
  box-shadow: rgba(17, 17, 17, 0.1) 0px 1px 8px;
  margin-bottom: 15px;
  padding-left: 12px;
}

.form-control > label {
  display: block;
}

.form-control > input[type="text"] {
  width: 100%;
  border: 0px;
  height: 30px;
}

.form-control > textarea {
  width: 100%;
  border: 0px;
}

.form-control > input[type="text"]:focus,
.form-control > textarea:focus {
  outline: 0px;
}

input[type="text"]:focus ~ .form-control {
  border-left: 3px solid #2273e9;
}

.btn-submit {
  float: right;
  margin-right: 5px;
  height: 35px;
  width: 70px;
  background-color: #ffff;
  outline: 0px;
  border: 2px solid #2273e9;
  border-radius: 5px;
  color: #2273e9;
  font-weight: bold;
  cursor: pointer;
}

.btn-submit.disabled {
  background-color: #f4f4f4;
  border: 2px solid #f4f4f4;
  color: #777;
  cursor: not-allowed;
}

.box-profile-body {
  padding: 10px;
}

.box-profile-body > ul {
  list-style: none;
}

.box-profile-body li {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}

.text-profile-detil {
  margin-top: 5px;
  color: #777;
}

footer {
  width: 100%;
  height: 100px;
  background-color: #333;
  padding-top: 30px;
}

.footer-area {
  text-align: center;
  color: #fff;
}

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

.form-control.error > input,
.form-control.error > textarea {
	border-bottom: 1px solid red;
}

.form-control.error > label {
	color: red;
}