.language-select {
    position: relative;
    text-align: right;
    
    outline: none
}

.language-select__selected {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 4px
}

.language-select__selected-name {
    flex: 1;
    color: #383838;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px
}

.language-select__options {
    width: 232px;
    position: absolute;
    right: -12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 11px;
    padding: 16px 12px;
    
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 11px 25px #0000000d, 0 0 8px #00000014;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    z-index: 1;
    transition: all .2s ease-in-out;
    gap: 2px
}

.language-select__options.hidden {
    visibility: hidden;
    opacity: 0;
    margin-top: 22px
}

@media (max-width: 640px) {
    .language-select__options {
        right: unset;
        left: 0
    }
}

.language-select__option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    ;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.language-select__option:hover {
    background: #f4f4f7
}

.language-select__option-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.32px;
    color: #282828
}

.language-select__option-label.current {
    font-weight: 500
}

.language-select__option-label-block {
    display: flex;
    align-items: center;
    gap: 8px
}

.language-select__option-value {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.32px;
    color: #282828
}

.landing__menu {
    width: 100%;
    height: 115px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background: #EFEAE0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 24px;
    transition: all .2s ease-in-out
}

@media (max-width: 640px) {
    .landing__menu {
        height: 56px;
        
        gap: 8px
    }
}

.landing__menu.mobile-opened {
    background: #ffffffe6
}

.landing__menu-wrapper {
    top: 10px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    z-index: 1000
}

@media (max-width: 640px) {
    .landing__menu-wrapper {
        top: 12px;
        left: 12px;
        right: 12px
    }
}

.landing__menu-block--left {
    display: flex;
    align-items: center;
    margin-left: 24px;
    gap: 44px
}

@media (max-width: 640px) {
    .landing__menu-block--left {
        margin-left: 16px;
        margin-bottom: 19px;
    }
}

.landing__menu-block--right {
    display: flex;
    align-items: center;
    margin-right: 20px;
    gap: 18px
}

@media (max-width: 640px) {
    .landing__menu-block--right {
        gap: 15px;
        margin-right: 20px;
    }
}
.landing__menu-logo{
    height: 55px;
}
.landing__menu-logo>img {
    height: 55px;
}
@media (max-width: 640px) {
    .landing__menu-logo {
        width: 77px;
        height: 20px
    }

    .landing__menu-logo>img {
        height: 40px;
    }
}

.landing__menu-items {
    display: flex;
    align-items: center;
    gap: 24px
}

@media (max-width: 660px) {
    .landing__menu-items {
        display: none
    }
}

.landing__menu-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.32px;
    color: #282828
}

.landing__menu-item.current {
    font-weight: 500
}

.landing__menu-icon-button {
    cursor: pointer
}

.landing__menu-button {
    height: 48px;
    width: 200px;
    display: flex;
    align-items: center;
    padding: 8px 17px;
    margin-left: 4px;
    
    border: 1px solid #aeaeae;
    background: #EFEAE0;
    transition: all .2s ease;
    cursor: pointer;
    gap: 11px;
    color: #616161;
    place-content: center;
}

.landing__menu-button:hover {
    background: #aaaaaa
}

@media (max-width: 640px) {
    .landing__menu-button {  
    height: 42px;
    width: 152px;
    }
}

.landing__menu-button-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -.32px;
    color: #616161;
    white-space: nowrap
}

@media (max-width: 640px) {
    .landing__menu-button-label {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.249px
    }
}

.landing__menu-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    margin-top: 10px;
    
    background: #ffffffe6;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 24px;
    transition: all .2s ease-in-out
}

.landing__menu-mobile.hidden {
    visibility: hidden;
    opacity: 0;
    margin-top: 22px
}

.landing__menu-mobile-button {
    width: 25px;
    display: none;
    cursor: pointer
}

@media (max-width: 640px) {
    .landing__menu-mobile-button {
        display: block
    }
}

.landing__menu-mobile-items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px
}

.landing__menu-mobile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px
}

.landing__menu-mobile-item-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #282828
}

.landing__menu-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.landing__menu-mobile-contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 12px 60px;
    ;
    background: #fff;
    gap: 6px;
    cursor: pointer
}

.landing__menu-mobile-contact-button-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838
}

.landing__menu-mobile-language-select {
    display: flex;
    align-items: center;
    gap: 11px
}

.landing__menu-mobile-language-select-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838;
    opacity: .4
}

.landing__menu-mobile-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #25263080;
    overflow-y: auto;
    z-index: -100
}

.vr {
    width: 100px;
    height: 24px;
    background: transparent;
    opacity: .1;
}

@media (max-width: 640px) {
    .vr {
        display: none
    }
}

.landing__menu-mobile-language-select>.language-select>.language-select__options {
    left: -140px !important
}

.landing__modal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 488px;
    display: flex;
    flex-direction: column;
    padding: 40px 29px;
    background-color: #fff;
    
    gap: 32px;
    transform: translate(-50%, -50%)
}

@media (max-width: 640px) {
    .landing__modal {
        left: 16px;
        right: 16px;
        width: unset;
        padding: 40px 16px;
        
        transform: translateY(-50%)
    }
}

.landing__modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #25263080;
    overflow-y: auto;
    z-index: 1000
}

.landing__modal-close-button {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px;
    background: #17171c59;
    cursor: pointer
}

@media (max-width: 640px) {
    .landing__modal-close-button {
        top: 16px;
        right: 16px
    }
}

.landing__modal-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px
}

.landing__modal-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -1.28px;
    text-align: center;
    color: #282828
}

@media (max-width: 640px) {
    .landing__modal-heading {
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -.96px
    }
}

