/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar content styling codes */
section {
  padding: 100px 0;
}
.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.about,
.services,
.skills,
.teams,
.contact,
footer {
  font-family: "Poppins", sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: #dc143c;
  padding: 0 5px;
  background: #fff;
  transform: translateX(-50%);
}

/* navbar styling */
.navbar {
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
  margin-top: -2vh;
  height: 13vh;
}
.navbar.sticky {
  padding: 15px 0;
  background: crimson;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-left: -7vw;
}
.navbar .logo a span {
  color: crimson;
  transition: all 0.3s ease;
}
.navbar.sticky .logo a span {
  color: #fff;
}
.navbar .menu {
  margin-right: -7vw;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: crimson;
}
.navbar.sticky .menu li a:hover {
  color: #fff;
}
.coloronhover {
  color: black;
}
/* menu btn styling */
.menu-btn {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: crimson;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-up-btn:hover {
  filter: brightness(90%);
}
/* image changer */
.img1 {
  background-image: url("pexels-albin-berlin-919073.jpg");
  opacity: 0.6;
}
.img3 {
  background-image: url("pexels-hyundai-motor-group-11482358.jpg");
  opacity: 0.6;
}
.img2 {
  background-image: url("dcbel-9CsgW9lReeM-unsplash.jpg");
  opacity: 0.6;
}
.img4 {
  background-image: url("dcbel-GIkbiP5Ud-o-unsplash.jpg");
  opacity: 0.6;
}
#uppersection {
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* home section styling */
#main-section {
  background-image: url("relative z-10 pb-8 bg-drkgray sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32");
}
.home {
  display: flex;
  background: url("images/papaJohn_editor\ \(1\).png") no-repeat center;
  height: 100vh;
  color: #fff;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
}
.home .max-width {
  width: 100%;
  display: flex;
}
.home .max-width .row {
  margin-right: 0;
}
.home .home-content .text-1 {
  font-size: 27px;
}
.home .home-content .text-2 {
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}
.home .home-content .text-3 {
  font-size: 40px;
  margin: 5px 0;
}
.home .home-content .text-3 span {
  color: crimson;
  font-weight: 500;
}
.home .home-content a {
  display: inline-block;
  background: crimson;
  color: #fff;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 20px;
  font-weight: 400;
  border-radius: 6px;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}
.home .home-content a:hover {
  color: crimson;
  background: none;
}
/* contact section styling */
.contact {
  background-color: rgb(11, 11, 11);
  color: white;
}

.contact .contact-content .column {
  width: calc(50% - 30px);
}
.contact .contact-content .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .contact-content .left p {
  text-align: justify;
}
.contact .contact-content .left .icons {
  margin: 10px 0;
}
.contact .contact-content .row {
  display: flex;
  height: 65px;
  align-items: center;
}
.contact .contact-content .row .info {
  margin-left: 30px;
}
.contact .contact-content .row i {
  font-size: 25px;
  color: crimson;
}
.contact .contact-content .info .head {
  font-weight: 500;
}
.contact .contact-content .info .sub-title {
  color: #333;
}
.contact .right form .fields {
  display: flex;
}
.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.contact .right form .textarea {
  height: 80px;
  width: 100%;
}
.contact .right form .name {
  margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3;
}
.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area {
  display: flex;
  align-items: center;
}
.right form .button-area button {
  color: #fff;
  display: block;
  width: 160px !important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: crimson;
  border: 2px solid crimson;
  transition: all 0.3s ease;
}
.column.left {
  margin-top: -5.3vh;
}
.right form .button-area button:hover {
  color: crimson;
  background: none;
}
#leftside {
  margin-left: -6vw;
}
#rightpart {
  margin-right: -6vw;
  color: #000000;
}
#rightpart .text {
  color: #fff;
}
/* footer section styling */
footer {
  background: #111;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
footer span a {
  color: crimson;
  text-decoration: none;
}
footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #111;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .services .serv-content .card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .skills .skills-content .column,
  .contact .contact-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
  #leftside {
    margin-left: 1px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .services .serv-content .card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .about .about-content .right .text,
  .skills .skills-content .left .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }
  .contact .right form .name,
  .contact .right form .email {
    margin: 0;
  }
  .right form .error-box {
    width: 150px;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}
/* Sets header color */
.bg-gray {
  background-color: #e86a6a;
  color: #414141;
  height: 12vh;
}
.bg-drkgray {
  background-color: #040404;
}

.logo {
  color: #ca3e47;
}

.logo-bg {
  background-color: #ca3e47;
}

.logo-text {
  font-size: 35px;
}

body {
  background-color: #313131;
}

