.marquee {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--accent-color);
    padding: 9px 0;
    color: #FFF;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.marquee__inner {
    display: inline-block;
    white-space: nowrap;
    padding-left: 20%;
    animation: marquee 50s linear infinite;
}

.marquee__inner span {
    display: inline-block;
    padding-right: 4rem;
}

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

    100% {
        transform: translateX(-100%);
    }
}

.logo-block {
    font-size: 0;
    line-height: 1;
}

.logo-block img {
    max-height: 35px;
    width: auto;
}

.navcontacts {
    padding-top: 20px;
}

.navcontacts-phones {
}

.navcontacts-phones .phones-list {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.navcontacts-phones .phones-list li {
    padding-bottom: 4px;
}

.navcontacts-socials {
    padding-top: 11px;
}

.navcontacts-socials .socials-list {
    margin: 0 -7px;
}

.navcontacts-socials .socials-list li {
    padding: 7px;
}

.navcontacts-socials .socials-list a {
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.navcontacts-socials .socials-list svg {
    height: 25px;
    width: auto;
}

.languages {
    color: #676767;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    /* 187.5% */
    text-transform: uppercase;
    padding-top: 41px;
}

.languages-list {
    display: flex;
    margin: 0 -7px;
}

.languages-list li {
    padding: 7px;
}

.languages-list a {
}

.languages-list .current-lang a {
    color: #A374FF;
}

.header {
    /* min-height: 64px; */
}

.header-fix {
    /* background: #1A1D2A; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /*max-width: 360px;*/
    /* border-bottom: 1px solid rgba(239, 239, 239, 0.22); */
    transition: all 0.3s ease 0s;
}

.scrolled-passed .header-fix {
    background: rgba(0,0,0,0.9);
}

.nav-open .header-fix {
    background: #05080C;
    height: 100%;
}

.header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0 19px 0;
}

.header-logo {
    /* max-width: 68px; */
    display: flex;
    align-items: center;
}

.header-toogle {
}

.header-nav {
    width: 100%;
    padding: 30px 0 26px 0;
    display: none;
    height: calc(100dvh - 84px);
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.header-buttons {
    margin-left: auto;
    padding-right: 18px;
}

.header-button {
    font-size: 12.171px;
    font-weight: 600;
    padding: 5px 10px 4px 11px;
    min-height: 33px;
}

.header-language {
    display: none;
}

.nav-open .header-nav {
    display: flex;
}

.menutoggle {
    font-size: 0;
    line-height: 1;
    padding: 5px 5px 5px 5px;
}

.menutoggle-close {
    display: none;
}

.nav-open .menutoggle-close {
    display: block;
}

.nav-open .menutoggle-burger {
    display: none;
}

.navigation {
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    padding: 0 4px;
    flex-grow: 1;
}

.menu {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.menu>li {
    border-bottom: 1px solid rgba(239, 239, 239, 0.22);
    padding: 7px 0 0px;
}

.menu>li:first-child {
    margin-bottom: 6px;
}

.menu>li:last-child {
    border-bottom: none;
}

.menu .sub-menu {
    display: none;
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 16px 0;
    margin: 0;
}

.menu .submenu-open .sub-menu {
    display: block;
}

.menu>li a {
    display: block;
    padding-top: 18px;
    padding-bottom: 18px;
}

.menu>li a:visited {
    color: inherit;
}

.menu>li.current-menu-item a, .menu>li a:hover, .menu>li a:focus {
    color: #A373FD;
}

.thankyou {
    position: relative;
    padding-bottom: 163px;
    padding-top: 103px;
}

.thankyou:before, .thankyou:after {
    content: '';
    display: block;
    width: 225px;
    height: 221.982px;
    background: rgba(124, 58, 237, 0.45);
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(47.468353271484375px); 
}

.thankyou: before {
    right: -143px;
    top: 80px;
}

.thankyou:after {
    bottom: -83px;
    left: -67px;
}

.thankyou-figure {
    display: none;
}

.thankyou-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background: url("../img/thankyou-bg.png") center/cover no-repeat; */
    padding-top: 90px;
}

.thankyou-bg-main {
    height: 100%;
    margin: 0 0px;
    position: relative;
}

.thankyou-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.thankyou-main {
    position: relative;
    z-index: 2;
}

.thankyou-content {
    padding-top: 155px;
}

.thankyou-chip {
    border-radius: 30px;
    border: 2px solid #3C1F6F;
    background: rgba(31, 9, 58, 0.65);
    text-align: center;
    color: #D8B5FE;
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1;
    padding: 10px 0 9px 0;
}

.thankyou-title {
    font-size: 37px;
    font-family: var(--font-secondary);
    text-align: center;
    line-height: 1.2;
    padding: 8px 0 0 0;
}

.thankyou-buttons {
}

.thankyou-buttons {
    margin: 0 -8px;
    padding: 43px 0 0;
}

.thankyou-buttons>div {
    padding: 8px;
}

.thankyou-button {
    font-size: 20px;
    display: block;
    padding: 21px 0 17px 0;
    max-width: 316px;
    margin: 0 auto;
    font-family: var(--font-primary);
}

.page-content {
    padding-top: 0;
}

.hentry {
    padding-top: 103px;
    padding-bottom: 30px;
}

@media (min-width: 1200.98px) {
    .hentry {
        padding-top: 140px;
    }
}

.entry-content {
    font-size: 15px;
    line-height: 1.55;
}

.entry-content>p>img, .entry-content>img {
}

.entry-title {
    margin: 23px auto 23px;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
}

.entry-content h2 {
    margin: 23px auto 23px;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 115%;
}

.entry-content>h2:first-child {
    margin-top: 0;
}

.entry-content .wp-block-image {
    margin: 15px auto;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
}

.entry-content .wp-block-image img {
    border-radius: 12px;
    border: 1px solid rgba(239, 239, 239, 0.22);
    overflow: hidden;
}

.entry-content p {
    margin: 15px auto;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
}

.entry-content p:first-child {
    margin-top: 0;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

.entry-content .wp-block-columns {
    margin: 15px auto;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 32px;
}

.entry-content .ps-content-row {
    gap: 0;
    font-size: 16px;
    line-height: 1.37;
    margin-bottom: 0;
}

.ps-image-figure {
    border-radius: 12px;
    border: 1px solid rgba(239, 239, 239, 0.22);
    background: #21010F;
    overflow: hidden;
}

.entry-content .wp-block-columns .wp-block-image {
    padding-left: 0;
    padding-right: 0;
}

.wp-block-columns .ps-image-figure {
    margin-bottom: 0;
}

.entry-content .wp-block-columns h2 {
    padding-left: 0;
    padding-right: 0;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 18px;
}

.entry-content .wp-block-columns p {
    padding: 0;
}

.entry-content .table-layout {
    overflow-x: auto;
}

.entry-content ul, .entry-content ol {
    margin: 17px auto 15px;
    max-width: 1376px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 1.36;
}

.entry-content ul {
    list-style: none;
}

.entry-content ol {
}

.entry-content ul li, .entry-content ol li {
    margin-bottom: 13px;
    position: relative;
    padding-left: 40px;
}

.entry-content ul li:before {
    content: '';
    border-radius: 12px;
    border: 1px solid #E00434;
    background: #E00434;
    width: 20px;
    height: 20px;
    display: block;
    background-clip: content-box;
    padding: 3px;
    position: absolute;
    left: 2px;
    top: 1px;
}

.wp-block-table {
    border: 1px solid rgba(239, 239, 239, 0.22);
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.38;
}

.wp-block-table th:first-child, .wp-block-table td:first-child {
    border-left: none;
}

.wp-block-table th:last-child, .wp-block-table td:last-child {
    border-right: none;
}

.wp-block-table tr:first-child th, .wp-block-table tr:first-child td {
    border-top: none;
}

.wp-block-table tr:last-child th, .wp-block-table tr:last-child td {
    border-bottom: none;
}

.wp-block-table table {
}

.wp-block-table table thead {
    border: none;
    background: #182736;
    border-bottom: 1px solid rgba(239, 239, 239, 0.22);
}

.wp-block-table table tr {
}

.wp-block-table table th, .wp-block-table table td {
    border: 1px solid rgba(239, 239, 239, 0.22);
    padding: 9px 10px;
}

.wp-block-table table th {
    font-weight: 600;
}

.wp-block-table table td {
}

.wp-block-embed-youtube {
    position: relative;
    border-radius: 18.667px;
    background: #1A1D2A;
    font-size: 0;
    line-height: 1;
    overflow: hidden;
}

.wp-block-embed-youtube:before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='244' height='244' viewBox='0 0 244 244' fill='none'><g opacity='0.3'><path d='M100.65 0H86.925L77.775 35.075L68.625 0H53.375C56.425 9.15 59.475 16.775 62.525 25.925C67.1 38.125 70.15 48.8 70.15 54.9V91.5H83.875V54.9L100.65 0ZM137.25 68.625V45.75C137.25 38.125 135.725 33.55 132.675 28.975C129.625 24.4 125.05 22.875 118.95 22.875C112.85 22.875 108.275 25.925 105.225 30.5C102.175 33.55 100.65 38.125 100.65 45.75V70.15C100.65 77.775 102.175 82.35 105.225 85.4C108.275 89.975 112.85 91.5 118.95 91.5C125.05 91.5 129.625 88.45 132.675 83.875C135.725 82.35 137.25 76.25 137.25 68.625ZM125.05 71.675C125.05 77.775 123.525 80.825 118.95 80.825C114.375 80.825 112.85 77.775 112.85 71.675V42.7C112.85 36.6 114.375 33.55 118.95 33.55C123.525 33.55 125.05 36.6 125.05 42.7V71.675ZM183 91.5V22.875H170.8V74.725C167.75 79.3 166.225 80.825 163.175 80.825C161.65 80.825 160.125 79.3 160.125 77.775V22.875H147.925V76.25C147.925 80.825 147.925 83.875 149.45 86.925C149.45 89.975 152.5 91.5 157.075 91.5C161.65 91.5 166.225 88.45 170.8 83.875V91.5H183ZM189.1 160.125C184.525 160.125 183 163.175 183 169.275V175.375H195.2V169.275C195.2 163.175 193.675 160.125 189.1 160.125ZM144.875 160.125C143.35 160.125 140.3 161.65 138.775 163.175V204.35C140.3 205.875 143.35 207.4 144.875 207.4C147.925 207.4 149.45 204.35 149.45 198.25V169.275C149.45 163.175 147.925 160.125 144.875 160.125Z' fill='%239A9A9A'/><path d='M219.605 126.575C216.555 115.9 207.405 106.75 198.255 106.75C173.855 103.7 147.929 103.7 122.004 103.7C96.0795 103.7 71.6795 103.7 45.7545 106.75C36.6045 106.75 27.4545 115.9 24.4045 126.575C21.3545 141.825 21.3545 158.6 21.3545 173.85C21.3545 189.1 21.3545 205.875 24.4045 221.125C27.4545 231.8 35.0795 239.425 45.7545 240.95C71.6795 244 96.0795 244 122.004 244C147.929 244 172.33 244 198.255 240.95C208.93 239.425 218.079 231.8 219.605 221.125C222.655 205.875 222.655 189.1 222.655 173.85C222.655 158.6 222.655 141.825 219.605 126.575ZM79.3045 140.3H64.0545V218.075H50.3295V140.3H36.6045V126.575H79.3045V140.3ZM115.904 218.075H103.704V210.45C99.1295 216.55 94.5545 218.075 89.9795 218.075C85.4045 218.075 83.8795 216.55 82.3545 213.5C82.3545 211.975 80.8295 208.925 80.8295 202.825V149.45H93.0295V202.825C93.0295 204.35 94.5545 205.875 96.0795 205.875C99.1295 205.875 100.654 204.35 103.704 199.775V149.45H115.904V218.075ZM161.655 196.725C161.655 202.825 161.655 207.4 160.13 210.45C158.605 215.025 155.555 218.075 150.98 218.075C146.405 218.075 141.83 215.025 138.78 210.45V216.55H126.579V126.575H138.78V155.55C143.355 150.975 146.405 147.925 150.98 147.925C155.555 147.925 158.605 150.975 160.13 155.55C161.655 158.6 161.655 163.175 161.655 169.275V196.725ZM207.405 186.05H183.005V198.25C183.005 204.35 184.529 207.4 189.105 207.4C192.155 207.4 193.68 205.875 195.205 202.825V195.2H207.405V204.35C207.405 207.4 205.88 208.925 204.355 211.975C201.305 216.55 196.73 219.6 189.105 219.6C183.005 219.6 178.43 216.55 173.855 211.975C170.805 208.925 169.28 202.825 169.28 196.725V173.85C169.28 166.225 170.805 161.65 172.33 158.6C175.38 154.025 179.955 150.975 187.58 150.975C193.68 150.975 198.255 154.025 201.305 158.6C204.355 161.65 204.355 167.75 204.355 173.85V186.05H207.405Z' fill='%239A9A9A'/></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    width: 130px;
    height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phones-list {
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.phones-list li {
    padding: 6px 0 5px;
}

.phones-list a {
    color: inherit;
}

.socials {
}

.socials-title {
    font-size: 16.453px;
    line-height: 1;
    padding-bottom: 18px;
}

.socials-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    color: #353333;
}

.socials-list li {
    padding: 8px;
}

.socials-list a {
    color: inherit;
    border-radius: 5px;
    background: #FFF;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.policies-list {
    font-size: 16px;
    line-height: 1;
}

.policies-list li {
    padding: 9px 0;
}

.policies-list a {
    color: inherit;
}

.copyright {
    color: #B8B8B8;
    font-size: 16px;
    line-height: 22px;
}

.cardlogo {
    font-size: 0;
    line-height: 1;
}

.cardlogo a {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.95);
    min-width: 251px;
    padding: 11px 0 10px 0;
    text-align: center;
}

.cardlogo img {
}

.footer {
    background-image: url(../img/footer-bg.png);
    /*background-repeat: repeat-y;*/
    background-position: 50% 50%;
    color: #ffffff;
}

.footer-main {
    padding: 40px 18px 37px;
}

.footer-phones {
}

.footer-socials {
    padding-top: 28px;
}

.footer-legal {
}

.footer-policies {
    padding-top: 4px;
}

.footer-copyright {
    padding-top: 11px;
}

.footer-logo {
    padding-top: 20px;
}

@media (min-width: 1200.98px) {
    .marquee {
    }

    .marquee__inner {
    }

    .marquee__inner span {
        padding-right: 20rem;
    }

    .logo-block {
    }

    .logo-block img {
        max-height: none;
    }

    .navcontacts {
        display: none;
    }

    .navcontacts-phones {
    }

    .navcontacts-phones .phones-list {
    }

    .navcontacts-phones .phones-list li {
    }

    .navcontacts-socials {
    }

    .navcontacts-socials .socials-list {
    }

    .navcontacts-socials .socials-list li {
    }

    .navcontacts-socials .socials-list a {
    }

    .navcontacts-socials .socials-list svg {
    }

    .languages {
        padding: 0;
        font-size: 12px;
    }

    .languages-list {
        margin: 0 -4px;
    }

    .languages-list li {
        padding: 4px;
    }

    .languages-list a {
    }

    .languages-list .current-lang a {
    }

    .header {
    }

    .header-fix {
    }

    .scrolled-passed .header-fix {
    }

    .nav-open .header-fix {
        height: auto;
    }

    .header-main {
        padding: 24px 0 24px 0;
    }

    .header-logo {
        order: -2;
    }

    .header-toogle {
        display: none;
    }

    .header-nav {
        display: block;
        height: auto;
        overflow: visible;
        order: -1;
        width: auto;
        padding: 0 32px 0 0;
        margin: 0 auto;
    }

    .header-buttons {
        margin: 0;
        padding: 0;
    }

    .header-button {
        font-size: 14px;
        min-height: 50px;
        padding: 0px 20px 4px;
        min-width: 238px;
    }

    .header-language {
        display: block;
        padding-right: 43px;
    }

    .nav-open .header-nav {
    }

    .menutoggle {
    }

    .menutoggle-close {
    }

    .nav-open .menutoggle-close {
    }

    .nav-open .menutoggle-burger {
    }

    .navigation {
    }

    .menu {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .menu>li {
        margin: 0;
        border: none;
        padding: 0 12px 0 12px;
    }

    .menu>li:first-child {
        margin: 0;
    }

    .menu>li:last-child {
    }

    .menu .sub-menu {
    }

    .menu .submenu-open .sub-menu {
    }

    .menu>li a {
    }

    .menu>li a:visited {
    }

    .menu>li.current-menu-item a, .menu>li a:hover, .menu>li a:focus {
    }

    .thankyou {
        padding-top: 138px;
        padding-bottom: 423px;
    }

    .thankyou:before, .thankyou:after {
        width: 808.851px;
        height: 798px;
        border-radius: 808.851px;
        background: rgba(124, 58, 237, 0.45);
        filter: blur(170.64356994628906px); 
    }

    .thankyou:before {
        right: -478px;
        top: 138px;
    }

    .thankyou:after {
        bottom: -178px;
        left: -390px;
    }

    .thankyou-figure {
        display: block;
        position: absolute;
        bottom: -134px;
        right: -142px;
        z-index: -1;
    }

    .thankyou-figure img {
        width: 496px;
    }

    .thankyou-bg {
        padding-top: 30px;
    }

    .thankyou-bg-main {
    }

    .thankyou-bg video {
    }

    .thankyou-main {
    }

    .thankyou-content {
        padding-top: 292px;
    }

    .thankyou-chip {
    }

    .thankyou-title {
        font-size: 73px;
        text-transform: uppercase;
    }

    .thankyou-buttons {
    }

    .thankyou-buttons {
        padding-top: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .thankyou-buttons>div {
    }

    .thankyou-button {
        font-size: 12px;
        padding: 23px 10px 23px 10px;
        text-transform: uppercase;
        min-width: 191px;
        border-radius: 26px;
        font-weight: 700;
    }

    .page-content {
    }

    .entry-content {
    }

    .entry-content>p>img, .entry-content>img {
    }

    .entry-content h2 {
    }

    .entry-content>h2:first-child {
    }

    .entry-content .wp-block-image {
    }

    .entry-content .wp-block-image img {
    }

    .entry-content p {
    }

    .entry-content p:first-child {
    }

    .entry-content p:last-child {
    }

    .entry-content .wp-block-columns {
    }

    .entry-content .ps-content-row {
    }

    .ps-image-figure {
    }

    .entry-content .wp-block-columns .wp-block-image {
    }

    .wp-block-columns .ps-image-figure {
    }

    .entry-content .wp-block-columns h2 {
    }

    .entry-content .wp-block-columns p {
    }

    .entry-content .table-layout {
    }

    .entry-content ul, .entry-content ol {
    }

    .entry-content ul {
    }

    .entry-content ol {
    }

    .entry-content ul li, .entry-content ol li {
    }

    .entry-content ul li:before {
    }

    .wp-block-table {
    }

    .wp-block-table th:first-child, .wp-block-table td:first-child {
    }

    .wp-block-table th:last-child, .wp-block-table td:last-child {
    }

    .wp-block-table tr:first-child th, .wp-block-table tr:first-child td {
    }

    .wp-block-table tr:last-child th, .wp-block-table tr:last-child td {
    }

    .wp-block-table table {
    }

    .wp-block-table table thead {
    }

    .wp-block-table table tr {
    }

    .wp-block-table table th, .wp-block-table table td {
    }

    .wp-block-table table th {
    }

    .wp-block-table table td {
    }

    .wp-block-embed-youtube {
    }

    .wp-block-embed-youtube:before {
    }

    .phones-list {
        font-weight: 500;
    }

    .phones-list li {
    }

    .phones-list a {
    }

    .socials {
    }

    .socials-title {
        padding-bottom: 6px;
    }

    .socials-list {
        margin: 0 -12px;
        justify-content: center;
    }

    .socials-list li {
        padding: 12px;
    }

    .socials-list a {
        width: 38px;
        height: 38px;
    }

    .socials-list a svg {
        max-height: 22px;
    }

    .policies-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

    .policies-list li {
        padding: 12px;
    }

    .policies-list a {
    }

    .copyright {
        font-size: 14px;
    }

    .cardlogo {
    }

    .cardlogo a {
    }

    .cardlogo img {
    }

    .footer {
    }

    .footer-main {
        padding: 52px 0 0 0;
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        max-width: 1140px;
        margin: 0 auto;
    }

    .footer-phones {
    }

    .footer-socials {
        order: -2;
        padding: 3px 95px 0 0;
    }

    .footer-legal {
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #5E5E5E;
        margin-top: 32px;
        padding-top: 6px;
        padding-bottom: 4px;
    }

    .footer-policies {
        padding: 0;
    }

    .footer-copyright {
        padding-top: 9px;
    }

    .footer-logo {
        order: -3;
        padding: 0 0 0 11px;
    }
}

.advantages {
    padding-top: 35px;
    padding-bottom: 52px;
}

.advantages-header {
}

.advantages-title {
    text-align: center;
}

.advantages-content {
    padding-top: 25px;
}

.advantages-list {
}

.advantages-item {
    padding: 8px 0;
}

.benefit {
    text-align: center;
}

.benefit-picture {
}

.benefit-pic {
    border-radius: 100px;
    border: 2.057px solid #E4CFFF;
    background: rgba(124, 58, 237, 0.50);
    text-align: center;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-pic img {
    width: 25px;
    height: auto;
}

.benefit-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    max-width: 190px;
    margin: 0 auto;
    padding-top: 16px;
}


@media (min-width: 1200.98px) {

    .advantages {
        padding-top: 92px;
        padding-bottom: 112px;
    }

    .advantages-header {
    }

    .advantages-title {
    }

    .advantages-content {
        padding-top: 38px;
    }

    .advantages-list {
        column-count: 2;
        column-gap: 0;
    }

    .advantages-item {
        padding: 8px 10px;
    }

    .benefit {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .benefit-picture {
        padding-right: 17px;
    }

    .benefit-pic {
        width: 72px;
        height: 72px;
    }

    .benefit-pic img {
        width: auto;
    }

    .benefit-title {
        font-size: 22px;
        max-width: none;
        margin: 0;
        padding: 0;
    }

}

@media (min-width: 1752.98px) {
    .advantages-list {
        padding: 0 0px 0 125px;
    }
}

.cases {
    padding-top: 37px;
    padding-bottom: 35px;
    position: relative;
}

.cases:before, .cases:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(104, 36, 221, 0.45);
    filter: blur(53.45976638793945px); 
    width: 253.399px;
    height: 250px;
    border-radius: 250px;
}

.cases:before {
    top: -23px;
    left: -111px;
}

.cases:after {
    bottom: 17px;
    left: -111px;
}

.cases-main {
    position: relative;
    z-index: 1;
}

.cases-header {
    padding-bottom: 20px;
}

.cases-title {
    text-align: center;
}

.cases-content {
}

.cases-carousel {
}

.cases-list {
    margin: 0 -12px;
}

.cases-item {
    padding: 12px;
}

.cases-carousel .f-carousel__nav {
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
    padding: 12px 12px 0 12px;
}

.cases-carousel .f-carousel__nav .f-button.is-prev, .cases-carousel .f-carousel__nav .f-button.is-next {
    position: static;
    transform: none;
    border-radius: 30px;
    background: #7C3AED;
    border: 1px solid #7C3AED;
    width: 48px;
    height: 48px;
    margin-left: 16px;
}

.cases-carousel .f-carousel__nav .f-button[disabled] {
    background: rgba(255, 255, 255, 0.45);
}

.cases-carousel .f-button svg {
    width: auto;
    height: auto;
    stroke: none;
}

.cases-carousel .f-button[disabled] svg {
    opacity: 1;
}

.caseblock {
    border-radius: 16px;
    border: 1px solid #E4CFFF;
    background: rgba(124, 58, 237, 0.50);
    padding: 25px 16px 25px 16px;
    overflow: hidden;
}

.caseblock-header {
    padding-bottom: 25px;
}

.caseblock-title {
    font-size: 20px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.caseblock-content {
}

.caseblock-imgbox {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 42.15%;
}

.caseblock-imgbox>* {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.caseblock-imgbox a {
    display: block;
    width: 100%;
    height: 100%;
}

.caseblock-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (min-width: 1200.98px) {

    .cases {
        padding-top: 66px;
        padding-bottom: 85px;
    }

    .cases:before, .cases:after {
        border-radius: 800px;
        z-index: -1;
    }

    .cases:before {
        width: 808.851px;
        height: 798px;
        Position; right: -188px;
        left: auto;
        top: -306px;
    }

    .cases:after {
        width: 559.506px;
        height: 552px;
        Position; bottom: 97px;
        left: -148px;
    }

    .cases-main {
    }

    .cases-header {
        padding-bottom: 35px;
    }

    .cases-title {
    }

    .cases-content {
    }

    .cases-carousel {
    }

    .cases-list {
    }

    .cases-item {
    }

    .cases-carousel .f-carousel__slide {
        width: 50%;
    }

    .cases-carousel .f-carousel__nav {
    }

    .cases-carousel .f-carousel__nav .f-button.is-prev, .cases-carousel .f-carousel__nav .f-button.is-next {
    }

    .cases-carousel .f-carousel__nav .f-button[disabled] {
    }

    .cases-carousel .f-button svg {
    }

    .cases-carousel .f-button[disabled] svg {
    }

    .caseblock {
        padding: 45px 25px 45px 25px;
    }

    .caseblock-header {
        padding-bottom: 31px;
    }

    .caseblock-title {
        font-size: 25px;
    }

    .caseblock-content {
    }

    .caseblock-imgbox {
        padding-bottom: 31.4%;
    }

    .caseblock-imgbox>* {
    }

    .caseblock-imgbox a {
    }

    .caseblock-imgbox img {
    }

}
.consultation {
    margin-top: 30px;
    margin-bottom: 60px;
    position: relative;
}

.consultation-body {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    overflow: hidden;
}

.consultation-main {
    padding: 17px 12px 25px 12px;
    background-image: url(../img/wave-3.png);
    background-repeat: no-repeat;
    background-size: 452px 591px;
    background-position: -105px -294px;
}

.consultation-header {
}

.consultation-title {
    text-align: center;
}

.consultation-title mark {
    color: #9151FF;
    background: none;
    display: inline;
}

.consultation-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 7px;
}

.consultation-description p:first-child {
    margin-top: 0;
}

.consultation-description p:last-child {
    margin-bottom: 0;
}

.consultation-control {
    padding-top: 19px;
}

.consultation-button {
    display: block;
    font-size: 18px;
    padding: 19px 10px 17px;
}

.consultation-content {
    padding-top: 32px;
}

.consultation-formblock {
}

.ps-acceptanceblock {
}

.ps-acceptance {
}

.ps-acceptance__text {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-left: -25px;
    padding-left: 40px;
    color: #ffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
}

.consult {
    padding: 15px 16px 15px 16px;
    border-radius: 10px;
    border: 1px solid #FFF;
    background: rgba(44, 19, 88, 0.50);
}

.consult .wpcf7-not-valid-tip {
    margin-top: 5px;
    text-align: center;
}

.consult__main {
}

.consult__row {
    margin: 0 -12px;
    display: flex;
    flex-wrap: wrap;
}

.consult__col {
    padding: 9px 12px 9px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.consult__fieldblock {
}

.consult__field {
    display: block;
    width: 100%;
    height: 54px;
    font-family: inherit;
    padding: 0 25px 0 25px;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #1E083A;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.consult__field.wpcf7-not-valid {
    border-color: #dc3232;
}

.consult__field:focus {
    outline: none;
}

.consult__field::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__field::-moz-placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__field:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__field::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__field::placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__field:placeholder {
    color: rgba(255, 255, 255, 0.50);
    opacity: 1;
}

.consult__col_textarea {
    width: 100%;
}

.consult__field_textarea {
    resize: none;
    height: 116px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.consult__col_accept {
    padding-top: 15px;
}

.consult__col_submit {
    padding-top: 13px;
}

.consult__submitwrap {
    position: relative;
}

.consult__submitwrap .wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.consult__submit {
    height: 52px;
    display: block;
    width: 100%;
    font-size: 18px;
}

.ps-acceptanceblock {
    padding-bottom: 10px;
    display: block;
}

.ps-acceptanceblock br {
    display: none;
}

.ps-acceptance {
}

.ps-acceptance a {
    text-decoration: underline;
    color: inherit;
}

.ps-acceptance a:hover, .ps-acceptance a:focus {
    text-decoration: none;
}

.ps-acceptance .wpcf7-list-item-label::before, .ps-acceptance .wpcf7-list-item-label::after {
    display: none;
}

.ps-acceptance .wpcf7-form-control {
    display: block;
}

.ps-acceptance .wpcf7-list-item {
    display: block;
    margin: 0;
}

.ps-acceptance .wpcf7-list-item-label {
    line-height: 1;
}

.ps-acceptance label, .ps-acceptance__label {
    font-size: 0;
    user-select: none;
    position: relative;
    display: block;
    cursor: pointer;
}

.ps-acceptance__input {
    display: block;
    width: 25px;
    height: 25px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(-50%); */
    margin: 0;
}

.ps-acceptance__mark {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 25px;
    height: 25px;
    position: relative;
    color: #04424E;
    padding: 3px 0px 0 3px;
    border-radius: 4px;
    border: 1px solid #FFF;
}

.ps-acceptance--black .ps-acceptance__mark {
    border-color: #000;
}

.ps-acceptance__mark:before {
    content: '';
    display: block;
    width: 18px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'><path d='M0.354492 8.03186L7.56661 15.2732L17.3545 0.273239' stroke='white'/></svg>");
    opacity: 0;
}

.ps-acceptance--black .ps-acceptance__mark {
    color: #000;
}

.ps-acceptance__input:checked ~ .wpcf7-list-item-label .ps-acceptance__mark:before {
    opacity: 1;
}

.ps-acceptance--black .ps-acceptance__text {
    color: #000;
}

.ps-acceptance__text a {
    color: #0E51B3;
    text-decoration: underline;
}

.ps-acceptance__text a:hover, .ps-acceptance__text a:focus {
    text-decoration: none;
}

@media (min-width: 1200.98px) {
    .consultation {
        margin-top: 42px;
        margin-bottom: 120px;
    }

    .consultation-body {
        border-radius: 20px;
    }

    .consultation-main {
        display: flex;
        align-items: end;
        padding: 60px 44px 60px 60px;
        background-size: auto;
        background-position: -403px -400px;
    }

    .consultation-header {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        max-width: 695px;
    }

    .consultation-title {
        font-size: 35px;
        margin: 0;
        text-align: left;
        line-height: 1.35;
    }

    .consultation-title mark {
    }

    .consultation-description {
        text-align: left;
        font-size: 22px;
        line-height: 1.22;
    }

    .consultation-description p:first-child {
    }

    .consultation-description p:last-child {
    }

    .consultation-control {
        display: flex;
        padding-top: 26px;
    }

    .consultation-button {
        padding: 14px 20px 18px 20px;
        font-size: 22px;
    }

    .consultation-content {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
        position: relative;
    }

    .consultation-content:before {
        content: '';
        width: 680.124px;
        height: 671px;
        border-radius: 680.124px;
        background: rgba(104, 36, 221, 0.45);
        filter: blur(143.48599243164062px); 
        position: absolute;
        z-index: -1;
        top: -49px;
        right: 75px;
    }

    .consultation-formblock {
        max-width: 784px;
        margin-left: auto;
    }

    .ps-acceptanceblock {
    }

    .ps-acceptance {
    }

    .ps-acceptance__input {
        top: 5px;
    }

    .ps-acceptance__mark {
        margin-top: 5px;
    }

    .ps-acceptance--black .ps-acceptance__mark {
    }

    .ps-acceptance__mark:before {
    }

    .ps-acceptance--black .ps-acceptance__mark {
    }

    .ps-acceptance__input:checked ~ .wpcf7-list-item-label .ps-acceptance__mark:before {
    }

    .ps-acceptance__text {
        font-size: 22px;
        line-height: 1.2;
        padding-left: 41px;
    }

    .consult {
        padding: 35px 24px 35px 24px;
    }

    .consult .wpcf7-not-valid-tip {
    }

    .consult__main {
    }

    .consult__row {
    }

    .consult__col {
    }

    .consult__fieldblock {
    }

    .consult__field {
    }

    .consult__field.wpcf7-not-valid {
    }

    .consult__field:focus {
    }

    .consult__field::-webkit-input-placeholder {
    }

    .consult__field::-moz-placeholder {
    }

    .consult__field:-ms-input-placeholder {
    }

    .consult__field::-ms-input-placeholder {
    }

    .consult__field::placeholder {
    }

    .consult__field:placeholder {
    }

    .consult__col_textarea {
    }

    .consult__field_textarea {
    }

    .consult__col_accept {
        padding-top: 10px;
    }

    .consult__col_submit {
        display: flex;
        justify-content: center;
        padding-top: 8px;
    }

    .consult__submitwrap {
    }

    .consult__submitwrap .wpcf7-spinner {
    }

    .consult__submit {
        font-size: 22px;
        height: 56px;
        padding: 0 36px;
    }

    .ps-acceptanceblock {
    }

    .ps-acceptanceblock br {
    }

    .ps-acceptance {
    }

    .ps-acceptance a {
    }

    .ps-acceptance a:hover, .ps-acceptance a:focus {
    }

    .ps-acceptance .wpcf7-list-item-label::before, .ps-acceptance .wpcf7-list-item-label::after {
    }

    .ps-acceptance .wpcf7-form-control {
    }

    .ps-acceptance .wpcf7-list-item {
    }

    .ps-acceptance .wpcf7-list-item-label {
    }

    .ps-acceptance label, .ps-acceptance__label {
    }

    .ps-acceptance__input {
    }

    .ps-acceptance__mark {
    }

    .ps-acceptance--black .ps-acceptance__mark {
    }

    .ps-acceptance__mark:before {
    }

    .ps-acceptance--black .ps-acceptance__mark {
    }

    .ps-acceptance__input:checked ~ .wpcf7-list-item-label .ps-acceptance__mark:before {
    }

    .ps-acceptance--black .ps-acceptance__text {
    }

    .ps-acceptance__text a {
    }

    .ps-acceptance__text a:hover, .ps-acceptance__text a:focus {
    }
}

.convenience {
    padding-top: 36px;
    padding-bottom: 30px;
    position: relative;
}

.convenience-main {
}

.convenience-header {
    text-align: center;
    padding-bottom: 35px;
}

.convenience-title {
}

.convenience-poster {
    position: relative;
}

.convposter {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
}

.convposter-figure {
    position: relative;
    text-align: right;
}

.convposter-figure:before {
    content: '';
    border-radius: 294px;
    background: rgba(104, 36, 221, 0.35);
    filter: blur(62.02532196044922px); 
    width: 294px;
    height: 290.056px;
    position: absolute;
    bottom: -133px;
    right: 14px;
    z-index: -1;
}

.convposter-figure img {
    width: 237px;
    margin: -15px -9px 0 0px;
}

.convposter-content {
    padding: 29px 20px 25px 20px;
    text-align: center;
}

.convposter-title {
    font-size: 22px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    line-height: 1.32;
}

.convposter-title mark {
    background: none;
    color: #9151FF;
    display: inline;
}

.convposter-description {
    padding-top: 10px;
}

.convposter-buttons {
    padding-top: 24px;
}

.convposter-button {
    padding: 19px 10px 17px;
    font-size: 18px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.convposter-button svg {
    margin-left: 14px;
}

@media (min-width: 1200.98px) {
    .convenience {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .convenience-main {
    }

    .convenience-header {
        padding-bottom: 65px;
    }

    .convenience-title {
    }

    .convenience-poster {
    }

    .convposter {
        border-radius: 20px;
        position: relative;
        min-height: 376px;
    }

    .convposter-figure {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 139px 0 0;
    }

    .convposter-figure:before {
        width: 708.504px;
        height: 699px;
        Position; border-radius: 708.504px;
        background: rgba(104, 36, 221, 0.25);
        filter: blur(149.47349548339844px); 
        right: -231px;
        bottom: -246px;
    }

    .convposter-figure img {
        width: 497px;
        margin: -50px 0 0 0;
    }

    .convposter-content {
        position: relative;
        z-index: 2;
        text-align: left;
        padding: 49px 20px 40px 60px;
        max-width: 780px;
    }

    .convposter-title {
        font-size: 32px;
        line-height: 1.35;
    }

    .convposter-title mark {
    }

    .convposter-description {
        font-size: 18px;
    }

    .convposter-buttons {
        padding-top: 26px;
    }

    .convposter-button {
        font-size: 22px;
        padding: 14px 0 18px 0;
        max-width: 276px;
    }

    .convposter-button svg {
        transform: translateY(3px);
    }
}

.costcalc {
    padding-top: 20px;
    padding-bottom: 22px;
}

.costcalc-main {
}

.costcalc-header {
    text-align: center;
    padding-bottom: 24px;
}

.costcalc-title {
}

.costcalc-description {
}

.costcalc-content {
}

.costcalc-list {
    position: relative;
    margin: 0 -8px;
}

.costcalc-list:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 490.179px;
    background: rgba(104, 36, 221, 0.35);
    filter: blur(103.4133529663086px); 
    width: 490.179px;
    height: 483.604px;
    margin-top: 38px;
    z-index: -1;
}

.costcalc-item {
    padding: 8px;
}


.costcalc-item:nth-child(n+4) {
    display: none;
}

.show-all .costcalc-item:nth-child(n+4) {
    display: block;
}

.costcalc-item:first-child .costcalcblock {
    padding-top: 10px;
}

.costcalc-footer {
    padding-top: 24px;
}

.show-all .costcalc-footer {
    display: none;
}

.costcalc-control {
}

.costcalc-button {
    display: block;
    font-size: 18px;
    padding-top: 19px;
    padding-bottom: 17px;
    width: 100%;
}

.costcalcblock {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    padding: 31px 16px 16px 16px;
}

.costcalcblock-num {
    color: var(--accent-color);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 143%;
    letter-spacing: -0.54px;
    text-transform: lowercase;
    padding-bottom: 8px;
}

.costcalcblock-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.costcalcblock-description {
    padding-top: 19px;
}

@media (min-width: 1200.98px) {
    .costcalc {
        padding-top: 65px;
        padding-bottom: 60px;
        position: relative;
    }

    .costcalc:before, .costcalc:after {
        content: '';
        display: block;
        position: absolute;
        background: rgba(104, 36, 221, 0.35);
        z-index: -1;
    }

    .costcalc:before {
        width: 899px;
        height: 886.94px;
        top: 70px;
        right: -382px;
        border-radius: 899px;
        filter: blur(189.6624298095703px); 
    }

    .costcalc:after {
        width: 907.169px;
        height: 895px;
        border-radius: 907.169px;
        filter: blur(191.38595581054688px); 
        bottom: -422px;
        left: -303px;
    }

    .costcalc-main {
    }

    .costcalc-header {
        padding-bottom: 42px;
    }

    .costcalc-title {
    }

    .costcalc-description {
        max-width: 1190px;
        padding-top: 25px;
    }

    .costcalc-content {
    }

    .costcalc-list {
        margin: 0 -12px;
    }

    .costcalc-list:before {
        display: none;
    }

    .costcalc-item {
        padding: 12px;
    }

    .costcalc-item:first-child .costcalcblock {
        padding-top: 20px;
    }

    .costcalc-footer {
        padding-top: 20px;
    }

    .costcalc-control {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .costcalc-button {
        font-size: 22px;
        padding: 14px 20px 18px 20px;
    }

    .costcalcblock {
        position: relative;
        padding: 20px 20px 24px 120px;
        border-radius: 20px;
    }

    .costcalcblock-num {
        font-size: 35px;
        font-weight: 700;
        position: absolute;
        top: 11px;
        left: 25px;
    }

    .costcalcblock-title {
        font-size: 40px;
        font-weight: 700;
    }

    .costcalcblock-description {
        padding-top: 23px;
    }
}

.cycle {
    padding-top: 22px;
    padding-bottom: 22px;
    position: relative;
}

.cycle:before {
    content: '';
    display: block;
    position: absolute;
    top: -64px;
    right: -204px;
    width: 478px;
    height: 471.588px;
    border-radius: 478px;
    background: rgba(104, 36, 221, 0.25);
    filter: blur(100.84387969970703px); 
    z-index: -1;
}

.cycle-main {
}

.cycle-header {
    text-align: center;
    padding-bottom: 32px;
}

.cycle-title {
}

.cycle-description {
}

.cycle-subtitle {
}

.cycle-content {
}

.cycle-content:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 107px;
    left: -96px;
    width: 478px;
    height: 471.588px;
    border-radius: 478px;
    background: rgba(104, 36, 221, 0.25);
    filter: blur(100.84387969970703px); 
    z-index: -1;
}

.cycle-row {
}

.cycle-col {
}

.cycle-col--entry {
}

.cycle-col--list {
}

.cycle-entry {
}

.cycle-navtabs {
    display: none;
}

.cycle-panelgroup > .panel {
    display: block;
    border-bottom: 1px solid rgb(250, 243, 243, 0.3);
    padding-bottom: 8px;
    padding-top: 13px;
}

.cycle-panelgroup > .panel:last-child {
    border-bottom: none;
}

.cycle-panelgroup {
    padding: 0px 17px 0 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.cycle-panelgroup .panel-heading {
    padding-bottom: 10px;
}

.cyclebutton {
    display: block;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.34;
    color: #FFF;
    position: relative;
}

.cyclebutton-num {
    display: block;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -0.54px;
    padding-bottom: 11px;
}

.cyclebutton-title {
    display: block;
    text-transform: uppercase;
    max-width: 180px;
}

.cyclebutton-icontext {
    border-radius: 100px;
    background: var(--accent-color);
    font-size: 0;
    line-height: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    position: absolute;
    bottom: -2px;
    right: -1px;
}

.cyclebutton-icontext svg {
    transform: rotate(-34deg);
    transition: all 0.3s ease 0s;
}

.collapsed .cyclebutton-icontext {
    background: #2D3540;
}

.collapsed .cyclebutton-icontext svg {
    transform: rotate(0deg);
}

.cycle-tabtext {
    padding: 9px 0 7px 0;
}

@media (min-width: 1200.98px) {
    .cycle {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .cycle:before {
    }

    .cycle-main {
    }

    .cycle-header {
        padding-bottom: 54px;
    }

    .cycle-title {
        padding-bottom: 18px;
    }

    .cycle-description {
        max-width: 1200px;
        padding-top: 14px;
    }

    .cycle-subtitle {
    }

    .cycle-content {
    }

    .cycle-content:before {
    }

    .cycle-row {
    }

    .cycle-col {
    }

    .cycle-col--entry {
    }

    .cycle-col--list {
    }

    .cycle-entry {
    }

    .cycle-navtabs {
    }

    .cycle-panelgroup > .panel {
    }

    .cycle-panelgroup > .panel:after {
    }

    .cycle-panelgroup > .panel:last-child {
    }

    .cycle-panelgroup > .panel:last-child:after {
    }

    .cycle-panelgroup {
    }

    .cycle-panelgroup .panel-heading {
    }

    .cyclebutton {
    }

    .cyclebutton-num {
    }

    .cyclebutton-title {
    }

    .panel:nth-child(2n) .cyclebutton-title {
    }

    .cyclebutton-icontext {
    }

    .cyclebutton-icontext svg {
    }

    .collapsed .cyclebutton-icontext {
    }

    .collapsed .cyclebutton-icontext svg {
    }

    .cycle-tabtext {
    }
}

@media (min-width: 1500.98px) {
    .cycle-panelgroup > .panel {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        position: relative;
        border: none;
        padding: 0 7px;
        min-height: 550px;
    }

    .cycle-panelgroup > .panel:after {
        content: '';
        opacity: 0.3;
        background: linear-gradient(90deg, #FAF3F3 0%, rgba(148, 144, 144, 0.50) 100%);
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        right: -1px;
    }

    .cycle-panelgroup > .panel:last-child {
    }

    .cycle-panelgroup > .panel:last-child:after {
        display: none;
    }

    .cycle-panelgroup {
        padding: 0;
        background: none;
        display: flex;
        margin: 0 -20px;
    }

    .cycle-panelgroup .panel-heading {
        padding: 0 13px 22px;
    }

    .cyclebutton {
        text-align: center;
    }

    .cyclebutton-num {
        font-size: 25px;
        text-align: center;
        font-weight: 700;
        transform: translateY(-4px);
    }

    .cyclebutton-title {
        font-size: 14px;
        max-width: none;
        padding: 143px 20px 9px;
        line-height: 1.45;
    }

    .panel:nth-child(2n) .cyclebutton-title {
        padding-top: 233px;
    }

    .cyclebutton-icontext {
        font-size: 14px;
        width: auto;
        height: auto;
        position: static;
        padding: 17px 5px 19px 8px;
        color: #000;
        background: #fff;
    }

    .cyclebutton-icontext svg {
        transform: none;
        margin-left: 14px;
    }

    .collapsed .cyclebutton-icontext {
        background: var(--accent-color);
        color: #fff;
    }

    .collapsed .cyclebutton-icontext svg {
    }

    .cycle-tabtext {
        color: #0E192A;
        font-size: 14px;
        line-height: 1.22;
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.67);
        padding: 15px 10px 15px 13px;
    }
}

.hero {
    position: relative;
    padding-top: 103px;
    padding-bottom: 30px;
}

.hero-main {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 13px 0 0 0;
    text-align: center;
}

.hero-row {
}

.hero-col {
}

.hero-col--content {
}

.hero-col--figure {
    padding-top: 24px;
}

.hero-texts {
}

.hero-badge {
    border-radius: 30px;
    border: 2px solid #3C1F6F;
    background: rgba(31, 9, 58, 0.65);
    text-align: center;
    color: #D8B5FE;
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1;
    padding: 10px 0 9px 0;
}

.hero-title {
    font-size: 25px;
    font-family: var(--font-secondary);
    line-height: 1.35;
    padding: 12px 0 0 0;
    text-transform: uppercase;
}

.hero-subtitle {
    padding-top: 16px;
}

.hero-description {
    font-size: 16px;
    padding-top: 7px;
    line-height: 1.2;
}

.hero-description p:first-child {
    margin-top: 0;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-buttons {
}

.hero-buttons {
    margin: 0 -8px;
    padding-top: 11px;
}

.hero-buttons>div {
    padding: 8px;
}

.hero-button {
    font-size: 18px;
    display: block;
}

.hero-figure {
}

.hero-picture {
    border-radius: 10px;
    background: linear-gradient(180deg, #1A0839 0%, #6221CF 100%);
}

.hero-pic {
    padding: 21px 7px 20px 11px;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.hero-pic:before {
    content: '';
    display: block;
    width: 292.109px;
    height: 95.503px;
    transform: rotate(-19.194deg);
    border-radius: 50%;
    background: #926CD4;
    filter: blur(25.804676055908203px); 
    position: absolute;
    bottom: 36px;
    right: 10px;
    z-index: 0;
}

.hero-pic img {
    position: relative;
    z-index: 1;
}

@media (min-width: 1200.98px) {
    .hero {
        padding-top: 138px;
        padding-bottom: 138px;
        position: relative;
    }

    .hero:before, .hero:after {
        content: '';
        display: block;
        width: 808.851px;
        height: 798px;
        border-radius: 808.851px;
        background: rgba(124, 58, 237, 0.45);
        filter: blur(170.64356994628906px); 
        position: absolute;
        z-index: -1;
    }

    .hero:before {
        top: -132px;
        right: -413px;
    }

    .hero:after {
        left: -391px;
        bottom: -238px;
    }

    .hero-main {
    }

    .hero-content {
        text-align: left;
        padding: 176px 0 0 0;
    }

    .hero-row {
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .hero-col {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-col--content {
        padding-top: 11px;
    }

    .hero-col--figure {
    }

    .hero-texts {
        max-width: 730px;
    }

    .hero-badge {
        font-size: 26px;
        display: inline-block;
        padding: 14px 20px 19px 20px;
        width: 100%;
        border-radius: 40px;
        max-width: 678px;
    }

    .hero-title {
        padding-top: 25px;
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 35px;
        padding-top: 26px;
        line-height: 1.35;
    }

    .hero-description {
        font-size: 22px;
        max-width: 700px;
        line-height: 1.22;
        padding-top: 15px;
    }

    .hero-description p:first-child {
    }

    .hero-description p:last-child {
    }

    .hero-buttons {
        margin: 0 -16px;
    }

    .hero-buttons {
        display: flex;
        max-width: 738px;
        margin: 0 -12px;
        padding-top: 15px;
    }

    .hero-buttons>div {
        padding: 12px;
        /* flex: 1 0 0; */
        /* width: 100%; */
        /* max-width: 100%; */
    }

    .hero-button {
        font-size: 22px;
        min-height: 56px;
        border-radius: 100px;
        display: block;
        width: 100%;
        padding: 14px 19px 18px;
    }

    .hero-figure {
        margin-top: 80px;
    }

    .hero-picture {
        border-radius: 30.6px;
    }

    .hero-pic {
        padding: 0 57px 0 53px;
        max-width: none;
        text-align: center;
    }

    .hero-pic:before {
        width: 566px;
        height: 185.049px;
        right: 45px;
        bottom: 53px;
        filter: blur(50px); 
    }

    .hero-pic img {
        margin: -72px 0 -102px 0;
    }
}


@media (min-width: 1500.98px) {
    .hero-row {
        display: flex;
    }

    .hero-figure {
        max-width: 807px;
        margin-left: auto;
        margin-top: 0;
    }
}
.infos {
    text-align: center;
    position: relative;
    padding-top: 48px;
    padding-bottom: 25px;
}

.infos:before, .infos:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(104, 36, 221, 0.45);
    filter: blur(53.45976638793945px); 
    width: 253.399px;
    height: 250px;
    border-radius: 250px;
}

.infos:before {
    top: -20px;
    right: -56px;
}

.infos:after {
    bottom: -88px;
    left: -73px;
}

.infos-main {
    position: relative;
    z-index: 2;
}

.infos-list {
    margin: 0 -12px;
}

.infos-item {
    padding: 12px;
}

.infoblock {
    border-radius: 30px;
    border: 1px solid #FFF;
    background: rgba(13, 4, 29, 0.50);
    padding: 21px 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 190px;
    justify-content: center;
}

.infoblock-title {
    color: #A374FF;
    font-family: var(--font-secondary);
    font-size: 30px;
    line-height: 1.35;
}

.infoblock-description {
    font-size: 22px;
    line-height: 1.25;
    padding-top: 13px;
}

.infoblock-description p:first-child {
    margin-top: 0;
}

.infoblock-description p:last-child {
    margin-bottom: 0;
}



@media (min-width: 1200.98px) {

    .infos {
        padding-top: 104px;
        padding-bottom: 50px;
    }

    .infos:before, .infos:after {
        width: 507.812px;
        height: 501px;
    }

    .infos:before {
        top: -41px;
        right: -118px;
    }

    .infos:after {
        bottom: -276px;
        left: -227px;
    }

    .infos-main {
    }

    .infos-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -16px;
    }

    .infos-item {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    .infoblock {
        min-height: 245px;
        padding: 36px 0 35px 0;
        height: 100%;
    }

    .infoblock-title {
        font-size: 42px;
    }

    .infoblock-description {
        font-size: 26px;
        padding-top: 23px;
    }

    .infoblock-description p:first-child {
    }

    .infoblock-description p:last-child {
    }

}
.locals {
    padding-top: 20px;
    padding-bottom: 22px;
}

.locals-main {
}

.locals-header {
    text-align: center;
    padding-bottom: 24px;
}

.locals-title {
}

.locals-description {
}

.locals-content {
}

.locals-list {
    position: relative;
    margin: 0 -8px;
}

.locals-list:before {
    content: '';
    position: absolute;
    top: -170px;
    margin-left: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(104, 36, 221, 0.35);
    margin-top: 38px;
    z-index: -1;
    width: 840px;
    height: 828.732px;
    Position; border-radius: 840px;
    filter: blur(177.21517944335938px); 
}

.locals-item {
    padding: 8px;
}

.locals-item:first-child .localsblock {
    padding-top: 10px;
}

.locals-footer {
    padding-top: 24px;
}

.locals-control {
}

.locals-button {
    display: block;
    font-size: 18px;
    padding-top: 19px;
    padding-bottom: 17px;
}

.localsblock {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    padding: 11px 16px 16px 16px;
}

.localsblock-num {
    color: var(--accent-color);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 143%;
    letter-spacing: -0.54px;
    text-transform: lowercase;
    padding-bottom: 8px;
    font-weight: 700;
}

.localsblock-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.localsblock-description {
    padding-top: 19px;
}

@media (min-width: 1200.98px) {
    .locals {
        padding-top: 66px;
        padding-bottom: 60px;
    }

    .locals-main {
    }

    .locals-header {
        padding-bottom: 37px;
    }

    .locals-title {
    }

    .locals-description {
        max-width: 1280px;
    }

    .locals-content {
        padding: 0 3px;
    }

    .locals-list {
        margin: 0 -20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .locals-list:before {
        left: -377px;
        top: -437px;
        transform: none;
    }

    .locals-item {
        padding: 17px 20px 18px;
        flex: 0 0 auto;
        width: 50%;
        max-width: 100%;
    }

    .locals-item:first-child .localsblock {
        padding-top: 8px;
    }

    .locals-footer {
    }

    .locals-control {
    }

    .locals-button {
    }

    .localsblock {
        border-radius: 20px;
        padding: 8px 25px 27px;
    }

    .localsblock-num {
        font-size: 45px;
        padding-bottom: 6px;
    }

    .localsblock-title {
        font-size: 25px;
    }

    .localsblock-description {
        padding-top: 16px;
    }
}

.modern {
    padding-top: 22px;
    padding-bottom: 22px;
}

.modern-main {
}

.modern-header {
    text-align: center;
    padding-bottom: 32px;
}

.modern-title {
}

.modern-description {
}

.modern-content {
}

.modern-row {
}

.modern-col {
}

.modern-col--entry {
}

.modern-col--list {
}

.modern-entry {
}

.modern-picture {
}

.modern-pic {
    border-radius: 10px;
    overflow: hidden;
}

.modernblock-text {
    padding-top: 24px;
}

.modern-list {
    padding-top: 17px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgb(250, 243, 243, 0.3);
    position: relative;
}

.modern-list:before {
    content: '';
    display: block;
    background: rgba(104, 36, 221, 0.45);
    filter: blur(53.45976638793945px); 
    width: 253.399px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    bottom: 40.2%;
    right: -53.4%;
    z-index: -1;
}

.modern-item {
    padding: 6px 0;
}

.modernblock {
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(250, 243, 243, 0.3);
}

.modern-item:last-child .modernblock {
    border-bottom: 0;
}

.modernblock-num {
    color: var(--accent-color);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font-secondary);
    font-size: 25px;
    line-height: 143%;
    letter-spacing: -0.75px;
    text-transform: lowercase;
    padding-bottom: 4px;
}

.modernblock-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.modernblock-description {
    padding-top: 19px;
}

@media (min-width: 1200.98px) {
    .modern {
        padding: 177px 0 40px 0;
        position: relative;
    }

    .modern:before, .modern:after {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
    }

    .modern:before {
        width: 787.565px;
        height: 777px;
        border-radius: 787.565px;
        background: rgba(104, 36, 221, 0.35);
        filter: blur(166.1529541015625px); 
        top: 92px;
        right: -392px;
    }

    .modern:after {
        width: 507.812px;
        height: 501px;
        border-radius: 507.812px;
        background: rgba(71, 30, 140, 0.45);
        filter: blur(150px); 
        left: -228px;
        top: 268px;
    }

    .modern-main {
    }

    .modern-header {
        padding-bottom: 54px;
    }

    .modern-title {
    }

    .modern-description {
        max-width: 800px;
    }

    .modern-content {
        border-bottom: 1px solid rgb(250, 243, 243, 0.3);
        padding-bottom: 33px;
    }

    .modern-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px;
    }

    .modern-col {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .modern-col--entry {
    }

    .modern-col--list {
        max-width: 647px;
    }

    .modern-entry {
    }

    .modern-picture {
    }

    .modern-pic {
        border-radius: 20px;
    }

    .modern-pic img {
        width: 100%;
        max-height: 576px;
        object-fit: cover;
    }

    .modernblock-text {
        padding-top: 19px;
    }

    .modern-list {
        border: none;
        border-left: 1px solid rgb(250, 243, 243, 0.3);
        padding: 0 0 0 40px;
    }

    .modern-list:before {
        display: none;
    }

    .modern-item {
        padding: 0 0 21px 0;
    }

    .modern-item:last-child {
        padding-bottom: 18px;
    }

    .modernblock {
        padding-bottom: 34px;
    }

    .modern-item:last-child .modernblock {
        padding-bottom: 0;
    }

    .modernblock-num {
        line-height: 1;
        padding-bottom: 14px;
        transform: translateY(-4px);
    }

    .modernblock-title {
        font-size: 25px;
    }

    .modernblock-description {
        font-size: 18px;
        padding-top: 22px;
        max-width: 500px;
    }
}

.niches {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.niches:before {
    content: '';
    display: block;
    position: absolute;
    top: -56px;
    right: -204px;
    width: 478px;
    height: 471.588px;
    border-radius: 478px;
    background: rgba(104, 36, 221, 0.25);
    filter: blur(100.84387969970703px); 
    z-index: -1;
}

.niches-main {
}

.niches-header {
    text-align: center;
    padding-bottom: 25px;
}

.niches-title {
}

.niches-description {
    padding-bottom: 6px;
}

.niches-subtitle {
}

.niches-content {
}

.niches-row {
}

.niches-col {
}

.niches-col--entry {
}

.niches-col--list {
}

.niches-entry {
}

.niches-navtabs {
    display: none;
}

.niches-panelgroup > .panel {
    display: block;
    border-bottom: 1px solid rgb(250, 243, 243, 0.3);
    padding-bottom: 7px;
    padding-top: 13px;
}

.niches-panelgroup > .panel:last-child {
    border-bottom: none;
}

.niches-panelgroup {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 0px 17px 2px 16px;
}

.niches-panelgroup .panel-heading {
    padding-bottom: 10px;
}

.nichebutton {
    display: block;
    font-family: var(--font-secondary);
    font-size: 18px;
    color: #FFF;
    position: relative;
}

.nichebutton-num {
    display: block;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -0.54px;
    padding-bottom: 11px;
}

.nichebutton-title {
    display: block;
    text-transform: uppercase;
    max-width: 160px;
}

.nichebutton-icon {
    border-radius: 100px;
    background: var(--accent-color);
    font-size: 0;
    line-height: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    position: absolute;
    bottom: -2px;
    right: -1px;
}

.nichebutton-icon svg {
    transform: rotate(-34deg);
    transition: all 0.3s ease 0s;
}

.collapsed .nichebutton-icon {
    background: #2D3540;
}

.collapsed .nichebutton-icon svg {
    transform: rotate(0deg);
}

.niches-tabtext {
    padding: 8px 0 9px 0;
}

.niches-poster {
    padding-top: 32px;
    position: relative;
}

.niches-poster:before {
    content: '';
    display: block;
    width: 478px;
    height: 471.588px;
    border-radius: 478px;
    background: rgba(104, 36, 221, 0.25);
    position: absolute;
    top: -261px;
    left: -116px;
    z-index: -1;
}

.nposter {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    overflow: hidden;
}

.nposter-figures {
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 27px 23px 0 0;
    position: relative;
}

.nposter-figures:before {
    content: '';
    display: block;
    background-image: url(../img/wave.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 100% 0;
    width: 125%;
    position: absolute;
    left: -50px;
    top: -32px;
    height: 180px;
    z-index: -1;
}

.nposter-figures div {
    position: relative;
}

.nposter-figures div:before {
    content: '';
    display: block;
    transform: rotate(-14.872deg);
    position: absolute;
    background: rgba(104, 36, 221, 0.35);
    border-radius: 50%;
    z-index: -1;
}

.nposter-figures div img {
}

.nposter-figures div:nth-child(1) {
    padding: 0 10px 0 0;
}

.nposter-figures div:nth-child(1):before {
    width: 132.173px;
    height: 132.357px;
    top: -18px;
    right: -1px;
    filter: blur(29.31852912902832px); 
    transform: rotate(-7.559deg);
}

.nposter-figures div:nth-child(1) img {
    width: 83px;
    height: auto;
}

.nposter-figures div:nth-child(2) {
    padding-bottom: 17px;
}

.nposter-figures div:nth-child(2):before {
    filter: blur(48.927978515625px); 
    width: 231.919px;
    height: 228.808px;
    right: -19px;
    top: -30px;
}

.nposter-figures div:nth-child(2) img {
    width: 145px;
}

.nposter-content {
    padding: 61px 20px 25px 20px;
    text-align: center;
}

.nposter-title {
    padding: 0 20px;
}

.nposter-title mark {
    background: none;
    color: #9151FF;
    display: inline;
}

.nposter-description {
    padding-top: 9px;
}

.nposter-buttons {
    padding-top: 24px;
}

.nposter-button {
    padding: 19px 0 17px;
    display: block;
    font-size: 18px;
}

@media (min-width: 1200.98px) {
    .niches {
        padding-top: 75px;
        padding-bottom: 70px;
    }

    .niches:before {
        width: 808.851px;
        height: 798px;
        border-radius: 808.851px;
        filter: blur(170.64356994628906px); 
        top: -81px;
        right: -188px;
    }

    .niches-main {
    }

    .niches-header {
        padding-bottom: 55px;
    }

    .niches-title {
    }

    .niches-description {
        max-width: 1077px;
        margin: 0 auto;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .niches-subtitle {
        padding-top: 26px;
    }

    .niches-content {
    }

    .niches-row {
    }

    .niches-col {
    }

    .niches-col--entry {
    }

    .niches-col--list {
    }

    .niches-entry {
        display: flex;
        flex-wrap: wrap;
    }

    .niches-navtabs {
        display: block;
        flex: 1 0 0;
        width: 100%;
        max-width: 690px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
        margin-right: 27px;
        padding: 9px 25px 10px 25px;
    }

    .niches-navtabs>li {
        border-bottom: 1px solid rgb(250, 243, 243, 0.3);
        padding: 10px 0 0 0;
    }

    .niches-navtabs>li:last-child {
        border-bottom: 0;
    }

    .niches-panelgroup > .panel {
        display: none;
        padding: 0;
        border: none;
    }

    .niches-panelgroup > .panel.active {
        display: block;
    }

    .niches-panelgroup > .panel:last-child {
    }

    .niches-panelgroup {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        padding: 10px 60px 10px 26px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), url("../../img/wave-lg.png");
        background-repeat: no-repeat no-repeat;
        background-position: 100% 100%, 151px 236px;
    }

    .niches-panelgroup .panel-heading {
        display: none;
    }

    .niches-panelgroup .panel-collapse {
        display: block;
        height: auto !important;
    }

    .nichebutton {
        padding-bottom: 17px;
    }

    .nichebutton-num {
        font-size: 35px;
        font-weight: 700;
        padding-bottom: 17px;
    }

    .nichebutton-title {
        font-size: 25px;
        max-width: none;
    }

    .nichebutton-icon {
        background: #2D3540;
        width: 55px;
        height: 55px;
        right: 0px;
        bottom: 15px;
    }

    .nichebutton-icon svg {
        transform: rotate(0deg);
    }

    .active .nichebutton-icon {
        background: var(--accent-color);
    }

    .active .nichebutton-icon svg {
        transform: rotate(-34deg);
    }

    .collapsed .nichebutton-icon {
    }

    .collapsed .nichebutton-icon svg {
    }

    .niches-tabtext {
        line-height: 1.4;
        letter-spacing: -0.66px;
    }

    .niches-poster {
        padding-top: 60px;
    }

    .niches-poster:before {
        width: 700px;
        height: 690.61px;
        border-radius: 700px;
        background: rgba(104, 36, 221, 0.25);
        filter: blur(147.6793212890625px); 
        bottom: -187px;
        top: auto;
        left: -202px;
    }

    .nposter {
        border-radius: 20px;
        position: relative;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), url("../../img/wave-lg-2.png");
        background-repeat: no-repeat no-repeat;
        background-position: 100% 100%, 382px -555px;
        min-height: 417px;
    }

    .nposter-figures {
        padding: 27px 60px 0 0;
        position: absolute;
        top: 0;
        right: 0;
    }

    .nposter-figures:before {
        display: none;
    }

    .nposter-figures div {
    }

    .nposter-figures div:before {
    }

    .nposter-figures div img {
        transform: rotate(7deg);
    }

    .nposter-figures div:nth-child(1) {
        padding: 0 59px 54px 0;
    }

    .nposter-figures div:nth-child(1):before {
        width: 266.46px;
        height: 266.83px;
        border-radius: 266.83px;
        top: -39px;
        right: 38px;
        filter: blur(59.10591125488281px); 
    }

    .nposter-figures div:nth-child(1) img {
        width: 168px;
    }

    .nposter-figures div:nth-child(2) {
        padding-bottom: 0px;
    }

    .nposter-figures div:nth-child(2):before {
        width: 569.825px;
        height: 562.181px;
        border-radius: 569.825px;
        background: rgba(104, 36, 221, 0.35);
        right: -43px;
        top: -80px;
        filter: blur(120.21627044677734px); 
    }

    .nposter-figures div:nth-child(2) img {
        width: 358px;
    }

    .nposter-content {
        position: relative;
        padding: 108px 0 80px 60px;
        margin-right: auto;
        max-width: 600px;
        text-align: left;
    }

    .nposter-title {
        font-size: 35px;
        padding: 0;
    }

    .nposter-title mark {
    }

    .nposter-description {
        padding-top: 7px;
    }

    .nposter-buttons {
        padding-top: 27px;
    }

    .nposter-button {
        max-width: 365px;
        font-size: 22px;
        padding: 13px 0 19px 0;
    }
}

.poster {
    margin-top: 32px;
    margin-bottom: 32px;
}

.poster--secondary {
    margin-top: 0;
}

.poster-main {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    overflow: hidden;
}

.poster-figures {
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 47px 31px 0 0;
    position: relative;
}

.poster--secondary .poster-figures {
    padding: 29px 16px 0 0;
}

.poster-figures:before {
    content: '';
    display: block;
    background-image: url(../img/wave-2.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 100% 0;
    width: 150%;
    position: absolute;
    right: -83px;
    top: -26px;
    height: 189px;
    z-index: -1;
}

.poster--secondary .poster-figures:before {
    right: -110px;
    top: -11px;
    height: 208px;
}

.poster-figures div {
    position: relative;
}

.poster-figures div:before {
    content: '';
    display: block;
    transform: rotate(-14.872deg);
    position: absolute;
    background: rgba(104, 36, 221, 0.35);
    border-radius: 50%;
    z-index: -1;
}

.poster-figures div img {
    transform: rotate(-5deg);
}

.poster-figures div:nth-child(1) {
    padding: 0 16px 0 0;
}

.poster-figures div:nth-child(1):before {
    top: -14px;
    right: 7px;
    width: 100.447px;
    height: 101.973px;
    transform: rotate(-20.7deg);
    filter: blur(22.356660842895508px); 
}

.poster-figures div:nth-child(1) img {
    width: 63px;
    height: auto;
}

.poster--secondary .poster-figures div:nth-child(1) {
    padding: 0;
}

.poster--secondary .poster-figures div:nth-child(1):before {
    display: none;
}

.poster--secondary .poster-figures div:nth-child(1) img {
    width: 148px;
    transform: rotate(-16deg);
}

.poster-figures div:nth-child(2) {
    padding-bottom: 8px;
}

.poster-figures div:nth-child(2):before {
    filter: blur(45.471500396728516px); 
    right: -18px;
    top: -26px;
    width: 214.823px;
    height: 214.864px;
    transform: rotate(-20.699deg);
}

.poster-figures div:nth-child(2) img {
    width: 135px;
}

.poster-content {
    padding: 60px 20px 25px 20px;
    text-align: center;
}

.poster--secondary .poster-content {
    padding-top: 35px;
}

.poster-title {
    /* padding: 0 20px; */
}

.poster--secondary .poster-title {
    padding: 0;
}

.poster-title mark {
    background: none;
    color: #9151FF;
    display: inline;
}

.poster-description {
    padding-top: 10px;
}

.poster-buttons {
    padding-top: 24px;
}

.poster-button {
    padding: 2px 0 0 0;
    line-height: 1.2;
    display: block;
    font-size: 18px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1200.98px) {
    .poster {
        margin-top: 30px;
        position: relative;
        margin-bottom: 50px;
    }

    .poster:after {
        content: '';
        display: block;
        width: 708.504px;
        height: 699px;
        border-radius: 708.504px;
        background: rgba(104, 36, 221, 0.25);
        filter: blur(149.47349548339844px); 
        position: absolute;
        top: -265px;
        right: -313px;
        z-index: -1;
    }

    .poster--secondary {
    }

    .poster--secondary:after {
        display: none;
    }

    .poster-main {
        border-radius: 20px;
        position: relative;
        min-height: 417px;
    }

    .poster-main:before {
        content: '';
        display: block;
        width: 700px;
        height: 690.61px;
        border-radius: 700px;
        background: rgba(104, 36, 221, 0.25);
        filter: blur(147.6793212890625px); 
        position: absolute;
        top: -39px;
        left: -270px;
    }

    .poster--secondary .poster-main:before {
        display: none;
    }

    .poster-figures {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        padding: 27px 61px 0 0;
        background-image: url(../img/wave-2-lg.png);
        background-position: right -15px bottom 3px;
        background-repeat: no-repeat;
    }

    .poster--secondary .poster-figures {
        padding: 19px 168px 0 0;
        background-position: right -15px bottom 14px;
    }

    .poster-figures:before {
        opacity: 0;
    }

    .poster--secondary .poster-figures:before {
    }

    .poster-figures div {
    }

    .poster-figures div:before {
    }

    .poster-figures div img {
        transform: rotate(7deg);
    }

    .poster-figures div:nth-child(1) {
        padding: 0 58px 54px 0;
    }

    .poster-figures div:nth-child(1):before {
        width: 266.46px;
        height: 266.83px;
        transform: rotate(-7.559deg);
        border-radius: 266.83px;
        filter: blur(59.10591125488281px); 
        top: -39px;
        right: 37px;
    }

    .poster-figures div:nth-child(1) img {
        width: 168px;
    }

    .poster--secondary .poster-figures div:nth-child(1) {
    }

    .poster--secondary .poster-figures div:nth-child(1):before {
    }

    .poster--secondary .poster-figures div:nth-child(1) img {
        width: 397px;
        transform: none;
    }

    .poster-figures div:nth-child(2) {
        padding: 0 0 0 0;
    }

    .poster-figures div:nth-child(2):before {
        width: 569.825px;
        height: 562.181px;
        transform: rotate(-7.559deg);
        border-radius: 569.825px;
        filter: blur(120.21627044677734px); 
        right: -44px;
        top: -80px;
    }

    .poster-figures div:nth-child(2) img {
        width: 358px;
    }

    .poster-content {
        position: relative;
        padding: 112px 0 80px 60px;
        margin-right: auto;
        max-width: 600px;
        text-align: left;
    }

    .poster--secondary .poster-content {
        padding-top: 54px;
        max-width: 900px;
        padding-bottom: 40px;
    }

    .poster-title {
        font-size: 35px;
    }

    .poster--secondary .poster-title {
        max-width: 700px;
        margin: 0;
    }

    .poster-title mark {
    }

    .poster-description {
        font-size: 18px;
        line-height: 1.22;
    }

    .poster-buttons {
        padding-top: 27px;
        display: flex;
    }

    .poster-button {
        font-size: 22px;
        padding: 5px 19px 9px;
    }
}

.projects {
    padding-top: 22px;
}

.projects-main {
}

.projects-header {
    text-align: center;
    padding-bottom: 24px;
}

.projects-title {
}

.projects-subtitle {
    font-size: 18px;
    line-height: 1.34;
    padding-top: 7px;
}

.projects-description {
    padding-top: 11px;
}

.projects-content {
}

.projects-list {
    margin: 0 -8px;
}

.projects-item {
    padding: 16px;
}

.projects-footer {
    padding-top: 16px;
}

.projects-control {
}

.projects-button {
    font-size: 18px;
    display: block;
    padding: 19px 10px 17px;
}

.projectsblock {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    padding: 25px 16px 11px;
}

.projectsblock-row {
}

.projectsblock-col {
}

.projectsblock-col--thumb {
}

.projectsblock-col--content {
}

.projectsblock-picture {
}

.projectsblock-pic {
    border-radius: 10px;
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 69.5%;
}

.projectsblock-pic>* {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.projectsblock-content {
    padding-top: 22px;
}

.projectsblock-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.36;
    padding-bottom: 10px;
    font-weight: 700;
}

.projectsblock-list {
}

.projectsblock-item {
    padding: 8px 0;
}

.pbiblock {
}

.pbiblock-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.projectsblock-item:last-child .pbiblock-title {
    font-size: 18px;
    padding-bottom: 3px;
}

.pbiblock-description {
    padding-top: 17px;
}

.pbiblock-tags {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
    padding: 10px 0 0 0;
}

.pbiblock-tagsitem {
    padding: 5px 6px;
}

.pbiblock-tag {
    border-radius: 100px;
    border: 1px solid #fff;
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 23px;
    font-weight: bold;
}

@media (min-width: 1200.98px) {
    .projects {
        padding-top: 53px;
        padding-bottom: 30px;
    }

    .projects-main {
    }

    .projects-header {
        padding-bottom: 38px;
    }

    .projects-title {
    }

    .projects-subtitle {
        font-size: 25px;
        padding-top: 26px;
    }

    .projects-description {
        padding-top: 14px;
        max-width: 1170px;
    }

    .projects-content {
    }

    .projects-list {
        margin: 0 -16px;
    }

    .projects-item {
    }

    .projects-footer {
    }

    .projects-control {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .projects-button {
        padding: 14px 20px 18px;
        font-size: 22px;
    }

    .projectsblock {
        border-radius: 20px;
        padding: 20px 25px 12px 25px;
    }

    .projectsblock-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -16px;
    }

    .projects-item:nth-child(2n) .projectsblock-row {
        flex-direction: row-reverse;
    }

    .projectsblock-col {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    .projectsblock-col--thumb {
        max-width: 802px;
        padding-top: 5px;
    }

    .projectsblock-col--content {
    }

    .projectsblock-picture {
    }

    .projectsblock-pic {
        padding-bottom: 40.4%;
    }

    .projectsblock-pic>* {
    }

    .projectsblock-content {
        padding: 0;
    }

    .projectsblock-title {
        font-size: 40px;
        padding-bottom: 11px;
    }

    .projectsblock-list {
    }

    .projectsblock-item {
    }

    .pbiblock {
    }

    .pbiblock-title {
        font-size: 22px;
    }

    .projectsblock-item:last-child .pbiblock-title {
        font-size: 22px;
        padding-bottom: 4px;
    }

    .pbiblock-description {
        font-size: 18px;
        padding-top: 20px;
    }

    .pbiblock-tags {
        margin: 0 -4px;
    }

    .pbiblock-tagsitem {
        padding: 4px;
    }

    .pbiblock-tag {
        padding: 10px 24px 10px 23px;
    }
}

.technologies {
    padding-top: 22px;
    padding-bottom: 22px;
}

.technologies-header {
    text-align: center;
}

.technologies-title {
    text-align: center;
}

.technologies-content {
    padding-top: 19px;
}

.technologies-list {
}

.technologies-item {
    padding: 12px 0;
}

.technology {
    text-align: center;
}

.technology-picture {
}

.technology-pic {
    border-radius: 100px;
    border: 2.057px solid #E4CFFF;
    background: rgba(124, 58, 237, 0.50);
    text-align: center;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-pic img {
    width: 25px;
    height: auto;
}

.technology-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.32;
    padding-top: 16px;
}

.technology-description {
    padding-top: 19px;
}

@media (min-width: 1200.98px) {
    .technologies {
        padding-top: 49px;
        padding-bottom: 39px;
    }

    .technologies-header {
    }

    .technologies-title {
        max-width: none;
    }

    .technologies-content {
        padding-top: 10px;
    }

    .technologies-list {
        display: flex;
        flex-wrap: wrap;
        max-width: 1366px;
        margin: 0 auto;
    }

    .technologies-item {
        flex: 0 0 auto;
        width: 50%;
        max-width: 100%;
        padding: 44px 0;
    }

    .technology {
        max-width: 566px;
        margin: 0 auto;
    }

    .technology-picture {
    }

    .technology-pic {
        width: 72px;
        height: 72px;
    }

    .technology-pic img {
        width: auto;
    }

    .technology-title {
        font-size: 25px;
        padding-top: 21px;
    }

    .technology-description {
        padding-top: 22px;
    }
}


.videosection {
    padding-top: 21px;
    padding-bottom: 21px;
}

.videosection-main {
}

.videosection-header {
    padding-bottom: 33px;
}

.videosection-title {
    text-align: center;
}

.videosection-content {
}

.videobox {
    border-radius: 30px;
    background: #1B0C36;
    overflow: hidden;
    position: relative;
}

.videobox-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1px 1px 0px;
    font-size: 0;
    line-height: 1;
}

.videobox.active .videobox-button {
    display: none;
}

.videobox-button img {
    width: 74.256px;
    height: auto;
}

.videobox-embed {
    height: 426px;
}

.videobox-embed iframe {
    width: 100%;
    height: 100%;
}

.videosection-footer {
    padding-top: 24px;
}

.videosection-button {
    font-size: 18px;
    text-align: center;
    display: block;
}


@media (min-width: 1200.98px) {
    .videosection {
        padding-top: 49px;
        padding-bottom: 49px;
        position: relative;
    }

    .videosection-main {
    }

    .videosection-header {
        padding-bottom: 46px;
    }

    .videosection-title {
    }

    .videosection-content {
    }

    .videobox {
    }

    .videobox-button {
        padding: 1px 0 0 0;
    }

    .videobox.active .videobox-button {
    }

    .videobox-button img {
        width: 140px;
    }

    .videobox-embed {
        height: 642px;
    }

    .videobox-embed iframe {
    }

    .videosection-footer {
        padding-top: 40px;
        font-size: 0;
        text-align: center;
    }

    .videosection-button {
        font-size: 20px;
        display: inline-block;
        min-width: 359px;
    }
}
.workhow {
    padding-top: 18px;
    padding-bottom: 22px;
}

.workhow-main {
}

.workhow-header {
    text-align: center;
    padding-bottom: 24px;
}

.workhow-title {
}

.workhow-description {
}

.workhow-content {
}

.workhow-list {
    position: relative;
    margin: 0 -8px;
}

.workhow-list:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 490.179px;
    background: rgba(104, 36, 221, 0.35);
    filter: blur(103.4133529663086px); 
    width: 490.179px;
    height: 483.604px;
    margin-top: 38px;
    z-index: -1;
}

.workhow-item {
    padding: 8px;
}

.workhow-item:first-child .workhowblock {
    padding-top: 10px;
}

.workhowblock {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    padding: 37px 16px 16px 16px;
}

.workhowblock-num {
    color: var(--accent-color);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 143%;
    letter-spacing: -0.54px;
    text-transform: lowercase;
    padding-bottom: 8px;
}

.workhowblock-title {
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.workhowblock-description {
    padding-top: 19px;
}

@media (min-width: 1200.98px) {
    .workhow {
        padding-top: 27px;
        position: relative;
        padding-bottom: 45px;
    }

    .workhow:before, .workhow:after {
        content: '';
        display: block;
        width: 840px;
        height: 828.732px;
        border-radius: 840px;
        background: rgba(104, 36, 221, 0.35);
        filter: blur(177.21517944335938px); 
        position: absolute;
        z-index: -1;
    }

    .workhow:before {
        left: -325px;
        top: -110px;
    }

    .workhow:after {
        right: -368px;
        bottom: -259px;
    }

    .workhow-main {
    }

    .workhow-header {
        padding-bottom: 36px;
    }

    .workhow-title {
    }

    .workhow-description {
    }

    .workhow-content {
        padding: 0 3px;
    }

    .workhow-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px;
        justify-content: center;
    }

    .workhow-list:before {
        display: none;
    }

    .workhow-item {
        flex: 0 0 auto;
        width: 50%;
        max-width: 100%;
        padding: 18px 20px 17px;
    }

    .workhowblock {
        border-radius: 20px;
        padding: 8px 25px 24px 25px;
        height: 100%;
    }

    .workhow-item:first-child .workhowblock {
        padding-top: 8px;
    }

    .workhowblock-num {
        font-size: 45px;
        font-weight: 700;
        padding-bottom: 6px;
    }

    .workhowblock-title {
        font-size: 25px;
    }

    .workhowblock-description {
        line-height: 1.5;
        padding-top: 13px;
    }
}

.workingproject {
    padding-top: 30px;
    padding-bottom: 24px;
}

.workingproject-header {
    text-align: center;
}

.workingproject-title {
    text-align: center;
}

.workingproject-description {
}

.workingproject-content {
    padding-top: 24px;
}

.workingproject-list {
}

.workingproject-item {
    padding: 8px 0;
}

.workingprojectblock {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 -2px 10px 0 rgba(233, 223, 255, 0.30), 0 -2px 40px 0 rgba(187, 155, 255, 0.15), 0 0.5px 0 0 rgba(255, 255, 255, 0.50) inset;
    padding: 16px 16px 16px 16px;
}

.workingprojectblock-picture {
}

.workingprojectblock-pic {
    border-radius: 100px;
    border: 2.057px solid #E4CFFF;
    background: rgba(124, 58, 237, 0.50);
    text-align: center;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workingprojectblock-pic img {
    width: 25px;
    height: auto;
}

.workingprojectblock-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.32;
    padding-top: 16px;
}

.workingprojectblock-description {
    padding-top: 18px;
}

@media (min-width: 1200.98px) {
    .workingproject {
        padding-top: 55px;
        padding-bottom: 12px;
        position: relative;
    }

    .workingproject:before, .workingproject:after {
        content: '';
        display: block;
        width: 840px;
        height: 828.732px;
        position: absolute;
        border-radius: 840px;
        background: rgba(104, 36, 221, 0.35);
        filter: blur(177.21517944335938px); 
        z-index: -1;
    }

    .workingproject:before {
        left: -325px;
        top: -82px;
    }

    .workingproject:after {
        bottom: -211px;
        right: -368px;
    }

    .workingproject-header {
    }

    .workingproject-title {
        max-width: 1160px;
    }

    .workingproject-description {
        max-width: 1290px;
    }

    .workingproject-content {
        padding: 37px 3px 0;
    }

    .workingproject-list {
        margin: 0 -20px;
        display: flex;
        flex-wrap: wrap;
    }

    .workingproject-item {
        padding: 17px 20px 18px;
        flex: 0 0 auto;
        width: 50%;
        max-width: 100%;
    }

    .workingprojectblock {
        border-radius: 20px;
        padding: 25px 25px 24px 25px;
        display: flex;
        flex-direction: column;
        min-height: 255px;
        justify-content: end;
    }

    .workingprojectblock-picture {
    }

    .workingprojectblock-pic {
        width: 72px;
        height: 72px;
    }

    .workingprojectblock-pic img {
        width: auto;
    }

    .workingprojectblock-title {
        font-size: 25px;
        padding-top: 21px;
    }

    .workingprojectblock-description {
        padding-top: 14px;
        line-height: 1.5;
    }
}
