body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #F8F7FF;
  letter-spacing: 1px;
  margin: 0;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.2);
}

.slides-navigation .prev,
.slides-navigation .next {
  width: 47px;
  height: 47px;
  background-size: cover;
  background-repeat: no-repeat;
}

.slides-navigation a.prev {
  left: 20px;
  background-image: url("../images/icons/previous.png");
}

.slides-navigation a.next {
  right: 20px;
  background-image: url("../images/icons/next.png");
}

.titleMessage {
  position: absolute;
  width: 100%;
  height: 250px;
  top: 50%;
  left: 15%;
  z-index: 5;
  text-align: center;
  margin-top: -125px;
}

.titleMessage .heading p {
  color: #fff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
  font-weight: 100;
  letter-spacing: 5px;
}

.titleMessage .heading .main {
  font-size: 60px;
}

.titleMessage .heading .sub {
  font-size: 25px;
}

.main { 
  text-transform: uppercase;
}

.section {
  padding: 100px 0;
}

.aboutImage {
  max-width: 100%;
}

.skillsSection, .contactSection {
  background-color: #0A0DAE;
  color: #F8F7FF;
}

.skill {
  text-align: center;
  margin-left: 10px;
  margin-top: 35px;
}

.chart {
  position: relative;
  width: 152px;
  height: 152px;
  display: inline-block;
  text-align: center;
  margin-bottom: 35px;
}

.chart canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.chart .percent {
  color: #F8F7FF;
  line-height: 152px;
  display: inline-block;
  font-size: 35px;
}

.chart .percent:after {
  content: '%';
}

.squareItem {
  margin-top: 30px;
  position: relative;
}

.squareInnerContainer {
  position: relative;
  padding: 50px 15px 35px;
  text-align: center;
  border: 2px solid #444;
  border-top: none;
}

.squareInnerContainer::before, .squareInnerContainer::after {
  content: '';
  position: absolute;
  top: 0px;
  width: 30%;
  border-bottom: 2px solid #444;
}

.squareInnerContainer::before {
  right: 0px;
}

.squareInnerContainer::after {
  left: 0px;
}

.squareContent h2 {
  color: #0A0DAE;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 10px;
}

.squareContent h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.squareIcon {
  position: absolute;
  left: 50%;
  top: -30px;
  width: 40%;
  height: 60px;
  font-size: 45px;
  margin-left: -20%;
  color: #0A0DAE;
}

.contactButton {
  color: #F8F7FF;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 20px;
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #F8F7FF;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.contactButton:hover {
  color: #0A0DAE;
  background-color: #F8F7FF;
  font-weight: 700;
}

.filter a {
  color: #535151;
  border: 1px solid #aaa;
  padding: 10px 18px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}

.filter li {
  display: inline-block;
  padding: 5px;
}

.filter .current {
  background-color: #0A0DAE;
  border-color: #0A0DAE;
  color: #F8F7FF;
}

.filter {
  text-align: center;
  width: 100%;
}

.section .heading {
  text-align: center;
  padding-bottom: 40px;
  width: 100%;
}

.itemsContainer {
  width: 100%;
}

.items li {
  display: inline-block;
  padding: 5px;
}

.items li img {
  width: 100%;
  transition: all 0.2s linear, 1s;
}

.items .item {
  position: relative;
  display: block;
  overflow: hidden;
}

.items .icons {
  position: absolute;
  width: 90px;
  height: 40px;
  left: 50%;
  top: 50%;
  margin: -20px auto 0px -47px;
  text-align: center;
  z-index: 3;
}

.items .icons i {
  color: #F8F7FF;
  font-size: 24px;
  margin-top: 9px;
}

.items a {
  width: 40px;
  height: 40px;
  padding-top: 10px;
  background-color: #0A0DAE;
  color: #F8F7FF;
  position: relative;
  display: inline-block;
  transition: all 0.2s linear, 0.2s;
}

.items .imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0px; 
  top: 0px;
  opacity: 0;
  transition: all 0.2s linear, 1s;
}

.items .item:hover .imageOverlay {
  opacity: 1;
}

.items .openButton {
  float: left;
  left: -200px;
}

.items .projectLink {
  float: right;
  right: -200px;
}

.items .item:hover .openButton {
  left: 0px;
}

.items .item:hover .projectLink {
  right: 0px;
}

.items .item:hover img {
  transform: scale(1.05, 1.05);
}

.items {
  padding: 0;
}

#navigation {
  background-color: #0A0DAE;
  padding: 20px 10px;
  z-index: 4;
  width: 100%;
}

#navigation li {
  padding: 0 10px;
}

#navigation li a {
  color: #F8F7FF;
}

.navbar-brand, .navbar-brand:hover {
  color: #F8F7FF;
}

.navbar-toggler-icon {
  border: none;
  color: #F8F7FF !important;
}

.fixedNav #navigation {
  position: fixed;
  top: 0;
}

.loader {
  width: 100%;
  height: 100%;
  background-color: #f4f5f6b9;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 5;
}

.loader .inner {
  width: 100%;
  height: 100%;
  background-image: url(../images/preloader.gif);
  background-position: center center;
  background-repeat: no-repeat;
}
