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: 'Google Sans';
    line-height: normal;
    font-weight: normal;
    background: #FAFAFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.overflow {
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

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

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.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;
    padding-left: 438px;
    width: 1720px;
}

@media only screen and (max-width: 1919px) {
    .container {
        padding-left: 0;
        width: 1180px;
    }
}

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

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

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

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

svg {
    flex-shrink: 0;
    transition: .3s;
}

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

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

.page-body {
    padding-top: 120px;
}

@media only screen and (max-width: 1919px) {
    .page-body {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .page-body {
        padding-top: 80px;
    }
}

/* buttons */

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    row-gap: 5px;
    width: 240px;
    height: 70px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: .3s;
    cursor: pointer;
    user-select: none;
}

.btn--purple {
    background: #60298A;
    color: #FFFFFF;
}

.btn--purple:hover {
    background: #8639BF;
}

.btn--white {
    background: #FFFFFF;
    color: #191919;
}

.btn--white:hover {
    background: #8639BF;
    color: #FFFFFF;
}

.btn--transparent {
    border: 2px solid #191919;
    color: #191919;
}

.btn--transparent:hover {
    background: #191919;
    color: #FFFFFF;
}

.btn--transparent.black {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn--transparent.black:hover {
    background: #FFFFFF;
    color: #191919;
}

.btn__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 30px;
}

@media only screen and (max-width: 1023px) {
    .btn__wrapper {
        column-gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .btn__wrapper {
        flex-direction: column;
        row-gap: 30px;
        width: 420px;
    }
    .btn__wrapper .btn {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .btn__wrapper {
        width: 100%;
        row-gap: 20px;
    }
    .btn {
        height: 50px;
        font-size: 14px;
        line-height: 18px;
    }
}

/* header */

header {
    background: #FAFAFC;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
    z-index: 1007;
}

@media only screen and (max-width: 1919px) {
    header {
        height: 90px;
    }
}

@media only screen and (max-width: 767px) {
    header {
        height: 80px;
    }
}

.header__container {
    position: relative;
    width: calc(100vw - 200px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header__container::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 200px);
    height: 2px;
    background: #191919;
}

@media only screen and (max-width: 1919px) {
    .header__container {
        width: calc(100vw - 60px);
    }
    .header__container::before {
        width: calc(100vw - 60px);
    }
}

@media only screen and (max-width: 1279px) {
    .header__container {
        width: calc(100vw - 100px);
        justify-content: space-between;
    }
    .header__container::before {
        width: calc(100vw - 100px);
    }
}

@media only screen and (max-width: 1023px) {
    .header__container {
        width: calc(100vw - 60px);
    }
    .header__container::before {
        width: calc(100vw - 60px);
    }
}

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

.header__box {
    padding-left: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header__line {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 60px;
    height: 100%;
}

.logo {
    display: flex;
    flex-shrink: 0;
    width: 150px;
}

.logo img {
    width: 100%;
}

@media only screen and (max-width: 1919px) {
    .logo {
        width: 100px;
    }
    .header__box {
        padding-left: 12px;
    }
    .header__line {
        column-gap: 20px;
    }
}

@media only screen and (max-width: 1279px) {
    .logo {
        width: 150px;
    }
    .header__box {
        padding-left: 0;
        width: auto;
    }
    .header__line {
        column-gap: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .header__line {
        column-gap: 30px;
    }
}

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

@media only screen and (max-width: 479px) {
    .header__line {
        column-gap: 20px;
    }
}

.social {
    display: flex;
    align-items: center;
    column-gap: 20px;
    height: 100%;
}

.social__item {
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #191919;
    border-radius: 100%;
    cursor: pointer;
}

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

@media only screen and (max-width: 1919px) {
    .social {
        column-gap: 10px;
    }
}

@media only screen and (max-width: 1279px) {
    .social {
        column-gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .social {
        margin-right: -10px;
    }
}

@media only screen and (max-width: 479px) {
    .social {
        margin-right: 0;
    }
    .social__item--skype,
    .social__item--email {
        display: none;
    }
}

/* social mobile menu */

.social-elements {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.social-elements > a {
    position: relative;
    display: flex;
}

.social-elements > a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.social-elements > a.twitter:hover svg path {
    fill: #1DA0F2;
}

.social-elements > a.facebook:hover svg path {
    fill: #1474EC;
}

.social-elements > a.linkedin:hover svg path {
    fill: #0D77B5;
}

.social-elements > a.youtube:hover svg path {
    fill: #FE1012;
}

.social-elements > a.quora:hover svg path {
    fill: #A82300;
}

.social-elements > a.medium:hover svg path {
    fill: #8639BF;
}

@media only screen and (max-width: 1023px) {
    .social-elements {
        column-gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .social-elements {
        position: absolute;
        right: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .social-elements {
        margin-top: 108px;
        right: auto;
        column-gap: 24px;
    }
}

.header__container .btn {
    width: 160px;
    height: 60px;
    font-size: 14px;
    line-height: 18px;
}

.header__container .btn svg {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .header__container .btn {
        width: 130px;
        height: 50px;
        font-size: 12px;
        line-height: 16px;
    }
    .header__container .btn span:nth-child(2) {
        display: none;
    }
}

@media only screen and (max-width: 1279px) {
    .header__container .btn {
        width: 160px;
        font-size: 14px;
        line-height: 18px;
    }
    .header__container .btn span:nth-child(2) {
        display: unset;
    }
}

@media only screen and (max-width: 767px) {
    .header__container .btn.btn--purple {
        padding: 0;
        width: 40px;
        height: 40px;
        min-width: unset;
        border-radius: 100%;
    }
    .header__container .btn span:nth-child(n) {
        display: none;
    }
    .header__container .btn svg {
        display: flex;
    }
}

.lng {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 15px;
    cursor: pointer;
    height: 100%;
}

.lng-current {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #191919;
    transition: .3s;
}

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

.lng:hover .lng-current {
    color: #7231A3;
}

.lng:hover svg {
    transform: scale(-1);
}

.lng:hover svg path {
    fill: #60298A;
}

.lng:hover .lng-list {
    opacity: 1;
    visibility: visible;
}

.lng-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 64px;
    border: 2px solid #191919;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.lng-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    background: #F2F2F2;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #191919;
    transition: .3s;
}

.lng-list a:hover {
    background: #FFFFFF;
    color: #7231A3;
}

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

.tooltip {
    padding: 18px 38px 20px;
    position: absolute;
    left: 50%;
    top: calc(100% + 16px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
    width: 281px;
    background: #181A1C;
    outline: #F2F2F2 solid 2px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
    cursor: default;
}

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

.tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(225deg);
    width: 10px;
    height: 10px;
    background: #181A1C;
    box-shadow: 2px 2px 0 #F2F2F2;
}

.tooltip--copied {
    padding: 18px;
}

.tooltip--copied__head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 12px;
}

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

.tooltip--copied span {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #F3F2F5;
}

.tooltip > span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FAB81E;
}

.tooltip__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
}

.tooltip .btn {
    width: 100%;
    height: 38px;
    border: 2px solid #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #F3F2F5;
    transition: background .3s, color .3s;
}

.tooltip .btn:hover {
    background: #FFFFFF;
    color: #333333;
}

.tooltip__warning {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    background: #000000;
    outline: #F2F2F2 solid 2px;
    border-top: none;
    width: calc(100%);
    min-height: 130px;
    cursor: default;
}

.tooltip__warning:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    height: 4px;
    width: 100%;
    background: #000000;
}

.tooltip__warning-head {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: #FAB81E;
}

.tooltip__warning-head svg,
.tooltip__warning-head svg path {
    transition: none;
}

.tooltip__warning-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

/* menu */

.menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.menu__item {
    height: 100%;
    flex-shrink: 0;
    transition: .3s;
}

.menu__item:hover .menu__link svg path {
    fill: #60298A;
}

.menu__link {
    position: relative;
    padding: 0 20px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    height: 100%;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #191919;
    transition: .3s;
}

.menu__item:hover .menu__link,
.menu__item.active .menu__link {
    color: #7231A3;
}

.menu__item.active .menu__link {
    cursor: default;
}
.menu__item.active_menu .menu__link {
    color: #7231A3;
}

.menu__item a[href="javascript:void(0)"] {
    cursor: default;
}

.menu__item.menu__item-conf .menu__link {
    column-gap: 8px;
}

.submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    border: 2px solid #191919;
    background: #F2F2F2;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.submenu__link {
    padding: 15px 18px;
    background: #F2F2F2;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #191919;
    transition: .3s;
}

.submenu__link:hover {
    color: #7231A3;
}

.submenu__link.active {
    color: #7231A3;
    cursor: default;
}

.submenu__link.active_menu {
    color: #7231A3;
    cursor: pointer;
}

.menu-btn {
    display: none;
}

@media only screen and (min-width: 1280px) {
    .menu__item:hover {
        background: #F2F2F2;
    }
    .menu__item:not(:nth-child(5)):hover .menu__link svg {
        transform: scale(-1);
    }
    .menu__item:hover .submenu {
        opacity: 1;
        visibility: visible;
    }
    .submenu__link:hover {
        background: #FFFFFF;
    }
}

@media only screen and (max-width: 1919px) {
    .menu__link {
        padding: 0 13px;
        font-size: 16px;
        line-height: 16px;
    }
    .menu__item:nth-child(5) .menu__link svg {
        display: none;
    }
}

@media only screen and (max-width: 1279px) {
    .menu {
        display: none;
    }
    .menu__item:nth-child(5) .menu__link svg {
        display: block;
    }
    .menu-btn {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        row-gap: 8px;
        width: 40px;
        cursor: pointer;
    }
    .menu-btn span {
        width: 100%;
        height: 2px;
        background: #191919;
        transition: .3s;
    }
    .menu-btn:hover span {
        background: #7231A3;
    }
    .menu-btn:hover span:nth-child(2) {
        width: 50%;
    }
    .menu-btn div {
        margin-top: 2px;
        width: 100%;
        font-weight: 700;
        font-size: 10px;
        line-height: 10px;
        text-align: center;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: #191919;
        transition: .3s;
    }
    .menu-btn:hover div {
        color: #7231A3;
    }
    .menu-btn:after {
        position: absolute;
        content: '';
        width: 50px;
        height: 50px;
        transform: translate(-50%,-50%);
        left: 50%;
        top: 50%;
    }
}

@media only screen and (max-width: 1023px) {
    .menu-btn {
        display: flex;
    }
}

/* mobile menu */

.mobilemenu {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .mobilemenu {
        padding: 78px 100px 120px;
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(-100%);
        width: 100%;
        height: 100vh;
        background: #FFF;
        visibility: hidden;
        overflow-y: scroll;
        transition: .3s;
        z-index: 1000;
    }
    .mobilemenu.active {
        transform: translateX(0);
        visibility: visible;
    }
    .mobilemenu__head .btn {
        display: none;
    }
    .menuclose {
        position: absolute;
        top: 0;
        right: 71px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 92px;
        height: 92px;
        cursor: pointer;
    }
    .menuclose:hover svg rect {
        fill: #7231A3;
    }
    .mobilemenu__wrapper .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .mobilemenu .menu__item {
        width: 100%;
        border-bottom: 2px solid #191919;
    }
    .mobilemenu .menu__item:last-child {
        border-bottom: none;
    }
    .mobilemenu .menu__item .menu__link {
        padding: 12px 100px;
        justify-content: space-between;
        width: 100%;
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }
    .mobilemenu .menu__item:nth-child(5) .menu__link {
        justify-content: flex-start;
        column-gap: 12px;
    }
    .mobilemenu .menu__item .menu__link svg path {
        fill: #191919;
    }
    .mobilemenu .menu__item:hover .menu__link svg path,
    .mobilemenu .menu__item.active .menu__link svg path {
        fill: #7231A3;
    }
    .mobilemenu .menu__item.opened .menu__link svg {
        transform: scale(-1);
    }
    .mobilemenu .submenu {
        position: unset;
        padding: 0 100px;
        max-height: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px 42px;
        background: #FAFAFA;
        border: none;
        border-top: 0 solid  #191919;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
    }
    .mobilemenu .menu__item.opened .submenu {
        padding: 30px 100px;
        max-height: 250px;
        border-top: 2px solid  #191919;
        opacity: 1;
        visibility: visible;
    }
    .mobilemenu .submenu__link {
        padding: 0;
        width: 180px;
        background: unset;
        font-size: 16px;
        line-height: 24px;
    }
    .mobilemenu .submenu .menu__link {
        display: none;
    }
    .mobilemenu__bottom {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobilemenu__bottom .btn {
        height: 50px;
        width: 190px;
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (max-width: 1023px) {
    .menu__link,
    .mobilemenu__body .social__item,
    .mobilemenu__lng-item,
    .mobilemenu__body .social__item a {
        cursor: default;
    }
    .mobilemenu .menu__item .menu__link {
        padding: 12px 30px;
    }
    .menuclose {
        right: 1px;
    }
    .mobilemenu .submenu {
        padding: 0 30px;
        gap: 20px 29px;
    }
    .mobilemenu .menu__item.opened .submenu {
        padding: 30px;
    }
    .mobilemenu .submenu__link {
        width: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .mobilemenu {
        padding: 92px 30px 120px;
    }
    .menuclose {
        right: 6px;
        width: 82px;
        height: 82px;
    }
    .mobilemenu .menu__item .menu__link {
        padding: 12px 10px;
        font-size: 20px;
        line-height: 30px;
    }
    .mobilemenu .submenu {
        padding: 0 10px;
        gap: 20px 29px;
    }
    .mobilemenu .menu__item.opened .submenu {
        padding: 30px 10px;
        row-gap: 20px;
        max-height: 350px;
    }
    .mobilemenu .submenu__link {
        width: 100%;
    }
    .mobilemenu__bottom {
        margin-top: 0;
    }
    .mobilemenu__bottom .btn {
        position: absolute;
        top: 24px;
        left: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .mobilemenu {
        padding: 92px 20px 240px;
    }
    .mobilemenu .menu__item .menu__link {
        font-size: 18px;
        line-height: 28px;
    }
    .mobilemenu__bottom .btn {
        left: 20px;
    }
    .menuclose {
        top: 4px;
        right: 0;
        width: 74px;
        height: 74px;
    }
}

/* socialbox */

.socialbox {
    padding-top: 38px;
}

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

.socialbox .social__item {
    display: flex;
    column-gap: 10px;
    border: none;
    width: unset;
    height: unset;
}

.socialbox .social__item > span {
    font-size: 16px;
    line-height: 20px;
    color: #191919;
}

.socialbox .social__item:hover > span {
    color: #7231A3;
}

.socialbox .tooltip {
    top: auto;
    bottom: calc(100% + 130px + 16px);
}

.socialbox .tooltip:before {
    top: calc(100% + 130px - 5px);
    transform: translateX(-50%) rotate(45deg);
    background: #000000;
    z-index: 1;
}

.socialbox .tooltip::after {
    top: calc(100% + 130px);
}

.socialbox .tooltip.tooltip--copied {
    bottom: calc(100% + 16px);
}

.socialbox .tooltip--copied::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 100%;
    left: 0;
    height: 150px;
    width: 100%;
}

.socialbox .tooltip.tooltip--copied:before {
    top: calc(100% - 5px);
}

@media only screen and (max-width: 767px) {
    .socialbox__wrapper {
        flex-direction: column;
        row-gap: 30px;
        align-items: flex-start;
    }
    .socialbox .tooltip {
        left: 0;
        transform: unset;
    }
    .socialbox .tooltip::before {
        left: 20%;
    }
}

@media only screen and (max-width: 479px) {
    .socialbox {
        padding-top: 28px;
    }
    .socialbox__wrapper {
        row-gap: 20px;
    }
}

/* langbar without drop - mobmenu + footer  */

.lang-bar {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.lang-bar a {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #666666;
}

.lang-bar a:hover {
    color: #7231A3;
}

.lang-bar a.active {
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: #191919;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .lang-bar {
        margin-top: -24px;
        position: absolute;
        right: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .lang-bar {
        margin-top: 233px;
        right: auto;
    }
}

/* popup */

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

.popup.active {
    display: flex;
}

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

.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: #FFFFFF;
}

.popup__wrapper {
    padding: 70px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 800px;
    min-height: 100%;
}

.popup__wrapper::-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 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 58px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.popup__subtitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

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

.popup__text span {
    color: #BF2237;
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
}

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

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

.popup__label-title {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    column-gap: 5px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.popup__label-title svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.popup__label-error-title {
    margin-bottom: 10px;
    display: none;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #D92B43;
}

.popup__label-error-title i {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 17px;
    line-height: 17px;
    color: #D92B43;
    font-style: normal;
}

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

label.error .popup__label-error-title {
    display: flex;
    column-gap: 10px;
}

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

label.error .popup__label-error-title svg:nth-child(2) {
    margin-top: -6px;
}

label.error input,
label.error textarea {
    border: 1px solid #BF2237 !important;
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px #0F0F0F inset !important;
}

input:-webkit-autofill{
    -webkit-text-fill-color: #FFFFFF !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 16px 19px;
    font-family: 'Google Sans';
    width: 100%;
    background: #0F0F0F;
    border: 1px solid #6A6A6A;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: border .3s, box-shadow .3s;
}

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 0 4px rgba(204, 204, 204, 0.3);
    background: transparent;
    color: #FFFFFF;
}

.popup__label-input-wrapper.active input[type="text"]:not(:focus),
.popup__label-input-wrapper.active input[type="email"]:not(:focus),
.popup__label-input-wrapper.active input[type="tel"]:not(:focus),
.popup__label-input-wrapper.active textarea:not(:focus) {
    border: 1px solid #CCCCCC;
    background: transparent;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    font-family: 'Google Sans';
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #858793;
}

.popup__bottom-fields {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.popup__accept {
    position: relative;
    width: 100%;
}

.popup__accept label {
    display: flex;
    align-items: center;
    column-gap: 15px;
    width: 100%;
}

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

.popup__accept label i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #6A6A6A;
    background: transparent;
    transition: .3s;
    cursor: pointer;
}

.popup__accept label svg {
    opacity: 0;
}

.popup__accept.error label i,
.contacts__form .popup__accept.error label i {
    border-color: #BF2237;
    opacity: 1;
}

.popup__accept label:hover i {
    border-color: #8FC14F;
}

.popup__accept label input:checked + i {
    background: #8FC14F;
    border-color: #8FC14F;
    opacity: 1;
}

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

.popup__accept label span {
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.popup__accept label a {
    color: inherit;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    transition: .3s;
}

.popup__accept label a:hover {
    color: #8FC14F;
    text-decoration-color: transparent;
}

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

.popup__accept.error .popup__accept-error {
    display: flex;
    align-items: center;
    column-gap: 10px;
    visibility: visible;
}

.popup__captcha {
    position: relative;
    width: 304px;
    height: 78px;
    flex-shrink: 0;
}

.popup__captcha-error {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
    column-gap: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #D92B43;
    visibility: hidden;
}

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

.popup__submit {
    margin-top: 50px;
    position: relative;
    display: inline-block;
}

.popup__submit .btn {
    width: 304px;
}

.popup__block {
    overflow: scroll;
    padding: 20px 0;
}

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

.popup__block {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media only screen and (max-width: 1919px) {
    .popup__wrapper {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 1023px) {
    .popup__wrapper {
        width: 668px;
    }
    .popup__close {
        width: 60px;
        height: 60px;
        cursor: default;
    }
}

@media only screen and (max-width: 767px) {
    .popup__wrapper {
        padding: 40px 0;
        width: 420px;
    }
    .popup__title {
        margin-bottom: 30px;
        font-size: 28px;
        line-height: 42px;
    }
    .popup__block {
        padding-bottom: 100px;
    }
    .popup__bottom-fields {
        row-gap: 45px;
    }
    .popup__accept-error {
        top: calc(100% + 5px);
    }
}

@media only screen and (max-width: 479px) {
    .popup__wrapper {
        padding: 30px 0;
        width: calc(100% - 40px);
    }
    .popup__close {
        width: 50px;
        height: 50px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        padding: 12px 14px;
        font-size: 14px;
        line-height: 24px;
    }
    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="tel"]::placeholder,
    textarea::placeholder {
        font-size: 14px;
        line-height: 24px;
    }
    .popup__accept.error .popup__accept-error {
        align-items: flex-start;
    }
    .popup__captcha {
        width: 100%;
        height: 72px;
    }
    .recaptcha_place > div {
        transform-origin: left;
        transform: scale(0.92);
    }
    .popup__accept-error,
    .popup__captcha-error {
        top: calc(100% + 5px);
        font-size: 12px;
        line-height: 14px;
    }
    .popup__accept label {
        align-items: flex-start;
    }
    .popup__submit {
        margin-top: 40px;
        width: 100%;
    }
    .popup__submit .btn {
        width: 100%;
    }
    .popup__bottom-fields {
        row-gap: 40px;
    }
}

/* preloader */

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

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

.loader {
    width: 160px;
    height: 160px;
}

.loader svg {
    animation: rotation 7s linear infinite;
}

@media only screen and (max-width: 1023px) {
    .loader {
        width: 100px;
        height: 100px;
    }
    .loader svg {
        width: 100px;
        height: 100px;
    }
}

/* thanks massage popup */

#thanksmsg {
    height: 100%;
}

.thks-msg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.thks-msg__title {
    margin-top: 34px;
    font-size: 36px;
    line-height: 58px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
}

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

.thks-msg .btn {
    margin-top: 50px;
    width: 105px;
}

.thks-msg .btn.reload {
    padding: 0 30px;
    width: fit-content;
    min-width: 226px;
}

@media only screen and (max-width: 767px) {
    .thks-msg__title {
        font-size: 28px;
        line-height: 42px;
    }
    .thks-msg__text {
        margin-top: 20px;
        font-size: 18px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 479px) {
    .thks-msg__title {
        font-size: 24px;
        line-height: 36px;
    }
    .thks-msg .btn {
        margin-top: 40px;
    }
}

/* static form */

.static-form__wrapper {
    margin-left: auto;
    width: 845px;
}

.static-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.static-form .popup__fields {
    margin-bottom: 20px;
    row-gap: 15px;
}

.static-form input:-webkit-autofill,
.static-form input:-webkit-autofill:hover,
.static-form input:-webkit-autofill:focus,
.static-form input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px #ffffff inset !important;
}

.static-form input:-webkit-autofill {
    -webkit-text-fill-color: #191919 !important;
}

.static-form .popup__subtitle,
.static-form .popup__text,
.static-form .popup__label-title,
.static-form .popup__accept label span,
.static-form__wrapper .thks-msg__title,
.static-form__wrapper .thks-msg__text {
    color: #191919;
}

.static-form input[type="text"],
.static-form input[type="email"],
.static-form input[type="tel"],
.static-form textarea {
    padding: 11px 19px;
    background: #FFFFFF;
    border: 1px solid #999999;
    color: #191919;
}

.static-form textarea {
    min-height: 90px;
}

.static-form input[type="text"]:focus,
.static-form input[type="email"]:focus,
.static-form input[type="tel"]:focus,
.static-form textarea:focus {
    color: #191919;
    background: #FFFFFF !important;
    border-color: #191919 !important;
}

.static-form .popup__label-input-wrapper.active input[type="text"]:not(:focus),
.static-form .popup__label-input-wrapper.active input[type="email"]:not(:focus),
.static-form .popup__label-input-wrapper.active input[type="tel"]:not(:focus),
.static-form .popup__label-input-wrapper.active textarea:not(:focus) {
    border: 1px solid #999999;
    background: #FFFFFF !important;
    color: #191919;
}

.static-form .popup__accept label:hover i {
    border-color: #7231A3;
}

.static-form .popup__accept label input:checked + i {
    background: #7231A3;
    border-color: #7231A3;
}

.static-form .popup__accept label a:hover {
    color: #7231A3;
}

.static-form__wrapper #preloader {
    padding: 80px 0 30px;
    margin-left: -437px;
}

.contacts-error .static-form__wrapper #preloader {
    margin-left: -25px;
}

.static-form .iti__country-list {
    width: 845px;
}

.static-form .iti--separate-dial-code .iti__selected-flag {
    background: #F3F3F5;
}

.static-form .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: #E9E9EB;
}

.static-form .iti__arrow {
    border-top: 5px solid #191919;
}

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

.static-form .iti--separate-dial-code .iti__selected-dial-code {
    color: #191919;
}

.js-textarea {
    position: relative;
}

@media only screen and (max-width: 1919px) {
    .static-form__wrapper #preloader {
        padding: 90px 0 20px;
        margin-left: -169px;
    }
}

@media only screen and (max-width: 1279px) {
    .static-form__wrapper {
        margin-left: unset;
    }
    .static-form__wrapper #preloader {
        padding: 85px 0 25px;
        margin-left: 40px;
    }
    .contacts-error .static-form__wrapper #preloader {
        padding: 55px 0;
        margin-left: 40px;
    }
}

@media only screen and (max-width: 1023px) {
    .static-form__wrapper {
        width: 668px;
    }
    .static-form__wrapper #preloader {
        padding: 105px 0 65px;
        margin-left: 0;
    }
    .contacts-error .static-form__wrapper #preloader {
        padding: 85px 0;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .static-form__wrapper {
        width: 420px;
    }
    .static-form__wrapper #preloader {
        padding: 76px 0 46px;
    }
    .contacts-error .static-form__wrapper #preloader {
        padding: 61px 0;
    }
    .static-form .popup__fields {
        margin-bottom: 30px;
        row-gap: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .static-form__wrapper {
        width: 100%;
    }
    .static-form__wrapper #preloader {
        padding: 92px 0 82px;
    }
    .contacts-error .static-form__wrapper #preloader {
        padding: 87px 0;
    }
    .static-form input[type="text"],
    .static-form input[type="email"],
    .static-form input[type="tel"],
    .static-form textarea {
        padding: 12px 14px;
    }
}

