.about-hero-section {
  background-size: cover;
  background-image: linear-gradient(
      90deg,
      rgba(14, 8, 3, 0.1) 0%,
      rgba(54, 16, 3, 0.2) 49%,
      rgba(0, 0, 0, 1) 100%
    ),
    url(../public/forexhero.png);
  object-fit: cover;
  background-repeat: no-repeat;
  min-height: 80vh;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px 0;
}

.__logo {
  width: inherit;
  position: absolute;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.__logo > img {
  margin: auto;
  width: 30%;
  opacity: 0.4;
  animation: bounce 10s ease-out 0s infinite normal none;
}

.typingAnimation {
  font-size: 3em;
  color: white;
  text-transform: uppercase;
}

.typingAnimation > span {
  border-right: 0.05em solid;
  animation: caret 1s steps(1) infinite;
}

#__hover:hover {
  text-decoration: underline;
  transform: translate(50px, 100px);
}

span:hover {
  text-decoration: none !important;
}

#mobile-textContent {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.3px);
  -webkit-backdrop-filter: blur(1.3px);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 5px;
  font-weight: 200;
  margin-top: 10px;
}

.content-card {
  height: 40vh;
  width: 30%;
  background-color: var(--cEmph);
  padding: 10px 10px 30px 10px;
  border-radius: 15px;
  color: var(--whiteHover);
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}

.content-icon {
  height: 2.5rem;
  align-self: flex-start;
  margin-top: 10px;
}

.container {
  -webkit-text-size-adjust: none;
  color: #2a3b4d;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1210px;
  padding: 60px 15px;
}



/* CSS ANIMATIONS */

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

@keyframes bounce {
  0% {
    animation-timing-function: ease-in;
    opacity: 0.25;

    transform: translateY(-45px);
  }

  24% {
    opacity: 0.25;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 0.25;

    transform: translateY(0px);
  }
}

/* sm: "380px",
      md: "668px",
      lg: "1200px",
      xl: "1440px", */

@media only screen and (max-width: 1466px) and (min-width: 1203px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 668px) {
  .about-hero-section {
    height: fit-content;
  }

  .__logo > img {
    width: 65%;
  }

  .typingAnimation {
    font-size: 1.7rem;
    margin-top: 5px;
    text-align: center;
  }

  #mobile-textContent {
    text-align: center;
  }

  .content-card {
    height: fit-content;
    width: 100%;
    background-color: var(--cEmph);
    padding: 10px 10px 30px 10px;
    border-radius: 15px;
    color: var(--whiteHover);
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .content-icon {
    height: 2.5rem;
    align-self: normal;
    margin-top: 10px;
  }
}

@media screen and (max-width: 380px) {
}
