body {
  margin: 0;
  padding: 0;
  color: #d5d5d5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  top: 0;
  left: 0;
  z-index: 2;
}

#siteCanvas {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

#site {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

#siteContent {
  background-color: #444444;
  height: 800px;
  z-index: 99;
}

@media (min-width: 1240px) {
  #siteContent {
    max-height: 90%;
    border-radius: 20px;
    position: absolute;
    top: -999px;
    bottom: -999px;
    left: -999px;
    margin: auto;
    max-width: 1280px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    right: -999px;
    width: calc(100% - 200px);
  }
}

@media (min-width: 1025px) and (max-width: 1239px) {
  #siteContent {
    max-height: 90%;
    border-radius: 20px;
    position: absolute;
    top: -999px;
    bottom: -999px;
    left: -999px;
    margin: auto;
    max-width: 1280px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    right: -919px;
    width: calc(100% - 120px);
  }
}

@media (max-width: 1024px) {
  #siteContent {
    height: 100%;
    position: relative;
    width: 100%;
  }
}

#menuToggle {
  position: fixed;
  height: 47px;
  width: 47px;
  top: 10px;
  right: 10px;
  border-radius: 100%;
  background-color: #04B5C1;
  z-index: 9999;
}

@media (min-width: 1025px) {
  #menuToggle {
    display: none;
  }
}

#menuToggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 25%;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  transform-origin: left center;
}

#menuToggle span:nth-child(1) {
  top: 16px;
}

#menuToggle span:nth-child(2) {
  top: 22px;
}

#menuToggle span:nth-child(3) {
  top: 28px;
}

#menuToggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
  left: 15px;
}

#menuToggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#menuToggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 30px;
  left: 15px;
}

#header {
  width: 370px;
  max-width: 100%;
  float: left;
  height: calc(100% - 50px);
  padding: 50px 35px 40px 35px;
  text-align: center;
  background-color: #444444;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  #header {
    position: fixed;
    float: right;
    right: 0;
    top: 0;
    height: 100%;
    padding-bottom: 50px;
    border-radius: 0;
    z-index: 9998;
    transform: translate3d(370px, 0, 0);
  }
  #header .portfolioBtn {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  #header .headerContentWrap {
    overflow-y: auto;
    height: 100%;
    position: relative;
  }
}

#header .headerPhoto {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 30px auto;
  z-index: 1;
}

#header .headerPhoto::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -7px;
  display: block;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  opacity: .3;
  z-index: -1;
  background-image: -webkit-repeating-radial-gradient(center center, #fff, #fff 1px, transparent 0px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, #fff, #fff 1px, transparent 0px, transparent 100%);
  background-size: 6px 6px;
}

#header .headerPhoto img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  border: 3px solid #04B5C1;
}

#header .headerTitle {
  margin-top: 15px;
}

#header .headerTitle h2 {
  font-size: 32px;
  font-weight: 600;
  color: #f5f5f5;
}

#header .headerTitle h4 {
  font-size: 15px;
  font-weight: 300;
  color: #bbb;
}

@media (max-width: 1024px) {
  #header .mainMenu {
    margin: 30px 0;
  }
  #header .mainMenu li a {
    display: block;
    color: #ffffff;
    padding: 10px 0;
    opacity: .7;
    font-size: 14px;
  }
  #header .mainMenu li a:hover {
    opacity: 1;
  }
  #header .mainMenu li a .menuText {
    margin-left: 5px;
  }
  #header .mainMenu li.active a {
    opacity: 1;
  }
}

@media (min-width: 1025px) {
  #header .mainMenu {
    position: absolute;
    width: 70px;
    right: -85px;
    top: 0;
    background-color: #444444;
    border-radius: 20px;
  }
  #header .mainMenu li {
    height: 60px;
    text-align: center;
  }
  #header .mainMenu li a {
    display: block;
    height: 100%;
    position: relative;
    color: #eee;
    font-size: 22px;
    line-height: 60px;
    opacity: .7;
    z-index: 999;
  }
  #header .mainMenu li a .menuText {
    position: absolute;
    right: 0;
    height: 26px;
    line-height: 26px;
    top: 17px;
    padding: 0 10px;
    font-size: 13px;
    background-color: #04B5C1;
    color: #eee;
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header .mainMenu li a:hover {
    opacity: 1;
    color: #04B5C1;
  }
  #header .mainMenu li a:hover .menuText {
    display: block;
    opacity: 1;
    right: 70px;
  }
  #header .mainMenu li.active a {
    color: #04B5C1;
  }
}

#header .socialMenu {
  margin-top: 15px;
  text-align: center;
}

