.switching {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='661' viewBox='0 0 1920 661' fill='none'%3e%3crect width='1920' height='661' fill='%2383BBCE'/%3e%3cpath d='M0 417C19.954 416.991 126.445 415.527 205.38 415.319C284.315 415.11 367.404 414.683 389.967 414.566C412.531 414.449 469.381 414.244 516.27 414.358C563.05 414.243 601.566 413.535 601.532 412.905C601.793 412.333 569.292 382.001 529.326 346.036C489.359 310.071 456.858 279.739 457.01 278.937C457.237 277.734 573.552 282.831 715.836 289.939C857.935 297.219 974.359 302.545 974.619 301.973C974.586 301.342 948.887 276.928 917.225 247.802C885.747 218.504 859.94 193.861 860.091 193.059C860.243 192.257 892.322 192.565 931.6 193.463C970.769 194.131 1035.47 195.893 1075.41 196.506C1115.28 197.52 1170.47 198.858 1197.91 199.498C1225.47 200.368 1248.03 200.251 1248 199.62C1248.26 199.048 1197.48 184.027 1135.26 166.744C1033.4 138.305 926.925 108.538 718.887 50.3899C680.143 39.4091 648.328 31.2526 648.176 32.0544C647.949 33.257 786.619 175.633 790.209 177.59C795.813 180.984 784.763 179.009 741.201 168.532C714.336 162.393 671.362 152.033 645.562 145.896C619.763 139.76 517.739 115.446 418.945 91.771C320.152 68.0957 228.733 46.501 215.997 43.777L192.873 38.7931L252.992 98.7C285.919 131.611 322.21 167.682 333.541 178.653C344.688 189.796 353.125 199.156 351.983 199.554C350.842 199.952 322.305 197.018 288.483 193.039C254.476 189.232 146.396 176.822 48.0498 165.294C1.11703e-05 159.504 9.96529e-06 159.504 9.96529e-06 159.504L0 417Z' fill='%231983A4'/%3e%3c/svg%3e");
    background-size: cover;
    background-position: center center;

    padding-block: 5rem;
}

.switching__wrapper {
    max-width: 1520px;
    width: 100%;

    margin-inline: auto;

    background-color: var(--white);
    box-shadow: 0px 3.75px 22.5px 0px rgba(0, 0, 0, 0.16);
    border-radius: 3px;

    position: relative;
}

.switching__content {
    padding-right: 3.75rem;
    padding-block: 3rem;
    
    margin-left: auto;
    margin-right: 0;

    max-width: 995px;
    width: 100%;
}

.switching__title {
    font-size: var(--h4-size);
    text-transform: none;

    gap: 6px;

    margin-bottom: 2.5rem;
}

.switching__title:before {
    font-size: var(--h4-size);
    line-height: var(--h4-size);
}

.switching__text {
    color: var(--black);
    font-size: var(--text2-size);
    font-weight: 500;

    margin-bottom: 1.5rem;
}

.switching__decor {
    position: absolute;

    top: 0;
    left: 0;
}



@media(max-width: 1536px) {
    .switching {
        width: auto;
        
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .switching__content {
        max-width: 100%;
        width: 60%;
    }
}


@media(max-width: 1024px) {
    
    .switching__wrapper {
        border-radius: 9px;
        
        display: grid;
    }
    
    .switching__content {
        width: 100%;
        
        padding-block: 2rem;
        padding-inline: 2.75rem;
    }
    
    
    .switching__decor {
        position: relative;
        
        text-align: end;
        
        order: 2;
    }
}