* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #010101;
    color: #ffffff;
    font-family: 'Interop', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.footer__item-list a,
.header__menu-item a {
    color: #ffffff !important;
}

.page {
    position: relative;
    min-height: 100vh;
}

.page_main:before {
    content: '';
    background: url('https://static.tildacdn.com/tild6530-3265-4637-a161-626136656231/main-page_bg.png') no-repeat center top / 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 90rem;
    max-height: 156.25rem;
    z-index: -1;
    pointer-events: none;
}

.page:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1092px;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, #ffffff 0%, #99999900 100%) left 16px top / 1px 100% no-repeat,
        linear-gradient(to bottom, #ffffff 0%, #99999900 100%) center top / 1px 100% no-repeat,
        linear-gradient(to bottom, #ffffff 0%, #99999900 100%) right 16px top / 1px 100% no-repeat;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.container {
    max-width: 1308px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: padding 0.3s ease;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    padding-top: var(--pt, 60px);
    z-index: 1000;
}

.header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.header.scroll:after {
    opacity: 1;
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.75rem 0;
}

.header .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    width: 2.75rem;
    min-height: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
}

.header .burger span {
    display: block;
    width: 100%;
    height: 1px;
    flex-shrink: 0;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.header .burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header .burger.active span:nth-child(2) {
    opacity: 0;
}

.header .burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.header__menu {
    display: flex;
    gap: 6.25rem;
    font-size: 1.125rem;
    line-height: 1.2;
}

.header__menu-item {
    text-transform: uppercase;
}

.section_main-practice {
    background: url('https://static.tildacdn.com/tild3136-3337-4939-a139-376466636563/bg.png') no-repeat center bottom / cover;
    padding-top: 15rem;
    padding-bottom: 5rem;
}

.section_main-practice .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.75rem;
    position: relative;
    z-index: 2;
}

.section_main-practice__image {
    max-width: 32.25rem;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.section_main-practice__image img {
    width: 100%;
    height: auto;
}

.section_main-practice__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    padding-top: calc(min(1160px, 100vw) / 2 - 2rem - 28rem);
}

.section_main-practice__title {
    font-size: 3.875rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.section_main-practice__descr {
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.section_experience {
    padding-top: 5rem;
    padding-bottom: 6.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%), url('https://static.tildacdn.com/tild3237-3337-4162-b866-383364633063/experience_bg.png') no-repeat center / cover;
    position: relative;
    z-index: 1;
}

.section_experience:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    min-width: 90rem;
    width: 100%;
    bottom: 7.5rem;
    background: #000000;
    -webkit-filter: blur(8.75rem);
    filter: blur(8.75rem);
    z-index: -1;
}

.section_experience_page {
    background: none;
    padding-bottom: 4rem;
}

.section_experience_page:before {
    display: none;
}