#header .socialMenu ul {
  margin-top: 15px;
  text-align: center;
  display: inline-block;
}

#header .socialMenu ul li {
  float: left;
  margin: 0 2px;
}

#header .socialMenu ul li a {
  font-size: 18px;
  color: #f5f5f5;
  height: 35px;
  width: 35px;
  display: block;
  border-radius: 100%;
  text-align: center;
  line-height: 35px;
}

#header .socialMenu ul li:hover a {
  background-color: rgba(255, 255, 255, 0.2);
}

#header .headerButton {
  margin-top: 40px;
}

#header .siteCopyright {
  position: absolute;
  width: 370px;
  left: 0;
  bottom: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 45px 0 35px;
  background-color: #444444;
  border-radius: 20px;
}

#header .siteCopyright p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 1024px) {
  #header.open {
    transform: translate3d(0, 0, 0) !important;
  }
}

@media (max-width: 1024px) {
  #navigationButtons {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 40px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #04B5C1;
    z-index: 99;
    border-radius: 30px;
  }
  #navigationButtons li {
    height: 38px;
    text-align: center;
    color: #eee;
    font-size: 16px;
    line-height: 38px;
    opacity: .7;
    cursor: pointer;
  }
  #navigationButtons li:hover {
    opacity: 1;
    color: #04B5C1;
  }
}

@media (min-width: 1025px) {
  #navigationButtons {
    position: absolute;
    width: 70px;
    right: -85px;
    bottom: 0;
    background-color: #444444;
    border-radius: 20px;
  }
  #navigationButtons li {
    height: 60px;
    text-align: center;
    color: #eee;
    font-size: 22px;
    line-height: 60px;
    opacity: .7;
    cursor: pointer;
  }
  #navigationButtons li:hover {
    opacity: 1;
    color: #04B5C1;
  }
}

#contentArea {
  width: calc(100% - 370px);
  float: left;
  background-color: #222222;
  border-radius: 20px;
  height: 100%;
  overflow-y: auto;
  position: relative;
}

@media (max-width: 1024px) {
  #contentArea {
    width: 100%;
    border-radius: 0;
  }
}

#contentArea .sitePage {
  padding: 50px 40px 40px 40px;
  position: relative;
  width: 100%;
}

#contentArea .contentAreaWrap {
  width: 100%;
  height: 100%;
}

#contentArea #contentAnimationWrap {
  width: 100%;
  height: 100%;
  animation-duration: .5s;
}

#contentArea #homePage {
  display: table;
  height: 100%;
}

#contentArea #homePage .homeContent {
  display: table-cell;
  vertical-align: middle;
}

#contentArea #homePage .homeContent .homeText {
  width: 300px;
  margin: auto;
}

#contentArea #homePage .homeContent .homeText img {
  height: 40px;
  width: auto;
}

#contentArea #homePage .homeContent .homeText h3 {
  margin-top: 30px;
  font-weight: 300;
}

#contentArea #aboutPage .aboutTextSection {
  margin-bottom: 40px;
}

#contentArea #aboutPage .aboutTextSection .aboutText {
  margin-bottom: 40px;
}

#contentArea #aboutPage .aboutTextSection .aboutList ul {
  width: 100%;
}

#contentArea #aboutPage .aboutTextSection .aboutList ul li {
  width: 100%;
  margin-bottom: 15px;
  font-size: 15px;
}

#contentArea #aboutPage .aboutTextSection .aboutList ul li .key {
  color: #04B5C1;
  font-weight: 600;
  margin-right: 10px;
}

#contentArea #aboutPage .aboutTextSection .aboutList ul li .value {
  font-weight: 300;
}

#contentArea #aboutPage .whatIDoSection {
  margin-bottom: 40px;
}

#contentArea #aboutPage .whatIDoSection .whatIDoItems .whatIDoItem {
  margin-bottom: 20px;
}

#contentArea #aboutPage .whatIDoSection .whatIDoItems .whatIDoItem .itemHeader {
  margin-bottom: 15px;
}

