@import url('https://fonts.googleapis.com/css2?family=Days+One&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); :root {
    --font-primary: 'Noto Sans', sans-serif;
    --font-secondary: 'Days One', sans-serif;
    --accent-color: #000000;
    --text-color: #505050;
    --title-color: var(--accent-color);
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    outline: none !important;
}

*:hover, *:focus {
    outline: none !important;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    /* overflow: hidden; */
}

body {
    min-width: 320px;
    position: relative;
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.19;
    color: var(--text-color);
    background: #F7F7F7;
    opacity: 1;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.wrapper {
    overflow: hidden;
    width: 100%;
}

.wrapper__in {
    overflow: hidden;
    /* padding-bottom: 60px; */
    /*max-width: 375px;*/
    /*max-width: 1440px; */
}

.wrap {
    max-width: 1272px;
    padding-left: 16px;
    padding-right: 16px;
    margin-right: auto;
    margin-left: auto;
}

input[type="search"]::-ms-clear {
    width : 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

a, button {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    background: none;
    padding: 0;
    border: none;
    font-weight: inherit;
    line-height: inherit;
    font-size: inherit;
    cursor: pointer;
}

a {
    transition: color 0.3s ease 0s;
}

a:hover, a:focus {
    color: #16AD00;
}

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

.text-nowrap {
    white-space: nowrap;
}

.clearfix {
}

.clearfix:before, .clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.button {
    border: 1px solid #16AD00;
    background: #16AD00;
    padding: 7px 15px 7px 15px;
    font-family: inherit;
    line-height: 1;
    display: inline-block;
    text-align: center;
    user-select: none;
    border-radius: 800px;
    position: relative;
    transition: all 0.3s ease 0s;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.button:visited {
    color: #ffffff;
}

.button:hover, .button:focus {
    background: none;
    color: #16AD00;
}

.button--outline {
}

.button--outline:hover, .button--outline:focus {
}

.button--blue {
    border-color: #3662FF;
    background: #3662FF;
}

.button--outline.button--blue {
    background: none;
    color: #3662FF;
}

.button--blue:hover, .button--blue:focus {
    color: #3662FF;
    background: none;
}

.button--outline.button--blue:hover, .button--outline.button--blue:focus {
    background: #3662FF;
    color: #ffffff;
}

@media (min-width: 1272px) {
    .button {
        font-size: 16px;
        padding: 11px 15px 11px 15px;
        font-weight: 600;
        min-width: 82px;
    }
}

.ps-row {
    --bs-gutter-x: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.ps-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}

.ps-col {
    flex: 1 0 0%;
}

.desktop-only {
    display: none;
}

@media (min-width: 1272px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

.burger-icon {
    width: 18px;
    height: 12px;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    display: block;
}

.burger-icon span {
    width: 18px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 1px;
}

.burger-icon span:nth-child(1) {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 5px;
}

.burger-icon span:nth-child(3) {
    top: 10px;
}

.nav-open .burger-icon span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.nav-open .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-open .burger-icon span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

.navigation {
}

.menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.menu li {
    padding: 12px 12px 12px 12px;
}

.menu a {
    color: inherit;
    transition: all 0.3s ease 0s;
}

.menu a:hover, .menu a:focus {
    color: #16AD00;
}

.header {
    min-height: 54px;
}

.header__fix {
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* width: 375px; */
    background: #ffffff;
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-open .header__fix {
}

.header__wrap {
}

.header__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0 7px 0;
}

.header__block {
}

.header__block_logo {
}

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

.header-logo img {
    height: 18px;
}

.header__block_nav {
    order: 1;
    padding-top: 10px;
    display: none;
    /* position: absolute; */
    /* top: 100%; */
    /* z-index: 2; */
    /* left: 0; */
}

.nav-open .header__block_nav {
    display: block;
}

.header__block_buttons {
    margin-left: auto;
}

.header__block_burger {
    padding-left: 16px;
}

.navmain {
}

.nav-open .navmain {
}

.sigblock {
    margin: 0 -4px;
    display: flex;
    flex-wrap: wrap;
}

.sigblock__item {
    padding: 4px;
}

.sigblock__item:first-child {
    display: none;
}

@media (min-width: 420px) {
    .sigblock__item:first-child {
        display: block;
    }
}

.navtoggle {
    padding: 4px 3px 4px 3px;
}

.hero {
    margin-bottom: 41px;
}

.hero-main {
    color: #FFF;
    text-align: center;
    line-height: 1.4;
    position: relative;
    margin: 0 -16px;
    padding: 0 16px;
    overflow: hidden;
    background-image: url(../img/hero.jpg);
    background-position: 42.6% -2px;
    background-repeat: no-repeat;
    background-size: 2064px auto;
}

.hero-main:before {
    content: '';
    background: linear-gradient(90deg, #070930 0%, rgba(113, 57, 177, 0.00) 100%);
    backdrop-filter: blur(5px);
    position: absolute;
    width: 450px;
    height: 100%;
    left: -163px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    min-height: 413px;
    padding: 61px 0 30px 0;
    position: relative;
}

.hero-linkcover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1;
}

.hero-description {
    padding-top: 20px;
    color: #FFF383;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.hero-figure {
    position: absolute;
    bottom: 30px;
    left: -6px;
    width: 100%;
    z-index: 1;
}

.hero-picture {
    /* display: none; */
    margin: 0 -16px;
}

.hero-picture img {
    width: 308px;
}

.hero-control {
    margin-top: auto;
}

.hero-button {
    display: block;
    padding: 11px 0 11px 0;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    max-width: 200px;
}

.posts {
    padding-top: 22px;
    padding-bottom: 23px;
}

.posts--prizes {
    padding-bottom: 22px;
}

.posts-main {
}

.posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    padding-bottom: 20px;
}

.posts-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    flex: 1 0 0;
    width: 100%;
    max-width: 100%;
}

.posts-control {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.posts-button {
    font-size: 12px;
    font-weight: 600;
    padding: 9px 16px 7px 15px;
}

.posts-content {
}

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

.posts-list .slick-track {
    display: flex;
}

.posts-list .slick-slide {
    float: none;
    height: auto;
}

.posts-list .slick-slide>div {
    /*height: 100%;*/
}

.posts-item {
    padding: 4px;
    /*height: 100%;*/
}

.postblock {
    border-radius: 8px;
    overflow: hidden;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postblock--payment {
    border: 1px solid #BBC6D1;
    background: #FFF;
}

.postblock a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postblock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
}

.postblock--payment img {
    object-fit: contain;
    max-height: 85%;
    margin: 0 auto;
    max-width: 70%;
}

.postblock:hover img, .postblock:focus img {
    transform: scale(1.1);
}

.prize {
    text-align: center;
    padding: 16px 15px 16px;
    color: #045AC1;
    border-radius: 8px;
    background: #BBCAFF;
    Colors Hex Hex Background colors #BBCAFF; min-height: 266px;
}

.prize-iconblock {
    font-size: 0;
    line-height: 1;
    padding-bottom: 9px;
}

.prize-iconblock img {
    margin: 0 auto;
    width: 100px;
}

.prize-title {
    color: #464646;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.25;
}

.prize-description {
    font-size: 14px;
    font-weight: 600;
    padding-top: 8px;
    line-height: 1.355;
}

.posts--tournaments {
}

.tournament {
    border-radius: 8px;
    border: 1px solid #BBCAFF;
    background: #DFE6FF;
    text-align: center;
    padding: 15px 15px 10px;
    color: #000;
}

.tournament svg {
    vertical-align: middle;
}

.tournament-type {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tournament-type svg {
    margin-right: 11px;
}

.tournament-type:after {
    content: '';
    display: block;
    height: 1px;
    background-image: linear-gradient(to right, #16AD00 50%, transparent 50%);
    background-size: 14px 1px;
    background-repeat: repeat-x;
    margin-top: 14px;
    width: 100%;
}

.tournament-price {
    color: #16AD00;
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1;
    border-radius: 16px;
    background: #FFF;
    margin-top: 16px;
    padding: 4px 5px 4px 5px;
}

.tournament-notice {
    font-size: 14px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
    padding-top: 16px;
}

.tournament-notice:after {
    content: '';
    display: block;
    height: 1px;
    background-image: linear-gradient(to right, #16AD00 50%, transparent 50%);
    background-size: 14px 1px;
    background-repeat: repeat-x;
    margin-top: 14px;
}

.tournament-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.tournament-content:after {
    content: '';
    display: block;
    height: 1px;
    background-image: linear-gradient(to right, #16AD00 50%, transparent 50%);
    background-size: 14px 1px;
    background-repeat: repeat-x;
    margin-top: 9px;
    width: 100%;
}

.tournament-list {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    padding-top: 14px;
}

.tournament-list svg {
    margin-right: 8px;
    transform: translateY(-2px);
}

.tournament-listitem {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.tournament-control {
    padding-top: 10px;
}

.tournament-button {
    padding-top: 11px;
    padding-bottom: 11px;
}

.tournament-footer {
}

.tournament-collapsebutton {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px 0 7px 0;
}

.tournament-collapsebutton svg {
    margin-left: 8px;
}

.entry-content {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.57;
    line-height: 1.5;
}

.home .entry-content {
    padding-top: 24px;
}

.entry-content h1 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.37;
}

.entry-content h2 {
    margin: 60px 0 22px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #000;
}

.entry-content p + h2 {
}

.entry-content h3 {
}

.entry-content p {
    margin: 0 0 21px 0;
}

.entry-content p.bigger {
    font-size: 16px;
}

.entry-content ul, .entry-content ol {
    margin-bottom: 21px;
    padding-left: 21px;
    line-height: 1.5;
}

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

.entry-content ol {
}

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

.entry-content ul li {
}

.entry-content ol li {
}

.entry-content .table-layout {
    margin-bottom: 22px;
}

.entry-content table {
    font-size: 14px;
    font-weight: 500;
    border-collapse: collapse;
    line-height: 1.5;
    min-width: 100%;
}

.entry-content table thead {
}

.entry-content table tbody {
}

.entry-content table th, .entry-content table td {
    text-align: left;
    border: 1px solid #AEAEB8;
    background: #FFF;
    padding: 9px 16px 9px 15px;
}

.entry-content table th {
    font-weight: 600;
}

.entry-content table td {
    padding: 10px 15px 9px 15px;
}

.toc {
    margin-top: 31px;
    margin-bottom: 24px;
}

.toc-content {
    border-radius: 16px;
    background: #C2F4C5;
}

.entry-content ul.kamatoc, .kamatoc {
    list-style-type: none;
    counter-reset: list;
    line-height: 1.88;
    margin: 0;
    padding: 16px 30px 15px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.kamatoc li:before {
    margin-right: 0px;
}

.kamatoc li.kamatoc__top {
    counter-increment: list;
    counter-reset: list1;
}

.kamatoc li.kamatoc__top:before {
    content: counter(list) '. ';
}

.kamatoc li.kamatoc__sub_1 {
    counter-increment: list1;
    counter-reset: list2;
}

.kamatoc li.kamatoc__sub_1:before {
    content: counter(list) '.' counter(list1) '. ';
}

.kamatoc li.kamatoc__sub_2 {
    counter-increment: list2;
}

.kamatoc li.kamatoc__sub_2:before {
    content: counter(list) '.' counter(list1) '.' counter(list2) '. ';
}

.kamatoc li.kamatoc__sub_3 {
    counter-increment: list3;
}

.kamatoc li.kamatoc__sub_3:before {
    content: counter(list) '.' counter(list1) '.' counter(list2) '.' counter(list3) '.';
}

.footer {
    background: #fff;
    color: #505050;
    font-size: 12px;
    line-height: 2;
    margin-top: 40px;
}

.footer-main {
    padding: 16px 0px 8px 0px;
}

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

.footer-nav {
    padding-top: 24px;
}

.footer-nav-title {
    color: #3662FF;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #16AD00;
    padding-bottom: 15px;
    margin-bottom: 17px;
}

.footer-menu {
    margin: 0 -4px;
    column-count: 2;
    line-height: 2.32;
}

.footer-menu li {
    padding: 0 4px 4px;
}

.footer-menu a {
}

.footer-infos {
    border-top: 1px solid #16AD00;
    margin-top: 23px;
    padding-top: 8px;
}

.footer-copyright {
    color: #505050;
    font-size: 14px;
    /* 200% */
    border-top: 1px solid #16AD00;
    margin-top: 4px;
    padding-top: 16px;
}

.footerinfos {
    padding-bottom: 11px;
}

.footerinfos-row {
}

.footerinfos-col {
    padding: 5px 0;
}

.infopictures {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.infopictures--apps {
}

.infopictures-title {
    font-size: 14px;
    line-height: 1;
    padding-right: 33px;
    font-weight: 600;
    color: #3662FF;
    padding: 10px 33px 10px 0;
}

.infopictures-content {
}

.infopictures-content--licenses {
    margin-left: auto;
}

.infopictures-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    line-height: 1;
    margin: 0 -13px;
}

.infopictures-item {
    padding: 0 13px;
}

.infopictures img {
    height: 24px;
}

@media (min-width: 1272px) {
    .navigation {
    }

    .menu {
        justify-content: center;
    }

    .menu li {
        padding-top: 13px;
    }

    .menu a {
    }

    .menu a:hover, .menu a:focus {
    }

    .header {
        min-height: 72px;
    }

    .header__fix {
        border-bottom: 1px solid #EBEBEB;
        box-shadow: none;
    }

    .header__wrap {
    }

    .header__main {
        padding: 12px 0 11px 0;
    }

    .header__block {
    }

    .header__block_logo {
    }

    .header-logo {
    }

    .header-logo img {
        height: auto;
    }

    .header__block_nav {
        display: block;
        order: 0;
        padding: 0;
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
    }

    .header__block_buttons {
    }

    .header__block_burger {
        display: none;
    }

    .navmain {
    }

    .nav-open .navmain {
    }

    .sigblock {
    }

    .sigblock__item {
    }

    .sigblock__item:last-child {
    }

    .sigblock__item:last-child {
    }

    .navtoggle {
    }

    .hero {
        margin-top: 16px;
        margin-bottom: 14px;
    }

    .hero-main {
        box-shadow: none;
        border-radius: 24px;
        text-align: left;
        overflow: hidden;
        padding: 0;
        margin: 0;
        background-position: 50% 50%;
        background-size: 1240px auto;
    }

    .hero-main:after {
        max-height: none;
        bottom: 0;
        background: linear-gradient(-90deg, #070930 10%, rgba(113, 57, 177, 0.00) 90%);
        /* backdrop-filter: blur(5px); */
        max-width: 828px;
        right: 0;
        left: auto;
    }

    .hero-main:before {
        width: 695px;
        left: 0;
    }

    .hero-content {
        position: static;
        text-align: center;
        min-height: 340px;
        max-width: 792px;
        padding-top: 63px;
    }

    .hero-title {
        font-size: 48px;
        z-index: 1;
    }

    .hero-description {
        font-size: 24px;
        z-index: 1;
        padding-top: 39px;
        line-height: 1.36;
    }

    .hero-figure {
        position: absolute;
        top: 56px;
        right: 88px;
        left: auto;
        bottom: 0;
        margin: 0;
        width: auto;
    }

    .hero-picture {
        margin: 0;
    }

    .hero-picture img {
        width: 441px;
    }

    .hero-control {
        padding-top: 32px;
        z-index: 2;
        margin: 0;
    }

    .hero-button {
        max-width: 200px;
    }

    .posts {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .posts--prizes {
        margin-top: 56px;
        margin-bottom: 56px;
    }

    .posts--payments {
        margin: 56px 0 16px 0;
    }

    .posts-main {
    }

    .posts-header {
        padding-bottom: 12px;
    }

    .posts-title {
        font-size: 18px;
        font-weight: 700;
    }

    .posts-control {
    }

    .posts-button {
    }

    .posts-content {
    }

    .posts-list {
    }

    .posts-list .slick-track {
    }

    .posts-list .slick-slide {
    }

    .posts-item {
    }

    .postblock {
        border-radius: 16px;
        height: 132px;
    }

    .postblock--payment {
    }

    .postblock a {
    }

    .postblock img {
    }

    .postblock--payment img {
    }

    .postblock:hover img, .postblock:focus img {
    }

    .prize {
        padding: 16px 15px 15px;
        border-radius: 16px;
    }

    .prize-iconblock {
        padding-bottom: 9px;
    }

    .prize-iconblock img {
        width: 160px;
    }

    .prize-title {
        font-size: 24px;
    }

    .prize-description {
        padding-top: 9px;
    }

    .posts--tournaments {
        padding-top: 66px;
    }

    .tournament {
        padding: 15px 23px 0 23px;
        border-radius: 16px;
    }

    .tournament svg {
    }

    .tournament-type {
    }

    .tournament-type svg {
    }

    .tournament-type:after {
    }

    .tournament-price {
        font-size: 40px;
        padding: 7px 5px 7px 5px;
    }

    .tournament-notice {
    }

    .tournament-notice:after {
    }

    .tournament-content {
    }

    .tournament-content:after {
    }

    .tournament-list {
    }

    .tournament-list svg {
    }

    .tournament-listitem {
    }

    .tournament-control {
    }

    .tournament-button {
    }

    .tournament-footer {
    }

    .tournament-collapsebutton {
        padding-bottom: 17px;
    }

    .tournament-collapsebutton svg {
    }

    .entry-content {
        font-size: 16px;
        line-height: 1.496;
    }

    .home .entry-content {
        padding-top: 54px;
    }

    .entry-content h1 {
        font-size: 32px;
        padding-left: 12px;
        padding-bottom: 19px;
    }

    .entry-content h2 {
        font-size: 24px;
        margin-top: 70px;
        margin-bottom: 22px;
    }

    .entry-content h2:first-of-type {
        margin-top: 49px;
    }

    .entry-content p + h2 {
    }

    .entry-content h3 {
    }

    .entry-content p {
        margin-bottom: 22px;
    }

    .entry-content p.bigger {
        /* font-size: 18px; */
        /* line-height: 1.556; */
    }

    .entry-content p + p {
        margin-bottom: 24px;
    }

    .entry-content ul, .entry-content ol {
        margin-top: 23px;
        padding-left: 25px;
        margin-bottom: 25px;
    }

    .entry-content ul {
    }

    .entry-content ol {
    }

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

    .entry-content ul li {
    }

    .entry-content ol li {
    }

    .entry-content .table-layout {
        margin-bottom: 23px;
    }

    .entry-content table {
        font-size: 16px;
        min-width: auto;
    }

    .entry-content table thead {
    }

    .entry-content table tbody {
    }

    .entry-content table th, .entry-content table td {
    }

    .entry-content table th {
    }

    .entry-content table td {
        padding-top: 10px;
        padding-bottom: 9px;
    }

    .toc {
        float: left;
        min-width: 306px;
        margin: 0;
    }

    .toc-content {
        max-width: 270px;
        min-height: 399px;
        margin-bottom: 71px;
    }

    .entry-content ul.kamatoc, .kamatoc {
        padding: 24px 20px 22px 37px;
        font-size: 18px;
        line-height: 1.89;
    }

    .kamatoc li:before {
    }

    .kamatoc li.kamatoc__top {
    }

    .kamatoc li.kamatoc__top:before {
    }

    .kamatoc li.kamatoc__sub_1 {
    }

    .kamatoc li.kamatoc__sub_1:before {
    }

    .kamatoc li.kamatoc__sub_2 {
    }

    .kamatoc li.kamatoc__sub_2:before {
    }

    .kamatoc li.kamatoc__sub_3 {
    }

    .kamatoc li.kamatoc__sub_3:before {
    }

    .footer {
        margin-top: 79px;
        font-size: 16px;
        line-height: 1.75;
    }

    .footer-main {
        position: relative;
        padding: 0px 0 16px 203px;
    }

    .footer-logo {
        position: absolute;
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
    }

    .footer-nav {
        padding-top: 16px;
    }

    .footer-nav-title {
        font-size: 16px;
        padding-bottom: 15px;
        margin-bottom: 16px;
    }

    .footer-menu {
        column-count: 4;
        margin: 0 -10px;
    }

    .footer-menu li {
        padding: 0 10px 8px;
        line-height: 1.75;
    }

    .footer-menu a {
    }

    .footer-infos {
        border: none;
        margin: 0;
        padding: 16px 0 0 0;
    }

    .footer-copyright {
        margin-top: 12px;
        font-size: 16px;
    }

    .footerinfos {
    }

    .footerinfos-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
    }

    .footerinfos-col {
        flex: 1 0 0;
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .footerinfos-col--apps {
        order: 1;
    }

    .infopictures {
        display: block;
    }

    .infopictures--apps {
    }

    .infopictures-title {
        border-bottom: 1px solid #16AD00;
        font-size: 16px;
        padding-bottom: 21px;
        margin-bottom: 32px;
    }

    .infopictures-content {
    }

    .infopictures-content--licenses {
    }

    .infopictures-list {
        margin: 0 -16px;
    }

    .infopictures-item {
        padding: 0 16px;
    }

    .infopictures img {
        height: 32px;
    }

    .infopictures-content--licenses img {
    }
}
