.section-1 {
    padding-top: 3.75rem;
}

.section-1 img {
    display: flex;
    width: auto;
    height: 100%;
    max-width: none;
}

.section-1 .h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--black-text);
}

.section-1 .h1 span {
    color: var(--blue-500);
}

.section-1 h2 {
    width: 80%;
}

.section-1 a {
    width: fit-content;
    margin-top: 1.5rem;
}

/* .section-container.section-1 {
    border-image: linear-gradient(180deg, #F3F3F3 0%, rgba(243, 243, 243, 0.00) 100%) 1;
    border-width: 4px;
    border-style: solid;
} */

.section-1::after {
    content: '';
    background: linear-gradient(180deg, #F3F3F3 0%, rgba(243, 243, 243, 0.00) 100%);
    height: 4rem;
    width: 80%;
    top: 32.5rem;
    position: absolute;
    /* transform: translateY(11.5rem); */
    z-index: -1;
}

.section-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7.5rem;
}

.tab-header {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--neutral-200);
    margin-top: 2.25rem;
}

.tab-header-item {
    display: flex;
    padding: 8px 20px;
    cursor: pointer;
    width: 15.5rem;
    justify-content: center;
    font-size: 20px;
    color: var(--neutral-700);
}

.tab-header input[type="radio"] {
    display: none;
}

.tab-header input[type="radio"]:not(:checked)+label:hover {
    background: var(--white);
}

.tab-header input[type="radio"]:checked+label {
    border-radius: 8px;
    font-weight: 700;
    color: var(--neutral-white);
    background-color: var(--blue-500);
}

.tab-content {
    height: 0;
    visibility: hidden;
    /* overflow: auto; */
    display: none;
    gap: 20px;
    padding-top: 3.125rem;
    padding-bottom: 9.375rem;
    gap: 9.375rem;
}

.panel-tabs {
    /* width: 87%; */
    overflow: auto;
    flex: 1;
}

.tab-header:has(#tab1:checked)~.panel-tabs>.tab-content:nth-of-type(1),
.tab-header:has(#tab2:checked)~.panel-tabs>.tab-content:nth-of-type(2),
.tab-header:has(#tab3:checked)~.panel-tabs>.tab-content:nth-of-type(3) {
    visibility: visible;
    display: flex;
    flex-direction: column;
    height: auto;
}

.section-container__copy {
    gap: 10px;
}

.section-container__copy h1 {
    color: var(--blue-300);
}

.section-container:nth-of-type(3) {
    height: auto;
    background-color: transparent;
}

@media only screen and (max-width: 1650px) {
    .section-1 h2 {
        width: 100%;
    }
}

@media screen and (max-width:1440px) {
    .section-1 {
        gap: 12px;
    }
}

@media screen and (max-width: 1200px) {
    .section-1 {
        gap: 0;
    }

    .section-1 .section-container__copy {
        margin-left: -12px;
    }

    .section-1 .section-container__image img {
        max-height: none;
    }

    .section-1::after {
        width: 90%;
    }
}

@media screen and (max-width:992px) {
    .tab-content {
        gap: 4rem;
    }

    .section-1::after {
        width: 85%;
        transition: 0.5s top;
    }

    .section-1 .section-container__copy {
        width: 80%;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 44rem;
        transition: 0.5s top;
    }
}

@media screen and (max-width:900px) {
    .tab-header {
        flex-direction: column;
    }

    .tab-header-item {
        width: 20rem;
    }

    .section-1::after {
        width: 90%;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 44rem;
    }
}

@media screen and (max-width:720px) {
    .section-1 img {
        width: 32rem;
        height: auto;
    }

    .section-1::after {
        top: 28.9rem;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 40.2rem;
    }
}

@media only screen and (max-width: 576px) {
    .section-1 img {
        width: 28rem;
    }

    .section-1::after {
        top: 25.9rem;
    }

    .tab-header-item {
        width: 15.5rem;
    }

    .section-1 .section-container__copy {
        width: 90%;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 37.4rem;
    }
}

@media only screen and (max-width: 480px) {
    .section-1 img {
        width: 24rem;
    }

    .section-1::after {
        top: 22.9rem;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 34.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .section-1 img {
        width: 22rem;
    }

    .section-1::after {
        top: 21.7rem;
    }

    header:has(input[type='checkbox']:checked)~.section-1::after {
        top: 33.2rem;
    }
}