html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: #FFF;
    font-family: 'Helvetica', 'Segoe UI', Arial, sans-serif;
}

h1,h2,h3,h4,h5,p,ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.jpjindex-container {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: linear-gradient(180deg,#2ec396 0%, #001c45 100%);
    height: 550px;
    margin: 100px 0px;
}

.jpjindex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1200px;
    gap: 40px;
    padding: 20px 50px;
}

.jpjindex-content {
    flex: 1 1 700px;
}

.jpjindex-content h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
     line-height: 1;
}


.jpjindex-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.jpjindex-img-container {
    flex: 1 1 420px;
    min-width: 0;
    overflow: visible;
    position: relative;
    top: 2px;
}

.jpjindex-img-container img {
    max-width: 95%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 900px) {
  .jpjindex-img-container
 {
    display: none;
  }
  .jpjindex-container{
    margin: 0px;
    height: auto;
  }
  .jpjindex{
    max-height: auto;
  }
}