/* Modal Styling */
body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Allows logo to transition to its lit up effect when hovering */
.image_off,
#logo-home:hover .image_on {
  display: none;
}
.image_on,
#logo-home:hover .image_off {
  display: block;
}

#nav-container {
  position: relative;
  right: 90%;
  z-index: 100;
  pointer-events: none;
}

.button {
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 70px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #aaa;
  transition: 0.8s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container:focus-within .button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0, 4px, 0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  transform: translate3d(0, -4px, 0) rotate(-45deg);
}

#nav-content {
  margin-top: 70px;
  padding: 20px;
  width: 90%;
  max-width: 150px;
  position: fixed;
  top: 0;
  left: 0;
  height: 390px;
  /* height: calc(100% - 90px); Kept it because found it to be a cool little variant */
  background: #000000;
  pointer-events: auto;
  transform: translateX(-100%);
  transition: transform 1s;
  will-change: transform;
  contain: paint;
  outline: none;
}

#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
}

#nav-content li a {
  /* padding: 10px 5px; */
  display: block;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color 0.5s;
}

#nav-content li a:hover {
  color: #ca3e47;
}

#nav-container:focus-within #nav-content {
  transform: none;
}
#map-container {
  width: 100vw;
  height: 110vh;
  margin-left: -10vw;
  margin-top: -7vh;
}
#map-app {
  height: 100vh;
  width: 100%;
  /* background-color: black; */
}
@media (max-width: 500px) {
  #map-container {
    height: 100vh;
    width: 500px;
  }
}
#preloader {
  background: rgb(17, 17, 17);
  height: 120vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  -webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  -ms-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hidden {
  display: none;
}
/* adding preloader */

#Logo {
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -25%;
  bottom: 0;
  left: -25%;
  margin: auto;
  display: block;
  fill: #aa7f3d;
  fill: url("#MyGradient");
  stroke: #eebe7b;
  stroke-miterlimit: 5;
}

svg {
  transform: scale(0.5);
}

path {
  fill-opacity: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration: 1;
  animation-name: DrawLine, FadeStroke, FillIn;
  animation-duration: 10s, 1s, 1s;
  animation-delay: 0s, 2.5s, 2.5s;
  stroke: white;
  stroke-width: 1;
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
}

/*#Draw-Mark {
  stroke-dashArray: 1100;
  stroke-dashoffset: 1100; 
}

#Draw-Frame { 
  animation-delay: 1s, 3.5s, 3.5s;
  animation-duration: 3.5s, 1s, 1s; 
  stroke-dashArray: 1500;
  stroke-dashoffset: 1500;
}

#Draw-Text { 
  animation-delay: 2s, 3.5s, 3.5s; 
  animation-duration: 2s, 1s, 1s; 
  stroke-dashArray: 300;
  stroke-dashoffset: 300;
  //animation-duration: 4s;
}*/

@keyframes DrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes FadeStroke {
  to {
    stroke-opacity: 0;
  }
}

