:root {
  --homebg: #22092c;
  --aboutbg: #232d3f;
  --projectsbg: #005b41;
  --contactbg: #008170;
  --description: rgb(183, 185, 183);
  --calculation: 1;
  --w-column: 200px;
}

* {
  box-sizing: border-box;
}
body {
  background-color: #111010;
}
body::-webkit-scrollbar {
  display: none;
}
.my-journey-container .main-title {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.my-journey-container .main-title h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.my-journey-container .main-title h1 span {
  color: var(--contactbg);
}

.my-journey-container .main-title h1 .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #777676;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 4rem;
}

.my-journey-container .expereinces-container {
  width: 32rem;
  margin: 0rem auto;
  padding: 0rem 1rem;
}

.add-margin {
  padding: 3rem 0rem 1rem 0rem;
}

.my-journey-container .expereinces-container .educational {
  font-weight: lighter;
  line-height: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.my-journey-container .expereinces-container .experience-cover .single {
  font-weight: lighter;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.my-journey-container .expereinces-container .experience-cover .single p {
  line-height: 2rem;
  font-weight: lighter;
}
.my-journey-container .expereinces-container .experience-cover .single h4 {
  color: var(--projectsbg);
  font-size: 1.5;
  font-weight: bolder;
}

.footer-container {
  text-align: center;
}

.footer-container h5 {
  margin: 5rem 0rem 1rem;
  color: var(--projectsbg);
}

.anim {
  opacity: 0;
  transform: translateY(2rem);
  animation: moveup 0.5s linear forwards;
}
@keyframes moveup {
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(3rem);
  transition: all 1s ease;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/*Mobile Responsiveness*/
@media (max-width: 1030px) {
  .my-journey-container .main-title {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 6rem;
  }

  .my-journey-container .main-title h1 {
    position: relative;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
  }

  .my-journey-container .main-title h1 .bg-text {
    font-weight: 800;
    font-size: 4rem;
  }
  .add-margin {
    padding: 0rem 0rem 1rem 0rem;
  }
}

@media (max-width: 500px) {
  .my-journey-container {
    padding: 0rem 1rem;
  }
  .my-journey-container .main-title {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
  }

  .my-journey-container .main-title h1 {
    position: relative;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }

  .my-journey-container .main-title h1 .bg-text {
    font-size: 2.5rem;
  }
  .my-journey-container .expereinces-container {
    width: 100%;
    margin: 0rem;
    padding: 0rem;
  }
}
