section.tabs > .boxed > .intro {
    width: 1000px;
    max-width: 100%;
}

section.tabs > .boxed > .intro h2 {
    font-family: Ubuntu-400, Arial, sans-serif;
}

section.tabs > .boxed > .tabs-container {
    display: flex;
    margin-top: 84px;
    gap: 40px;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar {
    flex: 0 0 480px;
    max-width: 100%;
    font-size: 24px;
    color: #8B2C84;
    line-height: 36px;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters {
    position: relative;
    width: calc(71px * 2 + 12px);
    max-width: 100%;
    margin: 110px auto 0;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > h3 {
    margin-top: calc(300px + 110px + 40px);
    margin-bottom: 6px;
    font-family: Ubuntu-400, Arial, sans-serif;
    color: var(--true-black);
    font-size: 24px;
    text-align: center;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > p {
    font-size: 16px;
    color: #180F33;
    text-align: center;
    line-height: 26px;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-body > .tab-body p {
    font-size: 16px;
    color: #180F33;
    line-height: 26px;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .connectivity-pillar {
    position: absolute;
    top: calc(71px - 6px);
    left: calc(71px - 6px);
    display: block;
    width: 24px;
    height: 240px;
    content: '';
    background-image: url('assets/img/connectivity-pillar.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 240px;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .connectivity-booster {
    position: absolute;
    display: block;
    width: 71px;
    height: 71px;
    content: '';
    background-image: url('assets/img/tab-inactive.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 71px 71px;
    cursor: pointer;
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .connectivity-booster.active,
section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .connectivity-booster:hover {
    background-image: url('assets/img/tab-active.svg');
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .tab-0 {
    left: calc(71px + 12px);
    transform: rotate(270deg);
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .tab-1 {
    top: calc(71px + 12px);
    left: calc(71px + 12px);
    transform: rotate(0deg);
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .tab-2 {
    top: calc(71px + 12px);
    transform: rotate(90deg);
}

section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters > .tab-3 {
    transform: rotate(180deg);
}

section.tabs > .boxed > .tabs-container > .tabs-content {
    min-height: 593px;
    padding: 50px;
    border-radius: 35px;
    background: linear-gradient(71deg, #FFF4FF 11.05%, rgba(221, 237, 248, 0.50) 67.68%);
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header {
    display: flex;
    margin-bottom: 30px;
    font-size: 16px;
    color: #8B2C84;
    gap: 40px;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header > .tab-header {
    cursor: pointer;
    text-decoration-line: underline;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header > .tab-header.active {
    color: #440173;
    font-weight: bold;
    text-decoration: none;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-body > .tab-body {
    display: none;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-body > .tab-body.active {
    display: block;
}

section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-body > .tab-body > h3 {
    font-size: 30px;
    font-weight: 700;
    color: #440173;
}

@media (max-width: 1400px) {
    section.tabs > .boxed > .tabs-container > .tabs-sidebar {
        flex: 0 0 300px;
    }
}

@media (max-width: 992px) {
    section.tabs > .boxed > .tabs-container {
        flex-direction: column;
        gap: 20px;
    }

    section.tabs > .boxed > .tabs-container > .tabs-sidebar > .connectivity-boosters {
        margin-top: 0;
    }

    section.tabs > .boxed > .tabs-container > .tabs-sidebar > h3 {
        margin-top: calc(300px + 40px);
    }
}

@media (max-width: 768px) {
	section.tabs > .boxed {
    padding: 0;
}
    section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header {
        flex-wrap: wrap;
    }

    section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header > .tab-header {
        flex-basis: 45%;
    }
}

@media (max-width: 576px) {


    section.tabs > .boxed > .tabs-container > .tabs-content > .tabs-header > .tab-header {
        flex-basis: 100%;
    }
}