/* popup presentation download-link */

.download-link {
    display: flex;
    flex-direction: column;
}

.download-link > span {
    margin-top: 34px;
    font-size: 36px;
    line-height: 58px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.download-link__box {
    margin-top: 30px;
    display: flex;
    height: 60px;
}

.download-link__name {
    padding: 0 19px;
    display: flex;
    align-items: center;
    width: 550px;
    height: 100%;
    border: 1px solid #6A6A6A;
    border-right: none;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.download-link__box > .btn {
    position: relative;
    height: 60px;
    width: 250px;
}

@media only screen and (max-width: 1023px) {
    .download-link__name {
        width: 418px;
    }
}

@media only screen and (max-width: 767px) {
    .download-link > span {
        font-size: 28px;
        line-height: 42px;
    }
    .download-link__box {
        margin-top: 50px;
    }
    .download-link__name {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .download-link > span {
        font-size: 20px;
        line-height: 32px;
    }
    .download-link__box {
        margin-top: 40px;
    }
    .download-link__box > .btn {
        height: 50px;
        width: 100%;
    }
}

/* first screen */

.fs {
    margin: 0 auto;
    padding: 130px 0;
    width: 1720px;
    height: calc(100vh - 120px);
    min-height: 826px;
    display: flex;
    align-items: center;
}

:not(.indexpage) > .fs {
    padding-top: 0;
    height: calc(100vh - 120px - 131px);
    min-height: 578px;
}

.fs-box {
    width: 100%;
}

.fs-top {
    position: relative;
    padding: 0 100px 80px 0;
    display: flex;
    justify-content: space-between;
}

.fs-top img {
    width: 220px;
    height: 220px;
}

.fs-title {
    max-width: 1280px;
    font-weight: 400;
    font-size: 106px;
    line-height: 150px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.fs-subtitle {
    margin-bottom: 80px;
    max-width: 845px;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.fs-top svg {
    cursor: pointer;
    position: absolute;
    right: 100px;
    top: 0;
    animation: rotation 10s linear infinite;
}

.fs-top img {
    position: absolute;
    right: 100px;
    top: 0;
}

.fs-bottom {
    padding-left: 438px;
}

@media only screen and (min-width: 768px) {
    .fs-bottom .btn__wrapper .btn--purple {
        width: 280px;
    }
}

@media only screen and (min-width: 1920px) and (min-height: 1200px) {
    .fs {
        padding: 170px 0;
    }
}

@media only screen and (min-width: 2304px) and (min-height: 1440px) {
    .fs {
        padding: 200px 0;
    }
    .fs-title {
        padding-right: 100px;
        font-size: 150px;
        line-height: 180px;
    }
    .fs-subtitle {
        font-size: 32px;
        line-height: 44px;
    }
    .fs-top svg {
        width: 280px;
        height: 280px;
    }
}

@media only screen and (max-width: 1535px) {
    .fs {
        padding: 60px 0 130px;
    }
}

@media only screen and (max-width: 1919px) {
    .fs {
        width: 1180px;
        height: calc(100vh - 90px);
        min-height: 612px;
    }
    :not(.indexpage) > .fs {
        height: calc(100vh - 90px - 81px);
        min-height: 450px;
    }
    .fs-top {
        padding: 0 0 40px 0;
    }
    .fs-top img,
    .fs-top svg {
        right: 0;
        width: 160px;
        height: 160px;
    }
    .fs-title {
        font-size: 70px;
        line-height: 100px;
        max-width: 800px;
    }
    .indexpage .fs-title {
        font-size: 80px;
        line-height: 110px;
    }
    .fs-subtitle {
        margin-bottom: 50px;
        font-size: 18px;
        line-height: 30px;
        max-width: 575px;
    }
    .indexpage .fs-subtitle {
        margin-bottom: 60px;
    }
    .fs-bottom {
        padding-left: 303px;
    }
}

@media only screen and (max-width: 1279px) {
    .fs {
        padding-bottom: 120px;
        width: calc(100% - 100px);
        min-height: 562px;
    }
    :not(.indexpage) > .fs {
        min-height: 440px;
    }
    .fs-title,
    .indexpage .fs-title {
        font-size: 60px;
        line-height: 90px;
        max-width: 700px;
    }
    .fs-subtitle {
        margin-bottom: 60px;
        max-width: 500px;
    }
    .fs-bottom {
        padding-left: 239px;
    }
}

@media only screen and (max-width: 1023px) {
    .fs {
        padding-bottom: 100px;
        height: unset;
        min-height: unset;
    }
    :not(.indexpage) > .fs {
        height: unset;
        min-height: unset;
    }
    .fs-title,
    .indexpage .fs-title {
        font-size: 50px;
        line-height: 80px;
        max-width: 500px;
    }
    .fs-top svg,
    .fs-top img {
        width: 140px;
        height: 140px;
    }
    .fs-bottom {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .fs {
        padding: 50px 0 80px;
        width: 420px;
    }
    .fs-top {
        padding-bottom: 30px;
    }
    .fs-title,
    .indexpage .fs-title {
        font-size: 40px;
        line-height: 60px;
        max-width: 420px;
    }
    .fs-subtitle,
    .indexpage .fs-subtitle {
        margin-bottom: 50px;
    }
    .fs-top svg,
    .fs-top img {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .fs {
        padding: 40px 0 60px;
        width: calc(100% - 40px);
    }
    .fs-top {
        padding-bottom: 20px;
    }
    .fs-title,
    .indexpage .fs-title {
        font-size: 30px;
        line-height: 46px;
        max-width: 280px;
    }
    .fs-subtitle,
    .indexpage .fs-subtitle {
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 28px;
    }
}

/* breadcrumbs */

.breadcrumbs {
    position: relative;
    padding: 40px 0 73px;
    z-index: 1;
}

.breadcrumbs .container {
    padding: 0;
}

.breadcrumbs__container {
    display: inline;
}

.breadcrumbs__container a {
    display: inline-flex;
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    transition: .3s;
}

.breadcrumbs__container a:hover {
    color: #040101;
}

.breadcrumbs__container *:not(:last-child):after {
    content: '';
    display: inline-flex;
    position: relative;
    top: 4px;
    margin: 0 5px 0 10px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgNiA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAuNTMxMTc0IDcuNzczMzZMMS4yMzgyOCA4LjQ4MDQ3TDQuNzczMDMgNC45NDU3Mkw0Ljc3Njk0IDQuOTQ5NjNMNS40ODQwNCA0LjI0MjUyTDUuNDgwMTQgNC4yMzg2MUw1LjQ4MDkyIDQuMjM3ODNMNC43NzM4MiAzLjUzMDcyTDQuNzczMDMgMy41MzE1MUwxLjI0MTQgLTAuMDAwMTIxOTZMMC41MzQyOTYgMC43MDY5ODVMNC4wNjU5MiA0LjIzODYxTDAuNTMxMTc0IDcuNzczMzZaIiBmaWxsPSIjNjY2NjY2Ii8+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    width: 8px;
    height: 15px;
    cursor: default;
    pointer-events: none;
}

.breadcrumbs__container *:last-child {
    pointer-events: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: #191919;
}

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

@media only screen and (max-width: 767px) {
    .breadcrumbs {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .breadcrumbs {
        padding-bottom: 23px;
    }
    .breadcrumbs__container *:not(:last-child):after {
        margin: 0 3px 0 8px;
    }
}

/* page title */

.page-title {
    margin-bottom: 130px;
    font-size: 130px;
    line-height: 160px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.errorpage .page-title {
    padding-top: 130px;
    font-size: 160px;
}

.page-title .container {
    padding: 0;
}

.page-title h1.container {
    font-weight: 400;
}

.page-title .btn {
    margin-top: 80px;
}

@media only screen and (max-width: 1919px) {
    .page-title {
        margin-bottom: 100px;
        font-size: 70px;
        line-height: 100px;
    }
    .errorpage .page-title {
        margin-bottom: 130px;
        padding-top: 60px;
        font-size: 110px;
        line-height: 110px;
    }
    .page-title .btn {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .page-title {
        font-size: 60px;
        line-height: 90px;
    }
    .errorpage .page-title {
        margin-bottom: 120px;
    }
}

@media only screen and (max-width: 1023px) {
    .page-title {
        margin-bottom: 80px;
        font-size: 50px;
        line-height: 80px;
    }
    .errorpage .page-title {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .page-title {
        margin-bottom: 60px;
        font-size: 40px;
        line-height: 60px;
    }
    .errorpage .page-title {
        margin-bottom: 80px;
        padding-top: 50px;
        font-size: 80px;
        line-height: 90px;
    }
    .page-title .btn {
        margin-top: 50px;
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .page-title {
        margin-bottom: 50px;
        font-size: 30px;
        line-height: 46px;
    }
    .errorpage .page-title {
        margin-bottom: 60px;
        font-size: 50px;
        line-height: 60px;
    }
    .page-title .btn {
        margin-top: 40px;
        height: 60px;
    }
}

/* title, subtitle, section on block */

.section {
    position: relative;
    padding: 130px 0;
}

.section.with-border:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 2px;
    background: #191919;
}

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

.title-container .title {
    max-width: 1280px;
}

.title {
    margin-bottom: 40px;
    font-size: 90px;
    line-height: 120px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.title.black {
    color: #FFFFFF;
}

.subtitle {
    max-width: 845px;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.subtitle.black {
    color: #FFFFFF;
}

@media only screen and (max-width: 1919px) {
    .title-container {
        margin-bottom: 60px;
        width: 1180px;
    }
    .title-container .title {
        max-width: 100%;
    }
    .title {
        font-size: 60px;
        line-height: 90px;
    }
    .subtitle {
        font-size: 18px;
        line-height: 30px;
    }
    .section.with-border:before {
        width: calc(100% - 100px);
    }
}

@media only screen and (max-width: 1279px) {
    .title-container {
        width: 924px;
    }
    .section {
        padding: 120px 0;
    }
    .title {
        font-size: 50px;
        line-height: 80px;
    }
    .subtitle {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .title-container {
        width: 668px;
    }
    .section {
        padding: 100px 0;
    }
    .title {
        margin-bottom: 30px;
        font-size: 40px;
        line-height: 66px;
    }
}

@media only screen and (max-width: 767px) {
    .title-container {
        margin-bottom: 50px;
        width: 420px;
    }
    .section {
        padding: 80px 0;
    }
    .title {
        font-size: 36px;
        line-height: 58px;
    }
    .section.with-border:before {
        width: calc(100% - 60px);
    }
}

@media only screen and (max-width: 479px) {
    .title-container {
        width: calc(100% - 40px);
    }
    .section {
        padding: 60px 0;
    }
    .title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 42px;
    }
    .subtitle {
        font-size: 16px;
        line-height: 28px;
    }
    .section.with-border:before {
        width: calc(100% - 40px);
    }
}

/* slider navigation */

.slider {
    z-index: 2;
}

.slider__wrapper {
    padding-bottom: 130px;
    position: relative;
}

.slider-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 140px;
    height: 50px;
    z-index: 3;
}

.slider-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    border: 2px solid #666666;
    border-radius: 100%;
    transition: .3s;
    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;
    z-index: 3;
}

.slider-arrow:hover {
    border-color: #7231A3;
}

.slider-arrow:hover svg path {
    fill: #7231A3;
}

@media only screen and (max-width: 1023px) {
    .slider__wrapper {
        padding-bottom: 110px;
    }
}

/* configurator promo */

.conf-promo {
    background: #191919;
}

/* promo links block */

.promo-links {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
}

.promo-link {
    width: 407px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.promo-link span {
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
}

.promo-links.white .promo-link span {
    color: #191919;
}

.promo-link:hover span {
    color: #8FC14F;
}

.promo-links.white .promo-link:hover span {
    color: #7231A3;
}

.promo-links.white .promo-link svg path {
    fill: #191919;
}

.promo-links.white .promo-link:hover svg path {
    fill: #7231A3;
}

.promo-link:hover svg path {
    fill: #8FC14F;
}

.promo-btn {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: fit-content;
}

.promo-btn span {
    display: flex;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #B3B3B3;
    transition: 1s;
}

.promo-btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
}

.promo-btn:hover span {
    color: #8FC14F;
    transform: translateX(-45px);
}

.promo-btn:hover svg path {
    fill: #8FC14F;
}

.promo-btn svg {
    transition: 1s;
}

.promo-btn:hover svg {
    transform: translateX(230px);
}

@media only screen and (max-width: 1919px) {
    .promo-links {
        margin-top: 60px;
        column-gap: 50px;
    }
    .promo-link {
        width: 360px;
    }
    .promo-link span {
        font-size: 36px;
        line-height: 56px;
    }
    .conf-promo .promo-link span {
        padding-right: 100px;
    }
    .promo-btn {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .promo-links {
        column-gap: 30px;
    }
    .promo-link {
        width: 447px;
    }
}

@media only screen and (max-width: 1023px) {
    .promo-links {
        row-gap: 50px;
    }
    .promo-link {
        width: 319px;
    }
    .promo-link span {
        font-size: 30px;
        line-height: 50px;
    }
    .conf-promo .promo-link span {
        padding-right: unset;
    }
}

@media only screen and (max-width: 767px) {
    .promo-links {
        margin-top: 50px;
        row-gap: 40px;
    }
    .promo-link {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .promo-link span {
        font-size: 24px;
        line-height: 34px;
    }
    .promo-btn {
        margin-top: 50px;
    }
}

/* section promo */

.promo {
    background: #191919;
}

.promo .container {
    padding-left: 0;
}

.promo-top {
    padding: 0 100px 40px 0;
    display: flex;
    justify-content: space-between;
}

.promo-title {
    max-width: 1180px;
    font-size: 90px;
    line-height: 120px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.promo-subtitle {
    max-width: 845px;
    margin-bottom: 80px;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.promo-top svg {
    cursor: pointer;
    animation: rotation 10s linear infinite;
}

.promo-bottom {
    padding-left: 438px;
}

@media only screen and (max-width: 1919px) {
    .promo-top {
        padding: 0 0 40px 0;
    }
    .promo-title {
        max-width: 750px;
        font-size: 60px;
        line-height: 90px;
    }
    .promo-top svg {
        width: 160px;
        height: 160px;
    }
    .promo-subtitle {
        margin-bottom: 60px;
        max-width: 575px;
        font-size: 18px;
        line-height: 30px;
    }
    .promo-bottom {
        padding-left: 303px;
    }
}

@media only screen and (max-width: 1279px) {
    .promo-title {
        font-size: 50px;
        line-height: 80px;
        max-width: 700px;
    }
    .promo-bottom {
        padding-left: 239px;
    }
}

@media only screen and (max-width: 1023px) {
    .promo-title {
        font-size: 40px;
        line-height: 66px;
        max-width: 500px;
    }
    .promo-subtitle {
        max-width: 500px;
    }
    .promo-top {
        padding-bottom: 22px;
    }
    .promo-top svg {
        width: 140px;
        height: 140px;
    }
    .promo-bottom {
        padding-left: 0;
    }
    .promo .btn__wrapper {
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .promo-top {
        padding-bottom: 30px;
    }
    .promo-title {
        font-size: 36px;
        line-height: 58px;
        max-width: unset;
    }
    .promo-subtitle {
        margin-bottom: 50px;
        max-width: unset;
    }
    .promo-top svg {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .promo-top {
        padding-bottom: 20px;
    }
    .promo-title {
        font-size: 28px;
        line-height: 42px;
    }
    .promo-subtitle {
        font-size: 16px;
        line-height: 28px;
    }
}

/* section work-with */

.about:not(.black) + .work-with {
    padding-top: 0;
}

.work-with__items {
    margin-top: 80px;
    display: flex;
    gap: 60px 197px;
    flex-wrap: wrap;
}

.work-with__item {
    width: 240px;
    height: 100px;
}

.work-with__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: .3s;
}

.work-with__item:hover img {
    filter: grayscale(0);
}

.work-with-btn {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    transition: 1s;
}

.work-with-btn span {
    display: flex;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: 1s;
}

.work-with-btn:hover span {
    color: #7231A3;
    transform: translateX(-45px);
}

.work-with-btn:hover svg path {
    fill: #7231A3;
}

.work-with-btn svg {
    transition: 1s;
}

.work-with-btn:hover svg {
    transform: translateX(136px);
}

@media only screen and (max-width: 1919px) {
    .work-with__items {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .work-with__items {
        column-gap: 102px;
    }
}

@media only screen and (max-width: 1023px) {
    .work-with__items {
        column-gap: 64px;
    }
    .work-with__item {
        width: 180px;
        height: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .work-with__items {
        margin-top: 50px;
        column-gap: 60px;
    }
    .work-with__item {
        width: 180px;
        height: 75px;
    }
    .work-with__item img {
        filter: grayscale(0);
    }
    .work-with-btn {
        position: relative;
        margin-top: -10px;
    }
    .work-with-btn:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 30px);
        height: calc(100% + 30px);
    }
}

@media only screen and (max-width: 479px) {
    .work-with__items {
        margin: 50px auto 0;
        width: calc(100% - 24px);
        gap: 50px 40px;
    }
    .work-with__item {
        width: calc((100% - 40px) / 2);
        height: auto;
    }
    .work-with-btn {
        margin: 0 0 0 -12px;
    }
}

/* section testimonials */

.testimonials .title {
    margin-bottom: 80px;
}

.testimonials__item {
    margin-right: 100px;
    display: flex !important;
    justify-content: space-between;
    width: 1183px;
}

.testimonials-user {
    display: flex;
    flex-direction: column;
}

.testimonials-name {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0.02em;
    color: #191919;
}

.testimonials-user span {
    margin-top: 2px;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #808080;
}

.testimonials-rating {
    margin-top: 20px;
}

.testimonials-text {
    padding-top: 5px;
    width: 746px;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.testimonials .slider-nav {
    left: 437px;
}

@media only screen and (max-width: 1919px) {
    .testimonials .title {
        margin-bottom: 60px;
    }
    .testimonials__item {
        width: 1180px;
    }
    .testimonials-text {
        width: 876px;
    }
    .testimonials .slider-nav {
        left: 304px;
    }
}

@media only screen and (max-width: 1279px) {
    .testimonials__item {
        width: 924px;
    }
    .testimonials-text {
        width: 684px;
    }
    .testimonials .slider-nav {
        left: 240px;
    }
}

@media only screen and (max-width: 1023px) {
    .testimonials__item {
        width: 668px;
    }
    .testimonials-name {
        font-size: 18px;
        line-height: 30px;
    }
    .testimonials-text {
        padding-top: 0;
        width: 480px;
        font-size: 18px;
        line-height: 30px;
    }
    .testimonials .slider-nav {
        left: 188px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonials .title {
        margin-bottom: 50px;
    }
    .testimonials__item {
        width: 420px;
        flex-direction: column;
        row-gap: 50px;
    }
    .testimonials-user {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 7px 10px;
        width: 200px;
    }
    .testimonials-name {
        font-size: 18px;
        line-height: 30px;
    }
    .testimonials-rating {
        margin-top: 0;
        display: flex;
    }
    .testimonials-text {
        width: 420px;
    }
    .testimonials .slider-nav {
        left: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .testimonials .title {
        margin-bottom: 20px;
    }
    .testimonials__item {
        width: calc(100vw - 40px);
        row-gap: 40px;
    }
    .testimonials-text {
        width: 280px;
        font-size: 16px;
        line-height: 28px;
    }
    .testimonials .slider-nav {
        left: 0;
        width: 100%;
    }
}

/* section useful-articles */

.useful-articles .title {
    margin-bottom: 80px;
}

.useful-articles .btn {
    margin-top: 80px;
}

.useful-articles .slider__wrapper {
    padding-bottom: 0;
}

.useful-articles .slider-nav {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .useful-articles .title {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 1023px) {
    .useful-articles .slider__wrapper {
        padding-bottom: 130px;
    }
    .useful-articles .slider-nav {
        display: flex;
    }
}

@media only screen and (max-width: 767px) {
    .useful-articles .title {
        margin-bottom: 50px;
    }
    .useful-articles .slider__wrapper {
        padding-bottom: 100px;
    }
    .useful-articles .btn {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .useful-articles .btn {
        width: 100%;
    }
}

/* seo block */

.seo.empty {
    padding: 0;
}

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

.seo__wrapper {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: 700px;
}

.seo__more {
    display: none;
}

.seo__block {
    padding-right: 50px;
    position: relative;
    width: 845px;
}

.seo .nav-content {
    margin-bottom: 40px;
    width: 100%;
}

.seo h1 {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.seo.active .seo__wrapper {
    height: auto!important;
}

.seo.active .btn-seo-more svg {
    transform: scale(-1);
}

.btn-seo-more {
    position: relative;
    display: none;
    align-items: center;
    column-gap: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #737373;
    cursor: pointer;
    transition: .3s;
}

.btn-seo-more > span:nth-child(2),
.seo.active .btn-seo-more > span:nth-child(1) {
    display: none;
}

.seo.active .btn-seo-more > span:nth-child(2) {
    display: block;
}

.btn-seo-more:before {
    content: '';
    position: absolute;
    width: 130%;
    height: 200%;
    left: -15%;
    top: -50%;
}

.btn-seo-more:hover {
    color: #007984;
}

.btn-seo-more:hover svg path {
    fill: #007984;
}

@media only screen and (max-width: 1919px) {
    .seo__wrapper {
        justify-content: center;
        height: 500px;
    }
}

@media only screen and (max-width: 1023px) {
    .seo__block {
        padding-right: 30px;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .seo__container {
        flex-direction: column;
        align-items: unset;
        row-gap: 50px;
    }
    .seo__wrapper {
        height: 600px;
    }
    .seo .nav-content {
        margin-bottom: 30px;
    }
    .seo h1 {
        margin-bottom: 30px;
        font-size: 32px;
        line-height: 52px;
    }
    .seo__more {
        position: relative;
        display: block;
    }
    .seo__more span {
        font-weight: 500;
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0.02em;
        text-decoration-line: underline;
        text-underline-offset: 3px;
        text-transform: uppercase;
        color: #666666;
    }
    .seo__more:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 30px);
        height: calc(100% + 30px);
    }
    .seo__more:hover span {
        color: #7231A3;
    }
    .seo:not(.active) .seo__more span:last-child {
        display: none;
    }
    .seo.active .seo__more span:first-child {
        display: none;
    }
    .seo.active .seo__block {
        padding-right: 0;
    }
}

@media only screen and (max-width: 479px) {
    .seo__container {
        row-gap: 40px;
    }
    .seo__wrapper {
        height: 500px;
    }
    .seo__block {
        padding-right: 25px;
    }
    .seo h1 {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 46px;
    }
}

/* section benefits */

.benefits {
    background: #191919;
}

.benefits__text {
    max-width: 845px;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.benefits__text p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.benefits-items {
    margin-top: 130px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 31px;
}

.benefits-item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 407px;
}

.benefits-value {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #8FC14F;
}

.benefits-item span {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

@media only screen and (max-width: 1919px) {
    .benefits-items {
        justify-content: space-between;
        column-gap: unset;
    }
    .benefits-item {
        width: 272px;
    }
    .benefits__text {
        row-gap: 30px;
    }
    .benefits__text p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1279px) {
    .benefits-items {
        margin-top: 120px;
        column-gap: 30px;
    }
    .benefits-item {
        width: 447px;
    }
    .benefits__text {
        row-gap: 30px;
        max-width: unset;
    }
}

@media only screen and (max-width: 1023px) {
    .benefits-items {
        margin-top: 100px;
    }
    .benefits-item {
        width: 319px;
    }
}

@media only screen and (max-width: 767px) {
    .benefits-items {
        margin-top: 80px;
        row-gap: 50px;
    }
    .benefits-item {
        width: 195px;
    }
    .benefits-value {
        font-size: 50px;
        line-height: 50px;
    }
    .benefits-item span {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .benefits-items {
        margin-top: 60px;
        row-gap: 40px;
    }
    .benefits-item {
        width: 100%;
        row-gap: 10px;
    }
    .benefits__text p {
        font-size: 16px;
        line-height: 28px;
    }
    .benefits-value {
        font-size: 40px;
        line-height: 40px;
    }
    .benefits-item span {
        font-size: 16px;
        line-height: 28px;
    }
}

/* about section */

.about.black {
    background: #191919;
}

.about.purple {
    background: #492862;
}

.about__text {
    max-width: 845px;
    display: flex;
    flex-direction: column;
    row-gap: 34px;
}

.about__text > p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.about__text.semibold > p {
    font-weight: 500;
}

.about.black .about__text > p,
.about.purple .about__text > p {
    color: #FFFFFF;
}

.about__providers {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 60px;
    width: 845px;
}

.about__providers > img {
    width: 120px;
    height: 50px;
    object-fit: cover;
}

.about .btn {
    margin-top: 80px;
}

@media only screen and (max-width: 1919px) {
    .about__text {
        margin: 0 auto;
        max-width: 575px;
        row-gap: 30px;
    }
    .about__text > p {
        font-size: 18px;
        line-height: 30px;
    }
    .about__providers {
        margin: 80px auto 0;
        column-gap: 31px;
        width: 575px;
    }
    .about .btn {
        margin: 60px 0 0 302px;
    }
}

@media only screen and (max-width: 1279px) {
    .about__text {
        max-width: unset;
    }
    .about__providers {
        column-gap: 81px;
        width: 100%;
    }
    .about .btn {
        margin-left: unset;
    }
}

@media only screen and (max-width: 1023px) {
    .about__providers {
        margin-top: 60px;
        column-gap: 62px;
    }
}

@media only screen and (max-width: 767px) {
    .about__providers {
        gap: 40px 30px;
    }
    .about .btn {
        margin-top: 50px;
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .about__text {
        row-gap: 28px;
    }
    .about__text > p {
        font-size: 16px;
        line-height: 28px;
    }
    .about__providers {
        margin-top: 40px;
        justify-content: space-evenly;
    }
}

/* section elements */

.about.black + .elements,
.about.purple + .elements {
    padding-top: 130px;
}

.elements {
    padding-top: 0;
}

.elements__items {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.elements__item {
    display: flex;
    flex-direction: column;
}

.elements__item-head {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #191919;
}

.elements__item-head > img {
    width: 240px;
    height: 100px;
    object-fit: cover;
}

.elements__item-head span {
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    transition: .3s;
}

.elements__item-head span:last-child {
    width: 845px;
}

.elements__item-body {
    padding: 40px 0 0 437px;
}

.elements__item-body p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.elements__item-body ul li {
    padding-left: 30px;
}

.elements__item-body ul li:before {
    left: 0;
}

.show-all {
    margin-top: 80px;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 12px;
    cursor: pointer;
}

.show-all span {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
}

.show-all:hover span {
    color: #7231A3;
}

.show-all:hover svg path {
    fill: #7231A3;
}

.show-all:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}

.elements__items.active + .show-all span:first-child,
.elements__items:not(.active) + .show-all span:nth-child(2) {
    display: none;
}

.elements__items.active + .show-all svg {
    transform: scale(-1);
}

.elements.with-btn .elements__item:not(:nth-child(-n+5)) {
    display: none;
}

.elements__items.active .elements__item:not(:nth-child(-n+5)) {
    display: flex;
}

@media only screen and (max-width: 1919px) {
    .elements__item-body {
        padding-left: 303px;
    }
    .elements__item-head span:last-child {
        width: 877px;
    }
    .elements__item-body p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1279px) {
    .about.black + .elements,
    .about.purple + .elements {
        padding-top: 120px;
    }
    .elements__item-body {
        padding-left: 239px;
    }
    .elements__item-head span:last-child {
        width: 685px;
    }
    .elements__item-head > img {
        width: 120px;
        height: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .about.black + .elements,
    .about.purple + .elements {
        padding-top: 100px;
    }
    .elements__items {
        row-gap: 50px;
    }
    .elements__item-body {
        padding: 30px 0 0 175px;
    }
    .elements__item-head span:last-child {
        width: 493px;
    }
    .show-all {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .about.black + .elements,
    .about.purple + .elements {
        padding-top: 80px;
    }
    .elements__item-body {
        padding-left: 80px;
    }
    .elements__item-head span:last-child {
        width: 340px;
    }
}

@media only screen and (max-width: 479px) {
    .about.black + .elements,
    .about.purple + .elements {
        padding-top: 60px;
    }
    .elements__items {
        row-gap: 40px;
    }
    .elements__item-head:not(.faq .elements__item-head) {
        flex-direction: column;
        align-items: unset;
        row-gap: 10px;
    }
    .elements__item-head span {
        font-size: 24px;
        line-height: 36px;
    }
    .elements__item-head span:last-child {
        width: unset;
    }
    .elements__item-body {
        padding-left: 0;
    }
    .elements__item-body p {
        font-size: 16px;
        line-height: 28px;
    }
    .show-all {
        margin-top: 50px;
    }
}

/* section licenses */

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

.licenses__item {
    display: flex !important;
    flex-direction: column;
    row-gap: 40px;
    width: 407px;
}

.textpage .licenses__item {
    margin-right: 30px;
}

.licenses__item img {
    width: 150px;
    height: 150px;
}

.licenses__item-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.licenses__item-box span {
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    transition: .3s;
}

.licenses__item:hover span {
    color: #7231A3;
}

.licenses__item:hover svg path {
    fill: #7231A3;
}

.licenses__item:hover svg {
    transform: translateX(10px);
}

.licenses .btn__wrapper {
    margin-top: 80px;
}

@media only screen and (min-width: 1280px) {
    .licenses .title {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1919px) {
    .licenses__items {
        gap: 60px 140px;
    }
    .licenses__item {
        row-gap: 30px;
        width: 300px;
    }
    .textpage .licenses__item {
        margin-right: 140px;
    }
    .licenses__item img {
        width: 120px;
        height: 120px;
    }
    .licenses__item-box span {
        font-size: 34px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 1279px) {
    .licenses__items {
        gap: 60px 42px;
    }
    .licenses__item {
        width: 280px;
    }
    .textpage .licenses__item {
        margin-right: 42px;
    }
    .licenses__item-box span {
        word-break: break-word;
    }
}

@media only screen and (max-width: 1023px) {
    .licenses__items {
        gap: 60px 34px;
    }
    .licenses__item {
        width: 200px;
    }
    .textpage .licenses__item {
        margin-right: 34px;
    }
    .licenses__item img {
        width: 100px;
        height: 100px;
    }
    .licenses__item-box span {
        font-size: 28px;
        line-height: 40px;
    }
    .licenses .btn__wrapper {
        margin-top: 60px;
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .licenses__items {
        gap: 50px 20px;
    }
    .textpage .licenses__item {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .licenses__items {
        margin: 0 auto;
        width: 100%;
        gap: 40px 20px;
    }
    .licenses__item {
        row-gap: 20px;
        width: calc((100% - 20px) / 2);
    }
    .textpage .licenses__item {
        width: calc((100vw - 20px) / 2);
    }
    .licenses__item img {
        width: 18.75vw;
        height: 18.75vw;
    }
    .licenses__item-box span {
        font-size: 18px;
        line-height: 30px;
    }
    .licenses .btn__wrapper {
        margin-top: 50px;
    }
}

/* section service-providers */

.service-providers .btn__wrapper {
    margin-top: 80px;
}

@media only screen and (max-width: 1023px) {
    .service-providers .btn__wrapper {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 479px) {
    .service-providers .btn__wrapper {
        margin-top: 50px;
    }
}

/* section get-in-touch */

.get-in-touch {
    background: #191919;
}

.get-in-touch .social {
    padding-left: 437px;
    flex-direction: column;
    align-items: unset;
    row-gap: 20px;
}

.get-in-touch .social__item {
    display: flex;
    justify-content: unset;
    column-gap: 20px;
    width: auto;
    height: auto;
    border: none;
}

.get-in-touch .social__item > span {
    font-size: 26px;
    line-height: 38px;
    color: #FFFFFF;
    transition: .3s;
}

.get-in-touch .social__item:hover > span {
    color: #8FC14F;
}

.get-in-touch .social__item:hover > svg path {
    fill: #8FC14F;
}

.get-in-touch .social__item .tooltip {
    left: 0;
    transform: none;
}

.get-in-touch .social-elements {
    position: static;
    margin-top: 60px;
    column-gap: 20px;
}

.attantion {
    margin-top: 80px;
    padding: 80px 0 0 437px;
    border-top: 2px solid #FFFFFF;
}

.attantion-title {
    display: flex;
    column-gap: 20px;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #E98D3C;
}

.attantion-text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.attantion-text p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

/* attantion white */

.attantion.white {
    margin-top: 50px;
    padding: 38px;
    background: #FFFCFA;
    border: 2px solid #E4791A;
}

.seo .attantion.white {
    margin-top: 100px;
}

.attantion.white .attantion-text p {
    color: #191919;
}

@media only screen and (max-width: 1919px) {
    .get-in-touch .social {
        padding-left: 335px;
    }
    .get-in-touch .social-elements {
        margin-top: 40px;
    }
    .attantion {
        margin-top: 60px;
        padding: 60px 0 0 335px;
    }
}

@media only screen and (max-width: 1279px) {
    .get-in-touch .social,
    .attantion {
        padding-left: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .get-in-touch .social-elements {
        column-gap: 50px;
    }
    .get-in-touch .social-elements a svg {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .get-in-touch .social-elements {
        margin-top: 30px;
        column-gap: 45px;
    }
    .attantion {
        margin-top: 50px;
        padding-top: 50px;
    }
    .attantion.white {
        padding: 28px;
    }
    .seo .attantion.white {
        margin-top: 80px;
    }
    .attantion.white .attantion-title {
        font-size: 20px;
        line-height: 30px;
        column-gap: 15px;
    }
    .attantion.white .attantion-title svg {
        width: 30px;
        height: 30px;
    }
    .attantion.white .attantion-text {
        margin-top: 20px;
        row-gap: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .attantion.white {
        margin-top: 40px;
        padding: 28px 18px;
    }
    .seo .attantion.white {
        margin-top: 60px;
    }
    .get-in-touch .social-elements {
        column-gap: 20px;
        justify-content: space-between;
    }
}

/* section specify */

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

.specify-item {
    padding: 48px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 407px;
    min-height: 400px;
    border: 2px solid #E6E6E6;
    transition: .3s;
}

.specify-item-box {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.specify-item span {
    display: block;
    max-width: 210px;
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.specify-item .btn {
    margin-top: 40px;
}

.specify-item:hover {
    border-color: #666666;
}

@media only screen and (max-width: 1919px) {
    .specify-item {
        width: 373px;
    }
}

@media only screen and (max-width: 1279px) {
    .specify-item {
        padding: 38px 28px;
        width: 288px;
        min-height: 380px;
    }
    .specify-item .btn {
        width: 220px;
    }
}

@media only screen and (max-width: 1023px) {
    .specify-item {
        width: 319px;
    }
}

@media only screen and (max-width: 767px) {
    .specify-item {
        width: 100%;
        min-height: 300px;
    }
    .specify-item-box {
        row-gap: 20px;
    }
    .specify-item svg {
        width: 50px;
        height: 50px;
    }
    .specify-item span {
        max-width: unset;
        font-size: 24px;
        line-height: 40px;
    }
    .specify-item .btn {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {
    .specify-item span {
        max-width: 168px;
    }
    .specify-item .btn {
        margin-top: 30px;
        height: 70px;
        font-size: 16px;
        line-height: 16px;
    }
}

/* partners */

.partners__wrapper {
    margin-top: 80px;
}

.partners .elements__item-head {
    align-items: center;
}

.partners .select {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .partners__wrapper {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .partners .elements__item-head img {
        width: 120px;
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .partners__wrapper {
        margin-top: 50px;
    }
    .partners .elements__item-head {
        flex-direction: column;
        align-items: unset;
        row-gap: 20px;
    }
    .partners .elements__item-body {
        padding-left: 0;
    }
    .partners .select {
        display: block;
    }
}

/* faq */

.faq {
    padding-top: 0;
}

.faq .container {
    padding-left: 0;
}

.faq .tab__category {
    font-weight: 500;
}

.faq .tab__content {
    margin-top: 130px;
    padding-left: 438px;
}

.faq .elements__item-head {
    cursor: pointer;
}

.faq .elements__item-body {
    padding-top: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.faq .elements__item.active .elements__item-body {
    padding-top: 40px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.faq .elements__item.active .elements__item-body p strong {
    padding-top: 20px;
    display: block;
}

.faq .elements__item.active .elements__item-body ul {
    padding-top: 15px;
    padding-bottom: 20px;
}

.faq .select {
    display: none;
}

.elements-plus {
    position: relative;
    bottom: 4px;
    left: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 2px solid #191919;
    border-radius: 100%;
    transition: .3s;
    cursor: pointer;
}

.elements-plus:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 4px;
    background: #191919;
    transition: .3s;
}

.elements-plus:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 17px;
    background: #191919;
    transition: .3s;
}

.tab__content .elements__item-head:hover .elements-plus,
.tab__content .elements__item.active .elements-plus {
    border-color: #7231A3;
}

.tab__content .elements__item-head:hover .elements-plus:before,
.tab__content .elements__item-head:hover .elements-plus:after,
.tab__content .elements__item.active .elements-plus:before,
.tab__content .elements__item.active .elements-plus:after {
    background: #7231A3;
}

.tab__content .elements__item-head:hover span,
.tab__content .elements__item.active .elements__item-head span {
    color: #7231A3;
}

.faq .elements__item.active .elements-plus:after {
    transform: rotate(90deg);
}

@media only screen and (max-width: 1919px) {
    .faq__wrapper {
        margin-top: 60px;
    }
    .faq .tab__content {
        margin-top: 100px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 1279px) {
    .faq .elements__item-head img {
        width: 120px;
        height: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .faq .tab__content {
        margin-top: 80px;
    }
    .faq .elements__item.active .elements__item-body {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .faq .elements__item-head span:last-child {
        width: 350px;
    }
    .faq .elements__item .elements__item-body {
        padding-left: 0;
    }
    .faq .select {
        display: block;
    }
}

@media only screen and (max-width: 479px) {
    .faq__wrapper {
        margin-top: 50px;
    }
    .faq .tab__content {
        margin-top: 50px;
    }
    .faq .elements__item-head span {
        font-size: 20px;
        line-height: 32px;
    }
    .faq .elements__item-head span:last-child {
        width: calc(100% - 51px);
    }
    .elements-plus {
        left: 3px;
        width: 30px;
        height: 30px;
    }
    .elements-plus:before {
        width: 12px;
        height: 3px;
    }
    .elements-plus:after {
        width: 3px;
        height: 12px;
    }
}

/* tabs */

.tab__categorys {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.tab__category {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: .3s;
    cursor: pointer;
}

.tab__category:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}

.tab__category:hover {
    color: #191919;
}

.tab__category.active {
    text-decoration-color: #191919;
    color: #191919;
    pointer-events: none;
}

.tab__content {
    margin-top: 100px;
}

.tab__category-content:not(.active) {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .tab__categorys:not(.faq .tab__categorys) {
        column-gap: 30px;
    }
    .tab__category:not(.faq .tab__category) {
        font-size: 15px;
        line-height: 25px;
    }
    .tab__content {
        margin-top: 80px;
    }
}

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

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

/* news page  */

.section.news {
    padding-top: 0;
}

.news__items {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}

.news__item {
    padding-bottom: 30px;
    display: flex;
    column-gap: 40px;
    border-bottom: 2px solid #191919;
}

.news__item img {
    width: 460px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.new__item-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new__item-box span {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.news__item-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.news__item:hover .news__item-title {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .news__items {
        row-gap: 80px;
    }
}

@media only screen and (max-width: 1279px) {
    .news__item img {
        width: 368px;
        height: 200px;
    }
    .new__item-box span {
        font-size: 18px;
        line-height: 30px;
    }
    .news__item-title {
        font-size: 22px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 1023px) {
    .news__items {
        row-gap: 60px;
    }
    .news__item {
        padding-bottom: 20px;
        column-gap: 30px;
    }
    .news__item img {
        width: 230px;
        height: 125px;
    }
    .news__item-title {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .news__item {
        flex-direction: column;
        row-gap: 30px;
    }
    .news__item img {
        width: 420px;
        height: 228px;
    }
}

@media only screen and (max-width: 479px) {
    .news__items {
        row-gap: 50px;
    }
    .news__item img {
        width: 100%;
        height: 47.5vw;
        object-position: left top;
    }
    .new__item-box span {
        font-size: 16px;
        line-height: 26px;
    }
    .news__item-title {
        font-size: 18px;
        line-height: 30px;
    }
}

/* articles tags */

.tags {
    padding-bottom: 130px;
}

.tags .container {
    padding-left: 0;
}

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

.tags__items span {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
    cursor: pointer;
}

.tags__items span:hover {
    color: #7231A3;
}

.tags__items span.active {
    color: #191919;
    pointer-events: none;
    text-decoration-line: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.tags .select {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .tags {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1023px) {
    .tags {
        padding-bottom: 80px;
    }
    .tags__items {
        gap: 30px 28px;
    }
}

@media only screen and (max-width: 767px) {
    .tags__items {
        display: none;
    }
    .tags .select {
        display: block;
    }
}

@media only screen and (max-width: 479px) {
    .tags {
        padding-bottom: 50px;
    }
}

/* articles */

.articles {
    padding-top: 0;
}

.articles__items {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}

.articles__item {
    display: flex;
    flex-direction: column;
}

.articles__item-title {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #191919;
}

.articles__item-title span:first-child {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.articles__item-title a {
    width: 845px;
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.articles-tags {
    padding: 40px 0 0 437px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.articles-tags > a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
}

.articles-tags > a:hover,
.articles__item-title a:hover {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .articles__items {
        row-gap: 80px;
    }
    .articles-tags {
        padding-left: 303px;
    }
    .articles__item-title a {
        width: 877px;
    }
    .articles__item-title span:first-child br {
        display: none;
    }
}

@media only screen and (max-width: 1279px) {
    .articles-tags {
        padding-left: 239px;
    }
    .articles__item-title span:first-child {
        font-size: 18px;
        line-height: 30px;
    }
    .articles__item-title a {
        width: 685px;
        font-size: 22px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 1023px) {
    .articles__items {
        row-gap: 60px;
    }
    .articles__item-title {
        flex-direction: column;
        align-items: unset;
        row-gap: 30px;
    }
    .articles__item-title span:first-child {
        margin-bottom: 0;
    }
    .articles__item-title a {
        width: 100%;
    }
    .articles-tags {
        padding: 30px 0 0 0;
    }
}

@media only screen and (max-width: 479px) {
    .articles__items {
        row-gap: 50px;
    }
    .articles__item-title span:first-child {
        font-size: 16px;
        line-height: 26px;
    }
    .articles__item-title a {
        font-size: 18px;
        line-height: 30px;
    }
}

/* author */

.author {
    padding-top: 0;
}

.author__wrapper {
    display: flex;
    justify-content: space-between;
}

.author__contacts {
    width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.author__contacts span {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.author__contacts .btn {
    width: 240px;
}

.author__social {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.author__social a {
    position: relative;
    display: flex;
}

.author__social a:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.author__social > a.facebook:hover svg path {
    fill: #1474EC;
}

.author__social > a.quora:hover svg path {
    fill: #A82300;
}

.author__social > a.medium:hover svg path {
    fill: #000000;
}

.author__social > a.linkedin:hover svg path {
    fill: #0D77B5;
}

.author__info {
    width: 845px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.author__info img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.author__text {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.author__text p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

@media only screen and (max-width: 1919px) {
    .author__text {
        row-gap: 30px;
    }
    .author__text p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1279px) {
    .author__info {
        width: 684px;
    }
    .author__contacts {
        width: 210px;
        row-gap: 40px;
    }
    .author__contacts .btn {
        width: 210px;
    }
    .author__info img {
        width: 250px;
        height: 250px;
    }
}

@media only screen and (max-width: 1023px) {
    .author {
        margin-top: -40px;
    }
    .author__wrapper {
        flex-direction: column;
        row-gap: 80px;
    }
    .author__contacts {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 60px;
    }
    .author__social {
        column-gap: 30px;
    }
    .author__social svg {
        width: 30px;
        height: 30px;
    }
    .author__info {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .author {
        margin-top: -30px;
    }
    .author__wrapper {
        row-gap: 50px;
    }
    .author__contacts {
        row-gap: 44px;
        column-gap: 30px;
    }
    .author__social {
        column-gap: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .author__wrapper {
        row-gap: 40px;
    }
    .author__contacts {
        row-gap: 40px;
    }
    .author__contacts .btn {
        width: 100%;
    }
    .author__info {
        row-gap: 40px;
    }
    .author__info img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }
    .author__text p {
        font-size: 16px;
        line-height: 28px;
    }
    .author__social {
        column-gap: 30px;
        justify-content: center;
        width: 100%;
    }
}

/* perfectScrollBar global setting */

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

.ps .ps__thumb-y {
    width: 10px!important;
    left: 50%;
    transform: translateX(-50%);
    background: #999999;
    border-radius: 0;
}

.ps .ps__rail-y {
    width: 10px!important;
    background: #E6E5E5 !important;

}

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

/* nav content */

.nav-content {
    border: 1px solid #D1D4D9;
    border-radius: 2px;
    background: #FAFBFC;
}

.nav-content__title {
    padding: 24px 20px 21px;
    display: flex;
    align-items: center;
    column-gap: 14px;
    background: #F3F4F5;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    color: #737373;
    border-radius: 2px 2px 0px 0px;
}

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

.nav-content__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #D1D4D9;
    background: #FAFBFC;
}

.nav-content__wrapper > *:last-child {
    border-radius: 0 0 2px 2px;
}

.nav-content__item a {
    padding: 15px 19px;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    color: #737373;
    transition: .3s;
}

.nav-content__item a:hover {
    color: #007984;
    text-decoration-color: #007984;
}

.nav-content__subitem-wrapper {
    padding: 0 19px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 12px;
}

.nav-content__subitem {
    font-size: 14px;
    line-height: 22px;
    color: #737373;
}

.nav-content__subitem:hover {
    color: #007984;
}

@media only screen and (max-width: 767px) {
    .nav-content__title {
        padding: 18px 20px 17px;
    }
}

@media only screen and (max-width: 479px) {
    .nav-content__title {
        padding: 18px 15px 17px;
    }
    .nav-content__item a {
        padding: 12px 15px;
    }
    .nav-content__subitem-wrapper {
        padding: 0 15px 14px;
    }
}

/* textstyle */

.textstyle p,
ul li,
ol li,
.textstyle table td {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle table th {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
    text-align: left;
    width: 215px;
}

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

.textstyle b {
    font-weight: 500;
}

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

.textstyle p a:active,
ul li a:active,
ol li a:active,
.textstyle table td a:active {
    color: #7231A3;
    text-decoration-color: transparent;
}

.textstyle p a:hover,
ul li a:hover,
ol li a:hover,
.textstyle table td a:hover {
    color: #7231A3;
    text-decoration-color: transparent;
}

.textstyle > a:visited,
.textstyle p a:visited,
ul li a:visited,
ol li a:visited,
.textstyle table td a:visited {
    color: #4E1B75;
}

.textstyle p a:visited:hover,
ul li a:visited:hover,
ol li a:visited:hover,
.textstyle table td a:visited:hover {
    color: #7231A3;
    text-decoration-color: transparent;
}

.textstyle .btn {
    margin: 50px 0;
}

.textstyle > *:last-child {
    margin-bottom: 0!important;
}

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

img.textpage-license-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

img.textpage-provider-img {
    width: 240px;
    height: 100px;
    object-fit: cover;
}

.textpage h1 {
    font-weight: 400;
    font-size: 50px;
    line-height: 74px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    max-width: 1280px;
}

.textstyle h2 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 46px;
    line-height: 68px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle h3 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 38px;
    line-height: 52px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle h4 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle h5 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 28px;
    line-height: 46px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle h6 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #191919;
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
    margin: 50px 0;
}

ul,
ol {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

ul {
    list-style: none;
}

.textstyle > ul {
    margin-bottom: 30px;
}

ul li:not(#at-expanded-menu-host .at-expanded-menu-service-list li) {
    position: relative;
    padding-left: 50px;
}

ul li ul li {
    padding-left: 30px;
}

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

.textstyle ul li ul {
    margin-left: -10px;
}

ul li:not(#at-expanded-menu-host .at-expanded-menu-service-list li):before {
    content: '';
    position: absolute;
    left: 20px;
    top: 12px;
    background: #191919;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-sizing: border-box;
}

ul li ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    border: 2px solid #191919;
    background: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-sizing: border-box;
}

.textstyle ul li ul li:before {
    border: 1px solid #191919;
}

.textstyle ol {
    margin-bottom: 30px;
    list-style: none;
    counter-reset: counter;
}

.textstyle ol li {
    counter-increment: counter;
    position: relative;
}

.textstyle table ol {
    counter-reset: tcounter;
}

.textstyle table ol li {
    counter-increment: tcounter;
}

.textstyle ol li::before {
    content: counters(counter, ".") ". ";
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textstyle table ol li::before {
    content: counters(tcounter, ".") ". ";
}

.textstyle ol ol {
    margin: 20px 0 0 20px;
}

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

.textstyle table td,
.textstyle table th {
    padding: 30px 20px;
    border: 1px solid #E6E6E6;
}

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

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

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

.textstyle table ul li:before {
    left: 0;
}

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

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

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

.table-wrapper .ps__thumb-x:hover {
    background-color: #191919 !important;
}

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

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

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

.textpage iframe {
    margin-bottom: 30px;
    width: 100% !important;
    height: 476px !important;
}

@media only screen and (max-width: 1919px) {
    .textstyle p,
    ul li,
    ol li,
    .textstyle table td {
        font-size: 18px;
        line-height: 30px;
    }
    .textstyle ol li::before {
        font-size: 18px;
        line-height: 30px;
    }
    .textstyle table th {
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
    }
    .textpage iframe {
        height: 418px !important;
    }
}

@media only screen and (max-width: 1279px) {
    .textpage iframe {
        height: 520px !important;
    }
}

@media only screen and (max-width: 1023px) {
    .textpage h1 {
        font-size: 40px;
        line-height: 60px;
    }
    .textpage iframe {
        height: 376px !important;
    }
}

@media only screen and (max-width: 767px) {
    .textpage h1 {
        font-size: 30px;
        line-height: 46px;
    }
    .textstyle h2 {
        font-size: 36px;
        line-height: 54px;
    }
    .textstyle h3 {
        font-size: 32px;
        line-height: 50px;
    }
    .textstyle h4 {
        font-size: 28px;
        line-height: 46px;
    }
    .textstyle h5 {
        font-size: 24px;
        line-height: 42px;
    }
    img.textpage-license-img {
        width: 60px;
        height: 60px;
    }
    img.textpage-provider-img {
        width: 144px;
        height: 60px;
    }
    .textstyle table td {
        padding: 20px 10px;
        word-break: break-word;
        hyphens: auto;
    }
    .textstyle table td:first-child {
        width: 150px;
    }
    .textpage iframe {
        height: 236px !important;
    }
}

@media only screen and (max-width: 479px) {
    .textstyle p,
    ul li,
    ol li,
    .textstyle table td {
        font-size: 16px;
        line-height: 28px;
    }
    .textstyle h2 {
        font-size: 30px;
        line-height: 42px;
        word-break: break-word;
    }
    .textstyle h3 {
        font-size: 26px;
        line-height: 38px;
    }
    .textstyle h4 {
        font-size: 22px;
        line-height: 32px;
    }
    .textstyle h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .textstyle h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .textstyle > img {
        margin-bottom: 40px;
    }
    .textpage h1 {
        font-size: 25px;
        line-height: 37px;
    }
    .textstyle .btn {
        margin: 40px 0;
        width: 100%;
    }
    ul,
    ol {
        row-gap: 15px;
    }
    ul li:not(#at-expanded-menu-host .at-expanded-menu-service-list li) {
        padding-left: 23px;
    }
    ul li:not(#at-expanded-menu-host .at-expanded-menu-service-list li):before {
        top: 10px;
        left: 0;
        width: 8px;
        height: 8px;
    }
    .textstyle ol li::before {
        font-size: 16px;
        line-height: 28px;
    }
    .textstyle ul li ul {
        margin-top: 15px;
    }
    ul li ul li:before {
        top: 10px;
        width: 8px;
        height: 8px;
    }
    .textstyle ul li ul li:before {
        top: 10px;
        left: 8px;
        width: 8px;
        height: 8px;
    }
    .textstyle ol ol {
        margin-top: 15px;
    }
    .textstyle table ul li {
        padding-left: 28px;
    }
    .textstyle table ul li:before {
        left: 5px;
    }
    .textstyle table ul li ul li:before {
        top: 11px;
        left: 7px;
    }
    p + h2,
    p + h3,
    p + h4,
    p + h5,
    p + h6 {
        margin: 40px 0;
    }
    .textstyle table td,
    .textstyle table th {
        padding: 20px 15px;
    }
    .textstyle table th {
        width: 205px;
        font-size: 16px;
        line-height: 28px;
    }
    .textstyle table td:first-child {
        width: 120px;
    }
    .textpage iframe {
        height: 50.2vw !important;
    }
}

@media only screen and (width < 375px) {
    .textpage iframe {
        height: 49.0625vw !important;
    }
}

/* textpage */

.text-page-fs {
    position: relative;
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.text-page-fs::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 200px);
    height: 2px;
    background: #191919;
}

.text-page-fs .container {
    padding-left: 0;
}

.text-page-fs .btn__wrapper {
    margin-top: 50px;
    padding-left: 438px;
}

.text-page-fs__info {
    margin-top: 50px;
    display: flex;
    column-gap: 41px;
}

.text-page-fs__info > span {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    flex-shrink: 0;
}

.text-page-fs__info > p {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    flex-shrink: 0;
}

.text-page-fs__info > span:before {
    content: '';
    position: absolute;
    top: 3px;
    left: calc(100% + 20px);
    width: 1px;
    height: 20px;
    background: #C4C4C4;
}

.fs-tags {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.fs-tags > a {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.fs-tags > a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}

.fs-tags > a:hover {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .text-page-fs .btn__wrapper {
        padding-left: 0;
    }
    .text-page-fs::before {
        width: calc(100vw - 100px);
    }
}

@media only screen and (max-width: 1279px) {
    .text-page-fs {
        padding-bottom: 80px;
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1023px) {
    .text-page-fs .btn__wrapper {
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .text-page-fs {
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
    .text-page-fs::before {
        width: calc(100vw - 60px);
    }
}

@media only screen and (max-width: 479px) {
    .text-page-fs {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .text-page-fs::before {
        width: calc(100vw - 40px);
    }
    .text-page-fs .btn__wrapper {
        margin-top: 40px;
    }
    .text-page-fs__info {
        margin-top: 40px;
        flex-direction: column;
        row-gap: 25px;
    }
    .fs-tags > a {
        font-size: 14px;
        line-height: 20px;
    }
}

.textpage-wrapper {
    position: relative;
    margin-bottom: 130px;
    padding-bottom: 130px;
}

.textpage-wrapper::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 2px;
    background: #191919;
}

.textpage-wrapper .container {
    padding-left: 0;
}

.textpage__box {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 57px;
    width: 100%;
}

.text-container {
    position: relative;
    flex-shrink: 0;
    width: 845px;
}

.text-container h4:not(.textstyle h4) {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0.02em;
    color: #191919;
}

.text-container .h4-header__text {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 0.02em;
    color: #191919;
}

.textpage__content {
    width: 100%;
}

.textpage__nav {
    position: sticky;
    top: 160px;
    width: 380px;
    flex-shrink: 0;
    transition: .5s;
}

.seo .textpage__nav {
    margin-bottom: 40px;
    position: static;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D3D0D9;
}

.textpage__nav-title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.seo .textpage__nav-title {
    margin: 0;
    padding: 23px 19px 22px;
    background: #F7F6F6;
    border-bottom: 1px solid #D3D0D9;
}

.seo .textpage__nav-wrapper {
    padding: 15px 19px 14px;
}

.textpage__nav-item {
    display: block;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #666;
    transition: .3s;
}

.textpage__nav-link:not(:first-child) {
    margin-top: 12px;
}

.textpage__nav-item:hover,
.textpage__nav-subitem:hover,
.textpage__nav-item.active,
.textpage__nav-subitem.active {
    color: #7231A3;
}

.textpage__nav-subitems {
    margin-top: 10px;
    display: none;
    flex-direction: column;
    row-gap: 10px;
}

.textpage__nav-subitem {
    position: relative;
    padding-left: 24px;
    display: block;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #666666;
}

.textpage__nav-subitem:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #666666;
    border-radius: 100%;
    transition: .3s;
}

.textpage__nav-subitem:hover::before {
    background: #7231A3;
}

.textpage__nav-link {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.textpage__nav-link.active + .textpage__nav-subitems {
    display: flex;
}

.textpage__nav-link > i {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    border: 2px solid #828282;
    z-index: 1;
    cursor: pointer;
    transition: .3s;
}

.textpage__nav-link > i::before {
    content: '';
    position: absolute;
    transform: translateX(-28%) rotate(45deg);
    width: 7px;
    height: 2px;
    background: #828282;
    transition: .3s;
}

.textpage__nav-link > i::after {
    content: '';
    position: absolute;
    transform: translateX(28%) rotate(-45deg);
    width: 7px;
    height: 2px;
    background: #828282;
    transition: .3s;
}

.textpage__nav-link.active > i::before {
    transform: translateX(-28%) rotate(-45deg);
}

.textpage__nav-link.active > i::after {
    transform: translateX(28%) rotate(45deg);
}

.textpage__nav-link > i:hover {
    border-color: #7231A3;
}

.textpage__nav-link > i:hover::before,
.textpage__nav-link > i:hover::after {
    background: #7231A3;
}

.textpage-contacts {
    margin-top: 130px;
}

.textpage-contacts > .btn {
    margin-top: 50px;
    padding: 0 20px;
    min-width: 240px;
    width: fit-content;
}

.textpage-source {
    margin-top: 50px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.textpage-source span,
.textpage-author-name span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.textpage-source a,
.textpage-author-name a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #191919;
}

.textpage-source a:hover,
.textpage-author-name a:hover {
    color: #7231A3;
}

.textpage-author {
    margin-top: 50px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.textpage-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.textpage-author-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.textpage-author-name {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.textpage-author-box > span {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #666666;
}

@media only screen and (max-width: 1919px) {
    .textpage__wrapper {
        padding-bottom: 80px;
    }
    .text-container {
        margin-left: 10px;
        width: 743px;
    }
    .textpage-wrapper::before {
        width: calc(100% - 100px);
    }
    .textpage__box {
        column-gap: 47px;
    }
    .textpage__nav {
        top: 130px;
    }
}

@media only screen and (max-width: 1279px) {
    .textpage-wrapper {
        margin-bottom: 120px;
        padding-bottom: 120px;
    }
    .textpage-wrapper::before {
        width: calc(100% - 110px);
        margin-left: 5px;
    }
    .textpage__box {
        flex-direction: column;
        row-gap: 80px;
    }
    .text-container {
        width: 100%;
        order: 2;
    }
    .textpage__nav {
        margin-left: 10px;
        position: static;
        width: 100%;
    }
    .textpage-contacts {
        margin-top: 120px;
    }
}

@media only screen and (max-width: 1023px) {
    .textpage-wrapper {
        margin-bottom: 100px;
        padding-bottom: 100px;
    }
    .textpage__content {
        width: 100%;
    }
    .textpage__wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    .textpage__aside-navcont {
        display: none;
    }
    .textpage__navcont {
        display: block;
        margin-bottom: 40px;
    }
    .textpage-contacts {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .textpage-wrapper {
        margin-bottom: 80px;
        padding-bottom: 80px;
    }
    .textpage-wrapper::before {
        width: calc(100% - 60px);
        margin-left: 0;
    }
    .textpage__navcont {
        margin-bottom: 40px;
    }
    .textpage__nav {
        margin-left: 0;
    }
    .seo .textpage__nav {
        margin-bottom: 30px;
    }
    .textpage__nav-title {
        font-size: 16px;
        line-height: 16px;
    }
    .text-container {
        margin-left: 0;
    }
    .seo .text-container {
        padding-bottom: 50px;
    }
    .seo .textpage__nav-title {
        padding: 18px 19px 16px;
    }
    .seo .textpage__nav-item {
        max-width: 350px;
    }
    .textpage__box {
        row-gap: 60px;
    }
    .text-container h4:not(.textstyle h4) {
        font-size: 28px;
        line-height: 46px;
    }
    .text-container .h4-header__text {
        font-size: 28px;
        line-height: 46px;
    }
    .textpage-contacts {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 479px) {
    .textpage-wrapper {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    .textpage-wrapper::before {
        width: calc(100% - 40px);
    }
    .textpage__nav-subitem {
        padding-left: 14px;
    }
    .textpage__nav-subitem:before {
        left: 0;
    }
    .seo .text-container {
        padding-bottom: 40px;
    }
    .text-container h4:not(.textstyle h4) {
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 32px;
    }
    .text-container .h4-header__text {
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 32px;
    }
    .textpage-contacts {
        margin-top: 60px;
    }
    .seo .textpage-contacts {
        margin-top: 40px;
    }
    .textpage-contacts > .btn {
        margin-top: 40px;
        width: 100%;
    }
    .textpage-source,
    .textpage-author {
        margin-top: 40px;
    }
}

/* textpage social */

.text-container .social {
    flex-direction: column;
    align-items: unset;
    row-gap: 20px;
    height: auto;
}

.text-container .social__item {
    display: flex;
    justify-content: unset;
    column-gap: 20px;
    width: auto;
    height: auto;
    border: none;
}

.text-container .social__item > span {
    font-size: 22px;
    line-height: 34px;
    color: #191919;
    letter-spacing: 0.02em;
    transition: .3s;
}

.text-container .social__item:hover > span {
    color: #7231A3;
}

.text-container .social__item:hover > svg path {
    fill: #7231A3;
}

.text-container .social__item .tooltip {
    left: 0;
    transform: none;
}

@media only screen and (max-width: 479px) {
    .text-container .social__item .tooltip {
        width: 280px;
    }
}

/* techpage */

.techpage .textpage-wrapper {
    margin-bottom: 0;
}

.techpage .textpage-wrapper::before {
    display: none;
}

/* textpage sharing */

.sharing {
    margin-top: 130px;
}

.seo .sharing {
    margin-top: 50px;
}

.sharing-elements {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.sharing-elements a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #666666;
    border-radius: 100%;
    transition: .3s;
}

.sharing-elements a:hover {
    border-color: #7231A3;
}

.sharing-elements a:hover svg path {
    fill: #7231A3;
}

@media only screen and (max-width: 1279px) {
    .sharing {
        margin-top: 120px;
    }
}

@media only screen and (max-width: 1023px) {
    .sharing {
        margin-top: 100px;
    }
    .sharing-elements {
        column-gap: 18px;
    }
    .seo .sharing-elements {
        column-gap: 20px;
    }
    .seo .sharing-elements a:nth-child(9) {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .sharing {
        margin-top: 80px;
    }
    .sharing-elements {
        column-gap: 20px;
    }
    .seo .sharing-elements {
        column-gap: 17px;
    }
    .sharing-elements a:nth-last-child(-n+5):not(:last-child) {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .sharing {
        margin-top: 60px;
    }
    .seo .sharing {
        margin-top: 60px;
    }
    .sharing-elements,
    .seo .sharing-elements {
        column-gap: 12px;
    }
    .sharing-elements a {
        width: 46px;
        height: 46px;
    }
    .sharing-elements a:nth-last-child(-n+6):not(:last-child) {
        display: none;
    }
}

/* blognav */

.blognav {
    padding-bottom: 130px;
}

.blognav .container {
    padding: 0;
}

.blognav-box {
    display: flex;
    justify-content: space-between;
}

.blognav-box > a {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 750px;
}

.blognav-box > a:last-child {
    align-items: flex-end;
}

.blognav-title {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
}

.blognav-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    transition: .3s;
}

.blognav-box > a:last-child .blognav-text {
    text-align: right;
}

.blognav-box > a:hover .blognav-title,
.blognav-box > a:hover .blognav-text {
    color: #7231A3;
}

.blognav-box > a:hover .blognav-title svg path {
    fill: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .blognav-box > a {
        width: 550px;
    }
}

@media only screen and (max-width: 1279px) {
    .blognav {
        padding-bottom: 120px;
    }
    .blognav .container {
        padding-left: 10px;
    }
    .blognav-box > a {
        width: 440px;
    }
}

@media only screen and (max-width: 1023px) {
    .blognav {
        padding-bottom: 100px;
    }
    .blognav-box > a {
        width: 320px;
    }
    .blognav-text {
        font-size: 20px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .blognav {
        padding-bottom: 80px;
    }
    .blognav .container {
        padding-left: 0;
    }
    .blognav-box {
        flex-direction: column;
        row-gap: 30px;
    }
    .blognav-box > a {
        width: 100%;
    }
    .blognav-box > a:last-child {
        align-items: unset;
    }
    .blognav-box > a:last-child .blognav-text {
        text-align: unset;
    }
}

@media only screen and (max-width: 479px) {
    .blognav {
        padding-bottom: 60px;
    }
    .blognav-text {
        font-size: 18px;
        line-height: 30px;
    }
}

/* similaritems slider */

.similaritems {
    padding-top: 0;
}

.similaritems .title {
    margin-bottom: 80px;
}

.similaritems .container {
    padding-left: 0;
}

.similaritems__slider .slick-track {
    display: flex !important;
}

.similaritems__slider .slick-slide {
    height: inherit !important;
}

.similaritems__slider .licenses__item {
    margin-right: 30px;
    display: flex;
}

.similaritems__slider .similarsystem__item {
    margin-right: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 407px;
    height: 220px !important;
    border: 2px solid #E6E6E6;
    transition: .3s;
}

.similarsystem__item img {
    width: 240px;
    height: 100px;
    object-fit: cover;
    filter: grayscale(1);
    transition: .3s;
}

.similarsystem__item:hover {
    border-color: #666666;
}

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

.similararticles__item {
    margin-right: 30px;
    padding: 38px;
    display: flex !important;
    flex-direction: column;
    width: 407px;
    border: 2px solid #E6E6E6;
    transition: .3s;
}

.similararticles__item:hover {
   border-color: #666666;
}

.similararticles__item span {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.similararticles-title {
    margin-top: 30px;
    min-height: 180px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    transition: .3s;
}

.similararticles__tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    min-height: 62px;
}

.similararticles__tags a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
}

.similararticles__tags a:hover {
    color: #7231A3;
}

.similararticles__item:hover .similararticles-title {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .similaritems__slider .licenses__item {
        margin-right: 140px;
    }
    .similaritems__slider .similarsystem__item {
        margin-right: 40px;
        width: 367px;
    }
    .similararticles__item {
        padding: 28px;
        margin-right: 40px;
        width: 367px;
    }
}

@media only screen and (max-width: 1279px) {
    .similaritems .container {
        padding-left: 10px;
    }
    .similaritems .title {
        margin-bottom: 60px;
    }
    .similaritems__slider .licenses__item {
        margin-right: 42px;
    }
    .similaritems__slider .similarsystem__item {
        margin-right: 30px;
        width: 288px;
    }
    .similararticles__item {
        margin-right: 25px;
        width: 288px;
    }
    .similararticles-title {
        font-size: 20px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 1023px) {
    .similaritems__slider .licenses__item {
        margin-right: 34px;
    }
    .similaritems__slider .similarsystem__item {
        margin-right: 34px;
        width: 200px;
        height: 155px;
    }
    .similarsystem__item img {
        width: 180px;
        height: 75px;
    }
    .similararticles__item {
        margin-right: 20px;
        width: 319px;
    }
}

@media only screen and (max-width: 767px) {
    .similaritems .container {
        padding-left: 0;
    }
    .similaritems .slider__wrapper {
        padding-bottom: 100px;
    }
    .similaritems .title {
        margin-bottom: 50px;
    }
    .similaritems__slider .licenses__item {
        margin-right: 20px;
    }
    .similaritems__slider .similarsystem__item {
        margin-right: 20px;
    }
    .similarsystem__item img {
        filter: grayscale(0);
    }
    .similararticles__item {
        width: 420px;
    }
    .similararticles-title {
        min-height: unset;
    }
    .similararticles__tags {
        min-height: unset;
    }
}

@media only screen and (max-width: 479px) {
    .similaritems .container {
        width: calc(100% - 40px);
    }
    .slider-nav {
        width: 100%;
    }
    .similaritems__slider .similarsystem__item {
        width: calc(100vw - 40px);
    }
    .similararticles__item {
        padding: 28px 18px;
        width: calc(100vw - 40px);
    }
    .similararticles__item span {
        font-size: 16px;
        line-height: 26px;
    }
    .similararticles-title {
        font-size: 18px;
        line-height: 30px;
    }
    .similararticles__tags {
        margin-top: 30px;
    }
    .similararticles__tags a {
        font-size: 14px;
        line-height: 20px;
    }
}


/* blockquote */

.textstyle blockquote {
    margin: 80px 0 50px;
    padding: 53px 38px 38px;
    display: block;
    position: relative;
    background: #FAFAFC;
    border: 2px solid #E6E6E6;
}

.textstyle blockquote:before {
    position: absolute;
    content: '';
    left: 38px;
    top: -32px;
    width: 58px;
    height: 58px;
    border: 1px solid #E6E6E6;
    border-radius: 100%;
    background: url(/public/img/blockquote.svg) no-repeat center #FAFAFC;
    background-size: 30px 30px;
    z-index: 1;
}

.textstyle blockquote p {
    position: relative;
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
    margin: 0;
    z-index: 2;
}

.blockquote__author {
    position: relative;
    margin-top: 40px;
    padding-left: 46px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #191919;
}

.blockquote__author:before {
    position: absolute;
    content: '';
    left: 0;
    width: 26px;
    height: 26px;
    background: url(/public/img/blockquote-hand.svg) no-repeat center;
}

@media only screen and (max-width: 1023px) {
    .textstyle blockquote {
        padding: 43px 28px 28px;
    }
    .textstyle blockquote:before {
        left: 28px;
    }
    .blockquote__author {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .textstyle blockquote {
        padding: 43px 18px 28px;
    }
    .textstyle blockquote:before {
        left: 18px;
    }
    .textstyle blockquote p {
        font-size: 18px;
        line-height: 30px;
    }
    .blockquote__author {
        padding-left: 41px;
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .textstyle blockquote {
        padding: 28px 13px 18px;
    }
    .textstyle blockquote:before {
        top: -27px;
        left: 13px;
        width: 38px;
        height: 38px;
        background-size: 20px 20px;
    }
    .textstyle blockquote p {
        font-size: 16px;
        line-height: 26px;
    }
    .blockquote__author {
        margin-top: 20px;
    }
}

/* link textpage */

.content__link {
    margin: 50px 0;
    padding: 40px;
    position: relative;
    background: #E9E9F7;
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.content__link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #191919;
}

.content__link a {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-decoration-line: underline;
    text-underline-offset: 5px;
    transition: .3s;
}

.content__link a:hover {
    color: #7231A3;
    text-decoration-color: transparent;
}

@media only screen and (max-width: 1023px) {
    .content__link {
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .content__link {
        padding: 30px 20px;
        font-size: 18px;
        line-height: 30px;
    }
    .content__link a {
        text-underline-offset: 4px;
    }
}

@media only screen and (max-width: 479px) {
    .content__link {
        padding: 20px 14px 20px 16px;
        font-size: 16px;
        line-height: 26px;
    }
}

/* content text note */

.content__text-note {
    position: relative;
    margin: 80px 0 50px;
    padding: 53px 38px 38px;
    background: #FAFAFC;
    border: 2px solid #E6E6E6;
}

.content__text-note:before {
    position: absolute;
    content: '';
    left: 38px;
    top: -32px;
    width: 58px;
    height: 58px;
    border: 1px solid #E6E6E6;
    border-radius: 100%;
    background: url(/public/img/text-note.svg) no-repeat center #FAFAFC;
    background-size: 30px 30px;
    z-index: 1;
}

.content__text-note p {
    margin: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #191919;
}

.content__text-note a {
    font-weight: 500;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    transition: .3s;
}

.content__text-note a:hover {
    color: #7231A3;
    text-decoration-color: transparent;
}

@media only screen and (max-width: 1023px) {
    .content__text-note {
        padding: 43px 28px 28px;
    }
    .content__text-note:before {
        left: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .content__text-note {
        padding: 43px 18px 28px;
    }
    .content__text-note p {
        font-size: 18px;
        line-height: 30px;
    }
    .content__text-note:before {
        left: 18px;
    }
}

@media only screen and (max-width: 479px) {
    .content__text-note {
        padding: 28px 13px 18px;
    }
    .content__text-note p {
        font-size: 16px;
        line-height: 26px;
    }
    .content__text-note:before {
        top: -27px;
        left: 13px;
        width: 38px;
        height: 38px;
        background-size: 20px 20px;
    }
}

/* footer */

.footer {
    position: relative;
    background: #FAFAFC;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 2px;
    background: #191919;
}

.footer__container {
    position: relative;
    margin: 0 auto;
    padding: 80px 0 50px;
    width: 1720px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footer .social-elements {
    margin-top: 40px;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.footer .social-elements a svg {
    width: 20px;
    height: 20px;
}

.footer .lang-bar {
    margin-top: 50px;
    column-gap: 16px;
}

.footer .socialbox {
    padding: 0;
}

.footer .socialbox__wrapper {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
}

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

.footer__column {
    /* position: relative; */
    width: 180px;
    flex-shrink: 0;
}

.footer__links-title {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.footer__links-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer__link {
    display: flex;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #191919;
    transition: .3s;
    /*text-transform: capitalize;*/
}

.footer__link:hover {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .footer::before {
        width: calc(100% - 100px);
    }
    .footer__container {
        padding: 60px 0 50px;
        width: 1180px;
    }
    .footer-logo {
        width: 100px;
    }
    .footer__column {
        width: 150px;
    }
    .footer__column:first-child {
        width: 180px;
    }
    .footer__column:last-child {
        width: 100px;
    }
    .footer .social-elements {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .footer .lang-bar {
        column-gap: 15px;
    }
}

@media only screen and (max-width: 1279px) {
    .footer__container {
        width: 924px;
    }
    .footer-logo {
        position: absolute;
        right: 0;
        bottom: 114px;
        width: 150px;
    }
    .footer .lang-bar {
        margin: 0;
        position: absolute;
        right: 250px;
        bottom: 150px;
        column-gap: 20px;
    }
    .footer .social-elements {
        margin-top: 0;
        gap: 30px;
    }
    .footer .social-elements a svg {
        width: 30px;
        height: 30px;
    }
    .footer .socialbox .tooltip {
        transform: unset;
        left: 0;
    }
    .footer .socialbox .tooltip:before {
        left: 20%;
    }
    .footer__links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 50px 41px;
    }
    .footer__column {
        width: 200px;
    }
    .footer__column:first-child {
        width: 200px;
        order: 5;
    }
    .footer__column:last-child {
        width: 150px;
        order: 6;
    }
}

@media only screen and (max-width: 1023px) {
    .footer::before {
        width: calc(100% - 60px);
    }
    .footer__container {
        width: 668px;
    }
    .footer__links {
        gap: 50px 34px;
    }
    .footer-logo {
        right: 50px;
        bottom: 140px;
    }
    .footer .lang-bar {
        bottom: 176px;
        right: 239px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__container {
        padding: 50px 0 234px;
        width: 420px;
    }
    .footer__links {
        gap: 50px 40px;
    }
    .footer__column {
        width: 190px;
    }
    .footer__column:last-child {
        width: 100%;
    }
    .footer .social-elements {
        position: static;
        column-gap: 48px;
    }
    .footer .lang-bar {
        bottom: 160px;
        right: auto;
        column-gap: 25px;
    }
    .footer-logo {
        right: auto;
        bottom: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .footer::before {
        width: calc(100% - 40px);
    }
    .footer__container {
        width: calc(100% - 40px);
    }
    .footer__column:nth-child(n) {
        width: 100%;
    }
    .footer .social-elements {
        column-gap: 20px;
        justify-content: space-between;
    }
}

/* terms */

.terms {
    padding-bottom: 60px;
    background: #FAFAFC;
    z-index: 1;
}

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

.terms__container span {
    margin-right: 4px;
}

.terms__items a:not(:nth-child(2)) {
    margin-left: 14px;
}

.terms__items a,
.terms__container span {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    transition: .3s;
}

.terms__items a:not(:nth-child(2))::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 2px;
    width: 1px;
    height: 13px;
    background: #000000;
}

.terms__items a:hover {
    color: #7231A3;
}

.terms__items a.active {
    color: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .terms__container {
        width: 1180px;
    }
}

@media only screen and (max-width: 1279px) {
    .terms__container {
        width: 924px;
    }
}

@media only screen and (max-width: 1023px) {
    .terms__container {
        width: 668px;
    }
}

@media only screen and (max-width: 767px) {
    .terms__container {
        width: 420px;
    }
    .terms__container span {
        margin-right: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .terms__container {
        width: calc(100% - 40px);
    }
    .terms__container span {
        margin-right: 3px;
    }
}

/* custom select */

.select {
    position: relative;
}

.select__current {
    padding: 15px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid #999999;
    transition: .3s;
    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;
}

.select__current span {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    pointer-events: none;
}

.select__current-wrapper {
    pointer-events: none;
}

.select__wrapper {
    padding: 9px 0;
    position: absolute;
    top: calc(100% + 2px);
    width: 100%;
    min-height: 150px;
    background: #FFFFFF;
    border: 1px solid #999999;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

.select__list {
    position: relative;
    width: 100%;
    height: 100%;
}

.select__item {
    padding: 10px 19px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
    cursor: pointer;
}

.select__item:hover,
.select__item.active{
    color: #191919;
}

.select.active .select__wrapper {
    opacity: 1;
    z-index: 10;
    visibility: visible;
}

.select .select__current svg {
    transition: .3s;
    pointer-events: none;
}

.select.active .select__current svg {
    transform: scale(-1);
}

@media only screen and (max-width: 479px) {
    .select__current {
        padding: 15px 14px;
        height: 50px;
    }
    .select__current span {
        font-size: 14px;
        line-height: 20px;
    }
}

/* custom intlTelInput.css */

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

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

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

.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;
    -ms-transform-origin: 0 center;
    transform-origin: 0 center;
}

.iti__country-list {
    margin-top: 1px;
    padding: 20px 11px;
    max-height: 306px;
    width: 800px;
    background: #FFFFFF;
    border: 1px solid #999999;
    row-gap: 1px;
}

.iti__arrow {
    margin-left: 18px!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 {
    position: absolute;
    left: calc(100% + 10px);
    margin-left: 0;
    font-size: 16px;
    line-height: 19px;
    color: #E9E8EB;
}

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

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

.iti--separate-dial-code .iti__selected-flag {
    background: #191919;
    padding: 0 11px 0 14px;
    transition: background .3s;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: #292929;
}

.iti__country {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 42px;
    overflow: hidden;
}

.iti__country .iti__flag {
    margin: 0;
}

.iti__divider {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #C4C4C4;
}

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

.iti__country.iti__highlight {
    background: #F7F6F6;
}

.iti__country.iti__highlight:hover {
    background: #F7F6F6;
}

.iti__country-name {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #191919;
    margin-right: 10px!important;
}

.iti__dial-code {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #666666;
}

.popup__label-input-wrapper .iti__country-list .ps__thumb-y {
    width: 10px !important;
    right: 0;
    opacity: 1!important;
}

.popup__label-input-wrapper .iti__country-list .ps__rail-y {
    opacity: 1!important;
    right: 0!important;
    width: 10px !important;
    border-radius: 0;
}

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

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

@media only screen and (max-width: 1023px) {
    .iti__country-list {
        width: auto;
    }
}

/* error page */

.contacts-error .container {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
}

.contacts-error .social {
    flex-direction: column;
    align-items: unset;
    row-gap: 20px;
}

.contacts-error .social__item {
    display: flex;
    justify-content: unset;
    column-gap: 20px;
    width: auto;
    height: auto;
    border: none;
}

.contacts-error .social__item > span {
    font-size: 26px;
    line-height: 38px;
}

.contacts-error .social-elements {
    position: static;
    margin-top: 60px;
    column-gap: 20px;
}

.contacts-error .social__item .tooltip {
    left: 0;
    transform: none;
}

@media only screen and (max-width: 1919px) {
    .contacts-error .social-elements {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1279px) {
    .contacts-error .container {
        flex-direction: column;
        row-gap: 120px;
    }
}

@media only screen and (max-width: 1023px) {
    .contacts-error .container {
        row-gap: 100px;
    }
    .contacts-error .social-elements {
        margin-top: 30px;
        column-gap: 50px;
    }
    .contacts-error .social-elements a svg {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts-error .container {
        row-gap: 80px;
    }
    .contacts-error .social-elements {
        column-gap: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .contacts-error .container {
        row-gap: 60px;
    }
    .contacts-error .social-elements {
        column-gap: 20px;
    }
}

/* cookies-popup */

.cookies-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(25, 25, 25, .7);;
    z-index: 1004;
    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;
    transition: .3s;
    cursor: pointer;
    z-index: 2;
}

.cookies-popup-close:hover {
    background: #F0F0F2;
}

.cookies-popup-close svg {
    flex-shrink: 0;
}

.cookies-popup-box {
    position: relative;
    padding: 50px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 20px;
    width: 500px;
    background: #FFFFFF;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cookies-popup-box::-webkit-scrollbar {
    display: none;
}

.cookies-popup-box > svg {
    flex-shrink: 0;
}

.cookies-popup-title {
    color: #210E2D;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}

.cookies-popup-text {
    color: #191919;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.36px;
}

.cookies-popup-text a {
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: .2px;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: .3s;
}

.cookies-popup a:hover {
    color: #7231A3;
    text-decoration-color: transparent;
}

.cookies-popup .btn {
    margin-top: 20px;
    width: 200px;
    border: none;
}

@media only screen and (max-width: 767px) {
    .cookies-popup-box {
        padding: 50px 30px;
        width: 420px;
    }
    .cookies-popup-title {
        font-size: 26px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 479px) {
    .cookies-popup-box {
        padding: 40px 20px;
        width: calc(100% - 40px);
        row-gap: 15px;
    }
    .cookies-popup-box > svg {
        width: 52px;
        height: auto;
    }
    .cookies-popup-title {
        font-size: 20px;
        line-height: 30px;
    }
    .cookies-popup .btn {
        margin-top: 15px;
        width: 100%;
    }
}

/* cookies - commented after adding cookies-popup */

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(53, 38, 64, .95);
    border-top: 1px solid rgba(77, 72, 82, .9);
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    display: none;
    align-items: center;
    color: #EBEBEB;
    transition: .3s;
    z-index: 1006;
}

.cookies:hover {
    background: rgba(53, 38, 64, 1);
}

.cookies__wrapper {
    margin: 0 auto;
    padding: 7px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.cookies__text {
    display: inline-block;
}

.cookies__box {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.cookies a {
    font-weight: 500;
    font-size: inherit;
    line-height: inherit;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: inherit;
}

.cookies a:hover,
.cookies-cancel:hover {
    color: #8FC14F;
}

.cookies .btn {
    width: 50px;
    height: 31px;
    font-size: 14px;
    line-height: 14px;
}

.cookies-cancel {
    font-weight: 500;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: .3s;
}

@media only screen and (max-width: 1023px) {
    .cookies__wrapper {
        padding: 12px 30px;
        flex-direction: column;
        row-gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .cookies__wrapper {
        padding: 15px 0;
        width: 440px;
    }
}

@media only screen and (max-width: 479px) {
    .cookies__wrapper {
        width: 290px;
    }
}

/* sidebtns */

.sidebtns {
    position: fixed;
    left: 0;
    bottom: 295px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 2px solid #191919;
    background: #191919;
    row-gap: 2px;
    z-index: 998;
    transition: .3s;
}

.sidebtns.hide {
    transform: translateX(-345%);
}

.sidebtns__item {
    width: 56px;
    height: 56px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #FAFAFC;
    flex-shrink: 0;
    transition: .3s;
}

.sidebtns__item span {
    padding: 5px 10px;
    position: absolute;
    transform: translateX(-100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 170px;
    height: 100%;
    background: #242424;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-align: center;
    transition: .3s;
    z-index: 10;
}

.sidebtns__item span:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #FAFAFC;
}

.sidebtns__item:hover span {
    transform: translateX(0);
    left: 0;
}

.conf-animation svg {
    width: 20px;
    height: 20px;
    animation: rotation 7s linear infinite;
}

.sidebtns__item:last-child:hover {
    background: #242424;
}

.sidebtns__item:last-child:hover svg path {
    fill: #FFFFFF;
}

.sidebtns__item > img,
.sidebtnsmobile__item > img {
    width: 30px;
    height: 30px;
}

/* sidebtns mobile */

.sidebtnsmobile {
    display: none;
    border-top: 1px solid rgba(102, 102, 102, .6);
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: fixed;
    z-index: 1005;
}

.sidebtnsmobile__item {
    flex-shrink: 0;
    width: calc(100% / 6);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    background: rgba(255, 255, 255, .9);
    transition: .3s;
}

.sidebtnsmobile__item:not(:last-child) {
    border-right: 1px solid rgba(102, 102, 102, .5);
}

.sidebtnsmobile__item:hover {
    background: #191919;
}

.sidebtnsmobile__item:hover > svg path {
    fill: #FFFFFF;
}

@media only screen and (max-width: 1919px) {
    .sidebtns__item {
        width: 46px;
        height: 46px;
    }
    .sidebtns__item span:lang(es) {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .sidebtns {
        display: none;
    }
    .sidebtnsmobile {
        display: flex;
    }
    /* fix chat position */
    .wrap_c3b7 {
        bottom: 45px !important;
    }
    .wrap_c3b7 > .button_df6f {
        margin-bottom: 10px !important;
    }
    ._orientationRight_ff30 .button_df6f {
        margin-right: 10px !important;
    }
}

@media only screen and (max-width: 479px) {
    .sidebtnsmobile__item {
        width: calc(100% / 5);
    }
    .sidebtnsmobile__item:nth-child(3) {
        display: none;
    }
}

/* presentation side window */

.preswindow {
    padding: 38px;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-height: 290px;
    background: #242424;
    border: 2px solid #FAFAFC;
    transform: translateX(-105%);
    transition: .3s;
    z-index: 998;
}

.preswindow.active {
    transform: translateX(0);
}

.sidewindow-close {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    cursor: pointer;
}

.sidewindow-close:hover svg path {
    opacity: 1;
}

.preswindow > span {
    margin-top: 30px;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.preswindow-btns {
    position: absolute;
    left: 38px;
    bottom: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
}

.preswindow-btns > span {
    position: relative;
    flex-shrink: 0;
    max-width: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: .3s;
    cursor: pointer;
}

.preswindow-btns > span:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}

.preswindow-btns > span:hover {
    color: #8FC14F;
}

.preswindow-btns .btn--purple {
    width: 171px;
    height: 50px;
    font-size: 14px;
    line-height: 20px;
}

@media only screen and (max-width: 767px) {
    .preswindow {
        bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .preswindow {
        padding: 38px 18px;
        width: 320px;
        min-height: 260px;
    }
    .preswindow > span {
        margin-top: 20px;
        font-size: 20px;
        line-height: 30px;
    }
    .preswindow-btns {
        left: 18px;
        width: 280px;
    }
    .preswindow-btns .btn--purple {
        width: 146px;
    }
}

/* conf side window */

.confwindow {
    padding: 48px 38px 38px;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-height: 290px;
    background: #401661;
    border: 2px solid #FAFAFC;
    transform: translateX(-105%);
    transition: .3s;
    z-index: 998;
}

.confwindow.active {
    transform: translateX(0);
}

.confwindow-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.confwindow > span {
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.confwindow > a {
    position: absolute;
    left: 38px;
    bottom: 38px;
    width: 226px;
    height: 50px;
}

.confwindow > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 225px;
    height: 225px;
    opacity: .15;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    .confwindow {
        bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .confwindow {
        padding: 48px 18px 38px;
        width: 100%;
    }
    .confwindow > a {
        left: 18px;
        font-size: 16px;
        line-height: 16px;
    }
}

/* demo side window */

.demowindow {
    padding: 28px 38px 38px;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-height: 290px;
    background: #0A0A0A;
    border: 2px solid #FAFAFC;
    transform: translateX(-105%);
    transition: .3s;
    z-index: 998;
}

.demowindow.active {
    transform: translateX(0);
}

.demowindow > img {
    width: 60px;
    height: 60px;
}

.demowindow > span {
    margin-top: 18px;
    max-width: 250px;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    z-index: 1;
}

.demowindow > .btn {
    position: absolute;
    left: 38px;
    bottom: 38px;
    padding: 0 20px;
    width: auto;
    min-width: 167px;
    height: 50px;
}

.demowindow > .btn:before {
    content: '';
    position: absolute;
    left: -38px;
    bottom: 47px;
    width: 26px;
    height: 38px;
    background: url(/public/img/demowindow-img-3.svg) no-repeat;
    background-size: contain;
}

.demowindow::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 152px;
    height: 242px;
    background: url(/public/img/demowindow-img-1.svg) no-repeat;
    background-size: contain;
}

.demowindow::after {
    content: '';
    position: absolute;
    left: 83px;
    bottom: 0;
    width: 54px;
    height: 35px;
    background: url(/public/img/demowindow-img-2.svg) no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .demowindow {
        bottom: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .demowindow {
        padding: 28px 18px 38px;
        width: 100%;
        min-height: 260px;
    }
    .demowindow > img {
        width: 50px;
        height: 50px;
    }
    .demowindow > span {
        margin-top: 10px;
        max-width: 228px;
        font-size: 20px;
        line-height: 30px;
    }
    .demowindow > .btn {
        position: absolute;
        left: 18px;
        bottom: 38px;
        min-width: 153px;
    }
    .demowindow > .btn:before {
        display: none;
    }
    .demowindow::before {
        width: 116px;
        height: 185px;
    }
    .demowindow::after {
        left: 58px;
        width: 45px;
        height: 29px;
    }
}

/* pagination */

.pagination {
    margin-top: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
}

.pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border: 2px solid #666666;
    border-radius: 100%;
    font-weight: 500;
    font-size: 19px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #666666;
    transition: .3s;
    cursor: pointer;
}

.pagination-item:hover {
    border-color: #7231A3;
    color: #7231A3;
}

.pagination-item.active {
    background: #7231A3;
    border-color: #7231A3;
    color: #FFFFFF;
    pointer-events: none;
}

.pagination-item:hover svg path {
    fill: #7231A3;
}

@media only screen and (max-width: 1023px) {
    .pagination {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .pagination {
        column-gap: 5px;
    }
    .pagination-item {
        width: 46px;
        height: 46px;
    }
    .preswindow-btns {
        margin-top: 20px;
        display: flex;
        align-items: center;
        column-gap: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .pagination {
        position: relative;
        margin-top: 50px;
        column-gap: 12px;
    }
    .pagination.helper {
        margin-bottom: 61px;
        justify-content: space-between;
    }
    .pagination.helper .pagination-item.prev,
    .pagination.helper .pagination-item.next {
        position: absolute;
        top: calc(100% + 15px);
    }
    .pagination.helper .pagination-item.next {
        right: 0;
    }
}

/* sitemap */

.sitemap {
    padding-top: 0;
}

.sitemap__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
}

.sitemap__category > span {
    padding-bottom: 10px;
    display: block;
    border-bottom: 2px solid #191919;
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.sitemap__items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.sitemap__items > a,
.sitemap__item {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #191919;
}

.sitemap__items > a:hover,
.sitemap__subitems a:hover,
.sitemap__item:hover,
.sitemap__item.active {
    color: #7231A3;
}

.sitemap__item {
    display: flex;
    align-items: center;
    column-gap: 19px;
    cursor: pointer;
    transition: .3s;
}

.sitemap__item span {
    position: relative;
    left: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #191919;
    border-radius: 100%;
    transition: .3s;
}

.sitemap__item span:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: #191919;
    transition: .3s;
}

.sitemap__item span:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: #191919;
    transition: .3s;
}

.sitemap__item:hover span,
.sitemap__item.active span {
    border-color: #7231A3;
}

.sitemap__item:hover span:before,
.sitemap__item:hover span:after,
.sitemap__item.active span:before,
.sitemap__item.active span:after {
    background: #7231A3;
}

.sitemap__item.active span:after {
    transform: rotate(90deg);
}

.sitemap__subitems {
    margin-top: -20px;
    padding-left: 39px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.sitemap__item.active + .sitemap__subitems {
    margin-top: 0;
    max-height: 10000px;
    visibility: visible;
    opacity: 1;
}

.sitemap__subitems a {
    padding-left: 23px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #191919;
    display: none;
}

.sitemap__item.active + .sitemap__subitems a {
    display: block;
}

.sitemap__subitems a:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #191919;
    border-radius: 100%;
    transition: .3s;
}

.sitemap__subitems a:hover:before {
    background: #7231A3;
}

@media only screen and (max-width: 1023px) {
    .sitemap__wrapper {
        row-gap: 60px;
    }
    .sitemap__items {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .sitemap__wrapper {
        row-gap: 50px;
    }
    .sitemap__category > span {
        font-size: 24px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 479px) {
    .sitemap__subitems {
        padding-left: 0;
    }
}

/* gsamples section */

.gsamples {
    background: #0A0A0A;
}

.gsamples .title {
    margin-bottom: 80px;
}

.gsamples__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.gsamples__wrapper > .btn__wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    flex-direction: column;
    row-gap: 20px;
}

.gsamples__list {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.gsamples__list-item {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
    cursor: pointer;
    transition: .3s;
}

.gsamples__list-item.active {
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: #FFFFFF;
    pointer-events: none;
}

.gsamples__list-item:hover {
    color: #FFFFFF;
}

.gsamples__list-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}

.gsamples__item {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 845px;
    height: 525px;
    cursor: pointer;
    transition: .3s;
}

.gsamples__item.active {
    display: flex;
    animation: fadeIn .6s linear;
}

.gsamples__item img {
    width: 100%;
    transition: .3s;
}

.gsamples__item:hover img {
    filter: brightness(.6);
}

.gsamples__item:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2LjY2NjcgNi42NjY1QzUzLjIyNjcgNi42NjY1IDY2LjY2NjggMjAuMTA2NSA2Ni42NjY4IDM2LjY2NjVDNjYuNjY2OCA1My4yMjY1IDUzLjIyNjcgNjYuNjY2NSAzNi42NjY3IDY2LjY2NjVDMjAuMTA2NyA2Ni42NjY1IDYuNjY2NzUgNTMuMjI2NSA2LjY2Njc1IDM2LjY2NjVDNi42NjY3NSAyMC4xMDY1IDIwLjEwNjcgNi42NjY1IDM2LjY2NjcgNi42NjY1Wk0zNi42NjY3IDU5Ljk5OThDNDkuNTU2OCA1OS45OTk4IDYwLjAwMDEgNDkuNTU2NSA2MC4wMDAxIDM2LjY2NjVDNjAuMDAwMSAyMy43NzMyIDQ5LjU1NjggMTMuMzMzMiAzNi42NjY3IDEzLjMzMzJDMjMuNzczNCAxMy4zMzMyIDEzLjMzMzQgMjMuNzczMiAxMy4zMzM0IDM2LjY2NjVDMTMuMzMzNCA0OS41NTY1IDIzLjc3MzQgNTkuOTk5OCAzNi42NjY3IDU5Ljk5OThaTTY0Ljk1MDEgNjAuMjM2NUw3NC4zODAxIDY5LjY2MzJMNjkuNjYzNCA3NC4zNzk4TDYwLjIzNjcgNjQuOTQ5OEw2NC45NTAxIDYwLjIzNjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") no-repeat center;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1;
}

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

.gsamples__item:first-child {
    background: rgba(74, 88, 110, 1);
}

.gsamples__item:first-child:hover {
    background: rgba(74, 88, 110, .6);
}

.gsamples__item:nth-child(2) {
    background: rgba(70, 167, 152, 1);
}

.gsamples__item:nth-child(2):hover {
    background: rgba(70, 167, 152, .6);
}

.gsamples__item:nth-child(3) {
    background: rgba(165, 83, 166, 1);
}

.gsamples__item:nth-child(3):hover {
    background: rgba(165, 83, 166, .6);
}

.gsamples__item:nth-child(4) {
    background: rgba(229, 195, 125, 1);
}

.gsamples__item:nth-child(4):hover {
    background: rgba(229, 195, 125, .6);
}

.gsamples__item:nth-child(5) {
    background: rgba(90, 70, 167, 1);
}

.gsamples__item:nth-child(5):hover {
    background: rgba(90, 70, 167, .6);
}

.gsamples__item:last-child {
    background: rgba(97, 102, 128, 1);
}

.gsamples__item:last-child:hover {
    background: rgba(97, 102, 128, .6);
}

.gsamples-more {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .gsamples .title {
        margin-bottom: 60px;
    }
    .gsamples__list {
        row-gap: 25px;
    }
    .gsamples__item {
        width: 743px;
        height: 462px;
    }
}

@media only screen and (max-width: 1279px) {
    .gsamples {
        padding-bottom: 230px;
    }
    .gsamples__item {
        width: 510px;
        height: 317px;
    }
    .gsamples__list {
        row-gap: 30px;
    }
    .gsamples__wrapper > .btn__wrapper {
        bottom: -110px;
        left: unset;
        right: 0;
        flex-direction: row;
    }
}

@media only screen and (max-width: 1023px) {
    .gsamples {
        padding-bottom: 100px;
    }
    .gsamples__wrapper {
        flex-direction: column;
        row-gap: 80px;
    }
    .gsamples__item {
        width: 100%;
        height: 415px;
    }
    .gsamples__list {
        gap: 30px 22px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .gsamples__list-item {
        width: 150px;
    }
    .gsamples__wrapper > .btn__wrapper {
        position: static;
        margin-top: -20px;
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .gsamples {
        padding-bottom: 80px;
    }
    .gsamples .title {
        margin-bottom: 50px;
    }
    .gsamples__wrapper {
        row-gap: 50px;
    }
    .gsamples__list {
        display: none;
    }
    .gsamples__items {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    .gsamples__item {
        display: flex;
        background: none !important;
        width: 200px;
        height: 433px;
        flex-shrink: 0;
    }
    .gsamples__item:before {
        width: 50px;
        height: 50px;
    }
    .gsamples__wrapper > .btn__wrapper {
        margin-top: unset;
        flex-direction: column;
        row-gap: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .gsamples {
        padding-bottom: 60px;
    }
    .gsamples .container {
        width: calc(100% - 40px);
    }
    .gsamples__items {
        justify-content: center;
    }
    .gsamples__item {
        width: calc(100% - 20px);
        height: auto;
    }
    .gsamples__item picture {
        width: 100%;
    }
    .gsamples__item:nth-last-child(-n+3) {
        display: none;
    }
    .gsamples__items.active .gsamples__item:nth-child(n) {
        display: flex;
    }
    .gsamples__wrapper > .btn__wrapper {
        row-gap: 20px;
    }
    .gsamples-more {
        position: relative;
        display: flex;
        align-items: center;
        column-gap: 12px;
        cursor: pointer;
    }
    .gsamples-more:hover span {
        color: #FFFFFF;
    }
    .gsamples-more:hover svg path {
        fill: #FFFFFF;
    }
    .gsamples-more:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 20px);
        height: calc(100% + 30px);
    }
    .gsamples-more span {
        font-weight: 500;
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #999999;
        transition: .3s;
    }
    .gsamples__items.active + .gsamples-more span:nth-child(2) {
        display: block;
    }
    .gsamples__items.active + .gsamples-more span:nth-child(1),
    .gsamples-more span:nth-child(2) {
        display: none;
    }
    .gsamples__items.active + .gsamples-more svg {
        transform: scale(-1);
    }
}

/* gsamples slider */

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

.gsamples__hidden.active {
    display: flex;
}

.gsamples__hidden::-webkit-scrollbar {
    display: none;
}

.gsamples__hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gsamples__overlay {
    background: rgba(25, 25, 25, .8);
    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;
    background: #8D8F99;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: .3s;
}

.gsamples__close:hover {
    background: #FFFFFF;
}

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

.gsamples__slider-nav {
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.gsamples__slider-arrow {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid #FFFFFF;
    transition: .3s;
}

.gsamples__slider-arrow:hover {
    border-color: #8FC14F;
}

.gsamples__slider-arrow:hover svg path {
    fill: #8FC14F;
}

.gsamples__slider-arrow[data-slider="slickPrev"]:after,
.gsamples__slider-arrow[data-slider="slickNext"]:after {
    content: '';
    position: absolute;
    width: 299px;
    height: 460px;
}

.gsamples__slider-arrow[data-slider="slickPrev"]:after {
    left: -102px;
}

.gsamples__slider-arrow[data-slider="slickNext"]:after {
    right: -102px;
}

.gsamples__slider {
    width: 1000px;
    z-index: 2;
}

.gsamples__slider-item:not(:last-child) > img {
    width: 100%;
}

.gsamples__slider-item img {
    border: 1px solid #4D4D4D;
}

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

.gsamples__otherproj-samples img {
    width: 300px;
    flex-shrink: 0;
    cursor: pointer;
    transition: .3s;
}

.gsamples__otherproj-samples img:hover {
    border-color: #8FC14F;
}

.gsamples__top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #13141D 0%, rgba(19, 20, 29, 0) 100%);
    z-index: 1;
}

.gsamples__control {
    position: fixed;
    top: 40px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    z-index: 2;
}
.gsamples__control-prev,
.gsamples__control-next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.gsamples__control-prev:after,
.gsamples__control-next:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%,-50%);
}
.gsamples__control-prev:hover svg path,
.gsamples__control-next:hover svg path {
    fill: #FFFFFF;
}
.gsamples__control span {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

@media only screen and (max-width: 1919px) {
    .gsamples__slider-nav {
        width: 1200px;
    }
    .gsamples__hidden {
        padding: 0 0 80px;
        top: 80px;
        height: calc(100vh - 80px);
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after,
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        width: 140px;
        height: 400px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after {
        left: -43px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        right: -43px;
    }
}

@media only screen and (max-width: 1279px) {
    .gsamples__slider-nav {
        width: 944px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after,
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        width: 131px;
    }
    .gsamples__slider {
        width: 760px;
    }
    .gsamples__otherproj-samples img {
        width: 230px;
    }
}

@media only screen and (max-width: 1023px) {
    .gsamples__top-line {
        height: 100px;
    }
    .gsamples__close {
        width: 60px;
        height: 60px;
        cursor: default;
    }
    .gsamples__slider-arrow {
        cursor: default;
    }
    .gsamples__slider-nav {
        width: 688px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after,
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        width: 132px;
    }
    .gsamples__slider {
        width: 500px;
    }
    .gsamples__otherproj-samples img {
        width: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .gsamples__hidden {
        padding: 0 0 60px;
        top: 60px;
        height: calc(100vh - 60px);
    }
    .gsamples__top-line {
        height: 80px;
    }
    .gsamples__slider {
        width: 300px;
    }
    .gsamples__slider-nav {
        width: 420px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after,
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        width: 80px;
        height: 340px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after {
        left: -23px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        right: -23px;
    }
    .gsamples__otherproj-samples img {
        width: 70px;
    }
    .gsamples__control {
        top: 30px;
    }
    .gsamples__control-prev,
    .gsamples__control-next {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .gsamples__hidden {
        padding: 0 0 50px;
        top: 50px;
        height: calc(100vh - 50px);
    }
    .gsamples__slider {
        width: calc(100vw - 110px);
    }
    .gsamples__slider-nav {
        width: calc(100% - 30px);
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after,
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        width: 57px;
    }
    .gsamples__slider-arrow[data-slider="slickPrev"]:after {
        left: -19px;
    }
    .gsamples__slider-arrow[data-slider="slickNext"]:after {
        right: -19px;
    }
    .gsamples__slider-arrow {
        width: 40px;
        height: 40px;
    }
    .gsamples__slider-arrow svg {
        width: 20px;
        height: 9px;
    }
    .gsamples__otherproj-samples img {
        width: calc((100vw - 140px) / 3);
    }
    .gsamples__control {
        top: 20px;
        left: 20px;
    }
    .gsamples__close {
        width: 50px;
        height: 50px;
    }
}

#at-expanded-menu-host .at-expanded-menu-service-list {
    display: block;
}

.at-expanding-share-button-toggle {
    display: none;
}

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

.download-link .tooltip--copied.active {
    visibility: unset;
    opacity: 1;
    display: flex;
}

/* awards */

.awards {
    padding-top: 0;
}

.awards__items {
    margin-top: 80px;
    display: flex;
    gap: 60px 166px;
    flex-wrap: wrap;
}

.awards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    width: 154px;
}

.awards__item > img {
    width: 100%;
    height: auto;
}

.awards__item > span {
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

@media only screen and (max-width: 1919px) {
    .awards__items {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1279px) {
    .awards__items {
        column-gap: 102px;
    }
}

@media only screen and (max-width: 1023px) {
    .awards__items {
        gap: 50px 103px;
    }
}

@media only screen and (max-width: 767px) {
    .awards__items {
        margin: 50px auto 0;
        width: 380px;
        column-gap: 72px;
    }
    .awards__item {
        row-gap: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .awards__items {
        width: calc(100% - 20px);
        gap: 40px 20px;
        justify-content: space-around;
    }
    .awards__item {
        row-gap: 10px;
        width: min(calc((100% - 20px) / 2), 154px);
    }
    .awards__item > span {
        padding: unset;
        font-size: 13px;
        line-height: 20px;
    }
}

/* back office */

.backoffice {
    background: #F0F0F2;
}

.backoffice .title {
    margin-bottom: 80px;
}

.backoffice__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.backoffice__wrapper > .btn__wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    flex-direction: column;
    row-gap: 20px;
}

.backoffice__list {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.backoffice__list-item {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    cursor: pointer;
    transition: .3s;
}

.backoffice__list-item.active {
    text-decoration-line: underline;
    text-underline-offset: 3px;
    color: #7231A3;
    pointer-events: none;
}

.backoffice__list-item:hover {
    color: #7231A3;
}

.backoffice__list-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
}

.backoffice__item {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 450px;
    cursor: pointer;
    transition: .3s;
}

.backoffice__item.active {
    display: flex;
    animation: fadeIn .6s linear;
}

.backoffice__item:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2LjY2NjcgNi42NjY1QzUzLjIyNjcgNi42NjY1IDY2LjY2NjggMjAuMTA2NSA2Ni42NjY4IDM2LjY2NjVDNjYuNjY2OCA1My4yMjY1IDUzLjIyNjcgNjYuNjY2NSAzNi42NjY3IDY2LjY2NjVDMjAuMTA2NyA2Ni42NjY1IDYuNjY2NzUgNTMuMjI2NSA2LjY2Njc1IDM2LjY2NjVDNi42NjY3NSAyMC4xMDY1IDIwLjEwNjcgNi42NjY1IDM2LjY2NjcgNi42NjY1Wk0zNi42NjY3IDU5Ljk5OThDNDkuNTU2OCA1OS45OTk4IDYwLjAwMDEgNDkuNTU2NSA2MC4wMDAxIDM2LjY2NjVDNjAuMDAwMSAyMy43NzMyIDQ5LjU1NjggMTMuMzMzMiAzNi42NjY3IDEzLjMzMzJDMjMuNzczNCAxMy4zMzMyIDEzLjMzMzQgMjMuNzczMiAxMy4zMzM0IDM2LjY2NjVDMTMuMzMzNCA0OS41NTY1IDIzLjc3MzQgNTkuOTk5OCAzNi42NjY3IDU5Ljk5OThaTTY0Ljk1MDEgNjAuMjM2NUw3NC4zODAxIDY5LjY2MzJMNjkuNjYzNCA3NC4zNzk4TDYwLjIzNjcgNjQuOTQ5OEw2NC45NTAxIDYwLjIzNjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") no-repeat center;
    background-size: contain;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1;
}

.backoffice__item:hover:before {
    visibility: visible;
    opacity: 1;
}

.backoffice-more {
    display: none;
}

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

    .backoffice__list {
        row-gap: 25px;
    }

    .backoffice__item {
        width: 743px;
        height: 418px;
    }
}

@media only screen and (max-width: 1279px) {
    .backoffice {
        padding-bottom: 230px;
    }
    .backoffice__item {
        width: 510px;
        height: 287px;
    }
    .backoffice__list {
        row-gap: 30px;
    }
    .backoffice__wrapper > .btn__wrapper {
        bottom: -110px;
        left: unset;
        right: 0;
        flex-direction: row;
    }
}

@media only screen and (max-width: 1023px) {
    .backoffice {
        padding-bottom: 100px;
    }
    .backoffice__wrapper {
        flex-direction: column;
        row-gap: 80px;
    }
    .backoffice__item {
        width: 100%;
        height: 376px;
    }
    .backoffice__list {
        gap: 30px 22px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .backoffice__list-item {
        width: 150px;
    }
    .backoffice__wrapper > .btn__wrapper {
        position: static;
        margin-top: -20px;
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .backoffice {
        padding-bottom: 80px;
    }
    .backoffice .title {
        margin-bottom: 50px;
    }
    .backoffice__wrapper {
        row-gap: 50px;
    }
    .backoffice__list {
        display: none;
    }
    .backoffice__items {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 20px;
    }
    .backoffice__item {
        display: flex;
        flex-shrink: 0;
        width: 200px;
        height: 433px;
    }
    .backoffice__item:before {
        width: 50px;
        height: 50px;
    }
    .backoffice__wrapper > .btn__wrapper {
        margin-top: unset;
        flex-direction: column;
        row-gap: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .backoffice {
        padding-bottom: 60px;
    }
    .backoffice .container {
        width: calc(100% - 40px);
    }
    .backoffice__items {
        justify-content: center;
    }
    .backoffice__item {
        width: calc(100vw - 60px);
        height: auto;
    }
    .backoffice__item :where(picture, img) {
        width: 100%;
    }
    .backoffice__item:nth-last-child(-n+1) {
        display: none;
    }
    .backoffice__items.active .backoffice__item:nth-child(n) {
        display: flex;
    }
    .backoffice-more {
        position: relative;
        display: flex;
        align-items: center;
        column-gap: 12px;
        cursor: pointer;
    }
    .backoffice-more:hover span {
        color: #7231A3;
    }
    .backoffice-more:hover svg path {
        fill: #7231A3;
    }
    .backoffice-more:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 20px);
        height: calc(100% + 30px);
    }
    .backoffice-more span {
        font-weight: 500;
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #999999;
        transition: .3s;
    }
    .backoffice__items.active + .backoffice-more span:nth-child(2) {
        display: block;
    }
    .backoffice__items.active + .backoffice-more span:nth-child(1),
    .backoffice-more span:nth-child(2) {
        display: none;
    }
    .backoffice__items.active + .backoffice-more svg {
        transform: scale(-1);
    }
    .backoffice__wrapper > .btn__wrapper {
        row-gap: 20px;
    }
}

/* backoffice slider */

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

.backoffice__hidden.active {
    display: flex;
}

.backoffice__hidden::-webkit-scrollbar {
    display: none;
}

.backoffice__hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.backoffice__overlay {
    background: rgba(25, 25, 25, .8);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

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

.backoffice__close:hover {
    background: #FFFFFF;
}

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

.backoffice__slider-nav {
    position: fixed;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.backoffice__slider-arrow {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid #FFFFFF;
    transition: .3s;
}

.backoffice__slider-arrow:hover {
    border-color: #8FC14F;
}

.backoffice__slider-arrow:hover svg path {
    fill: #8FC14F;
}

.backoffice__slider-arrow[data-slider="slickPrev"]:after,
.backoffice__slider-arrow[data-slider="slickNext"]:after {
    content: '';
    position: absolute;
    width: 299px;
    height: 460px;
}

.backoffice__slider-arrow[data-slider="slickPrev"]:after {
    left: -102px;
}

.backoffice__slider-arrow[data-slider="slickNext"]:after {
    right: -102px;
}

.backoffice__slider {
    width: 1000px;
    z-index: 2;
}

.backoffice__slider-item > img {
    width: 100%;
}

.backoffice__top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #13141D 0%, rgba(19, 20, 29, 0) 100%);
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .backoffice__slider-nav {
        width: 1200px;
    }
    .backoffice__hidden {
        padding: 0 0 80px;
        top: 80px;
        height: calc(100vh - 80px);
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after,
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        width: 140px;
        height: 400px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after {
        left: -43px;
    }
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        right: -43px;
    }
}

@media only screen and (max-width: 1279px) {
    .backoffice__slider-nav {
        width: 944px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after,
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        width: 131px;
    }
    .backoffice__slider {
        width: 760px;
    }
}

@media only screen and (max-width: 1023px) {
    .backoffice__top-line {
        height: 100px;
    }
    .backoffice__close {
        width: 60px;
        height: 60px;
        cursor: default;
    }
    .backoffice__slider-arrow {
        cursor: default;
    }
    .backoffice__slider-nav {
        width: 688px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after,
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        width: 132px;
    }
    .backoffice__slider {
        width: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .backoffice__hidden {
        padding: 0 0 60px;
        top: 60px;
        height: calc(100vh - 60px);
    }
    .backoffice__top-line {
        height: 80px;
    }
    .backoffice__slider {
        width: 300px;
    }
    .backoffice__slider-nav {
        width: 420px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after,
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        width: 80px;
        height: 340px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after {
        left: -23px;
    }
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        right: -23px;
    }
}

@media only screen and (max-width: 479px) {
    .backoffice__hidden {
        padding: 0 0 50px;
        top: 50px;
        height: calc(100vh - 50px);
    }
    .backoffice__slider {
        width: calc(100vw - 110px);
    }
    .backoffice__slider-nav {
        width: calc(100% - 30px);
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after,
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        width: 57px;
    }
    .backoffice__slider-arrow[data-slider="slickPrev"]:after {
        left: -19px;
    }
    .backoffice__slider-arrow[data-slider="slickNext"]:after {
        right: -19px;
    }
    .backoffice__slider-arrow {
        width: 40px;
        height: 40px;
    }
    .backoffice__slider-arrow svg {
        width: 20px;
        height: 9px;
    }
    .backoffice__close {
        width: 50px;
        height: 50px;
    }
}

/* team */

.team__items {
    margin-top: 80px;
    display: flex;
    gap: 60px 94px;
    flex-wrap: wrap;
}

.team__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team__item:nth-child(-n+3):not(:first-child) {
    padding-left: 22px;
}

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

.team__items.active .team__item:nth-child(n) {
    display: flex;
}

.team__item .name {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.team__item .position {
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #666666;
}

.team__item:nth-child(-n+3) .name {
    margin-top: 30px;
    font-size: 20px;
    line-height: 32px;
}

.team__item:nth-child(-n+3) .position {
    font-size: 16px;
    line-height: 24px;
}

.team__item img {
    filter: grayscale(1);
    transition: .3s;
}

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

.team-more {
    position: relative;
    margin-top: 80px;
    padding-left: 20px;
    cursor: pointer;
}

.team-more:hover span {
    color: #7231A3;
}

.team-more:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
    height: calc(100% + 30px);
}

.team-more span {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
    color: #666666;
    transition: .3s;
}

.team__items.active + .team-more span:nth-child(2) {
    display: block;
}

.team__items.active + .team-more span:nth-child(1),
.team-more span:nth-child(2) {
    display: none;
}

.inmedia__items.active + .team-more span:nth-child(2) {
    display: block;
}

.inmedia__items.active + .team-more span:nth-child(1) {
    display: none;
}

@media only screen and (max-width: 1919px) {
    .team__items {
        margin-top: 60px;
        column-gap: 60px;
    }
    .team__item:nth-child(-n+3):not(:first-child) {
        padding-left: 5px;
    }
    .team-more {
        padding-left: unset;
    }
}

@media only screen and (max-width: 1279px) {
    .team__items {
        column-gap: 41px;
    }
    .team__item {
        width: 200px;
    }
    .team__item:nth-child(-n+3):not(:first-child) {
        padding-left: 1px;
    }
    .team__item:nth-child(-n+3) {
        width: 280px;
    }
    .team__item img {
        width: 200px;
        height: 200px;
        filter: unset;
    }
    .team__item:nth-child(-n+3) img {
        width: 280px;
        height: 280px;
    }
}

@media only screen and (max-width: 1023px) {
    .team__items {
        gap: 50px 36px;
    }
    .team__item {
        width: 140px;
    }
    .team__item:nth-child(-n+3):not(:first-child) {
        padding-left: unset;
        margin-left: -2px;
    }
    .team__item:nth-child(-n+3) {
        width: 200px;
    }
    .team__item img {
        width: 140px;
        height: 140px;
    }
    .team__item:nth-child(-n+3) img {
        width: 200px;
        height: 200px;
    }
    .team__item .name {
        font-size: 13px;
        line-height: 22px;
    }
    .team__item .position {
        font-size: 12px;
        line-height: 18px;
    }
    .team__item:nth-child(-n+3) .name {
        font-size: 16px;
        line-height: 24px;
    }
    .team__item:nth-child(-n+3) .position {
        font-size: 14px;
        line-height: 20px;
    }
    .team-more {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .team__items {
        margin-top: 50px;
        gap: 40px 15px;
    }
    .team__item:nth-child(-n+3):not(:first-child) {
        margin-left: unset;
    }
    .team__item,
    .team__item:nth-child(-n+3) {
        width: 130px;
    }
    .team__item img,
    .team__item:nth-child(-n+3) img {
        width: 130px;
        height: 130px;
    }
    .team__item .name {
        margin-top: 30px;
    }
    .team__item:nth-child(-n+3) .name {
        font-size: 13px;
        line-height: 22px;
    }
    .team__item:nth-child(-n+3) .position {
        font-size: 12px;
        line-height: 18px;
    }
    .team-more {
        margin-top: 50px;
    }
    .team__item:not(:nth-child(-n+6)) {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .team__items {
        margin: 50px auto 0;
        width: calc(100% - 5px);
    }
    .team__item,
    .team__item:nth-child(-n+3) {
        width: calc((100% - 15px) / 2);
    }
    .team__item img, 
    .team__item:nth-child(-n+3) img {
        width: 100%;
        height: 100%;
    }
}

/* inmedia section */

.inmedia__items {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.inmedia__item {
    padding: 48px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 40px;
    width: 625px;
    min-height: 236px;
    background: #FAFAFC;
    border: 2px solid #E6E6E6;
    transition: .3s;
}

.inmedia__item:not(:nth-child(-n+4)) {
    display: none;
}

.inmedia__items.active .inmedia__item:nth-child(n) {
    display: flex;
}

.inmedia__item > span {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
    transition: .3s;
}

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

.inmedia__item-link > span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    text-underline-offset: 4px;
    color: #666666;
    transition: .3s;
}

.inmedia__item:hover {
    border-color: #666666;
}

.inmedia__item:hover > span,
.inmedia__item:hover .inmedia__item-link > span {
    color: #7231A3;
}

.inmedia__item:hover .inmedia__item-link svg path {
    fill: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .inmedia__items {
        margin-top: 60px;
    }
    .inmedia__item {
        row-gap: 30px;
        width: 575px;
    }
}

@media only screen and (max-width: 1279px) {
    .inmedia__items {
        row-gap: 56px;
    }
    .inmedia__item {
        padding: 38px 28px;
        width: 447px;
    }
    .inmedia__item > span {
        font-size: 20px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 1023px) {
    .inmedia__items {
        row-gap: 30px;
    }
    .inmedia__item {
        width: 100%;
        min-height: 202px;
    }
}

@media only screen and (max-width: 767px) {
    .inmedia__items {
        margin-top: 50px;
    }
    .inmedia__item {
        padding: 28px;
        row-gap: 20px;
        min-height: 206px;
    }
}

@media only screen and (max-width: 479px) {
    .inmedia__items {
        row-gap: 20px;
    }
    .inmedia__item {
        padding: 28px 18px;
        row-gap: 15px;
        min-height: 189px;
    }
    .inmedia__item > span {
        font-size: 18px;
        line-height: 30px;
    }
}

/* feedback section */

.feedback .static-form__wrapper {
    margin: 80px 0 0;
}

.feedback .static-form__wrapper #preloader {
    margin-left: unset;
}

@media only screen and (max-width: 1919px) {
    .feedback .static-form__wrapper {
        margin-top: 60px;
        width: 100%;
    }
    .feedback .static-form {
        width: 845px;
    }
    .feedback .thks-msg__title {
        max-width: 800px;
    }
}

@media only screen and (max-width: 1023px) {
    .feedback .static-form {
        width: 100%
    }
    .feedback .thks-msg__title {
        max-width: unset;
    }
}

@media only screen and (max-width: 767px) {
    .feedback .static-form__wrapper {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .feedback .thks-msg .btn.reload {
        width: 100%;
    }
}

/* best-articles */

.best-articles {
    position: sticky;
    top: 140px;
}

.best-articles-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #191919;
}

.best-article-items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.best-article-items > a {
    position: relative;
    padding-left: 23px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #666666;
    transition: .3s;
}

.best-article-items > a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #191919;
}

.best-article-items > a:hover {
    color: #7231A3;
}

.best-article-items > a:hover:before {
    background: #7231A3;
}

@media only screen and (max-width: 1919px) {
    .best-articles {
        top: 110px;
    }
}

@media only screen and (max-width: 1023px) {
    .best-articles {
        position: static;
    }
}

/* infographic trends */

.trends {
    margin-bottom: 50px;
    padding-top: 60px;
    background: #FFF;
}

.trends b {
    font-weight: 700;
}

.trends-box {
    padding: 0 40px;
    width: 100%;
}

.trends-title {
    margin-bottom: 60px;
    color: #191919;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.trends-box > img {
    margin: 0 auto;
    display: flex;
}

.trends-text {
    margin-top: 60px;
    color: #191919;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.44px;
}

.trends-info {
    margin-top: 60px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    column-gap: 35px;
    background: #E4F4FD;
}

.trends-info-text {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.trends-info-text > p {
    margin: 0;
    color: #191919;
    font-size: 24px;
    line-height: 38px;
    letter-spacing: 0.48px;
}

.trends-info:last-child .trends-info-text > p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.44px;
}

.trends-subtitle {
    margin: 60px 0 50px;
    color: #191919;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.56px;
}

.trends-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.trends-list li {
    padding-left: 37px;
    color: #191919;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.44px;
}

.trends ol li::before {
    position: absolute;
    left: 0;
    color: #191919;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.44px;
}

@media only screen and (max-width: 1919px) {
    .trends-text {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.36px;
    }
    .trends-info-text > p {
        font-size: 22px;
        line-height: 34px;
        letter-spacing: 0.44px;
    }
    .trends-list li {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.36px;
    }
    .trends ol li::before {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.36px;
    }
}

@media only screen and (max-width: 1023px) {
    .trends-box:first-child > img {
        width: 400px;
        height: auto;
    }
    .trends-text {
        margin-top: 50px;
    }
    .trends-info {
        margin-top: 50px;
        padding: 50px 40px;
        column-gap: 30px;
    }
    .trends-info img {
        width: 150px;
        height: auto;
    }
    .trends-info-text {
        row-gap: 20px;
    }
    .trends-info-text > p,
    .trends-info:last-child .trends-info-text > p {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0.4px;
    }
    .trends-subtitle {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .trends {
        padding-top: 40px;
    }
    .trends-box {
        padding: 0 20px;
    }
    .trends-title {
        margin-bottom: 40px;
        font-size: 24px;
        line-height: 44px;
        letter-spacing: 0.48px;
    }
    .trends-box:nth-child(n) > img {
        width: 280px;
    }
    .trends-text {
        margin-top: 40px;
    }
    .trends-info {
        margin-top: 40px;
        padding: 40px 20px;
        flex-direction: column;
        row-gap: 20px;
    }
    .trends-subtitle {
        margin: 40px 0;
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 0.48px;
    }
    .trends-list {
        margin-top: 30px;
    }
    .trends-list li {
        padding-left: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .trends {
        margin-bottom: 40px;
    }
    .trends-title {
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 40px;
        letter-spacing: 0.44px;
    }
    .trends-box:nth-child(n) > img {
        width: 220px;
    }
    .trends-text {
        margin-top: 30px;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.32px;
    }
    .trends-info {
        margin-top: 30px;
        padding: 30px 20px;
    }
    .trends-info-text > p, 
    .trends-info:last-child .trends-info-text > p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.32px;
    }
    .trends-subtitle {
        margin: 30px 0 20px;
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.44px;
    }
    .trends-subtitle + img {
        width: 260px !important;
    }
    .trends-list {
        row-gap: 20px;
    }
    .trends-list li {
        padding-left: 22px;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.32px;
    }
    .trends ol li::before {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.32px;
    }
}

.sharing_popup {
    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_popup.active {
    display: flex;
}

@media only screen and (max-height: 800px) {
    .sharing_popup {
        align-items: flex-start;
    }
}

.sharing_popup * {
    box-sizing: border-box;
}

.sharing_popup svg {
    flex-shrink: 0;
}

.sharing_popup svg,
.sharing_popup 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-evenly;
    }
    .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;
    }
}

/* certificates */

.certificates {
    padding-bottom: 130px;
}

.certificates .container {
    padding: 0;
    width: 1720px;
}

.certificates-title {
    margin-bottom: 80px;
    color: #191919;
    font-size: 90px;
    line-height: 120px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.certificates__slider-item {
    margin-right: 30px;
    width: 407px;
    height: 288px;
}

.certificates__slider-item > img {
    width: 100%;
    height: 100%;
}

.certificates .slider-nav {
    margin-top: 80px;
}

.certificates .slider__wrapper {
    padding-bottom: 130px;
}

@media only screen and (max-width: 1919px) {
    .certificates .container {
        width: 1180px;
    }
    .certificates-title {
        font-size: 60px;
        line-height: 90px;
        letter-spacing: 1.2px;
    }
    .certificates__slider-item {
        margin-right: 40px;
        width: 367px;
        height: 259px;
    }
}

@media only screen and (max-width: 1279px) {
    .certificates {
        padding-bottom: 120px;
    }
    .certificates .container {
        width: 924px;
    }
    .certificates-title {
        margin-bottom: 60px;
        font-size: 50px;
        line-height: 80px;
        letter-spacing: 1px;
    }
    .certificates__slider-item {
        margin-right: 30px;
        width: 447px;
        height: 316px;
    }
}

@media only screen and (max-width: 1023px) {
    .certificates {
        padding-bottom: 100px;
    }
    .certificates .container {
        width: 668px;
    }
    .certificates-title {
        font-size: 40px;
        line-height: 66px;
        letter-spacing: 0.8px;
    }
    .certificates__slider-item {
        margin-right: 30px;
        width: 319px;
        height: 226px;
    }
}

@media only screen and (max-width: 767px) {
    .certificates {
        padding-bottom: 80px;
    }
    .certificates .container {
        width: 420px;
    }
    .certificates-title {
        margin-bottom: 50px;
        font-size: 36px;
        line-height: 58px;
        letter-spacing: 0.72px;
    }
    .certificates__slider-item {
        width: 420px;
        height: 297px;
    }
    .certificates .slider-nav {
        margin-top: 50px;
    }
    .certificates .slider__wrapper {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 479px) {
    .certificates {
        padding-bottom: 60px;
    }
    .certificates .container {
        width: calc(100% - 40px);
    }
    .certificates-title {
        font-size: 28px;
        line-height: 42px;
        letter-spacing: 0.56px;
    }
    .certificates__slider-item {
        width: calc(100vw - 40px);
        height: 198px;
    }
}

@media only screen and (width < 768px) {
    .wrap_c3ae {
        z-index: 1001 !important;
    }
    ._orientationRight_ca36 .button_db21 {
        margin-right: 5px !important;
        margin-bottom: 47px !important;
    }
}

@media only screen and (width < 768px) {
    ._orientationRight_b090 .button_eba0 {
        margin-right: 5px !important;
        margin-bottom: 50px !important;
    }
    .wrap_c579 {
        z-index: 1004 !important;
    }
}

/* crypto infographic */

.crypto {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    background: #191919;
}

.crypto-item {
    position: relative;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.crypto-item:last-child {
    background: #292929;
}

.crypto-item > :where(img, svg) {
    position: absolute;
    bottom: 0;
    right: 0;
}

.crypto-item-title {
    color: #FFF;
    font-size: 46px;
    line-height: 72px;
    letter-spacing: 0.92px;
    text-transform: uppercase;
    z-index: 1;
}

.crypto-item-title > span {
    color: #BE69FE;
}

.crypto-statistics {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    z-index: 1;
}

.crypto-statistics-item {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.crypto-statistics-value {
    position: relative;
    padding: 10px;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.8px;
    z-index: 1;
}

.crypto-statistics-value > svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.crypto-statistics-item:nth-child(2) .crypto-statistics-value {
    border: none;
    background: #954BCD;
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.crypto-statistics-text {
    color: #FFF;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.48px;
}

.crypto-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 105px;
    z-index: 1;
}

@media only screen and (width < 1920px) {
    .crypto-item-title {
        font-size: 40px;
        line-height: 68px;
        letter-spacing: 0.8px;
    }
    .crypto-brands {
        gap: 30px 83px;
    }
    .crypto-brands > img {
        width: 260px;
        height: auto;
    }
    .crypto-item > svg {
        width: 417px;
        height: auto;
    }
}

@media only screen and (width < 1280px) {
    .crypto-brands {
        gap: 20px 105px;
    }
    .crypto-brands > img {
        width: 300px;
    }
    .crypto-item > img {
        width: 100%;
    }
    .crypto-item > svg {
        width: 474px;
    }
}

@media only screen and (width < 1024px) {
    .crypto-item {
        padding: 80px 50px;
        row-gap: 40px;
    }
    .crypto-item-title {
        font-size: 36px;
        line-height: 58px;
        letter-spacing: 0.72px;
    }
    .crypto-statistics-text {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.36px;
    }
    .crypto-brands {
        gap: 30px 48px;
    }
    .crypto-brands > img {
        width: 260px;
    }
    .crypto-item > svg {
        width: 374px;
    }
}

@media only screen and (width < 768px) {
    .crypto-item {
        padding: 80px 30px;
    }
    .crypto-item-title {
        font-size: 30px;
        line-height: 50px;
        letter-spacing: 0.6px;
    }
    .crypto-statistics-item {
        column-gap: 20px;
    }
    .crypto-statistics-value {
        width: 120px;
        height: 120px;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.48px;
    }
    .crypto-statistics-item:nth-child(2) .crypto-statistics-value {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 0.8px;
    }
    .crypto-brands {
        column-gap: 40px;
    }
    .crypto-brands > img {
        width: 160px;
    }
    .crypto-item > svg {
        width: 234px;
    }
}

@media only screen and (width < 480px) {
    .crypto-item {
        padding: 60px 20px;
        row-gap: 30px;
    }
    .crypto-item-title {
        font-size: 20px;
        line-height: 34px;
        letter-spacing: 0.4px;
    }
    .crypto-statistics {
        row-gap: 30px;
    }
    .crypto-statistics-item {
        flex-direction: column;
        row-gap: 20px;
    }
    .crypto-statistics-text {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.32px;
    }
    .crypto-brands {
        row-gap: 20px;
    }
    .crypto-item > svg {
        width: 201px;
        bottom: 233px;
    }
}