.white-text {
  color: white;
  transition-duration: 0.1s;
}

.white-text:hover, .whtie-text:focus, .white-text:active .white-text:focus-visible, .white-text:focus-within {
  color: white !important;
}

body {
  font-family: poppins;
}

.grecaptcha-logo {
  display: none;
}

/* executive page */

.image-container {
  position: relative;
}

.image {
  opacity: 1;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.image-container:hover .image {
  opacity: 0.3;
}

.image-container:hover .middle {
  opacity: 1;
}

.text {
  color: black;
  font-size: 16px;
  padding: 16px 32px;
}

.grow {
  transition: all .4s ease-in-out;
}

.grow:hover {
  transform: scale(1.5)
}