.landing__modal-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #282828;
    text-align: center
}

.landing__modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px
}

.landing__modal-tabs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 24px
}

.landing__modal-tabs-selector {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
    
    background: #eff3f6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 3px
}

@media (max-width: 640px) {
    .landing__modal-tabs-selector {
        width: unset;
        align-self: stretch
    }
}

.landing__modal-tabs-selector:after {
    position: absolute;
    content: "";
    height: calc(100% - 8px);
    width: calc((100% - 11px)/2);
    
    background: #fff;
    transition: all .2s ease-in-out;
    z-index: 1
}

.landing__modal-tabs-selector-item {
    flex: 1 0 0;
    padding: 13px 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    cursor: pointer;
    z-index: 2
}

@media (max-width: 640px) {
    .landing__modal-tabs-selector-item {
        padding: 8px 10px
    }
}

.landing__modal-tabs>section {
    display: none
}

.landing__modal-tabs>input {
    display: none
}

.landing__modal-tabs>input#telegram:checked~section#telegram {
    display: block
}

.landing__modal-tabs>input#telegram:checked~.landing__modal-tabs-selector:after {
    transform: translate(0)
}

.landing__modal-tabs>input#email:checked~section#email {
    display: block
}

.landing__modal-tabs>input#email:checked~.landing__modal-tabs-selector:after {
    transform: translate(calc(100% + 3px))
}

.landing__modal-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px
}

.landing__modal-form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 8px 18px 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #282828;
    border: 2px solid transparent;
    
    background: #efeff5;
    transition: all .2s ease-in-out
}

.landing__modal-form-input:focus {
    border-color: #EFEAE0
}

.landing__modal-form-input-wrapper {
    position: relative;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transition: height .2s ease-in-out
}

.landing__modal-form-input-wrapper.not-valid>input {
    border-color: #f42500
}

.landing__modal-form-input-wrapper.not-valid:after {
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.0008 15H13.0008V17H11.0008V15ZM11.0008 7H13.0008V13H11.0008V7ZM12.0008 2C6.47079 2 2.00079 6.5 2.00079 12C2.00079 14.6522 3.05436 17.1957 4.92973 19.0711C5.85831 19.9997 6.9607 20.7362 8.17396 21.2388C9.38721 21.7413 10.6876 22 12.0008 22C14.653 22 17.1965 20.9464 19.0719 19.0711C20.9472 17.1957 22.0008 14.6522 22.0008 12C22.0008 10.6868 21.7421 9.38642 21.2396 8.17317C20.737 6.95991 20.0004 5.85752 19.0719 4.92893C18.1433 4.00035 17.0409 3.26375 15.8276 2.7612C14.6144 2.25866 13.314 2 12.0008 2ZM12.0008 20C9.87906 20 7.84423 19.1571 6.34394 17.6569C4.84365 16.1566 4.00079 14.1217 4.00079 12C4.00079 9.87827 4.84365 7.84344 6.34394 6.34315C7.84423 4.84285 9.87906 4 12.0008 4C14.1225 4 16.1574 4.84285 17.6576 6.34315C19.1579 7.84344 20.0008 9.87827 20.0008 12C20.0008 14.1217 19.1579 16.1566 17.6576 17.6569C16.1574 19.1571 14.1225 20 12.0008 20Z' fill='%23F42500'/%3E%3C/svg%3E%0A");
    position: absolute;
    top: 20px;
    right: 20px
}

.landing__modal-form-not-valid-message {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #f42500
}

.landing__modal-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px
}

.landing__modal-bottom-text {
    display: flex;
    align-items: center;
    align-self: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #282828;
    gap: 4px
}

@media (max-width: 640px) {
    .landing__modal-bottom-text {
        flex-direction: column
    }
}

.landing__modal-bottom-text.highlighted {
    color: #004aad;
    gap: 3px;
    cursor: pointer
}

@media (max-width: 640px) {
    .landing__modal-bottom-text.highlighted {
        flex-direction: unset
    }
}

.landing__modal-button {
    padding: 16px 32px;
    
    border: 1px solid #aeaeae;
    background: #EFEAE0;
    box-shadow: 0 11px 25px #0000000d;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all .2s ease
}

.landing__modal-button:hover {
    background: #aaaaaa;
}

.landing__modal-button-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -.8px;
    color: #616161;
}

.slide-fade-enter-active {
    transition: all .2s ease-in
}

.slide-fade-leave-active {
    transition: all .2s ease-out
}

.slide-fade-enter-from {
    transform: translateY(-10px);
    opacity: 0
}

.slide-fade-leave-to {
    transform: translateY(10px);
    opacity: 0
}

.landing__footer {
    width: 100%;
    max-width: 1360px;
    display: flex;
    align-items: flex-start;
    padding: 30px 0 36px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    gap: 30px
}

@media (max-width: 640px) {
    .landing__footer {
        flex-direction: column-reverse;
        padding: 0 0 64px;
        border-top: unset;
        gap: 48px
    }
}

.landing__footer-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 60px;
    margin-top: 160px
}

@media (max-width: 640px) {
    .landing__footer-wrapper {
        padding: 0 12px;
        margin-top: 80px
    }
}

.landing__footer-logo {
    flex: 1 0 0;
    height: 60px;
}
.landing__footer-logo>img {
    height: 60px;
}

@media (max-width: 640px) {
    .landing__footer-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        padding-top: 32px;
        border-top: 1px solid rgba(0, 0, 0, .1);
        gap: 32px
    }
}

@media (max-width: 640px) {
    .landing__footer-logo-image {
        width: auto;
        height: 50px;
    }
}

.landing__footer-info {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
}

