

/* Start:/blog/styles/blog.css?175066920025376*/
@keyframes rotateicon {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg)
    }
}

:root {
    --color-bg: #f2f4ff
}

.articles {
    margin-bottom: 80px
}

@media (max-width:1024px) {
    .articles {
        margin-bottom: 60px
    }
}

@media (max-width:767px) {
    .articles {
        margin-bottom: 50px 0
    }
}

.articles__wrapper {
    position: relative
}

.articles__wrapper .panel {
    position: sticky;
    z-index: 2;
    top: 0;
    border-radius: 5px;
    padding: 50px;
    display: flex;
    align-items: center;
    background: linear-gradient(165.71deg, rgba(243, 244, 255, .71) 41.34%, rgba(221, 224, 255, 0) 156.53%);
    transition: .3s
}

@media (max-width:1024px) {
    .articles__wrapper .panel {
        padding: 38px
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel {
        padding: 10px 43px 10px 20px;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
        border-radius: 5px
    }
}

.articles__wrapper .panel.attached {
    padding: 20px 50px;
    background: linear-gradient(165.71deg, rgba(243, 244, 255, .9) 41.34%, rgba(221, 224, 255, .9) 156.53%)
}

@media (max-width:1024px) {
    .articles__wrapper .panel.attached {
        padding: 20px 38px
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel.attached {
        padding: 10px 43px 10px 20px;
        background: #fff
    }
}

.articles__wrapper .panel:hover {
    background-color: #fff
}

.articles__wrapper .panel__choose-tag {
    display: none;
    align-items: center;
    background: 0 0;
    border: 0;
    outline: 0
}

.articles__wrapper .panel__choose-tag.expande .choose-tag__icon {
    transform: rotate(180deg)
}

.articles__wrapper .panel__choose-tag .choose-tag__text {
    font-size: 14px;
    color: #32325d;
    line-height: 1
}

.articles__wrapper .panel__choose-tag .choose-tag__icon {
    margin-left: 14px;
    transition: .3s
}

@media (max-width:767px) {
    .articles__wrapper .panel__choose-tag {
        display: flex
    }
}

.articles__wrapper .panel__tags-list {
    max-width: 534px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative
}

.articles__wrapper .panel__tags-list.load::after {
    display: block
}

@media (max-width:1024px) {
    .articles__wrapper .panel__tags-list {
        width: 72.21%
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel__tags-list {
        overflow-y: hidden;
        overflow-x: hidden;
        flex-direction: column;
        align-items: flex-start;
        max-width: initial;
        width: 100%;
        position: absolute;
        top: calc(100% + 7px);
        left: 0;
        background-color: #fff;
        max-height: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
        border-radius: 5px;
        transition: .3s
    }

    @keyframes show {
        99% {
            max-height: 100vh
        }

        to {
            max-height: none
        }
    }

    .articles__wrapper .panel__tags-list.show {
        animation-name: show;
        animation-duration: 1s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards
    }
}

.articles__wrapper .list-articles::after,
.articles__wrapper .panel__tags-list::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    content: "";
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #32325d;
    border-top-color: transparent;
    animation: rotate 2s linear infinite
}

.articles__wrapper .panel__tags-list .tag {
    position: relative;
    color: #2c2c53;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.articles__wrapper .panel__tags-list .tag:not(:last-child) {
    margin-right: 8.23%
}

.articles__wrapper .panel__tags-list .tag.selected,
.articles__wrapper .panel__tags-list .tag:hover {
    color: #6d4bb7
}

.articles__wrapper .panel__tags-list .tag.selected::after,
.articles__wrapper .panel__tags-list .tag:hover::after {
    width: 100%
}

@media (max-width:1024px) {
    .articles__wrapper .panel__tags-list .tag {
        font-size: 14px;
        font-weight: 400
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel__tags-list .tag {
        font-size: 16px;
        margin: 5px 20px
    }

    .articles__wrapper .panel__tags-list .tag:first-child {
        margin-top: 20px
    }

    .articles__wrapper .panel__tags-list .tag:last-child {
        margin-bottom: 20px
    }

    .articles__wrapper .panel__tags-list .tag.selected::after,
    .articles__wrapper .panel__tags-list .tag:hover::after {
        width: 0
    }
}

.articles__wrapper .panel__tags-list .tag::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #6d4bb7;
    transition: .3s
}

.articles__wrapper .panel__input-search-container {
    position: relative;
    width: 31.93%;
    margin-left: auto
}

@media (max-width:1024px) {
    .articles__wrapper .panel__input-search-container {
        width: 22.13%
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel__input-search-container {
        position: absolute;
        top: 50%;
        right: 13px;
        width: 30px;
        transform: translateY(-50%);
        transition: .3s linear
    }

    .articles__wrapper .panel__input-search-container.focus {
        background-color: #fff;
        width: calc(100% - 13px - 20px)
    }
}

.articles__wrapper .panel__input-search-container .input-search {
    width: 100%;
    font-size: 14px;
    line-height: 47px;
    padding: 0 37px 0 15px;
    color: #32325d;
    outline: 0;
    background: 0 0;
    border: 1px solid #2c2c53;
    border-radius: 50px;
    transition: .3s
}

@media (max-width:1024px) {
    .articles__wrapper .panel__input-search-container .input-search {
        line-height: 35px;
        padding: 0 28px 0 15px
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel__input-search-container .input-search {
        line-height: 21px;
        padding: 0 30px 0 0;
        border-radius: 0;
        border: 0;
        border-left: 1px solid #9c9c9c
    }
}

.articles__wrapper .panel__input-search-container .input-search:focus {
    border: 1px solid #6d4bb7
}

@media (max-width:767px) {
    .articles__wrapper .panel__input-search-container .input-search:focus {
        border: 0
    }
}

.articles__wrapper .panel__input-search-container .input-search:focus~.icon-search path {
    fill: #6d4bb7
}

.articles__wrapper .panel__input-search-container .icon-search {
    position: absolute;
    pointer-events: none;
    user-select: none;
    top: 50%;
    right: 12px;
    width: 23px;
    height: 23px;
    transform: translateY(-50%)
}

.articles__wrapper .panel__input-search-container .icon-search path {
    transition: .3s
}

@media (max-width:1024px) {
    .articles__wrapper .panel__input-search-container .icon-search {
        width: 17px;
        height: 17px
    }
}

@media (max-width:767px) {
    .articles__wrapper .panel__input-search-container .icon-search {
        width: 14px;
        height: 14px;
        right: 0
    }

    .articles__wrapper .panel__input-search-container .icon-search path {
        transition: .3s;
        fill: #9c9c9c
    }
}

.articles__wrapper .list-articles {
    --color-font-1: #32325d;
    --color-font-2: #525f7f;
    --color-font-3: #6d4bb7;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 45px;
    gap: 40px 45px;
    min-height: 30px;
    position: relative
}

.articles__wrapper .list-articles.load::after {
    display: block
}

@media (max-width:1024px) {
    .articles__wrapper .list-articles {
        margin-top: 60px;
        grid-gap: 40px 53px;
        gap: 40px 53px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:767px) {
    .articles__wrapper .list-articles {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 30px 30px;
        gap: 30px 30px
    }
}

.articles__wrapper .list-articles__prompt {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-font-3)
}

.articles__wrapper .list-articles .article-card {
    width: 100%;
    background: #fff;
    box-shadow: var(--shadow-4);
    border-radius: 5px;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.articles__wrapper .list-articles .article-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 rgba(0, 0, 0, .1)
}

.articles__wrapper .list-articles .article-card:hover .article-card__title {
    color: var(--color-font-3)
}

.articles__wrapper .list-articles .article-card.hidden {
    opacity: 0
}

.articles__wrapper .list-articles .article-card__header {
    flex-shrink: 0;
    position: relative;
    border-radius: 5px;
    overflow-y: hidden;
    overflow-x: hidden
}

.articles__wrapper .list-articles .article-card__header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.articles__wrapper .list-articles .article-card__header::after {
    content: "";
    display: block;
    padding-top: 60.06%
}

.articles__wrapper .list-articles .article-card__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 25px
}

@media (max-width:767px) {
    .articles__wrapper .list-articles .article-card__body {
        padding: 20px
    }
}

.articles__wrapper .list-articles .article-card__body .article-card__title {
    color: var(--color-font-1);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    transition: .3s
}

.articles__wrapper .list-articles .article-card__body .article-card__subtitle {
    color: var(--color-font-2);
    font-size: 14px;
    line-height: 1.5;
    margin: 25px 0 auto
}

@media (max-width:767px) {
    .articles__wrapper .list-articles .article-card__body .article-card__subtitle {
        margin: 20px 0 auto
    }
}

.articles__wrapper .list-articles .article-card__body .article-card__date {
    margin-top: 30px;
    color: var(--color-font-2);
    font-size: 13px
}

@media (max-width:767px) {
    .articles__wrapper .list-articles .article-card__body .article-card__date {
        margin-top: 25px
    }
}

.partner-articles {
    margin-bottom: 80px
}

@media (max-width:1024px) {
    .partner-articles {
        margin-bottom: 60px
    }
}

@media (max-width:767px) {
    .partner-articles {
        margin-bottom: 50px 0
    }
}

.partner-articles.hide {
    display: none
}

.partner-articles__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 45px;
    gap: 40px 45px;
    align-items: start
}

@media (max-width:1024px) {
    .partner-articles__wrapper {
        grid-gap: 40px 53px;
        gap: 40px 53px;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:767px) {
    .partner-articles__wrapper {
        display: block
    }
}

.partner-articles__wrapper .partner-articles__title {
    display: none;
    font-size: 30px;
    font-weight: 400;
    color: #6d4bb7;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 25px
}

@media (max-width:767px) {
    .partner-articles__wrapper .partner-articles__title {
        display: block
    }
}

.partner-articles__wrapper .company-logo {
    position: sticky;
    top: calc(50% - 116px);
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    box-shadow: var(--shadow-4);
    border-radius: 5px
}

@media (max-width:1030px) {
    .partner-articles__wrapper .company-logo {
        top: calc(50% - 16.7317vw)
    }
}

@media (max-width:767px) {
    .partner-articles__wrapper .company-logo {
        display: none
    }
}

.partner-articles__wrapper .company-logo::after {
    content: "";
    display: block;
    padding-top: 76.82%
}

.partner-articles__wrapper .company-logo.default .company-logo__text {
    opacity: 1;
    visibility: visible
}

.partner-articles__wrapper .company-logo.default .company-logo__img {
    opacity: 0;
    visibility: hidden
}

.partner-articles__wrapper .company-logo__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #32325d;
    font-size: 36px;
    line-height: 1.2;
    align-items: center;
    transition: .3s;
    opacity: 0;
    visibility: hidden
}

.partner-articles__wrapper .company-logo__img {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: .3s
}

.partner-articles__wrapper .company-logo__bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.partner-articles__wrapper .company-logo__bg .ellipse {
    position: absolute;
    overflow-x: visible;
    overflow-y: visible;
    height: auto
}

.partner-articles__wrapper .company-logo__bg .ellipse-1 {
    z-index: 2;
    top: 50%;
    left: 44.039%;
    width: 45.364%
}

.partner-articles__wrapper .company-logo__bg .ellipse-2 {
    z-index: 1;
    top: 6.034%;
    left: -43.708%;
    width: 124.172%
}

.partner-articles__wrapper .partner-articles__list {
    position: relative;
    grid-column: 2/-1;
    min-height: 30px
}

.partner-articles__wrapper .partner-articles__list.load::after {
    display: block
}

@media (max-width:1024px) {
    .partner-articles__wrapper .partner-articles__list {
        grid-column: initial
    }
}

@media (max-width:767px) {
    .partner-articles__wrapper .partner-articles__list {
        width: 100%
    }
}

.partner-articles__wrapper .partner-articles__list::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    content: "";
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #32325d;
    border-top-color: transparent;
    animation: rotate 2s linear infinite
}

.partner-articles__wrapper .partner-articles__list .prompt {
    font-size: 16px;
    font-weight: 500;
    color: #6d4bb7
}

.partner-articles__wrapper .partner-articles__list .item {
    display: block;
    width: 100%;
    transition: .3s
}

.partner-articles__wrapper .partner-articles__list .item:not(:last-child) {
    margin-bottom: 50px
}

.partner-articles__wrapper .partner-articles__list .item.hidden {
    opacity: 0
}

.partner-articles__wrapper .partner-articles__list .item:hover .item__title {
    color: #6d4bb7
}

.partner-articles__wrapper .partner-articles__list .item__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #32325d;
    transition: .3s;
    margin-bottom: 25px
}

