@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: "Raleway-semibold";
  src: url("../fonts/Raleway-SemiBold.ttf");
}
@font-face {
  font-family: "Raleway-bold";
  src: url("../fonts/Raleway-Bold.ttf");
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes flipInX {
  from {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(5deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes popDown {
  0% {
    transform: translateY(-100px);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(300px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-300px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    transform: scale(0);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #fff;
  font-family: "Raleway";
  font-size: 8pt;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
  overflow-x: hidden;
  text-align: center;
}

#preload {
  display: none;
}

.page-link {
  cursor: pointer;
}

.disable-hover {
  pointer-events: none;
}

.m0 {
  margin: 0 !important;
}
.p0 {
  padding: 0 !important;
}
.overflow-wrap {
  overflow-x: hidden;
}

.canvas {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
}

.button {
  border: 2px solid #fff;
  box-sizing: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 13pt;
  padding: 10px 20px;
  transition: all 0.5s;
}
.button:hover {
  background-color: #04c2c9;
  border-color: #04c2c9;
}
.button .mdi {
  vertical-align: middle;
}

.bold {
  font-family: "Raleway-bold";
}

.flex {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex.row {
  flex-direction: row;
}
.flex.wrap {
  flex-wrap: wrap;
}

.hex-wrap {
  display: inline-block;
  height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
}

.hexagon {
  background-color: #04c2c9;
  display: inline-block;
  height: 100%;
  width: calc(100% * 0.57735);
}

.hexagon:before {
  background-color: inherit;
  content: "";
  height: inherit;
  position: absolute;
  right: calc((100% / 2) - ((100% * 0.57735) / 2));
  top: 0;
  transform: rotateZ(60deg);
  width: inherit;
}

.hexagon:after {
  background-color: inherit;
  content: "";
  height: inherit;
  position: absolute;
  right: calc((100% / 2) - ((100% * 0.57735) / 2));
  top: 0;
  transform: rotateZ(-60deg);
  width: inherit;
}

.highlight {
  color: #39ff14;
}

.header {
  color: #444649;
  font-family: "raleway-bold";
  font-size: 25pt;
  position: relative;
  position: relative;
}

.header-bar {
  background: #444649;
  height: 4px;
  margin: 25px 0 75px 0;
  width: 70px;
}

.label {
  font-size: 14pt;
  font-weight: 500;
}

.resume {
  background: #455261;
  height: 100px;
}

nav {
  bottom: 0;
  left: 0;
  position: absolute;
  background: #1b242f;
  border-bottom: 3px solid #04c2c9;
  height: 50px;
  text-align: left;
  width: 100%;
  z-index: 99;
}
nav.fixed {
  bottom: inherit;
  left: 0;
  position: fixed;
  top: 0;
}
nav.fixed.desk {
  animation: popDown 0.5s;
}
nav .link-wrap {
  background: #333;
  height: 0;
  max-width: 1200px;
  overflow: hidden;
  position: absolute;
  top: 53px;
  transition: height 0.3s ease-out;
  width: 100%;
}
nav .link-wrap.visible {
  height: 220px;
}
nav .link-wrap div {
  cursor: pointer;
  font-size: 12pt;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: color 0.5s;
}
nav .link-wrap div:first-child {
  padding: 25px 20px 12px 20px;
}
nav .link-wrap div:hover {
  color: #e31b6d;
}
nav .mdi-menu {
  font-size: 30pt;
  line-height: 36pt;
  margin: auto 0;
  position: absolute;
  right: 5vw;
  top: 0;
}
nav .active {
  color: #e31b6d;
}

.carousel-wrap {
  height: 250px;
  margin: 0 auto;
  position: relative;
}

.window {
  background: #222;
  overflow: hidden;
  position: relative;
}

#carousel {
  position: relative;
  top: 0;
  width: 10000px;
}

.slide {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  float: left;
  height: 250px;
  justify-content: center;
}

.mdi-chevron-left,
.mdi-chevron-right {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  color: #fff;
  cursor: pointer;
  cursor: pointer;
  font-size: 14pt !important;
  font-weight: bold;
  padding: 10px 15px;
  position: absolute;
}

.mdi-chevron-left {
  left: 0;
}

.mdi-chevron-right {
  right: 0;
}

.transition {
  transition: 0.7s;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.modal-wrap {
  height: 100vh;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  z-index: 100;
}
.modal-wrap .mask {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
}
.modal-wrap .modal {
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  color: #333;
  height: 100vh;
  opacity: 0;
  position: relative;
  text-align: left;
  transform: scale(0.8);
  transition: all 0.3s;
}
.modal-wrap .close {
  bottom: 25px;
  color: #bbb;
  cursor: pointer;
  font-size: 20pt;
  font-weight: 800;
  position: absolute;
  right: 10px;
}
.modal-wrap .info-box {
  border-top: 3px solid #1b242f;
  box-sizing: border-box;
  color: #444;
  padding: 15px 10px 85px 10px;
}
.modal-wrap .title {
  font-family: "Raleway-bold";
  font-size: 16pt;
  line-height: 20pt;
}
.modal-wrap .tag {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #c0c0c0;
  display: block;
  font-family: "Raleway-bold";
  font-size: 8pt;
  font-weight: 300;
  padding-bottom: 15px;
}
.modal-wrap .detail {
  font-size: 9pt;
  line-height: 14pt;
  margin-top: 13px;
}
.modal-wrap .mdi-open-in-new {
  font-size: 11pt;
  left: -10px;
  position: relative;
}
.modal-wrap .button {
  background: #e31b6d;
  border: 0;
  bottom: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 10pt;
  font-weight: 600;
  left: 10px;
  padding: 11px 30px;
  pointer-events: none;
  position: absolute;
  transition: all 0.5s;
  visibility: hidden;
}
.modal-wrap .button.visible {
  pointer-events: initial;
  visibility: visible;
}
.modal-wrap .button:hover {
  background: #fff;
  color: #e31b6d;
}
.modal-wrap .carousel {
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.25);
}
.modal-wrap.visible {
  pointer-events: initial;
}
.modal-wrap.visible .modal {
  opacity: 1;
  transform: scale(1);
}
.modal-wrap.visible .mask {
  opacity: 1;
}

section {
  color: #616161;
  line-height: 11pt;
  padding: 70px 0 70px 0;
  position: relative;
}
section .container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 10px;
  width: 100%;
}
section:nth-of-type(1) {
  color: #fff;
  height: calc(100vh + 53px);
  padding: 0 10px;
}
section:nth-of-type(1) .highlight {
  font-family: "Raleway-semibold";
}
section:nth-of-type(1) .text {
  font-size: 16pt;
  line-height: 20pt;
  margin: 0 0 20px 0;
  pointer-events: none;
  z-index: 1;
}
section:nth-of-type(1) .hexagon {
  transition: transform 0.9s ease-in-out;
}
section:nth-of-type(1) .hexagon:hover {
  transform: rotate(540deg);
}
section:nth-of-type(1) .button {
  margin-bottom: 53px;
  padding: 12px 40px 12px 15px;
  position: relative;
}
section:nth-of-type(1) .button .mdi {
  position: absolute;
  right: 15px;
  top: 11px;
  transition: transform 0.3s;
}
section:nth-of-type(1) .button:hover .mdi {
  transform: rotate(90deg);
}
section:nth-of-type(2) .label-wrap .label {
  margin: 20px 0 10px 0;
}
section:nth-of-type(2) .bullet-wrap {
  height: 200px;
  justify-content: flex-start;
  padding: 0 7px;
}
section:nth-of-type(2) .highlight {
  color: #009ada;
}
section:nth-of-type(2) .up-arrow {
  height: 30px;
  margin: 15px 0;
}
section:nth-of-type(2) .skills-wrapper {
  align-items: flex-start;
  width: 100%;
}
section:nth-of-type(2) .skills-wrapper .me {
  height: 200px;
}
section:nth-of-type(2) .skills-wrapper .label {
  margin: 20px 0 15px 0;
}
section:nth-of-type(2) .hexagon i {
  color: #fff;
  font-size: 34pt;
  left: 0;
  position: absolute;
  right: 0;
  top: 35px;
  z-index: 1;
}
section:nth-of-type(2) .bars-wrap {
  margin: 50px auto 0 auto;
  max-width: 90%;
  width: calc(100% - 15px);
}
section:nth-of-type(2) .bars-wrap:not(.animated) .fill {
  width: 0 !important;
}
section:nth-of-type(2) .bar {
  align-items: flex-end;
  background-color: #eee;
  color: #666;
  font-size: 7pt;
  height: 22px;
  margin: 0 0 12px 0;
  position: relative;
}
section:nth-of-type(2) .bar:nth-child(1) .fill {
  transition: 1.1s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(2) .fill {
  transition: 1.2s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(3) .fill {
  transition: 1.3s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(4) .fill {
  transition: 1.4s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(5) .fill {
  transition: 1.5s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(6) .fill {
  transition: 1.6s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(7) .fill {
  transition: 1.7s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(8) .fill {
  transition: 1.8s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(9) .fill {
  transition: 1.9s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(10) .fill {
  transition: 2s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar span {
  display: none;
}
section:nth-of-type(2) .bar.fill {
  left: 0;
  position: absolute;
  top: 0;
  background-color: #00a1a7;
  opacity: 1;
  padding: 0;
}
section:nth-of-type(2) .bar .tag {
  left: 0;
  position: absolute;
  top: 0;
  background-color: #04c2c9;
  color: #fff;
  height: 100%;
  width: 110px;
  width: 70px;
}
section:nth-of-type(2) .bar.secondary {
  background-color: #c51675;
}
section:nth-of-type(2) .bar.secondary .tag {
  background-color: #e31b6d;
}
section:nth-of-type(2) .bar span {
  padding: 0 15px 0 0;
  z-index: 1;
}
section:nth-of-type(3) {
  background: #f5f5f5;
}
section:nth-of-type(3) .container {
  padding: 0;
}
section:nth-of-type(3) .filter-wrap {
  position: relative;
  white-space: nowrap;
}
section:nth-of-type(3) .filter {
  cursor: pointer;
  font-size: 6pt;
  font-weight: 600;
  padding: 0 20px;
  transition: background-color 0.5s;
}
section:nth-of-type(3) .float-bar {
  bottom: 0;
  left: 30px;
  position: absolute;
  top: 0;
  background: #e31b6d;
  border-radius: 1px;
  height: 25px;
  margin: auto 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.5s ease-in-out;
}
section:nth-of-type(3) .float-bar .row {
  bottom: 0;
  left: -30px;
  position: absolute;
  top: 0;
  margin: auto 0;
  transition: left 0.5s ease-in-out;
}
section:nth-of-type(3) .float-bar .row .filter {
  color: #fff;
}
section:nth-of-type(3) .text {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section:nth-of-type(3) #gallery {
  margin: 20px 0;
}
section:nth-of-type(3) #gallery .text,
section:nth-of-type(3) #gallery .button {
  color: #1b242f;
  opacity: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
section:nth-of-type(3) #gallery .text .bold,
section:nth-of-type(3) #gallery .button .bold {
  font-size: 16pt;
}
section:nth-of-type(3) #gallery .button {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  border: 2px solid #e31b6d;
  font-size: 13pt;
  margin: 0 auto;
  padding: 7px 0;
  width: 170px;
}
section:nth-of-type(3) #gallery .mix {
  display: none;
  position: relative;
}
section:nth-of-type(3) #gallery .mix .waypoint {
  background: #fff;
}
section:nth-of-type(3) #gallery .mix .button:hover {
  background: #e31b6d;
  color: #fff;
}
section:nth-of-type(3) #gallery .mix:nth-child(1) .card {
  background: url("../images/projects/icici.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(2) .card {
  background: url("../images/projects/rustomjee.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(3) .card {
  background: url("../images/projects/anarock.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(4) .card {
  background: url("../images/projects/emaar.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(5) .card {
  background: url("../images/projects/heady.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(6) .card {
  background: url("../images/projects/tok.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(7) .card {
  background: url("../images/projects/gta.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(8) .card {
  background: url("../images/projects/srd.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(9) .card {
  background: url("../images/projects/z_Tube.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(10) .card {
  background: url("../images/projects/z_TubeApp.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(11) .card {
  background: url("../images/projects/uindicator.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix:nth-child(12) .card {
  background: url("../images/projects/genie.jpg") center center/contain;
  background-repeat: no-repeat;
}
section:nth-of-type(3) #gallery .mix .card {
  height: 240px;
  max-width: 100%;
  transition: opacity 0.5s;
  width: calc(50vw - 8px);
}
section:nth-of-type(3) #gallery .mix:hover .card {
  opacity: 0;
}
section:nth-of-type(3) #gallery .mix:hover .text {
  cursor: default;
  opacity: 1;
  top: 24%;
}
section:nth-of-type(3) #gallery .mix:hover .button {
  bottom: 24%;
  opacity: 1;
}
section .flex-50-gt-sm {
  display: block;
}
section:nth-of-type(4) {
  padding: 130px 0 100px 0;
  text-align: left;
}
section:nth-of-type(4) .flex.row-gt-sm,
section:nth-of-type(4) .flex.wrap {
  align-items: flex-start;
}
section:nth-of-type(4) .gradient {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
section:nth-of-type(4) .blog-wrap {
  cursor: pointer;
  margin: 0 0 50px 0;
  padding: 0 2px;
  width: 100%;
}
section:nth-of-type(4) .blog-wrap .fade-wrap {
  transition: opacity 0.3s;
}
section:nth-of-type(4) .blog-wrap.fade .fade-wrap {
  opacity: 0.4;
}
section:nth-of-type(4) .blog-wrap.hover .fade-wrap .label {
  color: #04c2c9;
}
section:nth-of-type(4) .label {
  font-size: 12pt;
  line-height: 14pt;
  transition: color 0.3s ease-in-out;
}
section:nth-of-type(4) .thumb {
  height: 150px;
  margin: 0 0 15px 0;
}
section:nth-of-type(4) .date {
  font-family: "Open sans";
  font-size: 7pt;
  margin: 5px 0 0 0;
}
section:nth-of-type(4) .bar {
  background: #04c2c9;
  height: 3px;
  margin: 10px 0px;
  width: 25%;
}
section:nth-of-type(4) .text {
  font-size: 9pt;
  line-height: 13pt;
  max-height: 85px;
}
section:nth-of-type(5) {
  background: #252934;
  color: #fff;
  padding-top: 175px;
}
section:nth-of-type(5) .header {
  color: #fff;
}
section:nth-of-type(5) .header-bar {
  background: #fff;
  margin: 25px 0 40px 0;
  width: 110px;
}
section:nth-of-type(5) .highlight {
  color: #04c2c9;
  font-weight: 600;
}
section:nth-of-type(5) svg {
  left: 0;
  position: absolute;
  top: 0;
}
section:nth-of-type(5) form {
  margin: 40px auto 0 auto;
  min-width: 95%;
}
section:nth-of-type(5) input[type="text"],
section:nth-of-type(5) input[type="email"],
section:nth-of-type(5) textarea {
  background: #1e242c;
  border: 0;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 12pt;
  margin-bottom: 3px;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
section:nth-of-type(5) textarea {
  margin-bottom: 5px;
  min-height: 150px;
}
section:nth-of-type(5) .button {
  background: transparent;
  color: #fff;
  float: right;
  font-size: 12pt;
  margin: 5px 0 0 0;
  outline: 0;
  padding: 10px 30px;
}
section:nth-of-type(5) .button:hover {
  background: #04c2c9;
}
section:nth-of-type(5) #success {
  height: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.25s;
  width: 100%;
}
section:nth-of-type(5) #success.expand {
  height: 36px;
}
section:nth-of-type(5) #success div {
  background: #04c986;
  border: 1px solid #157c59;
  color: #157051;
  font-size: 10pt;
  font-weight: 600;
  padding: 5px 0;
}
section:nth-of-type(5) #close {
  cursor: pointer;
  font-size: 12pt;
  font-weight: 600;
  padding: 5px 15px;
  position: absolute;
  right: 0;
}

footer {
  background: #1b242f;
  padding: 70px 0 50px 0;
  position: relative;
}
footer .mdi-chevron-double-up {
  background: #e31b6d;
  cursor: pointer;
  font-size: 30pt;
  height: 50px;
  left: 0;
  line-height: 40pt;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -25px;
  transition: background 0.5s;
  width: 47px;
}
footer .mdi-chevron-double-up:hover {
  background: #fb1f79;
}
footer .icon-wrap .icon {
  background: #262f38;
  cursor: pointer;
  font-size: 18pt;
  height: 55px;
  margin: 0 15px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  width: 55px;
}
footer .icon-wrap .mdi {
  color: #fff;
  text-align: center;
}
footer .icon-wrap .mdi.mdi-codepen {
  font-size: 20pt;
}
footer .icon-wrap .icon:hover {
  background: #04c2c9;
  box-shadow: 0 0 0 3px rgba(4, 94, 201, 0.1);
  transform: scale(0.9);
}
footer .icon-wrap .icon:hover .mdi {
  color: #fff;
}
footer .icon-wrap .icon:hover .mdi {
  -webkit-animation: toBottomFromTop 0.3s forwards;
  -moz-animation: toBottomFromTop 0.3s forwards;
  animation: toBottomFromTop 0.3s forwards;
}
footer .footnote {
  color: #8f9aa7;
  font-size: 10pt;
  margin-top: 35px;
  opacity: 0.6;
}
footer .footnote .highlight {
  color: #e31b6d;
  font-family: "Open Sans";
}

@media screen and (max-width: 400px) {
  section:nth-of-type(3) #gallery .mix .card {
    width: 100vw;
  }
}
@media screen and (min-width: 600px) {
  body {
    font-size: 12pt;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    font-size: 30pt;
  }

  .header-bar {
    margin: 25px 0 100px 0;
  }

  .label {
    font-size: 18pt;
  }

  .hex-wrap {
    height: 100px;
    width: 100px;
  }

  .slide,
  .carousel-wrap {
    height: 450px;
  }

  .mdi-chevron-left,
  .mdi-chevron-right {
    font-size: 25pt !important;
  }

  .modal-wrap .modal {
    height: initial;
    top: -6vh;
  }
  .modal-wrap .info-box {
    padding: 35px 60px 10px 25px;
  }
  .modal-wrap .title {
    font-size: 22pt;
    line-height: 30pt;
  }
  .modal-wrap .tag {
    font-size: 11pt;
  }
  .modal-wrap .detail {
    font-size: 11pt;
    line-height: 18pt;
    margin-top: 15px;
  }
  .modal-wrap .close {
    right: 25px;
  }
  .modal-wrap .button {
    left: 25px;
  }

  nav .link-wrap {
    background: none;
    height: initial;
    overflow: visible;
    position: initial;
    text-align: left;
  }
  nav .link-wrap .visible {
    height: initial;
  }
  nav .link-wrap div {
    display: inline;
    font-size: initial;
    margin: 0 20px;
    padding: initial;
  }
  nav .link-wrap div:first-child {
    padding: 0;
  }
  nav .mdi-menu {
    display: none;
  }

  section {
    line-height: 18pt;
    padding: 100px 0 130px 0;
  }
  section .container {
    padding: 0 10px;
  }
  section:nth-of-type(1) .text {
    font-size: 32pt;
    line-height: 36pt;
  }
  section:nth-of-type(1) .button {
    padding: 12px 50px 12px 20px;
  }
  section:nth-of-type(1) .button .mdi {
    top: 16px;
  }
  section:nth-of-type(2) .label-wrap .label {
    margin: 15px 0 5px 0;
  }
  section:nth-of-type(2) .label-wrap > div {
    padding: 0 15px;
  }
  section:nth-of-type(2) .bullet-wrap {
    height: 230px;
  }
  section:nth-of-type(2) .skills-wrapper > .flex:first-child {
    padding: 0 50px 0 50px;
  }
  section:nth-of-type(2) .skills-wrapper .me {
    height: 250px;
  }
  section:nth-of-type(2) .bar {
    font-size: 11pt;
    height: 28px;
    margin: 0 0 15px 0;
  }
  section:nth-of-type(2) .bar span {
    display: initial;
  }
  section:nth-of-type(2) .bar .tag {
    width: 110px;
  }
  section:nth-of-type(2) .hexagon i {
    font-size: 40pt;
  }
  section:nth-of-type(3) .filter {
    font-size: 11pt;
    margin: 0 15px;
    padding: 0 30px;
  }
  section:nth-of-type(3) .float-bar {
    height: 30px;
  }
  section:nth-of-type(3) #gallery .mix .card {
    height: 300px;
  }
  section:nth-of-type(4) {
    padding: 130px 0 180px 0;
  }
  section:nth-of-type(4) .label {
    font-size: 16pt;
    line-height: 22pt;
  }
  section:nth-of-type(4) .date {
    font-size: 8.5pt;
  }
  section:nth-of-type(4) .bar {
    margin: 15px 0px;
  }
  section:nth-of-type(4) .text {
    font-size: 11pt;
    line-height: 15pt;
  }
  section:nth-of-type(4) .blog-wrap {
    width: 400px;
  }
  section:nth-of-type(4) .thumb {
    height: 200px;
  }
  section:nth-of-type(5) form {
    min-width: 500px;
  }
}
@media screen and (min-width: 960px) {
  .waypoint {
    opacity: 0;
  }

  .animated.waypoint#gallery {
    opacity: 1;
  }
  .animated.waypoint#gallery .mix:nth-child(1) > div {
    animation: slideUp 0.75s 0.1s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(2) > div {
    animation: slideUp 0.75s 0.2s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(3) > div {
    animation: slideUp 0.75s 0.3s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(4) > div {
    animation: slideUp 0.75s 0.4s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(5) > div {
    animation: slideUp 0.75s 0.5s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(6) > div {
    animation: slideUp 0.75s 0.6s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(7) > div {
    animation: slideUp 0.75s 0.7s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(8) > div {
    animation: slideUp 0.75s 0.8s ease both;
    opacity: 0;
  }
  .animated.waypoint#gallery .mix:nth-child(9) > div {
    animation: slideUp 0.75s 0.9s ease both;
    opacity: 0;
  }

  .animated.slide-up {
    animation: slideUp 0.75s ease both;
  }
  .animated.slide-down {
    animation: slideDown 0.75s ease both;
  }
  .animated.slide-in-left {
    animation: slideInLeft 0.75s ease both;
  }
  .animated.slide-in-right {
    animation: slideInRight 0.75s ease both;
  }
  .animated.flip-in-x {
    animation: flipInX 0.75s ease both;
  }
  .animated.fade-in {
    animation: fadeIn 0.75s ease both;
  }
  .animated.pop-in {
    animation: popIn 1s both;
  }

  .canvas {
    background: #252934;
  }

  .button {
    font-size: 16pt;
  }

  .flex.row-gt-sm {
    flex-direction: row;
  }

  .flex-50-gt-sm {
    box-sizing: border-box;
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-height: 100%;
    max-width: 50%;
  }

  section:nth-of-type(2) .bars-wrap {
    margin: 0 0 0 0;
  }
  section:nth-of-type(2) .skills-wrapper {
    margin: 50px 0 0 0;
  }
  section:nth-of-type(2) .skills-wrapper .me {
    margin: 0;
  }
  section:nth-of-type(2) .bar {
    max-width: 90%;
  }
  section:nth-of-type(2) .bullet-wrap {
    height: intial;
    margin: 0;
    padding: 0 10px;
  }
  section:nth-of-type(3) #gallery .mix .card {
    width: 390px;
  }
  section:nth-of-type(3) .filter {
    font-size: 13pt;
    margin: 0 25px;
    padding: 0 40px;
  }
  section:nth-of-type(4) .blog-wrap {
    margin: 0 0 50px 20px;
    opacity: 0;
    width: 400px;
  }
}
@media screen and (min-width: 1280px) {
  section:nth-of-type(4) .blog-wrap {
    margin: 0 0 50px 20px;
    width: 270px;
  }
}

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

.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#cd-timeline > a {
  color: #acb7c0;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

#cd-timeline > img {
  max-width: 100%;
}

#cd-timeline > h1,
#cd-timeline > h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}
.cd-timeline-img.dsm {
  background: #75ce66;
}
.cd-timeline-img.inv {
  background: #c03b44;
}
.cd-timeline-img.vitru {
  background: #f0ca45;
}
.cd-timeline-img.quikr {
  background: #1f51ff;
}
.cd-timeline-img.viztar {
  background: #ffad00;
}
.cd-timeline-img.virtusa {
  background: #fb48c4;
}

.cd-timeline-img.eurowings {
  background: #1cb84e;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: #ffffff;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
}
.cd-timeline-content::after {
  clear: both;
  content: "";
  display: table;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content p,
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more,
.cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: 0.8em 1em;
  background: #acb7c0;
  color: #ffffff;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: 0.8em 0;
  opacity: 0.7;
}
.cd-timeline-content::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #ffffff;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #ffffff;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations
    .cd-timeline-block:nth-child(even)
    .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
