@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");
html {
  box-sizing: border-box;
}

*,
*:after,
*:before {
  box-sizing: inherit;
  font-family: "aldrich", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-size: 3vmin;
}

#scene {
  margin: 0;
  overflow: hidden;
}

/*
#jervi.jervi-frames {
    animation-name: jerviAnimation;
    animation-duration: 1s;
    transition: 1s;
}
@keyframes jerviAnimation {
    16.66% {
        background-image: url(/img/jervi6.png);
    }
    33.33% {
        background-image: url(/img/jervi5.png);
    }
    50% {
        background-image: url(/img/jervi4.png);
    }
    66.66% {
        background-image: url(/img/jervi3.png);
    }
    83.33% {
        background-image: url(/img/jervi2.png);
    }
    100% {
        background-image: url(/img/jervi1.png);
    }
}
*/
#jervi {
  transform: translate(-40px, 60px);
  width: 66%;
}

@media only screen and (max-width: 600px) {
  #jervi {
    width: 250%;
  }
}
@media only screen and (max-width: 600px) {
  #jervi {
    width: 250%;
  }
}
@-webkit-keyframes unlockProgress {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  70% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
@keyframes unlockProgress {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  70% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
h2.animated-h2 {
  -webkit-animation-name: h2Animation;
          animation-name: h2Animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  transition: 1.5s;
}

@-webkit-keyframes h2Animation {
  0% {
    font-size: 0;
    transform: translate(0, -37rem);
  }
  50% {
    font-size: 0;
    transform: translate(0, -37rem);
  }
  100% {
    font-size: 1.5em;
    transform: translate(0, 0);
  }
}

@keyframes h2Animation {
  0% {
    font-size: 0;
    transform: translate(0, -37rem);
  }
  50% {
    font-size: 0;
    transform: translate(0, -37rem);
  }
  100% {
    font-size: 1.5em;
    transform: translate(0, 0);
  }
}
.menu.animation-menu {
  -webkit-animation-name: menuAnimation;
          animation-name: menuAnimation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  transition: 1s;
}

@-webkit-keyframes menuAnimation {
  0% {
    transform: translate(0, -6rem);
  }
  50% {
    transform: translate(0, -6rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes menuAnimation {
  0% {
    transform: translate(0, -6rem);
  }
  50% {
    transform: translate(0, -6rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
header {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
header.none {
  display: none;
}
header h1, header button {
  position: relative;
  z-index: 10;
}
header h1 {
  text-transform: uppercase;
  letter-spacing: 1pt;
  transition: 1s;
  font-size: 4em;
  color: rgb(0, 0, 0);
}
header button {
  font-weight: 900;
  position: absolute;
  bottom: 100px;
  left: calc(50% - 95px);
  width: 200px;
  height: 50px;
  border: 0;
  box-shadow: 2px 1px 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  font-size: 1em;
  color: #09203f;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
  color: rgba(0, 0, 255, 0.5);
  background: rgba(0, 255, 157, 0.5);
  border: 0.1rem solid rgba(0, 0, 255, 0.5);
  box-shadow: 0.5rem 0.5rem rgba(255, 0, 0, 0.5);
  border-radius: 1rem;
  outline: none;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 100;
  text-transform: uppercase;
  transition: 1s;
}
header button:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  background: rgb(216, 216, 216);
}
header button:focus {
  outline: 0;
}
header button:before, header button:after {
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 17px;
  position: absolute;
}
header button .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e7315f;
  -webkit-animation: unlockProgress 2s ease-out;
          animation: unlockProgress 2s ease-out;
  width: 0%;
}
header .triangle.left {
  background: linear-gradient(to top, #71E2A6 50%, #71E2A6 100%);
}
header .triangle.right {
  background: linear-gradient(to top, #C81642 0%, #E2718D 50%);
}
header .triangle {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
header .triangle.left {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
header .triangle.right {
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
}
header.open .triangle.left {
  -webkit-clip-path: polygon(0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 100%, 0 100%);
}
header.open .triangle.right {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%);
}
header.open button {
  left: -40px;
  bottom: 40px;
  width: 50px;
  border-radius: 50%;
  opacity: 0;
}

button.none {
  transition: 0.4s;
  display: none;
}

.container {
  position: relative;
  width: 100%;
  background: linear-gradient(to left bottom, #C81642 0%, #E2718D 50%, #71E2A6 50%, #71E2A6 100%);
}
.container .layer {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
  height: 100vh !important;
}

.main {
  position: absolute;
  top: 0vh;
  width: 100%;
  height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.logo {
  margin-left: 5vw;
  padding-top: 15px;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.menu .item {
  margin-right: 5vw;
  padding-top: 17px;
}
.menu .item .cybr {
  padding-top: 0;
}
.menu .item.btn:hover {
  cursor: pointer;
  color: #84dfae;
  text-shadow: 2px 1px 0px #E2718D;
  filter: blur(1px);
  transition: 0.5s;
}

.body {
  display: flex;
  justify-content: space-between;
  margin-left: 5vw;
  margin-right: 5vw;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
}
.body .right {
  text-align: right;
  line-height: 30px;
}
.body .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.body .left h2 {
  margin-top: 20px;
  padding: 0;
  line-height: 20px;
  display: flex;
}

.bus-rails {
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
}

.bus .bus-img {
  height: 80px;
}

.area {
  position: relative;
}
.area ul {
  position: absolute;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 10px;
  left: 75px;
}
.area ul li {
  height: 50px;
  margin-right: 10px;
}
.area ul li img {
  width: 40px;
}
.area ul li img:hover {
  background: rgb(112, 112, 112);
  border-radius: 6rem;
  transition: 0.3s;
}

.area {
  display: flex;
}

.table {
  background: #C81642;
  display: flex;
  padding-left: 5vw;
  padding-right: 5vw;
  height: 4vh;
  background: repeating-radial-gradient(circle, #C81642, #C81642 7px, rgba(0, 0, 0, 0) 7px, rgba(0, 0, 0, 0) 14px);
}
.table .left {
  background: #71E2A6;
  text-align: center;
  width: 20vw;
}
.table .right {
  background: #C81642;
  width: 100%;
  /*box-shadow: inset 1px -4px 0px #5d303b85, inset 0px 4px 0px #5d303b85;*/
  border-top: 1px solid tomato;
  border-bottom: 1px solid tomato;
  border-right: 2px solid tomato;
}
.table .right p {
  margin: 0;
}

.youtube {
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin-left: 5vw;
  margin-right: 5vw;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer .left {
  font-size: 3vmin;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  margin-bottom: 10px;
}
.footer .right {
  width: 20%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  margin-bottom: 10px;
}
.footer .right h6 {
  margin-top: 15px;
}
.footer h6 {
  margin: 0;
}

.contact-me {
  display: flex;
  align-items: flex-end;
  width: 20%;
}
.contact-me button {
  width: 100%;
  border: none;
  background: #E2718D;
  height: 3rem;
  font-size: 1.6rem;
  border-radius: 300px 300px 0px 0px;
}
.contact-me button:hover {
  background: #6d3a47;
  height: 4rem;
  color: white;
  cursor: pointer;
  transition: 0.4s;
  border: 10px solid teal;
  border-bottom: none;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-content {
  position: fixed;
  bottom: 0;
  background-color: #000000;
  width: 32%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.8s;
  animation-name: slideIn;
  animation-duration: 0.8s;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0%);
  border-radius: 20px 20px 0 0;
  padding-left: 10px;
  padding-right: 10px;
}

.close {
  color: rgb(255, 255, 255);
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.74);
  height: 5px;
  border-radius: 100px;
  margin-left: 60px;
  margin-right: 60px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  display: flex;
  flex-direction: column;
}
.modal-header .image {
  display: flex;
  flex-direction: column;
  position: relative;
}
.modal-header .image img {
  border-radius: 10px;
}
.modal-header .image h6 {
  position: absolute;
  top: 10%;
  left: 50%;
  padding: 0;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
  background: cornsilk;
  border-radius: 20px;
  transform: translate(-50%, 0);
  white-space: nowrap;
}

.modal-body {
  padding: 2px 16px;
}
.modal-body form {
  display: flex;
  flex-direction: column;
}

input[type=text],
input[type=email],
input[type=submit],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  max-height: 250px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

textarea {
  resize: none;
  height: 100px;
  font-weight: lighter;
  margin-bottom: 0;
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  letter-spacing: 2px;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  letter-spacing: 2px;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
  letter-spacing: 2px;
}

input[type=submit] {
  padding: 0;
  border: none;
  background: seagreen;
  color: rgb(0, 0, 0);
  height: 35px;
  text-align: left;
  padding-left: 15px;
}
input[type=submit]:hover {
  content: "aaa";
  background: rgb(73, 168, 114);
  cursor: pointer;
  letter-spacing: 20px;
  transition: 0.4s;
}

.modal-footer {
  padding: 2px 16px;
  color: cornsilk;
  align-items: center;
  margin-bottom: 20px;
}
.modal-footer h6 {
  font-size: 1rem;
  margin: 0;
  font-weight: lighter;
  letter-spacing: 2px;
  color: rgb(255, 204, 0);
}

.check-box-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.custom-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.custom-checkbox .label {
  font-size: 0.8rem;
  margin: 0 10px;
  color: cornsilk;
}
.custom-checkbox .checkmark {
  width: 35px;
  height: 35px;
  border: 2px solid #222;
  border-radius: 50%;
  display: inline-block;
  background: #222 url(/img/head.png) center/10% no-repeat;
  transition: background-size 0.2s ease;
}
.custom-checkbox input:checked + .checkmark {
  background-size: 60%;
  background: #71E2A6 url(/img/head.png) center/120% no-repeat;
  transition: background-size 0.25s cubic-bezier(0.7, 0, 0.18, 1.24);
}
.custom-checkbox input {
  display: none;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}
.cybr-btn {
  --primary: #C81642;
  --shadow-primary: #9aebbf;
  --primary-hue: 0;
  --primary-lightness: 50;
  --color: hsl(0, 0%, 0%);
  --font-size: 26px;
  --shadow-primary-hue: 180;
  --label-size: 9px;
  --shadow-secondary-hue: 60;
  --shadow-secondary: hsl(var(--shadow-secondary-hue), 90%, 60%);
  --clip: polygon(0 0, 100% 0, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 70%);
  --border: 4px;
  --shimmy-distance: 5;
  --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  color: var(--color);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: var(--font-size);
  outline: transparent;
  letter-spacing: 2px;
  position: relative;
  border: 0;
  min-width: 300px;
  height: 75px;
  line-height: 75px;
  z-index: 1;
}
.cybr-btn:after, .cybr-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  z-index: -1;
}
.cybr-btn:before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
}
.cybr-btn:after {
  background: var(--primary);
}
.cybr-btn__tag {
  position: absolute;
  padding: 1px 4px;
  letter-spacing: 1px;
  line-height: 1;
  bottom: -5%;
  right: 5%;
  color: hsl(0deg, 0%, 0%);
  font-size: var(--label-size);
}
.cybr-btn__glitch {
  position: absolute;
  top: calc(var(--border) * -1);
  left: calc(var(--border) * -1);
  right: calc(var(--border) * -1);
  bottom: calc(var(--border) * -1);
  background: var(--shadow-primary);
  text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  -webkit-animation: glitch 2s infinite;
          animation: glitch 2s infinite;
  display: none;
}
.cybr-btn:hover .cybr-btn__glitch {
  display: block;
}
.cybr-btn__glitch:before {
  content: "";
  position: absolute;
  top: calc(var(--border) * 1);
  right: calc(var(--border) * 1);
  bottom: calc(var(--border) * 1);
  left: calc(var(--border) * 1);
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  background: var(--primary);
  z-index: -1;
}

@-webkit-keyframes glitch {
  0% {
    -webkit-clip-path: var(--clip-one);
            clip-path: var(--clip-one);
  }
  2%, 8% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  6% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  9% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(0, 0);
  }
  10% {
    -webkit-clip-path: var(--clip-three);
            clip-path: var(--clip-three);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  13% {
    -webkit-clip-path: var(--clip-three);
            clip-path: var(--clip-three);
    transform: translate(0, 0);
  }
  14%, 21% {
    -webkit-clip-path: var(--clip-four);
            clip-path: var(--clip-four);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  25% {
    -webkit-clip-path: var(--clip-five);
            clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  30% {
    -webkit-clip-path: var(--clip-five);
            clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  35%, 45% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * -1%));
  }
  40% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * 1%));
  }
  50% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(0, 0);
  }
  55% {
    -webkit-clip-path: var(--clip-seven);
            clip-path: var(--clip-seven);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  60% {
    -webkit-clip-path: var(--clip-seven);
            clip-path: var(--clip-seven);
    transform: translate(0, 0);
  }
  31%, 61%, 100% {
    -webkit-clip-path: var(--clip-four);
            clip-path: var(--clip-four);
  }
}

@keyframes glitch {
  0% {
    -webkit-clip-path: var(--clip-one);
            clip-path: var(--clip-one);
  }
  2%, 8% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  6% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  9% {
    -webkit-clip-path: var(--clip-two);
            clip-path: var(--clip-two);
    transform: translate(0, 0);
  }
  10% {
    -webkit-clip-path: var(--clip-three);
            clip-path: var(--clip-three);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  13% {
    -webkit-clip-path: var(--clip-three);
            clip-path: var(--clip-three);
    transform: translate(0, 0);
  }
  14%, 21% {
    -webkit-clip-path: var(--clip-four);
            clip-path: var(--clip-four);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  25% {
    -webkit-clip-path: var(--clip-five);
            clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  30% {
    -webkit-clip-path: var(--clip-five);
            clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  35%, 45% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * -1%));
  }
  40% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * 1%));
  }
  50% {
    -webkit-clip-path: var(--clip-six);
            clip-path: var(--clip-six);
    transform: translate(0, 0);
  }
  55% {
    -webkit-clip-path: var(--clip-seven);
            clip-path: var(--clip-seven);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  60% {
    -webkit-clip-path: var(--clip-seven);
            clip-path: var(--clip-seven);
    transform: translate(0, 0);
  }
  31%, 61%, 100% {
    -webkit-clip-path: var(--clip-four);
            clip-path: var(--clip-four);
  }
}/*# sourceMappingURL=main2.css.map */