.hr-line {
  border-top: 1px solid transparent;
  background: linear-gradient(black, black) padding-box,
    linear-gradient(90deg, black, black, black) border-box;
}

.loader {
  position: absolute;
  width: 250px;
  height: 250px;
  margin: 0;
  padding: 0;
  top: 10px;
  left: 15px;
  background-color: transparent;
  border: 4px dashed Dodgerblue;
  border-radius: 50%;
  font-weight: bold;
  color: DodgerBlue;
  text-align: center;
}

/* --- Card CSS --- */

.card-3d {
  min-width: 280px;
  max-width: 860px;
  margin: 0 auto;
  background-image: radial-gradient(#404040, black);
  border: 1px solid WhiteSmoke;
  outline: 8px solid #000000;
  border-radius: 15px;
  box-shadow: 0 15px 15px #1C1C1C;
}

.card-3d-body {
  padding: 30px 15px 30px 15px;
  color: Whitesmoke;
}

.card-3d-body hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #fff;
  opacity: 0.25;
}

.card-3d-body p .me-3 {
  margin-right: 1rem!important;
}

.card-3d-title {
  font-size: 24px;
  font-weight: 600;
  text-wrap: balance;
}

.object-3d {
  position: relative;
  width: 280px;
  height: 280px;
  padding: 0;
}

.webgl {
  position: relative;
  transition: all;
  cursor: grab;
}

#webgl-1 {
  filter: drop-shadow(0px 30px 20px Black);
}

#webgl-2 {
  filter: drop-shadow(0px 60px 25px Black);
}

#webgl-3 {
  filter: drop-shadow(0px 50px 35px Black);
}

#webgl-4 {
  filter: drop-shadow(0px 50px 35px Black);
}

dotlottie-player {
  position: relative;
  display: inline-block;
  top: 12px;
  width: 35px;
  height: 35px;
  filter: brightness(80%);
}

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

.animate {
  animation: animate 3s ease-in-out;
}

@keyframes animate {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 100%;
  }
}

/* Quick fix to make loader and model smaller on mobile so that there is space on the side for scrolling down*/

@media screen and (max-width: 383px) {
  .card-3d-title {
    margin-top: 20px;
    text-align: center;
  }
  #webgl-1 {
    width: 180px !important;
    height: 180px !important;
  }
  #webgl-2 {
    width: 200px !important;
    height: 200px !important;
  }
  #webgl-3 {
    width: 200px !important;
    height: 200px !important;
  }
  #webgl-4 {
    width: 200px !important;
    height: 200px !important;
  }
  .object-3d {
   
  }
  .phone-3d {
    margin: 0!important;
    padding: 0!important;
  }
  .loader {
    width: 180px !important;
    height: 180px !important;
    top: -2px;
    left: 2px;
  }
}

#pagination a {
    margin: 5px;
}