@media (max-width: 640px) {
    .landing__footer-info {
        display: flex
    }
}

.landing__footer-info-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838;
    opacity: .4
}

.landing__footer-content {
    display: flex;
    flex: 1 0 0;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px
}

@media (max-width: 640px) {
    .landing__footer-content {
        flex-direction: column;
        align-self: stretch;
        gap: 40px
    }
}

.landing__footer-content-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 75px
}

.landing__footer-content-block.left {
    align-items: flex-start
}

@media (max-width: 640px) {
    .landing__footer-content-block.left {
        gap: 40px
    }
}

.landing__footer-content-block.right {
    align-items: flex-end
}

@media (max-width: 640px) {
    .landing__footer-content-block.right {
        align-items: flex-start;
        gap: 40px
    }
}

.landing__footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.landing__footer-contact-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838;
    opacity: .4
}

.landing__footer-contact-links {
    display: flex;
    align-items: center;
    gap: 31px
}

.landing__footer-language-select {
    display: flex;
    align-items: center;
    gap: 11px
}

@media (max-width: 640px) {
    .landing__footer-language-select {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

.landing__footer-language-select-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838;
    opacity: .4
}

.landing__footer-menu-items {
    display: flex;
    align-items: center;
    gap: 32px
}

@media (max-width: 640px) {
    .landing__footer-menu-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

.landing__footer-menu-items-label {
    display: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838;
    opacity: .4
}

@media (max-width: 640px) {
    .landing__footer-menu-items-label {
        display: block
    }
}

.landing__footer-menu-item,
.landing__footer-copyright {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.24px;
    color: #383838
}

@media (max-width: 640px) {
    .landing__footer-copyright {
        display: none
    }
}

.landing__footer-mail {
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.96px;
    color: #383838;
    cursor: pointer
}

@media (max-width: 640px) {
    .landing__footer-mail {
        font-size: 16px;
        letter-spacing: -.24px
    }
}

.landing__footer-telegram {
    cursor: pointer
}

#app {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.icon {
    line-height: 0
}

@font-face {
    font-family: CoFo Sans;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: local("CoFo Sans"), url(../fonts/CoFoSans-regular.woff2) format("woff2"), url(../fonts/CoFoSans-regular.woff) format("woff"), url(../fonts/CoFoSans-regular.ttf) format("ttf")
}

@font-face {
    font-family: CoFo Sans;
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: local("CoFo Sans"), url(../fonts/CoFoSans-medium.woff2) format("woff2"), url(../fonts/CoFoSans-medium.woff) format("woff"), url(../fonts/CoFoSans-medium.ttf) format("ttf")
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    height: 100%;
    width:100%;
    display: inline-block;
    
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr {
    border-bottom: none;
    text-decoration: underline
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    -webkit-tap-highlight-color: transparent
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0
}

input,
textarea {
    border: 0
}

input:focus,
textarea:focus {
    outline: none
}

textarea {
    width: 100%;
    display: block;
    resize: none;
    white-space: initial
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    color: inherit
}

button {
    border: 0;
    background: none;
    padding: 0
}

button :focus {
    outline: none
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style-type: none
}

.landing {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family: CoFo Sans, sans-serif;
    background: #ECECE0;
}

.landing__loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    overflow-y: hidden;
    background: #EFEAE0;
    z-index: 10000;
    animation: loader-animation 3.8s cubic-bezier(.45, 0, .55, 1)
}

.landing__loader-animation {
    position: absolute;
    top: 50vh;
    left: 50vw;
    width: 300px !important;
    height: 150px !important;
    transform: translate(-50%, -50%);
    animation: logo-animation 3.8s cubic-bezier(.5, 1, .89, 1)
}

@media (max-width: 640px) {
    .landing__loader-animation {
        width: 200px;
        height: 100px
    }
}

.landing__hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 1150px) {
    .landing__hero {
        align-items: stretch;
        background: #EFEAE0;
        
        flex-direction: column;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
}

.landing__hero-wrapper {
    height: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
    background: #EFEAE0;
}

.bg-span{
    background: #323232;
    color:#EFEAE0;
    padding: 0 15px;
    display: inline-block; /* чтобы span занимал минимальную ширину */
    position: relative;
    
}

.bg-span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw; /* на всю ширину экрана */
    height: 2px; /* толщина линии */
    background-color: #979797; /* цвет линии */
    z-index: -1; /* линия под текстом */
    transform: translate(-50%, -50%); /* центрирование по обеим осям */
  }

@media (max-width: 1150px) {
    .landing__hero-wrapper {
        height: 400px;
        padding: 15px 12px 0;
        background: #EFEAE0;
    }
}

.landing__hero-content {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 64px;
    gap: 48px;
    z-index: 1
}

@media (max-width: 1150px) {
    .landing__hero-content {
        width: 100%;
        justify-content: space-between;
        align-items: stretch;
        padding: 48px 20px 0;
        order: -1;
    }
}

.landing__hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

@media (max-width: 1150px) {
    .landing__hero-content-block {
        align-items: center
    }
}

.landing__hero-content-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -.3px;
    color: #313131CC
}

@media (max-width: 1150px) {
    .landing__hero-content-description {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: -.27px;
        text-align: center
    }
}

.landing__hero-content-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 72px;
    color: #282828;
    text-align: center;
}

@media (max-width: 1150px) {
    .landing__hero-content-heading {
        font-size: 50px;
    font-weight: 700;
    line-height: 72px;
    color: #282828;
    text-align: center;
    }
}
@media (max-width: 650px) {
    .landing__hero-content-heading {
        font-size: 35px;
    font-weight: 700;
    line-height: 45.5px;
    color: #282828;
    text-align: center;
    }
}