.partner-articles__wrapper .partner-articles__list .item__description {
    font-size: 14px;
    line-height: 1.5;
    color: #525f7f
}

.email-subs {
    --color-font: #393968;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    padding-left: 36.6%;
    margin-bottom: 40px
}

.email-subs.hidden {
    display: none
}

@media (max-width:767px) {
    .email-subs {
        --container-padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px var(--container-padding);
        margin-bottom: 30px;
        margin-left: calc(-1*var(--container-padding));
        width: calc(100% + var(--container-padding)*2);
        border-radius: initial
    }
}

.email-subs__bg-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(154.58deg, #d1d8ff 39.92%, #fff 91.95%)
}

.email-subs__bg-cont img {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 40.48%
}

@media (max-width:767px) {
    .email-subs__bg-cont img {
        display: none
    }
}

.email-subs__bg-cont .ellipse {
    position: absolute;
    overflow-y: visible;
    overflow-x: visible;
    height: auto
}

.email-subs__bg-cont .ellipse-1 {
    z-index: 2;
    top: 10.256%;
    left: 22.5%;
    width: 21%
}

@media (max-width:767px) {
    .email-subs__bg-cont .ellipse-1 {
        display: none
    }
}

.email-subs__bg-cont .ellipse-2 {
    z-index: 1;
    top: 26.923%;
    left: -2.8%;
    width: 49.8%
}

