/* ==========================================================================
   SPECIFICATION
   ========================================================================== */
@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    font-family: "AvenirNextCyr-Bold";
    src: url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2"), url("../fonts/AvenirNextCyr-Bold.woff") format("woff");
}
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
}

html *,
html ::after,
html ::before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    margin: 0;
    padding: 0;
    color: #252728;
    overflow-wrap: break-word;
    background-color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}
a[href] {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-style: none;
}

picture {
    display: block;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 0;
    font-family: inherit;
    color: #252728;
    background-color: #fff;
    border-radius: 0;
}
input:hover, input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    outline: none;
}

/* Remove shadow from fields for WebKit browsers */
input:not([type=checkbox]):not([type=radio]),
textarea,
select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

select {
    cursor: pointer;
}

textarea {
    resize: none;
}

button {
    color: #0a6629;
}

.container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.button {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #fcfcfc;
    border-radius: 10px;
    padding: 8px 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    border: none;
    background-color: #041b9c;
    -webkit-transition: background-color 0.25s;
    transition: background-color 0.25s;
}
.button:hover {
    background-color: #000b47;
}
.button:focus {
    outline: 3px solid #71acff;
    outline-offset: -3px;
}
.button.disabled {
    background-color: #777881;
    color: #fcfcfc;
    pointer-events: none;
}

.button-secondary {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #041b9c;
    border-radius: 10px;
    padding: 8px 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    border: 1px solid #041b9c;
    background-color: #fcfcfc;
    -webkit-transition: background-color 0.25s;
    transition: background-color 0.25s;
}
.button-secondary:hover {
    background-color: #F1F4FA;
    border-color: #000b47;
    color: #000b47;
}
.button-secondary:focus {
    outline: 3px solid #71acff;
    outline-offset: -3px;
}
.button-secondary.disabled {
    background-color: #777881;
    color: #fcfcfc;
    pointer-events: none;
}

/* Shake custom
   ========================================================================== */