.landing__hero-content-button {
    padding: 16px 32px;
    height: 70px;
    border: 1px solid #aeaeae;
    background: #EFEAE0;
    box-shadow: 0 11px 25px #0000000d;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all .2s ease;
    cursor: pointer;
    align-self: center;
    max-width: 400px;
    min-width: 320px;
}

.landing__hero-content-button:hover {
    background: #aaaaaa;
}

.landing__hero-content-button-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -.8px;
    color: #616161
}

@media (max-width: 650px) {
    .landing__hero-content-button {
        padding: 16px 32px;
        height: 56px;
        border: 1px solid #aeaeae;
        background: #EFEAE0;
        box-shadow: 0 11px 25px #0000000d;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all .2s ease;
        cursor: pointer;
        align-self: center;
        max-width: 320px;
        min-width: 200px;
    }
}

.landing__hero-image {
    position: relative;
    right: 64px;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin-top: 20px; 
    background:#323232;
    background-position: center;
}

@media (max-width: 1150px) {
    .landing__hero-image {
        left: 5%;
        width: auto;
        max-width: 90%;
        height: auto;
        object-fit: contain;
    }
}

.landing__content {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 140px
}

@media (max-width: 1150px) {
    .landing__content {
        gap: 96px
    }
}

.landing__content-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 12px;
}

@media (max-width: 1150px) {
    .landing__content-wrapper {
        padding: 40px 12px;
    }
}

.landing__partners {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px
}

.landing__partners-logos {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    background: #fff;
    gap: 60px
}

@media (max-width: 640px) {
    .landing__partners-logos {
        padding-left: 0;
        animation: partners-animation 60s linear infinite;
        z-index: 2
    }
}
.landing__partners-logos-wrapper {
padding-top: 25px;
}

@media (max-width: 640px) {
    .landing__partners-logos-wrapper {
        display: flex;
        align-items: center;
        align-self: flex-start
    }
}

.landing__partners-logos.clone {
    display: none
}

@media (max-width: 640px) {
    .landing__partners-logos.clone {
        display: flex
    }
}

.landing__partners-logos.background {
    display: none
}

@media (max-width: 640px) {
    .landing__partners-logos.background {
        position: absolute;
        display: flex;
        animation: unset;
        z-index: 1
    }
}

.landing__partners-wrapper {
    position: relative;
    margin-top: 64px;
    overflow-x: hidden
}

@media (max-width: 640px) {
    .landing__partners-wrapper {
        margin: 64px -12px 0
    }
}

@media (max-width: 640px) {

    .landing__partners-wrapper:before,
    .landing__partners-wrapper:after {
        content: "";
        width: 16px;
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1
    }
}

.landing__partners-wrapper:before {
    left: 0;
    background: linear-gradient(90deg, #fff, #fff0)
}

.landing__partners-wrapper:after {
    right: 0;
    background: linear-gradient(270deg, #fff, #fff0)
}

.landing__partners-title {
    padding-left: 60px;
    font-size: 35px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -.3px;
    color: #292929;
    align-self: center
}

@media (max-width: 640px) {
    .landing__partners-title {
        padding-left: 0;
        align-self: center
    }
}

.landing__block {
    display: flex;
    flex-direction: column;
    align-items: center
}

.landing__block-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.landing__block-header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    position: relative;
    padding-top: 5px;
}

@media (max-width: 640px) {
    .landing__block-header-text {
        gap: 24px
    }
}

.landing__block-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    color: #282828
}

@media (max-width: 640px) {
    .landing__block-heading {
        font-size: 38px;
        line-height: 36px;
        letter-spacing: -1.9px
    }
}
.counts-rect{
    top: 20px;
    right: 20px; /* Отступ справа */
    position: absolute; /* Абсолютное позиционирование для закрепления справа */
}

@media (max-width: 640px) {
    .counts-rect{
        top: 20px;
        left: 20px;
        position: relative;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .ours2 {
       display: flex;
    }
    .ours {
        display: none;
     }
}

@media (min-width: 640px) {
    .ours {
        display: flex;
    }
    .ours2 {
        display: none;
     }
}
.sbcg1 {
    background: #EFEAE0;
    position: relative;
  }
  
  .sbcg2 {
    background: #EFEAE0;
    position: relative;
  }
  
  .sbcg3 {
    background: #EFEAE0;
    position: relative;
  }
  
  .sbcg4 {
    background: #EFEAE0;
    position: relative;
  }
.landing__block-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -.27px;
    text-align: center;
    color: #282828
}

.landing__block-tabs {
    margin-top: 48px
}

@media (max-width: 640px) {
    .landing__block-tabs {
        margin-top: 48px
    }
}

.landing__block-sticky {
    width: 100%;
    margin-top: 48px
}

@media (max-width: 640px) {
    .landing__block-sticky {
        margin-top: 48px
    }
}

.landing__block-carousel {
    margin-top: 128px
}

@media (max-width: 640px) {
    .landing__block-carousel {
        margin-top: 48px
    }
}

.what-is{
    background-color: #323232;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    position: relative;
    width: 100%;
    left: 0%;
}

.blockss{
    display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Отступы между блоками */
  margin-top: 25px;
}
  
@media (max-width: 975px) {
    .blockss{
      margin-top: 25px;
    }
      
}

.what-is-header{
    color: #ffffff;
    font-size: 35px;
    line-height: 1.25;
    font-weight: 700;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    width: 100%;
    text-align-last: left;
}

