  
/* variables */
/* Reset */
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Generic */
/**/
.main {
  width: 95%;
  height: 600px;
  position: inherit;
  overflow: hidden;
}

/**/
.bow {
  position: absolute;
  top: 120px;
  left: 345px;
  width: 120px;
  height: 350px;
  animation: bow 8s infinite;
}
.bow__base {
  position: absolute;
  top: calc(50% - 260px);
  right: 0%;
  width: 1500px;
  height: 520px;
  z-index: 100;
  border-radius: 70% 30% 30% 70%/50% 50% 50% 50%;
  border-top: 15px solid transparent;
  border-right: 15px solid #00BDAE;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
}
.bow__base::before {
  content: "";
  position: absolute;
  top: calc(50% - 37.5px);
  right: -15px;
  width: 25px;
  height: 75px;
  background-image: linear-gradient(to bottom, #2C6087 30%, #F82B48 30%, #F82B48 70%, #00BDAE 70%);
}
.bow__top, .bow__bottom {
  position: absolute;
  left: 10px;
  height: 25px;
  width: 12px;
  border-radius: 10px;
  background: #00BDAE;
  z-index: 100;
}
.bow__bottom {
  bottom: 0px;
}

.rope {
  position: absolute;
  top: 5px;
  left: 12px;
  height: 340px;
}
.rope__top, .rope__bottom {
  position: absolute;
  height: 175px;
  width: 7px;
  border-radius: 10px;
  background: #555468;
  animation: row-top 4s infinite linear, row-h 4s infinite linear;
}
.rope__bottom {
  bottom: 0%;
  animation: row-bottom 4s infinite linear, row-h 4s infinite linear;
}

.arrow {
  position: absolute;
  top: calc(50% - 22.5px);
  left: calc(50% - 75px);
  width: 300px;
  height: 45px;
  animation: arrow 8s infinite linear, arrow-s 8s infinite linear;
}
.arrow__line {
  position: absolute;
  width: 280px;
  height: 5px;
  top: calc(50% - 2.5px);
  left: calc(50% - 140px);
  z-index: 50;
  background: #555468;
  border-radius: 5px;
}
.arrow__head {
  position: absolute;
  top: 8px;
  right: 5px;
  width: 30px;
  height: 30px;
  z-index: 50;
  background-image: linear-gradient(-45deg, #FF6353 0%, #FF6353 50%, transparent 50%);
  transform: rotateZ(-45deg);
}
.arrow__top, .arrow__bottom {
  position: absolute;
  left: 5px;
  width: 50px;
  height: 22px;
  background-image: linear-gradient(to right, #FF6353 0%, #FF6353 70%, #F82B48 70%);
  transform: skewX(30deg);
}
.arrow__bottom {
  bottom: 0;
  background-image: linear-gradient(to right, #00BDAE 0%, #00BDAE 70%, #2C6087 70%);
  transform: skewX(-30deg);
}

.line {
  position: absolute;
  left: 100%;
  top: 40%;
  width: 50px;
  height: 5px;
  background: #555468;
  animation: line 8s infinite linear;
}
.line-2 {
  top: 60%;
  animation-delay: 0.2s;
}

.wall {
  position: absolute;
  width: 5px;
  height: 200px;
  top: calc(50% - 100px);
  right: -5px;
  z-index: 50;
  background: #555468;
  animation: wall 8s infinite linear;
}

/**/
@keyframes wall {
  0%, 80%, 96% {
    right: -10px;
  }
  82%, 95% {
    right: 0px;
  }
}
@keyframes bow {
  0%, 22%, 100% {
    top: 120px;
    left: 345px;
  }
  30% {
    top: 120px;
    left: -50vw;
  }
  80% {
    top: 150vmax;
    left: 345px;
  }
}
@keyframes arrow {
  0%, 100% {
    left: calc(50% - 75px);
    transform: rotateZ(0deg);
  }
  21% {
    left: calc(50% - 170px);
  }
  24%, 79% {
    left: calc(100% - 350px);
    transform-origin: right;
    transform: rotateZ(0deg);
  }
  80%, 82%, 84% {
    transform-origin: right;
    transform: rotateZ(-5deg);
    left: calc(100% - 305px);
  }
  81%, 83%, 85% {
    transform-origin: right;
    transform: rotateZ(5deg);
    left: calc(100% - 305px);
  }
  86%, 95% {
    transform-origin: right;
    transform: rotateZ(0deg);
    left: calc(100% - 305px);
  }
}
@keyframes arrow-s {
  0%, 40%, 42%, 44%, 46%, 48%, 60%, 62%, 64%, 66%, 68%, 70% {
    top: calc(50% - 22.5px);
  }
  41%, 43%, 45%, 47%, 49%, 61%, 63%, 65%, 67%, 69% {
    top: calc(50% - 18px);
  }
}
@keyframes row-h {
  0%, 12.5%, 44%, 50% {
    height: 175px;
  }
  42.5% {
    height: 198px;
  }
}
@keyframes row-top {
  0%, 50% {
    transform-origin: top;
    transform: rotateZ(0deg);
  }
  40%, 42.5% {
    transform-origin: top;
    transform: rotateZ(30deg);
  }
  47.5% {
    transform-origin: top;
    transform: rotateZ(-15deg);
  }
}
@keyframes row-bottom {
  0%, 50% {
    transform-origin: bottom;
    transform: rotateZ(0deg);
  }
  40%, 42.5% {
    transform-origin: bottom;
    transform: rotateZ(-30deg);
  }
  47.5% {
    transform-origin: bottom;
    transform: rotateZ(15deg);
  }
}
@keyframes line {
  0%, 25%, 30.1%, 35.1%, 40.1%, 45.1%, 50.1%, 55.1%, 60.1%, 65.1%, 70.1%, 75.1% {
    left: 100%;
  }
  30%, 35%, 40%, 45%, 50%, 55%, 60%, 65%, 70%, 75% {
    left: -100px;
  }
}
.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}
.content {
  width: 110px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.content .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: arrow 2s ease infinite both;
}
@keyframes arrow {
  0% {
    transform: translateX(-90px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(80px);
  }
}
.content .arrow .pointer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  animation: pointer 2s ease infinite both;
}
@keyframes pointer {
  0% {
    width: 20px;
    height: 20px;
    transform: translateX(10px);
  }
  50% {
    width: 30px;
    height: 30px;
    transform: translateX(30px);
  }
  100% {
    width: 20px;
    height: 20px;
    transform: translateX(10px);
  }
}
.content .arrow .pointer span {
  transform: rotate(45deg);
  width: inherit;
  height: inherit;
  position: absolute;
}
.content .arrow .pointer span:before, .content .arrow .pointer span:after {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, #EFB76C, #D56D6E);
  border-radius: 10px;
}
.content .arrow .pointer span:before {
  width: 100%;
  height: 6px;
  top: 0;
}
.content .arrow .pointer span:after {
  width: 6px;
  height: 100%;
  right: 0;
}
.content .arrow .handle {
  width: 50px;
  height: 6px;
  position: absolute;
  background-color: #EFB76C;
  border-radius: 10px;
  transform: translateX(-10px);
  animation: handle 2s ease infinite both;
  z-index: -1;
}
@keyframes handle {
  0% {
    width: 0px;
    transform: translateX(0px);
  }
  50% {
    width: 50px;
    transform: translateX(20px);
  }
  100% {
    width: 0px;
    transform: translateX(0px);
  }
}
.content .arrow:nth-child(2) {
  animation-delay: 1s;
}
.content .arrow:nth-child(2) .pointer span:before, .content .arrow:nth-child(2) .pointer span:after {
  background: linear-gradient(45deg, #D56D6E, #EFB76C);
}
.content .arrow:nth-child(2) .handle {
  background-color: #D56D6E;
}

.main2 {
  position: inherit;
    width: 100%;
    height: 900px;
    background-size: cover;
}

/**/
.human {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 2.5vmax;
  left: 27.5%;
  width: 21vmax;
  height: 30vmax;
  z-index: 1000;
}
.human__head {
  position: relative;
  display: flex;
  justify-content: center;
  width: 25%;
  height: 6vmax;
  z-index: 6000;
}
.human__head::before {
  content: "";
  position: absolute;
  width: 0.2vmax;
  height: 0.4vmax;
  bottom: 13%;
  border-radius: 50%;
  background-color: #2E2250;
  z-index: 2000;
}
.human__hair-b {
  position: absolute;
  top: -4%;
  width: 7vmax;
  height: 6vmax;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  background-color: #2E2250;
}
.human__hair-b::before, .human__hair-b::after {
  content: "";
  position: absolute;
  width: 7vmax;
  height: 7vmax;
  border-top-left-radius: 40%;
  border-top-right-radius: 40%;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  background-color: #2E2250;
  border-left: 1vmax solid #423352;
  animation: hair 1s infinite alternate;
}
.human__hair-b::before {
  transform: rotateZ(-20deg);
}
.human__hair-b::after {
  transform: rotateZ(20deg);
}
.human__hair-c {
  position: absolute;
  top: -5%;
  z-index: -1;
  width: 110%;
  height: 1.5vmax;
  overflow: hidden;
  border-radius: 50%;
}
.human__hair {
  width: 100%;
  height: 3vmax;
  background-color: #2E2250;
  border-radius: 50%;
}
.human__face {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 7%;
  height: 90%;
  width: 65%;
  border-radius: 45%;
  background-color: #FFC4C5;
  border-bottom: 0.6vmax solid #2E2250;
  border-left: 0.15vmax solid #2E2250;
  border-right: 0.15vmax solid #2E2250;
}
.human__eye-l, .human__eye-r {
  position: absolute;
  top: 45%;
  width: 0.3vmax;
  height: 0.5vmax;
  background-color: #2E2250;
  border-radius: 50%;
  animation: eye 4s infinite alternate;
}
.human__eye-l {
  left: 22%;
}
.human__eye-r {
  right: 22%;
}
.human__nose {
  position: absolute;
  width: 0.5vmax;
  height: 1.5vmax;
  bottom: 20%;
  border-radius: 50%;
  background-color: #FFA0A5;
}
.human__cheeks-l, .human__cheeks-r {
  position: absolute;
  bottom: 8%;
  width: 0.8vmax;
  height: 0.9vmax;
  background-color: #FFB1B4;
  border-radius: 50%;
}
.human__cheeks-l {
  left: 10%;
}
.human__cheeks-r {
  right: 10%;
}
.human__mouth {
  position: absolute;
  bottom: 10%;
  width: 0.8vmax;
  height: 1vmax;
  border-bottom: 0.15vmax solid #600004;
  border-radius: 50%;
}
.human__eyebrow-l, .human__eyebrow-r {
  position: absolute;
  top: 30%;
  width: 1vmax;
  height: 0.8vmax;
  border-top: 0.15vmax solid #2E2250;
  border-radius: 50%;
}
.human__eyebrow-l {
  left: 10%;
}
.human__eyebrow-r {
  right: 10%;
}
.human__ears {
  position: absolute;
  justify-content: space-between;
  top: 8%;
  width: 21%;
}
.human__ear-l, .human__ear-r {
  position: absolute;
  top: 30%;
  width: 1vmax;
  height: 1vmax;
  border-radius: 50%;
  background-color: #FFA0A5;
}
.human__ear-l {
  left: 0%;
}
.human__ear-r {
  right: 0%;
}
.human__body-c {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 17%;
  width: 100%;
  height: 11vmax;
  overflow: hidden;
  z-index: -1;
}
.human__body {
  position: relative;
  display: flex;
  justify-content: center;
  width: 96%;
  height: 22vmax;
  border-radius: 50%;
  border-left: 0.9vmax solid #FF9B5A;
  border-right: 1vmax solid #FF4624;
  background: linear-gradient(135deg, #FF4624 25%, transparent 25%) -1vmax 0, linear-gradient(225deg, #FF4624 25%, transparent 25%) -1vmax 0, linear-gradient(315deg, #FF4624 25%, transparent 25%), linear-gradient(45deg, #FF4624 25%, transparent 25%);
  background-size: 2vmax 2vmax;
  background-color: #FF552E;
  overflow: hidden;
}
.human__body::before {
  content: "";
  position: absolute;
  top: -2vmax;
  width: 4vmax;
  height: 4vmax;
  border-radius: 50%;
  background-color: #FFC4C5;
  border: 0.5vmax solid #FF371B;
}
.human__arm-l, .human__arm-r {
  position: absolute;
  bottom: 48%;
  width: 10vmax;
  height: 2.7vmax;
  background-color: #FFC4C5;
  z-index: 2000;
}
.human__arm-l {
  left: 0;
  border-right: 4vmax solid #FFB1B4;
  border-bottom: 0.7vmax solid #FFB1B4;
  border-radius: 2vmax;
  animation: arm-l 1s ease infinite alternate;
}
.human__arm-r {
  right: 2vmax;
  width: 2.25vmax;
  height: 1.5vmax;
  background-color: #dae4ed;
  border-top-left-radius: 2vmax;
  border-top-right-radius: 2vmax;
  animation: eye 2s infinite alternate;
}
.human__arm-r::before {
  content: "";
  position: absolute;
  width: 3.25vmax;
  height: 2vmax;
  background-color: #FFB1B4;
  bottom: 0;
  left: 0.5vmax;
  border-bottom: 0.7vmax solid #FFB1B4;
  border-top-left-radius: 2vmax;
  border-top-right-radius: 2vmax;
}
.human__legs {
  position: absolute;
  bottom: 1.3vmax;
  width: 100%;
  height: 10vmax;
  overflow: hidden;
}
.human__leg-l, .human__leg-r {
  position: absolute;
  bottom: -2vmax;
  width: 4.5vmax;
  height: 130%;
}
.human__leg-l {
  left: 3.3vmax;
  transform: rotateZ(-20deg);
  background-image: linear-gradient(80deg, transparent, transparent 35%, #001682 35%, #001682 40%, #001164 40%, #001164 90%);
  border-right: 0.5vmax solid #010a2a;
}
.human__leg-r {
  right: 3.3vmax;
  transform: rotateZ(20deg);
  background-image: linear-gradient(-80deg, transparent, transparent 35%, #001682 35%, #001682 40%, #001164 40%, #001164 90%);
  border-left: 0.5vmax solid #010a2a;
}
.human__shoes {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 45%;
  height: 2vmax;
}
.human__shoe-c {
  bottom: 0;
  height: 1.8vmax;
  width: 4.2vmax;
  overflow: hidden;
}
.human__shoe-c:nth-of-type(1) {
  animation: shoe-l 0.125s ease infinite alternate;
}
.human__shoe-l, .human__shoe-r {
  position: relative;
  height: 200%;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2B165D;
}
.human__shoe-l::before, .human__shoe-r::before {
  content: "";
  position: absolute;
  width: 2.5vmax;
  height: 2vmax;
  top: -10%;
  background-color: #351C77;
  border-radius: 50%;
}
.human__shoe-l::before {
  left: -15%;
}
.human__shoe-r::before {
  right: -15%;
}

/*==================*/
.table {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  width: 33vmax;
  height: 15vmax;
  bottom: 2vmax;
  left: 7vmax;
  z-index: 1000;
}
.table__top {
  width: 100%;
  height: 1vmax;
  border-top: 0.1vmax solid #FFDC97;
  background-color: #2764cc;
}
.table__bottom {
  width: 95%;
  height: 2.5vmax;
  border-top: 0.75vmax solid #001164;
  background-color: #001B7A;
}
.table__legs {
  position: relative;
  display: flex;
  width: 90%;
  height: 11vmax;
}
.table__leg {
  position: absolute;
  top: 0;
  width: 0.6vmax;
  height: 100%;
  border-top: 0.75vmax solid #001164;
  background-color: #001B7A;
}
.table__leg:nth-of-type(1) {
  left: 1%;
}
.table__leg:nth-of-type(2) {
  left: 9%;
}
.table__leg:nth-of-type(3) {
  left: 88%;
}
.table__leg:nth-of-type(4) {
  left: 96%;
}

/*==================*/
.laptop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -6.1vmax;
  left: 13vmax;
  width: 11vmax;
  height: 6vmax;
  background-color: #dae4ed;
  border-top: 0.2vmax solid #FFDC97;
  border-left: 0.2vmax solid #FFDC97;
  overflow: hidden;
}
.laptop::before {
  content: "";
  position: absolute;
  height: 1vmax;
  width: 1vmax;
  border-radius: 50%;
  background-color: #dae4ed;
  z-index: 100;
}
.laptop::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -40%;
  height: 300%;
  width: 300%;
  border-radius: 50%;
  background-color: #FFFFFF;
}

/*==================*/
.cup {
  position: absolute;
  top: -2.6vmax;
  left: 5vmax;
  width: 2vmax;
  height: 2.5vmax;
  background-image: linear-gradient(to bottom, #008C9A, #008C9A 10%, #04798c 10%, #04798c 20%, #008C9A 20%, #008C9A 80%, #04798c 80%, #04798c 90%, #008C9A 90%);
}
.cup::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-135deg, rgba(255, 220, 151, 0.5), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.cup::after {
  content: "";
  position: absolute;
  right: -0.7vmax;
  top: 0.25vmax;
  width: 0.9vmax;
  height: 1.5vmax;
  border-top: 0.2vmax solid #04798c;
  border-bottom: 0.2vmax solid #008C9A;
  border-right: 0.2vmax solid #008C9A;
  border-left: 0.2vmax solid transparent;
  border-radius: 45%;
  z-index: -1;
}

/*==================*/
.chair {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  width: 12vmax;
  height: 14vmax;
  bottom: 2vmax;
  left: calc(50% - 8vmax);
}
.chair__top {
  position: relative;
  width: 100%;
  height: 5vmax;
  border-bottom: 0.7vmax solid #005788;
  background-color: #010109;
}
.chair__top::before {
  content: "";
  position: absolute;
  bottom: 0.1vmax;
  right: 0;
  width: 80%;
  height: 35%;
  border-radius: 100% 0% 100% 0%/82% 100% 0% 18%;
  background-color: #010a2a;
}
.chair__line {
  width: 0.7vmax;
  height: 7.2vmax;
  border-top: 0.7vmax solid #00467F;
  border-left: 0.15vmax solid #005788;
  border-right: 0.15vmax solid #005788;
  background-image: repeating-linear-gradient(to bottom, #005788, #005788 4%, #00467F 4%, #00467F 6%);
}
.chair__base {
  position: relative;
  width: 100%;
  height: 0.7vmax;
  border-bottom: 0.2vmax solid #00467F;
  background-color: #005788;
}
.chair__wheels {
  position: absolute;
  bottom: 1vmax;
  width: 100%;
  height: 0.7vmax;
  z-index: -1;
}
.chair__wheel {
  position: absolute;
  height: 0.8vmax;
  width: 0.8vmax;
  top: 0.4vmax;
  border-radius: 50%;
  background-color: #001164;
}
.chair__wheel:nth-of-type(1) {
  left: 0.4vmax;
}
.chair__wheel:nth-of-type(2) {
  right: 0.4vmax;
}

/*==================*/
.trashcan {
  position: absolute;
  width: 3.5vmax;
  height: 6vmax;
  bottom: 2.5vmax;
  left: 13.5vmax;
  background-image: repeating-linear-gradient(to bottom, #010a2a 0vmax, #010a2a 0.4vmax, #001164 0.4vmax, #001164 0.45vmax);
  transform: perspective(350px) rotateX(-40deg);
  transform-origin: bottom center;
}
.trashcan::before {
  content: "";
  position: absolute;
  left: calc(0% - .2vmax);
  width: 115%;
  height: 0.2vmax;
  background-color: #001682;
}

/*==================*/
.window {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2.5vmax;
  right: 2.5vmax;
  width: 23.5vmax;
  height: 28vmax;
  border: 0.1vmax solid #001164;
}
.window__container {
  width: 98%;
  height: 98%;
  border: 0.2vmax solid #0F1316;
  background-image: linear-gradient(-45deg, #010109, #010516);
  box-shadow: inset -0.1vmax -0.1vmax 0 #FFDC97;
}
.window__container::before {
  content: "";
  position: absolute;
  top: 30%;
  width: 100%;
  height: 0.5vmax;
  background-color: #0F1316;
}
.window__container::after {
  content: "";
  position: absolute;
  left: calc(50% - .25vmax);
  height: 100%;
  width: 0.5vmax;
  background-color: #0F1316;
}

.building {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 0.1vmax;
  right: 0.1vmax;
  width: 20%;
  height: 40%;
  padding: 0.75vmax 0.3vmax;
  border-top: 0.1vmax solid #0d0900;
  z-index: -1;
  overflow: hidden;
}
.building__window, .building__window-f {
  height: 1.5vmax;
  width: 0.75vmax;
  margin: 0.45vmax;
  border-top-left-radius: 40%;
  border-top-right-radius: 40%;
  background-color: #010a2a;
  border-bottom: 0.15vmax solid black;
  border-left: 0.15vmax solid black;
}
.building__window--active, .building__window-f--active {
  background-color: black;
}
.building__window-f {
  width: 39%;
  border-radius: 0;
  height: 1vmax;
}
.building__window-on-1 {
  animation: win 20s infinite alternate;
}
.building__window-on-2 {
  animation: win 12s infinite alternate;
}
.building__window-on-3 {
  animation: win 10s infinite alternate;
}
.building__window-on-4 {
  animation: win 15s infinite alternate;
}
.building:nth-of-type(1) {
  right: 0.1vmax;
  width: 25%;
  height: 65%;
  background-color: #020212;
}
.building:nth-of-type(2) {
  left: 15%;
  width: 36%;
  height: 30%;
  background-color: #020212;
}
.building:nth-of-type(3) {
  left: 40%;
  width: 40%;
  height: 50%;
  z-index: -2;
  background-color: #010109;
}
.building:nth-of-type(4) {
  left: 5%;
  width: 40%;
  height: 60%;
  background-color: black;
  z-index: -3;
}

/*==================*/
.lamp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2vmax;
  left: 15vmax;
  width: 5vmax;
  height: 12vmax;
  animation: lamp 1s ease infinite alternate;
}
.lamp::before {
  content: "";
  position: absolute;
  width: 1vmax;
  height: 1vmax;
  left: calc(50% - .5vmax);
  bottom: 0;
  border-radius: 50%;
  background-color: #FFDC97;
}
.lamp__top {
  position: relative;
  display: flex;
  justify-content: center;
  width: 0.25vmax;
  height: 70%;
  background-color: #001164;
}
.lamp__light {
  position: absolute;
  width: 5vmax;
  height: 15vmax;
  bottom: -17.5vmax;
  background-image: linear-gradient(to bottom, rgba(255, 220, 151, 0.0075), rgba(255, 220, 151, 0.025));
  z-index: 4000;
  animation: light 4s ease infinite alternate;
}
.lamp__light::before, .lamp__light::after {
  content: "";
  position: absolute;
  width: 4vmax;
  height: 16vmax;
}
.lamp__light::before {
  top: -1vmax;
  right: 2vmax;
  transform: rotateZ(10deg);
  background-image: linear-gradient(to right, rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.lamp__light::after {
  top: -1vmax;
  left: 2vmax;
  transform: rotateZ(-10deg);
  background-image: linear-gradient(to left, rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0.1), rgba(255, 220, 151, 0));
}
.lamp__base-c {
  position: relative;
  width: 100%;
  height: 2.5vmax;
  overflow: hidden;
  border-bottom: 0.1vmax solid #FFDC97;
  padding-bottom: 1vmax;
}
.lamp__base {
  position: relative;
  width: 100%;
  height: 5vmax;
  border-radius: 50%;
  background-color: #001B7A;
  border-right: 1vmax solid #001164;
}

/*==================*/
.bricks {
  position: absolute;
  width: 100%;
  height: 100%;
}

.brick {
  position: absolute;
  width: 10vmax;
  height: 6vmax;
  top: 10%;
  left: 25%;
  z-index: -1;
  background-image: repeating-linear-gradient(to bottom, #001164, #001164 0.1vmax, transparent 0.1vmax, transparent 2vmax);
  opacity: 0.75;
}
.brick:nth-of-type(2) {
  top: 75%;
  left: 75%;
}
.brick::before, .brick::after {
  content: "";
  position: absolute;
  height: 2vmax;
  width: 0.1vmax;
  background-color: #001164;
  left: 25%;
}
.brick::after {
  left: 50%;
  bottom: 2vmax;
}

/**********************/
/**********************/
/**********************/
@keyframes lamp {
  0% {
    transform: rotate(-1deg);
    transform-origin: top center;
  }
  100% {
    transform: rotate(1deg);
    transform-origin: top center;
  }
}
@keyframes light {
  0%, 70%, 72%, 100% {
    opacity: 1;
  }
  71% {
    opacity: 0.6;
  }
}
@keyframes eye {
  0%, 10%, 50%, 90%, 100% {
    transform: translateX(-0.1vmax);
  }
  30%, 60% {
    transform: translateX(0.1vmax);
  }
}
@keyframes hair {
  0% {
    border-left: 1vmax solid #423352;
  }
  100% {
    border-left: 0.9vmax solid #423352;
  }
}
@keyframes arm-l {
  0%, 45%, 60%, 80% {
    transform: rotateZ(0deg);
    transform-origin: bottom left;
  }
  50%, 100% {
    transform: rotateZ(-3deg);
    transform-origin: bottom left;
  }
}
@keyframes shoe-l {
  0% {
    transform: rotateZ(0deg);
    transform-origin: bottom right;
  }
  100% {
    transform: rotateZ(5deg);
    transform-origin: bottom right;
  }
}
@keyframes win {
  0%, 50%, 91% {
    background-color: black;
  }
  60%, 90% {
    background-color: #241a3e;
  }
}

/*   carousel ///////////////////////////////////////////////////////////////  */

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  height: 500px;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
}
.carousel-control-prev {
    left: 0;
}

.carousel-control-prev.up-down {
    right: 0;
    left: unset;
    top: 10px;
    bottom: unset;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 12%;
}

.carousel-inner,.carousel,.carousel-item,.fill {
    /*height:100%;*/
    min-height:400px;
    width:100%;
    background-position:center center;
    background-size:cover;
}

/*------------------------------ vertical bootstrap slider----------------------------*/
.carousel-inner .carousel-item-next.carousel-item-left,
.carousel-inner .carousel-item-prev.carousel-item-right ,
.carousel-inner > .carousel-item.active{
    transform:translate3d(0,0,0); -webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0); -moz-transform:translate3d(0,0,0); -o-transform:translate3d(0,0,0); top:0;
    
}
.carousel-inner .carousel-item-next,
.carousel-inner .active.carousel-item-right { 
    transform:translate3d(0, 100%, 0); -webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0); -moz-transform:translate3d(0, 100%, 0); -o-transform:translate3d(0, 100%, 0); top:0;
    
}
.carousel-inner .carousel-item-prev,
.carousel-inner .active.carousel-item-left { 
    transform:translate3d(0,-100%, 0); -webkit-transform:translate3d(0,-100%, 0);-ms-transform:translate3d(0,-100%, 0); -moz-transform:translate3d(0,-100%, 0); -o-transform:translate3d(0,-100%, 0); top:0;
    
}
/*------------------------------- vertical carousel indicators ------------------------------*/
.carousel-indicators{
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
    height:20px;
    right:10px;
    left:auto;
    width:auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.carousel-indicators li{
    display:block; margin-top:5px; border:1px solid #00a199; 
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.carousel-indicators li.active{
    margin-bottom:5px; background:#00a199;
    
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 4rem;
    height: 4rem;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-control-prev.up-down {
    right: 0;
    left: unset;
    top: 10px;
    bottom: unset;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 12%;
}
.carousel-control-next.up-down {
    top: unset;
    bottom: 10px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 12%;"
}

.carousel-indicators {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
    width: auto;
    display: block;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    transform: unset;
    right: 35px;
}
@media (max-width: 1500px){
    .carousel-indicators {
        right: 32px;
    }
}
@media (max-width: 1350px){
    .carousel-indicators {
        right: 26px;
    }
}
@media (max-width: 1200px){
    .carousel-indicators {
        right: 22px;
    }
}
@media (max-width: 1050px){
    .carousel-indicators {
        right: 18px;
    }
}

@media (max-width: 900px){
    .carousel-indicators {
        right: 13px;
    }
}
@media (max-width: 800px){
    .carousel-indicators {
        right: 34px;
    }
}
@media (max-width: 700px){
    .carousel-indicators {
        right: 28px;
    }
}
@media (max-width: 600px){
    .carousel-indicators {
        right: 20px;
    }
}
@media (max-width: 500px){
    .carousel-indicators {
        right: 15px;
    }
}
@media (max-width: 400px){
    .carousel-indicators {
        right: 8px;
    }
}
@media (max-width: 300px){
    .carousel-indicators {
        right: 4px;
    }
}
@media (max-width: 250px){
    .carousel-indicators {
        right: 0px;
    }
}
@media (max-height: 900px){
    .page-header {
        height: 15vh;
    }
}
@media (max-height: 643px){
    .carousel-indicators {
        right: 3.5%;
    }
}
@media (max-height: 600px){
    .page-header {
        height: 20vh;
    }
}

/*menu and hero */
@import url('https://fonts.googleapis.com/css?family=Raleway');
.hero-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
    background-image: url("https://image.admin.solutions/sa/0694191c-93ac-4c09-afc0-7118412b845e/0351a649-fc37-44c3-96cf-79da687eeece/8830abcb-924f-42c8-8eca-b58ee3fef2c4");
}
.navbar {
    overflow: hidden;
    position: fixed;
    width: 100%;
    z-index: 1;
}
.navbar-toggler-bar {
    background: #275f90;
}
.navbar-toggler-bar {
    display: block;
    position: relative;
    width: 24px;
    height: 1px;
    border-radius: 1px;
    margin: 7px auto;
}
 a {
  color: #000000;
}
.maint1 {
    display: none;
  }
.main.active {
    height: 900px;
}
.franks {
    font-size: 70px;
}
@media (min-width: 768px) {
  .maint1 {
    display: block;
  }
  .maint0 {
    display: none;
  }
}
@media (max-width: 1000px) {
  .franks {
    font-size: 60px;
    margin-bottom: 5px;
  }
}
@media (max-width: 500px) {
  .franks {
    font-size: 40px;
  }
}
@media (max-width: 1250px) {
  .main.active {
      height: 600px;
  }
}