@media (max-width:767px) {
    .email-subs__bg-cont .ellipse-2 {
        top: -6.551%;
        left: -31.25%;
        width: 103.125%
    }
}

.email-subs__content {
    padding: 50px 0
}

@media (max-width:1024px) {
    .email-subs__content {
        padding: 40px 0
    }
}

@media (max-width:767px) {
    .email-subs__content {
        padding: 0
    }
}

.email-subs__content h2 {
    margin: 0 0 17px !important;
    /* font-weight: 500;
    line-height: 1.2;
    font-size: 28px;
    color: #393968 */
}

@media (max-width:1024px) {
    .email-subs__content h2 {
        margin-bottom: 13px !important;
    }
}

@media (max-width:767px) {
    .email-subs__content h2 {
        margin-bottom: 9px !important;
    }
}

.email-subs__content p {
    margin: 0 !important;
    width: 100%;
    max-width: 400px;
    /* line-height: 1.6;
    font-size: 18px;
    color: #393968 */
}

/* @media (max-width:1024px) {
    .email-subs__content p {
        font-size: 16px
    }
} */

@media (max-width:767px) {
    .email-subs__content p {
        max-width: unset
    }
}

.email-subs__content .cont-form {
    margin-top: 30px;
    margin-bottom: 15px
}