@media (max-width: 640px) {

    .what-is-header {
        color: #ffffff;
        font-size: 25px;
        line-height: 31.25px;
        font-weight: 500;
        background-position: center center;
        border-color: transparent;
        border-style: solid;
        text-align-last: left;
        position: relative; /* Важно для позиционирования ::after */
    }
  }
  

  .landing__mockup1 {
    height: 35vh;
    width: 40%;
    position: relative;
    background: #00000045;
}

@media (max-width: 1400px) {
    .landing__mockup1 {
        height: 38vh;
    }
}
@media (max-width: 975px) {
    .landing__mockup1 {
        width: 100%;
        margin-top: 48px;
    }
}
@media (max-width: 425px) {
    .landing__mockup1 {
        height: 40vh;
        width: 100%;
        margin-top: 48px;
    }
}

.landing__mockup2 {
    height: 35vh;
    width: 40%;
    position: relative;
    background: #EFEAE0;
}

@media (max-width: 1400px) {
    .landing__mockup2 {
        height: 38vh;
    }
}
@media (max-width: 975px) {
    .landing__mockup2 {
        width: 100%;
        margin-top: 48px;
    }
}

.landing__mockup3 {
    margin-top: 15px;
    width: calc(100% - 244px);
    position: relative;
    background: #00000045;
}

@media (max-width: 975px) {
    .landing__mockup3 {
        width: 100%;
        margin-top: 48px;
    }
}

.landing__mockup-image {
    position: absolute;
    left: 50%;
    bottom: 40%;
    transform: translate(-50%);
    width: 70%;
}

@media (max-width: 800px) {
    .landing__mockup-image {
        position: absolute;
    left: 50%;
    bottom: 50%;
    max-width: 100%;
    max-height: 125%;
    transform: translate(-50%);
    max-height: 155px;
    }
}


.mockup-my1{
    width: 40%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: 5%;
}

.mockup-my2{
    width: 40%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 5%;
    
}

.mockup-my3{
    width: 90%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 5%;
    
}

  
@media (max-width: 955px) {
    
.mockup-my1{
    width: 90%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: 5%;
}

.mockup-my2{
    width: 90%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 5%;
    
}

.mockup-my3{
    width: 90%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 5%;
    
}
}
.landing__bottom {
    height: 382px;
    position: relative;
    display: flex;
    padding: 48px;
    background: #323232;
    overflow: hidden;
    flex-direction: column; /* Элементы располагаются по вертикали */
    gap: 10px; /* Расстояние между заголовком и контентом */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 640px) {
    .landing__bottom {
        height: fit-content;
        padding: 40px 20px;
    }
}

.landing__bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
    background: #fff;
    gap: 10px;
    vertical-align: middle;
    position: relative;
    height: 220px;
}

@media (max-width: 640px) {
    .landing__bottom-content {
        align-items: stretch;
        height: fit-content;
    }
}

.landing__bottom-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 25px;
}

.landing__bottom-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 72px;
    color: #fff
}

@media (max-width: 640px) {
    .landing__bottom-heading {
        font-size: 38px;
        line-height: 36px;
        letter-spacing: -1.9px
    }
}

.landing__bottom-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -.3px;
    color: #313131;
    opacity: .75;
    width: 55%;
    left: 10%;
    position: relative;
}

.landing__bottom-button {
    padding: 16px 32px;
    margin: 16px 32px;
    
    border: 1px solid #aeaeae;
    background: #323232;
    box-shadow: 0 11px 25px #0000000d;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all .2s ease;
    cursor: pointer;
    height: 70px;
    width: 250px;
}

@media (max-width: 640px) {
    .landing__bottom-button {
        display: none
    }
}

.landing__bottom-button-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.8px;
    
    color:#fff;
}

.landing__bottom-image {
    position: absolute;
    top: 0;
    right: -4%;
    max-width: 100%;
    max-height: 110%
}

@media (max-width: 640px) {
    .landing__bottom-image {
        top: 45px;
    position: relative;
    }
}

.landing__mobile-button {
    height: 56px;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px 24px 16px 32px;
    gap: 10px;
    flex-shrink: 0;
    background: #323232;
    margin-bottom: 20px;
    box-shadow: 0 11px 25px #0000000d;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    width: 300px;
    align-self: center;
}

@media (max-width: 640px) {
    .landing__mobile-button {
        display: flex
    }
}

.landing__mobile-button-wrapper {
    position: -webkit-sticky;
    position: sticky;
    display: flex;
    justify-content: center;
    bottom: 30px;
    left: 0;
    right: 0;
    margin-top: -124px;
    z-index: 102;
    transition: all .4s ease-in-out
}

.landing__mobile-button-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.8px;
    color: #fff
}

.landing__contact {
    margin-top: 162px
}

@media (max-width: 640px) {
    .landing__contact {
        margin-top: 92px
    }
}

.landing__contact-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px
}

@media (max-width: 640px) {
    .landing__contact-content {
        gap: 20px
    }
}

.landing__contact-header {
    display: flex;
    align-items: flex-start;
    gap: 40px
}

@media (max-width: 640px) {
    .landing__contact-header {
        flex-direction: column
    }
}

.landing__contact-header-block {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px
}

.landing__contact-heading {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.14px;
    color: #282828;
    background: #eff3f6;
    
}

@media (max-width: 640px) {
    .landing__contact-heading {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: -.1px
    }
}

.images-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    user-select: none;
    -webkit-user-select: none
}

.images-carousel__content {
    width: fit-content;
    display: flex;
    align-items: stretch;
    gap: 12px;
    transition: all .5s ease-in-out;
    transform: translate(calc((12px - 100vw) * var(--3309311c)))
}

.images-carousel__content-wrapper {
    width: 100%;
    align-self: flex-start;
    overflow: hidden
}

