
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containers {
    display: flex;
    height: auto;
    width: 100%;
}

.image-section {
    width: 50%;
    height: auto;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.content-section {
    width: 50%;
    background-color: #1a2744;
    color: white;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.content {
    display: none;
    height: auto;
    /* margin-top: 50px; */
}

.content.active {
    display: block;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.content p {
    line-height: 1.6;
    color: #e5e5e5;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
}

.nav-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .containers {
        flex-direction: column;
        margin-top: -40vh;
        height: auto;
    }

    .image-section,
    .content-section {
        width: 100%;
    }

    .image-section {
        height: 300px;
    }
}
@media (min-width: 768px) and (max-width:991px) {
  .containers {
      flex-direction: column;
      height: auto;
  }

  .image-section,
  .content-section {
      width: 100%;
  }

  .image-section {
      height: 300px;
  }
}

@media screen and (min-width:991px){
  .content {
    margin-top: 50px;
}
}
