.m-1 {
  margin: 1rem;
}

.my-1 {
  margin: 1rem 0;
}

.mx-1 {
  margin: 0 1rem;
}

.p-1 {
  padding: 1rem;
}

.py-1 {
  padding: 1rem 0;
}

.px-1 {
  padding: 0 1rem;
}

.m-2 {
  margin: 2rem;
}

.my-2 {
  margin: 2rem 0;
}

.mx-2 {
  margin: 0 2rem;
}

.p-2 {
  padding: 2rem;
}

.py-2 {
  padding: 2rem 0;
}

.px-2 {
  padding: 0 2rem;
}

.m-3 {
  margin: 3rem;
}

.my-3 {
  margin: 3rem 0;
}

.mx-3 {
  margin: 0 3rem;
}

.p-3 {
  padding: 3rem;
}

.py-3 {
  padding: 3rem 0;
}

.px-3 {
  padding: 0 3rem;
}

.m-4 {
  margin: 4rem;
}

.my-4 {
  margin: 4rem 0;
}

.mx-4 {
  margin: 0 4rem;
}

.p-4 {
  padding: 4rem;
}

.py-4 {
  padding: 4rem 0;
}

.px-4 {
  padding: 0 4rem;
}

.m-5 {
  margin: 5rem;
}

.my-5 {
  margin: 5rem 0;
}

.mx-5 {
  margin: 0 5rem;
}

.p-5 {
  padding: 5rem;
}

.py-5 {
  padding: 5rem 0;
}

.px-5 {
  padding: 0 5rem;
}

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

body {
  font-family: 'Raleway', sans-serif;
  background-color: #fff;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #17a2b8;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.x-large {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.large {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-primary {
  color: #17a2b8;
}

.rounded-img {
  border-radius: 50%;
}

.line {
  height: 1px;
  background-color: #ccc;
  margin: 1.5rem 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  margin-top: 6rem;
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 0 2rem;
}

.bg-primary {
  background-color: #17a2b8;
  color: #fff;
}

.bg-dark {
  background-color: #343a40;
  color: #fff;
}

.bg-success {
  background-color: #28a745;
  color: #fff;
}

.bg-danger {
  background-color: #dc3545;
  color: #fff;
}

.bg-light {
  background-color: #f4f4f4;
  color: #333;
  border: 1px solid #ccc;
}