.images-carousel__content-element {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 48px 32px 40px !important;
    background: linear-gradient(90deg, #535353, #151515) !important;
    box-sizing: border-box !important;
    gap: 48px !important;
}

.images-carousel__content-element-title {
    height: 44px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -.27px;
    color: #242424;
    text-align: center
}

.images-carousel__content-element-image {
    display: flex;
    flex-grow: 1;
    align-items: center
}

.images-carousel__content-element-image>img {
    max-width: 100%;
    pointer-events: none
}

.tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 40px
}

.tabs__selector {
    position: relative;
    width: 288px;
    display: flex;
    align-items: center;
    padding: 4px;
    
    background: #eff3f6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 3px
}

@media (max-width: 640px) {
    .tabs__selector {
        width: unset;
        align-self: stretch
    }
}

.tabs__selector:after {
    position: absolute;
    content: "";
    height: calc(100% - 8px);
    width: calc((100% - 11px)/2);
    
    background: #fff;
    transition: all .2s ease-in-out;
    z-index: 1
}

.tabs__selector-item {
    flex: 1 0 0;
    padding: 13px 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    cursor: pointer;
    z-index: 2
}

@media (max-width: 640px) {
    .tabs__selector-item {
        padding: 8px 10px
    }
}

.tabs>section {
    display: none;
    align-self: stretch
}

.tabs>input {
    display: none
}

.tabs>input#pay-services:checked~section#pay-services {
    display: block
}

.tabs>input#pay-services:checked~.tabs__selector:after {
    transform: translate(0)
}

.tabs>input#p2p:checked~section#p2p {
    display: block
}

.tabs>input#p2p:checked~.tabs__selector:after {
    transform: translate(calc(100% + 3px))
}

.tabs__content {
    width: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 16px
}

@media (max-width: 640px) {
    .tabs__content {
        display: none
    }
}

.tabs__content.mobile {
    display: none
}

@media (max-width: 640px) {
    .tabs__content.mobile {
        display: flex;
        flex-direction: column
    }
}

.tabs__content-element {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    align-items: center;
    padding: 56px;
    background: linear-gradient(90deg, #535353, #151515);
    
    gap: 74px
}

.tabs__content-element-title {
    height: 52px;
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -1.2px;
    color: #fff;
    text-align: center
}

.tabs__content-element-image {
    display: flex;
    flex-grow: 1;
    align-items: center
}

.tabs__content-element-image>img {
    max-width: 100%
}

.sticky-block {
    display: flex;
    align-items: flex-start;
    gap: 50px
}
  
  .footbg {
    background-image: url('../images/foot.png');
  }
  .sticky-block__content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* расстояние между блоками */
    justify-content: center;
  }
  
  .sticky-block__content-group {
    flex: 1 1 calc(50% - 20px); /* 50% ширины минус расстояние между блоками */
    max-height: 300px;
    padding-bottom: 30px;
    border: 1px solid #282828;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  @media (max-width: 640px) {
    .sticky-block__content-group {
      flex: 1 1 100%; /* на всю ширину */
      margin: 0;
    }
  }
.sticky-block__content-group-animation {
    display: none;
    margin-bottom: 12px;
    background: #eef1f9;
    
}

@media (max-width: 640px) {
    .sticky-block__content-group-animation {
        display: block
    }
}

.sticky-block__content-group-heading {
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -1.76px;
    text-align: center;
    color: #282828
}

@media (max-width: 640px) {
    .sticky-block__content-group-heading {
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -.96px;
        text-align: left
    }
    
.sth2{
    padding-top: 30px !important;
    width: 90%;
    left: 0%;
    position: relative;
    text-align: start;
}
}

.sticky-block__content-group-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

@media (max-width: 640px) {
    .sticky-block__content-group-info {
        align-items: flex-start;
        gap: 12px
    }
}

.sticky-block__content-group-description {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    color: #282828;
    gap: 8px
}

@media (max-width: 640px) {
    .sticky-block__content-group-description {
        font-size: 18px;
        letter-spacing: -.24px;
        text-align: center;
    }
}
.text-style-new {
    font-size: 40px;
    font-family: CoFo Sans, sans-serif;
    font-weight: 600;
    text-align: -webkit-center;
    color: #fff;
    border-bottom: 1px solid #FFFFFF66;
    width: 100%;
    padding-bottom: 30px;
}
@media (max-width: 640px) {
    .text-style-new{
        font-size: 40px;
        font-family: CoFo Sans, sans-serif;
        font-weight: 600;
        text-align: -webkit-center;
        color: #fff;
        border-bottom: 1px solid #FFFFFF66;
        width: 100%;
        padding-bottom: 30px;
        margin-bottom: 10px;
    }
}
.img-to-text {
    display: flex;
    align-items: flex-start;
    font-size: 22px;
    padding: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    color: #ffffff;
    gap: 8px;
    position: relative;
}

.img-to-text2 {
    display: flex;
    align-items: flex-start;
    font-size: 22px;
    padding: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    color: #FFFFFFCC;
    gap: 8px;
    position: relative;
    place-content: center;
}

@media (max-width: 800px) {
    .img-to-text {
        width: 100%;
        left: 0;
        font-size: 16px;
        letter-spacing: -.24px;
        text-align: left;
        padding-bottom: 150px;
        padding-top: 20px;
    }
    
.img-to-text2 {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    padding: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    text-align: center;
    color: #FFFFFFCC;
    gap: 8px;
    position: relative;
    place-content: center;
}
}

.sticky-block__content--sticky {
    flex: 1 0 0;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    width: 50vw;
    max-width: 50vw; /* Ограничить ширину контейнера до половины экрана */
}

@media (max-width: 640px) {
    .sticky-block__content--sticky {
        display: none
    }
}

