html,
body {
  width             : 100%;
  height            : 100vh;
  margin            : 0;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width   : none;
  /* Firefox */
}

body {
  background: black !important;
}

body {
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  display: none;
}

h1 {
  font-weight: 400 !important;
}

/** initial loader **/

.loading-container {
  transition      : background-color 3s;
  position        : fixed;
  height          : 100vh;
  width           : 100vw;
  background-color: black;
  z-index         : 999;
}

.loading {
  width        : 150px;
  height       : 150px;
  border-radius: 50%;
  background   : linear-gradient(45deg, transparent, transparent 40%, #e5f403);
  animation    : loading-animate 2s linear infinite;
  position     : absolute;
  top          : 50%;
  left         : 50%;
  transform    : translate(-50%, -50%);
}

@keyframes loading-animate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    filter   : hue-rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    filter   : hue-rotate(360deg);
  }
}

.loading:before {
  content      : '';
  position     : absolute;
  top          : 6px;
  left         : 6px;
  right        : 6px;
  bottom       : 6px;
  background   : #000;
  border-radius: 50%;
  z-index      : 1000;
}

.loading:after {
  content      : '';
  position     : absolute;
  top          : 0px;
  left         : 0px;
  right        : 0px;
  bottom       : 0px;
  background   : linear-gradient(45deg, transparent, transparent 40%, #e5f403);
  border-radius: 50%;
  z-index      : 1000;
  z-index      : 1;
  filter       : blur(30px);
}


.card {
  color        : black;
  min-width    : 300px !important;
  margin-bottom: 100px !important;
}

.card-body {
  padding: 2vw !important;
}

.card-deck {
  color: black;
}


.projects .row {
  margin-top: 0px !important;
}


.projects h1 {
  margin-bottom: 5vh !important;
}

.projects p {
  color    : #575757;
  font-size: 1.5em !important;
}

.content h2 {
  margin-bottom: 20px;
}

.experience h2 {
  margin-top: 50px;
}

.page {
  padding-top: 8vh;
  min-height : 100vh;
  position   : relative;
}

.landing-text {
  z-index : 3;
  position: fixed;
}

.titles {
  display: none;
}

.name {
  margin-bottom: 5vw;
}

.landing-text h1 {
  color     : white;
  opacity   : 0.74;
  margin-top: 0;
}

.threed {
  transition    : 2s;
  text-transform: uppercase;
  color         : #f5f5f5;
  text-shadow   : 1px 1px 1px #919191,
    1px 2px 1px #919191,
    1px 3px 1px #919191,
    1px 4px 1px #919191,
    1px 5px 1px #919191,
    1px 6px 1px #919191,
    1px 7px 1px #919191,
    1px 8px 1px #919191,
    1px 9px 1px #919191,
    1px 10px 1px #919191,
    1px 18px 6px rgba(16, 16, 16, 0.4),
    1px 22px 10px rgba(16, 16, 16, 0.2),
    1px 25px 35px rgba(16, 16, 16, 0.2),
    1px 30px 60px rgba(16, 16, 16, 0.4);
}


.landing-text h2 {
  color  : white;
  opacity: 0.4;
}

.blink {
  border-right      : .08em solid;
  margin-left       : 10px;
  border-right-color: rgba(255, 255, 255, 0.5);
  ;
  animation: caret 1.15s steps(1) infinite;
}

.noblink {
  border-right: .05em solid;
  border-color: rgba(0, 0, 0, 0);
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}


/* OVER PANE */

.over {
  position  : fixed;
  z-index   : 498;
  min-height: 100vh;
  width     : 100%;
  display   : none;
}

@-webkit-keyframes delay {

  0%,
  40%,
  100% {
    transform        : scaleY(0.05);
    -webkit-transform: scaleY(0.05);
  }

  20% {
    transform        : scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

@keyframes delay {

  0%,
  40%,
  100% {
    transform        : scaleY(0.05);
    -webkit-transform: scaleY(0.05);
  }

  20% {
    transform        : scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

body:before,
body:after {
  content   : "";
  height    : 50vh;
  width     : 100%;
  position  : fixed;
  left      : 0;
  background: #2e2e2e;
  z-index   : 500;
}

body:before {
  position : fixed;
  top      : 0;
  transform: translateY(-100%);
}

body:after {
  position : fixed;
  bottom   : 0;
  transform: translateY(100%);
}

.loader {
  margin    : 0 auto;
  width     : 60px;
  height    : 50px;
  text-align: center;
  font-size : 10px;
  position  : fixed;
  top       : 50%;
  left      : 50%;
  transform : translateY(-50%) translateX(-50%);
  z-index   : 501;
  opacity   : 0;
}

.loader>div {
  height           : 100%;
  width            : 8px;
  display          : inline-block;
  float            : left;
  margin-left      : 2px;
  -webkit-animation: delay 0.8s infinite ease-in-out;
  animation        : delay 0.8s infinite ease-in-out;
}

.loader .bar1 {
  background-color: #754fa0;
}

.loader .bar2 {
  background-color       : #09b7bf;
  -webkit-animation-delay: -0.7s;
  animation-delay        : -0.7s;
}

.loader .bar3 {
  background-color       : #90d36b;
  -webkit-animation-delay: -0.6s;
  animation-delay        : -0.6s;
}

.loader .bar4 {
  background-color       : #f2d40d;
  -webkit-animation-delay: -0.5s;
  animation-delay        : -0.5s;
}

.loader .bar5 {
  background-color       : #fcb12b;
  -webkit-animation-delay: -0.4s;
  animation-delay        : -0.4s;
}

.loader .bar6 {
  background-color       : #ed1b72;
  -webkit-animation-delay: -0.3s;
  animation-delay        : -0.3s;
}

main {
  height    : 100vh;
  /* padding: 10px; */
  text-align: center;
}

main .-content {
  position: relative;
  height  : 100vh;
}

main .-content>div {
  height    : 100%;
  overflow  : hidden;
  overflow-y: auto;
}

main .-content.-index {
  background-color: #f6f6f6;
  display         : table;
  width           : 100%;
}

main .-content.-index>div {
  display       : table-cell;
  vertical-align: middle;
}

.fade-mask {
  -webkit-mask-image: linear-gradient(to bottom, black 0, transparent 100%);
  mask-image        : linear-gradient(to bottom, black 0, transparent 100%);
}

.glowy-background {
  background     : linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation      : gradient 11s ease infinite;
}

.landing {
  z-index: -1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.work-entry {
  -webkit-animation          : appear 1.5s 1;
  animation                  : appear 1.5s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode        : forwards;
}

#particles-js {
  width   : 100%;
  height  : 100vh;
  position: fixed;
}

#particles-js .particles-js-canvas-el {
  -ms-transform              : scale(1);
  -webkit-transform          : scale(1);
  transform                  : scale(1);
  opacity                    : 1;
  -webkit-animation          : appear 1.4s 1;
  animation                  : appear 1.4s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode        : forwards;
}

.stop-scrolling {
  height  : 100%;
  overflow: hidden;
}

#about {
  line-height: 2;
}

#about_row {
  padding-bottom: 20px;
}

#portrait {
  width           : 100%;
  max-width       : 475px;
  min-width       : 300px;
  transform-origin: center 28px;
  animation       : swing ease-in-out 1s infinite alternate;
}

#portrait:hover {
  cursor                      : grab;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state   : paused;
  -o-animation-play-state     : paused;
  animation-play-state        : paused;
}

