.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.link {
  text-align: center;
  padding: 0.6rem 0;
}

.link:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.6rem 5vmin;
  border: solid 2px white;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.1s;
  width: fit-content;
}

.btn:hover {
  color: black;
  background-color: white;
  text-decoration: none;
}

.btn-purple {
  background-color: #723bd9;
  padding: 0.7rem 5vmin;
  color: white;
}

.btn-purple:hover {
  background-color: #723bd999;
  color: white;

  border-radius: 999px;
  text-decoration: none;
}

.btn-margin {
  margin-top: 30px;
}

.container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 5vw;
  overflow: hidden;
}

.container-wide {
  max-width: 1300px;
}

.row-container {
  margin: 0 !important;
}

.ad {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto 32px auto;
  height: fit-content;
  max-width: 275px;
  padding: 32px 16px;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lander-ad {
  position: relative;
  display: flex;
  flex-direction: row;
  height: fit-content;
  max-width: 340px;
  margin: 16px 0;
  padding: 16px 16px;
  background-color: white;
  color: black;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.background-customer {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center 100%;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);

  background-image: url('assets/taksari-background.jpg');
}

.background-driver {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center 100%;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);

  background-image: url('assets/bg_driver.jpg');
}

.slide-fade-in {
  opacity: 0;
  -webkit-animation: slide-fadein 1s ease-out forwards;
  animation: slide-fadein 1s ease-out forwards;
}

.slide-fade-in2 {
  opacity: 0;
  -webkit-animation: slide-fadein 1s ease-out 0.3s forwards;
  animation: slide-fadein 1s ease-out 0.3s forwards;
}

.fade-in {
  opacity: 0;
  -webkit-animation: fadein 1s ease-out 0.3s forwards;
  animation: fadein 1s ease-out 0.3s forwards;
}

/* override element visibility */
.visible {
  opacity: 1 !important;
}

@keyframes slide-fadein {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .background {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 95%);
  }
}
