@font-face {
    font-family: "Inter";
    src: url("../Assets/Fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-style: normal;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 145%;
    letter-spacing: 0.05em;
}


.container-main {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-main {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container-main {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container-main {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container-main {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container-main {
        max-width: 1536px;
    }
}

.button-default {
    background-color: #F6F6F6 !important;
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 500;
    padding: 8px !important;
}

.button-primary {
    background-color: #00ADFF !important;
    border: 1px solid #00ADFF;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 500;
    padding: 8px !important;
    color: white !important;
}

.button-linet {
    background-color: white !important;
    border: 1px solid #00ADFF;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 500;
    padding: 8px !important;
    color: #00ADFF !important;
}

.button-rounded {
    background-color: white !important;
    border: 1px solid #CECECE;
    border-radius: 9999px;
    font-size: 1.2em;
    font-weight: 500;
    padding: 4px 24px !important;
}

.general-block {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #CECECE;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    width: 250px;
    height: 238px;
    flex: none;
    order: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    padding: 24px;
    gap: 8px;
}

.decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.decor-top-right {
    top: 57px;
    right: -200px;
    width: 662px;
}

.decor-bottom-left {
    left: -226px;
    bottom: -61px;
    width: 586px;
    transform: scaleX(-1);
}

.hero-main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
    color: black !important;
    font-family: 'Inter', sans-serif;
    overflow: visible;
    min-height: 700px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}