.highlight {
  text-decoration: underline;
  animation      : colorful-underline 15s ease infinite;
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes colorful-underline {
  0% {
    text-decoration-color: #ee7752;
  }

  25% {
    text-decoration-color: #e73c7e;
  }

  50% {
    text-decoration-color: #23a6d5;
  }

  75% {
    text-decoration-color: #23d5ab;
  }

  100% {
    text-decoration-color: #ee7752;
  }

}

@keyframes appear {
  0% {
    -ms-transform    : scale(0);
    -webkit-transform: scale(0);
    transform        : scale(0);
    opacity          : 0;
  }

  100% {
    -ms-transform    : scale(1);
    -webkit-transform: scale(1);
    transform        : scale(1);
    opacity          : 1;
  }
}

@keyframes animate {

  0% {
    transform    : translateY(0) rotate(0deg);
    opacity      : 1;
    border-radius: 0;
  }

  100% {
    transform    : translateY(-1000px) rotate(720deg);
    opacity      : 0;
    border-radius: 50%;
  }

}

.content {
  z-index : 10;
  position: relative;
}

.glowy {
  background             : linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  animation              : gradient 11s ease infinite;
  background-size        : 400% 400%;
  -webkit-background-clip: text;
  -moz-background-clip   : text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color   : transparent;
  display                : inline-block;
  transition             : all 1s;
}


.content h1 {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  animation : gradient 11s ease infinite;

  background-size        : 400% 400%;
  background-clip        : text;
  -webkit-background-clip: text;
  -moz-background-clip   : text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color   : transparent;
  color                  : white;
  font-size              : 58pt;
  animation              : gradient 11s ease infinite;
  display                : inline-block;
  margin-bottom          : 60px;
}


.over h1 {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  animation : gradient 11s ease infinite;

  background-size        : 400% 400%;
  -webkit-background-clip: text;
  -moz-background-clip   : text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color   : transparent;
  color                  : white;
  font-size              : 52pt;
  animation              : gradient 11s ease infinite;
  display                : inline-block;
  margin-bottom          : 60px;
}

.over p {
  font-size: larger;
}

.row {
  margin-right: 0 !important;
}


.content .row {
  margin-top     : 70px;
  justify-content: center;
  align-content  : center;

}

.inner {
  background-color: #141414;
  border-radius   : 10px;
  padding         : 10px;
  transition      : 0.3s;
}

.inner:hover {
  -webkit-box-shadow: 0 15px 6px -6px #777;
  -moz-box-shadow   : 0 15px 6px -6px #777;
  box-shadow        : 0 15px 6px -6px #777;
  transition        : 0.3s;
}

.experience-row {
  margin-top     : 5vh;
  position       : relative;
  z-index        : 400;
  justify-content: center;
  text-align     : center;
}

.experience-row h3 {
  margin-top: 20px;
  font-size : 23pt;
}

.col-md-3 {
  padding: 10px;
}


#backToggle {
  display          : none;
  -webkit-transform: scaleX(-1);
  transform        : scaleX(-1);
  z-index          : 499;
  position         : fixed;
  top              : 25px;
  left             : 30px;
}

