body {
  position: relative;
  height: 100%;
  font-family: "Nunito", Arial, sans-serif;
  background: #0f3e96;
}

section {
  padding: 4em 0;
}

.section-heading {
  width: 100%;
}

.section-heading h2 {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 20px;
  line-height: 1.5;
  margin: 0 0 50px 0;
}

.section-heading h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 2px;
  background: #fff;
  margin-left: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

ul.horizontal-list {
  padding: 0;
  margin: 0;
}

ul.horizontal-list li {
  display: inline-block;
  list-style: none;
}

.circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.block {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 0.5px solid #ccc;
}

@media (any-hover: hover) {
  .block {
    -webkit-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.5);
    -moz-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.5);
    -ms-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.5);
    -o-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.5);
    box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.5);
  }
}
.js .to-animate {
  opacity: 0;
}

.icon-link {
  height: 40px;
  width: 40px;
}

@media (any-hover: hover) {
  .icon-link:hover {
    transform: scale(1.25);
  }
}
li.icon-link a {
  display: table;
  width: 100%;
  height: 100%;
}

li.icon-link a:hover, li.icon-link a:active, li.icon-link a:focus {
  text-decoration: none;
}

li.icon-link a i {
  display: table-cell;
  vertical-align: middle;
}

#navigation {
  position: absolute;
  top: 0;
  margin-top: 40px;
  width: 100%;
  z-index: 99;
  background-color: #0f3e96;
}

#navigation .navbar {
  padding: 0.25rem 10px;
}

#navigation.navbar-fixed-top {
  position: fixed !important;
  top: 0;
  margin-top: 0px;
  background: #0f3e96;
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
}

#navigation .navbar-brand {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

#navigation .navbar-toggler {
  border: none;
  padding: 0;
}

#navigation .navbar-toggler:focus, .navbar-toggler:active {
  outline: none;
}

@media (any-hover: hover) {
  #navigation .navbar-toggler:hover {
    outline: none;
  }
}
#navigation .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

@media (any-hover: hover) {
  #navigation .navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
}
#navbar li a {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 300;
}

#navigation #navbar li a.active {
  background: transparent;
  color: #fff;
}

@media (any-hover: hover) {
  #navbar li a:hover {
    background: transparent;
    color: #fff;
  }
}
#navbar li a span {
  position: relative;
  display: inline-block;
}

#navbar li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#navbar li a.active span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

@media (any-hover: hover) {
  #navbar li a:hover span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@media screen and (max-width: 575px) {
  #navigation {
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) and (any-hover: hover) {
  #navigation.navbar-fixed-top #navbar li a:hover span:before {
    visibility: hidden;
  }
}
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0f3e96;
}

#home img.profile-pic {
  width: 200px;
  height: 200px;
  border: 3px solid white;
  border-radius: 50%;
  margin-bottom: 16px;
}

#home h1.roles {
  font-size: 34px;
  font-weight: 400;
  color: white;
  margin: 0;
}

#home h2.contractor {
  font-size: 20px;
  line-height: 38px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
}

#home ul.contact-info li {
  margin: 0 4px;
}

#home li.icon-link {
  background: transparent;
  border: 1px solid white;
  color: white;
  overflow: hidden;
}

#home li.icon-link a:hover {
  background: rgba(255, 255, 255, 0.3);
}

#home li.icon-link a {
  font-size: 16px;
}

#home li.icon-link a i:before {
  color: #fff;
}

#home div.container-arrow-down {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #home img.profile-pic {
    width: 180px;
    height: 180px;
  }
  #home h1.roles {
    font-size: 30px;
    line-height: 36px;
  }
}
#services {
  background-color: #eee;
}

#services .section-heading h2 {
  color: black;
}

#services .section-heading h2:after {
  background: #0f3e96;
}

#services .role {
  position: relative;
  padding: 32px;
  text-align: center;
  line-height: 1.5;
  color: black;
}

#services .role i.icon {
  font-size: 3em;
  margin-bottom: 16px;
  color: #0f3e96;
}

