@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

* {
    box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background: #fff;
    color: #2B363C;
    font: 400 16px/28px "Noto Sans", "Arial", sans-serif;
    margin: 0;
    -webkit-font-smoothing: auto;
}

header,
main,
footer,
section,
nav {
    display: block;
}

fieldset {
    border: none;
    margin: 0;
    min-width: 0;
    padding: 0;
}

a.arrow__link {
    align-items: center;
    color: #034AD8;
    display: flex;
    flex-flow: nowrap;
    gap: 8px;
    text-decoration: none;
}

a.arrow__link span:first-child {
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

a.arrow__link i {
    font-size: 22px;
    line-height: 22px;
}

a.arrow__link:hover {
    color: #021C51;
}

a.arrow__link:hover span:first-child {
    border-bottom-color: #021C51;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    border: 0;
    vertical-align: middle;
}

p {
    margin: 0;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.layout {
    max-width: 1276px;
    margin: 0 auto;
    padding: 0 30px;
    transition: 0.3s;
    width: 100%;
}

@media (max-width: 1280px) {
    .layout {
        max-width: 940px;
    }
}

.btn {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    font: 400 16px/28px "Noto Sans", "Arial", sans-serif;
    gap: 8px;
    justify-content: center;
    outline: none;
    margin: auto;
    padding: 0;
    text-decoration: none;
    transition: 0.3s;
}

.btn-m {
    border-radius: 4px;
    padding: 16px;
}

    .btn-m .icon {
        align-items: center;
        display: flex;
    }

        .btn-m .icon i {
            font-size: 20px;
            line-height: 20px;
        }

.btn-circle {
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.32);
    display: flex;
    font-size: 32px;
    height: 67px;
    justify-content: center;
    line-height: 32px;
    min-width: 67px;
    width: 67px;
}

    .btn-circle .btn-blue:hover {
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.32);
    }

    .btn-circle .btn-blue:active {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.32);
    }

.btn-full {
    width: 100%;
}

.btn-white {
    background: #fff;
    color: #2B363C;
}

    .btn-white:hover {
        background: #E1E4EA;
        color: #2B363C;
    }

    .btn-white:active {
        background: #c3c9d5;
        color: #2B363C;
    }

.btn-blue {
    background: #034AD8;
    color: #fff;
}

    .btn-blue i {
        color: #fff;
        transition: 0.3s;
    }

    .btn-blue:hover {
        background: #0239a6;
        color: #fff;
    }

        .btn-blue:hover i {
            color: #fff;
        }

            .btn-blue:hover i.icon-arrow-circle--right::before {
                content: "\e922";
            }

    .btn-blue:active {
        background: #022873;
        color: #fff;
    }

        .btn-blue:active i {
            color: #fff;
        }

.btn-blue-border {
    background: #fff;
    box-shadow: inset 0 0 0 2px #034AD8;
    color: #034AD8;
}

    .btn-blue-border i {
        color: #034AD8;
        transition: 0.3s;
    }

    .btn-blue-border:hover {
        background: #021C51;
        box-shadow: inset 0 0 0 0 #034AD8;
        color: #fff;
    }

        .btn-blue-border:hover i {
            color: #fff;
        }

            .btn-blue-border:hover i.icon-arrow-circle--right::before {
                content: "\e922";
            }

    .btn-blue-border:active {
        background: #010b1f;
        color: rgba(255, 255, 255, 0.8);
    }

        .btn-blue-border:active i {
            color: #fff;
        }

input[type=text],
select {
    background: #fff;
    border: 2px solid #E1E4EA;
    border-radius: 4px;
    color: #2B363C;
    font: 400 16px/28px "Noto Sans", "Arial", sans-serif;
    outline: none;
    padding: 16px;
    width: 100%;
}

    input[type=text]:hover,
    select:hover {
        border-color: #034AD8;
    }

        input[type=text]:hover::-moz-placeholder,
        select:hover::-moz-placeholder {
            color: #034AD8;
        }

        input[type=text]:hover::placeholder,
        select:hover::placeholder {
            color: #034AD8;
        }

    input[type=text]:focus,
    select:focus {
        border-color: #034AD8;
    }

        input[type=text]:focus::-moz-placeholder,
        select:focus::-moz-placeholder {
            color: #2B363C;
        }

        input[type=text]:focus::placeholder,
        select:focus::placeholder {
            color: #2B363C;
        }

    input[type=text]::-moz-placeholder,
    select::-moz-placeholder {
        color: #9CA6B8;
        -moz-transition: 0.3s;
        transition: 0.3s;
    }

    input[type=text]::placeholder,
    select::placeholder {
        color: #9CA6B8;
        transition: 0.3s;
    }