.icon {
  -webkit-mask-type    : alpha;
  -webkit-mask-size    : contain;
  -webkit-mask-repeat  : no-repeat;
  -webkit-mask-position: center !important;

  mask-type    : alpha;
  mask-size    : contain;
  mask-repeat  : no-repeat;
  mask-position: center !important;

  background     : linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  animation      : gradient 11s ease infinite;
  background-size: 400% 400%;
}

.heading {
  mask-position        : left top !important;
  -webkit-mask-position: left top !important;
  margin-top           : -20px;
}

.icon:hover {
  cursor: pointer;
}

.icon-arrow {
  width             : 50px !important;
  height            : 50px !important;
  mask-image        : url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/icon-arrow-black.svg);
  -webkit-mask-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/icon-arrow-black.svg);
}

.portrait {
  margin : auto;
  display: block;
}

.menu-icon {
  mask-position: left !important;
}

.menu-icons {
  z-index : 50;
  position: fixed;
  bottom  : 5%;
}

.email {
  -webkit-mask-image: url('./imgs/email.png');
  mask-image        : url('./imgs/email.png');
  margin-top        : 30px;
  width             : 40px;
  height            : 40px;
}

.github {
  -webkit-mask-image: url('./imgs/github.png');
  mask-image        : url('./imgs/github.png');
  margin-top        : 30px;
  width             : 40px;
  height            : 40px;
}

.linkedin {
  -webkit-mask-image: url('./imgs/linkedin.png');
  mask-image        : url('./imgs/linkedin.png');
  width             : 37px;
  height            : 37px;
}

.ibm {
  -webkit-mask-image: url('./imgs/ibm.png');
  mask-image        : url('./imgs/ibm.png');
  min-height        : 20vh;
  min-width         : 90%;
}