@-webkit-keyframes shake-custom {
    0% {
        -webkit-transform: rotateZ(0);
                transform: rotateZ(0);
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
                transform: rotateZ(-30deg);
    }
    20% {
        -webkit-transform: rotateZ(15deg);
                transform: rotateZ(15deg);
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
                transform: rotateZ(-10deg);
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
                transform: rotateZ(7.5deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
                transform: rotate(-6deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
    70% {
        -webkit-transform: rotate(-4.28571deg);
                transform: rotate(-4.28571deg);
    }
    80% {
        -webkit-transform: rotate(3.75deg);
                transform: rotate(3.75deg);
    }
    90% {
        -webkit-transform: rotate(-3.33333deg);
                transform: rotate(-3.33333deg);
    }
    100% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
}
@keyframes shake-custom {
    0% {
        -webkit-transform: rotateZ(0);
                transform: rotateZ(0);
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
                transform: rotateZ(-30deg);
    }
    20% {
        -webkit-transform: rotateZ(15deg);
                transform: rotateZ(15deg);
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
                transform: rotateZ(-10deg);
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
                transform: rotateZ(7.5deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
                transform: rotate(-6deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
    70% {
        -webkit-transform: rotate(-4.28571deg);
                transform: rotate(-4.28571deg);
    }
    80% {
        -webkit-transform: rotate(3.75deg);
                transform: rotate(3.75deg);
    }
    90% {
        -webkit-transform: rotate(-3.33333deg);
                transform: rotate(-3.33333deg);
    }
    100% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2509803922);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px 32px;
    background-color: #f3f7fc;
    border-radius: 10px 10px 0 0;
}
.modal-header h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #041b9c;
    margin: 0;
}
.modal-body {
    padding: 32px;
}
.modal .form-group {
    position: relative;
    margin-bottom: 12px;
}
.modal .form-group label {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #39393e;
    margin-bottom: 6px;
}
.modal .form-group input {
    position: relative;
    width: 100%;
    height: 40px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 8px;
    border: 1px solid #b2b4c1;
    color: #39393e;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    -webkit-transition: border-color 0.25s;
    transition: border-color 0.25s;
}
.modal .form-group input::-webkit-input-placeholder {
    color: #39393e;
}
.modal .form-group input::-moz-placeholder {
    color: #39393e;
}
.modal .form-group input:-ms-input-placeholder {
    color: #39393e;
}
.modal .form-group input::-ms-input-placeholder {
    color: #39393e;
}
.modal .form-group input::placeholder {
    color: #39393e;
}
.modal .form-group input:active {
    border-color: #041b9c;
    outline: none;
    color: #050505;
}
.modal .form-group input:focus {
    border-color: #041b9c;
    outline: none;
    color: #050505;
}
.modal .form-group input[value]:not([value=""]) {
    color: #050505;
}
.modal .form-group input:hover {
    border-color: #39393e;
    color: #39393e;
}
.modal .form-group input:disabled {
    border-color: #b2b4c1;
    color: #777881;
    cursor: not-allowed;
}
.modal .form-group input:disabled::-webkit-input-placeholder {
    color: #777881;
}
.modal .form-group input:disabled::-moz-placeholder {
    color: #777881;
}
.modal .form-group input:disabled:-ms-input-placeholder {
    color: #777881;
}
.modal .form-group input:disabled::-ms-input-placeholder {
    color: #777881;
}
.modal .form-group input:disabled::placeholder {
    color: #777881;
}
.modal .form-group .additional-error {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
    right: 12px;
}
.modal .form-group .error {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #c92e63;
}
.modal .form-group .is-invalid {
    border-color: #c92e63;
}
.modal .form-group .wpcf7-not-valid {
    border-color: #c92e63 !important;
}
.modal .form-group .wpcf7-not-valid-tip {
    position: relative;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #c92e63;
    margin-top: 4px;
}
.modal .form-group .wpcf7-not-valid-tip:after {
    content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_5033_650)'%3E%3Cpath d='M8.00065 5.33331V7.99998M8.00065 10.6666H8.00732M14.6673 7.99998C14.6673 11.6819 11.6826 14.6666 8.00065 14.6666C4.31875 14.6666 1.33398 11.6819 1.33398 7.99998C1.33398 4.31808 4.31875 1.33331 8.00065 1.33331C11.6826 1.33331 14.6673 4.31808 14.6673 7.99998Z' stroke='%23C92E63' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5033_650'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    position: absolute;
    top: -33px;
    right: 12px;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    z-index: 1;
}
.modal .form-group.form-group-textarea {
    margin-bottom: 32px;
}
.modal .form-group.form-group-textarea textarea {
    width: 100%;
    height: 140px;
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 8px;
    border: 1px solid #b2b4c1;
    color: #39393e;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    -webkit-transition: border-color 0.25s;
    transition: border-color 0.25s;
    resize: none;
}
.modal .form-group.form-group-textarea textarea::-webkit-input-placeholder {
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea::-moz-placeholder {
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea:-ms-input-placeholder {
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea::-ms-input-placeholder {
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea::placeholder {
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea:active {
    border-color: #041b9c;
    outline: none;
    color: #050505;
}
.modal .form-group.form-group-textarea textarea:focus {
    border-color: #041b9c;
    outline: none;
    color: #050505;
}
.modal .form-group.form-group-textarea textarea[value]:not([value=""]) {
    color: #050505;
}
.modal .form-group.form-group-textarea textarea:hover {
    border-color: #39393e;
    color: #39393e;
}
.modal .form-group.form-group-textarea textarea:disabled {
    border-color: #b2b4c1;
    color: #777881;
    cursor: not-allowed;
}
.modal .form-group.form-group-textarea textarea:disabled::-webkit-input-placeholder {
    color: #777881;
}
.modal .form-group.form-group-textarea textarea:disabled::-moz-placeholder {
    color: #777881;
}
.modal .form-group.form-group-textarea textarea:disabled:-ms-input-placeholder {
    color: #777881;
}
.modal .form-group.form-group-textarea textarea:disabled::-ms-input-placeholder {
    color: #777881;
}
.modal .form-group.form-group-textarea textarea:disabled::placeholder {
    color: #777881;
}
.modal .form-group.form-group-textarea .additional-error {
    top: 43px;
}
.modal .form-group.form-group-textarea .wpcf7-not-valid-tip:after {
    top: -128px;
}
.modal .form-group.form-group-textarea .wpcf7-not-valid {
    border-color: #c92e63;
}
.modal .form-group.form-group__photo {
    margin-bottom: 32px;
}
.modal .form-group.form-group__photo .form-group__photo-input input[type=file] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 19px;
    opacity: 0;
    cursor: pointer;
}
.modal .form-group.form-group__photo .form-group__photo-input p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #041b9c;
    cursor: pointer;
}
.modal .form-group.form-group__photo .form-group__photo-input p svg {
    margin-right: 8px;
}
.modal .form-group.form-group__photo .form-group__photo-input #photo-error {
    position: absolute;
    bottom: -24px;
}
.modal .form-group.form-group__photo .form-group__photo-input .wpcf7-form.invalid .wpcf7-form-control-wrap:after {
    content: unset;
}
.modal .form-group.form-group__photo .additional-error {
    position: absolute;
    top: 53px;
}
.modal .submit-btn {
    margin-right: 20px;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #fefdfb;
    width: 540px;
    border-radius: 10px;
}

.close-button {
    cursor: pointer;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
    z-index: 1;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    position: relative;
    width: 85%;
    padding-right: 12px !important;
    padding-left: 12px !important;
    border-radius: 8px;
    color: #39393e !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #b2b4c1 !important;
    border-radius: 8px !important;
}

.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.select2-ajax.select2-hidden-accessible {
    border: 1px solid #b2b4c1 !important;
    width: 100% !important;
    height: 40px !important;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    clip: unset !important;
    border-radius: 8px;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    color: #39393e !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    position: absolute !important;
    top: 0 !important;
    right: 30px !important;
    width: 20px !important;
}

.select2-search--dropdown {
    padding: 0 !important;
    margin-top: -4px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-top: none !important;
    border-left: unset !important;
    border-right: unset !important;
    border-bottom: 1px solid #b2b4c1 !important;
    padding: 8px 12px;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection.select2-selection--single {
    border-bottom: none !important;
}

.select2-results__option {
    padding: 8px 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection.select2-selection--single {
    border-radius: 8px 8px 0 0 !important;
}

.select2-container--default .select2-selection--single.select-validation {
    border-color: #c92e63 !important;
    border-radius: 8px !important;
}

.select2-dropdown {
    border-radius: 8px !important;
}

.select2-container--open .select2-dropdown {
    top: -6px;
}

.modal__success, .modal__delete {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #fefdfb;
    width: 540px;
    border-radius: 10px;
}
.modal__success-header, .modal__delete-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 33px 40px;
}
.modal__success-header button, .modal__delete-header button {
    padding: 0;
    border: none;
    background-color: unset;
    cursor: pointer;
}
.modal__success-body, .modal__delete-body {
    padding: 12px 56px 56px 56px;
}
.modal__success-body h3, .modal__delete-body h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #041b9c;
    margin: 0 0 32px 0;
}
.modal__success-body p, .modal__delete-body p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #39393E;
    margin-bottom: 32px;
}
.modal__success-body p:last-child, .modal__delete-body p:last-child {
    margin-bottom: 0;
}
.modal__delete-body {
    padding: 0 56px 56px 56px;
}
.modal__delete-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 20px;
}
.modal__delete-buttons .button.cancel-action {
    background-color: rgb(192, 192, 192);
}
.modal__delete-buttons .button.cancel-action:hover {
    background-color: #000b47;
}

@media only screen and (max-height: 950px) {
    .modal-content {
        overflow: hidden;
    }
    .modal-body {
        overflow-y: auto;
        max-height: 85vh;
    }
    .modal-body::-webkit-scrollbar {
        width: 5px;
        background-color: #F5F5F5;
    }
    .modal-body::-webkit-scrollbar-thumb {
        background-color: #041b9c;
    }
}
/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.container {
    width: 1352px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-content {
    width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-list {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 20px 48px 20px;
}
.company-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.company-list__info {
    max-width: 500px;
}
.company-list__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #1e1e1e;
}
.company-list__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
}
.company-list__added, .company-list__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
}
.company-list__added-label, .company-list__author-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
}
.company-list__added-date, .company-list__author-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
}

