
/* Текста */
.fs-16 {
    font-size: 16px;

    @media(max-width: 576px) {
        font-size: 12px;
    }
}
.fs-20 {
    font-size: 20px;

    @media(max-width: 576px) {
        font-size: 18px;
    }
}
.fs-24 {
    font-size: 24px;

    @media(max-width: 576px) {
        font-size: 16px;
    }
}
.fs-32 {
    font-size: 32px;

    @media(max-width: 576px) {
        font-size: 28px;
    }
}
.fs-36 {
    font-size: 36px;

    @media(max-width: 576px) {
        font-size: 26px;
    }
}
.fs-44 {
    font-size: 44px;

    @media(max-width: 992px) {
        font-size: 26px;
    }
    @media(max-width: 576px) {
        font-size: 22px;
    }
}
.fs-56 {
    font-size: 56px;

    @media(max-width: 992px) {
        font-size: 40px;
    }
    @media(max-width: 576px) {
        font-size: 26px;
    }
}
.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
}
.text-orange {
    color: rgba(255, 137, 6, 1);
}
.lh-48 {
    line-height: 48px;

    @media(max-width: 576px) {
        line-height: 28px;
    }
}
.lh-32 {
    line-height: 32px;
}
.lh-30 {
    line-height: 30px;
}
.lh-22 {
    line-height: 22px;
}
.opacity-75 {
    opacity: 75%;
}
.opacity-80 {
    opacity: 80%;
}

/* Кнопки */
.orange-fill-button {
    background: linear-gradient(180deg, #FAB336 0%, #F46F40 100%);
    border-radius: 66px;
    padding: 0.94rem 1.25rem;

    @media (max-width: 991px) {
        width: 100% !important;
    }
}
#button-1 {
    position: absolute;
    top: 83px;
    left: 48px;
    width: 37%;

    @media(max-width: 1200px) {
        left: -20px;
    }
    @media(max-width: 991px) {
        position: static;
    }
}
#button-2 {
    position: absolute;
    top: 83px;
    right: 81px;
    width: 37%;

    @media(max-width: 1200px) {
        right: 39px;
    }
    @media(max-width: 991px) {
        position: static;
        width: auto;
    }
}
#button-3 {
    position: absolute;
    top: 317px;
    left: 48px;
    width: 37%;

    @media(max-width: 1200px) {
        left: -20px;
    }
    @media(max-width: 991px) {
        position: static;
        width: auto;
    }
}
#button-4 {
    position: absolute;
    top: 317px;
    right: 81px;
    width: 37%;

    @media(max-width: 1200px) {
        right: 39px;
    }
    @media(max-width: 991px) {
        position: static;
        width: auto;
    }
}
.links-block {
    @media(max-width: 991px) {
        flex-direction: column;
        gap: 24px;
        width: auto;
    }
}


/* Общие */
p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0 !important;
}
.mt-32 {
    margin-top: 2rem;
}
.pb-96 {
    padding-bottom: 6rem;
}
.py-96 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

/* Картинки */
.img-1 {
    position: absolute;
    top: 6rem;
    right: 0;
    max-width: 50%;
    height: auto;

    @media(max-width: 1400px) {
        display: none;
    }
}
.img-2 {
    @media(max-width: 991px) {
        display: none;
    }
}
.img-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
    height: auto;

    @media(max-width: 1200px) {
        display: none;
    }
}


/* Карточки */
.custom-card {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
}
.custom-card.custom-card-body {
    position: relative;
    left: 0.75rem;
    top: -18px;
    z-index: -1;
    padding-top: 2.75rem;
}
.custom-card-header {
    padding: 0.5rem 2.8rem;
    border-radius: 66px;
    background: linear-gradient(180deg, #7454AE 0%, #C152C5 100%);

    @media(max-width: 576px) {
        padding: 0.5rem 1.2rem;
    }
}


/* Точка в li */
li {
    list-style: none;
}
li:before {
    content:"·";
    font-size: 40px;
    vertical-align: -5px;
    line-height: 32px;
    margin-right: 10px;
}
ul {
    padding-left: 0 !important;
}


/* Форма */
.lin-gr-bg-1 {
    background: linear-gradient(180.58deg, #FEF7EB 43.11%, #FFFEFF 143.14%);
}
.lin-gr-bg-2 {
    background: linear-gradient(180deg, #FFFEFF 0%, #FEF7EB 100%);
}
.custom-form-border {
    --b: .3em;
    --c: 3em;
    --r: 1.6em;
    position: relative;
    border: solid var(--b) transparent;
}
.custom-form-border::before {
    background: linear-gradient(#FFE500, #FF5C00) border-box;
    position: absolute;
    z-index: -1;
    inset: calc(-1*var(--b));
    border: inherit;
    border-radius: var(--r);
    --corner: conic-gradient(from -90deg at var(--c) var(--c), red 25%, #0000 0) 0 0/ calc(100% - var(--c)) calc(100% - var(--c)) border-box;
    --inner: conic-gradient(red 0 0) padding-box;
    mask: var(--corner) subtract, var(--inner);
    content: '';
}
.custom-form-border .custom-form {
    background: linear-gradient(180deg, #FFFEFF 0%, #FEF7EB 100%);
    border-radius: 24px;
    box-shadow: 0px 0px 15px 0px #00000026;
}


/* Инпуты и Селекты */
main input[type="text"]::placeholder {
    font-size: 18px;
    opacity: 50% !important;
}
main input[type="text"]:focus {
    border: 1px solid rgba(255, 137, 6, 1) !important;
    box-shadow: none;
}
main input[type="text"] {
    box-shadow: 0px 4px 10px 0px #0000001A;
    border-radius: 12px !important;
    padding: 1.25rem;
    border: none;
}