select {
    appearance: none;
    background: #fff url(../media/svg/icon-triangle--down.svg) no-repeat right 21px center/14px 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    select:hover,
    select:active,
    select:focus {
        background-image: url(../media/svg/icon-triangle--down--blue.svg);
    }

.field label {
    color: #021C51;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.footer {
    background: #021C51;
}

.footer__top {
    padding: 64px 0;
    transition: padding 0.3s;
}

@media (max-width: 768px) {
    .footer__top {
        padding: 32px 0;
    }
}

.footer__top:not(:last-child) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.footer__logo {
    height: 48px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .footer__logo {
        height: 25px;
    }
}

.footer__logo a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.footer__logo img {
    display: block;
    height: 100%;
    width: auto;
}

@media (max-width: 550px) {
    .footer__logo img {
        margin: auto;
    }
}

.footer__middle {
    padding: 32px 0;
}

    .footer__middle:not(:last-child) {
        border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    }

    .footer__middle .layout {
        align-items: center;
        display: flex;
        gap: 50px;
        justify-content: space-between;
    }

@media (max-width: 1280px) {
    .footer__middle .layout {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
        justify-content: flex-start;
    }
}

.footer-middle__text {
    max-width: 450px;
    transition: 0.3s;
    width: 37%;
}

@media (max-width: 1280px) {
    .footer-middle__text {
        max-width: 640px;
        width: 100%;
    }
}

.footer-middle__text p {
    margin: 0;
}

.footer-middle__partners {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: flex-end;
    transition: 0.3s;
    width: 63%;
}

@media (max-width: 1280px) {
    .footer-middle__partners {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-middle__partners {
        flex-flow: wrap;
    }
}

.footer-middle__partners a {
    display: block;
}

    .footer-middle__partners a:hover img {
        opacity: 0.75;
    }

.footer-middle__partners img {
    display: block;
    height: 24px;
    opacity: 0.5;
    transition: 0.3s;
    width: auto;
}

.footer__bottom {
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .footer__bottom {
        padding: 32px 0;
    }
}

@media (max-width: 768px) {
    .footer__bottom {
        padding-top: 18px;
    }
}

.footer__bottom .layout {
    display: flex;
}

@media (max-width: 1280px) {
    .footer__bottom .layout {
        flex-direction: column;
        gap: 32px;
    }
}

.footer__bottom-left {
    align-items: center;
    display: flex;
    padding: 64px 0;
    transition: 0.3s;
    width: 37%;
}

@media (max-width: 1280px) {
    .footer__bottom-left {
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer__bottom-left {
        border-bottom: 2px solid rgba(255, 255, 255, 0.05);
        justify-content: center;
        margin: 0 -30px;
        padding: 0 30px 18px;
        width: auto;
    }
}

.footer__bottom-left:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1280px) {
    .footer__bottom-left:not(:last-child) {
        border-right: none;
    }
}

.footer__bottom-right {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    padding: 64px 0;
    transition: 0.3s;
    width: 63%;
}

@media (max-width: 1280px) {
    .footer__bottom-right {
        align-items: flex-start;
        gap: 16px;
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer__bottom-right {
        gap: 40px;
    }
}

.footer__social nav {
    align-items: center;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .footer__social nav {
        gap: 32px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer__social nav {
        gap: 8px;
        justify-content: center;
    }
}

.footer__social nav a {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 20px;
    height: 56px;
    justify-content: center;
    min-width: 56px;
    text-decoration: none;
    transition: 0.3s;
    width: 56px;
}

    .footer__social nav a i {
        color: #fff;
    }

    .footer__social nav a:hover {
        color: #1A65FA;
    }

        .footer__social nav a:hover i {
            color: #1A65FA;
        }

.footer-bottom__nav nav {
    align-items: center;
    display: flex;
    gap: 34px;
}

@media (max-width: 768px) {
    .footer-bottom__nav nav {
        gap: 16px 32px;
        flex-flow: wrap;
    }
}

@media (max-width: 550px) {
    .footer-bottom__nav nav {
        align-items: flex-start;
        gap: 32px;
        flex-direction: column;
    }
}

.footer-bottom__nav nav a {
    color: #fff;
    text-decoration: none;
}

    .footer-bottom__nav nav a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-bottom__copy {
    color: #9CA6B8;
    font-size: 14px;
    line-height: 24px;
}

.language-picker__checkbox {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

    .language-picker__checkbox:checked ~ .language-picker__current .icon {
        transform: rotate(-180deg);
    }

    .language-picker__checkbox:checked ~ .language-picker__nav {
        box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.16);
        max-height: 500px;
        opacity: 1;
        padding: 32px 0;
        top: 100%;
        transform: translateY(0);
        transition: all 0.3s, visibility 0s, box-shadow 0.3s 0.2s;
        visibility: visible;
        z-index: 100;
    }

@media (max-width: 1024px) {
    .language-picker__checkbox:checked ~ .language-picker__nav {
        padding: 24px 0;
    }
}

@media (max-width: 550px) {
    .language-picker__checkbox:checked ~ .language-picker__nav {
        padding: 32px 0;
    }
}

.language-picker__current {
    align-items: center;
    color: #2B363C;
    cursor: pointer;
    display: flex;
    gap: 13px;
    padding: 16px 0;
}

    .language-picker__current:hover {
        color: #034AD8;
    }

    .language-picker__current:active {
        color: #0239a6;
    }

    .language-picker__current .icon {
        font-size: 8px;
        line-height: 8px;
        transform: rotate(0deg);
        transition: 0.3s;
    }

.language-picker__nav {
    background: #F1F3F8;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
    max-height: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-3vh);
    transition: all 0.2s, visibility 0.2s 0s;
    visibility: hidden;
    width: 100%;
}

    .language-picker__nav nav {
        display: grid;
        gap: 32px;
        grid-template-columns: repeat(4, 1fr);
        transition: 0.3s;
        width: 100%;
    }

@media (max-width: 1024px) {
    .language-picker__nav nav {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .language-picker__nav nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .language-picker__nav nav {
        grid-template-columns: repeat(1, 1fr);
    }
}

.language-picker__nav-item {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

    .language-picker__nav-item input[type=radio] {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
    }

        .language-picker__nav-item input[type=radio]:checked ~ .title {
            color: #2B363C;
        }

            .language-picker__nav-item input[type=radio]:checked ~ .title::after {
                opacity: 1;
                transform: scale(1);
            }

    .language-picker__nav-item .flag {
        border-radius: 100%;
        height: 32px;
        min-width: 32px;
        overflow: hidden;
        transition: 0.3s;
        width: 32px;
    }

@media (max-width: 1024px) {
    .language-picker__nav-item .flag {
        height: 24px;
        min-width: 24px;
        width: 24px;
    }
}

@media (max-width: 550px) {
    .language-picker__nav-item .flag {
        height: 32px;
        min-width: 32px;
        width: 32px;
    }
}

.language-picker__nav-item .flag img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}

.language-picker__nav-item .title {
    align-items: center;
    color: #2B363C;
    display: flex;
    gap: 8px;
    transition: 0.3s;
}

    .language-picker__nav-item .title:hover {
        color: #034AD8;
    }

    .language-picker__nav-item .title::after {
        color: #034AD8;
        content: "\e909";
        font-family: "Icons" !important;
        font-size: 13px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        margin-left: 3px;
        opacity: 0;
        text-transform: none;
        transform: scale(0);
        transform-origin: center;
        transition: 0.3s;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

@media (max-width: 1024px) {
    .language-picker__nav-item .title::after {
        font-size: 11px;
    }
}

.top-panel__block {
    align-items: center;
    display: flex;
    gap: 32px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .top-panel__block {
        gap: 16px;
    }
}

.top-panel__block .top-panel__item {
    align-items: center;
    color: #2B363C;
    display: flex;
    gap: 8px;
    padding: 16px 0;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .top-panel__block .top-panel__item {
        padding: 16px 12px;
    }
}

.top-panel__block .top-panel__item:hover {
    color: #034AD8;
}

.top-panel__block .top-panel__item:active {
    color: #0239a6;
}

.top-panel__item .icon {
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    width: 24px;
}

    .top-panel__item .icon .icon-search {
        font-size: 20px;
    }

    .top-panel__item .icon .icon-angle--right {
        font-size: 8px;
    }

@media (max-width: 550px) {
    .top-panel__item .icon .icon-angle--right {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .top-panel__item .icon .icon-angle--right::before {
        content: "\e91d";
        transform: rotate(0);
    }
}

@media (max-width: 550px) {
    .top-panel__item .text {
        display: none;
    }
}

.loginicon::before {
    content: '\e91d';
    font-family: "Icons" !important;
    margin-right: 5px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
}

.header__dropdown {
    background: #F1F3F8;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
    max-height: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.2s, visibility 0.2s 0s;
    visibility: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .header__dropdown {
        padding: 32px 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: max-height 0.2s, opacity 0.2s, visibility 0.2s 0s;
        width: 100%;
    }
}

.header__dropdown-title {
    align-items: center;
    display: flex;
    gap: 8px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .header__dropdown-title {
        justify-content: space-between;
    }
}

.header__dropdown-title::after {
    align-items: center;
    content: "\e901";
    display: flex;
    font-family: "Icons" !important;
    font-style: normal;
    font-size: 8px;
    font-weight: normal;
    font-variant: normal;
    height: 24px;
    justify-content: center;
    line-height: 1;
    min-width: 24px;
    text-transform: none;
    transition: 0.3s;
    width: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    .header__dropdown-title::after {
        transform: rotate(-90deg);
    }
}

@media (min-width: 769px) {
    .header__dropdown-item.--dropdown:hover .header__dropdown {
        box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.16);
        max-height: 500px;
        opacity: 1;
        padding: 64px 0;
        transition: all 0.5s, visibility 0s, box-shadow 0.5s 0.2s;
        visibility: visible;
        z-index: 100;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header__dropdown-item.--dropdown:hover .header__dropdown {
        padding: 32px 0;
    }
}

@media (min-width: 769px) {
    .header__dropdown-item.--dropdown:hover .header__dropdown-title {
        color: #034AD8;
    }

        .header__dropdown-item.--dropdown:hover .header__dropdown-title::after {
            transform: rotate(180deg);
        }
}

.header__dropdown > .layout {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header__dropdown .dropdown__back {
    display: none;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .header__dropdown .dropdown__back {
        display: block;
    }
}

.header__dropdown .dropdown__back label {
    align-items: center;
    color: #2B363C;
    cursor: pointer;
    display: flex;
    gap: 12px;
}

.header__dropdown .dropdown__back .icon-arrow--left {
    font-size: 16px;
    line-height: 16px;
}

.header__dropdown .dropdown__title {
    color: #021C51;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 32px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header__dropdown .dropdown__title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }
}

.header__dropdown .dropdown__cols {
    display: grid;
    gap: 16px 32px;
    grid-template-columns: repeat(4, 1fr);
    transition: 0.3s;
    width: 100%;
}

@media (max-width: 1024px) {
    .header__dropdown .dropdown__cols {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__dropdown .dropdown__cols {
        grid-template-columns: repeat(1, 1fr);
    }
}

.header__dropdown .dropdown__item {
    color: #034AD8;
    padding: 8px 0;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header__dropdown .dropdown__item {
        padding: 0;
    }
}

.header__dropdown .dropdown__item:hover {
    text-decoration: underline;
}

.header__logo {
    height: 48px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header__logo {
        height: 38px;
    }
}

@media (max-width: 550px) {
    .header__logo {
        height: 24px;
    }
}

.header__logo a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.header__logo img {
    display: block;
    height: 100%;
    width: auto;
}

.header__language-picker .language-picker__current {
    position: relative;
    z-index: 102;
}

.header__top {
    position: relative;
}

    .header__top::before {
        background: #F1F3F8;
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 101;
    }

    .header__top .layout {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

.header__top-panel {
    position: relative;
    z-index: 102;
}

.header__middle {
    max-height: 100px;
    padding: 5px 0 13px;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header__middle {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .header__middle {
        display: none;
    }
}

.header__middle > .layout {
    align-items: flex-start;
    display: flex;
    justify-content: flex-end;
}

.header__middle .header__dropdown {
    top: calc(100% - 13px);
}

@media (max-width: 1024px) {
    .header__middle .header__dropdown {
        top: 100%;
    }
}

.header__middle-nav nav {
    display: flex;
    gap: 32px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header__middle-nav nav {
        gap: 24px;
    }
}

.header__middle-nav__item {
    color: #2B363C;
    padding: 16px 0;
    text-decoration: none;
    transition: 0.3s;
}

    .header__middle-nav__item:not(.--dropdown):hover {
        color: #034AD8;
    }

    .header__middle-nav__item.--justica {
        border-top: 5px solid #FDCE00;
        padding: 16px;
        transition: 0.3s;
    }

@media (max-width: 1024px) {
    .header__middle-nav__item.--justica {
        padding: 16px 0;
    }
}

.header__middle-nav__item.--justica:hover {
    border-color: #e4b900;
}

.header__middle-nav__item.--justica img {
    display: block;
    height: 27px;
    width: auto;
}

.header__bottom {
    padding: 25px 0;
    position: relative;
    transition: padding 0.3s;
}

@media (max-width: 1024px) {
    .header__bottom {
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .header__bottom {
        padding: 26px 0;
    }
}

.header__bottom-dropdown-checkbox {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .header__bottom-dropdown-checkbox:checked ~ .header__dropdown {
        box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.16);
        height: calc(100vh - 136px);
        max-height: 1000px;
        opacity: 1;
        overflow: auto;
        transition: max-height 0.5s, opacity 0.5s, visibility 0s, box-shadow 0.5s 0.2s;
        visibility: visible;
        z-index: 1;
    }

    .header__bottom-dropdown-checkbox:checked ~ .header__dropdown-title {
        color: #034AD8;
    }

        .header__bottom-dropdown-checkbox:checked ~ .header__dropdown-title::after {
            transform: rotate(180deg);
        }
}

.header__bottom .header__dropdown {
    top: calc(100% - 25px);
}

@media (max-width: 768px) {
    .header__bottom .header__dropdown {
        top: 0;
    }
}

.header__bottom > .layout {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header__bottom-nav {
    transition: 0.3s;
}

@media (max-width: 768px) {
    .header__bottom-nav {
        background: #fff;
        height: calc(100vh - 136px);
        opacity: 0;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        visibility: hidden;
        width: 100%;
        z-index: 99;
    }
}

.header__bottom-nav__checkbox {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

    .header__bottom-nav__checkbox:checked ~ .header__bottom-nav {
        opacity: 1;
        visibility: visible;
    }

    .header__bottom-nav__checkbox:checked ~ .header__bottom-nav__burger .icon-nav-toggle {
        background: transparent;
    }

        .header__bottom-nav__checkbox:checked ~ .header__bottom-nav__burger .icon-nav-toggle::before {
            bottom: 0;
            transform: rotate(45deg);
            transition: bottom 0.3s, transform 0.3s 0.3s;
        }

        .header__bottom-nav__checkbox:checked ~ .header__bottom-nav__burger .icon-nav-toggle::after {
            top: 0;
            transform: rotate(-45deg);
            transition: top 0.3s, transform 0.3s 0.3s;
        }

.header__bottom-nav__burger {
    display: none;
}

@media (max-width: 768px) {
    .header__bottom-nav__burger {
        align-items: center;
        display: flex;
        justify-content: center;
    }
}

.header__bottom-nav__burger .icon-nav-toggle {
    background: #2B363C;
    cursor: pointer;
    height: 2px;
    position: relative;
    transition: 0.3s 0.3s;
    width: 30px;
}

    .header__bottom-nav__burger .icon-nav-toggle::before,
    .header__bottom-nav__burger .icon-nav-toggle::after {
        background: #2B363C;
        border-radius: 2px;
        content: "";
        height: 100%;
        position: absolute;
        bottom: calc(100% + 6px);
        transition: top 0.3s 0.3s, bottom 0.3s 0.3s, transform 0.3s;
        transform-origin: center;
        width: 100%;
    }

    .header__bottom-nav__burger .icon-nav-toggle::after {
        top: calc(100% + 6px);
        bottom: auto;
    }

.header__bottom-nav nav {
    display: flex;
    transition: gap 0.3s;
}

@media (max-width: 1024px) {
    .header__bottom-nav nav {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header__bottom-nav nav {
        flex-direction: column;
        gap: 0;
    }
}

.header__bottom-nav__item {
    color: #2B363C;
    padding: 16px;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .header__bottom-nav__item {
        padding: 24px 32px;
    }
}

.header__bottom-nav__item:not(.--dropdown):hover {
    color: #034AD8;
}

.header.fixed {
    background: #fff;
    z-index: 100;
}

    .header.fixed .header__middle {
        max-height: 0;
        opacity: 0;
        padding: 0;
        visibility: hidden;
    }

@font-face {
    font-family: "Icons";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../media/fonts/Icons.eot");
    src: url("../media/fonts/Icons.eot#iefix") format("embedded-opentype"), url("../media/fonts/Icons.ttf") format("truetype"), url("../media/fonts/Icons.woff") format("woff"), url("../media/fonts/Icons.svg") format("svg");
}

[class^=icon-],
[class*=" icon-"] {
    font-family: "Icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: never;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-alert:before {
    content: "\e900";
}

.icon-angle--down:before {
    content: "\e901";
}

.icon-angle--right:before {
    content: "\e901";
    display: inline-block;
    transform: rotate(-90deg);
}

.icon-angle--left:before {
    content: "\e901";
    display: inline-block;
    transform: rotate(90deg);
}

.icon-arrow--left:before {
    content: "\e902";
}

.icon-arrow-circle--right:before {
    content: "\e903";
}

.icon-arrow-circle--right--filled:before {
    content: "\e922";
}

.icon-bookmark {
    background: url("../media/svg/icon-bookmark.svg") no-repeat center/contain;
    background-size: contain;
    height: 32px;
    width: 24px;
}

.icon-book:before {
    content: "\e904";
}

.icon-briefcase:before {
    content: "\e905";
}

.icon-buildings:before {
    content: "\e906";
}

.icon-check:before {
    content: "\e909";
}

.icon-check-circle:before {
    content: "\e908";
}

.icon-check-circle--filled:before {
    content: "\e907";
}

.icon-clock:before {
    content: "\e90a";
}

.icon-copy:before {
    content: "\e90b";
}

.icon-edit:before {
    content: "\e90c";
}

.icon-fb:before {
    content: "\e90d";
}

.icon-filter:before {
    content: "\e90e";
}

.icon-flag:before {
    content: "\e917";
}

.icon-info:before {
    content: "\e911";
}

.icon-info-circle:before {
    content: "\e910";
}

.icon-insta:before {
    content: "\e912";
}

.icon-ln:before {
    content: "\e913";
}

.icon-marker:before {
    content: "\e914";
}

.icon-payment-mastercard {
    background: url("../media/svg/icon-payment-mastercard.svg") no-repeat center;
    background-size: contain;
    height: 26px;
    width: 40px;
}

.icon-payment-mbway {
    background: url("../media/svg/icon-payment-mbway.svg") no-repeat center;
    background-size: contain;
    height: 40px;
    width: 31px;
}

.icon-payment-multibanco {
    background: url("../media/svg/icon-payment-multibanco.svg") no-repeat center;
    background-size: contain;
    height: 40px;
    width: 34px;
}

.icon-payment-visa {
    background: url("../media/svg/icon-payment-visa.svg") no-repeat center;
    background-size: contain;
    height: 13px;
    width: 40px;
}

.icon-search:before {
    content: "\e915";
}

.icon-smile-happy:before {
    content: "\e916";
}

.icon-smile-neutral:before {
    content: "\e90f";
}

.icon-smile-sad:before {
    content: "\e918";
}

.icon-times:before {
    content: "\e91a";
}

.icon-times-circle:before {
    content: "\e919";
}

.icon-triangle--down:before {
    content: "\e91b";
}

.icon-upload:before {
    content: "\e91c";
}

.icon-user:before {
    content: "\e91d";
}

.icon-users:before {
    content: "\e91e";
}

.icon-wallet:before {
    content: "\e91f";
}

.icon-warning:before {
    content: "\e920";
}

.icon-youtube:before {
    content: "\e921";
}

.heading-regular + ol,
.heading-regular + ul {
    margin-top: 12px;
}

ol,
ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

    ol:first-child,
    ul:first-child {
        margin-top: 0;
    }

    ol:last-child,
    ul:last-child {
        margin-bottom: 0;
    }

    ol li,
    ul li {
        color: #2B363C;
        padding-left: 32px;
        position: relative;
    }

        ol li p,
        ul li p {
            color: #64718B;
            font-size: 14px;
            line-height: 24px;
            margin: 8px 0 0;
        }

            ol li p:first-child,
            ul li p:first-child {
                margin-top: 0;
            }

    ol li {
        counter-increment: decimal;
    }

        ol li::before {
            align-items: center;
            background: #E5EEFF;
            border-radius: 100%;
            color: #021C51;
            content: counter(decimal);
            justify-content: center;
            display: flex;
            height: 24px;
            position: absolute;
            top: 2px;
            left: 0;
            width: 24px;
        }

    ol.list--large-number li {
        color: #64718B;
        font-size: 16px;
        line-height: 28px;
        padding: 16px 32px 16px 80px;
    }

        ol.list--large-number li::before {
            align-items: flex-start;
            background: transparent;
            border-radius: 0;
            color: #034AD8;
            font-size: 24px;
            font-weight: 700;
            height: auto;
            justify-content: flex-start;
            line-height: 36px;
            padding: 12px 0;
            top: 0;
            width: 48px;
        }

        ol.list--large-number li::after {
            background: #E1E4EA;
            content: "";
            height: 100%;
            position: absolute;
            top: 0;
            left: 46px;
            width: 2px;
        }

    ul li::before {
        background: #2B363C;
        border-radius: 100%;
        content: "";
        height: 6px;
        position: absolute;
        top: 12px;
        left: 9px;
        width: 6px;
    }

.list.list-checked ul {
    gap: 8px;
    transition: 0.3s;
}

.breadcrumbs__block span[itemprop="breadcrumb"] > span {
    align-items: center;
    display: flex;
    gap: 32px;
    transition: 0.3s;
}

.breadcrumbs__block span[itemprop="itemListElement"]:first-child a.SkinObject:before {
    display: none
}

.breadcrumbs__block span[itemprop="itemListElement"]:last-child a.SkinObject {
    border-bottom: none;
}

.breadcrumbs__block span a.SkinObject {
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 10px;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

    .breadcrumbs__block span a.SkinObject::before {
        content: "\e901";
        display: inline-block;
        font-family: "Icons" !important;
        font-size: 8px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        height: 8px;
        line-height: 1;
        position: absolute;
        top: 8px;
        left: -23px;
        text-transform: none;
        transform: rotate(-90deg);
        transition: 0.3s;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

div.actionMenu ul.dnn_mact {
    display: inline-block
}

    div.actionMenu ul.dnn_mact > li > a > i {
        vertical-align: baseline;
        color: #fff;
        font-size: 16px;
    }

    div.actionMenu ul.dnn_mact li:before {
        display: none
    }

    div.actionMenu ul.dnn_mact > li > ul {
        right: 0;
        gap: 0;
    }

.dnnModuleDialog .dnnModuleList .listContainer ul {
    display: inline-block;
}

body .dnnModuleDialog .dnnModuleList .listContainer ul li {
    padding: 0;
}

.dnnModuleDialog .dnnModuleList .listContainer ul li:hover {
    border-color: #fff;
}

.dnnModuleDialog .dnnModuleList .listContainer ul li:before {
    border-radius: 0
}

body div.actionMenu ul.dnn_mact > li:hover > a {
    background: #000
}

body div.actionMenu ul.dnn_mact > li:hover {
    border-color: transparent;
    background: transparent;
}



@media (max-width: 550px) {
    ul .list {
        gap: 16px;
    }
}

.list.list-checked li::before {
    background: none;
    border-radius: 0;
    content: "\e908";
    color: #034AD8;
    font-family: "Icons" !important;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    height: auto;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    text-transform: none;
    width: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 800px;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .table {
        min-width: 0;
    }
}

.table__wrapper {
    margin: 52px 0 44px;
    overflow: auto;
    width: 100%;
}

@media (max-width: 768px) {

    .table table,
    .table thead,
    .table tbody,
    .table tr {
        display: block;
    }
}

@media (max-width: 768px) {

    .table th,
    .table td {
        display: block;
    }
}

@media (max-width: 768px) {
    .table thead {
        width: 150px;
    }
}

.table thead tr th {
    background: #E5EEFF;
    border-bottom: 2px solid #E1E4EA;
    color: #2B363C;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 16px;
    text-align: left;
}

    .table thead tr th:first-child {
        padding-left: 32px;
    }

@media (max-width: 768px) {
    .table thead tr th:first-child {
        padding-left: 16px;
    }
}

.table thead tr th:last-child {
    padding-right: 32px;
}

@media (max-width: 768px) {
    .table thead tr th:last-child {
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .table tbody {
        display: flex;
        overflow-x: scroll;
        position: absolute;
        top: 0;
        left: 150px;
        width: calc(100% - 150px);
    }
}

@media (max-width: 768px) {
    .table tbody tr {
        min-width: 100px;
    }
}

.table tbody tr td {
    border-bottom: 2px solid #E1E4EA;
    padding: 18px 16px;
}

@media (max-width: 768px) {
    .table tbody tr td {
        padding: 20px 16px;
    }
}

.table tbody tr td:first-child {
    padding-left: 32px;
}

@media (max-width: 768px) {
    .table tbody tr td:first-child {
        padding-left: 16px;
    }
}

.table tbody tr td:last-child {
    padding-right: 32px;
}

@media (max-width: 768px) {
    .table tbody tr td:last-child {
        padding-right: 16px;
    }
}

.table tbody tr:nth-child(even) td {
    background: #FAFCFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans", "Arial", sans-serif;
    font-weight: 700;
    margin: 0;
}

    h1.heading-regular,
    h2.heading-regular,
    h3.heading-regular,
    h4.heading-regular,
    h5.heading-regular,
    h6.heading-regular {
        font-weight: 400;
        margin-bottom: 12px;
    }

        h1.heading-regular:not(:first-child),
        h2.heading-regular:not(:first-child),
        h3.heading-regular:not(:first-child),
        h4.heading-regular:not(:first-child),
        h5.heading-regular:not(:first-child),
        h6.heading-regular:not(:first-child) {
            margin-top: 32px;
        }

        h1.heading-regular + .heading-regular,
        h2.heading-regular + .heading-regular,
        h3.heading-regular + .heading-regular,
        h4.heading-regular + .heading-regular,
        h5.heading-regular + .heading-regular,
        h6.heading-regular + .heading-regular {
            margin-top: 0;
        }

h1 {
    font-size: 40px;
    line-height: 60px;
    margin: 0 0 16px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 550px) {
    h1 {
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 550px) {
    h1.heading-regular {
        font-size: 40px;
        line-height: 50px;
    }
}

h2 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 37px;
}

@media (max-width: 550px) {
    h2 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 32px;
    }
}

@media (max-width: 550px) {
    h2.heading-regular {
        font-size: 32px;
        line-height: 48px;
    }
}

h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
}

@media (max-width: 550px) {
    h3 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 550px) {
    h3.heading-regular {
        font-size: 24px;
        line-height: 36px;
    }
}

h4 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 8px;
}

h5 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 8px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

p {
    margin: 32px 0;
    line-height: 28px;
}

    p:first-child {
        margin-top: 0;
    }

    p:last-child {
        margin-bottom: 0;
    }

.single__content a:not([class]),
.single__content a[class=""] {
    align-items: center;
    color: #034AD8;
    display: inline-flex;
    flex-flow: wrap;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

a:not([class]) i,
a[class=""] i {
    color: #034AD8;
    font-size: 22px;
    transition: 0.3s;
}

a:not([class]):hover,
a[class=""]:hover {
    color: #034AD8;
}

    a:not([class]):hover i,
    a[class=""]:hover i {
        color: #034AD8;
    }

        a:not([class]):hover i.icon-arrow-circle--right::before,
        a[class=""]:hover i.icon-arrow-circle--right::before {
            content: "\e922";
        }

.single__content .row {
    gap: 32px;
    margin: 36px 0;
}

@media (max-width: 768px) {
    .single__content .row {
        flex-direction: column;
    }
}

.single__content .row.--space-xl {
    margin: 64px 0;
}

.single__content .row:first-child {
    margin-top: 0;
}

.single__content .row:last-child {
    margin-bottom: 0;
}

.single__content .row .col {
    padding: 0;
    transition: 0.3s;
    width: 50%;
}

@media (max-width: 768px) {
    .single__content .row .col {
        width: 100%;
    }
}

.header-form__block {
    background: #021C51;
    margin-bottom: 108px;
    padding-top: 60px;
    transition: margin 0.3s;
}

@media (max-width: 1024px) {
    .header-form__block {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .header-form__block {
        margin-bottom: 32px;
    }
}

@media (max-width: 550px) {
    .header-form__block {
        margin-bottom: 0;
        padding-top: 76px;
    }
}

.header-form__top {
    background: #021C51;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: padding 0.3s;
    width: 100%;
    z-index: 101;
}

@media (max-width: 550px) {
    .header-form__top {
        padding: 24px 0;
    }
}

.header-form__bottom .layout {
    display: flex;
}

.header-form__bottom-left {
    background: #F3F7FA;
    margin-bottom: -28px;
    padding: 64px 64px 64px 0;
    position: relative;
    transition: 0.3s;
    width: 66%;
}

@media (max-width: 1024px) {
    .header-form__bottom-left {
        padding: 48px 32px 32px 0;
    }
}

@media (max-width: 768px) {
    .header-form__bottom-left {
        margin: 0 -30px;
        padding: 64px 32px 32px;
        width: calc(100% + 60px);
    }
}

.header-form__bottom-left::before {
    background: #F3F7FA;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    transition: 0.3s;
    width: calc(100vw - 1216px);
}

@media (max-width: 1280px) {
    .header-form__bottom-left::before {
        width: calc(100vw - 940px);
    }
}

@media (max-width: 1024px) {
    .header-form__bottom-left::before {
        width: 50vw;
    }
}

@media (max-width: 768px) {
    .header-form__bottom-left::before {
        display: none;
    }
}

.header-form__bottom-left::after {
    background: url(../media/svg/icon-bookmark.svg) no-repeat center/contain;
    content: "";
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
}

@media (max-width: 768px) {
    .header-form__bottom-left::after {
        left: 32px;
    }
}

.header-form__bottom-left h1 {
    color: #051C47;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}

.header-form__bottom-right {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 36px;
    width: 34%;
}

@media (max-width: 768px) {
    .header-form__bottom-right {
        display: none;
    }
}

.header-form__back {
    padding-left: 16px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .header-form__back {
        padding-left: 0;
    }
}

.header-form__back a {
    align-items: center;
    color: #fff;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

    .header-form__back a i {
        color: #fff;
        transition: 0.3s;
    }

        .header-form__back a i.icon-arrow--left {
            font-size: 16px;
        }

    .header-form__back a:hover {
        color: #1A65FA;
    }

        .header-form__back a:hover i {
            color: #1A65FA;
        }

    .header-form__back a:active {
        color: #054ddc;
    }

        .header-form__back a:active i {
            color: #054ddc;
        }

.header-form__suptitle {
    color: #0C1A31;
    margin-bottom: 8px;
}

    .header-form__suptitle:last-child {
        margin-bottom: 0;
    }

.header-form__logo {
    height: 48px;
    width: auto;
}

    .header-form__logo a {
        display: block;
        text-decoration: none;
    }

        .header-form__logo a img {
            display: block;
            height: 100%;
            width: auto;
        }

.accordion__block {
    margin: 32px 0;
}

.accordion__item.active .accordion__header {
    background: #F1F3F8;
}

    .accordion__item.active .accordion__header .icon-angle--down {
        transform: rotate(180deg);
    }

.accordion__header {
    align-items: center;
    background: #fff;
    border-bottom: 2px solid #E1E4EA;
    color: #2B363C;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    gap: 15px;
    justify-content: space-between;
    line-height: 28px;
    padding: 32px 38px 32px 32px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .accordion__header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.accordion__header .icon-angle--down {
    color: #034AD8;
    font-size: 8px;
    transition: 0.3s;
}

.accordion__inner-cnt {
    padding: 24px 32px 32px;
}

.accordion__content {
    color: #2B363C;
    font-size: 16px;
    line-height: 28px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.alert {
    background: #fff;
    border: none;
    border-radius: 0;
    border-left: 4px solid;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
    margin: 32px 0;
    padding: 24px 16px 24px 44px;
    position: relative;
}

    .alert:first-child {
        margin-top: 0;
    }

    .alert:last-child {
        margin-bottom: 0;
    }

    .alert::before {
        content: "";
        font-family: "Icons" !important;
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        position: absolute;
        top: 27px;
        left: 13px;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .alert .title {
        color: #2B363C;
        font-size: 16px;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 8px;
    }

        .alert .title:last-child {
            margin-bottom: 0;
        }

    .alert p {
        margin: 0;
    }

        .alert p + p {
            margin-top: 24px;
        }

.alert-sm {
    border: none;
    border-radius: 4px;
    box-shadow: none;
    padding: 16px 16px 16px 48px;
}

    .alert-sm::before {
        top: 21px;
        left: 17px;
    }

.alert-warning {
    border-color: #FBBB3C;
}

    .alert-warning::before {
        content: "\e920";
        color: #FBBB3C;
    }

    .alert-warning.alert-sm {
        background: #FFF9E5;
    }

.alert-error {
    border-color: #D12332;
}

    .alert-error::before {
        content: "\e900";
        color: #D12332;
    }

    .alert-error.alert-sm {
        background: #FEF1F2;
    }

.alert-success {
    border-color: #00724C;
}

    .alert-success::before {
        content: "\e907";
        color: #00724C;
    }

    .alert-success.alert-sm {
        background: #E5FFF6;
    }

.alert-info {
    border-color: #00598C;
}

    .alert-info::before {
        content: "\e911";
        color: #00598C;
    }

    .alert-info.alert-sm {
        background: #E5F6FF;
    }

.arrow-links__block {
    display: grid;
    gap: 16px 32px;
    grid-template-columns: repeat(3, 1fr);
    margin: 32px 0;
    transition: 0.3s;
    width: auto;
}

@media (max-width: 1280px) {
    .arrow-links__block {
        display: flex;
        flex-flow: wrap;
    }
}

@media (max-width: 550px) {
    .arrow-links__block {
        flex-direction: column;
    }
}

.arrow-links__block:first-child {
    margin-top: 0;
}

.arrow-links__block:last-child {
    margin-bottom: 0;
}

.arrow-links__block .arrow-links__item {
    align-items: center;
    color: #034AD8;
    display: flex;
    flex-flow: nowrap;
    gap: 8px;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .arrow-links__block .arrow-links__item {
        padding: 0;
    }
}

@media (max-width: 550px) {
    .arrow-links__block .arrow-links__item {
        width: 100%;
    }
}

.arrow-links__block .arrow-links__item::after {
    color: #034AD8;
    content: "\e903";
    flex-shrink: 0;
    font-family: "Icons" !important;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.arrow-links__block .arrow-links__item span {
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.arrow-links__block .arrow-links__item:hover {
    color: #021C51;
}

    .arrow-links__block .arrow-links__item:hover span {
        border-bottom-color: #021C51;
        color: #021C51;
    }

    .arrow-links__block .arrow-links__item:hover::after {
        color: #021C51;
        content: "\e922";
    }

blockquote {
    background: #F1F3F8;
    display: block;
    margin: 88px 0 36px;
    padding: 55px 32px 40px;
    position: relative;
    transition: 0.3s;
    width: 100%;
    color: #2B363C;
    font-style: normal
}

@media (max-width: 550px) {
    blockquote {
        margin: 32px 0;
    }
}

blockquote:first-child {
    margin-top: 0;
}

blockquote:last-child {
    margin-bottom: 0;
}

blockquote::before {
    background: url(../media/svg/icon-bookmark.svg) no-repeat center/contain;
    content: "";
    height: 32px;
    position: absolute;
    top: 0;
    left: 32px;
    width: 24px;
}

blockquote .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 8px;
}

blockquote p {
    margin: 0;
    color: #2B363C;
    font: 400 16px/28px "Noto Sans", "Arial", sans-serif;
}

    blockquote p + p {
        margin-top: 32px;
    }

blockquote ul {
    margin-top: 16px;
}

.breadcrumbs__block {
    align-items: center;
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .breadcrumbs__block {
        margin-bottom: 32px;
    }
}

@media (max-width: 550px) {
    .breadcrumbs__block {
        margin-bottom: 42px;
    }
}

.breadcrumbs__block:last-child {
    margin-bottom: 0;
}

.breadcrumbs__item {
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 10px;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .breadcrumbs__item {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 550px) {
    .breadcrumbs__item + .breadcrumbs__item {
        padding-left: 20px;
    }
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "\e901";
    display: inline-block;
    font-family: "Icons" !important;
    font-size: 8px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    height: 8px;
    line-height: 1;
    position: absolute;
    top: 8px;
    left: -23px;
    text-transform: none;
    transform: rotate(-90deg);
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 550px) {
    .breadcrumbs__item + .breadcrumbs__item::before {
        left: 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 550px) {
    .breadcrumbs__item:first-child {
        display: none;
    }
}

.breadcrumbs__item:last-child {
    border-bottom: none;
}

@media (max-width: 550px) {
    .breadcrumbs__item:last-child {
        display: none;
    }
}

.discover-more__block {
    background: #021C51;
    color: #fff;
    padding: 64px 0 64px 64px;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .discover-more__block {
        padding: 64px 32px 32px;
    }
}

@media (max-width: 768px) {
    .discover-more__block {
        border-bottom: 2px solid rgba(255, 255, 255, 0.05);
        padding: 32px;
    }
}

@media (max-width: 550px) {
    .discover-more__block {
        padding-bottom: 40px;
    }
}

.discover-more__block::before,
.discover-more__block::after {
    background: #021C51;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
}

@media (max-width: 768px) {

    .discover-more__block::before,
    .discover-more__block::after {
        display: none;
    }
}

.discover-more__block::before {
    display: none;
    right: 100%;
    left: auto;
}

@media (max-width: 1024px) {
    .discover-more__block::before {
        display: block;
    }
}

.discover-more__block h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 0 0 32px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .discover-more__block h2 {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .discover-more__block h2 {
        margin-bottom: 24px;
    }
}

.discover-more__block h2:last-child {
    margin-bottom: 0;
}

.discover-more__nav nav {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .discover-more__nav nav {
        gap: 32px;
    }
}

.discover-more__nav__item {
    color: #fff !important;
    padding: 8px 0;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .discover-more__nav__item {
        padding: 0;
    }
}

.discover-more__nav__item:hover {
    color: #fff;
    text-decoration: underline;
}

.filter__wrapper {
    display: flex;
    flex-direction: column;
}

.filter__checkbox {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

    .filter__checkbox:checked ~ .filter__toggle::after {
        transform: rotate(-180deg);
    }

@media (max-width: 768px) {
    .filter__checkbox:checked ~ .filter__block {
        padding: 24px;
        max-height: 1000px;
    }
}

@media (max-width: 550px) {
    .filter__checkbox:checked ~ .filter__block {
        padding: 32px;
    }
}

.filter__toggle {
    align-items: center;
    background: #F7F8FA;
    display: none;
    gap: 16px;
    padding: 32px 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .filter__toggle {
        display: flex;
    }
}

.filter__toggle .icon {
    align-items: center;
    background: #E5EEFF;
    border-radius: 4px;
    color: #034AD8;
    display: flex;
    font-size: 20px;
    justify-content: center;
    height: 37px;
    min-width: 37px;
    width: 37px;
}

.filter__toggle .text {
    font-size: 20px;
    line-height: 32px;
}

.filter__toggle .quantity {
    background: #E1E4EA;
    border-radius: 20px;
    color: #2B363C;
    font-size: 14px;
    margin-left: -6px;
    line-height: 24px;
    padding: 0 11px;
}

.filter__toggle::after {
    color: #034AD8;
    content: "\e901";
    font-family: "Icons" !important;
    font-size: 8px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    margin-left: auto;
    text-transform: none;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.filter__block {
    background: #F7F8FA;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: calc(100% + 32px);
    margin: -32px 0 0;
    padding: 60px 30px 60px 0;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .filter__block {
        gap: 32px;
        padding: 32px 32px 32px 0;
    }
}

@media (max-width: 1024px) {
    .filter__block {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .filter__block {
        height: 100%;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
    }
}

@media (max-width: 550px) {
    .filter__block {
        padding: 0 32px;
    }
}

.filter__block::before {
    background: #F7F8FA;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    width: calc((100vw - 1216px) / 2);
}

@media (max-width: 1280px) {
    .filter__block::before {
        width: calc((100vw - 880px) / 2);
    }
}

@media (max-width: 550px) {
    .filter__block::before {
        display: none;
    }
}

.filter__search-results {
    color: #64718B;
    margin-top: 16px;
    text-align: right;
}

.filter__fields {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: gap 0.3s;
}

@media (max-width: 1024px) {
    .filter__fields {
        gap: 32px;
    }
}

.filter__field-info {
    align-items: center;
    color: #64718B;
    display: flex;
    font-size: 14px;
    gap: 8px;
    line-height: 24px;
    margin-top: 8px;
}

@media (max-width: 1280px) {
    .filter__field-info {
        align-items: flex-start;
        line-height: 20px;
    }
}

.filter__field-info:first-child {
    margin-top: 0;
}

.filter__field-info i {
    color: #0079BF;
}

@media (max-width: 1280px) {
    .filter__field-info i {
        position: relative;
        top: 3px;
    }
}

.filter__field.--search .filter__field-wrapper {
    position: relative;
}

    .filter__field.--search .filter__field-wrapper::before {
        color: #2B363C;
        content: "\e915";
        font-family: "Icons" !important;
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        height: 20px;
        line-height: 1;
        margin: auto;
        position: absolute;
        top: 0;
        right: 20px;
        bottom: 0;
        text-transform: none;
        transition: 0.3s;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .filter__field.--search .filter__field-wrapper input[type=text] {
        padding-right: 56px;
        transition: 0.3s;
    }

    .filter__field.--search .filter__field-wrapper:hover::before {
        color: #034AD8;
    }

.filter__title {
    color: #2B363C;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 32px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .filter__title {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

.filter__title:last-child {
    margin-bottom: 0;
}

.filter__active-filters {
    display: flex;
    flex-flow: wrap;
    gap: 16px;
    margin-bottom: 40px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .filter__active-filters {
        margin-bottom: 32px;
    }
}

.filter__active-filter {
    align-items: center;
    background: #fff;
    border: 2px solid #E1E4EA;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    gap: 13px;
    justify-content: center;
    line-height: 24px;
    padding: 16px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .filter__active-filter {
        padding: 10px;
    }
}

@media (max-width: 550px) {
    .filter__active-filter {
        padding: 16px;
    }
}

.filter__active-filter .btn-remove {
    color: #2B363C;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .filter__active-filter .btn-remove {
        font-size: 12px;
    }
}

@media (max-width: 550px) {
    .filter__active-filter .btn-remove {
        font-size: 14px;
    }
}

.filter__active-filter .btn-remove:active {
    opacity: 0.75;
}

.filter__active-filter:hover {
    background: #034AD8;
    border-color: #034AD8;
    color: #fff;
}

    .filter__active-filter:hover .btn-remove {
        color: #fff;
    }

.need-help__block {
    background: #F2F6FF;
    padding: 64px 64px 64px 0;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .need-help__block {
        padding: 64px 32px 32px;
    }
}

@media (max-width: 768px) {
    .need-help__block {
        padding: 64px 32px;
    }
}

.need-help__block .icon-bookmark {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .need-help__block .icon-bookmark {
        left: 32px;
    }
}

.need-help__block::before,
.need-help__block::after {
    background: #F2F6FF;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    width: 50vw;
}

@media (max-width: 768px) {

    .need-help__block::before,
    .need-help__block::after {
        display: none;
    }
}

.need-help__block::after {
    display: none;
    right: auto;
    left: 100%;
}

@media (max-width: 1024px) {
    .need-help__block::after {
        display: block;
    }
}

.need-help__block:last-child {
    padding-right: 0;
    padding-left: 104px;
}

@media (max-width: 1024px) {
    .need-help__block:last-child {
        padding-right: 32px;
        padding-left: 32px;
    }
}

.need-help__block:last-child .icon-bookmark {
    left: 104px;
}

@media (max-width: 1024px) {
    .need-help__block:last-child .icon-bookmark {
        left: 32px;
    }
}

.need-help__block:last-child::before {
    display: none;
}

.need-help__block:last-child::after {
    display: block;
}

.need-help__block h2 {
    color: #021C51;
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 32px;
}

@media (max-width: 768px) {
    .need-help__block h2 {
        font-size: 16px;
        line-height: 28px;
    }
}

.need-help__block h2:last-child {
    margin-bottom: 0;
}

.need-help__block .arrow-links__block {
    display: flex;
    flex-flow: wrap;
}

.need-help__contacts {
    color: #021C51;
}

    .need-help__contacts:first-child {
        margin-top: 0;
    }

    .need-help__contacts h3 {
        color: #021C51;
        font-size: 16px;
        line-height: 28px;
    }

    .need-help__contacts p {
        margin: 0;
    }

        .need-help__contacts p a {
            color: #021C51;
            font-size: 20px;
            font-weight: bold;
            line-height: 32px;
            text-decoration: none;
            transition: 0.3s;
        }

            .need-help__contacts p a:hover {
                color: #034AD8;
            }

.pagination__block {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    transition: 0.3s;
    position: relative;
}

@media (max-width: 1024px) {
    .pagination__block {
        gap: 5px;
    }
}

.pagination__link {
    align-items: center;
    border-radius: 4px;
    color: #034AD8;
    display: flex;
    font-size: 14px;
    height: 44px;
    justify-content: center;
    line-height: 24px;
    min-width: 44px;
    padding: 10px 8px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .pagination__link {
        height: 34px;
        min-width: 34px;
        padding: 5px;
    }
}

@media (max-width: 550px) {
    .pagination__link {
        height: 28px;
        min-width: 28px;
        padding: 3px;
    }
}

.pagination__link:not(.--dots):not(.--prev):not(.--next):hover {
    box-shadow: inset 0 0 0 1px #034AD8;
}

.pagination__link:not(.--dots):not(.--prev):not(.--next):active {
    box-shadow: inset 0 0 0 1px #0239a6;
    color: #0239a6;
}

.pagination__link.--prev,
.pagination__link.--next {
    align-items: center;
    background: #fff;
    border: 2px solid #BAC0CC;
    border-radius: 100%;
    color: #034AD8;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-right: 122px;
    min-width: 44px;
    transition: 0.3s;
    width: 44px;
}

@media (max-width: 1280px) {

    .pagination__link.--prev,
    .pagination__link.--next {
        margin-right: 16px;
    }
}

@media (max-width: 1024px) {

    .pagination__link.--prev,
    .pagination__link.--next {
        height: 34px;
        margin-right: 8px;
        min-width: 34px;
        width: 34px;
    }
}

@media (max-width: 550px) {

    .pagination__link.--prev,
    .pagination__link.--next {
        height: 28px;
        margin-right: 5px;
        min-width: 28px;
        width: 28px;
    }
}

.pagination__link.--prev i,
.pagination__link.--next i {
    color: #034AD8;
    font-size: 8px;
    transition: 0.3s;
}

@media (max-width: 1024px) {

    .pagination__link.--prev i,
    .pagination__link.--next i {
        font-size: 6px;
    }
}

.pagination__link.--prev:hover,
.pagination__link.--next:hover {
    background: #034AD8;
    border-color: #034AD8;
    color: #fff;
}

    .pagination__link.--prev:hover i,
    .pagination__link.--next:hover i {
        color: #fff;
    }

.pagination__link.--prev:active,
.pagination__link.--next:active {
    background: #0239a6;
}

    .pagination__link.--prev:active i,
    .pagination__link.--next:active i {
        color: #fff;
    }

.pagination__link.--current {
    background: #034AD8;
    color: #fff;
}

.pagination__link.--dots {
    color: #64718B;
    font-size: 16px;
    min-width: 0;
    width: auto;
}

.pagination__link.--next {
    margin-right: 0;
    margin-left: 122px;
    position: absolute;
    right: 0
}

.pagination__link.--prev {
    position: absolute;
    left: 0
}

@media (max-width: 1280px) {
    .pagination__link.--next {
        margin-left: 16px;
    }
}

@media (max-width: 1024px) {
    .pagination__link.--next {
        margin-left: 8px;
    }
}

@media (max-width: 550px) {
    .pagination__link.--next {
        margin-left: 5px;
    }
}

.post__image {
    margin: 32px 0;
}

    .post__image img {
        display: block;
        height: auto;
        width: 100%;
    }

        .post__image img + p {
            font-size: 14px;
            font-style: italic;
            font-weight: 400;
            margin: 12px 0 0;
        }

    .post__image.--size-half {
        transition: 0.3s;
        width: 48%;
    }

@media (max-width: 550px) {
    .post__image.--size-half {
        width: 100%;
    }
}

.post__meta {
    align-items: center;
    border-top: 1px solid #DEE4F1;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 5px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .post__meta {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 45px;
        padding-top: 8px;
    }
}

.post__rate .title {
    color: #8893AA;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 5px;
}

.post__rate .rating {
    align-items: center;
    display: flex;
    gap: 11px;
}

    .post__rate .rating label input[type=radio] {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
    }

        .post__rate .rating label input[type=radio]:checked ~ i {
            color: #0D02DC;
        }

    .post__rate .rating label i {
        color: #CDCAFE;
        cursor: pointer;
        font-size: 22px;
        transition: 0.3s;
    }

    .post__rate .rating label:hover i {
        color: #0D02DC;
    }

.post__date {
    align-items: center;
    color: #8893AA;
    font-size: 12px;
    display: flex;
    gap: 8px;
    line-height: 24px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .post__date {
        order: -1;
    }
}

.post__date .icon-clock {
    color: #BAC0CC;
    font-size: 14px;
}

@media (max-width: 550px) {
    .post__date .icon-clock {
        display: none;
    }
}

.registry-services__block {
    padding: 24px 0 80px 32px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .registry-services__block {
        padding: 16px 0 32px 32px;
    }
}

@media (max-width: 768px) {
    .registry-services__block {
        padding: 0 0 32px;
    }
}

@media (max-width: 550px) {
    .registry-services__block {
        padding: 24px 0 65px;
    }
}

.registry-services__list {
    margin-bottom: 128px;
    transition: margin 0.3s;
}

@media (max-width: 1280px) {
    .registry-services__list {
        margin-bottom: 64px;
    }
}

@media (max-width: 1024px) {
    .registry-services__list {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .registry-services__list {
        margin-left: -30px;
        margin-right: -30px;
    }
}

.registry-services__item {
    color: #2B363C;
    display: block;
    padding: 32px;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

    .registry-services__item::after {
        background: #E1E4EA;
        content: "";
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 32px;
        transition: 0.3s;
        width: calc(100% - 64px);
    }

    .registry-services__item:hover {
        background: #F7F8FA;
    }

        .registry-services__item:hover .like-a-link__block {
            color: #021C51;
        }

            .registry-services__item:hover .like-a-link__block .text {
                border-bottom-color: #021C51;
                color: #021C51;
            }

            .registry-services__item:hover .like-a-link__block .icon i {
                color: #021C51;
            }

                .registry-services__item:hover .like-a-link__block .icon i.icon-arrow-circle--right::before {
                    content: "\e922";
                }

.registry-services__item-tags {
    align-items: flex-end;
    display: flex;
    flex-flow: wrap;
    gap: 16px;
    margin-bottom: 8px;
}

.registry-services__item-tag {
    border: 2px solid #034AD8;
    border-radius: 32px;
    color: #2B363C;
    font-size: 14px;
    line-height: 24px;
    padding: 2px 16px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .registry-services__item-tag {
        padding: 2px 10px;
    }
}

.registry-services__item-content h2 {
    color: #2B363C;
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 8px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .registry-services__item-content h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.registry-services__item-content p {
    margin: 0;
}

    .registry-services__item-content p + p {
        margin-top: 25px;
    }

.registry-services__item-content .like-a-link__block {
    align-items: center;
    color: #034AD8;
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 0;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .registry-services__item-content .like-a-link__block {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .registry-services__item-content .like-a-link__block {
        padding: 0;
    }
}

@media (max-width: 550px) {
    .registry-services__item-content .like-a-link__block {
        justify-content: space-between;
        margin-top: 20px;
        width: 100%;
    }
}

.registry-services__item-content .like-a-link__block .text {
    border-bottom: 2px solid transparent;
    color: #034AD8;
    transition: 0.3s;
}

.registry-services__item-content .like-a-link__block .icon i {
    color: #034AD8;
    font-size: 22px;
    line-height: 28px;
    transition: 0.3s;
}

.registry-services__item-info {
    align-items: center;
    display: flex;
    flex-flow: wrap;
    gap: 8px 14px;
    margin-top: 20px;
}

@media (max-width: 550px) {
    .registry-services__item-info {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

.registry-services__item-info .info__item {
    align-items: center;
    color: #64718B;
    display: flex;
    font-size: 14px;
    gap: 8px;
    line-height: 24px;
    padding-left: 16px;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .registry-services__item-info .info__item {
        align-items: flex-start;
        padding-left: 0;
    }
}

.registry-services__item-info .info__item:first-child {
    padding-left: 0;
}

.registry-services__item-info .info__item .icon {
    font-size: 18px;
}

.registry-services__item-info .info__item + .info__item::before {
    background: #9CA6B8;
    border-radius: 100%;
    content: "";
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
}

@media (max-width: 550px) {
    .registry-services__item-info .info__item + .info__item::before {
        display: none;
    }
}

@media (max-width: 550px) {
    .services__section {
        overflow: hidden;
    }
}

@media (max-width: 550px) {
    .services__carousel {
        padding-right: 16px;
    }
}

.services__carousel .swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 32px;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .services__carousel .swiper:not(.swiper-initialized) .swiper-wrapper {
        gap: 16px;
    }
}

.services__carousel .swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    flex-shrink: 1;
    height: auto;
}

@media (max-width: 550px) {
    .services__carousel .swiper.swiper-initialized {
        overflow: visible;
    }
}

.services__carousel .swiper.swiper-initialized .swiper-wrapper .swiper-slide {
    height: auto;
}

.services-carousel__item {
    background: #021C51 no-repeat center/cover;
    color: #fff;
    display: block;
    height: 100%;
    padding: 64px 44px 136px;
    text-decoration: none;
    transition: 0.3s;
    position: relative
}

a.card-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0;
}

@media (max-width: 1280px) {
    .services-carousel__item {
        padding: 32px 32px 64px;
    }
}

@media (max-width: 1024px) {
    .services-carousel__item {
        padding: 68px 44px 110px;
    }
}

.services-carousel__item::after {
    content: "\e903";
    font-family: "Icons" !important;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    bottom: 73px;
    left: 44px;
    text-transform: none;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1280px) {
    .services-carousel__item::after {
        bottom: 32px;
        left: 32px;
    }
}

@media (max-width: 1024px) {
    .services-carousel__item::after {
        bottom: 73px;
        left: 44px;
    }
}

.services-carousel__item:hover {
    background-color: #08018B;
    color: #fff;
}

.services-carousel__item.--first,
.services__carousel .swiper.swiper-initialized .swiper-wrapper .swiper-slide:first-child .services-carousel__item {
    background-image: url(../media/img/bg-services-carousel-1.png);
}

.services-carousel__item.--second,
.services__carousel .swiper.swiper-initialized .swiper-wrapper .swiper-slide:nth-child(2) .services-carousel__item {
    background-image: url(../media/img/bg-services-carousel-2.png);
}

.services-carousel__item.--third,
.services__carousel .swiper.swiper-initialized .swiper-wrapper .swiper-slide:nth-child(3) .services-carousel__item {
    background-image: url(../media/img/bg-services-carousel-3.png);
}

.services-carousel__item.--fourth,
.services__carousel .swiper.swiper-initialized .swiper-wrapper .swiper-slide:nth-child(4) .services-carousel__item {
    background-image: url(../media/img/bg-services-carousel-4.png);
}

.services-carousel__icon {
    color: #fff;
    font-size: 45px;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .services-carousel__icon {
        font-size: 35px;
    }
}

@media (max-width: 1024px) {
    .services-carousel__icon {
        font-size: 45px;
    }
}

.services-carousel__content {
    margin-top: 36px;
    transition: margin 0.3s;
}

@media (max-width: 1280px) {
    .services-carousel__content {
        margin-top: 24px;
    }
}

@media (max-width: 1024px) {
    .services-carousel__content {
        margin-top: 36px;
    }
}

@media (max-width: 1024px) {
    .services-carousel__content h3 {
        font-size: 24px;
        line-height: 34px;
    }
}

.services-carousel__content p {
    margin: 0;
}

.sidebar__block {
    margin-top: -350px;
    position: relative;
    transition: margin 0.3s;
    z-index: 1;
}

@media (max-width: 1280px) {
    .sidebar__block {
        margin-top: -150px;
    }
}

@media (max-width: 1024px) {
    .sidebar__block {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }
}

.sidebar__block.--last {
    display: none;
}

@media (max-width: 1024px) {
    .sidebar__block.--last {
        display: flex;
    }
}

@media (max-width: 1024px) {

    .sidebar__block.--last .sidebar__links-block,
    .sidebar__block.--last .sidebar__responsible {
        display: none;
    }
}

@media (max-width: 1024px) {

    .sidebar__block:not(.--last) .sidebar__button,
    .sidebar__block:not(.--last) .sidebar__arrow-links-block {
        display: none;
    }
}

@media (max-width: 1024px) {
    .sidebar__block__inner {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }
}

.sidebar__links-block {
    background: #F1F3F8;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.16);
    margin-right: -105px;
    margin-bottom: 60px;
    padding: 64px 105px 64px 64px;
    transition: margin 0.3s, padding 0.3s, width 0.3s;
}

    .sidebar__links-block.duplicate {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        position: sticky;
        top: 200px;
        visibility: hidden;
        transition: max-height 0.3s, opacity 0.3s, visibility 0.3s 0s;
    }

        .sidebar__links-block.duplicate.show {
            max-height: 600px;
            opacity: 1;
            visibility: visible;
        }

        .sidebar__links-block.duplicate:not(:first-child) {
            margin-top: 32px;
        }

@media (max-width: 1440px) {
    .sidebar__links-block {
        margin-right: -30px;
    }
}

@media (max-width: 1280px) {
    .sidebar__links-block {
        padding: 32px;
        margin-right: -30px;
        margin-left: -30px;
        margin-bottom: 0;
    }
}

@media (max-width: 550px) {
    .sidebar__links-block {
        margin-bottom: 20px;
    }
}

.sidebar__links-block:last-child {
    margin-bottom: 0;
}

.sidebar__links-block h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
}

.sidebar__links-block .links-block__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .sidebar__links-block .links-block__list a {
        color: #2B363C;
        text-decoration: none;
        transition: 0.3s;
    }

        .sidebar__links-block .links-block__list a:hover {
            color: #034AD8;
        }

.sidebar__responsible {
    border-bottom: 1px solid #DEE4F1;
    margin: 60px 0 50px;
    padding-bottom: 24px;
}

@media (max-width: 1024px) {
    .sidebar__responsible {
        border-bottom: none;
        order: -1;
        margin: 32px 0;
        padding: 0;
    }
}

@media (max-width: 550px) {
    .sidebar__responsible {
        margin: 20px 0;
    }
}

.sidebar__responsible:first-child {
    margin-top: 0;
}

.sidebar__responsible:last-child {
    margin-bottom: 0;
}

.sidebar__responsible .responsible__title {
    font-weight: 600;
    color: #021C51;
    margin-bottom: 20px;
}

.sidebar__responsible .responsible__logo {
    height: 51px;
}

    .sidebar__responsible .responsible__logo img {
        display: block;
        height: 100%;
        width: auto;
    }

.sidebar__button {
    margin: 50px 0 40px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .sidebar__button {
        margin-top: 40px;
    }
}

.sidebar__button:first-child {
    margin-top: 0;
}

.sidebar__button:last-child {
    margin-bottom: 0;
}

.sidebar__arrow-links-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sidebar__arrow-links-block .arrow-links__block {
    display: flex;
    flex-direction: column;
}

.special-link__box {
    background: #F1F3F8;
    color: #2B363C;
    display: flex;
    max-width: 87%;
    padding: 64px 90px 64px 32px;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .special-link__box {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .special-link__box {
        padding: 64px 32px 32px;
    }
}

.special-link__box::before {
    background: url(../media/svg/icon-bookmark.svg) no-repeat center/contain;
    content: "";
    height: 32px;
    position: absolute;
    top: 0;
    left: 32px;
    width: 24px;
}

.special-link__box::after {
    color: #034AD8;
    content: "\e903";
    font-family: "Icons" !important;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    height: 22px;
    line-height: 1;
    margin: auto;
    position: absolute;
    top: 0;
    right: 32px;
    bottom: 0;
    text-transform: none;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 550px) {
    .special-link__box::after {
        display: none;
    }
}

.special-link__box:hover::after {
    color: #021C51;
    content: "\e922";
}

.special-link__box:hover .special-link__highlighted {
    background: #E1E4EA;
    color: #2B363C;
}

.special-link__box:hover .special-link__content .like-a-link {
    color: #021C51;
}

    .special-link__box:hover .special-link__content .like-a-link .text {
        border-bottom-color: #021C51;
        color: #021C51;
    }

    .special-link__box:hover .special-link__content .like-a-link .icon .icon-arrow-circle--right::before {
        content: "\e922";
    }

.special-link__highlighted {
    background: #034AD8;
    border-radius: 32px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    padding: 4px 16px;
    transition: 0.3s;
}

.special-link__content {
    border-right: 2px solid #E1E4EA;
    padding-right: 32px;
    transition: 0.3s;
    width: 100%;
}

@media (max-width: 550px) {
    .special-link__content {
        border-right: none;
        padding-right: 0;
    }
}

.special-link__content p {
    margin: 0;
}

.special-link__content .like-a-link {
    align-items: center;
    color: #034AD8;
    display: flex;
    gap: 8px;
    margin-top: 24px;
    transition: 0.3s;
}

    .special-link__content .like-a-link:first-child {
        margin-top: 0;
    }

    .special-link__content .like-a-link .text {
        border-bottom: 2px solid transparent;
        color: #034AD8;
        transition: 0.3s;
    }

    .special-link__content .like-a-link .icon {
        align-items: center;
        display: flex;
    }

.video {
    margin: 32px 0;
}

    .video:first-child {
        margin-top: 0;
    }

    .video:last-child {
        margin-bottom: 0;
    }

    .video iframe {
        min-height: 448px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
        transition: 0.3s;
        width: 100%;
    }

@media (max-width: 550px) {
    .video iframe {
        min-height: 350px;
    }
}

@media (max-width: 550px) {
    .video iframe {
        min-height: 170px;
    }
}

.default__section {
    margin: 82px 0;
    transition: margin 0.3s;
}

@media (max-width: 768px) {
    .default__section {
        margin: 64px 0;
    }
}

@media (max-width: 550px) {
    .default__section {
        margin-bottom: 50px;
    }
}

.default__section h2 {
    color: #000;
}


.help__section {
    margin-top: 182px;
    overflow: hidden;
    transition: margin 0.3s;
}

@media (max-width: 1024px) {
    .help__section {
        margin-top: 100px;
    }
}

@media (max-width: 550px) {
    .help__section {
        margin-top: 50px;
    }
}

.help__section .layout {
    display: flex;
}

@media (max-width: 1024px) {
    .help__section .layout {
        flex-direction: column;
    }
}

.help__section .need-help__block {
    transition: width 0.3s;
    width: 69%;
}

@media (max-width: 1024px) {
    .help__section .need-help__block {
        margin: 0 -30px;
        width: auto;
    }
}

.help__section .discover-more__block {
    transition: 0.3s;
    width: 31%;
}

@media (max-width: 1024px) {
    .help__section .discover-more__block {
        margin: 0 -30px;
        width: auto;
    }
}

.help__section.--option-2 {
    margin-top: 65px;
    position: relative;
}

    .help__section.--option-2::before {
        background: #021C51;
        content: "";
        height: 125px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

@media (max-width: 1024px) {
    .help__section.--option-2::before {
        display: none;
    }
}

.help__section.--option-2 .layout {
    justify-content: flex-end;
}

.help__section.--option-2 .need-help__block {
    transition: 0.3s;
    width: 57%;
}

@media (max-width: 1024px) {
    .help__section.--option-2 .need-help__block {
        margin: 0 -30px;
        width: auto;
    }
}

.hero__section {
    background: #021C51;
    color: #fff;
    margin-bottom: 102px;
    padding: 64px 0;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hero__section {
        margin-bottom: 64px;
    }
}

@media (max-width: 550px) {
    .hero__section {
        margin-bottom: 50px;
        padding: 32px 0;
    }
}

.hero__section::after {
    /* background: #fff;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
  width: 22vw; */
    display: none;
}

@media (max-width: 1280px) {
    .hero__section::after {
        /* width: 15vw; */
        display: none;
    }
}

@media (max-width: 768px) {
    .hero__section::after {
        display: none;
    }
}

.hero__section .layout__inner {
    position: relative;
    z-index: 1;
}

.hero__section.--full {
    margin-bottom: 0;
    padding-bottom: 108px;
}

@media (max-width: 1024px) {
    .hero__section.--full {
        padding-bottom: 75px;
    }
}

@media (max-width: 768px) {
    .hero__section.--full {
        padding-bottom: 64px;
    }
}

@media (max-width: 550px) {
    .hero__section.--full {
        padding-bottom: 32px;
    }
}

.hero__section.--full::after {
    display: none;
}

.hero__section.--full .hero__content {
    max-width: 100%;
}

.hero__section.--single {
    background: #021C51 url(../media/img/pic-wave.png) no-repeat left center/78vw auto;
    padding: 74px 0 107px;
}

@media (max-width: 1280px) {
    .hero__section.--single {
        background-size: cover;
        padding: 64px 0;
    }
}

@media (max-width: 1024px) {
    .hero__section.--single {
        margin-bottom: 0;
        padding: 48px 0;
    }
}

@media (max-width: 550px) {
    .hero__section.--single {
        background-image: none;
        padding: 42px 0 54px;
    }
}

@media (max-width: 1024px) {
    .hero__section.--single::after {
        display: none;
    }
}

.hero__section.--single .hero__buttons {
    margin-top: 20px;
}

@media (max-width: 550px) {
    .hero__section.--single .hero__buttons {
        margin-top: 32px;
    }
}

@media (max-width: 1024px) {
    .hero__section.--single .hero__content {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .hero__section.--single .hero__content .sup-title {
        display: none;
    }
}

.hero__content {
    max-width: 58%;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .hero__content {
        max-width: 75%;
    }
}

@media (max-width: 1024px) {
    .hero__content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .hero__content {
        max-width: 100%;
    }
}

.hero__content .sup-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 8px;
}

.hero__content p {
    margin: 0;
}

.hero__buttons {
    margin-top: 38px;
    transition: margin 0.3s;
}

@media (max-width: 550px) {
    .hero__buttons {
        margin-top: 32px;
    }
}

.hero__pic {
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s;
    width: 40%;
}

@media (max-width: 768px) {
    .hero__pic {
        display: none;
    }
}

.hero__pic img {
    display: block;
    height: auto;
    max-height: 345px;
    width: 100%;
}

.registry-services__section > .layout {
    display: flex;
}

@media (max-width: 768px) {
    .registry-services__section > .layout {
        flex-direction: column;
    }
}

.registry-services__section .filter__wrapper {
    transition: 0.3s;
    width: 32%;
}

@media (max-width: 1024px) {
    .registry-services__section .filter__wrapper {
        margin-left: -30px;
        width: calc(35% + 30px);
    }
}

@media (max-width: 768px) {
    .registry-services__section .filter__wrapper {
        margin: 0 -30px;
        width: auto;
    }
}

.registry-services__section + .help__section {
    margin-top: 0;
}

.registry-services__block {
    transition: 0.3s;
    width: 68%;
}

@media (max-width: 1024px) {
    .registry-services__block {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .registry-services__block {
        width: 100%;
    }
}

.services-links__block {
    background: #F7F8FA;
    margin: 30px 0;
    padding: 32px;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .services-links__block {
        margin: 32px 0;
        padding: 15px;
    }
}

.services-links__block:first-child {
    margin-top: 0;
}

.services-links__block:last-child {
    margin-bottom: 0;
}

.services-links__block p {
    margin: 0;
}

.services-links__button {
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
    transition: 0.3s;
}

@media (max-width: 550px) {
    .services-links__button {
        margin-top: 32px;
    }
}

.hero__section + .single__section {
    margin-top: -56px;
    transition: margin 0.3s;
}

@media (max-width: 1024px) {
    .hero__section + .single__section {
        margin-top: 0;
    }
}

.single__section {
    margin: 66px 0 0;
}

    .single__section .layout {
        display: flex;
        gap: 52px;
        transition: 0.3s;
    }

.service-blue-bg .DnnModule,
.service-blue-bg .DNNContainer_noTitle,
.service-blue-bg .DNNContainer_noTitle > div,
.service-blue-bg .DNNModuleContent,
.service-blue-bg .Normal {
    height: 100%;
}

.Normal .arrow-links__item {
    font-size: 16px;
}

.single__section .Normal {
    color: #2B363C;
    font: 400 16px/28px "Noto Sans", "Arial", sans-serif;
}

.sidebar__responsible .responsible__title .Normal {
    font-weight: 600;
    color: #021C51;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .single__section .layout {
        flex-direction: column;
    }
}

.single__section .sidebar__block {
    transition: width 0.3s;
    width: 33%;
}

@media (max-width: 1280px) {
    .single__section .sidebar__block {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .single__section .sidebar__block {
        order: -1;
        width: 100%;
    }
}

.single__section .sidebar__block.--last {
    order: 1;
}

.single__content {
    transition: width 0.3s;
    width: 67%;
}

@media (max-width: 1280px) {
    .single__content {
        width: 60%;
    }
}

@media (max-width: 1024px) {
    .single__content {
        width: 100%;
    }
}

.single__content .heading-regular {
    color: #021C51;
}

    .single__content .heading-regular + p {
        margin-top: 12px;
    }

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

.top-panel__item.--login {
    padding-right: 0;
    align-items: center;
}

@media (min-width:1024px) {
    .header__bottom-nav__item:last-child {
        padding-right: 0;
    }
}

.form__section .leftPane .LiveForm .page-break-section li.Field.Radiobutton .Field-Container-Wide table td label::after {
    left: 4px;
}

#siteWrapper #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Radiobutton.irn_pay_choose_payments .Field-Container-Wide table td label::after {
    top: calc(100% + 10px);
}

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Phone .Field-Container-Wide .intl-tel-input {
    display: flex;
}

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Phone .Field-Container-Wide .intl-tel-input .country-list {
        width: 100%;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Phone .Field-Container-Wide .intl-tel-input .flag-container {
        border: 2px solid #CDD2DC;
        border-radius: 4px 0 0 4px;
        min-width: 73px;
        position: static;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Phone .Field-Container-Wide .intl-tel-input input[type="text"] {
        border-left: none;
        border-radius: 0 4px 4px 0;
    }

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field label.error {
    color: #d00000;
    font-size: 14px;
    line-height: 18px;
    margin: 5px 0 0;
    padding: 0;
}

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Checkbox .Field-Container-Wide table td label {
    padding-left: 42px;
}

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Checkbox .Field-Container-Wide table td label::before {
        height: 24px;
        min-width: 24px;
        top: 2px;
        width: 24px;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Checkbox .Field-Container-Wide table td label::after {
        font-size: 10px;
        top: 9px;
        left: 5px;
    }

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.Radiobutton .Field-Container-Wide table td input[type=radio]:checked ~ label:after {
    left: 4px;
}

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_field_invalid .Field-Container-Wide,
#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_field_valid .Field-Container-Wide {
    position: relative;
}

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_field_invalid .Field-Container-Wide::before {
        content: "\e900";
        color: #D12332;
        font-family: 'Icons' !important;
        font-style: normal;
        font-size: 13px;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        position: absolute;
        top: 26px;
        right: 15px;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_field_valid .Field-Container-Wide::after {
        content: "\e907";
        color: #00724C;
        font-family: 'Icons' !important;
        font-style: normal;
        font-size: 15px;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        position: absolute;
        top: 24px;
        right: 15px;
        text-transform: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_radio_side_by_side .Field-Container-Wide table tr:not(:first-child) {
    padding-left: 20px;
}

#mainContent-inner .leftPane .LiveForm .page-break-section li.Field[style*="visibility: hidden"] {
    display: none;
}

@media (max-width: 1024px) {
    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_combo_input input {
        margin-left: -32px;
        margin-top: 36px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_wider_label label {
        width: 350px;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_combo_dropdown,
    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_combo_input {
        width: calc(50% - 32px) !important;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_digits3,
    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_digits4,
    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_search_button {
        width: calc(33.33333% - 32px) !important;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_move_field_down {
        margin-top: 0;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_twoline_label label {
        padding-top: 0;
    }
}

@media (max-width: 550px) {

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_digits3,
    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_digits4 {
        width: calc(40% - 32px) !important;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_search_button {
        width: calc(20% - 32px) !important;
    }

    #mainContent-inner .leftPane .LiveForm .page-break-section li.Field.irn_digits4 .Field-Label-Top {
        width: 200px;
    }
}

.irn_pay_failure_message,
.irn_pay_display_mb {
    display: none;
}

.top-panel__block .top-panel__item.--login:hover {
    color: #2B363C;
}

.top-panel__block .top-panel__item.--login:hover .icon {
        color: #034AD8
    }

.header_second .link-white {
    color: #fff;
    transition: 0.3s;
}

    .header_second .link-white:hover, .header_second .top-panel__item:hover .icon {
        color: #1A65FA;
    }

.videos__row .col iframe {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .videos__row {
        gap: 25px;
    }

    .videos__row .col {
        flex: auto;
    }

    .videos__row .col p {
        margin: 0;
    }

    .videos__row .col p + p {
        margin-top: 15px;
    }
}

.need-help__contact_line {
    display: flex;
    flex-direction: row;
    column-gap: 60px;
}



.footer-middle__text img {
    max-width:220px;
}

.footer-middle__partners {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns children to the right */
    width: 63%;
}
.footer-partners-images {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: flex-end;
}
.footer-middle__partners .funding_credits {
    align-self: flex-end;
    width: 100%; 
    text-align: right; 
    color: #9CA6B8;
}

.header_second .language-picker__nav-item .title::after {
    display: none;
}
.language-picker__nav-item input[type=radio]:checked ~ .title.text-white {
    color: #034AD8 !important;
}
.header_second .language-picker__nav-item .title.text-white:hover {
    color: #034AD8 !important;
}

.header_second .language-picker__nav-item {
    padding:0px !important;
}

@media (max-width: 1280px) {
    .footer-middle__partners {
        width: 100%;
    }
    .footer-middle__partners .funding_credits {
        text-align:center; 
    }
    .footer-middle__text {
        text-align: center;
    }
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    align-items: stretch;
}

.service-card {
    position: relative;
    padding: 1.5rem;
    border: 1px solid #8594b0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    margin: 1rem 0;
}
.service-title {
    position: absolute;
    top: -0.8em;
    left: 1rem;
    padding: 0 0.5rem;
    background: white;
    color: #021C51;
    margin: 0;
}

.service-description {
    margin-top: 1rem;
    color: #64718B;
}

.service-link {
    margin-top: auto;
    align-self: flex-start;
}
.service-card--third {
    width: calc(33.333% - 2rem);
}

.service-card--two-thirds {
    width: calc(66.666% - 2rem);
}

.service-card .arrow__link {
    display: block;
}
@media screen and (max-width: 768px) {
    .services-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card--third,
    .service-card--two-thirds {
        width: 100%;
        margin: 0.5rem 0;
    }

    .service-card {
        padding: 1.25rem;
    }
}

.irn-search-services-home-label {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    display: flex;
}
.irn-search-services-home-label-label {
    font-size: 1rem !important;
    line-height: 1.75rem !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255/ 1) !important;
}
.irn-search-services-home-input {
    display: flex;
    width: 80%;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background-color: #fff;
    padding: 0px;
    padding-inline-start: 16px;
    box-shadow: 0 0 #0000,0 0 #0000, 0px 0px 16px 0px rgba(0,0,0,.08);
}

@media screen and (max-width: 768px) {
    .irn-search-services-home-input {
        width: 100%;
    }
}

.irn-search-services-home-input input {
    width: 100%;
    font-size: 16px;
    line-height: 1.75rem;
    letter-spacing: 0;
    font-weight: 400;
    color: #2b363c;
    outline:none;
    border: none; 
}

.irn-search-services-home-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    min-width: 60px;
    border-radius: 4px;
    padding: 12px 16px;
    border-width: 2px;
    border-color: transparent;
    background-color: #034ad8;
    color: #fff;
    font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: 0;
    font-weight: 400;
    margin-right: 16px;
}
.irn-search-services-home-icon:hover {
    background-color: #0239a6;
    color: #f2f2f2;
}
.irn-search-services-home-icon-svg {
    color:#fff; 
    fill: #fff; 
}

.ui-autocomplete {
    position: absolute;
    z-index: 1000;
    cursor: default;
    padding: 0;
    margin-top: 10px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 500px; 
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    column-gap: 0px;
    row-gap:0px; 
    overflow-y: auto; 
    overflow-x: hidden;
    width: auto; 
    border: 0px;
    border-radius: 0px 0px 4px 4px;
}

.ui-autocomplete .ui-menu-item {
    padding: 10px 10px; 
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
}

.ui-autocomplete .ui-menu-item:last-child {
    border-bottom: none; /* No border for the last item */
}

.ui-autocomplete .ui-menu-item.ui-state-focus,
.ui-autocomplete .ui-menu-item.ui-state-active,
.ui-autocomplete .ui-menu-item.ui-state-hover,
.ui-autocomplete .ui-menu-item:hover
{ /* Hover/focus style */
    color: #0239a6;
    text-decoration: none;
    border-radius: 0;
    margin: 0;
}


.ui-autocomplete .ui-menu-item::before {
    display:none;
}

#header-search-container {
    position: relative;
    display: flex; /* Align trigger and input */
    align-items: center;
}

#header-search-input {
    width: 0;
    opacity: 0;
    padding: 5px 0;
    margin-left: 0; /* Remove initial margin */
    border: none;
    border-bottom: 1px solid transparent; /* Optional: line appears on focus/active */
    transition: width 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
    vertical-align: middle;
    background-color: transparent;
    color: #2B363C;
    font-size: inherit;
    outline: none; /* Remove default focus outline */
    box-sizing: border-box; /* Include padding/border in width calculation */
}

#header-search-container.search-active #header-search-input {
    width: 180px; /* Adjust width as needed */
    opacity: 1;
    padding: 5px 8px;
    border-bottom: 1px solid #ccc; /* Style as needed */
}

/* Hide the 'Pesquisar' text when search is active */
#header-search-container.search-active #header-search-trigger .text {
    display: none; /* Or animate opacity to 0 if you prefer */
}

/* Ensure the icon remains properly aligned and clickable */
#header-search-trigger .icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Ensure the trigger link doesn't have default link styling */
#header-search-trigger {
    text-decoration: none;
}

#header-search-trigger {
    margin-left: 0; /* Remove margin */
    transition: margin-left 0.4s ease-in-out; /* Smooth transition for margin */
}

#header-search-container.search-active #header-search-trigger {
    margin-left: 16px; /* Add space between expanded input and icon */
    transition: margin-left 0.4s ease-in-out; /* Smooth transition for margin */
}







