.company-class__description {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.company-class__description a {
  align-self: end;
}

.cruise-logo {
  position: relative;
}

.cruise-logo:hover .frame::before {
  -webkit-transform: rotateX(40deg);
          transform: rotateX(40deg);
}

.cruise-logo:hover h3 {
  color: var(--colorBlueAccent);
}

.cruise-logo:hover span {
  -webkit-transform: translateY(-20px) scale(1.1);
          transform: translateY(-20px) scale(1.1);
}

.cruise-logo .frame {
  position: relative;
  -webkit-perspective: 200px;
          perspective: 200px;
}

.cruise-logo .frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  border: 1px solid var(--colorBlueAccent);
  z-index: -1;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.cruise-logo .logo {
  display: block;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease 0s;
}

.cruise-logo h3 {
  color: var(--colorBlue);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s, color 0.3s;
}