* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
}

body {
    min-height: 100svh;
    background: #fdfefb;
}

main {
    overflow: hidden;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li {
    word-break: break-word;
}

input,
select,
textarea {
    border: none;
    outline: none;
}

textarea {
    resize: none;
}

.container {
    max-width: 1230px;
    margin-inline: auto;
    padding-inline: 15px;
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pop {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-8px) scale(1.06);
    }
}

.consider-header {
    padding-top: 100px;
}

@media (max-width: 576px) {
    .consider-header {
        padding-top: 72px;
    }
}

.main-title {
    color: #383838;
    text-align: center;
    font-size: clamp(24px, 1.136rem + 1.82vw, 40px);
    font-weight: 700;
}

.main-title .main-title-img {
    width: 37px;
    height: 41px;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .main-title .main-title-img {
        width: 24px;
        height: 24px;
    }
}

.home-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #ffffff;
}

.home-header .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    padding-block: 21px;
}

@media (max-width: 992px) {
    .home-header .wrapper {
        padding-block: 20px;
        padding-inline: 20px;
    }
}

.home-header .logo {
    width: 134px;
    height: 43px;
    cursor: pointer;
    display: flex;
}

@media (max-width: 576px) {
    .home-header .logo {
        width: 100px;
        height: 32px;
    }
}

.home-header .home-header-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1200px) {
    .home-header .home-header-list {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .home-header .home-header-list {
        display: none;
    }
}

.home-header .home-header-list-link {
    color: #6f6f6f;
    font-size: 20px;
    font-weight: 400;
}

.home-header .panel {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1200px) {
    .home-header .panel {
        gap: 7px;
    }
}

.home-header .lang {
    cursor: pointer;
    position: relative;
}

.home-header .select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    background: #efefef;
}

@media (max-width: 576px) {
    .home-header .select {
        padding: 8px;
        border-radius: 12px;
    }
}

.home-header .select-lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-header .select-lang-figure {
    width: 24px;
    height: 19px;
}

@media (max-width: 576px) {
    .home-header .select-lang-figure {
        width: 21px;
        height: 16px;
    }
}

.home-header .select-lang-figure-span {
    color: #383838;
    font-size: 20px;
    font-weight: 400;
    text-wrap: nowrap;
}

@media (max-width: 576px) {
    .home-header .select-lang-figure-span {
        font-size: 12px;
    }
}

.home-header .select-img {
    width: 16px;
    height: 16px;
}

@media (max-width: 576px) {
    .home-header .select-img {
        width: 12px;
        height: 12px;
    }
}

.home-header .dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 10;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 10px 0 rgba(139, 148, 163, 0.2);
}

@media (max-width: 576px) {
    .home-header .dropdown {
        gap: 10px;
    }
}

.home-header .dropdown.active {
    display: flex;
}

.home-header .dropdown-item:first-child .dropdown-link {
    padding: 16px 16px 10px 16px;
}

.home-header .dropdown-item:nth-child(2) .dropdown-link {
    padding: 10px 16px 16px 16px;
}

.home-header .dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-header .select-figure {
    width: 24px;
    height: 18px;
}

@media (max-width: 576px) {
    .home-header .select-figure {
        width: 21px;
        height: 16px;
    }
}

.home-header .select-figure-span {
    color: #383838;
    font-size: 20px;
    font-weight: 400;
}

@media (max-width: 576px) {
    .home-header .select-figure-span {
        font-size: 12px;
    }
}

.home-header .buy {
    display: flex;
    padding: 16px 36px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #00c479;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .home-header .buy {
        display: none;
    }
}

.home-header .panel-img {
    display: none;
    width: 40px;
    height: 40px;
    margin-left: 9px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .home-header .panel-img {
        display: block;
    }
}

@media (max-width: 576px) {
    .home-header .panel-img {
        width: 24px;
        height: 24px;
    }
}