.sticky-block__content-animation {
    background: #eef1f9;
    
    display: flex; /* Для центрирования контента */
    justify-content: center; /* Центрирование контента по горизонтали */
    align-items: center; /* Центрирование контента по вертикали */
}

@media (max-width: 640px) {
    .sticky-block__content-animation {
        
    }
}

#conversion,
#reliability {
    opacity: 0
}

@media (max-width: 640px) {

    #conversion,
    #reliability {
        opacity: 1
    }
}

.animated {
    opacity: 0
}

.animated.active {
    opacity: 1
}

.animated.active.fade-bottom {
    animation: fade-bottom-3d6d56d7 1s ease-in-out
}

@keyframes fade-bottom-3d6d56d7 {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.cards-carousel {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none
}

@media (max-width: 640px) {
    .cards-carousel {
        flex-direction: column
    }
}

.cards-carousel__images {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    transform: translate(calc(-25% * var(--4b02e825) + 25%));
    gap: 5%
}

.cards-carousel__images-wrapper {
    min-height: 560px;
    position: relative;
    display: flex;
    flex: 1 0 0;
    align-items: center;
    overflow: hidden
}

@media (max-width: 640px) {
    .cards-carousel__images-wrapper {
        min-height: 240px
    }
}

.cards-carousel__images-wrapper:before,
.cards-carousel__images-wrapper:after {
    content: "";
    width: 30%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1
}

.cards-carousel__images-wrapper:before {
    left: 0;
    background: linear-gradient(90deg, #fff, #fff0)
}

.cards-carousel__images-wrapper:after {
    right: 0;
    background: linear-gradient(270deg, #fff, #fff0)
}

.cards-carousel__image {
    width: 20%;
    height: auto;
    opacity: .5;
    transition: all .5s ease-in-out;
    pointer-events: none
}

.cards-carousel__image.active {
    width: 40%;
    opacity: 1
}

.cards-carousel__content {
    position: relative;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: stretch
}

@media (max-width: 640px) {
    .cards-carousel__content {
        min-height: 300px;
        justify-content: flex-start;
        gap: 24px
    }
}

.cards-carousel__content-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -1.28px;
    text-align: center;
    color: #383838
}

@media (max-width: 640px) {
    .cards-carousel__content-text {
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -.96px
    }
}

.cards-carousel__content-bottom {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

@media (max-width: 640px) {
    .cards-carousel__content-bottom {
        bottom: 0
    }
}

.cards-carousel__content-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #383838
}

@media (max-width: 640px) {
    .cards-carousel__content-description {
        display: none;
        font-size: 16px;
        letter-spacing: -.24px
    }
}

.cards-carousel__content-description.mobile {
    display: none
}

@media (max-width: 640px) {
    .cards-carousel__content-description.mobile {
        display: block;
        text-align: center
    }
}

.cards-carousel__indicators {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 8px
}

.cards-carousel__indicators-item {
    position: relative;
    flex: 1 0 0;
    border: 4px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    cursor: pointer
}

@media (max-width: 640px) {
    .cards-carousel__indicators-item {
        border: 3px solid rgba(0, 0, 0, .1);
        border-radius: 3px
    }
}

.cards-carousel__indicators-item.selected {
    cursor: unset
}

.cards-carousel__indicators-item.selected:after {
    content: "";
    position: absolute;
    top: -4px;
    border: 4px solid #383838;
    border-radius: 4px;
    animation: scale-indicator-5e9b66e6 5s linear
}

@media (max-width: 640px) {
    .cards-carousel__indicators-item.selected:after {
        top: -3px;
        border: 3px solid #383838;
        border-radius: 3px;
        animation: scale-indicator-mobile-5e9b66e6 5s linear
    }
}

.cards-carousel__indicators-item.paused:after {
    animation-play-state: paused
}

.slide-fade-enter-active {
    transition: all .5s ease-in
}

.slide-fade-leave-active {
    transition: all .25s ease-out
}

.slide-fade-enter-from {
    transform: translate(30px);
    opacity: 0
}

.slide-fade-leave-to {
    transform: translate(-30px);
    opacity: 0
}

.slide-fade-bottom-enter-active {
    transition: all .2s ease-in .25s
}

.slide-fade-bottom-leave-active {
    transition: all .2s ease-out .25s
}

.slide-fade-bottom-enter-from,
.slide-fade-bottom-leave-to {
    transform: translateY(-10px);
    opacity: 0
}

@keyframes scale-indicator-5e9b66e6 {
    0% {
        width: 0;
        left: -4px;
        right: unset
    }

    49% {
        width: 100%;
        left: -4px;
        right: unset
    }

    51% {
        width: 100%;
        left: unset;
        right: -4px
    }

    to {
        width: 0;
        left: unset;
        right: -4px
    }
}

@keyframes scale-indicator-mobile-5e9b66e6 {
    0% {
        width: 0;
        left: -3px;
        right: unset
    }

    49% {
        width: 100%;
        left: -3px;
        right: unset
    }

    51% {
        width: 100%;
        left: unset;
        right: -3px
    }

    to {
        width: 0;
        left: unset;
        right: -3px
    }
}

body {
    transition: background-color .7s ease-out
}

body.loading {
    transition: none;
    background: #EFEAE0
}

.swiper {
    height: 300px;
    /* Устанавливаем высоту для контейнера Swiper */
    width: 100%;
    /* Ширина на 100% */
    display: flex;
    /* Устанавливаем флекс для правильного отображения */
}

.swiper-slide {
    /* Устанавливаем ширину для  слайдов*/
    align-items: center !important;
}

.swiper-pagination {
    left: 25% !important;
    /* Центрируем пагинацию */
    width: 50% !important;
    /* Ширина пагинации */
    display: flex;
    /* Используем flexbox для пагинации */
    align-items: center;
    gap: 8px;
    /* Пробел между элементами пагинации */
    position: absolute;
    /* Позиционируем пагинацию относительно контейнера */
    bottom: 10px;
    /* Отступ от нижней части контейнера */
    transform: translateX(-50%);
    /* Центрируем по горизонтали */
    z-index: 10;
    /* Убедимся, что пагинация поверх слайдов */
}

.swiper-pagination-bullet {
    position: relative;
    flex: 1 0 0;
    border-radius: 10px !important;
    cursor: pointer;
    /* Курсор для кликабельных элементов */
}

.swiper-pagination-bullet-active {
    background: #bbbfca !important;
    /* Фон активного элемента */
    cursor: unset;
    /* Убираем курсор для активной буллеты */
    border: 3px solid #bbbfca;
    /* Белая рамка активного элемента */
}

.swiper-wrapper{
height: auto !important;
}

.swiper-pagination-bullet-active:after {
    content: "";
    position: absolute;
    top: -3px;
    /* Позиционирование псевдоэлемента */
    border: 4px solid #282828;
    border-radius: 10px;
    animation: scale-indicator 5s linear;
    /* Анимация для активного элемента */
}

.swiper-pagination-bullet.paused:after {
    animation-play-state: paused;
    /* Останавливаем анимацию, если приостановлено */
}

@keyframes scale-indicator {
    0% {
        width: 0;
        /* Начальная ширина 0 */
        left: -3px;
        /* Положение слева */
        right: unset;
        /* Убираем значение справа */
    }

    49% {
        width: 100%;
        /* Ширина 100% на 49% анимации */
        left: -3px;
        /* Положение слева */
        right: unset;
        /* Убираем значение справа */
    }

    51% {
        width: 100%;
        /* Ширина 100% на 51% анимации */
        left: unset;
        /* Убираем значение слева */
        right: -3px;
        /* Положение справа */
    }

    to {
        width: 0;
        /* Конечная ширина 0 */
        left: unset;
        /* Убираем значение слева */
        right: -3px;
        /* Положение справа */
    }
}

.landing__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    padding: 8px 0 16px;
    margin-right: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    gap: 16px
}

@media (max-width: 640px) {
    .landing__contact-item {
        padding: 8px 0 12px;
        margin-right: unset;
        gap: 12px
    }
}

.landing__contact-item-heading {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.27px;
    color: #000;
    opacity: .2
}

@media (max-width: 640px) {
    .landing__contact-item-heading {
        font-size: 16px;
        letter-spacing: -.24px
    }
}

.landing__contact-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer
}