@media (max-width:1024px) {
    .email-subs__content .cont-form {
        margin-top: 25px;
        margin-bottom: 10px
    }
}

@media (max-width:767px) {
    .email-subs__content .cont-form {
        margin: 18px 0
    }
}

.email-subs__content .cont-form__form {
    display: flex;
    align-items: center;
    position: relative
}

@media (max-width:767px) {
    .email-subs__content .cont-form__form {
        flex-direction: column;
        align-items: flex-start
    }
}

.email-subs__content .cont-form__form .error-block {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -5px;
    left: 0;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    color: #af0945;
    transform: translate(0, -100%);
    border-radius: 3px;
    transition: .3s linear
}

.email-subs__content .cont-form__form .error-block.show {
    opacity: 1;
    visibility: visible
}

.email-subs__content .cont-form__form input {
    width: 60%;
    height: 40px;
    padding: 0 22px;
    border: 1px solid #393968;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    background: 0 0;
    color: #393968
}

.email-subs__content .cont-form__form input::placeholder {
    color: #393968
}

.email-subs__content .cont-form__form input.error {
    border: 1px solid #af0945
}

@media (max-width:1024px) {
    .email-subs__content .cont-form__form input {
        padding: 0 16px
    }
}

@media (max-width:767px) {
    .email-subs__content .cont-form__form input {
        width: 100%;
        max-width: 420px;
        margin-bottom: 18px
    }
}

.subs {
    margin-left: 21px;
    /* position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #393968;
    box-shadow: 2px 2px 5px rgba(182, 182, 218, .7);
    border-radius: 3px;
    border: 0;
    margin-left: 20px;
    min-width: 150px;
    min-height: 40px;
    height: 40px;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none */
}

@media (max-width:767px) {
    .subs {
        min-width: 142px;
        margin-left: 0;
        font-size: 12px
    }
}

.email-subs__content .cont-form__form .subs[data-state=load] {
    cursor: not-allowed
}

.email-subs__content .cont-form__form .subs[data-state=load] .sub-text {
    opacity: 0
}

.email-subs__content .cont-form__form .subs[data-state=load] .load-icon {
    opacity: 1;
    visibility: visible
}

/* .email-subs__content .cont-form__form .subs .sub-text {
    line-height: 1;
    font-weight: 500;
    font-size: 12px;
    color: #fff
} */

/* .email-subs__content .cont-form__form .subs .load-icon {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: initial;
    transition: .4s linear;
    animation: rotateicon 1s linear infinite
} */

.email-subs__content .cont-form .answer {
    display: none;
    width: 100%;
    max-width: 460px;
    font-weight: 500;
    line-height: 1.6;
    font-size: 18px;
    color: #393968
}

.email-subs__content .cont-form .answer.error {
    color: #af0945
}

