.tab-switcher {
    background: radial-gradient(45% 500px, rgba(1, 115, 201, 0.34) 0%, rgb(255 255 255) 100%);
    background-position-y: 50px;
    background-repeat: no-repeat;
}

.tab-switcher__top-content {
    text-align: center;
}

.tab-switcher__top-content h2 {
    font-size: 32px !important;
    margin-bottom: 75px;
}

.tab-switcher__top-content span {
    background-color: #ECF5FF;
    color: #0075FF !important;
    width: fit-content;
    font-weight: 500 !important;
    padding: 5px !important;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 15px !important;
}

.tab-switcher__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.tab-switcher__tabs__tab {
    font-size: 14px;
    font-weight: 400;
    background: white;
    border: solid 1px #DDEBFF;
    border-radius: 5px;
    text-align: center;
    color: black;
    cursor: pointer;
    width: fit-content;
    padding: 15px 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tab-switcher__tabs__tab:hover, .tab-switcher__tabs__tab--active {
    color: #ffffff;
    background-color: #0075FF;
}

.tab-switcher__content-item {
    width: 710px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
}

.tab-switcher__content-item__logos img {
    border-radius: 5px;
}

.tab-switcher__content-item h3 {
    font-size: 22px;
    font-weight: bold;
}

.tab-switcher__content-item--active {
    display: block;
}

.tab-switcher__content-item__information {
    color: #0075FF;
    margin-bottom: 20px;
    font-size: 18px;
}

.tab-switcher__content-item__logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-switcher__content-item .wp-block-button {
    display: flex !important;
}

@media only screen and (max-width: 600px) {
    .tab-switcher__tabs {
        flex-wrap: nowrap;
        justify-content: unset;
        display: inline-flex;
    }

    .tab-switcher__tabs__container {
        overflow-x: scroll;
    }

    .tab-switcher__tabs__container::-webkit-scrollbar {
        display: none;
      }

    .tab-switcher__tabs__tab   {
        width: max-content;
    }

    .tab-switcher__content-item {
        width: 100%;
    }

    .tab-switcher__content-item {
        background-color: #f3f8ff;
        border-radius: 5px;
    }

    .tab-switcher__content-item__logos {
        grid-template-columns: 1fr 1fr 1fr;
    }
}