.home-hero .wrapper {
    padding: 97px 15px 267px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {
    .home-hero .wrapper {
        padding: 80px 15px 200px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .home-hero .wrapper {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .home-hero .wrapper {
        padding: 65px 20px 156px;
    }
}

.home-hero .content {
    display: flex;
    flex-direction: column;
    max-width: 592px;
    width: 100%;
}

@media (max-width: 992px) {
    .home-hero .content {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .home-hero .content {
        max-width: unset;
        text-align: center;
    }
}

.home-hero .content-title {
    color: #383838;
    font-size: clamp(24px, 1.136rem + 1.82vw, 40px);
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1.2px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .home-hero .content-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home-hero .content-title {
        font-weight: 700;
        line-height: 117%;
        letter-spacing: -0.03em;
    }
}

.home-hero .content-text {
    color: #16a34a;
    font-size: clamp(16px, 0.864rem + 0.68vw, 22px);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.66px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .home-hero .content-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home-hero .content-text {
        line-height: 125%;
        letter-spacing: -0.03em;
    }
}

.home-hero .try {
    display: flex;
    padding: 20px 36px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    border: 0.5px solid #00ff2f;
    background: #00c479;
    box-shadow: -4px -4px 20px 0 rgba(0, 235, 43, 0.1019607843), 4px 4px 20px 0 rgba(0, 235, 43, 0.1019607843);
    align-self: flex-start;
}

@media (max-width: 768px) {
    .home-hero .try {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .home-hero .try {
        border-radius: 12px;
        padding: 12px 16px;
    }
}

.home-hero .try-span {
    color: #ffffff;
    font-size: clamp(14px, 0.739rem + 0.68vw, 20px);
    font-weight: 500;
}

.home-hero .try-img {
    width: 21px;
    height: 22px;
}

.home-hero .home-hero-figure {
    margin-right: -11px;
    margin-left: -13px;
    position: relative;
}

@media (max-width: 992px) {
    .home-hero .home-hero-figure {
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .home-hero .home-hero-figure {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .home-hero .home-hero-figure {
        width: 100%;
    }
}

.home-hero .icon-bg {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 20px;
    background: rgba(0, 196, 49, 0.7490196078);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

@media (max-width: 576px) {
    .home-hero .icon-bg {
        padding: 12px;
    }
}

.home-hero .icon-bg:first-of-type {
    top: 23%;
    left: 0%;
    transform: rotate(-25.888deg);
    animation: slideY 1s ease-in-out infinite alternate;
}

@keyframes slideY {
    from {
        transform: rotate(-25.888deg) translateY(-5px);
    }

    to {
        transform: rotate(-25.888deg) translateY(5px);
    }
}

@media (max-width: 768px) {
    .home-hero .icon-bg:first-of-type {
        top: 13%;
    }
}

@media (max-width: 576px) {
    .home-hero .icon-bg:first-of-type {
        left: 1%;
    }
}

.home-hero .icon-bg:first-of-type .icon-bg-img {
    width: 50px;
    height: 50px;
}

@media (max-width: 576px) {
    .home-hero .icon-bg:first-of-type .icon-bg-img {
        -o-object-fit: unset;
        object-fit: unset;
    }
}

.home-hero .icon-bg:nth-of-type(2) {
    top: -4%;
    right: 5%;
    transform: rotate(15deg);
    animation: slideX 1s ease-in-out infinite alternate;
}

@keyframes slideX {
    from {
        transform: rotate(15deg) translateX(-5px);
    }

    to {
        transform: rotate(15deg) translateX(5px);
    }
}

@media (max-width: 576px) {
    .home-hero .icon-bg:nth-of-type(2) {
        transform: rotate(7deg);
    }
}

.home-hero .icon-bg:nth-of-type(2) .icon-bg-img {
    width: 36px;
    height: 36px;
}

@media (max-width: 576px) {
    .home-hero .icon-bg:nth-of-type(2) .icon-bg-img {
        width: 40px;
        height: 40px;
        -o-object-fit: unset;
        object-fit: unset;
    }
}

.home-hero .icon-bg:nth-of-type(3) {
    bottom: -2%;
    right: 26%;
    transform: rotate(19.569deg);
    animation: slideX 1s ease-in-out infinite alternate;
}

@keyframes slideX {
    from {
        transform: rotate(19.569deg) translateX(-5px);
    }

    to {
        transform: rotate(19.569deg) translateX(5px);
    }
}

.home-hero .icon-bg:nth-of-type(3) .icon-bg-img {
    width: 55px;
    height: 55px;
}

@media (max-width: 576px) {
    .home-hero .icon-bg:nth-of-type(3) .icon-bg-img {
        -o-object-fit: unset;
        object-fit: unset;
        width: 50px;
        height: 50px;
    }
}

.home-hero .icon-bg-img {
    flex-shrink: 0;
    -o-object-fit: none;
    object-fit: none;
}

.home-hero .platform-bg {
    position: absolute;
    bottom: -70%;
    left: -4%;
    right: -15%;
    z-index: -10;
}

.home-hero .shadow-bg {
    position: absolute;
    bottom: -63%;
    left: 0;
    right: 0;
    z-index: -10;
}

.home-hero .circle-bg {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    background: rgba(195, 255, 193, 0.8);
    filter: blur(100px);
    position: absolute;
    z-index: -10;
}

.home-hero .circle-bg.first {
    left: -5%;
    bottom: 0;
}

@media (max-width: 576px) {
    .home-hero .circle-bg.first {
        top: -8%;
        bottom: unset;
        left: -12%;
    }
}

.home-hero .circle-bg.second {
    right: -5%;
    top: 0;
}

@media (max-width: 576px) {
    .home-hero .circle-bg.second {
        top: unset;
        bottom: 7%;
    }
}

.home-advantages .wrapper {
    padding: 0 90px 120px 90px;
}

@media (max-width: 992px) {
    .home-advantages .wrapper {
        padding: 0 20px 120px 20px;
    }
}

@media (max-width: 576px) {
    .home-advantages .wrapper {
        padding: 0 20px 50px 20px;
    }
}

.home-advantages .home-advantages-title {
    color: #383838;
    font-size: clamp(24px, 1.136rem + 1.82vw, 40px);
    font-weight: 700;
    text-align: center;
}

.home-advantages .home-advantages-title-span {
    color: #00c479;
}

.home-advantages .home-advantages-text {
    color: #616b7c;
    font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.home-advantages .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .home-advantages .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .home-advantages .cards {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.home-advantages .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid #e8e8e8;
    background: #ffffff;
    text-align: center;
}

@media (max-width: 480px) {
    .home-advantages .card {
        max-width: 240px;
        min-height: 220px;
    }
}

.home-advantages .card:first-child .card-figure {
    background: rgba(51, 144, 255, 0.1411764706);
}

.home-advantages .card:nth-child(2) .card-figure {
    background: rgba(255, 97, 97, 0.1215686275);
}

.home-advantages .card:nth-child(3) .card-figure {
    background: rgba(158, 2, 255, 0.1215686275);
}

.home-advantages .card:nth-child(4) .card-figure {
    background: rgba(255, 167, 26, 0.1803921569);
}

.home-advantages .card-figure {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 100px;
}

.home-advantages .card-figure-img {
    width: 36px;
    height: 36px;
}

.home-advantages .card-title {
    color: #383838;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-advantages .card-text {
    color: #616b7c;
    font-size: 14px;
    font-weight: 400;
}

.home-possibilities {
    scroll-margin-top: 100px;
    /* small dot pointer (optional) */
}

.home-possibilities .wrapper {
    padding-bottom: 120px;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .home-possibilities .wrapper {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .home-possibilities .wrapper {
        padding-bottom: 50px;
    }
}

.home-possibilities .home-possibilities-title {
    margin-bottom: 30px;
}

.home-possibilities .main {
    display: grid;
    grid-template-columns: 28% 28% 41%;
    gap: 16px;
    position: relative;
}

@media (max-width: 992px) {
    .home-possibilities .main {
        grid-template-columns: 49% 49%;
    }
}

@media (max-width: 768px) {
    .home-possibilities .main {
        grid-template-columns: 1fr;
    }
}

.home-possibilities .left {
    max-width: 654px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 992px) {
    .home-possibilities .left {
        max-width: unset;
    }
}

.home-possibilities .top,
.home-possibilities .chart,
.home-possibilities .statistics,
.home-possibilities .right {
    display: flex;
    padding: 28px 28px 10px 28px;
    gap: 13px;
    border-radius: 28px;
    border: 1px solid #e8e8e8;
    background: #ffffff;
    position: relative;
}

.home-possibilities .top::before,
.home-possibilities .chart::before,
.home-possibilities .statistics::before,
.home-possibilities .right::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: inherit;
    z-index: -10;
    border: inherit;
    border-radius: inherit;
}

.home-possibilities .top {
    grid-column: 2 span;
    order: -2;
}

@media (max-width: 992px) {
    .home-possibilities .top {
        justify-content: space-between;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .home-possibilities .top {
        grid-column: unset;
    }
}

@media (max-width: 480px) {
    .home-possibilities .top {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 14px;
    }
}

.home-possibilities .top-content {
    max-width: 353px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-possibilities .content-title,
.home-possibilities .chart-title,
.home-possibilities .statistics-title,
.home-possibilities .right-title {
    color: #383838;
    font-size: clamp(20px, 1.159rem + 0.45vw, 24px);
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.24px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {

    .home-possibilities .content-title,
    .home-possibilities .chart-title,
    .home-possibilities .statistics-title,
    .home-possibilities .right-title {
        margin-bottom: 8px;
    }
}

.home-possibilities .content-text {
    color: #8b94a3;
    font-size: clamp(14px, 0.83rem + 0.23vw, 16px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.32px;
    margin-bottom: 38px;
}

@media (max-width: 480px) {
    .home-possibilities .content-text {
        margin-bottom: 28px;
    }
}

.home-possibilities .toggle {
    width: 140px;
    height: 40px;
    border-radius: 40px;
    background: linear-gradient(to right, #ffb8b8 0%, #ffb8b8 75%, #ffd9d9 75%, #ffd9d9 100%);
    box-shadow: 0 2px 20px 0 rgba(255, 97, 97, 0.2509803922);
    position: relative;
}

.home-possibilities .toggle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid #e8e8e8;
    border-radius: inherit;
}

.home-possibilities .toggle-figure {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 21px;
    top: -10px;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 112.113px 31.492px 0 rgba(133, 133, 133, 0), 0 71.803px 28.973px 0 rgba(133, 133, 133, 0.01), 0 40.31px 23.934px 0 rgba(133, 133, 133, 0.05), 0 17.636px 17.636px 0 rgba(133, 133, 133, 0.09), 0 5.039px 10.078px 0 rgba(133, 133, 133, 0.1);
    z-index: 10;
}

.home-possibilities .toggle-figure-img {
    width: 25px;
    height: 30px;
}

.home-possibilities .steps {
    max-width: 255px;
    width: 100%;
    border-radius: 22px 22px 0 0;
    background: #f9f9fa;
    padding: 21px 24px 0 20px;
}

@media (max-width: 992px) {
    .home-possibilities .steps {
        max-width: unset;
    }
}

.home-possibilities .step {
    display: flex;
    align-items: center;
    gap: 9px;
}

.home-possibilities .step.active {
    background: #ffffff;
    margin-inline: -29px;
    padding: 10px;
    box-shadow: 0 5px 10px 0 rgba(133, 133, 133, 0.1), 0 18px 18px 0 rgba(133, 133, 133, 0.09), 0 40px 24px 0 rgba(133, 133, 133, 0.05), 0 72px 29px 0 rgba(133, 133, 133, 0.01), 0 112px 31px 0 rgba(133, 133, 133, 0);
    border-radius: 14px;
    position: relative;
}

.home-possibilities .step.active .step-figure {
    background: #1d4ed8;
}

.home-possibilities .step.disabled .step-figure {
    background: unset;
    border: 1.25px solid #e5e7eb;
    border-radius: 117px;
}

.home-possibilities .step.disabled .step-figure-img {
    display: none;
}

.home-possibilities .step.disabled .step-content-span {
    color: #8b94a3;
}

.home-possibilities .step-figure,
.home-possibilities .right-step-figure {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 125px;
    background: #00c479;
    flex-shrink: 0;
}

.home-possibilities .step-figure-img,
.home-possibilities .right-step-figure-img {
    width: 11px;
    height: 11px;
}

.home-possibilities .step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-possibilities .step-content-span {
    color: #383838;
    font-size: 9px;
    font-weight: 400;
    line-height: 120%;
}

.home-possibilities .step-content-span:last-child {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}

.home-possibilities .connector {
    width: 1px;
    height: 26px;
    margin-left: 9px;
}

.home-possibilities .connector.first {
    background: #00c479;
    margin-block: 4px;
}

.home-possibilities .connector.second {
    background: #00c479;
    margin-top: 4px;
}

.home-possibilities .connector.third {
    background: #e5e7eb;
    margin-bottom: 4px;
    height: 17px;
}

.home-possibilities .connector.fourth {
    background: #e5e7eb;
    margin-top: 4px;
    height: 20px;
}

.home-possibilities .chart {
    display: flex;
    flex-direction: column;
}

.home-possibilities .bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .home-possibilities .bottom {
        grid-template-columns: 1fr;
    }
}

.home-possibilities .chart-wrap {
    width: 250px;
    height: 250px;
    align-self: center;
}

.home-possibilities .center-tooltip {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    /* slightly above center */
    pointer-events: none;
    display: none;
    min-width: 86px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    line-height: 1.1;
}

.home-possibilities .center-tooltip .label {
    font-weight: 600;
    font-size: 13px;
    color: #111827;
}

.home-possibilities .center-tooltip .value {
    margin-top: 6px;
    font-weight: 700;
    font-size: 16px;
    background: #f8fafc;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
}

.home-possibilities .center-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: transparent;
}

.home-possibilities .statistics {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.home-possibilities .cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 480px) {
    .home-possibilities .cards {
        gap: 10px;
    }
}

.home-possibilities .card {
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.home-possibilities .card:first-child {
    background: rgba(0, 235, 43, 0.1019607843);
}

.home-possibilities .card:first-child .card-left-span {
    color: #00c479;
}

.home-possibilities .card:nth-child(2) {
    background: rgba(90, 147, 221, 0.1019607843);
}

.home-possibilities .card:nth-child(2) .card-left-span {
    color: #5a93dd;
}

.home-possibilities .card:nth-child(3) {
    background: rgba(151, 84, 193, 0.1019607843);
}

.home-possibilities .card:nth-child(3) .card-left-span {
    color: #9754c1;
}

.home-possibilities .card:nth-child(4) {
    background: rgba(255, 83, 83, 0.1019607843);
}

.home-possibilities .card:nth-child(4) .card-left-span {
    color: #ff6161;
}

.home-possibilities .card-left {
    display: flex;
    gap: 6px;
    align-items: center;
}

.home-possibilities .card-left-img {
    width: 20px;
    height: 20px;
}

.home-possibilities .card-left-span {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.home-possibilities .card-right {
    display: flex;
    align-items: flex-end;
    gap: 1px;
}

.home-possibilities .number {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #383838;
}

.home-possibilities .snumber {
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.02em;
    font-size: 8px;
    color: #8b94a3;
    margin-bottom: 2px;
}

.home-possibilities .right {
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
    padding: 28px;
    order: -1;
    grid-row: 2 span;
}

@media (max-width: 992px) {
    .home-possibilities .right {
        grid-row: unset;
        grid-column: 2 span;
    }
}

@media (max-width: 768px) {
    .home-possibilities .right {
        grid-column: unset;
    }
}

@media (max-width: 480px) {
    .home-possibilities .right {
        gap: 31px;
    }
}

.home-possibilities .right-title {
    margin-bottom: unset;
}

.home-possibilities .right-steps {
    border-radius: 20px;
    padding: 20px;
    background: #f4f4f7;
    display: flex;
    flex-direction: column;
}

.home-possibilities .right-step {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.home-possibilities .right-step:nth-child(2) {
    margin-bottom: 25px;
}

.home-possibilities .right-step:last-child {
    margin-bottom: 10px;
}

.home-possibilities .right-step.active {
    margin-inline: -56px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 10px 0 rgba(133, 133, 133, 0.1), 0 18px 18px 0 rgba(133, 133, 133, 0.09), 0 40px 24px 0 rgba(133, 133, 133, 0.05), 0 72px 29px 0 rgba(133, 133, 133, 0.01), 0 112px 31px 0 rgba(133, 133, 133, 0);
    background: #ffffff;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .home-possibilities .right-step.active {
        margin-inline: -52px;
    }
}

.home-possibilities .right-step.active .right-step-figure {
    width: 24px;
    height: 24px;
}

.home-possibilities .right-step.active .right-step-span {
    font-weight: 500;
    font-size: clamp(20px, 1.205rem + 0.23vw, 22px);
    color: #383838;
}

.home-possibilities .right-step.disabled .right-step-figure {
    background: #7ad8b6;
}

.home-possibilities .right-step.disabled .right-step-figure-img {
    opacity: 0.7;
}

.home-possibilities .right-step.disabled .right-step-span {
    color: #a7a7a9;
}

.home-possibilities .right-step-span {
    font-weight: 400;
    font-size: 16px;
    color: #5c5c5c;
}

.home-possibilities .circle-bg {
    position: absolute;
    left: -3%;
    top: 2%;
    bottom: 0%;
    right: -6%;
    border-radius: 100%;
    background: rgba(170, 212, 188, 0.2);
    filter: blur(180px);
    z-index: -20;
}

.home-solutions {
    scroll-margin-top: 100px;
}

.home-solutions .wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 120px;
}

@media (max-width: 576px) {
    .home-solutions .wrapper {
        padding-bottom: 50px;
    }
}

.home-solutions .home-solutions-title {
    margin-bottom: 6px;
}

.home-solutions .home-solutions-text {
    font-weight: 400;
    font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
    color: #616b7c;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 576px) {
    .home-solutions .home-solutions-text {
        margin-bottom: 24px;
    }
}

.home-solutions .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .home-solutions .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .home-solutions .cards {
        gap: 16px;
    }
}

.home-solutions .card {
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    padding: 20px;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-solutions .message {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.home-solutions .message:nth-child(n+2) {
    align-self: flex-end;
}

.home-solutions .message:nth-child(n+2) .message-figure {
    order: 1;
}

.home-solutions .message:nth-child(n+2) .content {
    box-shadow: 0 5px 10px 0 rgba(133, 133, 133, 0.1), 0 18px 18px 0 rgba(133, 133, 133, 0.09), 0 40px 24px 0 rgba(133, 133, 133, 0.05), 0 72px 29px 0 rgba(133, 133, 133, 0.01), 0 112px 31px 0 rgba(133, 133, 133, 0);
    border-radius: 20px 20px 0 20px;
}

.home-solutions .message:nth-child(n+2) .message-figure {
    background: #00c479;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-solutions .message:nth-child(n+2) .message-figure-img {
    width: 24px;
    height: 20px;
}

.home-solutions .message:nth-child(n+2) .content-span {
    color: #00c479;
}

.home-solutions .message-figure {
    border: 1px solid #c4c4c4;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.home-solutions .message-figure-img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
    -o-object-position: top;
    object-position: top;
}

.home-solutions .content {
    max-width: 360px;
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 20px 20px 20px 0;
    padding: 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.home-solutions .content-span {
    font-weight: 500;
    font-size: clamp(14px, 0.83rem + 0.23vw, 16px);
    line-height: 150%;
    color: #383838;
    margin-bottom: 4px;
}

.home-solutions .content-text {
    font-weight: 400;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    line-height: 120%;
    color: #5c5c5c;
}

.home-demo {
    scroll-margin-top: 100px;
}

.home-demo .wrapper {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 120px; */
}

/* @media (max-width: 576px) {
    .home-demo .wrapper {
        margin-bottom: 50px;
    }
} */

.home-demo .home-demo-title {
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .home-demo .home-demo-title {
        margin-bottom: 20px;
    }
}

.home-demo .main {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

@media (max-width: 768px) {
    .home-demo .main {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .home-demo .main {
        gap: 20px;
    }
}

.home-demo .left {
    max-width: 500px;
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 30px 20px;
    position: relative;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .home-demo .left {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .home-demo .left {
        max-width: unset;
    }
}

.home-demo .toggle {
    width: 140px;
    height: 40px;
    border-radius: 40px;
    background: linear-gradient(to right, #76dba2 0%, #76dba2 75%, #c3f6e2 75%, #c3f6e2 100%);
    box-shadow: 0 2px 20px 0 rgba(0, 196, 121, 0.2509803922);
    position: relative;
}

.home-demo .toggle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid #e8e8e8;
    border-radius: inherit;
}

.home-demo .toggle-figure {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 18px;
    top: -8px;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 5px 10px 0 rgba(133, 133, 133, 0.1), 0 18px 18px 0 rgba(133, 133, 133, 0.09), 0 40px 24px 0 rgba(133, 133, 133, 0.05), 0 72px 29px 0 rgba(133, 133, 133, 0.01), 0 112px 31px 0 rgba(133, 133, 133, 0);
    z-index: 10;
}

.home-demo .toggle-figure-img {
    width: 32px;
    height: 32px;
}

.home-demo .left-text {
    font-weight: 400;
    font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
    line-height: 133%;
    color: #616b7c;
    margin-top: 28px;
    z-index: 20;
    position: relative;
}

.home-demo .left-text-span {
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    color: #00c479;
}

.home-demo .left-img {
    position: absolute;
    width: 166px;
    height: 106px;
    bottom: -25%;
    right: 8%;
}

@media (max-width: 768px) {
    .home-demo .left-img:first-of-type {
        display: none;
    }
}

.home-demo .left-img:nth-of-type(2) {
    display: none;
    z-index: 10;
    width: 94px;
    height: 150px;
    transform: rotate(0deg);
    bottom: -40%;
}

@media (max-width: 768px) {
    .home-demo .left-img:nth-of-type(2) {
        display: block;
    }
}

@media (max-width: 576px) {
    .home-demo .left-img:nth-of-type(2) {
        width: 64px;
        height: 100px;
        bottom: -22%;
    }
}

.home-demo .right {
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    max-width: 680px;
    height: 418px;
    background: #ffffff;
    padding: 10px;
    position: relative;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .home-demo .right {
        max-width: unset;
    }
}

@media (max-width: 576px) {
    .home-demo .right {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-demo .right {
        height: 250px;
    }
}

.home-demo .right.active::before {
    content: unset;
}

.home-demo .right::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 0.5px solid #8b94a3;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: rgba(139, 148, 163, 0.3019607843);
}

.home-demo .right>video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -o-object-fit: contain;
    object-fit: contain;
}

.home-demo .right-figure {
    border-radius: 1000px;
    padding: 10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7019607843);
    position: absolute;
    top: calc(50% - 40px);
    right: calc(50% - 40px);
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

@media (max-width: 576px) {
    .home-demo .right-figure {
        width: 60px;
        height: 60px;
    }
}

.home-demo .right-figure.hidden {
    display: none;
}

.home-demo .circle-bg {
    position: absolute;
    width: 767px;
    height: 148px;
    top: 19%;
    left: -5%;
    border-radius: 100%;
    background: rgba(187, 217, 200, 0.2509803922);
    filter: blur(100px);
    z-index: -20;
    transform: rotate(22deg);
}

.home-contact {
    padding-inline: 15px;
    padding-top: 120px;
}

.home-contact .wrapper {
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 32px;
    padding: 50px 40px;
    background: #ffffff;
    max-width: 1200px;
}

@media (max-width: 992px) {
    .home-contact .wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .home-contact .wrapper {
        margin-bottom: 50px;
        padding: 24px 20px;
    }

    .home-contact {
        padding-top: 60px;
    }
}

.home-contact .wrapper::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: inherit;
    z-index: -10;
    border: inherit;
    border-radius: inherit;
}

.home-contact .home-contact-title {
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .home-contact .home-contact-title {
        margin-bottom: 8px;
    }
}

.home-contact .home-contact-text {
    font-weight: 400;
    font-size: clamp(14px, 0.648rem + 1.14vw, 24px);
    color: #616b7c;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .home-contact .home-contact-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home-contact .home-contact-text {
        margin-bottom: 24px;
    }
}

.home-contact .buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 576px) {
    .home-contact .buttons {
        flex-direction: column;
        gap: 16px;
    }
}

.home-contact .button {
    border: 1px solid #00c479;
    border-radius: 20px;
    padding: 20px 36px;
    box-shadow: 2px 2px 10px 0 rgba(0, 196, 121, 0.04), -2px -2px 10px 0 rgba(0, 196, 121, 0.04);
    background: transparent;
    font-weight: 500;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    letter-spacing: -0.01em;
    color: #00c479;
    cursor: pointer;
}

@media (max-width: 576px) {
    .home-contact .button {
        padding: 16px 24px;
    }
}

.home-contact .button:nth-child(2) {
    box-shadow: 4px 4px 20px 0 rgba(0, 235, 43, 0.1), -4px -4px 20px 0 rgba(0, 235, 43, 0.1);
    background: #00c479;
    color: #ffffff;
}

.home-contact .button-img {
    width: 21px;
    height: 22px;
    vertical-align: middle;
}

.home-contact .circle-bg {
    left: -50%;
    right: -50%;
    top: 17%;
    bottom: 19%;
    border-radius: 100%;
    background: rgba(170, 212, 188, 0.2509803922);
    filter: blur(120px);
    position: absolute;
    z-index: -20;
}

.home-questions {
    padding: 20px;
}

.home-questions .wrapper {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    padding: 30px;
    background: #f6f6f6;
}

@media (max-width: 576px) {
    .home-questions .wrapper {
        padding: 20px;
        margin-bottom: 50px;
    }
}

.home-questions .home-questions-title {
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .home-questions .home-questions-title {
        margin-bottom: 20px;
    }
}

.home-questions .accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 576px) {
    .home-questions .accordion {
        gap: 10px;
    }
}

.home-questions .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    background: #ffffff;
}

@media (max-width: 576px) {
    .home-questions .accordion-item {
        border-radius: 20px;
    }
}

.home-questions .accordion-item.active .accordion-item-text {
    display: block;
    animation: slide-up 0.5s forwards;
}

.home-questions .accordion-item.active .top {
    padding: 30px 30px 24px 30px;
}

@media (max-width: 576px) {
    .home-questions .accordion-item.active .top {
        padding: 20px 16px 12px 16px;
    }
}

.home-questions .accordion-item.active .top-img {
    transform: rotate(180deg);
}

.home-questions .top {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (max-width: 576px) {
    .home-questions .top {
        padding: 20px 16px;
    }
}

.home-questions .top-text {
    font-weight: 500;
    font-size: clamp(16px, 0.818rem + 0.91vw, 24px);
    line-height: 100%;
    color: #5c5c5c;
}

.home-questions .top-img {
    width: 32px;
    height: 32px;
    transition: transform 0.5s;
}

@media (max-width: 576px) {
    .home-questions .top-img {
        width: 24px;
        height: 24px;
    }
}

.home-questions .accordion-item-text {
    display: none;
    padding: 0 30px 30px 30px;
    font-weight: 300;
    font-size: clamp(16px, 0.864rem + 0.68vw, 22px);
    line-height: 145%;
    color: #616b7c;
}

@media (max-width: 576px) {
    .home-questions .accordion-item-text {
        padding: 0 16px 20px 16px;
    }
}

.home-footer {
    border-radius: 40px 40px 0 0;
    background: #f6f6f6;
}

.home-footer .wrapper {
    display: flex;
    flex-direction: column;
    padding-block: 50px;
}

@media (max-width: 992px) {
    .home-footer .wrapper {
        padding-block: 40px;
        padding-inline: 30px;
    }
}

@media (max-width: 576px) {
    .home-footer .wrapper {
        padding-block: 30px;
    }
}

.home-footer .top {
    display: flex;
    justify-content: space-between;
    gap: 50px 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .home-footer .top {
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: 1fr 2fr 2fr;
    }
}

@media (max-width: 768px) {
    .home-footer .top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-footer .top {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 32px 30px;
    }
}

.home-footer .logo {
    display: flex;
    align-self: flex-start;
}

.home-footer .logo-img {
    width: 160px;
    height: 51px;
}

.home-footer .general,
.home-footer .contact,
.home-footer .socials {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .home-footer .socials {
        width: 100%;
        grid-column: 3 span;
    }
}

@media (max-width: 768px) {
    .home-footer .socials {
        grid-column: unset;
    }
}

.home-footer .general-text,
.home-footer .contact-text,
.home-footer .socials-text {
    font-weight: 500;
    font-size: 24px;
    color: #383838;
    margin-bottom: 24px;
}

@media (max-width: 576px) {

    .home-footer .general-text,
    .home-footer .contact-text,
    .home-footer .socials-text {
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .home-footer .socials-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-footer .socials-text {
        text-align: unset;
    }
}

@media (max-width: 576px) {
    .home-footer .socials-text {
        text-align: center;
    }
}

.home-footer .general-list,
.home-footer .contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 576px) {

    .home-footer .general-list,
    .home-footer .contact-list {
        align-items: center;
        gap: 12px;
    }
}

.home-footer .general-item,
.home-footer .general-link {
    display: flex;
    gap: 12px;
    align-items: center;
}

.home-footer .general-item-span {
    font-weight: 400;
    font-size: 20px;
    color: #8b94a3;
}

.home-footer .general-item-img {
    width: 15px;
    height: 15px;
}

.home-footer .contact-item,
.home-footer .contact-link {
    display: flex;
    gap: 8px;
    align-items: center;
}

.home-footer .contact-item-img {
    width: 24px;
    height: 24px;
}

.home-footer .contact-item-span {
    font-weight: 400;
    font-size: 20px;
    color: #8b94a3;
}

.home-footer .socials-list {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 992px) {
    .home-footer .socials-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-footer .socials-list {
        justify-content: unset;
    }
}

@media (max-width: 576px) {
    .home-footer .socials-list {
        justify-content: center;
    }
}

.home-footer .socials-item,
.home-footer .socials-link {
    display: flex;
}

.home-footer .bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding-top: 20px;
    border-top: 0.5px solid #8b94a3;
}

@media (max-width: 992px) {
    .home-footer .bottom {
        flex-direction: column;
        gap: 15px 30px;
    }
}

.home-footer .copyright {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .home-footer .copyright {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

.home-footer .copyright-span {
    font-weight: 400;
    font-size: 20px;
    color: #8b94a3;
}

@media (max-width: 992px) {
    .home-footer .copyright-span {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .home-footer .copyright-span:first-of-type {
        width: 100%;
    }
}

.home-footer .copyright-link {
    font-size: 20px;
    color: #8b94a3;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 20px;
    margin-right: 5px;
}

.home-footer .offer {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 992px) {
    .home-footer .offer {
        order: -1;
        margin-bottom: 10px;
    }
}

.home-footer .offer-span {
    font-weight: 400;
    font-size: 20px;
    color: #8b94a3;
}

.home-footer .offer-img {
    width: 15px;
    height: 15px;
}

.home-sub {
    display: none;
    width: 100%;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    background: rgba(56, 56, 56, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 20px;
}

.home-sub.active {
    display: flex;
}

.home-sub .wrapper {
    max-width: 540px;
    width: 100%;
    position: relative;
    background: #ffffff;
    animation: slide-up 0.5s forwards;
    border-radius: 30px;
    padding: 30px 30px 40px 30px;
    overflow-y: auto;
    max-height: 85%;
}

@media (max-width: 576px) {
    .home-sub .wrapper {
        border-radius: 20px;
        padding: 20px 20px 30px 20px;
    }
}

.home-sub .wrapper::-webkit-scrollbar {
    width: 10px;
}

.home-sub .wrapper::-webkit-scrollbar-thumb {
    background: #00c479;
    border: 1px solid #00c479;
    border-radius: 5px;
}

.home-sub .wrapper::-webkit-scrollbar-track {
    background: #ffffff;
}

@media screen and (max-width: 768px) {
    .home-sub .wrapper {
        max-width: 500px;
    }
}

@media screen and (max-width: 576px) {
    .home-sub .wrapper {
        max-width: unset;
    }
}

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

.home-sub .inputs {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

@media (max-width: 576px) {
    .home-sub .inputs {
        margin-bottom: 24px;
    }
}

.home-sub .label {
    margin-bottom: 6px;
    padding-inline: 4px;
    font-weight: 500;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    color: #383838;
}

@media (max-width: 576px) {
    .home-sub .label {
        margin-bottom: 4px;
    }
}

.home-sub .label-span {
    font-weight: 400;
    font-size: inherit;
    color: #ff6161;
}

.home-sub .input {
    width: 100%;
    background: #f9f9f9;
    font-weight: 300;
    color: #383838;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    border: 1px solid #8b94a3;
    border-radius: 16px;
    padding: 10px 20px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .home-sub .input {
        margin-bottom: 16px;
    }
}

.home-sub .input:last-child {
    margin-bottom: unset;
}

.home-sub .input::-moz-placeholder {
    font-weight: 300;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    color: #c4c4c4;
}

.home-sub .input::placeholder {
    font-weight: 300;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    color: #c4c4c4;
}

.home-sub .top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .home-sub .top {
        margin-bottom: 16px;
    }
}

.home-sub .top-img {
    width: 16px;
    height: 16px;
    cursor: pointer;
    align-self: flex-end;
}

.home-sub .btn-send {
    border-radius: 16px;
    padding: 17px 20px;
    background: #00c479;
    font-weight: 500;
    font-size: clamp(16px, 1.205rem + 0.23vw, 20px);
    color: #ffffff;
    border: unset;
    cursor: pointer;
}

@media (max-width: 576px) {
    .home-sub .btn-send {
        padding: 15px 20px;
    }
}

.home-menu {
    display: none;
    width: 100%;
    position: fixed;
    inset: 0;
    z-index: 2000;
    animation: slide-right 0.3s forwards;
}

.home-menu.active {
    display: block;
}

.home-menu .wrapper {
    max-width: 550px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #e8e8e8;
}

.home-menu .wrapper::-webkit-scrollbar {
    width: 10px;
}

.home-menu .wrapper::-webkit-scrollbar-thumb {
    background: #00c479;
    border: 1px solid #00c479;
    border-radius: 5px;
}

.home-menu .wrapper::-webkit-scrollbar-track {
    background: #e8e8e8;
}

@media screen and (max-width: 768px) {
    .home-menu .wrapper {
        max-width: 400px;
    }
}

@media screen and (max-width: 576px) {
    .home-menu .wrapper {
        max-width: unset;
        padding: 50px 20px;
    }
}

.home-menu .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-inline: 10px;
}

@media (max-width: 576px) {
    .home-menu .top {
        margin-bottom: 80px;
    }
}

.home-menu .top-image {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

@media (max-width: 576px) {
    .home-menu .top-image {
        width: 16px;
        height: 16px;
    }
}

.home-menu .logo {
    display: flex;
}

.home-menu .logo-img {
    width: 135px;
    height: 50px;
}

@media (max-width: 576px) {
    .home-menu .logo-img {
        width: 125px;
        height: 40px;
    }
}

.home-menu .bottom-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.home-menu .bottom-item {
    display: flex;
}

.home-menu .bottom-link {
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5019607843);
    font-weight: 500;
    font-size: 20px;
    color: #5c5c5c;
    width: 100%;
}

.home-menu .buy {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 20px;
    background: #00c479;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