.company {
    padding: 80px 20px 64px 20px;
    background-color: #fcfcfc;
}
.company-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 32px 24px 32px;
    border: 1px solid #EBEBEB;
    background-color: white;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
            box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
    margin-bottom: 40px;
}
.company-text__title {
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 20px;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
}
.company-text__title h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #1e1e1e;
}
.company-text__details {
    margin-top: 24px;
}
.company-text__details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
    margin-bottom: 20px;
}
.company-text__details ul {
    padding-left: 20px;
}
.company-text__details ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
    list-style: disc;
    margin-bottom: 10px;
}
.company-text__details ul li:last-child {
    margin-bottom: 0;
}
.company__image {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 32px 24px 32px;
    border: 1px solid #EBEBEB;
    background-color: white;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
            box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
}
.company__image-title {
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 20px;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
}
.company__image-title h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: #1e1e1e;
}
.company__image-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 24px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.company-image__image {
    width: 99px;
    height: 99px;
}
.company-image__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

@media (max-width: 576px) {
    .company-list {
        padding-top: 40px;
        padding-bottom: 32px;
    }
    .company-list__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .company-list__title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .company-list__details {
        -webkit-column-gap: 32px;
           -moz-column-gap: 32px;
                column-gap: 32px;
    }

    .company {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .company__image {
        padding: 24px;
    }
    .company-image__image {
        width: 47%;
        height: 47%;
    }
    .company-text {
        padding: 20px 24px;
    }
    .company__image-details {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 12px;
    }
}
@media (min-width: 768px) and (max-width: 1210px) {
    .company-list {
        max-width: 688px;
        padding-top: 40px;
        padding-bottom: 48px;
    }
    .company-list__title {
        font-size: 32px;
    }
    .company-list__info {
        max-width: 300px;
    }
    .company-list__details {
        -webkit-column-gap: 32px;
           -moz-column-gap: 32px;
                column-gap: 32px;
    }
    .company-text {
        max-width: 688px;
    }
    .company__image {
        max-width: 680px;
    }
}
.text-page {
    background-image: url("../img/base/bg1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    padding: 56px 0;
}
.text-page__content {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-page__content h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 120%;
    text-align: center;
    color: #041B9C;
    margin-bottom: 24px;
}
.text-page__content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #1e1e1e;
}
.text-page__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 56px 0 64px 0;
    max-width: 520px;
    margin: 0 auto;
}
.text-page__text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
}
.text-page__text ul {
    padding-left: 20px;
}
.text-page__text ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
    list-style: disc;
    margin-bottom: 10px;
}
.text-page__text ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .about__content h1 {
        font-size: 36px;
    }
    .about__content p {
        font-size: 16px;
    }
    .about__text {
        padding: 32px;
    }
}
@media (min-width: 768px) and (max-width: 1210px) {
    .about {
        padding: 48px 0;
    }
    .about__text {
        max-width: 520px;
    }
    .about__content h1 {
        font-size: 38px;
    }
}
body.lock-position {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: fixed;
}

