/* December 2024 */
body {
    font-family: Arial, sans-serif;
  }
  .hero {
    background-color: #f8f9fa;
    background-image: url('/images/FXops-Node-Learning-mobile.png');
    background-color: rgb(24 56 55 / 50%);
    background-blend-mode: multiply; /* to improve contrast for reading light text */
    background-size: cover;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
  }
  /* Desktop screen */
  @media (min-width: 600px) {
    .hero {
        background-image: url('/images/FXops-Node-Learning-desktop.png');
        background-color: rgb(24 56 55 / 50%);
        background-blend-mode: multiply; /* to improve contrast for reading light text */
        height: 100vh;
        vertical-align: middle;
    }

    .benefits ul li {
      text-align: right;
    }
  }
  .hero superscreen {
    font-size: calc(2rem + 2vw);
    font-weight: bolder;
    line-height: 0.9;
    color: white;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: calc(1.375rem + 2vw);
    font-weight: bold;
    color: var(--bs-gray-200);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
  }
  .services .card {
    margin-bottom: 20px;
    background-color: #ddd;
  }
  .benefits {
    background-color: #678bae;
    padding: 30px 0;
    color: white;
    text-align: center;
  }
  .benefits ul {
    list-style: none;
    padding: 0;
  }
  .benefits ul li {
    margin-bottom: 10px;
    text-align: left;
  }
  .benefits img {
    width: 100%;
  }
  .testimonials {
    padding: 30px 0;
  }
  .testimonials .carousel-item {
    font-size: larger;
  }
  .contact-form {
    background-color: #f8f9fa;
    padding: 30px 0;
  }
  .chat-box {
    max-width: 600px;
    margin: 50px auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
  }
  .chat-messages {
    height: 300px;
    overflow-y: scroll;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .chat-input {
    display: flex;
  }
  .chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .chat-input button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
  }
.highlight {
	font-weight: bold;
	color: var(--bs-blue);
}