.page_special_block {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}
.sp_image {
    text-align: center;
    padding: 10px 0 64px;
}

.sp_title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #2C2D5B;
    margin-bottom: 16px;
}
.sp_text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #2C2D5B;
    margin-bottom: 16px;
}
.sp_line {
    padding: 48px 0 48px;
    position: relative;
}
.sp_line:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 1px;
    background: rgba(193, 191, 186, 1);
}

.sp_images {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
}
.sp_image_item {
    display: flex;
    align-items: center;
}


.sp_button {
    display: flex;
    justify-content: center;
}
.sp_button a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 4px;
    border-radius: 12px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: fit-content;

    background: #2C2D5B;
    border: 1px solid rgba(193, 191, 186, 1);
    color: #FFFFFF;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
}


.sp_text_editor {
    text-align: center;
    padding: 0px 0 48px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #2C2D5B;
}



.description__input {
    padding: 16px;
    background: none;
    outline: none;
    border: 1px solid #A3A19C;
    color: #51504e;
    border-radius: 12px;
    line-height: 100%;
    font-size: 14px
}
.description__input:focus {
    border: 1px solid #A3A19C;
}
.description__input::placeholder {
    color: #51504ecc
}

.description__inputError {
    color: red;
    font-size: 12px
}

.description__field {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.description__status {
    color: green;
}
.description__form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.description__btn {
    padding: 12px 20px;
    color: #fff;
    background: #2c2d5b;
    border-radius: 12px;
    font-weight: 700;
    box-sizing: inherit;
    font-family: 'Poppins';
    font-style: normal;
    font-size: 16px;
    line-height: 27px;
    border: none;
    cursor: pointer;
    color: #fff;
    background: #2c2d5b;
    border-radius: 12px;
    font-weight: 700;
}

@media only screen and (max-width: 600px) {
    .description__field {
        flex-direction: column;
        width: 100%;
    }
    .sp_images {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .page_special_content > div:nth-child(13) {
        flex-direction: initial;
    }
}