#services .role h2.title {
  font-size: 1.375em;
  font-weight: 600;
  margin-bottom: 20px;
}

#services .role p.description {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 1em;
  color: #080808;
}

#skills {
  background-color: #0f3e96;
  color: rgb(255, 255, 255);
}

#skills .section-heading h2 {
  color: white;
}

#skills .section-heading h2:after {
  background: rgba(255, 255, 255, 0.5);
}

#skills .icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: -moz-inline-stack;
  display: inline-block;
}

#skills h3 {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 12px;
}

#skills p {
  font-size: 1em;
  font-weight: 300;
  color: #F8F8F8;
  margin-bottom: 0px;
}

#work {
  background-color: #eee;
}

#work .section-heading h2 {
  color: black;
}

#work .section-heading h2:after {
  background: #0f3e96;
}

#work .item {
  position: relative;
  top: 0;
  width: 100%;
  display: block;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#work .item:hover, #work .item:focus {
  text-decoration: none;
  -webkit-box-shadow: 10px 20px 60px 5px rgba(0, 0, 0, 0.375);
  -moz-box-shadow: 10px 20px 60px 5px rgba(0, 0, 0, 0.375);
  -ms-box-shadow: 10px 20px 60px 5px rgba(0, 0, 0, 0.375);
  -o-box-shadow: 10px 20px 60px 5px rgba(0, 0, 0, 0.375);
  box-shadow: 10px 20px 60px 5px rgba(0, 0, 0, 0.375);
}

#work .item:hover img.client-logo, #work .item:focus img.client-logo {
  opacity: 0.75;
}

#work .item .text-box {
  padding: 16px 16px 12px 16px;
}

#work .item .text-box h2.client-name {
  font-size: 17px;
  font-weight: 600;
  color: black;
  margin: 0;
}

#work .item .text-box p.role {
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

#contact {
  padding-bottom: 3em;
}

#contact .section-heading h2 {
  color: white;
}

#contact .section-heading h2:after {
  background: rgba(255, 255, 255, 0.5);
}

#contact .item a {
  color: white;
}

#contact .item div.icon-wrapper {
  display: table;
  margin: auto;
}

#contact .item div.icon {
  display: table-cell;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
  border: 1px solid white;
}

#contact .item a:hover div.icon {
  background: rgba(255, 255, 255, 0.2666666667);
  border: 1px solid white;
  text-decoration: none;
  transform: scale(1.125);
}

#contact .item div.icon i {
  font-size: 16px;
}

#contact .item div.username {
  font-size: 20px;
  text-align: center;
  margin-top: 8px;
}

#footer {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}

#footer p.copyright {
  font-size: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

#footer p.copyright .icon {
  margin-right: 2px;
}

