.founder-section {
  margin: 0 auto;
  width: 60em;
  text-align: justify;
  line-height: 25px;
  word-spacing: 1px;
  padding-top: 2em;
  padding-bottom: 4em;
  margin-bottom: 2em;
  display: flex;
}

.founder-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.founder-details {
  /* display: flex;
  align-items: center;
  gap: 1em; */
  float: left;
  margin-right: 1.5em;
}

.founder-image {
  width: 250px;
  height: auto;
  border-radius: 5%;
}

.founder-text {
  flex: 1;
  text-align: justify;
}

.founder-heading {
  text-align: center;
  font-size: xx-large;
  font-weight: bold;
}

.whoAmI-text {
  font-size: x-large;
}

.linkedin-icon {
  max-height: 5vh;
  border-radius: 4px;
  float: right;
}

.founder-name {
  font-size: 25px;
}

.founder-role {
  font-size: 15px;
}

.page-body-risk-founder-button {
  display: inline-block;
  margin-top: 1em;
  background-color: #FFFFFF;
  border-radius: 6px;
  color: #1D1D1F;
  padding: 10px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  z-index: 0;
}

.page-body-risk-founder-button:before {
  content: '';
  background: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: founder-glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.page-body-risk-founder-button:active {
  color: white;
  font-weight: 600;
}

.page-body-risk-founder-button:active:after {
  background: transparent;
}

.page-body-risk-founder-button:hover:before {
  opacity: 1;
}

.page-body-risk-founder-button:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.founder-text {
  margin: 1vh 0;
  /* line-height: 55.87px; */
  line-height: 30px;
  letter-spacing: 1px;
  word-spacing: 1px;
  text-align: justify;
}

@keyframes founder-glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}


@media screen and (max-width:768px) {
  .founder-details {
    float: none;
  }

  .founder-section {
    width: 100%;
  }

  .founder-image {
    width: 100%;
  }

  .whoAmI-text {
    text-align: center;
    margin-top: 4vw;
  }
}