html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: top
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: ''
}

input:focus,
textarea:focus,
a:focus,
button:focus,
select:focus {
    outline: 0
}

ins {
    text-decoration: none
}

del,
s,
strike {
    text-decoration: line-through
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
    margin: 0
}

* {
    box-sizing: border-box
}

img {
    border: none;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

html {
    height: 100%
}

body {
    font-family: Raleway;
    line-height: normal;
    font-weight: normal;
}

body.overflow {
    overflow: hidden;
}

iframe {
    width: -webkit-fill-available;
}

.page-wrapper,
.footer {
    max-width: none;
    min-width: 0;
    width: 100%;
    margin: 0 auto
}

.page-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh
}

.page-body {
    -ms-flex: 1;
    flex: 1
}

.page-body.flex-none {
    -ms-flex: none;
    flex: none
}

.container {
    margin: 0 auto;
    width: 1720px;
}

.container-small {
    margin: 0 auto;
    width: 1130px;
}

.container::after {
    content: "";
    display: table;
    clear: both
}

.container-small::after {
    content: "";
    display: table;
    clear: both
}

@media (max-width: 1919px) {
    .container {
        width: 1130px;
    }
}

@media (max-width: 1279px) {
    .container {
        width: 924px;
    }
    .container-small {
        width: 924px;
    }
}

@media (max-width: 1023px) {
    .container {
        width: 668px;
    }
    .container-small {
        width: 668px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 420px;
    }
    .container-small {
        width: 420px;
    }
}

@media (max-width: 479px) {
    .container,
    .container-small {
        width: calc(100% - 40px);
    }
    .container .container-small {
        width: 100%;
    }
}

svg {
    flex-shrink: 0;
}

svg path,
svg circle,
svg ellipse {
    transition: .3s;
}

a {
    text-decoration: none;
    transition: .3s color;
}

a:hover {

}

.checkbox {
    display: none;
}

.checkbox + i {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid #706680;
    border-radius: 3px;
    transition: .3s;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.checkbox + i svg {
    transition: .4s;
    opacity: 0;
}

.checkbox:hover + i {
    border-color: #E69317;
}

.checkbox:checked + i {
    background: #E69317;
    border-color: #E69317;
}

.checkbox.error + i {
    border-color: #A62126;
}

.checkbox:checked + i svg {
    opacity: 1;
}

/*header*/

header {
    background: #1C122E;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #3B2F4F;
    /*transition: all .3s;*/
    z-index: 51;
}

.header__container {
    display: flex;
    justify-content: space-between;
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
    align-items: center;
}

header .logo {
    display: block;
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

header .logo:hover svg path {
    fill: #F4AF46;
}

header .logo svg {
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin-right: auto;
}

.menu__item {
    position: relative;
    display: flex;
    align-items: center;
}

.menu__item .menu__link.active {
    color: #ffffff;
    background: #3B2F4F;
}

.menu__item .menu__link.active:after {
    background: #3B2F4F;
    z-index: -1;
}

.menu__submenu .menu__sublink.active {
    color: #ffffff;
    background: #3B2F4F;
}

.menu__link {
    display: inline-block;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #9D97A7;
    padding: 37px 20px;
    transition: .3s;
    white-space: nowrap;
}

.menu__item i {
    display: inline-block;
    margin-left: 7px;
}

.menu__submenu {
    position: absolute;
    left: 0;
    width: 300px;
    top: calc(100%);
    transition: opacity .3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border: 1px solid #3B2F4F;
    border-radius: 0 0 3px 3px;
    background: #271C3B;
}

.menu__sublink {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: .3s;
    padding: 21px 30px 21px 15px;
    width: 100%;
    display: block;
}

.menu__sublink:not(:last-child) {
    border-bottom: 1px solid #3B2F4F;
}

.social {
    display: flex;
    align-items: center;
}

.social__wrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.social__item {
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #9D97A7;
    transition: .3s;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.social__item:hover {
    border-color: #ffffff;
}

.social__item:hover > svg path {
    fill: #ffffff;
}

.social__item:hover > img {
    filter: brightness(2);
}

.social__item--conf > img {
    width: 24px;
    height: 24px;
}

.social__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    height: 50px;
    flex-shrink: 0;
    margin: 0 35px;
    transition: .3s;
    background: #F0F0F2;
    border-radius: 3px;
}

.social__btn:hover {
    background: #F4AF46;
}

.social__btn span {
    font-family: Gilroy;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1C122E;
    margin-left: 15px;
}

.tooltip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 27px);
    width: 300px;
    min-height: 152px;
    background: #271C3B;
    border: 1px solid #3B2F4F;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    padding: 30px 46px;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.tooltip:before {
    position: absolute;
    content: '';
    top: -27px;
    left: 0;
    width: 100%;
    height: 27px;
}

.tooltip:after {
    position: absolute;
    content: '';
    width: 23px;
    height: 23px;
    display: inline-block;
    background: #271C3B;
    border-left: 1px solid #3B2F4F;
    border-top: 1px solid #3B2F4F;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    top: -12px;
}

.social__item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip--copied {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 130px;
}

.tooltip--copied .tooltip__btn {
    margin-top: 20px;
}

.tooltip--copied svg {
    flex-shrink: 0;
    margin-right: 10px;
}

.tooltip--copied span {
    width: auto!important;
    margin: 0!important;
}

.tooltip--copied.hidden {
    display: none;
}

.tooltip > span {
    display: block;
    font-family: Gilroy;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #F3F2F5;
    width: 100%;
    margin-bottom: 20px;
}

.tooltip__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tooltip__btn {
    flex-shrink: 0;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5px;
    font-family: Gilroy;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    height: 48px;
}

.tooltip__btn:hover {
    background: #F0F0F2;
    color: #210E2D;
}

.tooltip__btn:not(:last-child) {
    margin-bottom: 15px;
}

.tooltip__attention {
    position: absolute;
    top: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background: #14072B;
    border: 1px solid #3B2F4F;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tooltip__attention-head {
    font-family: Gilroy;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FAB81E;
    margin-bottom: 10px;
}

.tooltip__attention-head svg {
    flex-shrink: 0;
    margin-right: 8px;
}

.tooltip__attention-text {
    font-family: Gilroy;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #F3F2F5;
}

.tooltip__attention-text a,
.tooltip__attention-text span,
.tooltip__attention-text b {
    font-weight: 700;
    color: inherit;
}

.tooltip__attention-text a:hover {
    text-decoration: underline;
}

.lng {
    position: relative;
}

.lng__current {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #9D97A7;
    transition: .3s color;
    cursor: pointer;
}

.lng__current:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.lng:hover .lng__current {
    color: #ffffff;
}

.lng__current svg {
    margin-left: 8px;
}


.lng:hover .lng__current svg path {
    fill: #ffffff;
}

.lng__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: calc(100% + 37px);
    left: 50%;
    width: 60px;
    transform: translateX(-50%);
    background: #271C3B;
    border: 1px solid #3B2F4F;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
    z-index: 2;
}

.lng__list:before {
    position: absolute;
    content: '';
    height: 38px;
    top: -38px;
    left: 0;
    width: 100%;
    cursor: pointer;
}

.lng:hover .lng__list {
    opacity: 1;
    visibility: visible;
}