@media screen and (max-width: 767px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  section {
    padding: 2em 0;
  }
  .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .section-heading h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-md-none {
    display: block !important;
  }
  .col-md-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  #services .col-md-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #services .d-sm-none {
    display: block !important;
  }
  #services .block {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #services .icon-title-wrapper {
    flex-shrink: 0.5;
    text-align: center;
    width: 200px;
  }
  #services .role i.icon {
    font-size: 2.5em;
    margin-bottom: 12px;
  }
  #services .role h2.title {
    margin: 0;
    font-size: 1.25em;
  }
  #services .role .description {
    margin-left: 32px;
  }
}
@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .section-heading .left-border {
    margin-bottom: 35px;
  }
  #services .block {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  #services .icon-title-wrapper {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  #services .role {
    padding: 24px;
  }
  #services .role i.icon {
    font-size: 2em;
    margin-bottom: 8px;
  }
  #services .role h2.title {
    margin: 0;
    font-size: 1.125em;
    margin-left: 12px;
  }
  #services .role p.description {
    font-size: 0.9375em;
    margin-left: 0px;
    margin-top: 8px;
  }
  #skills div.skill {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex: none;
  }
  #skills div.skill .icon {
    font-size: 2em;
    margin: 0;
  }
  #skills div.skill .text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 16px;
  }
  #skills h3 {
    font-size: 1.125em;
    margin-bottom: 4px;
    line-height: 1.375em;
  }
  #skills p {
    font-size: 0.875em;
    font-weight: 300;
    margin-bottom: 0px;
  }
  #work .item {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }
  #work img.client-logo {
    display: inline-block;
    max-width: 40%;
  }
  #work .item .text-box {
    display: inline-block;
    padding: 0px 16px;
  }
}
@media screen and (min-width: 375px) and (max-width: 575px) {
  #work .item .text-box h2.client-name {
    font-size: 16px;
  }
  #work .item .text-box p.role {
    font-size: 15px;
  }
}
@media screen and (max-width: 374px) {
  #work img.client-logo {
    max-width: 35%;
  }
  #work .item .text-box h2.client-name {
    font-size: 15px;
  }
  #work .item .text-box p.role {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #skills h3 {
    font-size: 1.125em;
    margin-bottom: 4px;
    line-height: 1.375em;
  }
  #skills p {
    font-size: 0.9375em;
  }
  #contact .d-sm-none {
    display: block !important;
  }
  #contact .item {
    width: 100%;
  }
  #contact .item a {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }
  #contact .item div.icon-wrapper {
    margin: 0;
    height: 40px;
    width: 40px;
  }
  #contact .item div.username {
    font-size: 1.125em;
    margin-left: 12px;
    margin-top: 0px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
  section {
    padding: 3em 0;
  }
  #home .container {
    margin-top: -10%;
  }
  #home div.container-arrow-down {
    visibility: hidden;
  }
  #contact .item div.username {
    margin-top: 4px;
  }
  .block {
    -webkit-box-shadow: 3px 3px 3px 3px rgba(163, 174, 184, 0.375);
    -moz-box-shadow: 3px 3px 3px 3px rgba(163, 174, 184, 0.375);
    -ms-box-shadow: 3px 3px 3px 3px rgba(163, 174, 184, 0.375);
    -o-box-shadow: 3px 3px 3px 3px rgba(163, 174, 184, 0.375);
    box-shadow: 3px 3px 3px 3px rgba(163, 174, 184, 0.375);
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 320px) {
  #home .profile-container {
    margin-top: -5%;
    transform: scale(0.9);
  }
  #home img.profile-pic {
    width: 160px;
    height: 160px;
    border: 2px solid white;
  }
  #home h1.roles {
    font-size: 28px;
  }
  #home h2.contractor {
    font-size: 18px;
    line-height: 3p4x;
  }
  #services .role {
    padding: 20px;
  }
  #services .role h2.title {
    font-size: 1em;
  }
  #services .role p.description {
    font-size: 0.875em;
    font-weight: 300;
  }
  #skills div.skill .icon {
    font-size: 2em;
    margin: 0;
  }
  #skills h3 {
    font-size: 1em;
  }
  #skills p {
    font-size: 0.875em;
    font-weight: 300;
  }
  #work .item .text-box h2.client-name {
    font-size: 1em;
  }
  #work .item .text-box p.role {
    font-size: 0.875em;
    margin-top: 0px;
  }
  #contact .item div.username {
    font-size: 1em;
  }
}
@media only screen and (max-device-width: 414px) and (orientation: landscape), screen and (max-device-height: 414px) and (orientation: landscape) {
  #navigation {
    margin-top: 0;
  }
  #home .profile-container {
    margin-top: -3%;
  }
  #home img.profile-pic {
    width: 25vh;
    height: 25vh;
    border: 2px solid white;
    margin-bottom: 2%;
  }
  #home h1.roles {
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin: 0;
  }
  #home h2.contractor {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px 0;
  }
  #home .icon-link {
    height: 9vh;
    width: 9vh;
    max-height: 40px;
    max-width: 40px;
    min-height: 32px;
    min-width: 32px;
    background-color: red;
  }
  #home div.container-arrow-down {
    visibility: hidden;
  }
}
@media only screen and (min-device-height: 320px) and (max-device-height: 320px) and (orientation: landscape) {
  #home .profile-container {
    margin-top: 7%;
  }
}

/*# sourceMappingURL=style.css.map */
