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

Primary style

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

@font-face {
    font-family: Tex-Regular;
    src: url(../fonts/texgyreheros-regular.otf);
}


@font-face {
    font-family: Tex-Bold;
    src: url(../fonts/texgyreheros-bold.otf);
}

@font-face {
    font-family: Halo;
    src: url(../font/HaloHandletter.otf);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: Tex-Regular, sans-serif;
  color: #32414c;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #32414c;
  text-decoration: none;
}

.contact-btn {
    position: relative;
    margin: 0;
    text-align:left;
    color: #32414c;
    text-decoration: none;
    border-bottom: solid 2px #000;
    font-family: tex-bold, sans-serif;
    font-size: 18px;
}

.logo-container {
  display:block;
  margin: 0;
  padding: 0;
  z-index: 99;
  width: 172px;
  height: 140px;
}

.logo-icon {
  position:absolute;
  width: 172px;
  height: 140px;
  top:25px;
  left:28px;
}

.logo-type {
  display:none;
}

.copy-container {
  position:absolute;
  display:block;
  margin: 0;
  padding: 0;
  z-index: 999;
}

.copy-icon {
  position:absolute;
  width:17px;
  height:17px;
  bottom:50px;
  left:29px;
}

.www-banner {
  display:none;
}

.cd-scroll-down {
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    width: 60px;
    height: 60px;
    text-align:center;
}

.desktop-scroll-icon {
    display: none;
}

.mobile-scroll-icon {
    display: block;
}

.go-down {
    position:relative;
    height: 36px;
    width: 22px;
    margin: 10px auto;
}
    