.checkout {
  -webkit-mask-image: url('./imgs/checkout.png');
  mask-image        : url('./imgs/checkout.png');
  min-height        : 20vh;
  min-width         : 90%;
}

.ministry {
  -webkit-mask-image: url('./imgs/ministry.png');
  mask-image        : url('./imgs/ministry.png');
  min-height        : 20vh;
  min-width         : 90%;
}

.content p {
  font-size    : 25pt;
  margin-bottom: 30px;
}

.dark {
  background-color: #141414;
  color           : white;
}

.light {
  background-color: white;
  color           : #2e2e2e;
}

#menuToggle {
  display : block;
  position: fixed;

  z-index: 499;

  -webkit-user-select: none;
  user-select        : none;
}

#menuToggle a {
  text-decoration: none;
  color          : #232323;

  transition: color 0.3s ease;
  transition: all 0.5s;
}

#menuToggle a:hover {
  color: #23a6d5;
}


#menuToggle input {
  display : block;
  width   : 40px;
  height  : 32px;
  position: absolute;
  top     : -7px;
  left    : -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 2;

  -webkit-touch-callout: none;
}

#menuToggle span {

  background     : linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  animation      : gradient 11s ease infinite;
  background-size: 400% 400%;
  display        : inline-block;

  display      : block;
  width        : 33px;
  height       : 4px;
  margin-bottom: 5px;
  position     : relative;

  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked~span {
  opacity   : 1;
  transform : rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked~span:nth-last-child(3) {
  opacity  : 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#progress-bar {
  position: fixed;
  z-index : 20;
  width   : 5px;
}

#menu {

  /* border      : 5px solid;
  border-image: linear-gradient(45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab) 1; */
  position   : absolute;
  width      : 300px;
  margin     : -100px 0 0 -55px;
  padding    : 50px;
  padding-top: 125px;

  background            : #ededed;
  list-style-type       : none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform       : translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  animation : gradient 11s ease infinite;

}


#menu li {
  padding   : 10px 0;
  font-size : 22px;
  transition: all 2s;
}

#menu li:hover {
  color     : #0088d7;
  cursor    : pointer;
  transition: all 0.25s;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked~ul {
  transform: none;
}

/*  ABOUT */

/* Projects */

.chip {
  padding      : 0 15px;
  height       : 40px;
  font-size    : 15px;
  line-height  : 40px;
  border-radius: 25px;
  margin-bottom: 10px;
  float        : right;
  margin-left  : 10px;
}

/*  #ee7752, #e73c7e, #23a6d5, #23d5ab */

.language {
  background-color: #ee7752;
}

.back-end {
  background-color: #e73c7e;
}

.front-end {
  background-color: #23a6d5;
}

.utility {
  background-color: #23d5ab;
}

.hidden {
  opacity: 0;
  display: none;
}


@media (max-width: 1500px) {
  .hideOverflowOnMobile {
    overflow-x: hidden;
  }
}

.contact img {
  margin : auto;
  display: block;
}

.contact .container {
  min-height: 200px;
}

.contact {
  padding-top    : 100px;
  min-height     : 200px;
  background     : linear-gradient(-45deg, rgba(238, 119, 82, 0.76), rgba(231, 60, 126, 0.76), rgba(35, 166, 213, 0.76), rgba(35, 213, 171, 0.76));
  background     : -webkit-linear-gradient(-45deg, rgba(238, 119, 82, 0.76), rgba(231, 60, 126, 0.76), rgba(35, 166, 213, 0.76), rgba(35, 213, 171, 0.76));
  background-size: 400% 400%;
  animation      : gradient 11s ease infinite;
}

.footer {
  padding-top: 10px;
  text-align : center;
  position   : relative;
  z-index    : 200;
  width      : 100%;
  min-height : 50px;
}

