.service-box {
  background-color: #003168;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 250px;
}

@keyframes title-animation-hover {
  to {
    transform: translateY(-20px);
  }
}

@keyframes box-hover {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.service-box {
  position: relative;
}

.service-box .content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #003168;
  border-radius: 20px;
  color: #ffffff;
  padding: 20px;
  opacity: 0;
  z-index: 1;
  transform: scale(0.5);
  transform-origin: bottom right;
  animation: title-animation-hover 1.5s forwards;
}

.service-box:hover .content {
  opacity: 1;
  animation: box-hover 0.5s forwards;
  overflow: hidden;
}

.service-box .content p {
  margin-bottom: 10px;
}

.service-box .content a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.service-link {
  position: absolute;
  bottom: 20px;
  right: 10px;
  border-radius: 50%;
  background: #fff;
  color: grey !important;
  width: 35px;
  height: 35px;
  font-size: 25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-weight: normal !important;
}

#transport-services {
  background-color: #f6f6f6;
  padding: 3rem 0 5rem;
}

#transport-services .col-md-3 {
  margin: 0.5rem 0;
  padding: 1.5rem;
}

.transport-box {
  display: flex;
  flex-direction: column;
}

.transport-box p:nth-child(1) {
  color: #003164;
  font-weight: bold;
}

.transport-slider .slick-slide {
  min-height: 600px;
}

.transport-slider .slick-next::before,
.transport-slider .slick-prev::before {
  color: #d6b51e !important;
  font-size: 30px;
}

.transport-link {
  color: #fff !important;
  background: #003164;
  width: 100%;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  max-width: 160px;
  position: absolute;
}

.transport-box .service-link {
  right: 10px;
  bottom: 7px;
  width: 20px;
  height: 20px;
  font-size: 18px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff !important;
}

.help a {
  color: #003164 !important;
}

.help .service-link {
  position: static;
  width: 20px;
  height: 20px;
  font-size: 18px;
  background: #fff;
  border: 1px solid #003164;
  color: #003164 !important;
}

.help {
  align-items: center;
  padding-bottom: 1rem;
}

.help div {
  color: #003164;
}

.transport-slider img {
  margin: 1.2rem 0;
}

.transport-slider .content {
  position: absolute;
  bottom: 50px;
}

@media screen and (max-width:1024px) {
  .col-md-3 {
    margin: 2rem 0;
  }
}