.landing__contact-item-link-label {
    font-size: 44px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: -1.76px;
    color: #383838
}

@media (max-width: 640px) {
    .landing__contact-item-link-label {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: -1.28px
    }
}

.landing__contact-address {
    margin-top: 160px;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -.96px;
    color: #383838
}

@media (max-width: 640px) {
    .landing__contact-address {
        margin-top: 128px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -.24px
    }
}

.landing__contact-map {
    height: 500px;
    
    overflow: hidden
}

.animated {
    opacity: 0
}

.animated.active {
    opacity: 1
}

.animated.active.fade-bottom {
    animation: fade-bottom 1s ease-in-out
}

.animated.active.fade-left {
    animation: fade-left 1s ease-in-out
}

@media (max-width: 640px) {
    .animated.active.fade-left {
        animation: fade-bottom 1s ease-in-out
    }
}

.animated.active.fade-right {
    animation: fade-right 1s ease-in-out
}

@media (max-width: 640px) {
    .animated.active.fade-right {
        animation: fade-bottom 1s ease-in-out
    }
}

.animated.active.scale-center {
    animation: scale-center 1s ease-in-out
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-left {
    0% {
        transform: translate(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-right {
    0% {
        transform: translate(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes scale-center {
    0% {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes loader-animation {
    0% {
        height: 100vh
    }

    66% {
        height: 100vh
    }

    to {
        height: 0
    }
}

@keyframes logo-animation {
    0% {
        opacity: 1
    }

    72% {
        opacity: 1
    }

    81% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes partners-animation {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-5769.5px)
    }
}



.lottie-animation-container {
    width: var(--lottie-animation-container-width);
    height: var(--lottie-animation-container-height);
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%; /* Ограничить максимальную ширину */
    max-height: 100%; /* Ограничить максимальную высоту */
    object-fit: contain; /* Чтобы изображение масштабировалось внутри контейнера */
}


.sth2{
    padding-top: 60px;
    width: 90%;
    left: 0%;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.sttt{
    width: 90%;
    left: 0%;
    position: relative;
    text-align: center;
}
.rfm-marquee-container{
    width: 100%;
    height: 64px;
    overflow: hidden;
    border: none;
    background-color: transparent;
}

.rfm-marquee{
    width: max-content;
    height: 64px;
    display: flex;
    animation: scroll 10s linear infinite;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.rfm-child {
    width: 200px;
    text-align: center;
    margin-right: 10px;
}

.w-64 {
    width: 16rem
}

.flex {
    display: flex
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.w-32 {
    width: 8rem;
}

.text-center {
    text-align: center
}

.paragraph-sm {
    font-size: 1rem;
    line-height: 1.5rem
}

.paragraph-md,
.paragraph-sm {
    font-family: CoFo Sans, sans-serif;
    font-weight: 500;
}

.text-grayN {
    --tw-text-opacity: 1;
    color: rgb(117 117 117/var(--tw-text-opacity))
}
