@import url("accessibility-styles.css");

.iso-wrapper {
    width: 100%;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    
    color: white;
    background-color: var(--c-blue);
}

.iso-wrapper h1 {
    font-size: clamp(1.7rem, 5vw, 3rem);
}

.iso-wrapper h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.iso-wrapper .subtitle, .iso-wrapper .ending {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.iso-wrapper .text h2 {
    text-align: start;
}

.iso-wrapper .text ul li {
    font-size: clamp(0.9rem, 2vw, 1.5rem);
}

.iso-wrapper .bold {
    font-weight: bold;
}

.iso-wrapper .header {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.iso-wrapper h1, .iso-wrapper .subtitle {
    text-align: center;
    width: 80%;
}

.iso-wrapper ul {
    padding-left: 2rem;
}

.iso-wrapper .content {
    width: 96%;
    max-width: 1400px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
}

.iso-wrapper .content .text {
    flex: 1;
    min-width: 300px;
}

.iso-wrapper .content .image {
    flex: 1;
    min-width: 256px;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-wrapper .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iso-wrapper .ending {
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .iso-wrapper .content {
        flex-direction: column;
        align-items: center;
    }

    .iso-wrapper .content .text {
        width: 100%;
    }

    .iso-wrapper .content .image {
        width: 50%;
        height: auto;
    }

    .iso-wrapper .content .image img {
        height: auto;
        object-fit: contain;
    }
}

.footer .container {
    width: 90vw !important;
    max-width: 1750px !important;
  }