@media (max-width:1024px) {
    .email-subs__content .cont-form .answer {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .email-subs__content .cont-form .answer {
        font-size: 14px
    }
}

.email-subs__content .priv-pol {
    line-height: 1.2;
    font-size: 14px;
    color: #393968;
    opacity: .6
}

@media (max-width:767px) {
    .email-subs__content .priv-pol {
        font-size: 11px
    }
}

.email-subs__content .priv-pol a {
    text-decoration: underline;
    color: #393968;
    line-height: inherit
}

.blog,
.blog footer {
    background-color: var(--color-bg)
}

.blog .btn-to-top {
    position: fixed;
    z-index: 99;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2c2c53;
    border-radius: 50%;
    background-color: transparent;
    transition: .3s ease-in-out;
    cursor: pointer
}

@media (max-width:900px) {
    .blog .btn-to-top {
        right: 5px;
        bottom: 134px
    }
}

.blog .btn-to-top.hide {
    opacity: 0;
    visibility: hidden
}

.blog .btn-to-top::after {
    content: "";
    display: block;
    width: 33.3%;
    height: 33.3%;
    border: 1px solid #2c2c53;
    border-color: #2c2c53 #2c2c53 transparent transparent;
    transform: rotate(-45deg) translate(-25%, 25%)
}

.blog .blog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1
}

.blog .blog-bg::after {
    content: "";
    display: block;
    padding-top: 53.229%
}

@media (max-width:1024px) {
    .blog .blog-bg::after {
        padding-top: 164.92%
    }
}

@media (max-width:767px) {
    .blog .blog-bg::after {
        padding-top: 185.31%
    }
}

.blog .blog-bg__elips {
    position: absolute;
    overflow-y: visible;
    overflow-x: visible;
    height: auto
}

.blog .blog-bg__elips-1 {
    z-index: 2;
    top: 0;
    left: 15.625%;
    width: 36.77%
}

@media (max-width:1024px) {
    .blog .blog-bg__elips-1 {
        top: 3.636%;
        left: 0;
        width: 52.473%
    }
}

@media (max-width:767px) {
    .blog .blog-bg__elips-1 {
        top: 44.182%;
        left: -4.5%;
        width: 100%
    }
}

.blog .blog-bg__elips-2 {
    z-index: 1;
    top: 0;
    left: 20.677%;
    width: 65.26%
}

@media (max-width:1024px) {
    .blog .blog-bg__elips-2 {
        top: 2.92%;
        left: 6.77%;
        width: 93.229%
    }
}

@media (max-width:767px) {
    .blog .blog-bg__elips-2 {
        top: 6.745%;
        left: 6.25%;
        width: 81.875%
    }
}

.blog .blog-bg__gradient {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(161.65deg, #d1d8ff 13.53%, rgba(209, 216, 255, 0) 63.79%, transparent)
}

.blog .blog-content .blog-title {
    color: #6d4bb7;
    /* font-size: 40px;
    font-weight: 500;
    line-height: 1.2; */
    text-align: center;
    padding: 151px 0 80px;
    margin: 0
}

@media (max-width:1024px) {
    .blog .blog-content .blog-title {
        padding: 139px 0 73px
    }
}

@media (max-width:767px) {
    .blog .blog-content .blog-title {
        max-width: 320px;
        /* font-size: 30px;
        font-weight: 400; */
        padding: 114px 0 60px;
        margin: 0 auto
    }
}

.btn-more {
    display: block;
    background-color: unset;
    border: 0;
    cursor: pointer;
    margin: 50px auto 0
}

@media (max-width:1024px) {
   .btn-more {
        margin: 30px auto 0
    }
}

@media (max-width:767px) {
    .btn-more {
        font-size: 18px;
        font-weight: 400;
        margin: 25px auto 0
    }
}

.blog .blog-content .btn-more.load::before {
    display: inline-block
}

.blog .blog-content .btn-more.load::after {
    visibility: hidden
}

.blog .blog-content .btn-more.hide {
    display: none
}

.blog .blog-content .btn-more::before {
    content: "";
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #5463fd;
    border-color: transparent #5463fd #5463fd;
    transform-origin: center;
    animation: rotate 1s linear infinite;
    display: none
}

@media (max-width:767px) {
    .blog .blog-content .btn-more::before {
        width: 16px;
        height: 16px
    }
}

@media (max-width:767px) {
    .blog .blog-content .btn-more::after {
        width: 16px;
        height: 12px;
        margin-left: 8px
    }
}

.blog .header .container {
    position: relative
}

/* End */
/* /blog/styles/blog.css?175066920025376 */