.bg-white {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.btn {
  display: inline-block;
  background-color: #f4f4f4;
  color: #333;
  border: none;
  outline: none;
  padding: .4rem 1.3rem;
  cursor: pointer;
  font-size: 1rem;
  margin-right: .5rem;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.btn:hover {
  background: #626d78;
  color: #fff;
}

.btn.btn-primary {
  background-color: #17a2b8;
  color: #fff;
}

.btn.btn-primary:hover {
  background: #1ab6cf;
}

.btn.btn-dark {
  background-color: #343a40;
  color: #fff;
}

.btn.btn-dark:hover {
  background: #3f474e;
}

.btn.btn-success {
  background-color: #28a745;
  color: #fff;
}

.btn.btn-success:hover {
  background: #2dbc4e;
}

.btn.btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.btn.btn-danger:hover {
  background: #e04b59;
}

.alert {
  padding: .8rem;
  margin: 1rem;
  opacity: .9;
  background-color: #f4f4f4;
  color: #333;
}

.alert.alert-primary {
  background-color: #17a2b8;
  color: #fff;
}

.alert.alert-danger {
  background-color: #dc3545;
  color: #fff;
}

.alert.alert-dark {
  background-color: #343a40;
  color: #fff;
}

.alert.alert-success {
  background-color: #28a745;
  color: #fff;
}

.badge {
  font-size: .8rem;
  background-color: #f4f4f4;
  color: #333;
  margin: .3rem;
  padding: .1rem;
  text-align: center;
}

.badge.badge-primary {
  background-color: #17a2b8;
  color: #fff;
}

.badge.badge-success {
  background-color: #28a745;
  color: #fff;
}

.badge.badge-danger {
  background-color: #dc3545;
  color: #fff;
}

.badge.badge-dark {
  background-color: #343a40;
  color: #fff;
}

.dark-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
}

.table th {
  background-color: #f4f4f4;
}

.form-group {
  margin: 1.2rem 0;
}

.form-text {
  display: block;
  margin-top: .3rem;
  color: #ccc;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="date"],
.form select,
.form textarea {
  display: block;
  width: 100%;
  padding: .4rem;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}

.form input[type="submit"] {
  font: inherit;
}

.form .social-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form .social-input i {
  padding: .5rem;
  width: 4rem;
}

.form .social-input i.fa-twitter {
  color: #38a1f3;
}

.form .social-input i.fa-facebook {
  color: #3b5998;
}

.form .social-input i.fa-instagram {
  color: #3f729b;
}

.form .social-input i.fa-youtube {
  color: #c4302b;
}

.form .social-input i.fa-linkedin {
  color: #0077b5;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  border-bottom: 1px solid #17a2b8;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: .9;
  padding: .7rem 2rem;
}

.navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar a {
  color: #fff;
  padding: .45rem;
  margin: 0 .25rem;
}

.navbar a:hover {
  color: #17a2b8;
}

.landing {
  background: url(img/showcase.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.landing-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 4fr 2fr;
      grid-template-columns: 2fr 4fr 2fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  grid-gap: 2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.profile-grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'top top' 'about about' 'exp edu' 'github github';
  grid-gap: 1rem;
}

.profile-grid .profile-top {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.profile-grid .profile-top img {
  width: 250px;
}

.profile-grid .profile-top .icons a {
  color: #fff;
  margin: 0 .3rem;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.profile-grid .profile-top .icons a:hover {
  color: #343a40;
}

.profile-grid .profile-about {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: about;
  text-align: center;
}

.profile-grid .profile-about .skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.profile-grid .profile-exp {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: exp;
}

.profile-grid .profile-edu {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: edu;
}

.profile-grid .profile-exp > div,
.profile-grid .profile-edu > div {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #ccc;
}

.profile-grid .profile-exp > div:last-child,
.profile-grid .profile-edu > div:last-child {
  border-bottom: none;
}

.profile-grid .profile-exp p,
.profile-grid .profile-edu p {
  margin: .5rem 0;
}

.profile-grid .profile-github {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: github;
}

.profile-grid .profile-github .repo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile-grid .profile-github .repo > div:first-child {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

.profile-grid .profile-github .repo > div:last-child {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.post-form-header {
  padding: .5rem;
}

.post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr;
      grid-template-columns: 1fr 4fr;
  grid-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post > div:first-child {
  text-align: center;
}

.post img {
  width: 150px;
}

@media (max-width: 700px) {
  .hide-sm {
    display: none;
  }
  .container {
    margin-top: 8rem;
  }
  .large {
    font-size: 2rem;
  }
  .x-large {
    font-size: 3rem;
  }
  .lead {
    font-size: 1rem;
  }
  .navbar {
    display: block;
    text-align: center;
  }
  .navbar ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navbar h1 {
    margin-bottom: 1rem;
  }
  .dash-buttons a {
    display: block;
    margin-top: .5rem;
  }
  .profile {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
  .profile ul {
    display: none;
  }
  .profile-grid {
        grid-template-areas: 'top' 'about' 'exp' 'edu' 'github';
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-grid .profile-top {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: top;
  }
  .profile-grid .profile-about {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: about;
  }
  .profile-grid .profile-edu {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: edu;
  }
  .profile-grid .profile-exp {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: exp;
  }
  .profile-grid .profile-github {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: github;
  }
  .profile-grid .profile-about .skills {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .post a, .post button {
    padding: .3rem .4rem;
  }
  .post p {
    margin-top: -2rem;
    text-align: justify;
  }
}
/*# sourceMappingURL=style.css.map */