#contentArea #aboutPage .whatIDoSection .whatIDoItems .whatIDoItem .itemHeader .icon {
  color: #04B5C1;
  font-size: 28px;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 0 15px;
  background: #333;
  padding: 25px 10px 15px;
  border: 2px solid #444;
  border-radius: 10px;
  overflow: hidden;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem .icon {
  font-size: 30px;
  color: #04B5C1;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem h4 {
  font-weight: 400;
  margin-top: 10px;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem p {
  margin-top: 15px;
  color: #aaa;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem p .number {
  font-size: 36px;
}

#contentArea #aboutPage .iWithNumberSection .iWithNumberItems .iWithNumberItem p .numberText {
  font-size: 22px;
  opacity: .6;
  margin-left: 10px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol {
  margin-bottom: 50px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .educationItems {
  margin-bottom: 40px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem {
  position: relative;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem::after {
  content: "";
  display: block;
  clear: both;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .leftCol {
  width: 110px;
  float: left;
  padding-right: 20px;
  text-align: right;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .leftCol h5 {
  color: #aaa;
  margin: 8px 0;
  font-size: 14px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .leftCol p {
  font-size: 13px;
  font-weight: 300;
  color: #a5a6a7;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .divider {
  position: absolute;
  top: 0;
  left: 110px;
  width: 2px;
  height: 100%;
  background-color: #444;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .divider::before {
  content: "";
  display: block;
  position: absolute;
  margin-top: 8px;
  width: 18px;
  height: 18px;
  margin-left: -8px;
  border-radius: 100%;
  background-color: #04B5C1;
  opacity: .25;
  z-index: 0;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .divider::after {
  content: "";
  display: block;
  position: absolute;
  margin-top: 12px;
  width: 10px;
  height: 10px;
  margin-left: -4px;
  background-color: #222;
  border-radius: 100%;
  border: 2px solid #04b4e0;
  z-index: 1;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .rightCol {
  width: calc(100% - 110px);
  float: left;
  padding-left: 20px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .rightCol h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 22px;
}

#contentArea #resumePage .resumeInfoSection .educationExperienceCol .eduExpItem .rightCol p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 50px;
}

#contentArea #resumePage .resumeInfoSection .skillsCol {
  margin-bottom: 50px;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems {
  margin-bottom: 40px;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem {
  margin-bottom: 15px;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillHeader::after {
  content: "";
  display: block;
  clear: both;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillHeader h4 {
  float: left;
  font-size: 14px;
  font-weight: 400;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillHeader .value {
  font-size: 11px;
  float: right;
  color: #aaa;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillHeader .value::before {
  content: "% ";
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillHeader .value::after {
  content: var(--skill-value);
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillContent {
  margin-top: 4px;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillContent .skillPercWrap {
  position: relative;
  display: inline-block;
  background-color: #222222;
  border: 1px solid #04B5C1;
  border-radius: 8px;
  height: 10px;
  margin-bottom: 8px;
  width: 100%;
}

#contentArea #resumePage .resumeInfoSection .skillsCol .skillsItems .skillItem .skillContent .skillPercWrap .skillPerc {
  background-color: #04B5C1;
  border: 2px solid #222222;
  border-radius: 9px;
  height: 8px;
  padding: 0;
  width: var(--skill-perc);
}

#contentArea #resumePage .resumeInfoSection .skillsCol .knowledgesWrap ul li {
  display: inline-block;
  background-color: #04B5C1;
  border-radius: 3px;
  color: #fff;
  padding: 3px 10px;
  margin: 0 2px 5px 0;
  font-size: 13px;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  border: 2px solid #444444;
  border-radius: 8px;
  margin-bottom: 20px;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem::after {
  content: "";
  display: block;
  clear: both;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateLogo {
  display: table-cell;
  width: 120px;
  height: 100%;
  background-color: #444444;
  padding: 15px;
  vertical-align: middle;
  text-align: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateLogo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateContent {
  display: table-cell;
  width: 100%;
  padding: 20px 25px;
  vertical-align: middle;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateContent h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateContent .company {
  color: #777;
  font-size: 14px;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem .certificateContent .date {
  font-size: 12px;
  color: #777;
  opacity: .7;
}

#contentArea #resumePage .certificateSection .certificateItems .certificateItem:hover .certificateLogo img {
  filter: grayscale(0);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioFilters {
  margin-bottom: 30px;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioFilters li {
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioFilters li:hover {
  opacity: .7;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioFilters li a {
  color: #aaa;
  cursor: pointer;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioFilters li.active {
  opacity: 1;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid {
  margin: 0 -7px;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure {
  padding: 7px;
  position: relative;
  overflow: hidden;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg {
  position: relative;
  overflow: hidden;
  height: 250px;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg img {
  display: block;
  position: absolute;
  top: -999px;
  bottom: -999px;
  left: -999px;
  right: -999px;
  height: 100%;
  width: auto;
  margin: auto;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg .category {
  display: inline-block;
  padding: 2px 8px;
  background-color: #222222;
  color: #f5f5f5;
  font-size: 11px;
  top: 15px;
  left: 15px;
  position: absolute;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  transform: translateY(-40px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg .typeIcon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #222222;
  color: #04B5C1;
  font-size: 15px;
  text-align: center;
  line-height: 30px;
  top: 15px;
  right: 15px;
  position: absolute;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  transform: translateX(45px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .portfolioItemImg::after {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure .title {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  position: relative;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg img {
  transform: scale(1.1);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category {
  opacity: 1;
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(1) {
  transform: translateY(0px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(2) {
  transform: translateY(30px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(3) {
  transform: translateY(60px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(4) {
  transform: translateY(90px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(5) {
  transform: translateY(120px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(6) {
  transform: translateY(150px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(7) {
  transform: translateY(180px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(8) {
  transform: translateY(210px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(9) {
  transform: translateY(240px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .categories .category:nth-child(10) {
  transform: translateY(270px);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg .typeIcon {
  opacity: 1;
  transform: translateX(0);
}

#contentArea #portfolioPage .portfolioSection .portfolioContent .portfolioGrid figure:hover .portfolioItemImg::after {
  background-color: rgba(0, 0, 0, 0.5);
}

#contentArea #contactPage .contactInfoSection .contactInfoCol .contactInfoItems .contactInfoItem {
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
  margin: 0 0 25px 0;
  background-color: #333;
  padding: 20px 10px;
  border: 1px solid #444444;
  overflow: hidden;
}

#contentArea #contactPage .contactInfoSection .contactInfoCol .contactInfoItems .contactInfoItem .icon {
  font-size: 33px;
  color: #04B5C1;
}

#contentArea #contactPage .contactInfoSection .contactInfoCol .contactInfoItems .contactInfoItem h4 {
  font-size: 15px;
  margin-top: 8px;
  font-weight: 400;
}

#ajaxPageWrapper {
  width: 100%;
  height: 100%;
  animation-duration: .5s;
  position: fixed;
  z-index: 1039;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #222222;
}

#ajaxPageWrapper .ajaxPageContent {
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: #222222;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 40px 50px 40px;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageNavigator {
  text-align: right;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageNavigator .navigationItem {
  position: relative;
  display: inline-block;
  margin: 0 3px;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageNavigator .navigationItem a {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  color: #b5b5b5;
  background-color: #444444;
  transition: .4s;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageNavigator .navigationItem a i {
  line-height: 40px;
  font-size: 22px;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageNavigator .navigationItem a:hover {
  background-color: #04B5C1;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageTitle {
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: left;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageTitle h1 {
  display: inline-block;
  margin: 0;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageTitle .ajaxPageCategories {
  display: inline-block;
}

#ajaxPageWrapper .ajaxPageContent .ajaxPageContainer .ajaxPageTitle .ajaxPageCategories li {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5em;
  color: #e5e5e5;
  padding: 2px 7px;
  background-color: #444444;
  border-radius: 3px;
  border: 1px solid #444444;
  margin: 3px 2px 0 0;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid {
  margin: 0 -7px;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure {
  padding: 7px;
  position: relative;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure .projectImage {
  position: relative;
  overflow: hidden;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure .projectImage img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure .projectImage a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 3;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure .projectImage .caption {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 8px 10px;
  margin: 0;
  z-index: 2;
  color: #ffffff;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure .projectImage::after {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure:hover .projectImage img {
  transform: scale(1.1);
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure:hover .projectImage .caption {
  transform: translateX(0);
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectImagesGrid figure:hover .projectImage::after {
  background-color: rgba(0, 0, 0, 0.5);
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription {
  display: block;
  position: relative;
  padding: 20px 25px 25px;
  background-color: #444444;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent {
  margin-top: 20px;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectGeneralInfo li {
  margin-bottom: 15px;
  word-break: break-all;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectGeneralInfo li p i {
  width: 20px;
  text-align: center;
  margin-right: 4px;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectDescriptionText {
  word-break: break-all;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectDescriptionText ul {
  list-style-type: disc;
  list-style-position: inside;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectDescriptionText ul li {
  margin-bottom: 12px;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectUsedSkills {
  margin-top: 60px;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectUsedSkills ul li {
  display: inline-block;
}

#ajaxPageWrapper .ajaxPageContent .singlePortfolioContainer .projectDescription .projectDescriptionContent .projectUsedSkills ul li a {
  display: inline-block;
  font-size: 12px;
  line-height: 1.5em;
  color: #e5e5e5;
  padding: 2px 7px;
  background-color: #222222;
  border-radius: 3px;
  border: 1px solid #222222;
  margin: 3px 2px 0 0;
}
/*# sourceMappingURL=style.css.map */