/* =========== Founder Message ===========
========================================= */
.founder-message .container .content {
  position: relative;
  padding: 16px;
  padding-top: 32px;
  border-radius: 16px;
  border: solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.founder-message .container .content p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 24px;
  margin-bottom: 10px;
}

.founder-message .container .content::before {
  border: solid var(--secondary-color);
  border-radius: 12px 12px 12px 24px;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 6px;
  left: -12px;
}

.founder-message .container .founder-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-message .container .founder-info .founder-img {
  max-width: 395px;
  height: 409px;
  box-shadow: 0 8px 28px 0 rgba(20, 20, 48, 0.1);
  border-radius: 16px;
}

.founder-message .container .founder-info .founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}

.founder-message .container .founder-info h3 {
  font-size: 32px;
  color: var(--secondary-color);
}

.founder-message .container .founder-info span {
  color: var(--text-color);
}

.founder-message .container .message {
  position: relative;
  flex: 1;
  padding: 16px;
}

.founder-message .container .message::before {
  z-index: 10;
  content: '';
  position: absolute;
  top: -60px;
  right: 0;
  max-width: 150px;
  width: 100%;
  height: 125px;
  background: url('./../images/icons/quote-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
[dir="rtl"] .founder-message .container .message::before
{
    right: unset;
    left: 0;
}