.footer p {
  background             : linear-gradient(-45deg, rgba(238, 119, 82, 0.76), rgba(231, 60, 126, 0.76), rgba(35, 166, 213, 0.76), rgba(35, 213, 171, 0.76));
  background             : -webkit-linear-gradient(-45deg, rgba(238, 119, 82, 0.76), rgba(231, 60, 126, 0.76), rgba(35, 166, 213, 0.76), rgba(35, 213, 171, 0.76));
  animation              : gradient 11s ease infinite;
  background-size        : 400% 400%;
  background-clip        : text;
  -webkit-background-clip: text;
  -moz-background-clip   : text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color   : transparent;
  color                  : white;
  animation              : gradient 11s ease infinite;
  font-weight            : 600;
}

@media only screen and (orientation: portrait) {
  .work-entry {
    padding-left : 10vw;
    padding-right: 10vw;
  }

  #menuToggle {
    top : 4vh;
    left: 3vw;
  }

  .menu-icons {
    display: none !important;
  }

  .landing-text h1 {
    font-size: 20vw;
  }

  .experience-row {
    margin-top: 0 !important;
  }


  .experience h2 {
    margin-bottom: 5vh !important;
  }

  .titles {
    margin-bottom: 20vh;
    position     : fixed;
    bottom       : 0;
  }

  .landing-text h2 {
    font-size: 8vw;
  }

  .landing-text {
    padding-top : 8vh;
    padding-left: 12vw !important;
  }

  .landing {
    width        : 100%;
    height       : 100vh;
    padding-right: 10vw !important;
  }

  #menuToggle {
    width: 8vw !important;
  }

  .content {
    padding-bottom: 100px;
    padding-left  : 10vw;
    padding-right : 10vw;
  }

  .project-gallery p {
    font-size: 2vh !important;
  }
}

.work-entry li {
  font-size    : 16pt;
  margin-bottom: 20px;
}

.work-entry p {
  font-size: 16pt;
}

.work-entry h2,
.work-entry h3 {
  margin-top: 0;
}

.work-entry h3 {
  margin-bottom: 50px;
}

@media only screen and (orientation: landscape) {
  .landing-text h1 {
    font-size: 21vh;
  }

  .landing-text h2 {
    font-size: 7vh !important;
  }

  .landing-text {
    padding-top : 8vh;
    padding-left: 10vw;
  }

  .content {
    padding-left  : 12vw;
    padding-right : 12vw;
    padding-bottom: 100px;
  }

  .landing {
    width : 100%;
    height: 100% !important;
  }

  .over {
    padding-left: 12vw !important;
    padding-top : 5vw;
  }

  #menuToggle {
    top : 4vh;
    left: 55px;
  }

  .menu-icons {
    left: 55px;
  }

  .project-gallery p {
    font-size: max(1vw, 12pt) !important;
  }

}

.contact a {
  display: inline-block;
}

.contact .col-md-4 {
  justify-content: center;
  display        : grid;
}

.contact img:hover {
  transition    : 0.5s;
  -webkit-filter: drop-shadow(5px 5px 5px black);
  filter        : drop-shadow(5px 5px 5px black);
}

.project-actions {
  align-content  : center;
  justify-content: center;
  display        : grid;
}

.project-control {
  cursor    : pointer;
  font-size : 85pt;
  margin-top: -55pt;
}


#left-control {
  float: left;
}

#right-control {
  float: right;
}

.project-gallery {
  margin-left : auto;
  margin-right: auto;
  max-width   : 60vw;
  height      : 35vh;
  margin-top  : 3vh;
  text-align  : left;
}

.full-project {
  background-color: rgba(52, 58, 64, 0.95) !important;
}

.project-gallery p {
  color      : white;
  opacity    : 0.8;
  line-height: 1.2 !important;
}

#projects {
  text-align: center !important;
}

.projects h2 {
  font-weight: 600;
}



#projects-all {
  text-align: center;
  margin-top: 6vh;
  font-size : 17pt;
}

#view-all-label {
  cursor    : pointer;
  transition: all 1s;
  display   : inline-block;
}

#view-all-label:hover {
  color: #23a6d5;
}

.glowing {
  transition   : 1s;
  border       : 10px #23a6d5 solid;
  border-radius: 0.01px;
}

/** CAROUSEL **/
.icon-cards {
  position        : relative;
  height          : 100%;
  margin          : 0;
  color           : white;
  perspective     : 2000px;
  transform-origin: center;
}