.lng__item {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
    font-family: Gilroy;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.lng__item:hover {
    background: #423557;
}

.page-body {
    margin-top: 91px;
}

.menu-ico {
    display: none;
}

.mobilemenu {
    display: none;
}

.menu__item > .mobile-link {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .menu__item:hover i svg path {
        fill: #ffffff;
    }
    .menu__item:hover > .menu__link {
        color: #ffffff;
        background: #3B2F4F;
    }
    .menu__sublink:hover {
        background: #3B2F4F;
    }
    .menu__item:hover .menu__submenu {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 1919px) {
    header {
        border-bottom: none;
        height: 161px;
        padding-top: 15px;
        /*transition: .2s;*/
    }
    .page-body {
        margin-top: 161px;
    }
    .header__container {
        padding-left: 75px;
        padding-right: 75px;
        flex-wrap: wrap;
        justify-content: flex-end;
        position: relative;
        transition: all .3s;
        max-width: 1280px;
    }
    header .logo {
        position: absolute;
        left: 75px;
        top: 3px;
        transition: .3s width;
    }
    header:after {
        position: absolute;
        background: #3B2F4F;
        width: 100%;
        height: 1px;
        top: 80px;
        content: '';
        transition: .3s;
    }
    .menu {
        order: 2;
        width: 100%;
        padding: 0;
        margin: 16px 0 0 0;
        justify-content: flex-end;
    }
    .social__wrapper {
        column-gap: 20px;
    }
    .social__btn {
        margin: 0 40px;
    }
    .menu__link {
        padding: 32px 22px;
    }
    .lng__list {
        top: calc(100% + 15px);
    }
    .lng__list:before {
        height: 20px;
        top: -20px;
    }
    .header.top {
        height: 121px;
        padding-top: 10px;
    }
    .header.top .menu {
        margin: 10px 0 0 0;
    }
    .header.top .menu__link {
        padding: 22px 22px;
    }
    .header.top:after {
        top: 60px;
    }
    .header.top .social__btn {
        height: 40px;
    }
    .header.top .logo {
        width: 93px;
    }
}

@media only screen and (max-width: 1279px) {
    header .logo {
        left: 50px;
    }
    .header__container {
        padding-left: 50px;
        padding-right: 50px;
        max-width: 1024px;
    }
    .menu__link {
        font-size: 15px;
        line-height: 15px;
        padding: 32px 11px;
    }
    .header.top .menu__link {
        padding: 22px 11px 23px;
    }
    .social__btn {
        margin: 0 30px;
    }
}

@media only screen and (max-width: 1023px) {
    .social__item {
        cursor: default;
    }
    .page-body {
        margin-top: 80px;
    }
    header {
        border-bottom: none;
        height: 80px;
        padding-top: 15px;
        border-bottom: 1px solid #3B2F4F;
    }
    header:after {
        display: none;
    }
    .header__container {
        padding-left: 50px;
        padding-right: 50px;
        max-width: 768px;
    }
    .menu {
        display: none;
    }
    .lng {
        display: none;
    }
    .menu-ico {
        display: flex;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    .menu-ico svg {
        width: 100%;
    }
    .menu-ico svg rect {
        transition: .3s;
    }
    .menu-ico:hover svg rect {
        fill: #F4AF46;
    }
    .social__item--conf {
        display: none;
    }
    .social__btn {
        margin: 0 30px;
        padding: 0 19px;
    }
    .mobilemenu {
        display: block;
        width: 100%;
        background: #1C122E;
        position: fixed;
        z-index: 100;
        right: 0;
        top: 0;
        height: 100vh;
        transition: .3s;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
    }
    .mobilemenu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .mobilemenu__topline {
        padding: 15px 50px 30px;
        border-bottom: 1px solid #3B2F4F;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 13px;
    }
    .mobilemenu__topline-right {
        display: flex;
        align-items: center;
    }
    .mobilemenu__topline .logo {
        width: 120px;
        margin-top: 3px;
        position: relative;
        top: auto;
        left: auto;
    }
    .mobilemenu__close {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mobilemenu__close svg rect {
        transition: .3s;
    }
    .mobilemenu__close:hover svg rect {
        fill: #F4AF46;
    }
    .mobilemenu__close svg {
        width: 100%;
    }
    .mobilemenu__menu .menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .menu__item {
        position: relative;
        width: 100%;
        border-bottom: 1px solid #3B2F4F;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 17px 50px;
        min-height: 84px;
    }
    .menu__submenu {
        height: 0;
        position: relative;
        top: auto;
        left: auto;
        max-height: none;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
        transition: 0.1s;
        border: none;
        border-radius: 0;
        background: #281F38;
        width: 100vw;
        margin: 17px -50px -18px;
    }
    .mobilemenu__menu .menu__item.active .menu__submenu {
        opacity: 1;
        z-index: 2;
        visibility: visible;
        height: auto;
        transition: .3s;
        padding: 10px 0;
    }
    .menu__sublink {
        position: relative;
        font-size: 20px;
        line-height: 16px;
        color: #9D97A7;
        padding: 30px 110px;
    }
    .menu__sublink:hover {
        color: #FFFFFF;
        background: #342945;
    }
    .menu__sublink:not(:last-child) {
        border-bottom: none
    }
    .menu__sublink:not(:first-child):after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        width: calc(100% - 220px);
        background: #3B2F4F;
    }
    .menu__sublink:not(:last-child):hover:after {
        display: none;
    }
    .menu__sublink:not(:last-child):hover + .menu__sublink:after {
        display: none;
    }
    .menu__link {
        font-size: 24px;
        line-height: 24px;
        padding: 0;
        white-space: normal;
        cursor: default;
    }
    .menu__link span {
        position: relative;
        z-index: 2;
    }
    .menu__link i {
        display: none;
    }
    .menu__item > .mobile-link {
        display: inline-block;
        border-radius: 50%;
        border: 1px solid #9D97A7;
        width: 50px;
        height: 50px;
        position: relative;
        flex-shrink: 0;
        z-index: 2;
        margin: 0!important;
        transition: .3s;
    }
    .mobile-link:before,
    .mobile-link:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background: #9D97A7;
        transform-origin: center center;
        transition: .3s;
    }
    .mobile-link:before {
        width: 16px;
        height: 2px;
    }
    .mobile-link:after {
        width: 2px;
        height: 16px;
    }
    .menu__link:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
    }
    .menu__item:active {
        background: #423557;
    }
    .menu__item:active .menu__link,
    .menu__item:hover > .menu__link {
        color: #ffffff;
    }
    .menu__item.active {
        background: #423557;
    }
    .menu__item:hover .menu__link:after {
        background: #3B2F4F;
        /* z-index: -1; */
    }
    .menu__item.active .mobile-link,
    .menu__item:hover .mobile-link {
        border-color: #ffffff;
    }
    .menu__item.active .menu__link {
        color: #ffffff;
    }
    .menu__item.active .mobile-link:before,
    .menu__item.active .mobile-link:after,
    .menu__item:hover .mobile-link:before,
    .menu__item:hover .mobile-link:after {
        background: #ffffff;
    }
    .menu__item.active .mobile-link:after {
        transform: translate(-50%,-50%) rotate(90deg);
    }
    .mobilemenu__body {
        position: relative;
        overflow-y: scroll;
        height: calc(100vh - 109px);
    }
    .mobtg-btn {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .page-body {
        margin-top: 75px;
    }
    header {
        height: 75px;
        padding-top: 12px;
    }
    .header__container {
        padding-left: 30px;
        padding-right: 30px;
        max-width: 480px;
    }
    header .logo {
        left: 30px;
        width: 100px;
        top: 7px;
    }
    .social__wrapper {
        column-gap: 16px;
    }
    .social__btn {
        margin: 0 32px 0 16px;
        padding: 0;
        background: transparent!important;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        border: 1px solid #9D97A7;
        cursor: default;
    }
    .social__btn:hover {
        border-color: #ffffff;
    }
    .social__btn span {
        display: none;
    }
    .social__btn svg path {
        fill: #9D97A7;
    }
    .social__btn:hover svg path {
        fill: #ffffff;
    }
    .mobilemenu__topline {
        padding: 15px 30px 33px;
    }
    .mobilemenu__topline-right .social__btn {
        display: none;
    }
    .menu__item {
        padding: 17px 30px;
    }
    .menu__submenu {
        margin: 17px -30px -18px;
    }
    .menu__sublink {
        padding: 30px 60px;
    }
    .menu__sublink:not(:first-child):after {
        width: calc(100% - 120px);
    }
    .mobtg-btn {
        display: block;
        padding: 60px 30px 0;
    }
    .mobtg-btn .social__btn {
        width: 100%;
        height: 50px;
        background: #F0F0F2!important;
        border-radius: 3px;
        margin: 0;
        border: none!important;
    }
    .mobtg-btn .social__btn:hover {
        background: #F4AF46!important;
    }
    .mobtg-btn .social__btn span {
        display: inline-block;
    }
    .mobtg-btn .social__btn svg path {
        fill: #1C122E;
    }
}

@media only screen and (max-width: 479px) {
    .header__container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
    header .logo {
        left: 20px;
    }
    .social__item--skype,
    .social__item--email {
        display: none;
    }
    .social__item:not(:last-child) {
        margin-right: 15px;
    }
    .social__btn {
        margin: 0;
    }
    .menu-ico {
        width: 46px;
        height: 46px;
    }
    .social {
        margin-right: 21px;
    }
    .mobilemenu__topline {
        padding: 15px 20px 16px 30px;
        margin-bottom: 5px;
    }
    .mobilemenu__close {
        width: 46px;
        height: 46px;
    }
    .menu__item {
        padding: 10px 20px;
        min-height: 70px;
    }
    .menu__link {
        font-size: 18px;
        line-height: 18px;
    }
    .mobilemenu__body {
        height: calc(100vh - 84px);
    }
    .menu__submenu {
        margin: 9px -20px -11px;
    }
    .menu__sublink {
        padding: 20px 30px;
        font-size: 16px;
        line-height: 16px;
    }
    .mobilemenu__menu .menu__item.active .menu__submenu {
        padding: 0;
    }
    .menu__sublink:not(:first-child):after {
        width: calc(100% - 60px);
    }
    .mobtg-btn {
        display: block;
        padding: 50px 20px 0;
    }
}

/*mobile menu contacts*/

@media only screen and (max-width: 1023px) {
    .mobcontacts {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 48px 50px 47px;
        width: 100%;
    }
    .mobcontacts__item {
        position: relative;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        column-gap: 26px;
        padding: 32px 0;
    }
    .mobcontacts__item > svg {
        flex-shrink: 0;
    }
    .mobcontacts__item:hover > svg path {
        fill: #ffffff;
    }
    .mobcontacts__item > span {
        font-family: Gilroy;
        font-weight: bold;
        font-size: 34px;
        line-height: 34px;
        letter-spacing: 0.03em;
        text-decoration-line: underline;
        color: #9D97A7;
        transition: .3s color;
    }
    .mobcontacts__item:hover > span {
        color: #ffffff;
        text-decoration: none;
    }
    .mobcontacts__item > img {
        width: 34px;
        height: 34px;
    }
    .mobcontacts__item:hover > img {
        filter: brightness(2);
    }
    .mobcontacts__item .tooltip {
        left: 0;
        transform: translateX(0);
        bottom: calc(100% + 4px);
        top: auto;
    }
    .mobcontacts__item:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }
    .mobcontacts__item .tooltip:before {
        display: none;
    }
    .mobcontacts__item .tooltip:after {
        transform: translateX(-50%) rotate(-135deg);
        top: auto;
        bottom: -12px;
    }
    .tooltip__attention {
        top: auto;
        bottom: 100%;
    }
    .header__container .tooltip__attention {
        top: 100%;
        bottom: auto;
    }
}

@media only screen and (max-width: 767px) {
    .mobcontacts {
        padding: 29px 30px 40px;
    }
    .mobcontacts__item {
        padding: 21px 0;
        column-gap: 15px;
    }
    .mobcontacts__item > svg {
        width: 24px;
        height: 24px;
    }
    .mobcontacts__item > span {
        font-size: 24px;
        line-height: 24px;
    }
    .mobcontacts__item > img {
        width: 24px;
        height: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .mobcontacts {
        padding: 36px 20px 37px;
    }
    .mobcontacts__item {
        padding: 14px 0;
        column-gap: 10px;
    }
    .mobcontacts__item > svg {
        width: 20px;
        height: 20px;
    }
    .mobcontacts__item > span {
        font-size: 17px;
        line-height: 17px;
    }
    .mobcontacts__item > img {
        width: 20px;
        height: 20px;
    }
    .mobcontacts__item .tooltip {
        left: -10px;
        bottom: calc(100% + 12px);
    }
}

/*lg mobile (line)*/

@media only screen and (max-width: 1023px) {
    .lng-line {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 50px 80px;
    }
    .lng-line__item {
        font-family: Gilroy;
        position: relative;
        font-weight: bold;
        font-size: 25px;
        line-height: 25px;
        letter-spacing: 0.02em;
        color: #726E7A;
        transition: .3s color;
    }
    .lng-line__item.active,
    .lng-line__item:hover {
        color: #FFFFFF;
    }
    .lng-line__item:not(:last-child) {
        margin-right: 41px;
    }
    .lng-line__item:not(:last-child):after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 25px;
        background: #726E7A;
    }
}

@media only screen and (max-width: 767px) {
    .lng-line {
        padding: 0 30px 120px;
    }
}

@media only screen and (max-width: 479px) {
    .lng-line {
        padding: 0 20px 120px;
    }
}

/*footer*/

footer {
    background: #1C122E;
    padding-top: 80px;
    z-index: 5;
}

.footer__container {
    display: flex;
    column-gap: 30px;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 50px 107px;
}

.footer__logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.footer__logo svg {
    width: 100%;
}

.footer__logo:hover svg path {
    fill: #F4AF46;
}

.footer__wrapper {
    display: flex;
    column-gap: 30px;
}

.footer__column {
    flex-shrink: 0;
    width: 240px;
}

.footer__column-contacts {
    width: 280px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer__item {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: .3s;
}

.footer__item:hover {
    color: #F4AF46;
    text-decoration: underline;
}

.footer__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: .3s;
    margin-bottom: 35px;
}

a.footer__title:hover {
    color: #F4AF46;
    text-decoration: underline;
}

.footer__link-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer__link {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: .3s;
}

.footer__link:hover {
    color: #F4AF46;
    text-decoration: underline;
}

@media only screen and (max-width: 1919px) {
    .footer__container {
        max-width: 1280px;
        padding: 0 75px 80px;
        column-gap: 72px;
    }
    .footer__wrapper {
        flex-wrap: wrap;
        gap: 60px 49px;
    }
    .footer__column {
        width: 280px;
    }
}

@media only screen and (max-width: 1279px) {
    .footer__container {
        max-width: 1024px;
        padding: 0 50px 80px;
    }
    .footer__logo {
        display: none;
    }
    .footer__wrapper {
        gap: 60px 42px;
    }
}

@media only screen and (max-width: 1023px) {
    .footer__container {
        padding-bottom: 60px;
        max-width: 768px;
    }
}

@media only screen and (max-width: 767px) {
    footer {
        padding-top: 60px;
    }
    .footer__container {
        flex-direction: column;
        row-gap: 57px;
        max-width: 480px;
        padding: 0 30px 60px;
    }
    .footer__column {
        width: 100%;
    }
    .footer__logo {
        width: 100px;
        display: flex;
    }
    .footer__menu {
        row-gap: 20px;
    }
    .footer__link-wrapper {
        row-gap: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .footer__container {
        max-width: 100%;
        padding: 0 20px 60px;
    }
}

/*footer contacts*/

.footer__contacts {
    margin-bottom: 30px;
}

.footer__contacts-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.footer__contacts-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #726E7A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    margin-right: 12px;
}

.footer__contacts-ico svg {
    flex-shrink: 0;
}

.footer__contacts-item:hover .footer__contacts-ico {
    border-color: #F4AF46;
}

.footer__contacts-item:hover .footer__contacts-ico svg path {
    fill: #F4AF46;
}

.footer__contacts-item > span {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: .3s color;
}

.footer__contacts-item:hover > span {
    color: #F4AF46;
}

.footer__contacts-item:not(:last-child) {
    margin-bottom: 20px;
}

.footer__contacts-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.footer__contacts-item .tooltip {
    left: 0;
    transform: translateX(0);
    bottom: calc(100% + 20px);
    top: auto;
}

.footer__contacts-item .tooltip:before {
    top: auto;
    bottom: -27px;
}

.footer__contacts-item .tooltip:after {
    transform: translateX(-50%) rotate(-135deg);
    top: auto;
    bottom: -12px;
}

.footer__contacts-item .tooltip__attention {
    top: auto;
    bottom: 100%;
}

@media only screen and (max-width: 1919px) {
    .footer__contacts {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 1023px) {
    .footer__contacts-item {
        cursor: default;
        user-select: none;
    }
}

@media only screen and (max-width: 479px) {
    .footer__contacts-item .tooltip {
        left: -10px;
    }
}

/*footer tg btn*/

.footer__tg {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    border: 1px solid #736E7A;
    border-radius: 3px;
}

.footer__tg:hover {
    background: #F4AF46;
    border-color: #F4AF46;
}

.footer__tg svg {
    flex-shrink: 0;
    margin-right: 15px;
}

.footer__tg:hover svg path {
    fill: #210E2D;
}

.footer__tg span {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.footer__tg:hover span {
    color: #210E2D;
}

@media only screen and (max-width: 767px) {
    .footer__tg {
        width: 280px;
    }
}

@media only screen and (width < 480px) {
    .footer__tg {
        width: 100%;
    }
}

/*footer social*/

.footer-soc {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 40px;
    margin-top: -5px;
}

.footer-soc__item {
    border: 1px solid #9D97A7;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    border-radius: 50%;
}

.footer-soc__item:hover {
    border-color: #ffffff;
}

.footer-soc__item svg {
    flex-shrink: 0;
}

.footer-soc__item:hover svg path {
    fill: #ffffff;
}

@media only screen and (max-width: 1919px) {
    .footer__column--social {
        position: relative;
    }
    .footer-soc {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-soc {
        column-gap: 25px;
    }
    .footer-soc__item {
        width: 50px;
        height: 50px;
    }
    .footer-soc__item svg {
        width: 22px;
        height: 22px;
    }
}

/*footer lng*/

.footer__lng {
    display: flex;
    align-items: center;
}

.footer__lng-item {
    position: relative;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #726E7A;
    transition: .3s;
    cursor: pointer;
}

.footer__lng-item:hover,
.footer__lng-item.active {
    color: #ffffff;
}

.footer__lng-item:not(:last-child) {
    margin-right: 21px;
}

.footer__lng-item:not(:last-child):after {
    position: absolute;
    content: '';
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #726E7A;
}

@media only screen and (max-width: 1023px) {
    .footer__lng-item {
        font-size: 25px;
        line-height: 25px;
    }
    .footer__lng-item:not(:last-child) {
        margin-right: 41px;
    }
    .footer__lng-item:not(:last-child):after {
        right: -20px;
        height: 25px;
    }
}

/*copyright*/

.copyright {
    text-align: center;
    padding: 30px 0 60px;
    position: relative;
}

.copyright:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    background: #3E364D;
}

.copyright > * {
    display: inline;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #9D97A7;
}

.copyright > *:not(:last-child):after {
    content: '|';
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #9D97A7;
    display: inline-block;
    margin: 0 7px 0 11px;
}

.copyright a {
    text-decoration: underline;
    transition: .3s;
}

.copyright a:hover {
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 1919px) {
    .copyright:before {
        width: calc(100% - 150px);
    }
    .copyright > span {
        display: block;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 6px;
    }
    .copyright > span:after {
        display: none;
    }
}

@media only screen and (max-width: 1279px) {
    .copyright {
        padding-bottom: 30px;
    }
    .copyright:before {
        width: calc(100% - 100px);
    }
    .copyright > span {
        font-size: 13px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .copyright > *:first-child:after {
        display: none;
    }
    .copyright > *:first-child {
        display: block;
        margin-bottom: 6px;
    }
    .copyright {
        padding: 30px 135px;
    }
    .copyright > *:not(:last-child):after {
        margin: 0 5px 0 9px;
    }
}

@media only screen and (max-width: 767px) {
    .copyright {
        padding: 30px 30px 95px;
    }
    .copyright:before {
        width: calc(100% - 60px);
    }
    .copyright > *:not(:last-child):after {
        margin: 0 3px 0 7px;
    }
    .copyright > *:first-child {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .copyright:before {
        width: calc(100% - 40px);
    }
}

/*popup*/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: #210E2D;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup__block {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: scroll;
    padding: 70px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup__close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background: #8D8F99;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    z-index: 2;
}

.popup__close:hover {
    background: #F0F0F2;
}

.popup__close svg {
    flex-shrink: 0;
}

.popup__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 800px;
}

.popup__wrapper::-webkit-scrollbar,
.popup__block::-webkit-scrollbar {
    display: none;
}

.popup__container {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.popup__container.active {
    display: flex;
}

.popup__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.02em;
    color: #EBEBEB;
    margin-bottom: 30px;
}

.popup__subtitle {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #EBEBEB;
    margin-bottom: 10px;
    border-top: 1px solid #3E364D;
    padding-top: 40px;
    width: 100%;
}

.popup__text {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #9D97A7;
    margin-bottom: 27px;
}

.popup__text span {
    color: #BD262B;
    font-weight: 700;
    font-size: 24px;
    line-height: 23px;
}

.popup-tg-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #EBEBEB;
    margin-bottom: 10px;
}

.popup-tg-text {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #9D97A7;
    margin-bottom: 30px;
}

.popup-tg-btn {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F0F0F2;
    border-radius: 3px;
    transition: .3s;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1C122E;
    margin-bottom: 40px;
}

.popup-tg-btn:hover {
    background: #F4AF46;
    border-color: #F4AF46;
}

.popup-tg-btn:focus {
    background: #F4AF46;
    border-color: #F4AF46;
}

.popup-tg-btn svg {
    margin-right: 15px;
}

.popup__fields {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.popup__fields label {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
}

.label--email,
.label--tel {
    width: 385px!important;
}

.label--tel .popup__label-title {
    display: flex;
    column-gap: 5px;
}

.label--tel .popup__label-title > span {
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #736E7A;
}

.popup__fields label:not(:last-child) {
    margin-bottom: 20px;
}

.popup__label-title {
    font-family: Gilroy;
    display: block;
    font-size: 18px;
    line-height: 22px;
    color: #EBEBEB;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.popup__label-title i {
    display: inline-block;
    color: #BD262B;
    font-weight: bold;
    font-style: unset;
}

.popup__label-error-title {
    font-family: Gilroy;
    display: none;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #BD262B;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.popup__label-error-title i {
    display: inline-block;
    color: #BD262B;
    margin-right: 2px;
}

label.error .popup__label-title {
    display: none;
}

label.error .popup__label-error-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

label.error .popup__label-error-title svg {
    flex-shrink: 0;
}

label.error input,
label.error textarea {
    border: 1px solid #A62126;
}

.popup__label-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.label--tg .popup__label-input-wrapper {
    height: 60px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    font-family: Raleway;
    width: 100%;
    border: 1px solid #706680;
    padding: 18px 20px 19px;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    transition: .3s;
    border-radius: 3px;
    background: transparent;
    font-weight: 400;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
    font-family: Raleway;
    font-size: 18px;
    line-height: 21px;
    color: #9D97A7;
    font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
    font-family: Raleway;
    border: 1px solid #FFFFFF;
}

textarea {
    min-height: 130px;
    resize: none;
}

.popup__label-input-wrapper.active input[type="text"],
.popup__label-input-wrapper.active input[type="email"],
.popup__label-input-wrapper.active input[type="tel"],
.popup__label-input-wrapper.active textarea {
    border: 1px solid #FFFFFF;
}

.popup__accept {
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 45px;
    position: relative;
}

.popup__accept label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.popup__accept label input {
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -1;
    position: absolute;
}

.popup__accept label i {
    flex-shrink: 0;
    border: 1px solid #706680;
    border-radius: 3px;
    width: 34px;
    height: 34px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    margin-right: 15px;
}

.popup__accept label svg {
    opacity: 0;
    transition: .3s;
}

.popup__accept.error label i {
    border-color: #A62126;
}

.popup__accept label input:checked + i {
    background: #E69317;
    border-color: #E69317;
}

.popup__accept label input + i:hover {
    border-color: #E69317;
}

.popup__accept label input:focus + i {
    border-color: #E69317;
}

.popup__accept label input:checked + i svg {
    opacity: 1;
}

.popup__accept label span {
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    color: #FFFFFF;
}

.popup__accept label a {
    color: inherit;
    font-weight: inherit;
    transition: .3s;
    text-decoration: underline;
}

.popup__accept label a:hover {
    color: #F4AF46;
    text-decoration: none;
}

.popup__accept label a:focus {
    color: #F4AF46;
    text-decoration: none;
}

.popup__accept-error {
    display: none;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #BD262B;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
}

.popup__accept.error .popup__accept-error {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    visibility: visible;
}

.popup__accept.error .popup__accept-error:lang(it-IT) {
    top: calc(100% + 3px);
}

.popup__accept.error .popup__accept-error svg {
    flex-shrink: 0;
    margin-right: 10px;
}

.popup__captcha {
    width: 304px;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 45px;
}

.popup__captcha-place {

}

form[captcha_status="1"] .popup__captcha.error .popup__captcha-error {
    display: none;
}

.popup__captcha-error {
    display: none;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #BD262B;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 100%;
}

.popup__captcha-error svg {
    flex-shrink: 0;
    margin-right: 10px;
}

.popup__captcha.error .popup__captcha-error {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    visibility: visible;
}

.popup__submit {
    position: relative;
    display: inline-block;
}

.popup__submit .popup__submit-btn {
    width: 304px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    border: 1px solid #736E7A;
    border-radius: 3px;
    transition: .3s;
    cursor: pointer;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    align-items: center;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    outline: none;
    background: transparent;
}

.popup__submit .popup__submit-btn:hover {
    background: #F0F0F2;
    color: #210E2D;
}

.popup__submit .popup__submit-btn:focus {
    background: #F0F0F2;
    color: #210E2D;
}

@media only screen and (max-width: 1279px) {
    .popup__close {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 1023px) {
    .popup__wrapper {
        width: 668px;
    }
    .popup__block {
        overflow: scroll;
    }
    .label--email, .label--tel {
        width: 100%!important;
    }
    .popup__text {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .popup__wrapper {
        width: 420px;
    }
    .popup__close {
        width: 60px;
        height: 60px;
    }
    .popup__title {
        font-size: 36px;
        line-height: 46px;
    }
    .popup__accept.error {
        margin-bottom: 55px;
    }
    .popup__accept.error .popup__accept-error:lang(it-IT) {
        top: calc(100% + 6px);
    }
}

@media only screen and (max-width: 479px) {
    .popup__title {
        font-size: 28px;
        line-height: 36px;
    }
    .popup__wrapper {
        width: calc(100% - 40px);
    }
    .iti__country-list {
        min-width: auto;
    }
    .popup__accept label span {
        font-size: 15px;
        line-height: 21px;
    }
    .recaptcha_place > div {
        transform-origin: left;
        transform: scale(1);
    }
    .popup__captcha {
        width: 100%;
    }
    .popup__captcha-error {
        top: calc(100% + 2px);
    }
    .popup__submit {
        width: 100%;
    }
    .popup__submit .popup__submit-btn {
        width: 100%;
    }
    .recaptcha_place > div {
        transform-origin: left;
        transform: scale(0.92);
    }
    .popup__accept.error .popup__accept-error {
        width: 280px;
    }
}

/*preloader*/

.popup__preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#preloader {
    width: 100%;
    height: 100%;
}

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

.preloader__img {
    animation-name: rotation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.preloader__img img {
    image-rendering: auto;
}

@keyframes rotation {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

@media only screen and (max-width: 767px) {
    .contacts__form .preloader {
        margin-bottom: 60px;
        margin-top: 120px;
    }
}

@media only screen and (max-width: 479px) {
    .preloader__img {
        width: 70px;
        height: 70px;
    }
    .contacts__form .preloader {
        margin-bottom: 73px;
        margin-top: 113px;
    }
}

/*thanks massage popup*/

#thanksmsg {
    height: 100%;
}

#thanksmsgSubscribe {
    height: 100%;
}

#thanksmsgContactForm {
    height: 100%;
}

.popup__msg {
    height: calc(100vh - 140px);
}

.thks-msg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.thks-msg > svg {
    margin-bottom: 34px;
    flex-shrink: 0;
}

.thks-msg__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.thks-msg__text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.popup .thks-msg .btn,
.notfoundfields .thks-msg .btn {
    margin-top: 50px;
    width: 304px;
    height: 60px;
}

.popup .popup__msg:not(.js-message-error) .btn {
    width: 102px;
}

@media only screen and (max-width: 1023px) {
    .thks-msg__title {
        font-size: 30px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .thks-msg__title {
        font-size: 28px;
        line-height: 40px;
    }
    .thks-msg__text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .thks-msg__title {
        font-size: 22px;
        line-height: 30px;
    }
    .thks-msg__text {
        font-size: 15px;
        line-height: 23px;
    }
    .popup .thks-msg .btn,
    .notfoundfields .thks-msg .btn {
        width: 100%;
    }
}

/*custom intlTelInput.css*/

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: none!important;
}

.iti-mobile .iti__country-list {
    max-width: 100%;
}

.iti {
    width: 100%;
    z-index: 6;
    left: 0;
}

.iti-mobile .iti {
    width: calc(100% - 30px);
    left: 15px!important;
    z-index: 50;
}

.iti-mobile .iti--container {
    z-index: 1000;
}

.iti-mobile .iti.iti--allow-dropdown {
    width: 100%;
    left: 0!important;
}

.iti__flag {
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    margin: 2px 0 0 9px;
    -ms-transform-origin: 0 center;
    transform-origin: 0 center;
}

.iti__country-list {
    margin: 1px 0 0 -2px;
    background: #FAFBFC;
    box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
    border: none;
    max-height: 226px;
    min-width: 385px;
    max-width: 385px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
    padding-right: 20px;
    padding-left: 81px;
    padding-top: 17px;
}

.iti__arrow {
    margin-left: 19px!important;
    margin-top: 3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ffffff;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-family: Raleway;
    margin-left: 6px;
    top: 17px;
    position: absolute;
    left: 76px;
    font-size: 18px;
    line-height: 21px;
    color: #EBEBEB;

}

.iti input, .iti input[type=text], .iti input[type=tel] {
    padding-left: 124px!important;
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 5px solid #ffffff;
}

.iti--separate-dial-code .iti__selected-flag {
    background: rgba(70, 58, 89, 0.30);
    padding: 0 10px 0 6px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: rgba(70, 58, 89, 0.30);
}

.iti__country-list {
    padding: 24px 12px;
}

.iti__country {
    padding: 10px 17px 9px;
    display: flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.iti__country:not(:last-child) {
    margin-bottom: 2px;
}

.iti__country .iti__flag {
    margin: 0;
}

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #E1E2E3;
}

.iti__country-name, .iti__flag-box {
    margin-right: 28px!important;
}

.iti__country.iti__highlight {
    background-color: #E8EBED;
}

.iti__country-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #3D3D3D;
    margin-right: 20px!important;
}

.iti__dial-code {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #7D7D80;
}

.popup__label-input-wrapper .ps__thumb-y {
    background-color: #7C7E8A!important;
    border-radius: 0;
    width: 4px;
    right: 0;
    opacity: 1!important;
}

.popup__label-input-wrapper .ps__rail-y:hover > .ps__thumb-y {
    background-color: #999;
    width: 8px;
}

.popup__label-input-wrapper .ps__rail-y {
    opacity: 1!important;
    background-color: #ccc!important;
    right: 3px!important;
    width: 1px;
}

.iti__country-list li:before {
    display: none;
}

.jdiv-hide > jdiv {
    visibility: hidden!important;
    opacity: 0;
}

/*buttons*/

.btnbig {
    width: 260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: .3s;
    border: 2px solid #E69317;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #210E2D;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
}

.btnbig--black {
    border-color: #FFFFFF;
    color: #F4AF46;
}

.btnbig:hover {
    background: #F4AF46;
    border-color: #F4AF46;
    color: #210E2D;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 260px;
    height: 70px;
    background: #1C122E;
    border-radius: 3px;
    transition: .3s;
    cursor: pointer;
    font-family: Gilroy;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.btn svg {
    margin-left: 14px;
}

.btn--white {
    color: #210E2D;
    background: #F0F0F2;
}

.btn--transparent {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #736E7A;
}

.btn--transparent:hover {
    border: 1px solid #F4AF46;
}

.btn:hover {
    color: #210E2D;
    background: #F4AF46;
}

.btn:hover svg path {
    fill: #210E2D;
}

.btnmore {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #736E7A;
    transition: .3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.btnmore:hover {
    text-decoration: none;
    color: #210E2D;
}

.btnmore--black {
    color: #D7D7D9;
}

.btnmore--black:hover {
    color: #F4AF46;
}

.btnmore svg {
    margin-left: 15px;
}

.btnmore:hover svg path {
    fill: #210E2D;
}

.btnmorebig {
    border: 1px solid #736E7A;
    box-sizing: border-box;
    border-radius: 3px;
    display: flex;
    flex-shrink: 0;
    transition: .3s;
    padding: 0 5px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #736E7A;
    width: 260px;
    height: 70px;
    cursor: pointer;
}

.btnmorebig:hover {
    background: #210E2D;
    border-color: #210E2D;
    color: #FFFFFF;
}

.btnmorebig--white:hover {
    color: #210E2D;
    border-color: #F0F0F2;
    background: #F0F0F2;
}

.btn-wrapper {
    display: flex;
}

.btn-wrapper > div:not(:last-child) {
    margin-right: 30px;
}

@media only screen and (max-width: 1279px) {
    .btnbig {
        width: 230px;
        height: 230px;
        padding: 0 16px;
    }
}

@media only screen and (max-width: 1023px) {
    .btnbig {
        cursor: default;
    }
    .btn {
        cursor: default;
    }
    .btnmore {
        cursor: default;
    }
    .btnmorebig {
        cursor: default;
    }
    .btnbig {
        width: 260px;
        height: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .btn {
        width: 420px;
    }
    .btnmore--mobile {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 420px;
        height: 60px;
        text-decoration: none;
        border: 1px solid #736E7A;
        border-radius: 3px;
    }
    .btnmore--mobile:hover {
        color: #FFFFFF;
        background: #210E2D;
        border-color: #210E2D;
    }
    .btnmore svg {
        margin-left: 10px;
    }
    .btnmore--mobile:hover svg path {
        fill: #FFFFFF;
    }
    .btnmorebig {
        width: 420px;
    }
    .btn-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .btn-wrapper > div:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .btnbig {
        width: 230px;
        height: 230px;
    }
}

@media only screen and (max-width: 479px) {
    .btn {
        width: 100%;
        height: 60px;
    }
    .btnmore--mobile {
        width: 100%;
    }
    .btnmorebig {
        width: 100%;
        height: 60px;
    }
}

/*main page*/

/*first screen*/

.fs {
    padding: 100px 0 130px;
}

.fs-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 130px;
}

.fs__title {
    font-family: Gilroy;
    font-style: normal;
    font-weight: normal;
    font-size: 85px;
    line-height: 105px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 55px;
}

.fs__title span {
    font-weight: 700;
}

.fs__text {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.03em;
    color: #210E2D;
}

.fs-prov {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-prov a {
    display: block;
    filter: grayscale(100%);
    transition: .3s;
    flex-shrink: 0;
    opacity: .6;
}

.fs-prov a:hover {
    filter: grayscale(0);
    opacity: 1;
}

.fs-prov a img {
    width: 100%;
    height: auto;
}

.mainimg {
    margin-bottom: 130px;
}

.fs-head .btnbig {
    width: 260px;
    height: 260px;
}

@media only screen and (min-width: 2560px) {
    .fs-info {
        max-width: 840px;
    }
    .fs__title {
        font-size: 95px;
        line-height: 115px;
        margin-bottom: 65px;
    }
    .fs__text {
        font-size: 35px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 1919px) {
    .fs__title {
        font-size: 65px;
        line-height: 85px;
        margin-bottom: 45px;
    }
}

@media only screen and (max-width: 1279px) {
    .mainimg {
        margin-bottom: 100px;
    }
    .fs-prov {
        justify-content: center;
        flex-wrap: wrap;
        gap: 50px 84px;
        padding: 0 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .fs {
        padding: 80px 0 100px;
    }
    .fs-head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .fs-head {
        margin-bottom: 100px;
    }
    .fs-info {
        margin-bottom: 60px;
    }
    .fs-prov {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 116px;
        padding: 0;
    }
    .fs-prov a {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .fs {
        padding: 80px 0;
    }
    .fs__title {
        font-size: 40px;
        line-height: 52px;
    }
    .fs-head {
        margin-bottom: 80px;
    }
    .mainimg {
        margin-bottom: 80px;
    }
    .mainimg .container {
        width: 100%;
    }
    .fs-prov {
        column-gap: 90px;
    }
    .fs-head .btnbig {
        width: 230px;
        height: 230px;
    }
}

@media only screen and (max-width: 479px) {
    .fs {
        padding: 50px 0 80px;
    }
    .fs__title {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 30px;
    }
    .fs__text {
        font-size: 22px;
        line-height: 32px;
    }
    .fs-prov {
        column-gap: 34px;
        justify-content: space-around;
    }
    .fs-prov a {
        width: 123px;
        height: 55px;
    }
    .mainimg img {
        width: 100%;
    }
}

/*title*/

.title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 0.03em;
    color: #210E2D;
    max-width: 840px;
    margin-bottom: 80px;
}

@media only screen and (max-width: 1279px) {
    .title {
        margin-bottom: 60px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 767px) {
    .title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 50px;
    }
    .title br {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .title {
        font-size: 28px;
        line-height: 40px;
    }
}


/*youget block*/

.youget {
    margin-bottom: 130px;
}

.youget__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}

.youget__item {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.youget__wrapper svg {
    margin-bottom: 25px;
}

.youget__item-title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 20px;
}

.youget__item-text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

@media only screen and (max-width: 1279px) {
    .youget {
        margin-bottom: 100px;
    }
    .youget__wrapper {
        flex-wrap: wrap;
        align-items: normal;
        margin-bottom: 30px;
    }
    .youget__item {
        width: 447px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .youget__wrapper {
        margin-bottom: 10px;
    }
    .youget__item {
        width: 319px;
    }
}

@media only screen and (max-width: 767px) {
    .youget {
        margin-bottom: 80px;
    }
    .youget__wrapper {
        padding: 0 20px;
    }
    .youget__item {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .youget__wrapper {
        margin-bottom: 0;
        padding: 0;
    }
    .youget__item-title {
        font-size: 24px;
        line-height: 34px;
    }
    .youget__item-text {
        font-size: 18px;
        line-height: 26px;
    }
}

/*projects block*/

.gsamples {
    margin-bottom: 130px;
}

.gsamples__wrapper {
    margin-bottom: 80px;
}

.gsamples__item {
    cursor: pointer;
    position: relative;
}

.gsamples__item:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(33, 14, 45, 0.6);
    transition: .3s opacity ease;
}

.gsamples__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gsamples__item:hover:before {
    opacity: 1;
}

.gsamples__item img:nth-child(2) {
    display: none;
}

.gsamples__item:not(:last-child) {
    margin-bottom: 40px;
}

.gsamples__item i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(.4);
    background: rgba(33, 14, 45, 0.8);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    transition: .3s;
    opacity: 0;
}

.gsamples__item:hover i {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
}

.gsamples__hidden {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding-bottom: 110px;
    overflow-y: scroll;
}

.gsamples__hidden.active {
    padding-top: 110px;
    display: flex;
}

.gsamples__hidden::-webkit-scrollbar {
    width: 0;
}

.gsamples__overlay {
    background: rgba(26, 32, 43, 0.85);
    box-shadow: -5 0px 4px 84px rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.gsamples__close {
    position: fixed;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 3;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8D8F99;
    transition: .3s;
}

.gsamples__close:hover {
    background: #ffffff;
}

.gsamples__slider-wrapper {
    z-index: 2;
    position: relative;
    margin: auto;
    display: none;
}

.gsamples__slider {
    width: 1000px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.gsamples__slider-wrapper .slick-track,
.gsamples__slider-wrapper .slick-list {
    height: auto;
}

.gsamples__slider-item {
    overflow: hidden;
}

.gsamples__nav {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1920px;
    height: 460px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.gsamples__slider-arrow {
    width: 230px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gsamples__slider-arrow i svg {
    width: 100%;
    height: 100%;
}

.gsamples__slider-arrow svg rect,
.gsamples__slider-arrow svg path {
    transition: .3s;
}

.gsamples__slider-arrow:hover i rect {
    fill: #ffffff;
}

.gsamples__slider-arrow:hover i path {
    fill: #131313;
}

.gsamples__slider-arrow:hover i g {
    opacity: 1;
}

.gsamples__otherproj-samples {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gsamples__otherproj-samples img {
    width: 300px;
    flex-shrink: 0;
}

.gsamples__item-mob {
    display: none;
}

.gsamples__slider-item > img:nth-child(2) {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .gsamples__hidden {
        padding-bottom: 100px;
    }
    .gsamples__hidden.active {
        padding-top: 100px;
    }
    .gsamples__nav {
        width: 1280px;
    }
    .gsamples__slider-arrow {
        width: 140px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"] {
        justify-content: flex-start;
        padding-left: 20px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"] {
        justify-content: flex-end;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1279px) {
    .gsamples {
        margin-bottom: 100px;
    }
    .gsamples__hidden {
        padding-bottom: 110px;
    }
    .gsamples__hidden.active {
        padding-top: 110px;
    }
    .gsamples__nav {
        width: 1024px;
    }
    .gsamples__slider-arrow {
        width: 132px;
    }
    .gsamples__slider {
        width: 760px;
    }
    .gsamples__otherproj-samples img {
        width: 240px;
    }
    .gsamples__otherproj {
        width: 760px;
    }
    .gsamples__close {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 1023px) {
    .gsamples__hidden {
        padding-bottom: 100px;
    }
    .gsamples__hidden.active {
        padding-top: 100px;
    }
    .gsamples__nav {
        width: 768px;
    }
    .gsamples__slider-arrow {
        width: 104px;
    }
    .gsamples__wrapper {
        margin-bottom: 60px;
    }
    .gsamples__item {
        cursor: default;
    }
    .gsamples__close {
        width: 60px;
        height: 60px;
    }
    .gsamples__slider {
        width: 560px;
    }
    .gsamples__otherproj-samples img {
        width: 160px;
    }
    .gsamples__otherproj {
        margin: 0 auto;
        width: 500px;
    }
    .gsamples__slider-item > img {
        width: 500px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .gsamples {
        margin-bottom: 80px;
    }
    .gsamples__hidden {
        padding-bottom: 80px;
    }
    .gsamples__hidden.active {
        padding-top: 80px;
    }
    .gsamples__nav {
        width: 480px;
        height: 340px;
    }
    .gsamples__slider-arrow {
        width: 70px;
    }
    .gsamples__wrapper {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    .gsamples__item img:nth-child(2) {
        display: block;
    }
    .gsamples__item img:nth-child(1) {
        display: none;
    }
    .gsamples__item:not(:last-child) {
        margin-bottom: 0;
    }
    .gsamples__item {
        margin-bottom: 20px!important;
        width: 200px;
        height: 433px;
    }
    .gsamples__item:before {
        border-radius: 15px;
    }
    .gsamples__item i {
        width: 70px;
        height: 70px;
    }
    .gsamples__item i svg {
        width: 20px;
        height: 20px;
    }
    .gsamples__slider {
        width: 340px;
    }
    .gsamples__slider-item img {
        width: 340px;
    }
    .gsamples__otherproj {
        width: 270px;
    }
    .gsamples__otherproj-samples img {
        width: 70px;
    }
    .gsamples__item > img:nth-child(2) {
        display: block;
    }
    .gsamples__item > img:nth-child(1) {
        display: none;
    }
    .gsamples__slider-item > img:nth-child(2) {
        display: block;
    }
    .gsamples__slider-item > img:nth-child(1) {
        display: none;
    }
    .gsamples__slider-arrow i {
        width: 45px;
        height: 40px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"] {
        padding-left: 10px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"] {
        padding-right: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .gsamples__wrapper {
        margin-bottom: 20px;
    }
    .gsamples__item {
        width: 100%;
        height: auto;
        margin-bottom: 30px!important;
    }
    .gsamples__hidden {
        padding-bottom: 60px;
    }
    .gsamples__hidden.active {
        padding-top: 60px;
    }
    .gsamples__nav {
        width: 100%;
        height: 291px;
    }
    .gsamples__slider-arrow {
        width: 40px;
    }
    .gsamples__slider {
        width: 75vw;
    }
    .gsamples__slider-arrow i {
        width: 35px;
        height: 31px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"] {
        padding-left: 5px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"] {
        padding-right: 5px;
    }
    .gsamples__otherproj {
        width: calc(100vw - 130px);
    }
    .gsamples__otherproj-samples img {
        width: calc((100vw - 130px - 40px) / 3);
    }
}

/*video block*/

.video {
    margin-bottom: 130px;
}

.video iframe {
    width: 100%;
    height: 636px;
}

.seo iframe {
    height: 393px;
    width: 100%;
}

@media only screen and (max-width: 1919px) {
    .seo iframe {
        height: 387px;
    }
}

@media only screen and (max-width: 1279px) {
    .video {
        margin-bottom: 100px;
    }
    .video iframe {
        height: 520px;
    }
    .seo iframe {
        height: 427px;
    }
}

@media only screen and (max-width: 1023px) {
    .video iframe {
        height: 376px;
    }
    .seo iframe {
        height: 286px;
    }
}

@media only screen and (max-width: 767px) {
    .video {
        margin-bottom: 80px;
    }
    .video iframe {
        height: 236px;
    }
    .seo iframe {
        height: 220px;
        width: 392px;
    }
}

@media only screen and (max-width: 479px) {
    .video iframe {
        height: 49vw;
    }
    .seo iframe {
        width: 78.4375vw;
        height: 44.375vw;
    }
}

/*advantages block*/

.advantages {
    margin-bottom: 130px;
}

.advantages__content {
    background: #FAFAFA;
    padding: 130px 0;
}

.advantages--grayitems .advantages__content {
    padding: 0;
    background: transparent;
}

.advantages__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.advantages__content .btnmore {
    display: inline-flex;
}

.advantages__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 40px;
    /*min-height: 160px;*/
    background: #FFFFFF;
    width: 550px;
    flex-shrink: 0;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.advantages--grayitems .advantages__item {
    background: #FAFAFA;
    min-height: 130px;
    padding: 35px 40px;
}

.advantages__item:nth-child(n+7) {
    display: none;
}

.advantages__content.active .advantages__item {
    display: flex!important;
}

.advantages__item svg {
    margin-right: 30px;
}

.advantages__content .btnmore span:nth-child(2) {
    display: none;
}

.advantages__content.active .btnmore span:nth-child(2) {
    display: block;
}

.advantages__content.active .btnmore span:nth-child(1) {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .advantages__content .container-small {
        padding: 0 75px;
    }
    .advantages__item {
        width: 475px;
    }
    .advantages--grayitems .advantages__item {
        width: 550px;
    }
    .advantages--grayitems .advantages__content .container-small {
        padding: 0;
    }
}

@media only screen and (max-width: 1279px) {
    .advantages {
        margin-bottom: 100px;
    }
    .advantages .container {
        width: 100%;
    }
    .advantages__content .container-small {
        padding: 0;
    }
    .advantages__item {
        padding: 35px 30px;
        width: 447px;
    }
    .advantages__content {
        padding: 100px 0;
    }
    .advantages--grayitems .advantages__item {
        width: 447px;
        min-height: 160px;
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 1023px) {
    .advantages__wrapper {
        margin-bottom: 30px;
    }
    .advantages__item {
        width: 100%;
        padding: 35px 40px;
    }
    .advantages--grayitems .advantages__item {
        width: 100%;
        min-height: auto;
        padding: 35px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .advantages {
        margin-bottom: 80px;
    }
    .advantages__content {
        padding: 80px 0;
    }
    .advantages__item {
        padding: 35px 30px;
        min-height: auto;
    }
    .advantages--grayitems .advantages__item {
        padding: 35px 30px;
    }
    .advantages__item svg {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .advantages__content .container-small {
        padding: 0 20px;
    }
    .advantages__wrapper {
        margin-bottom: 20px;
    }
    .advantages__item {
        padding: 30px 20px;
        font-size: 18px;
        line-height: 26px;
        word-break: break-word;
    }
    .advantages--grayitems .advantages__item {
        padding: 30px 20px;
    }
    .advantages--grayitems .advantages__content .container-small {
        padding: 0 20px;
    }
}

/*demo block*/

.demo {
    margin-bottom: 130px;
}

.demo--withoutmore .btnmore {
    display: none;
}

.demo--withoutall .btnmore {
    display: none;
}

.demo--withoutall .demo__text {
    display: none;
}

.demo--withoutall .demo__title {
    margin-bottom: 0;
}

.demo--withoutmore .demo__text {
    margin-bottom: 0!important;
}

.demo__wrapper {
    background: #1C122E;
}

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

.demo__info {
    max-width: 743px;
}

.demo__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 65px;
    line-height: 80px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.demo__text {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.02em;
    color: #D7D7D9;
    margin-bottom: 50px;
    padding-right: 12px;
}

.demo__wrapper .container-small {
    padding: 130px 0;
}

.paysystempage .demo .demo__title {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1919px) {
    .demo__title {
        font-size: 55px;
        line-height: 70px;
    }
    .demo__wrapper .container-small {
        padding: 130px 75px;
    }
    .demo__info {
        max-width: 660px;
    }
}

@media only screen and (max-width: 1279px) {
    .demo {
        margin-bottom: 100px;
    }
    .demo__title {
        font-size: 45px;
        line-height: 60px;
    }
    .demo__info {
        max-width: 556px;
    }
    .demo__text {
        padding-right: 0;
    }
    .demo__wrapper .container-small {
        padding: 100px 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .demo__content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .demo__info {
        margin-bottom: 60px;
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .demo {
        margin-bottom: 80px;
    }
    .demo__title {
        font-size: 30px;
        line-height: 40px;
    }
    .demo__text {
        font-size: 22px;
        line-height: 32px;
    }
    .demo .container {
        width: 100%;
    }
    .demo__wrapper .container-small {
        padding: 80px 0;
        width: 420px;
    }
    .paysystempage .demo {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 479px) {
    .demo__info {
        margin-bottom: 50px;
    }
    .demo__title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .demo__text {
        letter-spacing: 0.019em;
    }
    .demo__wrapper .container-small {
        padding: 80px 20px;
        width: 100%;
    }
}

/*we offer block*/

.weoffer {
    margin-bottom: 130px;
}

.weoffer__content {
    background: #FAFAFA;
    padding: 130px 0;
}

.weoffer__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -30px;
}

.weoffer__item {
    padding: 80px 50px;
    background: #FFFFFF;
    width: 550px;
    margin-bottom: 30px;
}

.weoffer__head {
    display: flex;
    align-items: center;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 50px;
    width: 100%;
}

.weoffer__head svg {
    margin-right: 20px;
}

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

.weoffer__body ul li {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
    padding-left: 50px;
}

.weoffer__body ul li:not(:last-child) {
    margin-bottom: 30px;
}

.weoffer__body ul li:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: #210E2D;
}

.weoffer__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 40px;
}

.weoffer__text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

@media only screen and (max-width: 1919px) {
    .weoffer__content {
        background: #FAFAFA;
        padding: 130px 75px;
    }
    .weoffer__item {
        padding: 70px 40px;
        width: 475px;
    }
    .weoffer__content .container-small {
        width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .weoffer {
        margin-bottom: 100px;
    }
    .weoffer__content {
        padding: 100px 50px;
    }
    .weoffer__item {
        padding: 60px 40px;
        width: 447px;
    }
    .weoffer__item:nth-child(2n-1) {
        margin-right: 30px;
    }
    .weoffer .container {
        width: 100%;
    }
    .weoffer__content .container-small {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .weoffer__item {
        width: 100%;
    }
    .weoffer__item:nth-child(2n-1) {
        margin-right: 0;
    }
    .weoffer__content .container-small {
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .weoffer {
        margin-bottom: 80px;
    }
    .weoffer__content {
        padding: 80px 30px;
    }
    .weoffer__item {
        padding: 50px 30px;
    }
    .weoffer__title {
        margin-bottom: 20px;
    }
    .weoffer__content .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .weoffer__item {
        padding: 50px 20px;
    }
    .weoffer__head {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 40px;
    }
    .weoffer__head svg {
        width: 50px;
        height: 50px;
    }
    .weoffer__body ul li {
        font-size: 18px;
        line-height: 26px;
        padding-left: 28px;
    }
    .weoffer__body ul li:before {
        width: 8px;
        height: 8px;
    }
    .weoffer__content {
        padding: 80px 20px;
    }
    .weoffer__title {
        font-size: 18px;
        line-height: 26px;
    }
    .weoffer__text {
        font-size: 18px;
        line-height: 26px;
    }
    .weoffer__content .container-small {
        width: 100%;
    }
}

/*gaminator img block*/

@media only screen and (max-width: 767px) {
    .mainimg--gam {
        display: none;
    }
}

/*awards block*/

.awards {
    margin-bottom: 130px;
}

.awards__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px 171px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.awards__item {
    width: 154px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.awards__img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 90px;
    margin-bottom: 20px;
}

.awards__text {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    color: #210E2D;
    padding: 0 15px;
}

.awards .btnmore {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .awards {
        margin-bottom: 100px;
    }
    .awards__wrapper {
        gap: 50px 102px;
    }
}

@media only screen and (max-width: 1023px) {
    .awards__wrapper {
        column-gap: 103px;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .awards {
        margin-bottom: 80px;
    }
    .awards__wrapper {
        column-gap: 72px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 479px) {
    .awards__wrapper {
        justify-content: space-evenly;
        column-gap: 27px;
        padding: 0;
    }
    .awards__item:nth-child(n+5) {
        display: none;
    }
    .awards.active .awards__item {
        display: flex!important;
    }
    .awards .btnmore {
        display: flex;
        margin-top: 50px;
    }
    .awards .btnmore span:nth-child(2) {
        display: none;
    }
    .awards.active .btnmore span:nth-child(1) {
        display: none;
    }
    .awards.active .btnmore span:nth-child(2) {
        display: block;
    }
}

/*game soft block*/

.gamesoft {
    margin-bottom: 130px;
}

.gamesoft__wrapper {
    background: #FAFAFA;
    padding: 130px 0;
}

.gamesoft__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gamesoft__item {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #ffffff;
    transition: .3s;
    float: left;
    width: 260px;
    height: 161px;
}

.aboutpage .gamesoft__item {
    cursor: default;
}

.gamesoft__item:hover {
    border-color: #353342;
    box-shadow: 0 6px 18px rgba(53, 51, 66, 0.1);
}

.gamesoft__item img {
    filter: grayscale(100%);
    transition: .3s;
    width: 145px;
}

.gamesoft__item:hover img {
    filter: grayscale(0);
}

.gamesoft .btnmore {
    display: none;
}

.gamesoft .btn-wrapper {
    margin-top: 80px;
}

@media only screen and (max-width: 1919px) {
    .gamesoft__wrapper {
        padding: 130px 75px;
    }
    .gamesoft__wrapper .container-small {
        width: 100%;
    }
    .gamesoft__content {
        column-gap: 32px;
    }
    .gamesoft__item {
        width: 221px;
        height: 141px;
    }
}

@media only screen and (max-width: 1279px) {
    .gamesoft {
        margin-bottom: 100px;
    }
    .gamesoft .container {
        width: 1024px;
    }
    .gamesoft__wrapper {
        padding: 100px 50px;
    }
    .gamesoft__content {
        column-gap: 26px;
    }
    .gamesoft__item {
        width: 211px;
        height: 141px;
    }
}

@media only screen and (max-width: 1023px) {
    .gamesoft .container {
        width: 768px;
    }
    .gamesoft__content {
        gap: 26px;
    }
    .gamesoft__item {
        width: 205px;
        cursor: default;
    }
    .gamesoft__item img {
        filter: grayscale(0);
    }
    .gamesoft .btn-wrapper {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .gamesoft {
        margin-bottom: 80px;
    }
    .gamesoft .container {
        width: 480px;
    }
    .gamesoft__wrapper {
        padding: 80px 30px;
    }
    .gamesoft__content {
        gap: 30px;
    }
    .providerspage .gamesoft .btnmore {
        margin-bottom: 60px;
    }
    .gamesoft__item {
        width: 195px;
        height: 125px;
    }
    .gamesoft__item:nth-child(n+9) {
        display: none;
    }
    .gamesoft .btnmore {
        display: flex;
        margin-top: 60px;
    }
    .gamesoft .btn-wrapper {
        margin-top: 0;
    }
    .gamesoft .btnmore span:nth-child(2) {
        display: none;
    }
    .gamesoft.active .btnmore span:nth-child(1) {
        display: none;
    }
    .gamesoft.active .btnmore span:nth-child(2) {
        display: block;
    }
    .gamesoft.active .gamesoft__item {
        display: flex!important;
    }
}

@media only screen and (max-width: 479px) {
    .gamesoft__item:nth-child(n+5) {
        display: none;
    }
    .aboutpage .gamesoft__item {
        display: flex!important;
    }
    .gamesoft {
        margin-top: -80px;
    }
    .gamesoft .container {
        width: 100%;
    }
    .gamesoft__wrapper {
        padding: 80px 20px;
    }
    .providerspage .gamesoft .btnmore {
        margin-bottom: 50px;
    }
    .gamesoft__item {
        width: 100%;
        height: 125px;
    }
    .gamesoft .btnmore {
        margin-top: 50px;
    }
    .partnerpage .gamesoft {
        margin-top: 0;
    }
}

/*reviews block*/

.reviews {
    margin-bottom: 130px;
}

.reviews__wrapper {

}

.reviews__slider {
    background: #FAFAFA;
    border-radius: 3px;
    padding: 70px 80px;
    margin-bottom: 80px;
}

[data-rating="4"] .reviews__rating svg:nth-child(n+5) path,
[data-rating="3"] .reviews__rating svg:nth-child(n+4) path,
[data-rating="2"] .reviews__rating svg:nth-child(n+3) path,
[data-rating="1"] .reviews__rating svg:nth-child(n+2) path,
[data-rating="0"] .reviews__rating svg:nth-child(n+1) path {
    fill: #BAB8BF;
}

.reviews__rating svg:not(:last-child) {
    margin-right: 10px;
}

.reviews__head {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #210E2D;
}

.reviews__head svg {
    margin-right: 16px;
}

.reviews__rating {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.reviews__text {
    font-size: 25px;
    line-height: 40px;
    color: #210E2D;
}

@media only screen and (max-width: 1279px) {
    .reviews {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .reviews__slider {
        padding: 70px 50px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .reviews {
        margin-bottom: 80px;
    }
    .reviews__slider {
        padding: 50px 30px;
    }
    .reviews__text {
        font-size: 22px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 479px) {
    .reviews__slider {
        padding: 50px 20px;
        margin-bottom: 50px;
    }
    .reviews__head {
        margin-bottom: 30px;
    }
    .reviews__text {
        font-size: 18px;
        line-height: 26px;
    }
}

/*slider nav*/

.slider-nav {
    display: flex;
    align-items: center;
}

.slider-nav__arrow {
    flex-shrink: 0;
    border: 1px solid #736E7A;
    border-radius: 3px;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider-nav__arrow:hover {
    background: #210E2D;
    border-color: #210E2D;
}

.slider-nav__arrow:hover path {
    fill: #FFFFFF;
}

.slider-nav__arrow:not(:last-child) {
    margin-right: 40px;
}

@media only screen and (max-width: 1023px) {
    .slider-nav__arrow {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .slider-nav {
        justify-content: space-between;
    }
    .slider-nav__arrow {
        width: 200px;
        padding: 19px 29px;
    }
    .slider-nav__arrow {
        justify-content: flex-start;
        height: 50px;
    }
    .slider-nav__arrow:nth-child(2) {
        justify-content: flex-end;
    }
    .slider-nav__arrow:not(:last-child) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 479px) {
    .slider-nav__arrow {
        width: calc(50% - 10px);
    }
}

/*articles block*/

.articles {
    margin-bottom: 130px;
}

.articles__wrapper {
    padding: 130px 0;
    background: #FAFAFA;
}

.articles__block {
    margin-bottom: 80px;
}

.textpage .articles__block {
    margin-bottom: 0;
}

.articles__item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: .3s;
    border-bottom: 1px solid #736E7A;
    padding: 45px 40px;
    min-height: 330px;
}

.articles__item:hover {
    background: #FFFFFF;
}

.articles__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 760px;
    flex-shrink: 0;
}

.articles__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 40px;
}

.articles__item:hover .articles__title {
    text-decoration: underline;
}

.articles__tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -15px;
    width: 100%;
    max-height: 100px;
}

.articles__tags a {
    transition: .3s;
    display: inline;
    font-family: Gilroy;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #210E2D;
    margin-bottom: 15px;
}

.articles__tags a:not(:last-child) {
    margin-right: 15px;
}

.articles__tags a:hover {
    color: #736E7A;
    text-decoration: none;
}

.articles__date {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #736E7A;
}

.articles__img {
    flex-shrink: 0;
    width: 210px;
    height: 210px;
}

.articles__img img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1919px) {
    .articles__wrapper .container-small {
        width: 100%;
    }
    .articles__wrapper {
        padding: 130px 75px;
    }
    .articles__item {
        min-height: 342px;
    }
    .articles__info {
        width: 630px;
    }
    .articles__title {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 1279px) {
    .articles {
        margin-bottom: 100px;
    }
    .articles__wrapper {
        padding: 100px 50px;
    }
    .articles .container {
        width: 100%;
    }
    .articles__item {
        padding: 45px 30px;
        min-height: 360px;
    }
    .articles__info {
        width: 594px;
    }
    .articles__wrapper .container-small {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .articles__block {
        margin-bottom: 60px;
    }
    .articles__item {
        padding: 40px;
        min-height: 388px;
    }
    .articles__info {
        width: 348px;
    }
    .articles__title {
        font-size: 26px;
        line-height: 38px;
    }
    .articles__tags {
        margin-bottom: 0;
    }
    .articles__wrapper .container-small {
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .articles {
        margin-bottom: 0;
    }
    .articles__wrapper {
        padding: 80px 30px;
    }
    .articles__item {
        position: relative;
        padding: 30px;
        min-height: 605px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .articles__info {
        order: 2;
        width: 100%;
    }
    .articles__date {
        position: absolute;
        bottom: 30px;
    }
    .articles__img {
        order: 1;
        margin-bottom: 40px;
    }
    .textpage .articles {
        margin-top: -80px;
    }
    .articles__wrapper .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .articles__wrapper {
        padding: 80px 20px;
    }
    .articles__block {
        margin-bottom: 50px;
    }
    .articles__item {
        padding: 20px;
        min-height: 620px;
    }
    .articles__title {
        font-size: 22px;
        line-height: 32px;
    }
    .articles__img {
        margin-bottom: 30px;
    }
    .articles__date {
        font-size: 16px;
        line-height: 24px;
        bottom: 20px;
    }
    .articles__wrapper .container-small {
        width: 100%;
    }
}

/* videos block */

.videos {
    margin-bottom: 130px;
}

.videos__wrapper {
    padding: 130px 0;
    background: #FAFAFA;
}

.videos__block {
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 31px 30px;
}

.videos__item {
    padding: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: calc((100% - 30px) / 2);
    min-height: 565px;
    background: #FFF;
    border-bottom: 1px solid #736E7A;
}

.videos__item-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 265px;
}

.videos__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos__item-img > svg {
    position: absolute;
}

.videos__item-img:hover svg path:first-child {
    fill: #FF0000;
    opacity: 1;
}

.videos__item-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
    flex-grow: 1;
}

.videos__item-title {
    color: #210E2D;
    font-family: Gilroy;
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0.9px;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    transition: .3s;
}

.videos__item-title:hover {
    text-decoration-color: #210E2D;
}

.videos__item-details {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.videos__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
}

.videos__tags > a {
    padding-bottom: 5px;
    color: #210E2D;
    font-family: Gilroy;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    transition: .3s;
}

.videos__tags > a:hover {
    color: #736E7A;
    text-decoration-color: transparent;
}

.videos__date {
    color: #736E7A;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4px;
}

@media only screen and (max-width: 1919px) {
    .videos__wrapper {
        padding: 130px 75px;
    }
    .videos__wrapper .container-small {
        width: 980px;
    }
    .videos__item {
        min-height: 555px;
    }
    .videos__item-img {
        height: 223px;
    }
}

@media only screen and (max-width: 1279px) {
    .videos {
        margin-bottom: 100px;
    }
    .videos .container {
        width: 100%;
    }
    .videos__wrapper .container-small {
        width: 924px;
    }
    .videos__wrapper {
        padding: 100px 50px;
    }
    .videos__item {
        min-height: 527px;
    }
    .videos__item-img {
        height: 207px;
    }
    .videos__item-title {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: 0.78px;
    }
}

@media only screen and (max-width: 1023px) {
    .videos__block {
        margin-bottom: 60px;
    }
    .videos__wrapper .container-small {
        width: 668px;
    }
    .videos__item {
        padding: 30px;
        min-height: 428px;
        row-gap: 20px;
    }
    .videos__item-img {
        height: 146px;
    }
    .videos__item-title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.6px;
        text-underline-offset: 5px;
    }
    .videos__item-details {
        min-height: 92px;
        justify-content: space-between;
        row-gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .videos {
        margin-bottom: 0;
    }
    .videos__wrapper {
        padding: 80px 30px;
    }
    .videos__wrapper .container-small {
        width: 420px;
    }
    .videos__item {
        width: 100%;
        min-height: 503px;
        row-gap: 30px;
    }
    .videos__item-img {
        height: 203px;
    }
    .videos__item-title {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: 0.78px;
    }
    .videos__item-details {
        min-height: unset;
        row-gap: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .videos__block {
        margin-bottom: 50px;
        row-gap: 21px;
    }
    .videos__wrapper {
        padding: 80px 20px;
    }
    .videos__wrapper .container-small {
        width: 100%;
    }
    .videos__item {
        padding: 20px 20px 30px;
        min-height: 407px;
        row-gap: 20px;
    }
    .videos__item-img {
        height: 42.2vw;
    }
    .videos__item-title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.6px;
        text-underline-offset: 4px;
    }
    .videos__item-details {
        row-gap: 15px;
    }
}

/* video child page */

.videochildpage .breadcrumbs {
    padding-bottom: 80px;
}

.fs-videochildpage-title {
    color: #210E2D;
    font-family: Gilroy;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.88px;
}

.fs-videochildpage-date {
    margin-top: 30px;
    color: #736E7A;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.4px;
}

.videochildpage__tags {
    margin-top: 30px;
}

.videochildpage__tags-wrapper {
    padding-top: 30px;
    border-top: 1px solid #D7D6D9;
    display: flex;
    column-gap: 19px;
}

.videochildpage__tags-wrapper > span {
    color: #210E2D;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.28px;
}

.videochildpage__tags-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.videochildpage__tags-items > a {
    color: #736E7A;
    font-family: Gilroy;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.28px;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    transition: .3s;
}

.videochildpage__tags-items > a:hover {
    color: #210E2D;
    text-decoration-color: transparent;
}

.videochildpage__video {
    margin-top: 50px;
}

.videochildpage__video-box {
    position: relative;
    height: 636px;
}

.videochildpage__video-box embed {
    height: 636px !important;
}

.video-helper {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1279px) {
    .videochildpage__video-box {
        height: 520px;
    }
    .videochildpage__video-box embed {
        height: 520px !important;
    }
    .videochildpage__video {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1023px) {
    .videochildpage__video-box {
        height: 376px;
    }
    .videochildpage__video-box embed {
        height: 376px !important;
    }
}

@media only screen and (max-width: 767px) {
    .videochildpage .breadcrumbs {
        padding: 40px 0;
    }
    .fs-videochildpage-title {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.64px;
    }
    .videochildpage__video-box {
        height: 236px;
    }
    .videochildpage__video-box embed {
        height: 236px !important;
    }
}

@media only screen and (max-width: 479px) {
    .videochildpage .breadcrumbs {
        padding: 20px 0;
    }
    .fs-videochildpage-title {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 0.56px;
    }
    .videochildpage__tags {
        margin-top: 20px;
    }
    .videochildpage__tags-wrapper {
        padding-top: 20px;
    }
    .videochildpage__video-box {
        height: 49.0625vw;
    }
    .videochildpage__video-box embed {
        height: 49.0625vw !important;
    }
}

/* othervideo slider */

.othervideo {
    margin: 130px 0;
}

.othervideo__slider.no-slider + .slider-nav {
    display: none;
}

.othervideo__slider.no-slider {
    margin-bottom: 0;
}

.othervideo__wrapper {
    padding: 130px 0;
    background: #FAFAFA;
}

.othervideo__title {
    margin-bottom: 80px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 0.03em;
    color: #210E2D;
}

.othervideo__slider {
    margin-bottom: 80px;
}

.othervideo__slider .slick-track {
    display: flex;
}

.othervideo__slider .videos__item {
    margin-right: 30px;
    width: 550px;
    min-height: 565px;
    height: auto !important;
    display: flex !important;
}

@media only screen and (max-width: 1919px) {
    .othervideo__wrapper {
        padding: 130px 75px;
    }
    .othervideo__wrapper .container-small {
        width: 100%;
    }
    .othervideo__slider .videos__item {
        width: 475px;
        min-height: 555px;
    }
}

@media only screen and (max-width: 1279px) {
    .othervideo {
        margin: 100px 0;
    }
    .othervideo .container {
        width: 100%;
    }
    .othervideo__wrapper {
        padding: 100px 50px;
    }
    .othervideo__wrapper .container-small {
        width: 924px;
    }
    .othervideo__title {
        margin-bottom: 60px;
    }
    .othervideo__slider .videos__item {
        width: 447px;
        min-height: 527px;
    }
}

@media only screen and (max-width: 1023px) {
    .othervideo__wrapper .container-small {
        width: 668px;
    }
    .othervideo__title {
        font-size: 40px;
        line-height: 52px;
    }
    .othervideo__slider {
        margin-bottom: 60px;
    }
    .othervideo__slider .videos__item {
        width: 319px;
        min-height: 428px;
    }
}

@media only screen and (max-width: 767px) {
    .othervideo {
        margin: 80px 0 0;
    }
    .othervideo__wrapper {
        padding: 80px 30px;
    }
    .othervideo__wrapper .container-small {
        width: 420px;
    }
    .othervideo__title {
        margin-bottom: 50px;
        font-size: 32px;
        line-height: 44px;
    }
    .othervideo__slider .videos__item {
        width: 420px;
        min-height: 503px;
    }
}

@media only screen and (max-width: 479px) {
    .othervideo__wrapper {
        padding: 80px 20px;
    }
    .othervideo__wrapper .container-small {
        width: 100%;
    }
    .othervideo__title {
        margin-bottom: 40px;
        font-size: 28px;
        line-height: 40px;
    }
    .othervideo__slider {
        margin-bottom: 50px;
    }
    .othervideo__slider .videos__item {
        width: calc(100vw - 40px);
        min-height: 407px;
    }
}

/*SEO block*/

.seo {
    margin-bottom: 130px;
}

.seo__wrap {
    padding: 130px 0;
    background: #FAFAFA;
}

.seo__wrapper {
    margin: 0 auto;
    width: 984px;
    background: #FFFFFF;
    padding: 60px 108px;
    overflow: hidden;
}

.seo__block {
    position: relative;
    padding-right: 69px;
    width: 100%;
    height: 698px;
}

.seo__head {
    margin-bottom: 40px;
}

.seo h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 44px;
    line-height: 56px;
    letter-spacing: 0.02em;
    color: #1C122E;
    margin-bottom: 40px;
}

.seo hr {
    margin-bottom: 50px;
}

.nav-content {
    border: 1px solid #D3D0D9;
    border-bottom: none;
}

.nav-content.no-border {
    border: none;
}

.nav-content__title {
    display: flex;
    align-items: center;
    background: #F7F6F6;
    border-bottom: 1px solid #E5E5E5;
    padding: 23px 19px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #736E7A;
}

.nav-content__title svg {
    flex-shrink: 0;
    margin-right: 15px;
}

.nav-content__title svg path {
    fill: #736E7A;
    stroke: #736E7A;
}

.nav-content__wrapper {
    display: flex;
    flex-direction: column;
}

.nav-content__item {
    padding: 15px 19px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    border-bottom: 1px solid #D3D0D9;
}

.nav-content__link {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #412E4D;
    transition: .3s;
}

.nav-content__link:hover {
    color: #D38105;
    text-decoration: underline;
}

.nav-content__link.active {
    color: #D38105;
}

.nav-content__subitem-wrapper {
    border-bottom: 1px solid #D3D0D9;
    padding: 15px 29px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.nav-content__item.active + .nav-content__subitem-wrapper {
    display: flex;
}

.nav-content__subitem {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #412E4D;
    padding: 5px 0;
}

.nav-content__subitem:hover {
    color: #D38105;
    text-decoration: underline;
}

.nav-content__subitem.active {
    color: #D38105;
}

.ps > .ps__rail-y {
    opacity: 1!important;
    z-index: 2;
}

.ps .ps__thumb-y {
    width: 10px!important;
    right: 0;
    background-color: #CBCACC;
    border-radius: 0;
}

.ps .ps__thumb-y:after {
    position: absolute;
    content: '';
    height: 100%;
    left: -10px;
    width: 10px;
    top: 0;
    background: transparent;
}

.ps .ps__rail-y {
    width: 10px!important;
    background-color: #E4E3E5!important;
}

.ps .ps__rail-y:before {
    position: absolute;
    content: '';
    height: 100%;
    left: -10px;
    width: 10px;
    top: 0;
    background: transparent;
}

.ps .ps__rail-y:after {
    position: absolute;
    content: '';
    height: 100%;
    right: -10px;
    width: 10px;
    top: 0;
    background: transparent;
}

.ps .ps__rail-y:hover .ps__thumb-y  {
    background-color: #7A797A;
}

.seo__more-btn {
    display: none;
}

.nav-content-more {
    width: 30px;
    height: 30px;
    border: 1px solid #959399;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: .3s;
    cursor: pointer;
}

.nav-content-more:hover {
    border-color: #D38105;
}

.nav-content-more:hover svg path {
    fill: #D38105;
}

.nav-content-more svg {
    transition: .3s;
}

.nav-content__item.active .nav-content-more svg {
    transform: scale(-1);
}

/* aside nav-content */

@media only screen and (min-width: 1280px) {
    .textpage-box {
        margin: 0 auto;
        display: flex;
        column-gap: 46px;
        width: 1130px;
    }

    .textpage-box .textpage__wrapper {
        margin: unset;
    }
    
    .textpage-box .nav-content {
        margin-bottom: 130px;
        width: 280px;
        height: fit-content;
        flex-shrink: 0;
        position: sticky;
        top: 140px;
        transition: .5s;
    }

    .techpage .textpage-box .nav-content {
        margin-bottom: 0;
    }

    .textpage-box .nav-content__title {
        padding: 19px;
        font-size: 18px;
        line-height: 28px;
    }
    
    .textpage-box .nav-content__link {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

    .textpage-box .nav-content__subitem-wrapper {
        padding: 15px 20px 14px 36px;
    }

    .textpage-box .nav-content__subitem {
        padding: 3px 0;
        font-size: 16px;
        line-height: 24px;
        transition: .3s;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1919px) {
    .textpage-box .nav-content {
        top: 160px;
    }
}

@media only screen and (max-width: 1919px) {
    .seo__wrapper {
        margin: 0 auto;
        width: 950px;
        padding: 60px 96px;
    }
}

@media only screen and (max-width: 1279px) {
    .textpage-box .textpage__wrapper {
        margin: 0 auto 0 50px;
    }
    .nav-content__item {
        padding: 17px 19px;
    }
    .seo .container {
        width: 100%;
    }
    .seo__wrapper {
        width: 924px;
        padding: 60px 48px;
    }
    .seo__wrap {
        padding: 100px 0;
    }
    .seo {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .textpage-box .textpage__wrapper {
        margin: 0 auto;
    }
    .seo__wrapper {
        width: 668px;
        padding: 60px;
    }
    .seo__block {
        width: 100%;
        margin: 0 auto;
        padding-right: 39px;
    }
    .seo__head {
        margin-bottom: 40px;
    }
    .seo__wrap {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .seo {
        margin-bottom: 0;
    }
    .seo__wrap {
        padding: 80px 0;
    }
    .seo__wrapper {
        padding: 50px 30px;
        width: 100%;
    }
    .seo__block {
        width: 100%;
        height: 510px;
        padding-right: 28px;
    }
    .seo__block.active {
        height: auto;
        max-height: 2440px;
    }
    .seo__head {
        margin-bottom: 50px;
    }
    .seo h1 {
        font-size: 32px;
        line-height: 44px;
    }
    .seo__more-btn {
        display: flex;
        align-items: center;
        margin: 40px auto 0;
        width: 420px;
    }
    .seo__more-btn svg {
        flex-shrink: 0;
        margin-left: 5px;
        transition: .3s;
    }
    .seo__more-btn span:nth-child(2) {
        display: none;
    }
    .seo__more-btn.active span:nth-child(2) {
        display: block;
    }
    .seo__more-btn.active span:nth-child(1) {
        display: none;
    }
    .seo__more-btn.active svg {
        transform: scaleY(-1);
    }
    .seo__more-btn:hover svg path {
        fill: #ffffff;
    }
}

@media only screen and (max-width: 479px) {
    .seo__wrap {
        padding: 50px 0;
    }
    .seo__wrapper {
        width: 100%;
        padding: 40px 20px 41px;
    }
    .seo__block {
        width: 100%;
        height: 413px;
        padding-right: 29px;
    }
    .seo__block.active {
        height: auto;
        max-height: 2520px;
    }
    .seo h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 21px;
    }
    .seo hr {
        margin-bottom: 40px;
    }
    .nav-content__title {
        padding: 20px;
        font-size: 18px;
        line-height: 28px;
    }
    .nav-content__item {
        padding: 14px 19px;
    }
    .seo .nav-content__item {
        padding: 14px 10px 14px 14px;
    }
    .nav-content__link,
    .nav-content__subitem {
        font-size: 16px;
        line-height: 24px;
    }
    .nav-content__subitem-wrapper {
        padding: 8px 19px  8px 36px;
    }
    .seo__more-btn {
        width: 100%;
        margin: 31px  auto 0;
    }
}

/*textstyle*/

.textstyle p,
ul li,
ol li,
.textstyle table td {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.textstyle p {
    margin-bottom: 50px;
}

.textstyle b {
    font-weight: 700;
}

.textstyle p a,
ul li a,
ol li a,
.textstyle table td a {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-decoration: underline;
    transition: .3s;
    font-weight: 700;
}

.textstyle table td a {
    font-weight: 700;
}

.textstyle p a:hover,
ul li a:hover,
ol li a:hover,
.textstyle table td a:hover {
    color: #736E7A;
    text-decoration: none;
}

.textstyle > a:visited,
.textstyle p a:visited,
ul li a:visited,
ol li a:visited,
.textstyle table td a:visited {
    color: #5B5761;
    text-decoration-color: #5B5761;
    text-decoration: underline;
}

.textstyle p a:visited:hover,
ul li a:visited:hover,
ol li a:visited:hover,
.textstyle table td a:visited:hover {
    text-decoration: none;
    color: #736E7A;
}

.textstyle .btn {
    margin-bottom: 50px;
}

.textstyle > img {
    width: 100%!important;
    height: auto!important;
    margin-bottom: 50px;
}

.textpage__head h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 44px;
    line-height: 56px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 50px;
}

.textstyle h2 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 25px;
}

.textstyle h3 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 25px;
}

.textstyle h4 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 25px;
}

.textstyle h5 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 25px;
}

.textstyle h6 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 25px;
}

ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 50px;
}

ul li {
    position: relative;
    padding-left: 28px;
}

ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    background: #210E2D;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

ul li:not(:last-child) {
    margin-bottom: 20px;
}

ol {
    list-style: none;
    counter-reset: counter;
    margin-bottom: 50px;
}

ol li {
    counter-increment: counter;
    position: relative;
    padding-left: 0;
}

ol li ol li {
    padding-left: 35px;
}

ol li ol {
    margin-top: 20px;
}

ol li:not(:last-child) {
    margin-bottom: 20px;
}

ol li::before {
    content: counters(counter, ".") ". ";
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
    min-width: 30px;
    margin-right: 5px;
}

ul ul,
ol ol {
    margin: 20px 0;
}

.textstyle table {
    width: 100%!important;
    margin-bottom: 50px;
}

.textstyle table td {
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid #D3D0D9;
}

.textstyle table ul li:before {
    top: 13px;
    width: 5px;
    height: 5px;
}

.textstyle table ul li {
    padding-left: 15px;
}

.textstyle table tr:first-child td b {
    padding: 10px 0;
}

.textstyle table td > *:not(:last-child) {
    margin-bottom: 20px;
}

.textstyle table td > *:last-child {
    margin-bottom: 0;
}

.textstyle table td ul,
.textstyle table td ol {
    margin-top: 0;
    padding-left: 0;
}

.textstyle table td li:not(:last-child) {
    margin-bottom: 10px;
}

.textstyle table td li p {
    margin: 0;
    display: inline;
}

.textstyle p img {
    height: auto!important;
}

.table-wrapper .ps__rail-x {
    background-color: #E4E3E5!important;
    opacity: 1!important;
    height: 10px!important;
}
.table-wrapper .ps__thumb-x {
    background-color: #CBCACC!important;
    border-radius: 0;
    height: 10px;
    bottom: 0;
    opacity: 1!important;
}

.table-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.table-wrapper.ps--active-x {
    padding-bottom: 40px;
}

.table-wrapper table {
    margin-bottom: 0;
}

.textpage__wrapper {
    width: 700px;
    margin: 0 auto;
}

.textpage__head {
    margin-bottom: 50px;
}

.textpage-date {
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #736E7A;
}

blockquote {
    padding: 50px 60px;
    font-family: Gilroy;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #210E2D;
    border: 2px solid #E69317;
    position: relative;
    display: block;
    margin-bottom: 50px;
    margin-top: 70px;
}

blockquote p {
    font-family: Gilroy;
    font-size: 24px!important;
    line-height: 36px!important;
    letter-spacing: 0.02em;
    color: #210E2D;
}

blockquote:before {
    background: #ffffff;
    width: 120px;
    height: 4px;
    position: absolute;
    top: -3px;
    left: 60px;
    z-index: 1;
    content: '';
}

blockquote:after {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 96px;
    z-index: 2;
    content: '';
    background: url(../img/quotes.svg) no-repeat center;
    background-size: 100%!important;
}

blockquote span,
.blockquote__author {
    display: block;
    font-family: Raleway;
    position: relative;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
    padding-left: 30px;
    margin-top: 30px;
}

blockquote p {
    margin: 0!important;
}

blockquote p:not(:last-child) {
    margin-bottom: 30px;
}

blockquote span:before,
.blockquote__author:before {
    position: absolute;
    background: #210E2D;
    content: '';
    left: 0;
    width: 15px;
    height: 1px;
    top: 14px;
}

.highlighting-text,
.content__text-note {
    background: #FAFAFA;
    padding: 50px 60px;
    font-family: Gilroy;
    font-weight: normal;
    font-size: 24px!important;
    line-height: 36px!important;
    margin-bottom: 50px;
}

.highlighting-text a,
.content__text-note a {
    color: inherit;
    line-height: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.highlighting-text a:hover,
.content__text-note a:hover {
    color: #736E7A;
    text-decoration: none;
}

.highlighting-text a:visited,
.content__text-note a:visited {
    text-decoration-line: underline;
    color: #5B5761;
}

.highlighting-text a:visited:hover,
.content__text-note a:visited:hover {
    color: #736E7A;
    text-decoration: none;
}

.content__text-note svg {
    display: none;
}

.highlighting-link,
.content__link {
    padding: 40px 60px;
    background: #FAFAFA;
    margin-bottom: 50px;
    font-weight: 400;
    color: #210E2D;
    font-size: 18px;
    line-height: 30px;
    cursor: pointer;
}

.content__link:before {
    content: '';
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xMC4zMTggMTYuODM0Nkw4LjA2MTA3IDE5LjA4NzVDNy4zNzQyOCAxOS43Njk3IDYuNDQ4MDkgMjAuMTUyMyA1LjQ4MzA3IDIwLjE1MjNDNC41MTgwNSAyMC4xNTIzIDMuNTkxODcgMTkuNzY5NyAyLjkwNTA4IDE5LjA4NzVDMi41NzAyNyAxOC43NTEzIDIuMzA0NjMgMTguMzUxOSAyLjEyMzM5IDE3LjkxMjJDMS45NDIxNSAxNy40NzI2IDEuODQ4ODUgMTcuMDAxMyAxLjg0ODg1IDE2LjUyNTNDMS44NDg4NSAxNi4wNDkzIDEuOTQyMTUgMTUuNTc3OSAyLjEyMzM5IDE1LjEzODNDMi4zMDQ2MyAxNC42OTg2IDIuNTcwMjcgMTQuMjk5MiAyLjkwNTA4IDEzLjk2M0w3LjIwNzg1IDkuNjY5NTlDNy44OTQ2NCA4Ljk4NzMxIDguODIwODIgOC42MDQ3NiA5Ljc4NTg0IDguNjA0NzZDMTAuNzUwOSA4LjYwNDc2IDExLjY3NyA4Ljk4NzMxIDEyLjM2MzggOS42Njk1OUMxMi44MDA5IDEwLjEwNjYgMTMuMTE3MSAxMC42NTA4IDEzLjI4MTMgMTEuMjQ4NUMxMy4zNzE2IDExLjE3MzUgMTMuNDU0NSAxMS4wOSAxMy41MjkgMTAuOTk5MkwxNC43MTI1IDkuODE3MzJDMTQuNDQ3NSA5LjI2MjIgMTQuMDkwNyA4Ljc1NjQyIDEzLjY1NzQgOC4zMjE1NEMxMi42MjY4IDcuMjk1MzMgMTEuMjM1NiA2LjcxOTczIDkuNzg1ODQgNi43MTk3M0M4LjMzNjA4IDYuNzE5NzMgNi45NDQ4NSA3LjI5NTMzIDUuOTE0MjcgOC4zMjE1NEwxLjYwMjMzIDEyLjY1MTlDMS4wOTQ0MyAxMy4xNTkyIDAuNjkxMzE5IDEzLjc2MjYgMC40MTYyMjkgMTQuNDI3M0MwLjE0MTEzOSAxNS4wOTIxIC0wLjAwMDQ4ODI4MSAxNS44MDUxIC0wLjAwMDQ4ODI4MSAxNi41MjUzQy0wLjAwMDQ4ODI4MSAxNy4yNDU0IDAuMTQxMTM5IDE3Ljk1ODQgMC40MTYyMjkgMTguNjIzMkMwLjY5MTMxOSAxOS4yODc5IDEuMDk0NDMgMTkuODkxMyAxLjYwMjMzIDIwLjM5ODZDMi42MzI5IDIxLjQyNDggNC4wMjQxNCAyMi4wMDA0IDUuNDczOSAyMi4wMDA0QzYuOTIzNjYgMjIuMDAwNCA4LjMxNDkgMjEuNDI0OCA5LjM0NTQ4IDIwLjM5ODZMMTIuNjk0MSAxNy4wNTYySDEyLjIzNTRDMTEuNTg5MyAxNy4wNjc2IDEwLjk0NDYgMTYuOTkzMSAxMC4zMTggMTYuODM0NloiIGZpbGw9IiMyMTBFMkQiLz4KPHBhdGggZD0iTTIwLjQxOTYgMS42MDA4NEMxOS4zODkgMC41NzQ2MjggMTcuOTk3OCAtMC4wMDA5NzY1NjMgMTYuNTQ4IC0wLjAwMDk3NjU2MkMxNS4wOTgzIC0wLjAwMDk3NjU2MyAxMy43MDcgMC41NzQ2MjggMTIuNjc2NSAxLjYwMDg0TDkuMzI3ODIgNC45NDMyNkg5Ljc3NzM3QzEwLjQyODEgNC45NDMxIDExLjA3NiA1LjAzMDA0IDExLjcwNCA1LjIwMTc5TDEzLjk2MDkgMi45NDg4OUMxNC42NDc3IDIuMjY2NjEgMTUuNTczOCAxLjg4NDA1IDE2LjUzODkgMS44ODQwNUMxNy41MDM5IDEuODg0MDUgMTguNDMwMSAyLjI2NjYxIDE5LjExNjkgMi45NDg4OUMxOS40NTE3IDMuMjg1MDkgMTkuNzE3MyAzLjY4NDQ1IDE5Ljg5ODUgNC4xMjQxMkMyMC4wNzk4IDQuNTYzNzggMjAuMTczMSA1LjAzNTEgMjAuMTczMSA1LjUxMTFDMjAuMTczMSA1Ljk4NzEgMjAuMDc5OCA2LjQ1ODQzIDE5Ljg5ODUgNi44OTgwOUMxOS43MTczIDcuMzM3NzUgMTkuNDUxNyA3LjczNzEyIDE5LjExNjkgOC4wNzMzMkwxNC44MTQxIDEyLjM2NjhDMTQuMTI3MyAxMy4wNDkgMTMuMjAxMSAxMy40MzE2IDEyLjIzNjEgMTMuNDMxNkMxMS4yNzExIDEzLjQzMTYgMTAuMzQ0OSAxMy4wNDkgOS42NTgxIDEyLjM2NjhDOS4yMjEwMiAxMS45Mjk4IDguOTA0OCAxMS4zODU1IDguNzQwNjcgMTAuNzg3OUM4LjY0ODgzIDEwLjg1MDcgOC41NjI4NSAxMC45MjE4IDguNDgzNzggMTEuMDAwMkw3LjMwMDI5IDEyLjE4MjFDNy41NjUyOSAxMi43MzcyIDcuOTIyMDQgMTMuMjQzIDguMzU1MzQgMTMuNjc3OUM5LjM4NTkyIDE0LjcwNDEgMTAuNzc3MiAxNS4yNzk3IDEyLjIyNjkgMTUuMjc5N0MxMy42NzY3IDE1LjI3OTcgMTUuMDY3OSAxNC43MDQxIDE2LjA5ODUgMTMuNjc3OUwyMC40MDEzIDkuMzg0NDRDMjAuOTA4MSA4Ljg3NjU2IDIxLjMxMDIgOC4yNzI5NiAyMS41ODQ2IDcuNjA4MjdDMjEuODU5IDYuOTQzNTcgMjIuMDAwMiA2LjIzMDg4IDIyLjAwMDIgNS41MTExQzIyLjAwMDIgNC43OTEzMyAyMS44NTkgNC4wNzg2NCAyMS41ODQ2IDMuNDEzOTRDMjEuMzEwMiAyLjc0OTI1IDIwLjkwODEgMi4xNDU2NCAyMC40MDEzIDEuNjM3NzdMMjAuNDE5NiAxLjYwMDg0WiIgZmlsbD0iIzIxMEUyRCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 18px;
}

.content__link a {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #210E2D;
}

.content__link:hover:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xMC4zMTggMTYuODM0Nkw4LjA2MTA3IDE5LjA4NzVDNy4zNzQyOCAxOS43Njk3IDYuNDQ4MDkgMjAuMTUyMyA1LjQ4MzA3IDIwLjE1MjNDNC41MTgwNSAyMC4xNTIzIDMuNTkxODcgMTkuNzY5NyAyLjkwNTA4IDE5LjA4NzVDMi41NzAyNyAxOC43NTEzIDIuMzA0NjMgMTguMzUxOSAyLjEyMzM5IDE3LjkxMjJDMS45NDIxNSAxNy40NzI2IDEuODQ4ODUgMTcuMDAxMyAxLjg0ODg1IDE2LjUyNTNDMS44NDg4NSAxNi4wNDkzIDEuOTQyMTUgMTUuNTc3OSAyLjEyMzM5IDE1LjEzODNDMi4zMDQ2MyAxNC42OTg2IDIuNTcwMjcgMTQuMjk5MiAyLjkwNTA4IDEzLjk2M0w3LjIwNzg1IDkuNjY5NTlDNy44OTQ2NCA4Ljk4NzMxIDguODIwODIgOC42MDQ3NiA5Ljc4NTg0IDguNjA0NzZDMTAuNzUwOSA4LjYwNDc2IDExLjY3NyA4Ljk4NzMxIDEyLjM2MzggOS42Njk1OUMxMi44MDA5IDEwLjEwNjYgMTMuMTE3MSAxMC42NTA4IDEzLjI4MTMgMTEuMjQ4NUMxMy4zNzE2IDExLjE3MzUgMTMuNDU0NSAxMS4wOSAxMy41MjkgMTAuOTk5MkwxNC43MTI1IDkuODE3MzJDMTQuNDQ3NSA5LjI2MjIgMTQuMDkwNyA4Ljc1NjQyIDEzLjY1NzQgOC4zMjE1NEMxMi42MjY4IDcuMjk1MzMgMTEuMjM1NiA2LjcxOTczIDkuNzg1ODQgNi43MTk3M0M4LjMzNjA4IDYuNzE5NzMgNi45NDQ4NSA3LjI5NTMzIDUuOTE0MjcgOC4zMjE1NEwxLjYwMjMzIDEyLjY1MTlDMS4wOTQ0MyAxMy4xNTkyIDAuNjkxMzE5IDEzLjc2MjYgMC40MTYyMjkgMTQuNDI3M0MwLjE0MTEzOSAxNS4wOTIxIC0wLjAwMDQ4ODI4MSAxNS44MDUxIC0wLjAwMDQ4ODI4MSAxNi41MjUzQy0wLjAwMDQ4ODI4MSAxNy4yNDU0IDAuMTQxMTM5IDE3Ljk1ODQgMC40MTYyMjkgMTguNjIzMkMwLjY5MTMxOSAxOS4yODc5IDEuMDk0NDMgMTkuODkxMyAxLjYwMjMzIDIwLjM5ODZDMi42MzI5IDIxLjQyNDggNC4wMjQxNCAyMi4wMDA0IDUuNDczOSAyMi4wMDA0QzYuOTIzNjYgMjIuMDAwNCA4LjMxNDkgMjEuNDI0OCA5LjM0NTQ4IDIwLjM5ODZMMTIuNjk0MSAxNy4wNTYySDEyLjIzNTRDMTEuNTg5MyAxNy4wNjc2IDEwLjk0NDYgMTYuOTkzMSAxMC4zMTggMTYuODM0NloiIGZpbGw9IiM3MzZFN0EiLz4KPHBhdGggZD0iTTIwLjQxOTYgMS42MDA4NEMxOS4zODkgMC41NzQ2MjggMTcuOTk3OCAtMC4wMDA5NzY1NjMgMTYuNTQ4IC0wLjAwMDk3NjU2MkMxNS4wOTgzIC0wLjAwMDk3NjU2MyAxMy43MDcgMC41NzQ2MjggMTIuNjc2NSAxLjYwMDg0TDkuMzI3ODIgNC45NDMyNkg5Ljc3NzM3QzEwLjQyODEgNC45NDMxIDExLjA3NiA1LjAzMDA0IDExLjcwNCA1LjIwMTc5TDEzLjk2MDkgMi45NDg4OUMxNC42NDc3IDIuMjY2NjEgMTUuNTczOCAxLjg4NDA1IDE2LjUzODkgMS44ODQwNUMxNy41MDM5IDEuODg0MDUgMTguNDMwMSAyLjI2NjYxIDE5LjExNjkgMi45NDg4OUMxOS40NTE3IDMuMjg1MDkgMTkuNzE3MyAzLjY4NDQ1IDE5Ljg5ODUgNC4xMjQxMkMyMC4wNzk4IDQuNTYzNzggMjAuMTczMSA1LjAzNTEgMjAuMTczMSA1LjUxMTFDMjAuMTczMSA1Ljk4NzEgMjAuMDc5OCA2LjQ1ODQzIDE5Ljg5ODUgNi44OTgwOUMxOS43MTczIDcuMzM3NzUgMTkuNDUxNyA3LjczNzEyIDE5LjExNjkgOC4wNzMzMkwxNC44MTQxIDEyLjM2NjhDMTQuMTI3MyAxMy4wNDkgMTMuMjAxMSAxMy40MzE2IDEyLjIzNjEgMTMuNDMxNkMxMS4yNzExIDEzLjQzMTYgMTAuMzQ0OSAxMy4wNDkgOS42NTgxIDEyLjM2NjhDOS4yMjEwMiAxMS45Mjk4IDguOTA0OCAxMS4zODU1IDguNzQwNjcgMTAuNzg3OUM4LjY0ODgzIDEwLjg1MDcgOC41NjI4NSAxMC45MjE4IDguNDgzNzggMTEuMDAwMkw3LjMwMDI5IDEyLjE4MjFDNy41NjUyOSAxMi43MzcyIDcuOTIyMDQgMTMuMjQzIDguMzU1MzQgMTMuNjc3OUM5LjM4NTkyIDE0LjcwNDEgMTAuNzc3MiAxNS4yNzk3IDEyLjIyNjkgMTUuMjc5N0MxMy42NzY3IDE1LjI3OTcgMTUuMDY3OSAxNC43MDQxIDE2LjA5ODUgMTMuNjc3OUwyMC40MDEzIDkuMzg0NDRDMjAuOTA4MSA4Ljg3NjU2IDIxLjMxMDIgOC4yNzI5NiAyMS41ODQ2IDcuNjA4MjdDMjEuODU5IDYuOTQzNTcgMjIuMDAwMiA2LjIzMDg4IDIyLjAwMDIgNS41MTExQzIyLjAwMDIgNC43OTEzMyAyMS44NTkgNC4wNzg2NCAyMS41ODQ2IDMuNDEzOTRDMjEuMzEwMiAyLjc0OTI1IDIwLjkwODEgMi4xNDU2NCAyMC40MDEzIDEuNjM3NzdMMjAuNDE5NiAxLjYwMDg0WiIgZmlsbD0iIzczNkU3QSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
}

.content__link:hover a {
    color: #736E7A;
    text-decoration: none;
}

.highlighting-link svg {
    margin-right: 18px;
}

.highlighting-link:hover,
.content__link:hover {
    color: #736E7A;
    text-decoration: none;
}

.highlighting-link:hover svg path {
    fill: #736E7A;
}

.textpage__body iframe {
    width: 100%;
    height: 420px;
}

@media only screen and (max-width: 1279px) {
    .textpage__head > img {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .textpage__wrapper {
        width: 668px;
    }
    .textstyle h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .textstyle h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .textstyle h4 {
        font-size: 26px;
        line-height: 36px;
    }
    .textstyle h5 {
        font-size: 22px;
        line-height: 32px;
    }
    .textstyle h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .textpage__body iframe {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .textpage__head h1 {
        font-size: 32px;
        line-height: 44px;
    }
    .textpage__wrapper {
        width: 420px;
    }
    .textpage__head > img {
        margin-bottom: 40px;
    }
    .textpage-date {
        margin-top: -30px;
    }
    blockquote {
        padding: 40px 30px;
        font-size: 22px;
        line-height: 34px;
    }
    blockquote p {
        font-size: 22px!important;
        line-height: 34px!important;
    }
    .highlighting-text,
    .content__text-note {
        padding: 40px 30px;
        font-size: 22px!important;
        line-height: 34px!important;
    }
    .highlighting-link {
        padding: 40px 30px;
        align-items: flex-start;
    }
    .textstyle h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .textstyle h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .textstyle h4 {
        font-size: 22px;
        line-height: 32px;
    }
    .textstyle h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .textstyle h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .textpage-connect {
        height: 50px;
        position: sticky;
        bottom: 10px;
        z-index: 10;
    }
    .textstyle .btn {
        max-width: 100%;
    }
    .textpage__body iframe {
        height: 227px;
    }
    .textstyle table td {
        padding: 20px 10px;
        word-break: break-word;
        hyphens: auto;
    }
    .textstyle table td:first-child {
        width: 150px;
    }
}

@media only screen and (max-width: 479px) {
    .textpage__head h1 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 40px;
    }
    .textpage__wrapper {
        width: calc(100% - 40px);
    }
    .textpage__head {
        margin-bottom: 40px;
    }
    .textpage__head > img {
        margin-bottom: 30px;
    }
    .textpage-date {
        margin-top: -20px;
    }
    blockquote {
        font-size: 20px;
        line-height: 32px;
        padding: 30px 20px;
        margin-top: 50px;
    }
    blockquote p {
        font-size: 20px!important;
        line-height: 32px!important;
    }
    blockquote:after {
        width: 30px;
        height: 30px;
        top: -14px;
        left: 86px;
    }
    blockquote:before {
        width: 80px;
        height: 4px;
    }
    blockquote span,
    .blockquote__author {
        margin-top: 20px;
    }
    .highlighting-text,
    .content__text-note {
        padding: 30px 20px;
        font-size: 20px!important;
        line-height: 32px!important;
        margin-bottom: 40px;
    }
    .highlighting-link {
        margin-bottom: 40px;
    }
    .highlighting-link {
        padding: 30px 20px;
    }
    .table-wrapper {
        margin-bottom: 40px;
    }
    .textstyle h2 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 25px;
    }
    .textstyle h3 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 25px;
    }
    .textstyle h4 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    .textstyle h5 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .textstyle h6 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 25px;
    }
    .textstyle .btn {
        margin-bottom: 40px;
    }
    .textstyle ul,
    .textstyle ol {
        margin-bottom: 40px;
    }
    .textstyle p {
        margin-bottom: 40px;
    }
    .textstyle img {
        margin-bottom: 40px;
    }
    .textpage__body iframe {
        height: 47.1875vw;
    }
    .textstyle table td:first-child {
        width: 110px;
    }
}

/*breadcrumbs*/

.breadcrumbs {
    padding: 40px 0 100px;
}

.textpage .breadcrumbs {
    padding: 40px 0 80px;
}

.breadcrumbs__container {
    display: inline;
}

.breadcrumbs__container br {
    display: none;
}

.breadcrumbs__container a {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #736E7A;
    transition: .3s color;
}

.breadcrumbs__container a:hover {
    color: #210E2D;
    text-decoration: underline;
}

.breadcrumbs__container *:not(:nth-last-child(2)):after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxMSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeT0iMTcuOTEwMiIgd2lkdGg9IjIwIiBoZWlnaHQ9IjEiIHRyYW5zZm9ybT0icm90YXRlKC02MCAwIDE3LjkxMDIpIiBmaWxsPSIjNzM2RTdBIi8+Cjwvc3ZnPgo=");
    width: 11px;
    height: 19px;
    background-repeat: no-repeat;
    position: relative;
    top: 4px;
    right: -3px;
    margin: 0 2px;
    cursor: default;
    pointer-events: none;
}

.breadcrumbs__container *:nth-last-child(2) {
    pointer-events: none;
    color: #545059;
    font-weight: bold;
}

@media only screen and (max-width: 1919px) {
    .breadcrumbs {
        padding: 40px 0 60px;
    }
}

@media only screen and (max-width: 1023px) {
    .breadcrumbs__container a {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumbs {
        padding: 30px 0 40px;
    }
    .breadcrumbs__container a {
        font-size: 13px;
    }
    .textpage .breadcrumbs {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 479px) {
    .breadcrumbs {
        padding: 20px 0;
    }
    .textpage .breadcrumbs {
        padding: 20px 0;
    }
}

/*first screen child page*/

.fs-childpage {
    margin-bottom: 130px;
}

.fs-childpage__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 85px;
    line-height: 105px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 55px;
}

.fs-childpage__text {
    font-size: 25px;
    line-height: 35px;
    max-width: 840px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 80px;
}

.materialspage .fs-childpage__title {
    margin-bottom: 80px;
}

@media only screen and (min-width: 2560px) {
    .fs-childpage__title {
        font-size: 95px;
        line-height: 115px;
        margin-bottom: 65px;
    }
}

@media only screen and (max-width: 1919px) {
    .fs-childpage__title {
        font-size: 65px;
        line-height: 80px;
        margin-bottom: 45px;
    }
    .fs-childpage__text {
        max-width: 100%;
        margin-bottom: 60px;
    }
    .materialspage .fs-childpage__title {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .fs-childpage {
        margin-bottom: 100px;
    }
    .fs-childpage__text {
        margin-bottom: 80px;
    }
    .authorpage .fs-childpage__text {
        margin-bottom: 60px;
    }
    .materialspage .fs-childpage__title {
        margin-bottom: 60px;
    }
    .materialspage .fs-childpage__title {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1023px) {
    .fs-childpage__title {
        font-size: 55px;
        line-height: 67px;
    }
    .fs-childpage__text {
        margin-bottom: 60px;
    }
    .materialspage .fs-childpage__title {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .fs-childpage {
        margin-bottom: 80px;
    }
    .fs-childpage__title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 479px) {
    .fs-childpage__title {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 30px;
    }
    .fs-childpage__text {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 50px;
    }
    .authorpage .fs-childpage__text {
        margin-bottom: 50px;
    }
    .authorpage .about__text {
        margin-bottom: 80px;
    }
    .materialspage .fs-childpage__title {
        margin-bottom: 50px;
    }
}

/*pluses block*/

.pluses {
    margin-bottom: 130px;
}

.pluses__wrapper {
    background: #FAFAFA;
    padding: 130px 0;
}

.pluses__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.pluses__item {
    flex-shrink: 0;
    width: 260px;
}

.pluses__item svg {
    margin-bottom: 25px;
}

.pluses__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 20px;
}

.pluses__text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

@media only screen and (max-width: 1919px) {
    .pluses__wrapper {
        padding: 130px 75px;
    }
    .pluses__wrapper .container-small {
        width: 100%;
    }
    .pluses__item {
        width: 222px;
    }
}

@media only screen and (max-width: 1279px) {
    .pluses {
        margin-bottom: 100px;
    }
    .pluses__wrapper {
        padding: 100px 50px;
    }
    .pluses__content {
        margin-bottom: 20px;
    }
    .pluses__item {
        width: 397px;
        margin-bottom: 60px;
    }
    .pluses__title br {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .pluses__content {
        margin-bottom: 0;
    }
    .pluses__item {
        width: 269px;
    }
}

@media only screen and (max-width: 767px) {
    .pluses {
        margin-bottom: 0;
    }
    .pluses .container {
        width: 100%;
    }
    .pluses__wrapper {
        padding: 80px 30px;
    }
    .pluses__content {
        margin-bottom: 10px;
        padding: 0 20px;
    }
    .pluses__item {
        width: 380px;
        margin-bottom: 50px;
    }
    .pluses__wrapper .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .pluses__wrapper {
        padding: 80px 20px;
    }
    .pluses__content {
        margin-bottom: 0;
        padding: 0;
    }
    .pluses__item {
        width: 100%;
    }
    .pluses__wrapper .container-small {
        width: 100%;
    }
}

/*portfolio block*/

.portfolio {
    margin-bottom: 130px;
}

.portfolio .title {
    max-width: 100%;
}

.portfolio__wrapper {
    margin-bottom: 80px;
}

.portfolio__slider {
    margin-bottom: 50px;
    width: 100%;
}

.portfolio__item {
    width: 202px;
    margin-right: 30px;
}

.portfolio__img-wrap {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
}

.portfolio__img-wrap img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.portfolio__img-wrap:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: rgba(33, 14, 45, 0.6) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjQuNSIgc3Ryb2tlPSJ3aGl0ZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI5LjQ3NjEgMjAuMjA5OEMyOS41NDI3IDIwLjE0MzMgMjkuNjIxNyAyMC4wOTA1IDI5LjcwODggMjAuMDU0NUMyOS43OTU4IDIwLjAxODUgMjkuODg5MSAyMCAyOS45ODM0IDIwQzMwLjA3NzYgMjAgMzAuMTcwOSAyMC4wMTg1IDMwLjI1OCAyMC4wNTQ1QzMwLjM0NSAyMC4wOTA1IDMwLjQyNDEgMjAuMTQzMyAzMC40OTA2IDIwLjIwOThMMzQuNzg5NSAyNC40OTQ2QzM0Ljg1NjIgMjQuNTYwOSAzNC45MDkxIDI0LjYzOTcgMzQuOTQ1MyAyNC43MjY1QzM0Ljk4MTQgMjQuODEzMiAzNSAyNC45MDYzIDM1IDI1LjAwMDJDMzUgMjUuMDk0MSAzNC45ODE0IDI1LjE4NzEgMzQuOTQ1MyAyNS4yNzM5QzM0LjkwOTEgMjUuMzYwNiAzNC44NTYyIDI1LjQzOTUgMzQuNzg5NSAyNS41MDU4TDMwLjQ5MDYgMjkuNzkwNkMzMC4zNTYxIDI5LjkyNDcgMzAuMTczNiAzMCAyOS45ODM0IDMwQzI5Ljc5MzEgMzAgMjkuNjEwNiAyOS45MjQ3IDI5LjQ3NjEgMjkuNzkwNkMyOS4zNDE2IDI5LjY1NjUgMjkuMjY2IDI5LjQ3NDYgMjkuMjY2IDI5LjI4NUMyOS4yNjYgMjkuMDk1MyAyOS4zNDE2IDI4LjkxMzUgMjkuNDc2MSAyOC43Nzk0TDMzLjI2OTEgMjUuMDAwMkwyOS40NzYxIDIxLjIyMUMyOS40MDk0IDIxLjE1NDcgMjkuMzU2NSAyMS4wNzU5IDI5LjMyMDMgMjAuOTg5MUMyOS4yODQyIDIwLjkwMjMgMjkuMjY1NiAyMC44MDkzIDI5LjI2NTYgMjAuNzE1NEMyOS4yNjU2IDIwLjYyMTUgMjkuMjg0MiAyMC41Mjg1IDI5LjMyMDMgMjAuNDQxN0MyOS4zNTY1IDIwLjM1NDkgMjkuNDA5NCAyMC4yNzYxIDI5LjQ3NjEgMjAuMjA5OFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUgMjUuMDAwM0MxNSAyNC44MTA5IDE1LjA3NzQgMjQuNjI5MiAxNS4yMTUxIDI0LjQ5NTNDMTUuMzUyOSAyNC4zNjE0IDE1LjUzOTcgMjQuMjg2MSAxNS43MzQ2IDI0LjI4NjFIMzQuMDE3NUMzNC4yMTIzIDI0LjI4NjEgMzQuMzk5MiAyNC4zNjE0IDM0LjUzNjkgMjQuNDk1M0MzNC42NzQ3IDI0LjYyOTIgMzQuNzUyMSAyNC44MTA5IDM0Ljc1MjEgMjUuMDAwM0MzNC43NTIxIDI1LjE4OTcgMzQuNjc0NyAyNS4zNzEzIDM0LjUzNjkgMjUuNTA1MkMzNC4zOTkyIDI1LjYzOTIgMzQuMjEyMyAyNS43MTQ0IDM0LjAxNzUgMjUuNzE0NEgxNS43MzQ2QzE1LjUzOTcgMjUuNzE0NCAxNS4zNTI5IDI1LjYzOTIgMTUuMjE1MSAyNS41MDUyQzE1LjA3NzQgMjUuMzcxMyAxNSAyNS4xODk3IDE1IDI1LjAwMDNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") no-repeat center center;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: .3s opacity;
    opacity: 0;
}

.portfolio__img-wrap:hover:after {
    opacity: 1;
}

@media only screen and (max-width: 1279px) {
    .portfolio {
        margin-bottom: 100px;
    }
    .portfolio__wrapper {
        margin-bottom: 60px;
    }
    .portfolio__slider {
        margin-bottom: 30px;
    }
    .portfolio__item {
        margin-right: 38px;
    }
}

@media only screen and (max-width: 1023px) {
    .portfolio__item {
        margin-right: 31px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio {
        margin-bottom: 80px;
    }
    .portfolio__item {
        margin-right: 30px;
        width: 195px;
    }
}

@media only screen and (max-width: 479px) {
    .portfolio__wrapper {
        margin-bottom: 50px;
    }
    .portfolio__item {
        margin-right: 20px;
        width: calc((100vw - 60px) / 2);
    }
    .portfolio__img-wrap {
        margin-bottom: 20px;
    }
}

/*first screen textpage*/

.fs-textpage {
    height: calc(100vh - 91px);
    background: #210E2D;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fs-textpage__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 75px;
    line-height: 92px;
    letter-spacing: 0.03em;
    color: #F0F0F2;
    margin-bottom: 80px;
}

.without-btns .fs-textpage__title {
    margin-bottom: 0;
}

@media only screen and (min-width: 2560px) {
    .fs-textpage__title {
        font-size: 100px;
        line-height: 115px;
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1919px) {
    .fs-textpage {
        height: calc(100vh - 161px);
    }
    .fs-textpage__title {
        font-size: 65px;
        line-height: 75px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .fs-textpage__title {
        font-size: 50px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 1023px) {
    .fs-textpage {
        height: auto;
        padding: 100px 0;
    }
}

@media only screen and (max-width: 767px) {
    .fs-textpage {
        padding: 80px 0;
    }
    .fs-textpage__title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 479px) {
    .fs-textpage__title {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 50px;
        word-wrap: break-word;
    }
}

/*author block*/

.authorblock {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    margin-bottom: 50px;
    border-top: 1px solid #D3D0D9;
    border-bottom: 1px solid #D3D0D9;
}

.authorblock__info {
    display: flex;
    align-items: center;
    padding-right: 15px;
}

.authorblock__img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 30px;
    flex-shrink: 0;
}

.authorblock__img:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(33, 14, 45, 0.4);
    opacity: 0;
    transition: .3s opacity;
}

.authorblock__img:hover:after {
    opacity: 1;
}

.authorblock__title {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 5px;
}

.authorblock__name {
    display: inline-block;
    transition: .3s;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 5px;
}

.authorblock__name:hover {
    text-decoration-line: underline;
    color: #736E7A;
}

.authorblock__spec {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.authorblock__soc {
    display: flex;
    column-gap: 20px;
}

.authorblock__soc a {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #736E7A;
}

.authorblock__soc a:hover {
    border-color: #210E2D;
}

.authorblock__soc a:hover svg path {
    fill: #210E2D;
}

@media only screen and (max-width: 1023px) {
    .authorblock__soc a,
    .authorblock__img {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .authorblock {
        padding: 40px 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .authorblock__info {
        display: flex;
        align-items: center;
        padding-right: 0;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }
    .authorblock__img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .authorblock__title,
    .authorblock__name,
    .authorblock__spec {
        text-align: center;
    }
    .authorblock__soc {
        column-gap: 25px;
    }
    .authorblock__soc a {
        width: 50px;
        height: 50px;
    }
    .authorblock__soc a svg {
        width: 22px;
        height: 22px;
    }
    .authorblock__text {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .authorblock {
        padding: 40px 0;
        margin-bottom: 40px;
    }
}

/*share on social block*/

.sharesoc {
    margin-bottom: 130px;
}

.sharesoc__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 40px;
}

.sharesoc__wrapper {
    display: flex;
    align-items: center;
    column-gap: 11px;
}

.sharesoc__item {
    flex-shrink: 0;
    border: 1px solid #736E7A;
    border-radius: 3px;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.sharesoc__item:hover {
    border-color: #210E2D;
}

.sharesoc__item:hover svg path {
    fill: #210E2D;
}

@media only screen and (max-width: 1279px) {
    .sharesoc {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .sharesoc__wrapper {
        column-gap: 16px;
    }
    .sharesoc__item {
        cursor: default;
    }
    .sharesoc__item:nth-child(9) {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .sharesoc {
        margin-bottom: 80px;
    }
    .sharesoc__title {
        margin-bottom: 50px;
    }
    .sharesoc__wrapper {
        column-gap: 12px;
    }
    .sharesoc__item:nth-last-child(-n+5):not(:last-child) {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .sharesoc__title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 40px;
    }
    .sharesoc__item {
        width: 50px;
        height: 50px;
    }
    .sharesoc__wrapper {
        column-gap: 8px;
    }
    .sharesoc__item:nth-last-child(-n+6):not(:last-child) {
        display: none;
    }
}

/*textpage contacts block*/

.textcontacts {
    margin-bottom: 130px;
}

.seo .textcontacts {
    margin-bottom: 50px;
}

.textcontacts__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 80px;
}

.seo .textcontacts__title {
    margin-bottom: 50px;
}

.textcontacts__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
}

.textcontacts__item {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.textcontacts__item--adress {
    cursor: default;
    pointer-events: none;
}

.textcontacts__item:not(:last-child) {
    margin-bottom: 60px;
}

.textcontacts__head {
    display: flex;
    align-items: center;
    transition: .3s;
    margin-bottom: 20px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-underline-offset: 9px;
    text-decoration-thickness: 2px;
    color: #210E2D;
}

.textcontacts__item:hover .textcontacts__head {
    color: #736E7A;
    text-decoration: none;
}

.textcontacts__head svg {
    margin-right: 20px;
}

.textcontacts__item:hover .textcontacts__head svg path {
    fill: #736E7A;
}

.textcontacts__text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.textcontacts__item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.textcontacts__item .tooltip {
    top: 70px;
}

.seo .textcontacts__item .tooltip {
    left: 0;
    transform: none;
}

.textcontacts__adress {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 30px;
    text-decoration: none;
}

@media only screen and (max-width: 1279px) {
    .textcontacts {
        margin-bottom: 100px;
    }
    .textcontacts__adress {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 1023px) {
    .textcontacts__item {
        cursor: default;
    }
    .textcontacts__adress {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .seo .textcontacts__head {
        font-size: 23px;
        line-height: 35px;
        letter-spacing: 0.69px;
        text-underline-offset: 6px;
    }
    .seo .textcontacts__head svg {
        margin-right: 15px;
        width: 24px;
        height: 24px;
    }
    .seo .textcontacts__text {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.32px;
    }
    .seo .textcontacts__item:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .textcontacts {
        margin-bottom: 80px;
    }
    .textcontacts__title {
        margin-bottom: 50px;
    }
    .textcontacts__item:not(:last-child) {
        margin-bottom: 50px;
    }
    .textcontacts__head {
        font-size: 23px;
        line-height: 35px;
        text-underline-offset: 6px;
    }
    .textcontacts__head svg {
        width: 24px;
        height: 24px;
        margin-right: 15px;
    }
    .textcontacts__text {
        font-size: 16px;
        line-height: 24px;
    }
    .textcontacts__item .tooltip {
        top: 55px;
        left: 0;
        transform: translateX(0);
    }
    .textcontacts__item .tooltip {
        left: -10px;
    }
    .textcontacts__adress {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .seo .textcontacts {
        margin-bottom: 40px;
    }
    .textcontacts__title {
        margin-bottom: 40px;
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.66px;
    }
    .seo .textcontacts__title {
        margin-bottom: 40px;
    }
    .seo .textcontacts__item:not(:last-child),
    .textcontacts__item:not(:last-child) {
        margin-bottom: 40px;
    }
    .textcontacts__head,
    .seo .textcontacts__head {
        margin-bottom: 15px;
        font-size: 17px;
        line-height: 35px;
        letter-spacing: 0.51px;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
    }
    .textcontacts__head svg,
    .seo .textcontacts__head svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    .textcontacts__text,
    .seo .textcontacts__text {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.3px;
    }
    .textcontacts__item .tooltip:after {
        left: 40px;
        transform: translateX(0) rotate(45deg);
    }
    .textcontacts__adress {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .seo .textcontacts__item .tooltip {
        padding: 30px 20px;
        width: 260px;
    }
}

/*other providers block*/

.otherprov {
    margin-bottom: 130px;
}

.otherprov__wrapper {
    padding: 130px 0;
    background: #FAFAFA;
}

.otherprov__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 80px;
}

.otherprov__slider-wrapper {

}

.otherprov__slider {
    margin-bottom: 80px;
}

.otherprov__item {
    margin-right: 30px;
    flex-shrink: 0;
    background: #FFFFFF;
    border-radius: 3px;
    transition: .3s;
    border: 1px solid #ffffff;
    display: flex!important;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 161px!important;
}

.otherprov__item:hover {
    border-color: #353342;
    box-shadow: 0 6px 18px rgba(53, 51, 66, 0.1);
}

.otherprov__item img {
    width: 145px;
    height: 65px;
    transition: .3s;
    filter: grayscale(100%);
}

.otherprov__item:hover img {
    filter: grayscale(0);
}

@media only screen and (max-width: 1919px) {
    .otherprov__wrapper .container-small {
        width: 100%;
    }
    .otherprov__wrapper {
        padding: 130px 50px;
    }
    .otherprov__item {
        width: 235px;
    }
}

@media only screen and (max-width: 1279px) {
    .otherprov {
        margin-bottom: 100px;
    }
    .otherprov .container {
        width: 100%;
    }
    .otherprov__wrapper {
        padding: 100px 50px;
    }
    .otherprov__title {
        margin-bottom: 60px;
    }
    .otherprov__item {
        width: 211px;
        height: 141px!important;
        margin-right: 26px;
    }
    .otherprov__wrapper .container-small {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .otherprov__title {
        font-size: 40px;
        line-height: 52px;
    }
    .otherprov__slider {
        margin-bottom: 60px;
    }
    .otherprov__item {
        width: 205px;
    }
    .otherprov__wrapper .container-small {
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .otherprov {
        margin-top: -80px;
        margin-bottom: 0;
    }
    .otherprov__wrapper {
        padding: 80px 30px;
    }
    .otherprov__title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 50px;
    }
    .otherprov__item {
        width: 195px;
        height: 125px!important;
        margin-right: 30px;
    }
    .otherprov__item img {
        filter: grayscale(0);
    }
    .otherprov__wrapper .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .otherprov__wrapper {
        padding: 80px 20px;
    }
    .otherprov__title {
        font-size: 28px;
        line-height: 40px;
    }
    .otherprov__slider {
        margin-bottom: 50px;
    }
    .otherprov__item {
        width: 280px;
        margin-right: 0;
    }
    .otherprov__wrapper .container-small {
        width: 280px;
    }
}

/*textpage content btn*/

.content-nav-btn {
    display: inline-flex;
    transition: .3s;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(28, 18, 46, 0.12);
    border-radius: 500px;
    align-items: center;
    cursor: pointer;
    padding: 0 20px;
    height: 58px;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #736E7A;
    position: fixed;
    top: 186px;
    transform: rotate(-90deg);
    left: calc(50% + 461px);
}

.content-nav-btn.active {
    opacity: 1!important;
    z-index: 10!important;
    visibility: visible!important;
}

.content-nav-btn svg {
    width: 20px;
    height: 10px;
    margin-left: 5px;
}

.content-nav-btn svg path {
    fill: #736E7A;
}

.content-nav-btn:hover svg path {
    fill: #ffffff;
}

.content-nav-btn:hover {
    color: #ffffff;
    box-shadow: none;
    background: #3B2F4F;
}

.articlestextpage .content-nav-btn {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .content-nav-btn {
        top: 217px;
        left: calc(50% + 456px);
    }
}

@media only screen and (max-width: 1279px) {
    .content-nav-btn {
        left: calc(50% + 350px);
    }
}

@media only screen and (max-width: 1023px) {
    .content-nav-btn {
        height: 50px;
        left: auto;
        right: -51px;
        top: 191px;
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .content-nav-btn {
        display: none;
    }
}

/*pagination*/

.pagination {
    display: flex;
    align-items: center;
}

.pagination__item {
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #736E7A;
    border-radius: 3px;
    transition: .3s;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #736E7A;
    width: 55px;
    height: 55px;
    user-select: none;
}

.pagination__item:not(:last-child) {
    margin-right: 10px;
}

.pagination__item.active {
    border-color: #210E2D;
    background: #210E2D;
    color: #FFFFFF;
    pointer-events: none;
}

.pagination__item.active svg path {
    fill: #FFFFFF;
}

.pagination__item--more {
    border: none;
    width: auto!important;
    pointer-events: none;
}

.pagination__item:hover {
    border-color: #210E2D;
    color: #210E2D;
}

.pagination__item:hover svg path {
    fill: #210E2D;
}

.pagination_more {
    width: auto!important;
    border: none;
}

@media only screen and (max-width: 1023px) {
    .pagination__item {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .pagination__item {
        width: 46px;
        height: 46px;
    }
    .pagination__item:not(:last-child) {
        margin-right: 4px;
    }
}

@media only screen and (max-width: 479px) {
    .pagination__item {
        width: 36px;
        height: 36px;
    }
    /*.pagination__item:nth-child(4),*/
    .pagination__item:nth-child(5),
    .pagination__item:nth-child(6) {
        display: none;
    }
}

/*textpage source block*/

.source {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.source span {
    display: inline-block;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-right: 10px;
}

.source a {
    display: inline-block;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #210E2D;
    transition: .2s color;
}

.source a:hover {
    text-decoration: none;
    color: #736E7A;
}

@media only screen and (max-width: 479px) {
    .source {
        margin-bottom: 40px;
    }
}

/*articles navigation block*/

.articles-nav {
    margin-top: -70px;
    border-top: 1px solid #D3D0D9;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 130px;
}

.articles-nav:after {
    content: '';
    position: absolute;
    display: inline-block;
    left: 50%;
    height: calc(100% - 50px);
    width: 0;
    bottom: 0;
    border: 1px dashed #D3D0D9;
}

.articles-nav__item {
    width: 320px;
    flex-shrink: 0;
}

.articles-nav__head {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: .3s;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #666666;
    margin-bottom: 20px;
}

.articles-nav__head svg {
    flex-shrink: 0;
    margin-right: 5px;
}

.articles-nav__item:hover .articles-nav__head {
    color: #736E7A;
}

.articles-nav__item:hover .articles-nav__head svg path {
    fill: #736E7A;
}

.articles-nav__item:last-child .articles-nav__head {
    justify-content: flex-end;
}

.articles-nav__item:last-child .articles-nav__head svg {
    margin-right: 0;
    margin-left: 5px;
}

.articles-nav__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #210E2D;
    transition: .3s;
}

.articles-nav__item:hover .articles-nav__text {
    color: #736E7A;
    text-decoration: none;
}

.articles-nav__item:last-child .articles-nav__text {
    text-align: right;
}

@media only screen and (max-width: 1279px) {
    .articles-nav {
        margin-top: -40px;
    }
}

@media only screen and (max-width: 1023px) {
    .articles-nav {
        margin-bottom: 100px;
    }
    .articles-nav__item {
        width: 310px;
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .articles-nav {
        margin-bottom: 80px;
        margin-top: -30px;
    }
    .articles-nav__item {
        width: 185px;
    }
    .articles-nav__text {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .articles-nav {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: -40px;
        margin-bottom: 85px;
    }
    .articles-nav__item {
        width: 100%;
        position: relative;
    }
    .articles-nav__item:not(:last-child) {
        margin-bottom: 60px;
    }
    .articles-nav__item:first-child:after {
        content: '';
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 0;
        bottom: -30px;
        border: 1px dashed #D3D0D9;
    }
    .articles-nav:after {
        display: none;
    }
}

/*category block*/

.category {
    display: flex;
    padding: 35px 0;
    border-top: 1px solid #D3D0D9;
    border-bottom: 1px solid #D3D0D9;
    margin-bottom: 130px;
    justify-content: flex-start;
    align-items: flex-start;
}

.category__title {
    display: none;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #210E2D;
    flex-shrink: 0;
    align-items: center;
}

.category__title svg {
    display: none;
    flex-shrink: 0;
}

.category__checked-mobile {
    display: none;
}

.category__wrapper {
    display: block;
    margin: 0 -15px -15px;
}

.category__wrapper:after {
    display: block;
    width: 100%;
    content: '';
    clear: both;
}

.category__item {
    position: relative;
    transition: .3s;
    cursor: pointer;
    margin: 0 15px 15px 15px;
    width: 260px;
    float: left;
    font-family: Gilroy;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #736E7A;
    padding-left: 16px;
}

.category__item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -4px;
    border: 1px solid #736E7A;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: .3s;
}

.category__item:hover {
    color: #210E2D;
    text-decoration: underline;
}

.category__item.active {
    color: #210E2D;
    pointer-events: none;
}

.category__item:hover:before {
    border-color: #210E2D;

}

.category__item.active:before {
    border-color: #210E2D;
    background: #210E2D;
    pointer-events: none;
}

@media only screen and (max-width: 1279px) {
    .category {
        margin-bottom: 100px;
    }
    .category__item {
        width: 208px;
    }
}

@media only screen and (max-width: 1023px) {
    .category__item {
        width: 202px;
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .category {
        position: relative;
        padding: 20px 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 80px;
        transition: .3s;
    }
    .category__checked-mobile {
        display: block;
        font-family: Gilroy;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.02em;
        color: #210E2D;
    }
    .category__title {
        padding-right: 0;
        width: 100%;
        display: flex;
        color: #736E7A;
        transition: .3s;
        margin-bottom: 10px;
    }
    .category__title:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .category__title svg {
        display: block;
        margin-left: 15px;
    }
    .category__title svg rect {
        transition: .3s;
        fill: #736E7A;
    }
    .category.active {
        box-shadow: 0px 4px 10px rgba(28, 18, 46, 0.12);
    }
    .category.active .category__title {
        color: #210E2D;
    }
    .category.active .category__title svg rect:first-child {
        opacity: 0;
    }
    .category.active .category__title svg rect {
        fill: #210E2D;
    }
    .category__item {
        margin: 0;
        width: 100%;
        padding: 7px 30px 7px 46px;
    }
    .category__wrapper {
        display: none;
        margin: 0;
        padding: 13px 0;
        position: absolute;
        left: 0;
        background: #FFFFFF;
        z-index: 1;
        top: calc(100% + 1px);
        box-shadow: 0 4px 10px rgba(28, 18, 46, 0.12);
    }
    .category__item:not(:last-child) {
        margin-bottom: 0;
    }
    .category__item:before {
        left: 30px;
    }
    .category__item:hover {
        background: #F3F2F5;
        color: #210E2D;
        text-decoration: none;
    }
}

@media only screen and (max-width: 479px) {
    .category {
        margin-bottom: 50px;
        margin-top: -30px;
    }
}

/*tags block*/

.tags {
    display: flex;
    padding-top: 30px;
    margin-top: -10px;
    margin-bottom: 40px;
    align-items: center;
    border-top: 1px solid #D7D6D9;
}

.tags__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-right: 19px;
}

.tags__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: -15px;
    flex-wrap: wrap;
}

.tags__item {
    font-family: Gilroy;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #736E7A;
    margin-bottom: 15px;
    transition: .3s;
}

.tags__item:hover {
    color: #210E2D;
    text-decoration: none;
}

.tags__item:not(:last-child) {
    margin-right: 15px;
}

@media only screen and (max-width: 479px) {
    .tags {
        margin-top: -20px;
        padding-top: 20px;
        align-items: flex-start;
    }
}

/*attention block*/

.attention {
    margin-bottom: 130px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #FFF7F9;
    border: 2px solid #E51748;
    padding: 50px 40px;
}

.attention svg {
    margin-bottom: 30px;
}

.attention__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 20px;
}

.attention p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #1C122E;
}

.attention p span {
    font-weight: 700;
}

.attention p:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1279px) {
    .attention {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .attention {
        margin-bottom: 80px;
        padding: 50px 20px;
    }
    .attention svg {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    .attention__title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .attention {
        padding: 40px 20px;
    }
    .attention svg {
        margin-bottom: 15px;
    }
    .attention__title {
        font-size: 26px;
        line-height: 36px;
    }
}

/*about us*/

.about__text {
    width: 700px;
    margin: 0 auto 130px;
}

.authorpage .about__text {
    display: flex;
    justify-content: space-between;
    width: 1130px;
}

.about__text-box {
    width: 700px;
    flex-shrink: 0;
}

.about__text > *:last-child {
    margin-bottom: 0;
}

.about__text p {
    margin-bottom: 30px;
}

.about__text .btn {
    margin-top: 50px;
}

.about__text table tr td:first-child{
    width: 298px;
}

.about__text table tr:first-child td {
    padding-top: 30px;
}

.about__text table tr:last-child td {
    padding-bottom: 30px;
}

.about__text table {
    margin-top: 20px;
}

.about__text blockquote p {
    font-size: 24px;
    line-height: 36px;
}

.about__options {
    padding-top: 20px;
}

.about__options-item svg {
    margin-bottom: 25px;
}

.about__options-item:not(:last-child) {
    margin-bottom: 50px;
}

.about__options-title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 20px;
}

.about__options-text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.about__contacts {
    width: 700px;
    margin: 0 auto;
}

@media only screen and (max-width: 1279px) {
    .about__text {
        margin: 0 auto 100px;
    }
    .authorpage .about__text {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .about__text {
        width: 668px;
    }
    .about__text table tr td:first-child{
        width: 287px;
    }
    .about__contacts {
        width: 668px;
    }
    .authorpage .about__text {
        flex-direction: column;
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .about__text {
        width: 420px;
        margin: 0 auto 80px;
    }
    .about__text table tr td:first-child{
        width: 170px;
    }
    .about__text table {
        width: 100%!important;
    }
    .about__contacts {
        width: 420px;
    }
    .about__text blockquote p {
        font-size: 22px;
        line-height: 34px;
    }
    .authorpage .about__text {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .about__text {
        width: calc(100% - 40px);
        margin: 0 auto 80px;
    }
    .mainimg + .about__text {
        margin-bottom: 160px;
    }
    .about__text .btn {
        margin-top: 40px;
    }
    .about__text table {
        width: 100% !important;
    }
    .about__text table tr td:first-child {
        width: 45%;
    }
    .about__options-item:not(:last-child) {
        margin-bottom: 40px;
    }
    .about__contacts {
        width: calc(100% - 40px);
    }
    .about__text blockquote p {
        font-size: 20px;
        line-height: 32px;
    }
    .about__text table {
        margin-top: 10px;
    }
    .about__options {
        padding-top: 10px;
    }
    .authorpage .about__text {
        width: calc(100% - 40px);
    }
}

/*games library block*/

.gamespage .title {
    max-width: 100%;
}

.gameslibrary {
    margin-bottom: 130px;
}

.gameslibrary__wrapper {
    margin-bottom: 80px;
}

.gameslibrary__item {
    display: flex;
    justify-content: center;
}

.gameslibrary__item--top {
    background: #FAFAFA;
    flex-shrink: 0;
    margin-bottom: 50px;
}

.gameslibrary__content {
    width: 1130px;
    border-bottom: 1px solid #D3D0D9;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    align-items: flex-start;
}

.gameslibrary__item--top .gameslibrary__content {
    padding: 80px 0;
    border-bottom: none;
}

.gameslibrary__name {
    display: inline-flex;
    align-items: center;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0.03em;
    color: #210E2D;
    padding-top: 67px;
    padding-right: 15px;
}

.gameslibrary__name:hover {
    text-decoration: underline;
}

.gameslibrary__item--top .gameslibrary__name {
    padding-top: 54px;
}

.gameslibrary__name svg {
    margin-right: 20px;
}

.gameslibrary__slider-wrap {
    flex-shrink: 0;
    width: 666px;
}

.gameslibrary__slider {
    width: 100%;
    margin-bottom: 50px;
}

.gameslibrary__slider-item {
    position: relative;
    height: auto;
    margin-right: 30px;
    width: 202px;
    display: inline-block;
}

.gameslibrary__slider-item img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.gameslibrary__slider-item:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: rgba(33, 14, 45, 0.6) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjQuNSIgc3Ryb2tlPSJ3aGl0ZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI5LjQ3NjEgMjAuMjA5OEMyOS41NDI3IDIwLjE0MzMgMjkuNjIxNyAyMC4wOTA1IDI5LjcwODggMjAuMDU0NUMyOS43OTU4IDIwLjAxODUgMjkuODg5MSAyMCAyOS45ODM0IDIwQzMwLjA3NzYgMjAgMzAuMTcwOSAyMC4wMTg1IDMwLjI1OCAyMC4wNTQ1QzMwLjM0NSAyMC4wOTA1IDMwLjQyNDEgMjAuMTQzMyAzMC40OTA2IDIwLjIwOThMMzQuNzg5NSAyNC40OTQ2QzM0Ljg1NjIgMjQuNTYwOSAzNC45MDkxIDI0LjYzOTcgMzQuOTQ1MyAyNC43MjY1QzM0Ljk4MTQgMjQuODEzMiAzNSAyNC45MDYzIDM1IDI1LjAwMDJDMzUgMjUuMDk0MSAzNC45ODE0IDI1LjE4NzEgMzQuOTQ1MyAyNS4yNzM5QzM0LjkwOTEgMjUuMzYwNiAzNC44NTYyIDI1LjQzOTUgMzQuNzg5NSAyNS41MDU4TDMwLjQ5MDYgMjkuNzkwNkMzMC4zNTYxIDI5LjkyNDcgMzAuMTczNiAzMCAyOS45ODM0IDMwQzI5Ljc5MzEgMzAgMjkuNjEwNiAyOS45MjQ3IDI5LjQ3NjEgMjkuNzkwNkMyOS4zNDE2IDI5LjY1NjUgMjkuMjY2IDI5LjQ3NDYgMjkuMjY2IDI5LjI4NUMyOS4yNjYgMjkuMDk1MyAyOS4zNDE2IDI4LjkxMzUgMjkuNDc2MSAyOC43Nzk0TDMzLjI2OTEgMjUuMDAwMkwyOS40NzYxIDIxLjIyMUMyOS40MDk0IDIxLjE1NDcgMjkuMzU2NSAyMS4wNzU5IDI5LjMyMDMgMjAuOTg5MUMyOS4yODQyIDIwLjkwMjMgMjkuMjY1NiAyMC44MDkzIDI5LjI2NTYgMjAuNzE1NEMyOS4yNjU2IDIwLjYyMTUgMjkuMjg0MiAyMC41Mjg1IDI5LjMyMDMgMjAuNDQxN0MyOS4zNTY1IDIwLjM1NDkgMjkuNDA5NCAyMC4yNzYxIDI5LjQ3NjEgMjAuMjA5OFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUgMjUuMDAwM0MxNSAyNC44MTA5IDE1LjA3NzQgMjQuNjI5MiAxNS4yMTUxIDI0LjQ5NTNDMTUuMzUyOSAyNC4zNjE0IDE1LjUzOTcgMjQuMjg2MSAxNS43MzQ2IDI0LjI4NjFIMzQuMDE3NUMzNC4yMTIzIDI0LjI4NjEgMzQuMzk5MiAyNC4zNjE0IDM0LjUzNjkgMjQuNDk1M0MzNC42NzQ3IDI0LjYyOTIgMzQuNzUyMSAyNC44MTA5IDM0Ljc1MjEgMjUuMDAwM0MzNC43NTIxIDI1LjE4OTcgMzQuNjc0NyAyNS4zNzEzIDM0LjUzNjkgMjUuNTA1MkMzNC4zOTkyIDI1LjYzOTIgMzQuMjEyMyAyNS43MTQ0IDM0LjAxNzUgMjUuNzE0NEgxNS43MzQ2QzE1LjUzOTcgMjUuNzE0NCAxNS4zNTI5IDI1LjYzOTIgMTUuMjE1MSAyNS41MDUyQzE1LjA3NzQgMjUuMzcxMyAxNSAyNS4xODk3IDE1IDI1LjAwMDNaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") no-repeat center center;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: .3s opacity;
    opacity: 0;
}

.gameslibrary__slider-item:hover:after {
    opacity: 1;
}

.no-slider .slider-nav {
    display: none;
}

.no-slider .gameslibrary__slider {
    margin-bottom: 0;
}

@media only screen and (max-width: 1919px) {
    .gameslibrary > .container {
        width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .gameslibrary {
        margin-bottom: 100px;
    }
    .gameslibrary__content {
        width: 924px;
    }
    .gameslibrary__slider-wrap {
        width: 646px;
    }
    .gameslibrary__slider-item {
        margin-right: 20px;
    }
    .gameslibrary > .container-small .title {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1023px) {
    .gameslibrary__content {
        width: 668px;
    }
    .gameslibrary__name {
        font-size: 22px;
        line-height: 32px;
        padding-top: 58px;
    }
    .gameslibrary__slider-wrap {
        width: 377px;
    }
    .gameslibrary__slider {
        margin-bottom: 60px;
    }
    .gameslibrary__slider-item {
        width: 175px;
        margin-right: 27px;
    }
    .gameslibrary__wrapper {
        margin-bottom: 60px;
    }
    .gameslibrary__name svg {
        width: 50px;
        height: 50px;
    }
    .gameslibrary > .container-small .title {
        margin-bottom: 60px;
    }
    .gameslibrary__item--top {
        margin-bottom: 0;
    }
    .gameslibrary__item--top .gameslibrary__name {
        padding-top: 60px;
    }
    .gameslibrary__content {
        padding: 30px 0 43px;
    }
}

@media only screen and (max-width: 767px) {
    .gameslibrary {
        margin-bottom: 80px;
    }
    .gameslibrary__content {
        display: block;
        width: 420px;
        padding: 30px 0;
    }
    .gameslibrary__name {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 40px;
    }
    .gameslibrary__slider-wrap {
        width: 100%;
    }
    .gameslibrary__slider-item {
        width: 195px;
        margin-right: 30px;
    }
    .gameslibrary__item--top .gameslibrary__content {
        padding: 60px 0;
    }
    .gamespage .pluses {
        margin-bottom: 80px;
    }
    .gameslibrary > .container-small .title {
        margin-bottom: 50px;
    }
    .gameslibrary__item--top .gameslibrary__name {
        padding-top: 0;
    }
    .gameslibrary__slider-wrap .slider-nav__arrow {
        height: 60px;
    }
    .gameslibrary__item--top {
        margin-bottom: 50px;
    }
    .gamespage .demo {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 479px) {
    .gameslibrary__content {
        width: 280px;
    }
    .gameslibrary__slider {
        margin-bottom: 50px;
    }
    .gameslibrary__slider-item {
        width: 130px;
        margin-right: 20px;
    }
    .gameslibrary__wrapper {
        margin-bottom: 50px;
    }
}

/*rent of games*/

@media only screen and (max-width: 767px) {
    .rentofgamespage .portfolio {
        margin-top: 80px;
    }
    .rentofgamespage .demo {
        margin-bottom: 0;
    }
}

/*you'll get block*/

.connectget {
    margin-bottom: 130px;
}

.connectget__wrapper {
    background: #FAFAFA;
    padding: 130px 0;
}

.connectget__wrapper .title{
    max-width: none;
}

.connectget__content {
    margin-bottom: 80px;
}

.connectget__item:not(:last-child) {
    margin-bottom: 30px;
}

.connectget__item {
    display: flex;
    position: relative;
    padding: 35px 191px 35px 40px;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #D3D0D9;
    width: 100%;
}

.connectget__info {
    margin-left: 30px;
}

.connectget__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 10px;
}

.connectget__text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #210E2D;
}

.connectget__item .ico {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 55px;
}

.connectget__item:after {
    position: absolute;
    content: '';
    height: 100%;
    background: #D3D0D9;
    width: 1px;
    top: 0;
    right: 150px;
}

@media only screen and (max-width: 1919px) {
    .connectget__wrapper {
        padding: 130px 75px;
    }
    .connectget__wrapper .container-small {
        width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .connectget {
        margin-bottom: 100px;
    }
    .connectget__wrapper {
        padding: 100px 50px;
    }
    .connectget__item {
        padding: 35px 161px 35px 40px;
    }
    .connectget__item .ico {
        right: 40px;
    }
    .connectget__item:after {
        right: 120px;
    }
}

@media only screen and (max-width: 1023px) {
    .connectget__content {
        margin-bottom: 60px;
    }
    .connectget__item {
        padding: 35px 142px 35px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .connectget {
        margin-bottom: 80px;
    }
    .connectget__wrapper {
        padding: 80px 30px;
    }
    .connectget__item {
        padding: 35px 30px;
    }
    .connectget__item .ico {
        display: none;
    }
    .connectget__item:after {
        display: none;
    }
    .connectget > .container {
        width: 100%;
    }
    .playerspage .demo {
        margin-bottom: 0;
    }
    .paysystempage .connectget {
        margin-bottom: 0;
    }
    .connectget__wrapper .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .connectget__wrapper {
        padding: 80px 20px;
    }
    .connectget__content {
        margin-bottom: 50px;
    }
    .connectget__item {
        padding: 35px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .connectget__info {
        margin-left: 0;
        margin-top: 25px;
    }
    .connectget__wrapper .container-small {
        width: 100%;
    }
}

/*author page*/

.fs-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-author__info {
    max-width: 647px;
    flex-shrink: 0;
}

.fs-author img {
    border-radius: 50%;
    width: 430px;
    height: 430px;
    flex-shrink: 0;
}

.authorinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FAFAFA;
    padding: 50px 40px;
    margin-top: 50px;
}

.authorinfo__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #210E2D;
    margin-bottom: 30px;
}

.authorinfo__soc {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 50px;
}

.authorinfo__item {
    border-radius: 50%;
    transition: .3s;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #736E7A;
    width: 40px;
    height: 40px;
}

.authorinfo__item:hover {
    border-color: #210E2D;
}

.authorinfo__item:hover svg path {
    fill: #210E2D;
}

.authorinfo .btn {
    margin: 0;
}

@media only screen and (max-width: 1279px) {
    .fs-author__info {
        max-width: 527px;
    }
    .fs-author img {
        width: 367px;
        height: 367px;
    }
    .fs-author {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 1023px) {
    .fs-author {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .fs-author__info {
        max-width: 100%;
    }
    .fs-author img {
        width: 430px;
        height: 430px;
        margin-top: 80px;
    }
    .authorinfo__item {
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .fs-author img {
        width: 420px;
        height: 420px;
        margin-top: 60px;
    }
    .authorinfo {
        padding: 50px 30px;
    }
    .authorinfo__soc {
        column-gap: 25px;
    }
    .authorinfo__item {
        width: 50px;
        height: 50px;
    }
    .authorinfo__item svg {
        width: 20px;
        height: 20px;
    }
    .authorinfo .btn {
        width: 260px;
    }
}

@media only screen and (max-width: 479px) {
    .fs-author img {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }
    .authorinfo {
        padding: 50px 20px;
        margin-top: 40px;
    }
    .authorinfo__title {
        font-size: 20px;
        line-height: 30px;
    }
    .authorinfo__soc {
        margin-bottom: 40px;
    }
    .authorinfo .btn {
        width: 100%;
    }
}

/*contacts*/

.contacts__attention {
    width: 100%;
}

.contactspage .fs-childpage__title {
    margin-bottom: 0;
}

.contactspage .fs-childpage {
    margin-bottom: 100px;
}

.contactsblock {
    margin-bottom: 130px;
}

.contactsblock__wrapper {
    background: #FAFAFA;
    padding: 130px 0 0;
}

.contactsfields {
    width: 800px;
    margin: 0 auto 130px;
}

.contactsfields .popup__subtitle {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.03em;
    color: #210E2D;
    margin-bottom: 40px;
    padding: 0;
    border: none;
}

.contactsfields .popup__text {
    color: #736E7A;
}

.contactsfields .popup__label-title {
    color: #210E2D;
}

.contactsfields .label--email, .contactsfields .label--tel {
    width: 100%!important;
}

.contactsfields input[type="text"],
.contactsfields input[type="email"],
.contactsfields input[type="tel"],
.contactsfields input[type="password"],
.contactsfields textarea {
    color: #210E2D;
}

.contactsfields input[type="text"]::placeholder,
.contactsfields input[type="email"]::placeholder,
.contactsfields input[type="tel"]::placeholder,
.contactsfields input[type="password"]::placeholder,
.contactsfields textarea::placeholder {
    color: #736E7A;
}

.contactsfields input[type="text"]:focus,
.contactsfields input[type="email"]:focus,
.contactsfields input[type="tel"]:focus,
.contactsfields input[type="password"]:focus,
.contactsfields textarea:focus {
    border: 1px solid #3B5D9E;
    box-shadow: 0 0 0px 3px #b7cefb;
}

.contactsfields .popup__label-input-wrapper.active input[type="text"],
.contactsfields .popup__label-input-wrapper.active input[type="email"],
.contactsfields .popup__label-input-wrapper.active input[type="tel"],
.contactsfields .popup__label-input-wrapper.active textarea {
    border: 1px solid #3B5D9E;
}

.contactsfields .iti--separate-dial-code .iti__selected-flag {
    background: #F2F2F2;
}

.contactsfields .iti__arrow {
    border-top: 5px solid #210E2D;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.contactsfields .iti__arrow--up {
    border-bottom: 5px solid #210E2D;
    border-top: none;
}

.contactsfields .iti__country-list {
    min-width: 800px;
    max-width: 800px;
    margin: 3px 0;
}

.contactsfields .iti--separate-dial-code .iti__selected-dial-code {
    color: #210E2D;
    font-weight: 700;
}

.contactsfields input[type="tel"] {
    font-weight: 700;
}

.contactsfields .popup__fields {
    margin-bottom: 10px;
}

.contactsfields .popup__accept label span {
    color: #210E2D;
}

.contactsfields .popup__accept label span a:hover {
    color: #736E7A;
}

.contactsfields .popup__accept label span a:focus {
    color: #736E7A;
}

.contactsfields .popup__submit .popup__submit-btn {
    background: #210E2D;
    border: none!important;
    color: #FFFFFF;
}

.contactsfields .popup__submit .popup__submit-btn:hover {
    background: #F4AF46;
    color: #210E2D;
}

.contactsfields .popup__submit .popup__submit-btn:focus {
    background: #F4AF46;
    color: #210E2D;
}

.contactsfields .iti-mobile .iti {
    z-index: 10;
}

.contactsfields .preloader {
    padding: 56px 0;
}

.contactsfields .thks-msg__title {
    color: #210E2D;
}

.contactsfields .thks-msg__text {
    color: #210E2D;
}

.contactspage .textcontacts__head:not(.seo .textcontacts__head) {
    font-size: 60px;
    line-height: 80px;
    margin-bottom: 30px;
    text-underline-offset: 14px;
    text-decoration-thickness: 3px;
}

.contactspage .textcontacts__head:not(.seo .textcontacts__head) svg {
    width: 50px;
    height: 50px;
    margin-right: 47px;
}

.contactspage .textcontacts__item:not(:last-child):not(.seo .textcontacts__item) {
    margin-bottom: 90px;
}

.contactspage .thks-msg .btn {
    margin-top: 50px;
}

@media only screen and (max-width: 1919px) {
    .contactsblock__wrapper {
        background: #FAFAFA;
        padding: 130px 75px 0;
    }
    .contactsblock__wrapper .container-small {
        width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .contactspage .fs-childpage {
        margin-bottom: 80px;
    }
    .contactsblock {
        margin-bottom: 100px;
    }
    .contactsblock__wrapper {
        padding: 100px 100px 0;
    }
    .contactsblock .container {
        width: 100%;
    }
    .contactsfields {
        width: 824px;
        margin: 0 auto 100px;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) {
        font-size: 50px;
        line-height: 70px;
        margin-bottom: 25px;
        text-underline-offset: 11px;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) svg {
        margin-right: 30px;
    }
    .contactspage .textcontacts__item:not(:last-child):not(.seo .textcontacts__item) {
        margin-bottom: 80px;
    }
    .contactsblock__wrapper .container-small {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .contactspage .fs-childpage {
        margin-bottom: 100px;
    }
    .contactsblock__wrapper {
        padding: 80px 50px 0;
    }
    .contactsblock__wrapper .textcontacts {
        margin-bottom: 80px;
    }
    .contactsfields {
        width: 588px;
    }
    .contactsfields .popup__subtitle {
        font-size: 30px;
        line-height: 42px;
    }
    .contactsfields .preloader {
        padding: 100px 0;
    }
    .contactsfields .preloader {
        padding: 72px 0;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) {
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 20px;
        text-underline-offset: 9px;
        text-decoration-thickness: 2px;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) svg {
        margin-right: 20px;
        width: 40px;
        height: 40px;
    }
    .contactsblock__wrapper .container-small {
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .contactspage .fs-childpage {
        margin-bottom: 80px;
    }
    .contactsblock {
        margin-bottom: 80px;
    }
    .contactsblock__wrapper {
        padding: 60px 30px 0;
    }
    .contactsblock__wrapper .textcontacts {
        margin-bottom: 60px;
    }
    .contactsfields {
        width: 420px;
        margin: 0 auto 80px;
    }
    .contactsfields .popup__subtitle {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .contactsfields .preloader {
        padding: 67px 0;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) {
        font-size: 23px;
        line-height: 35px;
        text-underline-offset: 6px;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) svg {
        margin-right: 15px;
        width: 24px;
        height: 24px;
    }
    .contactspage .textcontacts__item:not(:last-child):not(.seo .textcontacts__item) {
        margin-bottom: 50px;
    }
    .contactsblock__wrapper .container-small {
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .contactspage .fs-childpage {
        margin-bottom: 50px;
    }
    .contactsblock__wrapper {
        padding: 50px 20px 0;
    }
    .contactsblock__wrapper .textcontacts {
        margin-bottom: 50px;
    }
    .contactsfields {
        width: calc(100% - 40px);
    }
    .contactsfields .popup__subtitle {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .contactsfields .popup__accept label span {
        font-size: 14px;
        line-height: 20px;
    }
    .contactsfields .iti input[type=tel] {
        padding-left: 126px!important;
    }
    .preloader__img {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contactsfields .preloader {
        padding: 78px 0;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) {
        font-size: 17px;
        line-height: 35px;
        margin-bottom: 15px;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
    }
    .contactspage .textcontacts__head:not(.seo .textcontacts__head) svg {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
    .contactspage .textcontacts__item:not(:last-child):not(.seo .textcontacts__item) {
        margin-bottom: 40px;
    }
    .contactsblock__wrapper .container-small {
        width: 100%;
    }
}

/*telegram popup*/

.tg-form {
    width: 100%;
}

.tg-window {
    width: 100%;
}

.popup-tg .popup__block {
    align-items: center;
}

.tg-window__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.02em;
    color: #EBEBEB;
    margin-bottom: 30px;
}

.tg-window__subtitle {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #EBEBEB;
    border-bottom: 1px solid #3E364D;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.tg-tooltip {
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #7B0A0E;
    padding: 10px 20px;
    background: #FFE0E4;
    display: none;
}

.tg-tooltip-valid {
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #7B0A0E;
    padding: 10px 20px;
    background: #FFE0E4;
    display: none;
}
.tg-tooltip-valid.active {
    display: block;
}

.label--tg.error .tg-tooltip {
    display: block;
}

.tg-window .popup__bottom-fields {
    margin-top: 45px;
}

.tg-error-msg {
    display: none;
    flex-direction: column;
}
.tg-error-msg.active {
    display: flex;
}

.tg-error-msg span {
    display: block;
    width: 100%;
    padding-top: 40px;
    font-family: Gilroy;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #EBEBEB;
}

.tg-error-msg a {
    text-decoration-line: underline;
    color: #EBEBEB;
    transition: .3s color;
}

.tg-error-msg a:hover {
    color: #9E98A6;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .tg-window__title {
        font-size: 36px;
        line-height: 46px;
    }
    .tg-window__subtitle {
        padding-bottom: 50px;
    }
    .tg-tooltip {
        padding: 10px;
        font-size: 13px;
        line-height: 15px;
    }
    .tg-tooltip-valid {
        padding: 10px;
        font-size: 13px;
        line-height: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .tg-window__title {
        font-size: 28px;
        line-height: 36px;
    }
    .popup-tg .popup__block {
        align-items: flex-start;
        padding: 60px 0;
    }
    .tg-error-msg span {
        padding-top: 30px;
        font-size: 20px;
        line-height: 30px;
    }
    .tg-error-msg {
        position: absolute;
        top: 50%;
        width: 100%;
        padding: 0 20px;
        transform: translateY(-50%);
    }
}

/*404*/

.notfoundpage {
    background: #1C122E;
    border-bottom: 1px solid #3E364D;
}

.notfoundpage__wrapper {
    width: 800px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 130px;
}

.notfound-fs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.notfound-fs__title {
    margin-bottom: 47px;
}

.notfound-fs__title svg {
    width: 100%;
    height: auto;
}

.notfound-fs__subtitle {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 30px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.notfound-fs__btn {
    height: 60px;
    margin-bottom: 130px;
}

.notfound-fs__text {
    display: flex;
    align-items: center;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    color: #9D97A7;
    transition: .3s;
    margin-bottom: 130px;
    justify-content: center;
}

.notfound-fs__text:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.notfound-fs__text svg {
    margin-left: 10px;
}

.notfound-fs__text:hover svg path {
    fill: #FFFFFF;
}

.notfoundfields .popup__subtitle {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    padding: 0;
    border: none;
    margin-bottom: 40px;
}

.notfoundfields .label--email, .notfoundfields .label--tel {
    width: 100%!important;
}

.notfoundfields .iti__country-list {
    margin: 1px 0 1px -1px;
    min-width: 800px;
    max-width: 800px;
}

.notfoundfields .popup__fields {
    margin-bottom: 10px;
}

.notfoundfields input[type="text"]:focus,
.notfoundfields input[type="email"]:focus,
.notfoundfields input[type="tel"]:focus,
.notfoundfields input[type="password"]:focus,
.notfoundfields textarea:focus {
    border: 1px solid #3B5D9E;
    box-shadow: 0 0 0px 3px #b7cefb;
}

.notfoundfields .popup__label-input-wrapper.active input[type="text"],
.notfoundfields .popup__label-input-wrapper.active input[type="email"],
.notfoundfields .popup__label-input-wrapper.active input[type="tel"],
.notfoundfields .popup__label-input-wrapper.active textarea {
    border: 1px solid #3B5D9E;
}

.notfoundfields__preloader {
    display: none;
    padding: 100px 0;
}

.notfoundfields__preloader.active {
    display: block;
}

@media only screen and (max-width: 1919px) {
    .notfoundpage__wrapper {
        padding-top: 80px;
        padding-bottom: 150px;
    }
    .notfound-fs__title {
        width: 248px;
        height: 100px;
    }
    .notfound-fs__btn {
        margin-bottom: 100px;
    }
    .notfound-fs__text {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 1279px) {
    .notfoundpage__wrapper {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .notfoundpage__wrapper {
        width: 588px;
    }
    .notfoundfields .popup__subtitle {
        font-size: 30px;
        line-height: 42px;
    }
    .notfoundfields__preloader {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 767px) {
    .notfoundpage__wrapper {
        width: 420px;
        padding-bottom: 80px;
    }
    .notfound-fs__title {
        width: 198px;
        height: 80px;
        margin-bottom: 30px;
    }
    .notfound-fs__subtitle {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 40px;
    }
    .notfound-fs__btn {
        width: 260px;
        margin-bottom: 80px;
    }
    .notfound-fs__text {
        margin-bottom: 80px;
    }
    .notfoundfields .popup__subtitle {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .notfoundpage__wrapper {
        width: calc(100% - 40px);
        padding-top: 50px;
    }
    .notfound-fs__title {
        width: 124px;
        height: 50px;
    }
    .notfound-fs__subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    .notfound-fs__btn {
        width: 100%;
        margin-bottom: 60px;
    }
    .notfound-fs__text {
        margin-bottom: 60px;
    }
    .notfoundfields .popup__subtitle {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}

.contactsfields__container,
.notfoundfields__container,
.contactsfields__preloader,
.contactsfields__msg,
.notfoundfields__msg {
    display: none;
}

.contactsfields__container.active,
.notfoundfields__container.active,
.contactsfields__preloader.active,
.contactsfields__msg.active,
.notfoundfields__msg.active {
    display: block;
}

/*ugw banners*/

.ugw-banner-main {
    margin: 0 auto 130px;
    display: block;
    width: 1130px;
}

.articlespage .ugw-banner-main,
.newspage .ugw-banner-main {
    margin: -30px auto 100px;
}

.articlestextpage .ugw-banner-main {
    margin-bottom: 60px;
}

@media only screen and (max-width: 1919px) {
    .ugw-banner-main {
        width: auto;
    }
}

@media only screen and (max-width: 1279px) {
    .ugw-banner-main {
        margin: -30px auto 100px;
    }
    .aboutpage .ugw-banner-main,
    .contactspage .ugw-banner-main,
    .authorpage .ugw-banner-main,
    .paysystempage .ugw-banner-main,
    .materialspage .ugw-banner-main,
    .gamespage .ugw-banner-main,
    .rentofgamespage .ugw-banner-main,
    .playerspage .ugw-banner-main,
    .providerspage .ugw-banner-main,
    .versionspage .ugw-banner-main,
    .partnerpage .ugw-banner-main,
    .articlespage .ugw-banner-main,
    .newspage .ugw-banner-main {
        margin: 0 auto 100px;
    }
    .articlestextpage .ugw-banner-main {
        margin: 0 auto 60px;
    }
}

@media only screen and (max-width: 1023px) {
    .ugw-banner-main {
        margin: 0 auto 100px;
    }
    .articlespage .ugw-banner-main,
    .newspage .ugw-banner-main {
        margin: -20px auto 80px;
    }
}

@media only screen and (max-width: 767px) {
    .ugw-banner-main {
        margin: -20px auto 60px;
    }
    .aboutpage .ugw-banner-main,
    .contactspage .ugw-banner-main,
    .authorpage .ugw-banner-main,
    .paysystempage .ugw-banner-main,
    .materialspage .ugw-banner-main,
    .gamespage .ugw-banner-main,
    .rentofgamespage .ugw-banner-main,
    .playerspage .ugw-banner-main,
    .providerspage .ugw-banner-main,
    .versionspage .ugw-banner-main,
    .partnerpage .ugw-banner-main,
    .articlespage .ugw-banner-main,
    .newspage .ugw-banner-main {
        margin: -20px auto 60px;
    }
    .articlestextpage .ugw-banner-main {
        margin: 0 auto 40px;
    }
}

@media only screen and (max-width: 479px) {
    .ugw-banner-main {
        margin: -30px auto 50px;
    }
    .aboutpage .ugw-banner-main,
    .contactspage .ugw-banner-main,
    .authorpage .ugw-banner-main,
    .paysystempage .ugw-banner-main,
    .materialspage .ugw-banner-main,
    .gamespage .ugw-banner-main,
    .rentofgamespage .ugw-banner-main,
    .playerspage .ugw-banner-main,
    .providerspage .ugw-banner-main,
    .versionspage .ugw-banner-main,
    .partnerpage .ugw-banner-main,
    .newspage .ugw-banner-main {
        margin: -30px auto 50px;
    }
    .articlespage .ugw-banner-main {
        margin: -30px auto 80px;
    }
    .articlestextpage .ugw-banner-main {
        margin: 0 auto 30px;
    }
}


/*attention popup*/

.popup-attention {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    left: 0;
    top: 0;
    background: rgba(26, 32, 43, 0.85);
    box-shadow: -50px 4px 84px rgba(0, 0, 0, 0.2);
}

.popup-attention__window {
    width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.attention-btn {
    margin-top: 20px;
    border: 1px solid #736E7A;
    border-radius: 3px;
    width: 110px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: .3s;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #736E7A;
    cursor: pointer;
}

.attention-btn:hover {
    background: #1C122E;
    border-color: #1C122E;
    color: #FFFFFF;
}

.popup-attention__window .attention {
    margin: 0;
}

.attention__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.attention__close svg {
    margin: 0;
}

.attention__close:hover svg path {
    fill: #210E2D;
}

.seo .attention {
    margin: 0;
}

@media only screen and (max-width: 1023px) {
    .attention-btn {
        cursor: default;
    }
    .attention__close {
        cursor: default;
    }
    .popup-attention__window {
        width: 700px;
    }
    .popup-attention {
        overflow: scroll;
    }
}

@media only screen and (max-width: 767px) {
    .popup-attention__window {
        width: 440px;
        position: relative;
        right: auto;
        top: auto;
        left: auto;
        margin: 30px auto 30px;
        transform: translate(0,0);
    }
    .popup-attention .attention {
        padding: 50px 30px;
    }
    .attention-btn {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .popup-attention .attention {
        padding: 40px 20px;
    }
    .attention-btn {
        margin-top: 10px;
        height: 60px;
    }
    .popup-attention__window {
        width: 280px;
    }
}

.telegramHelperVal {
    color: #FFFFFF;
    display: table-caption;
    width: 16px;
    height: 16px;
    margin-top: -39px;
    margin-left: 22px;
}

#telegramField {
    padding-left: 38px;
}

/*side btns*/

.sidebtns {
    position: fixed;
    left: 0;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 4px 10px rgba(28, 18, 46, 0.12);
    z-index: 11;
    transition: transform .3s;
}

.sidebtns.active {
    transform: translateY(-50%) translateX(0) !important;
}

.sidebtns__item {
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
    flex-shrink: 0;
}

.sidebtns__item:not(:last-child):after {
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    height: 1px;
    width: 100%;
    background:  #D3D0D9;
}

.sidebtns__item:not(:last-child) {
    margin-bottom: 1px;
}

.sidebtns__item span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100px;
    height: 100%;
    background: #3B2F4F;
    padding: 5px;
    font-family: Gilroy;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: .3s;
}

.sidebtns__item:hover span {
    transform: translateX(0);
}

.sidebtns__item > :where(img, svg) {
    width: 20px;
    height: 20px;
}

@media only screen and (max-width: 767px) {
    .sidebtns {
        display: none;
    }
}

/*side btns mobile*/

@media only screen and (max-width: 767px) {
    .sidebtnsmobile {
        border-top: 1px solid #C8C9CC;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        position: fixed;
        z-index: 7;
    }
    .sidebtnsmobile.active {
        display: flex!important;
    }
    .sidebtnsmobile__item {
        flex-shrink: 0;
        width: calc(100% / 6);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 44px;
        background: rgba(255, 255, 255, 0.91);
        transition: .3s;
    }
    .sidebtnsmobile__item:not(:last-child) {
        border-right: 1px solid #C8C9CC;
    }
    .sidebtnsmobile__item:hover {
        background: #3B2F4F;
    }
    .sidebtnsmobile__item:hover:not(:last-child) svg path {
        fill: #FFFFFF;
    }
    .sidebtnsmobile__item.addthis_button_more span {
        display: none;
    }
    .sidebtnsmobile__item > img {
        width: 20px;
        height: 20px;
    }
    .sidebtnsmobile__item:hover > img {
        filter: brightness(100);
    }
}

/*configurator window*/ 

.confwindow {
    padding: 29px 34px;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateX(-105%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #3B2F4F;
    background: #271C3B;
    width: 360px;
    height: 250px;
    z-index: 12;
    transition: .3s;
}

.confwindow.active {
    transform: translateX(0);
}

.confwindow__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.confwindow__close:hover svg path {
    fill: #ffffff;
}

.confwindow-title {
    margin-top: 10px;
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.4px;
}

.confwindow-subtitle {
    margin-top: 9px;
    max-width: 290px;
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.3px;
}

.demowindow__btn.confwindow__btn {
    bottom: 29px;
}

.confwindow__amimation {
    width: 30px;
    height: 30px;
}

.confwindow > svg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .confwindow {
        bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .confwindow {
        padding: 19px 14px;
        width: 100%;
        height: 230px;
    }
    .demowindow__btn.confwindow__btn {
        bottom: 19px;
        min-width: 250px;
    }
    .confwindow > svg {
        width: 219px;
        height: 215px;
    }
}

/*presentation window*/

.preswindow {
    width: 360px;
    flex-shrink: 0;
    background: #271C3B;
    border: 1px solid #3B2F4F;
    transition: .3s;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 12;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    visibility: visible!important;
    transform: translateX(-105%);
}

.preswindow.unvisible {
    transform: translateX(-105%)!important;
}

.preswindow.active{
    transform: translateX(0);
}

.preswindow > svg {
    margin-bottom: 30px;
}

.preswindow__title {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.preswindow__btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.preswindow__btn {
    flex-shrink: 0;
    height: 50px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.preswindow__btn:not(:last-child) {
    margin-right: 5px;
}

.preswindow__btn:first-child {
    flex-shrink: 0;
    height: 50px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #9D97A7;
}

.preswindow__btn:first-child:hover {
    color: #ffffff;
    text-decoration: none;
}

.preswindow__btn:nth-child(2) {
    width: 150px;
    background: #F0F0F2;
    border-radius: 3px;
    padding: 5px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #210E2D;
}

.preswindow__btn:nth-child(2):hover {
    background: #F4AF46;
    color: #210E2D;
}

.preswindow__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.preswindow__close:hover svg path {
    fill: #ffffff;
}

@media only screen and (max-width: 767px) {
    .preswindow {
        bottom: 44px;
    }
    .preswindow.active{
        transform: translateX(0)!important;
    }
}

@media only screen and (max-width: 479px) {
    .preswindow {
        padding: 20px 15px 30px;
        width: 320px;
    }
    .preswindow > svg {
        margin-bottom: 20px;
    }
}

/* demo window */ 

.demowindow {
    padding: 39px 19px;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateX(-105%);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3B2F4F;
    background: linear-gradient(180deg, #381744 0%, #7E1041 100%);
    width: 360px;
    height: 250px;
    z-index: 12;
    transition: .3s;
}

.demowindow.active {
    transform: translateX(0);
}

.demowindow__close {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.demowindow__close:hover svg path {
    fill: #FFF;
}

.demowindow > img {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: calc(100% + 2px);
    max-width: unset;
    height: auto;
    z-index: -1;
}

.demowindow-title {
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.44px;
}

.demowindow-subtitle {
    margin-top: 9px;
    max-width: 290px;
    color: #FFF;
    text-align: center;
    font-family: Gilroy;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
}

.demowindow__btn {
    position: absolute;
    bottom: 44px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 250px;
    height: 50px;
    background: #F4AF46;
    border-radius: 3px;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: #210E2D;
    transition: .3s;
}

.demowindow__btn:hover {
    background: #F0F0F2;
}

@media only screen and (max-width: 767px) {
    .demowindow {
        bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .demowindow {
        padding: 29px 29px 24px;
        width: 100%;
        max-width: 479px;
        height: 230px;
    }   
    .demowindow-subtitle {
        margin-top: 8px;
        max-width: 260px;
        font-size: 17px;
        line-height: 25px;
        letter-spacing: 0.34px;
    }
    .demowindow__btn {
        bottom: 24px;
        min-width: 260px;
    }
}

/*on top btn*/

.ontop {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(115, 110, 122, 0.3);
    transition: .3s;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 55px;
    left: 20px;
    z-index: 7;
    visibility: visible!important;
    transform: translateX(calc(-100% - 20px));
}

.ontop:hover {
    background: #736E7A;
}

.ontop.active {
    transform: translateX(0);
}

@media only screen and (max-width: 1919px) {
    .ontop {
        left: 15px;
        transform: translateX(calc(-100% - 15px));
    }
}

@media only screen and (max-width: 1023px) {
    .ontop {
        left: 10px;
        bottom: 20px;
        transform: translateX(calc(-100% - 10px));
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .ontop {
        display: none;
    }
}

/* cookies-popup */

.cookies-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(34, 31, 36, .6);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookies-popup.active {
    display: flex;
}

.cookies-popup-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: scroll;
    padding: 30px 0;
}

.cookies-popup-close {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #E6E6E6;
    border-top-right-radius: 4px;
    transition: .3s;
    cursor: pointer;
    z-index: 2;
}

.cookies-popup-close:hover {
    background: #F0F0F2;
}

.cookies-popup-close svg {
    flex-shrink: 0;
}

.cookies-popup-close:hover svg path {
    stroke: #210E2D;
}

.cookies-popup-box {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 500px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.17);
    border-radius: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cookies-popup-box::-webkit-scrollbar {
    display: none;
}

.cookies-popup-box > svg {
    flex-shrink: 0;
}

.cookies-popup-title {
    margin-top: 20px;
    color: #210E2D;
    text-align: center;
    font-family: Gilroy;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.cookies-popup-text {
    margin-top: 15px;
    color: #210E2D;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.36px;
}

.cookies-popup a {
    color: #210E2D;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.36px;
    text-decoration-line: underline;
    text-underline-offset: 1px;
    text-decoration-thickness: 1px;
    transition: .3s;
}

.cookies-popup a:hover {
    color: #736E7A;
    text-decoration-color: transparent;
}

.cookies-popup .btn {
    margin: 25px 0;
    width: 200px;
    height: 60px;
    border: none;
}

@media only screen and (max-width: 767px) {
    .cookies-popup-box {
        padding: 40px 30px;
        width: 420px;
    }
}

@media only screen and (max-width: 479px) {
    .cookies-popup-box {
        padding: 40px 20px;
        width: calc(100% - 40px);
    }
    .cookies-popup-box > svg {
        width: 40px;
        height: 40px;
    }
    .cookies-popup-title {
        margin-top: 10px;
        font-size: 24px;
        line-height: 34px;
        letter-spacing: 0.48px;
    }
    .cookies-popup-text {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.3px;
    }
    .cookies-popup a {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0.3px;
    }
}

/* cookies line - commented after adding cookies-popup */

 .cookies-line {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.08);
    padding: 7px 0;
    text-align: center;
    display: inline;
    z-index: 50;
}

.cookies-line p {
    display: inline-block;
    font-family: Gilroy;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: #736E7A;
    margin-right: 5px;
}

.cookies-line a {
    display: inline-block;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-decoration-line: underline;
    color: #736E7A;
    transition: .3s;
}

.cookies-line a:hover {
    text-decoration: none;
}

.cookies-line__btns {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.cookies-line__ok {
    height: 31px;
    min-width: 50px;
    background: #210E2D;
    transition: .3s;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-radius: 3px;
    font-family: Gilroy;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cookies-line__ok:hover {
    background: #F4AF46;
    color: #210E2D;
}

.cookies-line__cancel {
    font-family: Gilroy;
    font-size: 13px;
    line-height: 16px;
    transition: .3s;
    text-decoration-line: underline;
    color: #736E7A;
    cursor: pointer;
}

.cookies-line__cancel:hover {
    text-decoration: none;
}

@media only screen and (max-width: 1023px) {
    .cookies-line {
        padding: 14px 0 10px;
    }
    .cookies-line p {
        display: block;
        margin-right: 0;
        margin-bottom: 7px;
    }
}

@media only screen and (max-width: 767px) {
    .cookies-line {
        padding: 8px 0;
    }
    .cookies-line p {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 479px) {
    .cookies-line {
        padding: 10px 0;
    }
    .cookies-line a {
        margin-bottom: 8px;
    }
    .cookies-line__btns {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
    .cookies-line__cancel {
        line-height: 24px;
    }
}

#at-expanding-share-button {
    display: none;
}

/* sharing img */
.img-sharingWrap {
    position: relative;
    margin: 28px 0;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .img-sharingWrap {
        margin: 72px 0;
    }
}

@media only screen and (max-width: 767px) {
    .terms .img-sharingWrap {
        margin: 0;
    }
}

@media only screen and (max-width: 479px) {
    .img-sharingWrap {
        margin: 40px 0;
    }
}

@media only screen and (max-width: 479px) {
    .terms .img-sharingWrap {
        margin: 0;
    }
}

.img-sharingWrap img {
    margin: 0 !important;
}

.img-sharing {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 35px;
    height: 85px;
    -webkit-transform: translateX(70px);
    -ms-transform: translateX(70px);
    transform: translateX(70px);
    opacity: 0;
    -webkit-transition: .15s ease;
    -o-transition: .15s ease;
    transition: .15s ease;
    pointer-events: all;
}

.img-sharing a span {
    display: none!important;
}

@media only screen and (max-width: 479px) {
    .img-sharing {
        top: 12px;
        right: 12px;
    }
}

.img-sharing.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.img-sharing .img-sharing__facebook,
.img-sharing .img-sharing__pinterest {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    -webkit-transition: .15s ease;
    -o-transition: .15s ease;
    transition: .15s ease;
}

.img-sharing .img-sharing__facebook:hover,
.img-sharing .img-sharing__pinterest:hover {
    -webkit-transform: scale(1.16);
    -ms-transform: scale(1.16);
    transform: scale(1.16);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.img-sharing .img-sharing__facebook {
    background-image: url(/public/img/sprite.svg);
    background-position: -2831px -2656px;
    width: 35px;
    height: 35px;
}

.img-sharing .img-sharing__pinterest {
    background-image: url(/public/img/sprite.svg);
    background-position: -2866px -2691px;
    width: 35px;
    height: 35px;
}

/* games samples */
.gsamples__navproj {
    position: fixed;
    z-index: 3;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    top: 29px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsamples__navproj i {
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
}

.gsamples__navproj i:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.gsamples__navproj i path {
    transition: .3s;
}

.gsamples__navproj i:hover path {
    fill: #F4AF46;
}

.gsamples__navproj-num {
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gsamples__navproj-quantity {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.gsamples__navproj-shadow {
    position: fixed;
    display: block;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #13141D 0%, rgba(19, 20, 29, 0) 100%);
}

@media only screen and (max-width: 1279px) {
    .gsamples__navproj {
        top: 24px;
    }
    .gsamples__navproj-shadow {
        height: 100px;
    }
}
@media only screen and (max-width: 767px) {
    .gsamples__navproj {
        top: 20px;
        left: 20px;
    }
    .gsamples__navproj-shadow {
        height: 80px;
    }
    .gsamples__navproj i {
        display: none;
    }
    .gsamples__navproj-num {
        margin: 0;
    }
}
@media only screen and (max-width: 479px) {
    .gsamples__navproj {
        font-size: 16px;
        line-height: 19px;
    }
}
/*end games samples*/

/* popup presentation */

.popup-presentation .popup__block {
    align-items: center;
}
.popup-presentation .popup__title {
    margin-bottom: 40px;
}
.popup-presentation .label--email {
    width: 100% !important;
}
@media only screen and (max-width: 479px) {
    .popup-presentation .popup__title {
        margin-bottom: 30px;
    }
}

/* end popup presentation */

.label--tg .popup__label-input-wrapper input:-webkit-autofill,
.label--tg .popup__label-input-wrapper input:-webkit-autofill:hover,
.label--tg .popup__label-input-wrapper input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #210E2D inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* jivosite */

jdiv[class*="globalClass"] > jdiv.notranslate {
    z-index: 6 !important;
}

jdiv[class*="jivoMobileButton"] > jdiv[class^="button"] {
    margin-right: 5px !important;
    margin-bottom: 50px !important;
}

jdiv[class*="jivoMobileButton"] {
    z-index: 6 !important;
}

jdiv[class*="wrap"] > jdiv[class*="scroll"] jdiv[class*="container"] > jdiv[class*="container"] {
    z-index: 1000 !important;
}

jdiv[class*="container"] > jdiv[class*="wrapper"] {
    max-height: unset !important;
    overflow: visible !important;
}

jdiv[class*="container"] > jdiv[class*="wrapper"] > jdiv:nth-child(n+3):not([class*="checkbox"]) {
    opacity: 1 !important;
    visibility: visible !important;
}

/* popup download link */

.popup__download-link {
    height: calc(100vh - 140px);
}

.popup__download-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.popup__download-link > svg {
    flex-shrink: 0;
}

.popup__download-text {
    margin: 34px 0 50px;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}

.popup__download-line {
    display: flex;
}

.popup__download-linkname {
    padding: 0 20px;
    width: 521px;
    height: 60px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #9D97A7;
    background: #210E2D;
    border: 1px solid #706680;
    border-radius: 3px;
}

.popup__download-btn {
    position: relative;
    left: -1px;
    width: 280px;
    height: 60px;
    background: #210E2D;
    border: 1px solid #736E7A;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    cursor: pointer;
}

.popup__download-btn:hover {
    background: #F0F0F2;
    border-color: #F0F0F2;
    color: #210E2D;
}

.popup__download-tooltip {
    position: absolute;
    padding: 0 10px;
    top: calc(100% + 26px);
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    min-height: 84px;
    display: none;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    background: #271C3B;
    border: 1px solid #3B2F4F;
}

.popup__download-tooltip.active {
    display: flex;
}

.popup__download-tooltip > span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #F3F2F5;
    text-transform: none;
}

.popup__download-tooltip:after {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg) matrix(0.71, 0.73, -0.69, 0.71, 0, 0);
    width: 26px;
    height: 26px;
    background: #271C3B;
    border-bottom: 1px solid #3B2F4F;
    border-left: 1px solid #3B2F4F;
}

@media only screen and (max-width: 1023px) {
    .popup__download-link {
        width: 588px;
    }
    .popup__download-linkname {
        width: 309px;
    }
    .popup__download-text {
        font-size: 30px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .popup__download-linkname {
        display: none;
    }
    .popup__download-text {
        font-size: 28px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .popup__download-text {
        font-size: 22px;
        line-height: 30px;
    }
}

.show-more-btn .less {
    display: none;
}

.update-date {
    margin: -20px 0 30px;
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #736E7A;
    border-bottom: 1px solid #D7D6D9;
}

@media only screen and (max-width: 479px) {
    .update-date {
        margin-top: -10px;
        padding-bottom: 20px;
    }
}

/* telegram subscription block */

.tg-subscription {
    margin-bottom: 130px;
}

.tg-subscription .container {
    width: 1130px;
}

.tg-subscription__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tg-subscription__content {
    display: flex;
    flex-direction: column;
}

.tg-subscription-title {
    font-family: Gilroy;
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0.03em;
    color: #210E2D;
}

.tg-subscription__content > span {
    font-family: 'Raleway';
    margin-top: 30px;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.03em;
    color: #210E2D;
}

.tg-subscription-title br,
.tg-subscription__content > span br {
    display: none;
}

.tg-subscription-btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    width: 260px;
    height: 70px;
    background: #2A99D1;
    border-radius: 3px;
    font-family: Gilroy;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.tg-subscription-btn:hover {
    background: #29A9EA;
}

@media only screen and (max-width: 1919px) {
    .tg-subscription .container {
        width: 980px;
    }
    .tg-subscription__wrapper > svg {
        width: 348px;
        height: 320px;
    }
}

@media only screen and (max-width: 1279px) {
    .tg-subscription {
        margin-bottom: 100px;
    }
    .tg-subscription .container {
        width: 924px;
    }
    .tg-subscription__wrapper > svg {
        width: 414px;
        height: 380px;
    }
    .tg-subscription-title br:lang(ru-RU),
    .tg-subscription__content > span br:lang(ru-RU) {
        display: inline;
    }
}

@media only screen and (max-width: 1023px) {
    .tg-subscription .container {
        width: 668px;
    }
    .tg-subscription__wrapper > svg {
        width: 305px;
        height: 280px;
    }
    .tg-subscription-title {
        font-size: 26px;
        line-height: 38px;
    }
    .tg-subscription__content > span {
        font-size: 20px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .tg-subscription {
        margin: 80px 0;
    }
    .tg-subscription .container {
        width: 420px;
    }
    .tg-subscription__wrapper {
        flex-direction: column;
        row-gap: 12px;
    }
    .tg-subscription__content {
        order: 2;
        width: 100%;
    }
    .tg-subscription-btn {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .tg-subscription .container {
        width: calc(100% - 40px);
    }
    .tg-subscription__wrapper {
        row-gap: 40px;
    }
    .tg-subscription__wrapper > svg {
        width: 280px;
        height: 257px;
    }
    .tg-subscription-title {
        font-size: 22px;
        line-height: 32px;
    }
    .tg-subscription__content > span br:lang(ru-RU) {
        display: none;
    }
    .tg-subscription-btn {
        height: 60px;
    }
}

/* vertical tg news btn */

.tg-news-btn {
    padding: 0 30px;
    position: fixed;
    top: 317px;
    left: calc(50% + 492px);
    transform: rotate(-90deg);
    height: 58px;
	min-width: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    background: #2A99D1;
    box-shadow: 0px -4px 10px rgba(28, 18, 46, 0.12);
    border-radius: 50px;
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: .2s;
}

.tg-news-btn:hover {
    background: #29A9EA;
    box-shadow: -6px -6px 12px rgba(14, 34, 45, 0.22);
}

.tg-news-btn.active {
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.content-nav-mob-btn {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .tg-news-btn {
        top: 326px;
        left: calc(50% + 424px);
    }
}

@media only screen and (max-width: 1279px) {
    .tg-news-btn {
        top: 283px;
        left: calc(50% + 350px);
    }
    .tg-news-btn.helper-top {
        top: 326px;
    }
    .content-nav-mob-btn {
        position: fixed;
        top: 165px;
        left: calc(50% + 433px);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 58px;
        height: 58px;
        background: #FFFFFF;
        box-shadow: 0px 4px 10px rgba(28, 18, 46, 0.12);
        border-radius: 500px;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        cursor: pointer;
        transition: .3s;
    }
    .content-nav-mob-btn.active {
        visibility: visible;
        opacity: 1;
        z-index: 10;
    }
    .content-nav-mob-btn:hover {
        background: #3B2F4F;
        box-shadow: -6px 6px 12px rgba(14, 34, 45, 0.22);
    }
    .content-nav-mob-btn:hover svg path {
        stroke: #FFFFFF;
    }
}

@media only screen and (max-width: 1023px) {
    .tg-news-btn {
        top: 312px;
        left: calc(50% + 244px);
        height: 45px;
    }
    .content-nav-mob-btn {
        top: 156px;
        left: calc(50% + 334px);
        width: 45px;
        height: 45px;
    }
    .tg-news-btn.helper-top {
        top: 312px;
    }
}

@media only screen and (max-width: 767px) {
    .tg-news-btn,
    .content-nav-mob-btn {
        display: none;
    }
}

/* footer telegram news btn */

.footer-tg-news {
    margin-bottom: 40px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    min-width: 212px;
    width: fit-content;
    height: 50px;
    background: #2A99D1;
    border-radius: 3px;
    font-family: 'Gilroy';
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.footer-tg-news:hover {
    background: #29A9EA;
}

.mobilemenu .footer-tg-news {
    margin: 0 0 80px 50px;
}

@media only screen and (max-width: 1919px) {
    .footer-tg-news {
        margin-bottom: 30px;
        min-width: 280px;
    }
}

@media only screen and (max-width: 1023px) {
    .footer-tg-news {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-tg-news {
        margin-bottom: 60px;
    }
    .mobilemenu .footer-tg-news {
        margin: 0 0 60px 30px;
        width: calc(100% - 60px);
    }
}

@media only screen and (max-width: 479px) {
    .footer-tg-news {
        width: 100%;
    }
    .mobilemenu .footer-tg-news {
        margin: 0 0 50px 20px;
        width: calc(100% - 40px);
    }
}

/* about us articles */

.sharing {
    position: fixed;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: rgba(45, 45, 45, .7);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    overflow: scroll;
}

.sharing.active {
    display: flex;
}

@media only screen and (max-height: 800px) {
    .sharing {
        align-items: flex-start;
    }
}

.sharing * {
    box-sizing: border-box;
}

.sharing svg {
    flex-shrink: 0;
}

.sharing svg,
.sharing svg path {
    transition: .3s;
}

.sharing-box {
    position: relative;
    margin: 50px 0;
    padding: 60px;
    border-radius: 20px;
    background: #FFF;
    width: 780px;
}

.sharing-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sharing-head span {
    color: #111;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.48px;
}

.sharing-close {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBECF0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    cursor: pointer;
}

.sharing-close:hover svg path {
    stroke: #111111;
}

.sharing-text {
    margin-top: 20px;
    color: #595959;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.32px;
}

.sharing-items {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.sharing-item {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    text-decoration: none;
    cursor: pointer !important;
}

.sharing-item.telegram .sharing-item-icon {
    background: #DFF5FF;
}

.sharing-item.viber .sharing-item-icon {
    background: #ECE7FD;
}

.sharing-item.whatsapp .sharing-item-icon {
    background: #E2F5E5;
}

.sharing-item.instagram .sharing-item-icon {
    background: #F5E2F0;
}

.sharing-item.linkedin .sharing-item-icon {
    background: #DBEDFF;
}

.sharing-item.reddit .sharing-item-icon {
    background: #FFECE5;
}

.sharing-item.twitter .sharing-item-icon {
    background: #EBECF0;
}

.sharing-item.snapchat .sharing-item-icon {
    background: #FFFD80;
}

.sharing-item.copylink .sharing-item-icon {
    background: #EBECF0;
}

.sharing-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    background: #E0EDFD;
    width: 100px;
    height: 100px;
}

.sharing-item span {
    color: #111;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
}

.sharing-item:hover .sharing-item-icon svg {
    width: 50px;
    height: 50px;
}

.sharing-item.copylink:hover .sharing-item-icon svg path {
    fill: #111111;
}

.sharing-tooltip {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    background: #1F2C35;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 180px;
    height: 40px;
}

.sharing-tooltip.active {
    display: flex;
}

.sharing-tooltip span {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
}

@media only screen and (max-width: 1023px) {
    .sharing-box {
        padding: 60px 40px;
        width: 688px;
    }
    .sharing-items {
        gap: 40px 27px;
    }
}

@media only screen and (max-width: 767px) {
    .sharing-box {
        margin: 40px 0;
        padding: 40px 20px;
        width: 440px;
    }
    .sharing-close {
        width: 50px;
        height: 50px;
    }
    .sharing-text {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.28px;
    }
    .sharing-items {
        margin-top: 30px;
        gap: 30px 26px;
    }
    .sharing-item {
        width: 80px;
        row-gap: 10px;
    }
    .sharing-item-icon {
        width: 80px;
        height: 80px;
    }
    .sharing-item-icon svg {
        width: 30px;
        height: auto;
    }
    .sharing-item:hover .sharing-item-icon svg {
        width: 40px;
        height: 40px;
    }
    .sharing-item span {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.14px;
    }
    .sharing-tooltip {
        bottom: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .sharing-box {
        margin: 30px 0;
        padding: 30px 15px;
        width: calc(100% - 40px);
        border-radius: 10px;
    }
    .sharing-head span {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0.4px;
    }
    .sharing-items {
        margin-top: 20px;
        gap: 20px;
        justify-content: space-around;
    }
    .sharing-item {
        width: 70px;
    }
    .sharing-item-icon {
        width: 60px;
        height: 60px;
    }
    .sharing-item-icon svg {
        width: 24px;
    }
    .sharing-item:hover .sharing-item-icon svg {
        width: 30px;
        height: 30px;
    }
    .sharing-item span {
        font-size: 12px;
        letter-spacing: 0.12px;
    }
    .sharing-tooltip {
        left: 0;
        transform: none;
    }
}