.info-tabs {
    background: #66343F;
}

.info-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
}

.info-tabs__tab {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    padding: 14px 24px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.info-tabs__tab:hover,
.info-tabs__tab:focus {
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.info-tabs__tab.is-active {
    border-bottom-color: #FA553D;
    background: #FA553D;
    color: #fff;
}

.info-tabs__panel {
    padding: 10px 0 50px;
}

.info-tabs__panel--process {
    background: #66353F;
    padding-top: 50px;
    padding-bottom: 50px;
}

.info-tabs__panel[hidden] {
    display: none;
}

.info-tabs__panel h2 {
    color: #FA553D;
    text-align: center;
    padding-bottom: 10px;
    font-weight: normal;
}

.info-tabs__panel--process p {
    color: #fff;
}

.info-tabs__panel--process h3 {
    padding-top: 15px;
}

.assembly-text,
.assembly-text2{
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .info-tabs__nav {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 25px 15px 0;
    }

    .info-tabs__tab {
        font-size: 17px;
        padding: 12px 15px;
    }
}