.section_experience .container {
    max-width: 1092px;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.section_experience .section__top {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 0 2.5rem;
}

.section_experience .section__title {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.section_experience .section_experience__descr {
    font-size: 3.125rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    max-width: 60rem;
}

.section_experience__item {
    padding: 4.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section_experience__item .title {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: #FF5D0A;
}

.section_experience__item .descr {
    margin-top: 0.5rem;
}

.section_experience_page .section_experience__item .descr {
    margin: 0;
}

.section_experience__item .descr,
.section_individual .section__descr {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    line-height: 1.3;
}

.section_experience__item .link {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #FF5D0A !important;
    font-weight: 300;
}

.section_individual {
    position: relative;
    padding-bottom: 6rem;
}

.section_individual:before {
    content: '';
    position: absolute;
    top: -33.5rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 90rem;
    width: 100%;
    max-width: 108rem;
    aspect-ratio: 1/1;
    background: url('https://static.tildacdn.com/tild6237-6535-4564-a564-376236366335/individual.png') no-repeat center / auto 100%;
    z-index: -1;
    pointer-events: none;
}

.section_individual_page {
    padding: 8.5rem 0 0;
}

.section_individual_page:before {
    display: none;
}

.section_individual .container {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.section_individual .section__top {
    max-width: 880px;
}

.section_individual .section__bottom {
    max-width: 73rem;
    position: relative;
    z-index: 2;
}

.section_individual .section__top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section_individual .section__title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.section_individual__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2.5rem;
}

.section_individual__cards-item {
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    isolation: isolate;
    padding: 10.375rem 1.375rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.section_individual__cards-item .item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.section_individual__cards-item .title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: #ffffff;
}

.section_individual_page .title {
    font-size: 1.875rem;
}

.section_individual__cards-item .descr {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.3;
}

.section_individual__cards-item .link {
    font-size: 1rem;
    line-height: 1.3;
    color: #FF5D0A !important;
    text-decoration: underline !important;
    font-weight: 400;
    text-underline-offset: 0.25rem;
}

footer.footer {
    padding: 4.5rem 0;
    background: url('https://static.tildacdn.com/tild6461-3066-4338-b335-326237303866/footer_bg.png') no-repeat center top / cover;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 8.5rem;
}

.footer__top {
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__top .footer__title:last-child {
    text-align: right;
}

.footer__top .footer__title {
    font-size: 6.25rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.footer__bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3.25rem;
}

.footer__item {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.footer__item.ta-right {
    text-align: right;
}

.footer__item-title {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
}

.footer__item-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

.td-underline {
    text-decoration: underline !important;
    text-underline-offset: 0.25rem;
}

.footer__item-copyright {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
}

.reveal {
    --reveal-y: 1.125rem;
    --reveal-x: 0px;
    --reveal-scale: 0.985;
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal.reveal-up {
    --reveal-y: 1.25rem;
}

.reveal.reveal-right {
    --reveal-x: 1.5rem;
    --reveal-y: 0.5rem;
}

.reveal.reveal-left {
    --reveal-x: -1.5rem;
    --reveal-y: 0.5rem;
}

.reveal.reveal-zoom {
    --reveal-y: 0.625rem;
    --reveal-scale: 0.8;
}

.preloader {
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
}

.preloader__item {
    width: 16rem;
    height: 16rem;
    background: url('https://static.tildacdn.com/tild3335-6536-4861-a439-356333633964/loader.gif') no-repeat center / contain;
}

.section_main {
    padding-top: 10rem;
    padding-bottom: 1.5rem;
}

.section_main .container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.section_main__info {
    width: 63%;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section_main__image {
    width: 57%;
}

.section_main__title {
    font-size: 5.25rem;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.section_main__descr {
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    line-height: 1.3;
    max-width: 28.75rem;
}

.marquee {
    max-width: 61.25rem;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 8.75rem,
            rgba(255, 255, 255, 1) calc(100% - 8.75rem),
            rgba(255, 255, 255, 0) 100%);
    mask-image: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 8.75rem,
            rgba(255, 255, 255, 1) calc(100% - 8.75rem),
            rgba(255, 255, 255, 0) 100%);
    display: flex;
    gap: 4.125rem;
    padding: 1.875rem 0;
}

.marquee__wrapper {
    flex-shrink: 0;
    display: flex;
    gap: 4.125rem;
    align-items: center;
    -webkit-animation: marquee 20s linear infinite;
    animation: marquee 20s linear infinite;
}

.marquee__item {
    flex-shrink: 0;
}

.marquee__item img {
    height: 27px;
}

.section_title .title {
    display: flex;
    flex-direction: column;
    line-height: 0.75;
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.silver-gradient {
    color: #999999;
}

.orange-gradient {
    color: #FF5D0A;
}

.section_individual__cards-item .item__img {
    position: absolute;
    width: calc((min((1172px - 2.5rem), (100vw - 4.5rem)) / 3) * 0.77);
    aspect-ratio: 1/1;
    top: calc(((min((1172px - 2.5rem), (100vw - 4.5rem)) / 3) / 2.75) * -1);
    left: -2.25rem;
}

.section_individual__cards-item .item__logo {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
}

.page_main .footer {
    padding-top: calc(min(1728px, 100vw) / 4.3);
    margin-top: calc((min(1728px, 100vw) / 7) * -1);
    z-index: 2;
    position: relative;
}

.page_main .footer:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -30px;
    width: calc(100% + 2.5rem);
    height: 90px;
    z-index: 2;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    background: #0e0b0a;
}

.page {
    overflow: hidden;
}

.section_banner {
    margin-top: calc((min(1728px, 100vw) / 32) * -1);
}

.section_banner .container {
    max-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.section_banner .section__title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
    font-size: 6rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: #ffffff;
    max-width: 47.5rem;
    width: 100%;
}

.section_banner .container img {
    width: 100%;
    max-width: 108rem;
}

@-webkit-keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@supports (-webkit-background-clip: text) {

    .section_banner .section__title,
    .section_individual__cards-item .title,
    .section_individual .section__title {
        color: transparent;
        background: linear-gradient(107.69deg, #FFFFFF 28.34%, rgba(153, 153, 153, 0.5) 106.03%);
    }

    .section_experience .section_experience__descr {
        color: inherit;
    }

    .section_experience .section_experience__descr .text-line {
        display: block;
        background:
            linear-gradient(107.69deg, #FFFFFF 28.34%, rgba(153, 153, 153, 0.5) 106.03%),
            rgba(255, 255, 255, 0.2);
        background-size: var(--fill, 0%) 100%, 100% 100%;
        background-repeat: no-repeat;
    }

    .section_individual__cards-item .link {
        color: transparent;
        background: linear-gradient(180deg, #FF5D0A 19.78%, #FFB700 67.72%);
    }

    .silver-gradient {
        color: transparent;
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(153, 153, 153, 0) 100%);
    }

    .orange-gradient {
        color: transparent;
        background: linear-gradient(180deg, #FF5D0A 19.78%, #FFB700 67.72%);
    }

    .section_banner .section__title,
    .section_individual__cards-item .title,
    .section_individual .section__title,
    .section_experience .section_experience__descr,
    .section_experience .section_experience__descr .text-line,
    .section_individual__cards-item .link,
    .silver-gradient,
    .orange-gradient {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        -webkit-filter: none;
        filter: none;
        transition: none;
        transition-delay: 0ms;
    }
}

@media screen and (max-width: 1200px) {
    .page {
        --vw-size: min(1200px, 100vw);
    }

    .footer__top .footer__title,
    .section_individual .section__title,
    .section_title .title,
    .section_banner .section__title,
    .section_main__title {
        font-size: calc(var(--vw-size, 1200px) * var(--font-size-multiplier, 0.1));
    }

    .section_title .title {
        --font-size-multiplier: 0.12;
    }

    .section_individual .section__title {
        --font-size-multiplier: 0.067;
    }

    .section_main__title {
        --font-size-multiplier: 0.07;
    }

    .page_main .footer:after {
        --font-size-multiplier: 0.075;
    }

    .footer__top .footer__title,
    .section_banner .section__title {
        --font-size-multiplier: 0.08;
    }

    .page_main .footer:after {
        height: calc(var(--vw-size, 1200px) * var(--font-size-multiplier, 0.1));
        min-height: 3rem;
    }

    .section_experience__item,
    .container {
        padding-inline: 2rem;
    }

    .section_experience__item,
    .section_experience .section__top {
        padding-inline: 0;
    }

    .section_main__info {
        left: 2rem;
    }

    .section_main__image img {
        width: calc(100% + 6rem);
    }
}

@media screen and (max-width: 960px) {
    .header {
        padding-top: 0;
    }

    .section_individual__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section_individual__cards-item {
        padding-top: 8rem;
    }

    .footer__item.ta-right {
        text-align: left;
    }

    .footer__bottom {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width:769px) and (max-width: 960px) {
    .header__menu {
        gap: 3rem;
    }

    .section_main {
        padding-top: 7rem;
    }
}

@media (max-width: 768px) {
    .header__menu {
        gap: 3rem;
    }

    .header .burger {
        display: flex;
        position: relative;
        z-index: 1;
    }

    .header__menu {
        display: none;
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url('https://static.tildacdn.com/tild3533-3537-4630-b861-333234633139/header_mob_bg.png') no-repeat center / cover;
        opacity: 0;
        transform: scale(1.2);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .header__menu.active {
        opacity: 1;
        transform: scale(1);
    }

    .header {
        padding-top: 0;
    }

    .header nav {
        padding: 2rem 0;
    }

    .section_main {
        padding-top: 6rem;
    }

    .section_main__info {
        position: unset;
        transform: unset;
    }

    .section_main__image {
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(30%, -30%);
        width: 63%;
    }

    .section_main .container {
        justify-content: flex-start;
        position: unset;
    }

    .section_experience .section_experience__descr {
        font-size: 2.25rem;
    }

    .marquee__wrapper,
    .marquee {
        gap: 3rem;
    }

    .section_main-practice .container {
        gap: 2rem;
    }

    .section_main-practice {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .section_individual__cards-item .item__img {
        width: calc(min(1172px - 2.5rem, 100vw - 4.5rem) * 0.65);
        top: calc((min(1172px - 2.5rem, 100vw - 4.5rem) / 2.65) * -1);
    }

    .section_individual__cards {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .section_experience_page {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .section_experience .container {
        gap: 3rem;
    }

    .section_experience__item {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section_individual_page {
        padding-top: 4rem;
    }

    .section_individual .container {
        gap: 3rem;
    }

    .section_individual__cards {
        gap: 1.5rem;
    }

    .section_experience_page {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .section_experience .container {
        gap: 3rem;
    }

    .section_experience__item {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section_individual_page {
        padding-top: 4rem;
    }

    .section_individual .container {
        gap: 3rem;
    }

    .section_experience .section__top,
    .section_individual__cards {
        gap: 1.5rem;
    }

    .footer__item-title {
        font-size: 1rem;
    }

    .footer__item {
        gap: 0.5rem;
    }

    .footer__bottom {
        gap: 2.5rem;
    }

    .page:after {
        display: none;
    }

    .section_experience__item {
        padding-inline: 0;
    }

    .container {
        padding-inline: 1rem;
    }

    .section_individual__cards-item {
        padding-top: clamp(5rem, 22vw, 9rem);
    }

    .section_experience {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .footer .container {
        gap: 5rem;
    }

    .section_main-practice__image {
        width: calc(100% - 2rem);
        margin: 0 auto;
    }

    .section_main-practice .container {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 480px) {
    .section_main__info {
        width: 90%;
    }

    .section_main__title {
        font-size: 2rem;
    }

    .section_main__image {
        z-index: -1;
        width: 150%;
        transform: rotate(-30deg) translate(58%, -13%);
    }

    .section_experience .section_experience__descr {
        font-size: 1.5rem;
    }

    .section_title .title {
        --font-size-multiplier: 0.14;
    }

    .section_individual .section__title {
        font-size: 2.5rem;
    }

    .section_individual__cards-item .title {
        font-size: 1.375rem;
    }

    .marquee__item img {
        height: 1rem;
    }

    .section_main-practice__title {
        font-size: 2.5rem;
    }

    .section_main-practice__title:after {
        content: '';
        display: inline-block;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: 0.75rem;
        background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjU2MDUgMTYuNDM5NVY2LjU2MDU1QzE4LjU2MDUgNS43MzIxMiAxOS4yMzIxIDUuMDYwNTUgMjAuMDYwNSA1LjA2MDU1QzIwLjg4OSA1LjA2MDU1IDIxLjU2MDUgNS43MzIxMiAyMS41NjA1IDYuNTYwNTVWMjAuMDYwNUMyMS41NjA1IDIwLjg4OSAyMC44ODkgMjEuNTYwNSAyMC4wNjA1IDIxLjU2MDVINi41NjA1NUM1LjczMjEyIDIxLjU2MDUgNS4wNjA1NSAyMC44ODkgNS4wNjA1NSAyMC4wNjA1QzUuMDYwNTUgMTkuMjMyMSA1LjczMjEyIDE4LjU2MDUgNi41NjA1NSAxOC41NjA1SDE2LjQzOTVMMCAyLjEyMTA5TDIuMTIxMDkgMEwxOC41NjA1IDE2LjQzOTVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K') no-repeat center / contain;
    }
}