.section-content-switcher {
    display: flex;
    padding: 96px 105px;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    background: var(--bg-color-primary);
}

.content-switcher-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

.content-switcher-badge, .trusted-by-badge-content {
    display: flex;
    flex-direction: row;
    padding: 7px 18px;
    justify-content: center;
    align-items: center;
    gap: 12px;

    border-radius: 58px;
    border: 1px solid #E6E7EA;
    background: #FFF;
    box-shadow: 0 8px 30px -10px rgba(177, 186, 226, 0.21), 0 8px 24px -8px rgba(173, 173, 173, 0.20), 0 -4px 0 0 #F3F3F4 inset;
}

.content-switcher-header-title {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -2.56px;
}

.tabs-wrapper{
    position:relative;
    width:100%;
}

.content-switcher-tabs {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*gap: 28px;*/

    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    -ms-overflow-style:none;
    scroll-behavior:smooth;
    white-space:nowrap;
    padding:0;
    justify-content:flex-start;
}

.content-switcher-tabs.has-overflow{
    padding:0 56px;
}

.content-switcher-tabs.centered{
    justify-content:center;
    overflow:hidden;
    padding:0;
}

.content-switcher-tabs::-webkit-scrollbar{
    display:none;
}

.content-switcher-tab {
    display: flex;
    /*padding: 0 20px 10px 0;*/
    padding: 0 0 10px;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #5C5B76;
    cursor: pointer;
    flex:0 0 auto;
    white-space:nowrap;
    margin-right:24px;
}

.tabs-scroll-prev,
.tabs-scroll-next{
    position:absolute;
    top:0;
    bottom:0;
    width:56px;

    border:0;
    background:white;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:5;
}

.tabs-scroll-prev{
    left:0;
    background:
        linear-gradient(
            to right,
            rgba(255,255,255,0),
            rgb(20, 20, 20) 35%
        );
}

.tabs-scroll-next{
    right:0;
    background:
        linear-gradient(
                to left,
                rgba(255,255,255,0),
                white 35%
        );
}

.tabs-scroll-prev.hidden,
.tabs-scroll-next.hidden{
    display:none;
}

.content-switcher-tab.active {
    border-bottom: 1px solid #5335D9;
    color: #5335D9;
}

.content-switcher-content {
    display: flex;
    gap: 32px;

    /*align-items: stretch;*/

   /* display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);*/
    gap: 32px;
    width: 100%;
    align-items: stretch;
}

.content-switcher-content > * {
    flex: 1 1 0;
    min-width: 0;
}

.content-switcher-content-left {
    /*position: relative;*/
    /*overflow: hidden;*/

    position: relative;
    width: 100%;
    min-height: 522px;
}

.content-switcher-content-left-background {
    /*!*width: 100%;*!*/
    /*max-width: 100%;*/
    /*overflow: hidden;*/

    /*aspect-ratio: 622 / 522;*/

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 100%;

    min-height: 522px;

    border-radius: 16px;
}

.content-switcher-content-left-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 120%;
    position: absolute;
    inset: 0;
    padding: 10px;
}

.content-switcher-content-left-image img {
    display: block;
    width: 90%;
    max-width: 100%;
    max-height: 110%;
    object-fit: contain;
    /*height: auto;*/
}

.content-switcher-content-right {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    position: relative;
    min-height: 522px;
}

.content-switcher-item {
    /*display: none;*/
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

.content-switcher-item.active {
    /*display: flex;*/

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.content-switcher-item-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -0.76px;
}

.paragraphs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 15px;
}

.paragraph {
    color: var(--Dark-Shade-blue-300);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (min-width: 1024px) {
    .content-switcher-content.picture-left {
        flex-direction: row;
    }

    .content-switcher-content.picture-right {
        flex-direction: row-reverse;
    }
}

@media (max-width: 834px) {
    .section-content-switcher {
        padding: 60px 20px 36px;
    }
    .content-switcher-item-title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -1.12px;
    }
}

@media (max-width: 640px) {
    .content-switcher-header {
        gap: 16px;
    }
    .content-switcher-header-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.28px;
    }
    .section-content-switcher {
        gap: 30px;
    }
    .content-switcher-tabs,
    .content-switcher-content {
        flex-direction: column;
    }
    .content-switcher-tab {
        width: 100%;
    }
    .content-switcher-content > * {
        flex: none;
        width: 100%;
    }
    .content-switcher-content-right,
    .content-switcher-item {
        width: 100%;
        padding: 0;
    }
}