@keyframes FillIn {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
  }
}
.active_nava {
  background-color: #212020;
  color: white;
}
/* graphical data set */
.graphical-data {
  height: 700px;
  width: 100vw;
  background-color: #0000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#seemoregraph {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 290vh;
  left: 75vw;
  z-index: 120;
  color: #fff;
  font-size: 1.5vw;
  font-family: sans-serif;
  transition: all 0.3s ease;
}
#seemoregraph:hover {
  color: #6ce5e8;
  font-size: 1.7vw;
}
body {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: black;
  background-image: linear-gradient(to top, #0f1215 35%, black 35%);
}
#cybertruck {
  width: 650px;
  height: 210px;
  position: absolute;
  left: 50%;
  bottom: calc(35% - 30px);
  margin-left: -265px;
  background-repeat: no-repeat;
  background-image: linear-gradient(161deg, transparent 11%, #1d232a 11.5%),
    linear-gradient(161deg, transparent 50%, #555 50%),
    linear-gradient(to right, #1d232a, #1d232a),
    radial-gradient(circle at center, #ff0 8%, #f00 30%, transparent 80%),
    linear-gradient(
      to right,
      transparent,
      rgba(255, 0, 0, 0.6) 30%,
      rgba(255, 0, 0, 0.6) 70%,
      transparent
    ),
    linear-gradient(
      to bottom,
      transparent,
      rgba(255, 0, 0, 0.6) 30%,
      rgba(255, 0, 0, 0.6) 70%,
      transparent
    ),
    radial-gradient(
      circle at center bottom,
      transparent 45%,
      rgba(255, 255, 255, 0.1) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(
      40deg,
      transparent 40%,
      rgba(255, 255, 255, 0.1) 41%,
      rgba(255, 255, 255, 0.1) 44%,
      transparent 45%
    ),
    linear-gradient(
      -40deg,
      transparent 40%,
      rgba(255, 255, 255, 0.1) 41%,
      rgba(255, 255, 255, 0.1) 44%,
      transparent 45%
    ),
    linear-gradient(
      320deg,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 41%,
      rgba(0, 0, 0, 0.7) 44%,
      transparent 45%
    ),
    linear-gradient(
      -320deg,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 41%,
      rgba(0, 0, 0, 0.7) 44%,
      transparent 45%
    ),
    radial-gradient(circle, #0f1215 50%, transparent 50%),
    radial-gradient(
      circle at center top,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    radial-gradient(
      circle at center top,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 50%
    ),
    radial-gradient(
      circle at center bottom,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    radial-gradient(circle, rgba(0, 0, 0, 0.3) 50%, transparent 50%),
    radial-gradient(circle, #1d232a 50%, transparent 50%),
    linear-gradient(70deg, transparent 10%, #4a596b 11%),
    linear-gradient(-60deg, transparent 10%, #4a596b 11%),
    linear-gradient(
      127deg,
      transparent 40%,
      rgba(0, 0, 0, 0.2) 50%,
      #333d49 51%,
      #333d49 62%,
      black 63%
    ),
    linear-gradient(
      -125deg,
      transparent 35%,
      rgba(0, 0, 0, 0.2) 45%,
      #333d49 46%,
      #333d49 57%,
      black 58%
    ),
    linear-gradient(to right, black, black),
    radial-gradient(
      circle at center bottom,
      transparent 45%,
      rgba(255, 255, 255, 0.1) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(
      40deg,
      transparent 40%,
      rgba(255, 255, 255, 0.1) 41%,
      rgba(255, 255, 255, 0.1) 44%,
      transparent 45%
    ),
    linear-gradient(
      -40deg,
      transparent 40%,
      rgba(255, 255, 255, 0.1) 41%,
      rgba(255, 255, 255, 0.1) 44%,
      transparent 45%
    ),
    linear-gradient(
      320deg,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 41%,
      rgba(0, 0, 0, 0.7) 44%,
      transparent 45%
    ),
    linear-gradient(
      -320deg,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 41%,
      rgba(0, 0, 0, 0.7) 44%,
      transparent 45%
    ),
    radial-gradient(circle, #0f1215 50%, transparent 50%),
    radial-gradient(
      circle at center top,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    radial-gradient(
      circle at center top,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 50%
    ),
    radial-gradient(
      circle at center bottom,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50%
    ),
    radial-gradient(circle, rgba(0, 0, 0, 0.3) 50%, transparent 50%),
    radial-gradient(circle, #1d232a 50%, transparent 50%),
    linear-gradient(60deg, transparent 10%, #4a596b 11%),
    linear-gradient(-60deg, transparent 10%, #4a596b 11%),
    linear-gradient(
      127deg,
      transparent 32%,
      rgba(0, 0, 0, 0.2) 42%,
      #333d49 43%,
      #333d49 53%,
      black 54%
    ),
    linear-gradient(
      -125deg,
      transparent 22%,
      rgba(0, 0, 0, 0.2) 32%,
      #1d232a 33%,
      #1d232a 43%,
      black 44%
    ),
    linear-gradient(to right, black, black),
    linear-gradient(
      89deg,
      transparent 50%,
      black 51%,
      black 53%,
      transparent 54%
    ),
    linear-gradient(170deg, transparent 50%, black 50%),
    linear-gradient(
      100deg,
      transparent 50%,
      black 51%,
      black 52%,
      transparent 53%
    ),
    linear-gradient(
      90deg,
      transparent 50%,
      black 51%,
      black 52%,
      transparent 53%
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(98deg, transparent 55%, black 56%),
    linear-gradient(176deg, transparent 32%, #1d232a 33%),
    linear-gradient(179deg, #1d232a 85%, black 86%),
    linear-gradient(
      179deg,
      transparent 40%,
      #1d232a 45%,
      #1d232a 50%,
      transparent 55%
    ),
    linear-gradient(
      105deg,
      transparent 50%,
      #1d232a 51%,
      #1d232a 53%,
      transparent 54%
    ),
    linear-gradient(
      100deg,
      transparent 50%,
      #1d232a 51%,
      #1d232a 53%,
      transparent 54%
    ),
    linear-gradient(
      81deg,
      transparent 50%,
      #1d232a 51%,
      #1d232a 53%,
      transparent 54%
    ),
    linear-gradient(81deg, transparent 38%, black 40%, black 49%, #ddd 51%),
    linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent),
    linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent),
    linear-gradient(161deg, black 50%, #ddd 51%, #ddd 55%, transparent 56%),
    linear-gradient(-174deg, black 33%, #ddd 34%, #ddd 40%, transparent 41%),
    linear-gradient(to right, #ddd, #ddd),
    linear-gradient(
      176deg,
      transparent 34%,
      black 35%,
      black 45%,
      #ddd 46%,
      #ddd 60%,
      transparent 60%
    ),
    linear-gradient(161deg, black 56%, transparent 57%),
    linear-gradient(-174deg, black 41%, transparent 42%),
    linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.05) 31%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(0, 0, 0, 0.6) 41%,
      rgba(0, 0, 0, 0.6) 45%,
      rgba(255, 255, 255, 0.1) 46%,
      rgba(255, 255, 255, 0.1) 55%,
      transparent 56%
    ),
    linear-gradient(
      103deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 31%,
      rgba(255, 255, 255, 0.1) 34%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 0.3) 38%,
      transparent 39%
    ),
    linear-gradient(
      93deg,
      transparent 29%,
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0.2) 33%,
      rgba(255, 255, 255, 0.1) 34%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 51%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.3) 20%,
      rgba(255, 255, 255, 0.3) 21%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0) 65%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.3) 60%,
      rgba(255, 255, 255, 0.7)
    );
  background-size: 20px 45px, 5px 5px, 26px 10px, 12px 12px, 55px 1px, 1px 55px,
    130px 65px, 10px 7px, 16px 16px, 16px 16px, 16px 16px, 16px 16px, 20px 20px,
    24px 12px, 34px 16px, 34px 16px, 90px 90px, 130px 130px, 40px 6px, 40px 6px,
    35px 38px, 40px 51px, 78px 60px, 130px 65px, 10px 7px, 16px 16px, 16px 16px,
    16px 16px, 16px 16px, 20px 20px, 24px 12px, 34px 16px, 34px 16px, 90px 90px,
    130px 130px, 40px 9px, 40px 9px, 60px 58px, 60px 55px, 75px 60px, 30px 80px,
    150px 30px, 30px 80px, 30px 95px, 45px 45px, 20px 120px, 600px 87px,
    500px 50px, 254px 20px, 30px 30px, 30px 30px, 30px 30px, 25px 22px,
    200px 100px, 200px 100px, 230px 80px, 370px 80px, 220px 60px, 550px 50px,
    230px 80px, 370px 80px, 30px 80px, 30px 80px, 30px 80px, 10px 80px, 7px 80px,
    350px 60px;
  background-position: 5px 80px, 0 125px, 0 128px, right 25px top 35px,
    right top 40px, right 30px top 15px, 25px 90px, 85px 123px, 68px 130px,
    96px 130px, 68px 160px, 96px 160px, 80px 145px, 78px 156px, 73px 156px,
    73px 140px, 45px 110px, 25px 90px, 50px 89px, 90px 89px, 20px 89px,
    124px 89px, 52px 89px, 435px 90px, 495px 123px, 478px 130px, 506px 130px,
    478px 160px, 506px 160px, 490px 145px, 488px 156px, 483px 156px, 483px 140px,
    455px 110px, 435px 90px, 460px 78px, 500px 78px, 416px 78px, 512px 78px,
    465px 78px, 150px 70px, 500px 115px, 250px 65px, 380px 55px, 25px 80px,
    right 25px top 15px, 25px 39px, 115px 90px, 165px 145px, 148px 60px,
    257px 52px, 380px 42px, 380px 23px, 25px 0, right 25px top 0, 25px 0,
    right 25px top 0, right 25px top 20px, 50px 29px, 25px 0, right 25px top 0,
    170px 30px, 260px 10px, 277px 10px, 382px 10px, 375px 0, 50px 0;
}
#cybertruck:before,
#cybertruck:after {
  display: block;
  content: "";
  position: absolute;
}
#cybertruck:before {
  width: 200px;
  height: 2px;
  left: -175px;
  top: 83px;
  background-image: linear-gradient(
    to right,
    rgba(0, 255, 255, 0.2),
    rgba(0, 255, 255, 0.8) 60%
  );
  border-top-left-radius: 300px 10px;
  border-bottom-left-radius: 300px 10px;
  box-shadow: -20px 0 10px 2px rgba(0, 255, 255, 0.4),
    30px 0 20px 10px rgba(0, 255, 255, 0.2);
}
#cybertruck:after {
  width: 20px;
  height: 7px;
  left: 5px;
  top: 80px;
  background-color: white;
  border-top-left-radius: 50px 30px;
  box-shadow: 0 0 15px 7px rgba(0, 255, 255, 0.8),
    0 0 40px 25px rgba(0, 255, 255, 0.5),
    -75px 0 30px 15px rgba(0, 255, 255, 0.2);
}
