
  
  .con {
    height: 700px;
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .con img {
    width: 100%;
    height: 500px;
  }
  
  .hero-text {
    width: 80%;
    color: white;
  }
  
  .hero-text h1 {
    font-size: 3.3rem;
    margin-bottom: 12px;
    color: white;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: white;
  }
  
  button {
    padding: 1em 2.1em 1.1em;
    border-radius: 4px;
    margin: 8px;
    border: none;
    background-color: #f53c08;
    color: white;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    text-align: center;
    /* box-shadow: 0em -0.2rem 0em #e2e273 inset; */
    transition: color 3s ease-in-out;
  }
  
  button:hover {
   
    color: black;
   
    cursor: pointer;
  }
  
  /* Media queries */
  
  @media (max-width: 884px) {
    .jan {
      flex-direction: column;
    }
    .hero-text {
      width: 100%;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 678px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  }

  