.mobile-header__wrapper {
    display: none;
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.header__wrapper {
    background-color: #fcfcfc;
    border-bottom: 1px solid #EBEBEB;
}
.header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.header__links a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #041b9c;
    -webkit-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}
.header__links a:hover {
    color: #000b47;
}
.header__links a:active {
    color: #041b9c;
    text-decoration: underline;
}

.breadcrumb {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 20px 0 20px;
}
.breadcrumb a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #1e1e1e;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.breadcrumb a svg {
    -webkit-transition: 0.25s;
    transition: 0.25s;
    margin-right: 8px;
    stroke: #222;
}
.breadcrumb a:hover {
    color: #041b9c;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.breadcrumb a:hover svg {
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
    stroke: #041b9c;
}

.hero {
    background-image: url("../img/base/bg1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    padding: 56px 0;
}
.hero-section {
    text-align: center;
    margin-bottom: 60px;
}
.hero-section__title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 120%;
    text-align: center;
    color: #041b9c;
    max-width: 468px;
    margin: 0 auto 24px auto;
}
.hero-section__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #1e1e1e;
    max-width: 480px;
    margin: 0 auto 24px auto;
}
.hero .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
            box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
    height: 37px;
    border-radius: 15px;
}
.hero .search-form span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-left: 1px solid #EBEBEB;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    border-radius: 15px 0 0 15px;
    padding: 10px 10px;
    background-color: #fcfcfc;
    height: 37px;
}
.hero .search-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 250px;
    height: 37px;
    padding: 8px 0;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    border-left: none;
    border-right: none;
    background-color: #fcfcfc;
}
.hero .search-form__input::-webkit-input-placeholder {
    color: #6f6f6f;
}
.hero .search-form__input::-moz-placeholder {
    color: #6f6f6f;
}
.hero .search-form__input:-ms-input-placeholder {
    color: #6f6f6f;
}
.hero .search-form__input::-ms-input-placeholder {
    color: #6f6f6f;
}
.hero .search-form__input::placeholder {
    color: #6f6f6f;
}
.hero .search-form__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0 15px 15px 0;
    border: none;
    background-color: #041b9c;
    padding: 10px 29px;
    height: 37px;
    color: #fff;
    -webkit-transition: background-color 0.25s;
    transition: background-color 0.25s;
    cursor: pointer;
}
.hero .search-form__button:hover {
    background-color: #000b47;
}
.hero .frequent-orgs-section h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 20px;
    color: #041b9c;
}
.hero .org-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.hero .org-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: white;
    padding: 12px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
            box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
    gap: 8px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    width: 32%;
}
.hero .org-item:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
}
.hero .org-item__name {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #041b9c;
}
.hero .org-item__count {
    background-color: #003087;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.institution {
    padding: 56px 0 64px 0;
    background-color: #fcfcfc;
    row-gap: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.institution__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
}
.institution__quantity {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #050505;
}
.institution__quantity-all {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
.institution-sort {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 220px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.institution-sort-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.institution-sort__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 10px 8px 12px;
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    cursor: pointer;
    width: 220px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.institution-sort__header:hover {
    border: 1px solid #39393e;
}
.institution-sort__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #050505;
}
.institution-sort__selected {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.institution-sort__arrow {
    font-size: 12px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.institution-sort--open .institution-sort__header {
    border: 1px solid #041b9c;
}
.institution-sort--open .institution-sort__arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.institution-sort--open .institution-sort__options {
    max-height: 300px;
    opacity: 1;
    border: 1px solid #ddd;
    border-top: none;
}
.institution-sort__options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.institution-sort__option {
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.institution-sort__option:hover {
    background-color: #f5f5f5;
}
.institution-sort__option--selected {
    background-color: #f0f0f0;
    font-weight: bold;
}

.faq {
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
            box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
    padding: 12px 24px 24px 24px;
}
.faq__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 16px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}
.faq__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    width: 34%;
    min-width: 306px;
}
.faq__description {
    font-size: 18px;
    width: 75%;
}
.faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #EBEBEB;
    background-color: #fcfcfc;
    margin-left: -24px;
    margin-right: -24px;
}
.faq__item:nth-child(2n) {
    background-color: #fff;
}
.faq__item:last-child {
    border-bottom: none;
}
.faq__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
}
.faq__item-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    max-width: 260px;
    min-width: 260px;
}
.faq__item-text {
    width: 100%;
    font-size: 14px;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq__more-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #041b9c;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    margin-left: 48px;
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
}
.faq__more-link:hover {
    color: #000b47;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.faq__more-link:hover.faq__more-link svg {
    stroke: #000b47;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
}
.faq__more-link:active {
    border: 3px #71acff;
    color: #041b9c;
}
.faq__more-icon {
    margin-left: 8px;
}
.faq__more-icon svg {
    stroke: #041b9c;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.pagination__link:hover {
    color: #0066cc;
}
.pagination__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pagination__link--prev .pagination__icon {
    margin-right: 8px;
}
.pagination__link--prev .pagination__icon svg {
    stroke: #041b9c;
}
.pagination__link--prev.disabled svg {
    stroke: #777881;
}
.pagination__link--prev.disabled {
    cursor: unset;
}
.pagination__link--prev.disabled .pagination__text {
    color: #777881;
    pointer-events: none;
    cursor: default;
}
.pagination__link--next .pagination__icon {
    margin-left: 8px;
}
.pagination__link--next .pagination__icon svg {
    stroke: #041b9c;
}
.pagination__link--next .pagination__icon.disabled svg {
    stroke: #777881;
}
.pagination__link--next.disabled svg {
    stroke: #777881;
}
.pagination__link--next.disabled {
    cursor: unset;
}
.pagination__link--next.disabled .pagination__text {
    color: #777881;
    pointer-events: none;
    cursor: default;
}
.pagination__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #041b9c;
}
.pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-column-gap: 2px;
       -moz-column-gap: 2px;
            column-gap: 2px;
}
.pagination__item--dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
}
.pagination__page {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 5px;
    color: #041b9c;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}
.pagination__page:hover {
    background-color: #f0f0f0;
}
.pagination__page--active {
    background-color: white;
    color: #041b9c;
    border: 1px solid #EBEBEB;
}
.pagination__page--active:hover {
    background-color: unset;
}
.pagination__dots {
    color: #041b9c;
}

.footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer__vector {
    position: absolute;
    left: 0;
    top: 0;
}
.footer__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #F1F4FA;
    padding-bottom: 44px;
    margin-bottom: 44px;
}
.footer__section:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
.footer__section-title {
    max-width: 40%;
}
.footer__section-title h5 {
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    color: #041b9c;
    margin-bottom: 24px;
}
.footer__section-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #050505;
}
.footer__section-copy {
    width: 40%;
}
.footer__section-copy p {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #39393e;
}
.footer__section-copy p a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration: underline;
    color: #050505;
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
}
.footer__section-copy p a:hover {
    color: #041b9c;
}
.footer__links nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}
.footer__links nav ul a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration: underline;
    color: #050505;
    -webkit-transition: color 0.25s;
    transition: color 0.25s;
}
.footer__links nav ul a:hover {
    color: #041b9c;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.loader.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.loader .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #fcfcfc;
    border-bottom-color: #000b47;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
            animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .hero .org-item {
        width: 48%;
    }
    .hero .org-item:nth-child(3) {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .header__wrapper {
        display: none;
    }

    .mobile-header {
        width: 100%;
        height: 64px;
        background-color: #fcfcfc;
        z-index: 3;
        position: relative;
        border-bottom: 1px solid #EBEBEB;
    }
    .mobile-header__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 16px 20px;
    }
    .mobile-header__wrapper {
        display: block;
    }
    .mobile-header__background {
        background-color: rgba(0, 0, 0, 0.2509803922);
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 64px;
        left: 0;
        display: none;
        z-index: 1;
    }
    .mobile-header__background.mobile-header__background--open {
        display: block;
    }
    .mobile-header__menu {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        height: 266px;
        background-color: #fff;
        display: none;
        z-index: 2;
        padding: 48px 40px;
    }
    .mobile-header__menu.header__nav-toggle--open {
        display: block;
    }
    .mobile-header__menu.mobile-header__menu.nav--open {
        display: block;
        -webkit-transition: left 0.3s ease;
        transition: left 0.3s ease;
    }
    .mobile-header__menu nav {
        margin-bottom: 48px;
    }
    .mobile-header__menu nav ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 24px;
    }
    .mobile-header__menu nav ul li:last-child {
        margin-bottom: 0;
    }
    .mobile-header__menu nav ul li a {
        display: block;
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        text-align: center;
        color: #041B9C;
    }
    .mobile-header__menu nav ul li a.active {
        text-decoration: underline;
    }
    .mobile-header__burger button {
        background: none;
        border: none;
        padding: 0;
    }
    .mobile-header .mobile-header__burger .burger-line {
        -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
        transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
        -webkit-transform-origin: center;
                transform-origin: center;
    }
    .mobile-header .mobile-header__burger.header__nav-toggle--open .burger-line:nth-child(1) {
        -webkit-transform: translateY(-4px) rotate(45deg);
                transform: translateY(-4px) rotate(45deg);
    }
    .mobile-header .mobile-header__burger.header__nav-toggle--open .burger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-header .mobile-header__burger.header__nav-toggle--open .burger-line:nth-child(3) {
        -webkit-transform: translateY(6px) rotate(-45deg);
                transform: translateY(6px) rotate(-45deg);
    }
    .mobile-header__button {
        width: 100%;
    }

    .burger-button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    .hero {
        padding: 56px 0;
    }
    .hero-section__title {
        font-size: 36px;
    }
    .hero-section__description {
        font-size: 16px;
    }
    .hero .search-form__input {
        width: 175px;
        font-size: 16px;
    }
    .hero .frequent-orgs-section h2 {
        font-size: 20px;
    }
    .hero .org-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .hero .org-item__name {
        text-align: center;
    }
    .hero .org-list {
        gap: 12px;
    }
    .hero .org-item:nth-child(3) {
        width: 100%;
    }

    .container-content {
        width: 100%;
        padding: 0;
    }

    .institution {
        padding: 56px 20px;
    }
    .institution-sort {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
    }
    .institution-sort-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        row-gap: 16px;
    }

    .faq {
        -webkit-box-shadow: none;
                box-shadow: none;
        background-color: unset;
    }
    .faq__header {
        display: none;
    }
    .faq__title {
        font-size: 16px;
        width: 100%;
        min-width: 100%;
    }
    .faq__item-title {
        font-size: 16px;
        max-width: 100%;
        min-width: 100%;
        margin-bottom: 12px;
    }
    .faq__item-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 16px;
    }
    .faq__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 12px;
    }
    .faq__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 20px 25px 20px 20px;
        border: 1px solid #EBEBEB;
        border-radius: 8px;
        -webkit-box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
                box-shadow: 0 3px 15px 0 rgba(6, 16, 69, 0.0784313725);
        margin-left: 0;
        margin-right: 0;
    }
    .faq__more-link {
        margin-left: 0;
    }

    .pagination {
        -webkit-column-gap: 36px;
           -moz-column-gap: 36px;
                column-gap: 36px;
    }
    .pagination__item:nth-child(3) {
        display: none;
    }
    .pagination__item:nth-child(5) {
        display: none;
    }
    .pagination__link .pagination__text {
        display: none;
    }

    .footer {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .footer__section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    .footer__section-title {
        max-width: 100%;
        margin-top: 48px;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .footer__section-title h5 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .footer__section-copy {
        width: 100%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .footer__links {
        margin-bottom: 24px;
    }
    .footer__links nav ul {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
        row-gap: 16px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .show-modal {
        z-index: 3;
    }

    .modal-content {
        width: 100%;
        height: 100dvh;
        overflow-y: auto;
    }

    .breadcrumb {
        padding-top: 32px;
    }

    .modal__success {
        width: 100%;
        height: 100dvh;
        overflow-y: auto;
    }
    .modal__success-header {
        padding: 25px 32px;
    }
    .modal__success-body {
        padding: 12px 32px 32px 32px;
    }
    .modal__success-button.button {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1210px) {
    .breadcrumb {
        max-width: 688px;
    }

    .container {
        max-width: 688px;
        width: 688px;
    }

    .header__logo {
        width: 20%;
    }

    .hero-section__title {
        max-width: 440px;
        font-size: 38px;
    }
    .hero .org-list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .container-content {
        max-width: 688px;
        width: 100%;
    }

    .institution {
        padding: 56px 0;
    }
    .institution-sort-wrapper {
        padding: 0;
    }

    .faq__description {
        font-size: 14px;
    }
    .faq__item-title {
        font-size: 14px;
        max-width: 180px;
        min-width: 180px;
        -webkit-line-clamp: 5;
    }
    .faq__title {
        min-width: 230px;
    }

    .footer {
        padding-top: 64px;
        padding-bottom: 64px;
        max-width: 688px;
        margin: 0 auto;
    }
    .footer__section-title {
        max-width: 50%;
    }
    .footer__section-title h5 {
        font-size: 32px;
    }
    .footer__section-title p {
        width: 400px;
    }
    .footer__section {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .footer__section-mobile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 16px;
    }
    .footer__section-mobile .footer__section-copy {
        width: 100%;
    }
    .footer__section-copy {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .footer__links {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .footer__links nav ul {
        -webkit-box-pack: left;
            -ms-flex-pack: left;
                justify-content: left;
    }
}
.autocomplete-suggestion {
    color: #1e1e1e !important;
    white-space: wrap !important;
}

.autocomplete-suggestion b {
    color: #041B9C !important;
}

.autocomplete-suggestion.selected {
    color: #1e1e1e !important;
    background-color: #fcfcfc;
}

.grecaptcha-badge {
    display: none !important;
}

.complaint-btn {
    display: none;
}

@media (max-width: 576px) {
    .complaint-btn {
        margin-top: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .complaint-btn button.trigger.button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 8px;
    }
}
/*# sourceMappingURL=style.css.map */