.icon-cards__content {
  transition          : all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  position            : absolute;
  width               : 100%;
  height              : 100%;
  transform-origin    : center;
  transform-style     : preserve-3d;
  transform           : translateZ(-30vw) rotateY(0);
  /* -webkit-animation: carousel 15s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation   : carousel 15s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards; */
}

.icon-cards__content.step-animation {
  -webkit-animation: carousel 8s infinite steps(1) forwards;
  animation        : carousel 8s infinite steps(1) forwards;
}

.icon-cards__item {
  transition      : 1s;
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  height          : 100%;
  border-radius   : 6px;
  transform-origin: center;
}


.icon-cards__item:nth-child(1) {
  transform: rotateY(0) translateZ(30vw);

}

.icon-cards__item:nth-child(2) {
  transform: rotateY(120deg) translateZ(30vw);
}

.icon-cards__item:nth-child(3) {
  transform: rotateY(240deg) translateZ(30vw);
}

@-webkit-keyframes carousel {

  0%,
  17.5% {
    transform: translateZ(-30vw) rotateY(0);
  }

  27.5%,
  45% {
    transform: translateZ(-30vw) rotateY(-120deg);
  }

  55%,
  72.5% {
    transform: translateZ(-30vw) rotateY(-240deg);
  }

  82.5%,
  100% {
    transform: translateZ(-30vw) rotateY(-360deg);
  }
}

@keyframes carousel {

  0%,
  17.5% {
    transform: translateZ(-30vw) rotateY(0);
  }

  27.5%,
  45% {
    transform: translateZ(-30vw) rotateY(-120deg);
  }

  55%,
  72.5% {
    transform: translateZ(-30vw) rotateY(-240deg);
  }

  82.5%,
  100% {
    transform: translateZ(-30vw) rotateY(-360deg);
  }
}


a {
  color          : inherit !important;
  text-decoration: none !important;
}

.Button {
  display                    : inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  color                      : #fff;
  font-size                  : 14pt;
  font-weight                : 500;
  letter-spacing             : 0.0625rem;
  margin-left                : 1.5625rem;
  padding                    : 5px 30px;
  position                   : relative;
  overflow                   : hidden;
  text-align                 : center;
  text-transform             : uppercase;
  transform-style            : preserve-3d;
  will-change                : transform;
  z-index                    : 1;
}

.Button-mask {
  position  : absolute;
  transition: transform 0.425s ease-in-out;
  z-index   : -1;
}

.Button-mask.slides-left {
  left: 0;
}

.Button-mask.slides-right {
  right: 0;
}

.Button-slides {
  top   : 0;
  width : 200%;
  height: 100%;
}

.Button-rotates {
  top      : 50%;
  left     : 50%;
  width    : 200%;
  height   : 600%;
  transform: translate3d(-50%, -50%, 0);
}

.Button:hover .Button-mask.slides-left {
  transform: translate3d(-50%, 0, 0);
}

.Button:hover .Button-mask.slides-right {
  transform: translate3d(50%, 0, 0);
}

.Button:hover .Button-mask.rotates-clockwise {
  transform: rotate(180deg) translate3d(50%, 50%, 0);
}

.Button:hover .Button-mask.rotates-c-clockwise {
  transform: rotate(-180deg) translate3d(50%, 50%, 0);
}

.Graident-one {
  background: linear-gradient(135deg, #ecc344 0%, #e42d7f 100%);
}

.Graident-two {
  background: linear-gradient(135deg, #00c7c5 0%, #0088d7 100%);
}

.Graident-three {
  background: linear-gradient(135deg, #855edd 0%, #63afd3 100%);
}

.Graident-four {
  background: linear-gradient(135deg, #e32d76 0%, #648fe6 100%);
}

.Graident-five {
  background: linear-gradient(135deg, #b6eb77 0%, #359ab6 100%);
}

@media only screen and (orientation: portrait) and (max-width: 600px) {
  #menu {
    width : 100vw !important;
    height: 100vh !important;
  }

  #menu li {
    font-size   : 5vw !important;
    padding-left: 20vw !important;
  }

}