.wheel {
    transform: translateY(30px);
    animation-name: animateMouseCircle;
    animation-duration: 1.4s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes animateMouseCircle {
    from {
        transform: translateY(30px);
        opacity: 1;
    }
    
    50% {
        transform: translateY(-250px);
    }
    
    75% {
        opacity: 1;
    }
    
    to {
        transform: translateY(-250px);
        opacity: 0;
    }
}

.cd-image-replace {
  /* replace text with image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

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

Navigation trigger - visible on small devices only

-------------------------------- */
.cd-nav-trigger {
  display: block;
  position: fixed;
  z-index: 2;
  top: 30px;
  right: 18px;
  height: 50px;
  width: 50px;
  background-color: #ffffff;
  /* reset button style */
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}
.cd-nav-trigger span {
  /* central dot */
  position: absolute;
  height: 2px;
  width: 24px;
  background-color: #32414c;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* bottom and top dots */
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #32414c;
}
.cd-nav-trigger span::before {
  top: -9px;
}
.cd-nav-trigger span::after {
  bottom: -9px;
}
@media only screen and (min-width: 1000px) {
  .cd-nav-trigger {
    display: none;
  }
}

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

Vertical navigation

-------------------------------- */
.cd-vertical-nav {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  background-color: #fff;
}
.cd-vertical-nav a {
  display: block;
  padding: auto;
  height: 20vh;
  padding-top:7.5vh;
  color: #32414c;
  font-weight: bold;
  background-color: transparent;
  text-align:center;
  font-family: tex-bold;
  font-size: 30px;
}
.cd-vertical-nav a:active {
  color: #ffffff;
  background-color:#32414c;
}
.cd-vertical-nav a.active {
  color: #ffffff;
  background-color:#32414c;
}

.cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-vertical-nav.open + .cd-nav-trigger {
  background-color: #fff;
}
.cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: transparent;
  left: 48%;
}
.cd-vertical-nav.open + .cd-nav-trigger span::before, .cd-vertical-nav.open + .cd-nav-trigger span::after {
  /* transform dots in 'X' icon */
  height: 2px;
  width: 26px;
  border-radius: 0;
  background-color: #32414c;
}
.cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

@media only screen and (min-width: 800px) {
    
  .www-banner {
      position:absolute;
      display:block;
      margin: 0;
      padding: 0;
      z-index: 999;
      width: 70px;
      height: 105px;
      top: 80px;
      right: 0px;
    }
    
    .www-banner-img {
      position:absolute;
      width:70px;
      height:105px;
    }

}

@media only screen and (min-width: 1000px) {
    
  .cd-vertical-nav {
    /* reset style */
    right: 0;
    top: 0;
    bottom: auto;
    height: 100vh;
    width: 170px;
    max-width: none;
    max-height: none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s, -webkit-background-color ease-in-out 0.3s;
    -moz-transition: -moz-transform 0.3s, -moz-background-color ease-in-out 0.3s;
    transition: transform 0.3s, background-color ease-in-out 0.3s;
    background-color: transparent;
    /* vertically align its content*/
    display: table;
  }
  
  .cd-vertical-nav:hover {
    background-color: #ffffff;
  }

  .no-touch .cd-vertical-nav:hover::before, .touch .cd-vertical-nav::before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-vertical-nav ul {
    /* vertically align <ul> inside <nav>*/
    display: table-cell;
    vertical-align: middle;
    text-align: left;
  }
  .cd-vertical-nav a {
    position: relative;
    padding: 0;
    margin: 14px 0;
    border-bottom: none;
    font-size: 14px;
    font-family: tex-regular;
    color: #32414c;
    height: auto;
    text-align:left;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
       -moz-transition: -moz-transform 0.2s ease-in-out;
        -ms-transition: -ms-transform 0.2s ease-in-out;
         -o-transition: -o-transform 0.2s ease-in-out;
            transition: transform 0.2s ease-in-out;
  }

  .cd-vertical-nav a:hover {
    background-color: none;
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transform: translateX(5px);
  }

  .cd-vertical-nav a:active {
    color: #32414c;
    background-color:transparent;
  }

  .cd-vertical-nav a.active {
    color: #32414c;
    background-color:transparent;
  }    

  .cd-vertical-nav a::before, .cd-vertical-nav a::after {
    /* used to create the filled circle and the background icon */
    content: '';
    position: absolute;
    left: 57px;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-vertical-nav a::before {
    /* filled circle */
    top: 5px;
    height: 5px;
    width: 5px;
    border: solid 2px transparent;
    border-radius: 50%;
    background: #32414c;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: -webkit-transform 0.4s, background-color 0.2s, border 0.3s, height 0.1s, width 0.1s;
    -moz-transition: -moz-transform 0.4s, background-color 0.2s, border 0.3s, height 0.1s, width 0.1s;
    transition: transform 0.4s, background-color 0.2s, border 0.3s, height 0.1s, width 0.1s;
  }
  
  .cd-vertical-nav a.active::before {
    top: 2px;
    background-color: transparent;
    border: solid 2px #32414c;
    height: 12px;
    width: 12px;
  } 
  
  .cd-vertical-nav .label {
    display: block;
    margin-left: 80px;
    opacity: 0;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
       -moz-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;
         -o-transition: opacity 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out;
  }

  .cd-vertical-nav:hover .label {
    opacity: 1;
  }
  
  .no-touch .cd-vertical-nav:hover a::before, .no-touch .cd-vertical-nav:hover a::after, .touch .cd-vertical-nav li:nth-of-type(n) a::before, .touch .cd-vertical-nav li:nth-of-type(n) a::after {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    /* set a rotation to fix bug on Firefox - http://gielberkers.com/how-to-fix-shaking-css-transitions-in-firefox/ */
    -moz-transform: translateX(-50%) scale(1) rotate(0.02deg);
  }
  .no-touch .cd-vertical-nav:hover a::after, .touch .cd-vertical-nav a::after {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, opacity 0s;
    -moz-transition: -moz-transform 0.3s ease-in-out, opacity 0s;
    transition: transform 0.3s ease-in-out, opacity 0s;
  }
  .no-touch .cd-vertical-nav:hover .label, .touch .cd-vertical-nav .label {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .logo-container {
      position:absolute;
      display:block;
      margin: 0;
      padding: 0;
      z-index: 3;
      width: 140px;
      height: 100px; 
    }
    
    .logo-icon {
      position:absolute;
      width: 172px;
      height: 140px;
      top:25px;
      left:28px;
    }
    
    .logo-type {
      position:absolute;
      display:block;
      width:160px;
      height:10px;
      top:50px;
      left:100px;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease-in-out;
         -moz-transition: opacity 0.3s ease-in-out;
          -ms-transition: opacity 0.3s ease-in-out;
           -o-transition: opacity 0.3s ease-in-out;
              transition: opacity 0.3s ease-in-out;
    }
    
    .logo-container:hover .logo-type {
      opacity: 1;
    }

    .copy-container {
      position:absolute;
      display:block;
      margin: 0;
      padding: 0;
      z-index: 999;
    }
    
    .copy-icon {
      position:absolute;
      width:17px;
      height:17px;
      bottom:50px;
      left:49px;
    }

    .cd-scroll-down {
      position: absolute;
      left: 50%;
      right: auto;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      bottom: 40px;
      width: 60px;
      height: 60px;
      text-align:center;
    }

    .desktop-scroll-icon {
        display: block;
    }
    
    .mobile-scroll-icon {
        display: none;
    }

    .go-down {
      position:relative;
      height: 36px;
      width: 22px;
      margin: 10px auto;
    }
    
    .wheel {
        transform: translateY(-40px);
        animation-name: animateMouseCircle;
        animation-duration: 2s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
    }

    @keyframes animateMouseCircle {
        from {
            transform: translateY(-40px);
            opacity: 1;
        }
    
        50% {
            transform: translateY(120px);
        }
    
        75% {
            opacity: 1;
        }
    
        to {
            transform: translateY(120px);
            opacity: 0;
        }
    }

    .contact-btn {
        position: relative;
        margin: 0;
        text-align:left;
        color: #32414c;
        text-decoration: none;
        border-bottom: solid 2px #32414c;
        font-family: tex-bold, sans-serif;
        font-size: 18px;
        -webkit-transition: border-color 0.1s ease-in-out, margin-left 0.2s ease-in-out;
        -moz-transition: border-color 0.1s ease-in-out, margin-left 0.2s ease-in-out;
        -o-transition: border-color 0.1s ease-in-out, margin-left 0.2s ease-in-out;
        transition: border-color 0.1s ease-in-out, margin-left 0.2s ease-in-out;
    }
    
    .contact-btn:hover {
        border-color: transparent;
        margin-left: 10px;
    }

    .cd-section {
      /* vertically align its content*/
      display: table;
      width: 100%;
      height: 100vh;
      -webkit-box-shadow: inset 0 30px 1000px #dce4e9 !important;
      -moz-box-shadow: inset 0 30px 1000px #dce4e9 !important;
      -o-box-shadow: inset 0 30px 1000px #dce4e9 !important;
      box-shadow: inset 0 30px 1000px #dce4e9 !important;
    }
}

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

Content Sections - basic style

-------------------------------- */
.cd-section {
  /* vertically align its content*/
  display: table;
  width: 100%;
  height: 100vh;
  -webkit-box-shadow: inset 0 0 200px #dce4e9;
  -moz-box-shadow: inset 0 0 200px #dce4e9;
  -o-box-shadow: inset 0 0 200px #dce4e9;
  box-shadow: inset 0 0 200px #dce4e9;
}

.cd-section-projects {
  /* vertically align its content*/
  display: table;
  width: 100%;
  height: auto;
  padding: 0;
}

.cd-section-about {
  /* vertically align its content*/
  display: table;
  width: 100%;
  height: auto;
  padding: 0;
}

.cd-section-experience {
  /* vertically align its content*/
  display: table;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.cd-section-contact {
  /* vertically align its content*/
  display: table;
  width: 100%;
  height: auto;
  min-height: 600px;
  margin: 0 0 90px 0;
  padding: 0;
}

.main-img-1 {
    display: none;
}

.main-img-2 {
    display: none;
}

.main-img-3 {
    display: none;
}

.main-img-4 {
    display: none;
}

.main-img-5 {
    display: none;
}

.main-img-6 {
    display: none;
}

@media only screen and (min-width: 1000px) {
    .cd-section-projects {
      padding: 0 0 0 70px;
    }
    
    .cd-section-about {
      padding: 0 0 0 70px;
    }
    
    .cd-section-experience {
      padding: 0 0 0 70px;
    }
    
    .cd-section-contact {
      padding: 0 0 0 70px;
      margin: 0 0 120px 0;
    }
    
    .main-img-1 {
        display: block;
        position: absolute;
        height: 128px;
        width: 60px;
        top: 130px;
        left: 130px;
        right: auto;
        background: url(../img/main-img/character-left-small.png) no-repeat center center;
    }

    .main-img-2 {
        display: block;
        position: absolute;
        height: 241px;
        width: 310px;
        top: 0px;
        left: 220px;
        right: auto;
        background: url(../img/main-img/tablet-top-small.png) no-repeat center center;
    }

    .main-img-3 {
        display: block;
        position: absolute;
        height: 242px;
        width: 247px;
        top: 10px;
        right: 120px;
        left: auto;
        background: url(../img/main-img/phone-right-small.png) no-repeat center center;
    }

    .main-img-4 {
        display: block;
        position: absolute;
        height: 252px;
        width: 321px;
        bottom: 50px;
        left: 115px;
        right: auto;
        background: url(../img/main-img/phone-left-small.png) no-repeat center center;
    }

    .main-img-5 {
        display: block;
        position: absolute;
        height: 96px;
        width: 79px;
        bottom: 125px;
        left: 55%;
        right: auto;
        background: url(../img/main-img/character-right-small.png) no-repeat center center;
    }

    .main-img-6 {
        display: block;
        position: absolute;
        height: 329px;
        width: 317px;
        bottom: 25px;
        right: 0px;
        left: auto;
        background: url(../img/main-img/laptop-right-small.png) no-repeat center center;
    }
}

@media only screen and (min-width: 1200px) {
    .cd-section-projects {
      padding: 0 0 0 50px;
    }
    
    .cd-section-about {
      padding: 0 0 0 50px;
    }
    
    .cd-section-experience {
      padding: 0 0 0 50px;
    }
    
    .cd-section-contact {
      padding: 0 0 0 50px;
    }

    .main-img-1 {
        display: block;
        position: absolute;
        height: 128px;
        width: 60px;
        top: 190px;
        left: 180px;
        right: auto;
        background: url(../img/main-img/character-left-small.png) no-repeat center center;
    }

    .main-img-2 {
        display: block;
        position: absolute;
        height: 241px;
        width: 310px;
        top: 0px;
        left: 300px;
        right: auto;
        background: url(../img/main-img/tablet-top-small.png) no-repeat center center;
    }

    .main-img-3 {
        display: block;
        position: absolute;
        height: 242px;
        width: 247px;
        top: 20px;
        right: 130px;
        left: auto;
        background: url(../img/main-img/phone-right-small.png) no-repeat center center;
    }

    .main-img-4 {
        display: block;
        position: absolute;
        height: 252px;
        width: 321px;
        bottom: 80px;
        left: 145px;
        right: auto;
        background: url(../img/main-img/phone-left-small.png) no-repeat center center;
    }

    .main-img-5 {
        display: block;
        position: absolute;
        height: 96px;
        width: 79px;
        bottom: 175px;
        left: 52%;
        right: auto;
        background: url(../img/main-img/character-right-small.png) no-repeat center center;
    }

    .main-img-6 {
        display: block;
        position: absolute;
        height: 329px;
        width: 317px;
        bottom: 40px;
        right: 0px;
        left: auto;
        background: url(../img/main-img/laptop-right-small.png) no-repeat center center;
    }
}

@media only screen and (min-width: 1400px) {
    .cd-section-projects {
      padding: 0 0 0 40px;
    }
    
    .cd-section-about {
      padding: 0 0 0 40px;
    }
    
    .cd-section-experience {
      padding: 0 0 0 40px;
    }
    
    .cd-section-contact {
      padding: 0 0 0 40px;
    }
    
    .main-img-1 {
        display: block;
        position: absolute;
        height: 197px;
        width: 93px;
        top: 210px;
        left: 180px;
        right: auto;
        background: url(../img/character-left.png) no-repeat center center;
    }

    .main-img-2 {
        display: block;
        position: absolute;
        height:370px;
        width:477px;
        top: 0px;
        left: 300px;
        right: auto;
        background: url(../img/tablet-top.png) no-repeat center center;
    }

    .main-img-3 {
        display: block;
        position: absolute;
        height: 373px;
        width: 380px;
        top: 20px;
        right: 130px;
        left: auto;
        background: url(../img/phone-right.png) no-repeat center center;
    }

    .main-img-4 {
        display: block;
        position: absolute;
        height: 387px;
        width: 494px;
        bottom: 80px;
        left: 145px;
        right: auto;
        background: url(../img/phone-left.png) no-repeat center center;
    }

    .main-img-5 {
        display: block;
        position: absolute;
        height: 147px;
        width: 121px;
        bottom: 120px;
        left: 52%;
        right: auto;
        background: url(../img/character-right.png) no-repeat center center;
    }

    .main-img-6 {
        display: block;
        position: absolute;
        height: 506px;
        width: 488px;
        bottom: 40px;
        right: 0px;
        left: auto;
        background: url(../img/laptop-right.png) no-repeat center center;
    }
}

@media only screen and (min-width: 1600px) {
    .cd-section-projects {
      padding: 0 0 0 30px;
    }
    
    .cd-section-about {
      padding: 0 0 0 30px;
    }
    
    .cd-section-experience {
      padding: 0 0 0 30px;
    }
    
    .cd-section-contact {
      padding: 0 0 0 30px;
    }
}

@media only screen and (min-width: 1800px) {
    .cd-section-projects {
      padding: 0 0 0 20px;
    }
    
    .cd-section-about {
      padding: 0 0 0 20px;
    }
    
    .cd-section-experience {
      padding: 0 0 0 20px;
    }
    
    .cd-section-contact {
      padding: 0 0 0 20px;
    }
}
    
.cd-section > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
    
}

.cd-section-projects > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section-about > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section-experience > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section-skills > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section-contact > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section-contact > div {
  /* vertically align <div> inside <section> */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cd-section h1, .cd-section h2 {
  width: 80%;
  margin: 0 auto;
  padding: 0 9px;
  font-size: 24px;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
}
.cd-section h3 {
  width: 100%;
  margin: 10px auto;
  padding: 0 9px;
  font-size: 36px;
  line-height: 1.4;
  font-family: halo, serif;
}

.cd-section-projects h1, .cd-section-projects h2 {
  width: 100%;
  margin: 100px auto 20px auto;
  padding: 0 9px;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section-about h1, .cd-section-about h2 {
  width: 100%;
  margin: 100px auto 60px auto;
  padding: 0 9px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
  text-align: left;
  color: #32414c;
}

.about-sec-p {
  overflow: hidden;
  width: 100%;
  min-height: 150px;
  margin: 0px auto;
  padding: 0 9px;
  font-size: 16px !important;
  line-height: 24px;
  font-family: tex-regular, sans-serif;
  text-align: left;
  color: #32414c;
}

.about-sec-p b {
  font-family: tex-bold, sans-serif;
}

.contact-p {
  overflow: hidden;
  width: 100%;
  margin: 0px auto 20px auto;
  padding: 0 9px;
  font-size: 24px !important;
  line-height: 36px;
  font-family: tex-regular, sans-serif;
  text-align: left;
  color: #32414c;
}

.contact-sec-p {
  overflow: hidden;
  width: 100%;
  margin: 0px auto 20px auto;
  padding: 0 9px;
  font-size: 16px !important;
  line-height: 24px;
  font-family: tex-regular, sans-serif;
  text-align: left;
  color: #32414c;
}

.contact-sec-p b {
  font-family: tex-bold, sans-serif;
}

.contact-btn-p {
  width: 100%;
  margin: 40px auto 60px auto;
  padding: 0 9px;
  font-size: 16px !important;
  text-align: left;
}

.social-img {
  width: 22px;
  height: 22px;
  margin: 15px 15px 0 -2px;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.social-img:hover {
  opacity: 0.7;
}

.cd-section-experience h1, .cd-section-experience h2 {
  width: 100%;
  margin: 100px auto 60px auto;
  padding: 0 9px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section-experience p {
  overflow: hidden;
  width: 100%;
  min-height: 100px;
  margin: 0px auto 40px auto;
  padding: 0 9px;
  font-size: 16px;
  line-height: 24px;
  font-family: tex-regular, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section-experience p b {
  font-family: tex-bold, sans-serif;
}

.cd-section-skills h1, .cd-section-skills h2 {
  width: 100%;
  margin: 100px auto 60px auto;
  padding: 0 9px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section-contact h1, .cd-section-contact h2 {
  width: 100%;
  margin: 100px auto 60px auto;
  padding: 0 9px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: tex-bold, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section-about p {
  width: 100%;
  margin: 0 auto;
  padding: 0 9px;
  font-size: 21px;
  line-height: 1.4;
  font-family: tex-regular, sans-serif;
  text-align: left;
  color: #32414c;
}

.cd-section p {
  margin: 1em auto 0;
  line-height: 1.6;
  width: 90%;
  max-width: 680px;
  color: #32414c;
}
@media only screen and (min-width: 800px) {
  .cd-section h1, .cd-section h2 {
    font-size: 29px;
    width: 80%;
  }
  .cd-section h3 {
    margin-top: 45px;
    font-size: 44px;
  }
  .cd-section p {
    font-size: 2rem;
  }
}

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

main-banner-transitions

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

.content-wrapper{
    z-index: 3;
    background-color: transparent;
}

.pic-wrapper {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay {
  position:absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: #ffffff;
}

figure {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /*animation*/
  animation: slideShow 40s linear infinite 0s;
  -o-animation: slideShow 40s linear infinite 0s;
  -moz-animation: slideShow 40s linear infinite 0s;
  -webkit-animation: slideShow 40s linear infinite 0s;
}

figurecaption {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
}

.pic-1 {
  opacity: 1;
  background: url(../img/slide1.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-2 {
  animation-delay: 8s;
  -o-animation-delay: 8s;
  -moz--animation-delay: 8s;
  -webkit-animation-delay: 8s;
  background: url(../img/slide2.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-3 {
  animation-delay: 16s;
  -o-animation-delay: 16s;
  -moz--animation-delay: 16s;
  -webkit-animation-delay: 16s;
  background: url(../img/slide3.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-4 {
  animation-delay: 24s;
  -o-animation-delay: 24s;
  -moz--animation-delay: 24s;
  -webkit-animation-delay: 24s;
  background: url(../img/slide4.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.pic-5 {
  animation-delay: 32s;
  -o-animation-delay: 32s;
  -moz--animation-delay: 32s;
  -webkit-animation-delay: 32s;
  background: url(../img/slide5.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
/* keyframes*/

@keyframes 
slideShow {  0% {
     opacity: 0;
     transform:scale(1);
     -ms-transform:scale(1);
    }
     3% {
     opacity: 1
    }
     28% {
     opacity: 1;
    }
     30% {
     opacity: 0;
     transform:scale(1.15);
     -ms-transform:scale(1.15);
    }
     100% {
     opacity: 0;
     transform:scale(1);
     -ms-transformm:scale(1);
    }
}
 @-o-keyframes 
slideShow {  0% {
     opacity: 0;
     -o-transform:scale(1);
    }
     3% {
     opacity: 1
    }
     28% {
     opacity: 1;
    }
     30% {
     opacity: 0;
     -o-transform:scale(1.15);
    }
     100% {
     opacity: 0;
     -o-transformm:scale(1);
    }
}
 @-moz-keyframes 
slideShow {  0% {
     opacity: 0;
     -moz-transform:scale(1);
    }
     3% {
     opacity: 1
    }
     28% {
     opacity: 1;
    }
     30% {
     opacity: 0;
     -moz-transform:scale(1.15);
    }
     100% {
     opacity: 0;
     -moz-transformm:scale(1);
    }
}
 @-webkit-keyframes 
slideShow {  0% {
     opacity: 0;
     -webkit-transform:scale(1);
    }
     3% {
     opacity: 1
    }
     28% {
     opacity: 1;
    }
     30% {
     opacity: 0;
     -webkit-transform:scale(1.15);
    }
     100% {
     opacity: 0;
     -webkit-transformm:scale(1);
    }
}

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

no-js

-------------------------------- */
.no-js .cd-nav-trigger {
  display: none;
}

.no-js .cd-vertical-nav {
  position: static;
  height: auto;
  width: 100%;
  max-width: none;
  background-color: #32414c;
  border-radius: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-js .cd-vertical-nav::before {
  display: none;
}
.no-js .cd-vertical-nav ul::after {
  clear: both;
  content: "";
  display: table;
}
.no-js .cd-vertical-nav li {
  display: inline-block;
  float: left;
}
.no-js .cd-vertical-nav a {
  padding: 0 1em;
  margin: 1.5em 1em;
  color: #32414c;
}
.no-js .cd-vertical-nav a.active {
  color: #32414c;
}
.no-js .cd-vertical-nav a::after, .no-js .cd-vertical-nav a::before {
  display: none;
}
.no-js .cd-vertical-nav .label {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.noselect {
  cursor:default;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}

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

Experience responsive-4-columns-grid

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

.cbp-rfgrid {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	width: 100%;
}

.cbp-rfgrid li {
	position: relative;
	float: left;
	overflow: hidden;
    padding: 10px 10px 50px 10px;
	width: 25%; /* Fallback */
	width: -webkit-calc(100% / 4);
	width: calc(100% / 4);
}

.cbp-rfgrid li h3 {
	text-align: left;
    font-family: tex-regular, sans-serif;
    font-size: 12px;
    margin: 0 0 12px 0;
}
.cbp-rfgrid li h4 {
	text-align: left;
    font-family: tex-regular, sans-serif;
    font-size: 19px;
    margin: 0 0 10px 0;
}
.cbp-rfgrid li h5 {
	text-align: left;
    font-family: tex-regular, sans-serif;
    font-size: 14px;
    margin: 0;
}
.cbp-rfgrid li h6 {
	text-align: left;
    font-family: tex-regular, sans-serif;
    font-size: 16px;
    line-height: 36px;
    margin: 0;
}

/* Example for media query: change number of items per row */

@media screen and (max-width: 1190px) {
	.cbp-rfgrid li {
		width: 33.33%; /* Fallback */
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 945px) {
	.cbp-rfgrid li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 400px) {
	.cbp-rfgrid li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 300px) {
	.cbp-rfgrid li {
		width: 100%;
	}
}


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

Skills responsive-4-columns-grid

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

.cbp-rfgrid-2 {
	margin: 40px 0 0 0;
	padding: 0;
	list-style: none;
	position: relative;
	width: 100%;
}

.cbp-rfgrid-2 li {
	position: relative;
	float: left;
	overflow: hidden;
    padding: 10px;
	width: 25%; /* Fallback */
	width: -webkit-calc(100% / 4);
	width: calc(100% / 4);
    height: 54px;
}

.cbp-rfgrid-2 li h6 {
	text-align: left;
    font-family: tex-regular, sans-serif;
    font-size: 16px;
    line-height:21px;
    margin: 0;
}

/* Example for media query: change number of items per row */

@media screen and (max-width: 1190px) {
	.cbp-rfgrid-2 li {
		width: 33.33%; /* Fallback */
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 945px) {
	.cbp-rfgrid-2 li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-2 li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-2 li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 400px) {
	.cbp-rfgrid-2 li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 300px) {
	.cbp-rfgrid-2 li {
		width: 100%;
	}
}

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

Brands responsive-6-columns-grid

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

.cbp-rfgrid-brands {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	width: 100%;
}

.cbp-rfgrid-brands li {
	position: relative;
	float: left;
	overflow: hidden;
    padding: 20px 10px;
	width: 16.6%; /* Fallback */
	width: -webkit-calc(100% / 6);
	width: calc(100% / 6);
}

/* Example for media query: change number of items per row */

@media screen and (max-width: 1190px) {
	.cbp-rfgrid-brands li {
		width: 33.33%; /* Fallback */
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 945px) {
	.cbp-rfgrid-brands li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-brands li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-brands li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 400px) {
	.cbp-rfgrid-brands li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 300px) {
	.cbp-rfgrid-brands li {
		width: 100%;
	}
}

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

Process responsive-timeline

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

.steps-name {
    position:relative;
    color: #32414c;
    font-family: tex-bold, sans-serif;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
    padding: 7px 0 0 0;
    margin: 5px 0 10px 0;
}

@media screen and (max-width: 500px) {
  .steps-timeline {
    border-left: 1px dashed #8294a1;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 500px) {
    .steps-timeline {
        border-top: 1px dashed #8294a1;
        padding-top: 14px;
        margin-top: 80px;
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 40px;
    }
}

.steps-timeline:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 500px) {
  .steps-one, .steps-two, .steps-three, .steps-four, .steps-five, .steps-six {
    margin-left: -6px;
  }
}

@media screen and (min-width: 500px) {
  .steps-one, .steps-two, .steps-three, .steps-four, .steps-five, .steps-six {
    float: left;
    width: 16.66%;
    margin-top: -25px;
  }
}

@media screen and (max-width: 500px) {
  .steps-one, .steps-two, .steps-three, .steps-four, .steps-five, .steps-six {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .steps-six {
    margin-bottom: -100%;
  }
}

.steps-img {
  display: block;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 2px #5e6d78;
  font-family: tex-bold, sans-serif;
  font-size: 12px;
  color: #5e6d78;
  padding: 2px 0 0 0;
}

@media screen and (max-width: 500px) {
  .steps-img {
    float: left;
    margin: 6px 15px 10px -6px;

  }
}

@media screen and (min-width: 500px) {
  .steps-name {
    text-align: center;
    padding: 10px 0 0 0;
  }
}

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

Brands responsive-6-columns-grid

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

.cbp-rfgrid-contact-details {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	width: 100%;
}

.cbp-rfgrid-contact-details li {
	position: relative;
	float: left;
	overflow: hidden;
    padding: 20px auto;
    min-width: 260px;
	width: 33%; /* Fallback */
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
}

/* Example for media query: change number of items per row */

@media screen and (max-width: 1190px) {
	.cbp-rfgrid-contact-details li {
		width: 33.33%; /* Fallback */
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media screen and (max-width: 945px) {
	.cbp-rfgrid-contact-details li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-contact-details li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 660px) {
	.cbp-rfgrid-contact-details li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 400px) {
	.cbp-rfgrid-contact-details li {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 300px) {
	.cbp-rfgrid-contact-details li {
		width: 100%;
	}
}

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

Go to top widget

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

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /*background: #ffffff url(../img/top-arrow.png) no-repeat center 50%;*/
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #ffffff;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

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

Text loop

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

.measurable {
    position: absolute;
    visibility: hidden;
}