html,
body {
    overflow-x: hidden;
}

.vehicul-wrapper {
    position: relative;
    top: 70vh;
    margin: 10px;
}

.vehicul-wrapper .main-title h1 {
    color: white;
}

.vehicul-wrapper .main-title h3 {
    color: rgba(255, 255, 255, 0.699);
    font-weight: 100;
    margin-bottom: 20px;
}











@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

.slide-in-left {
  animation: slideInFromLeft 0.5s ease-out;
}

.slide-in-right {
  animation: slideInFromRight 0.5s ease-out;
}

.scale-in {
  animation: scaleIn 0.5s ease-out;
}