.flex-1 {
    flex: 1;
}

/*accessibility start*/
#accessibility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: rgba(0, 47, 172, 1);
}
li.contrast.access-element:hover {
    background: transparent;
}
.accessibility-menu ul li.active, 
.accessibility-menu ul li:hover {
    background: rgba(0, 47, 172, 1);
}
li.contrast.access-element a {
    color: rgba(0, 47, 172, 1);
}
li.contrast.access-element:hover a {
    color: rgba(0, 47, 172, 1);
}
/*accessibility end*/

/*iconmoon start*/
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
/*iconmoon end*/

:root {
    --rb-footer-height: 134px;
    --rb-color-gray: #9F9F9F;
}

body {
    font-family: 'Almoni DL AAA';
    background: #fff;
    color: #231F20;
    font-size: 20px;
    line-height: initial;
}

body.media-dark-mode {
    background: #fff !important;
    color: #231F20 !important;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #fff !important;
        color: #231F20 !important;
    }
}

body.admin-bar {
    margin-top: 0;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--rb-footer-height));
    overflow: hidden;
}
.section {

}
.section-head {
    padding: 30px 0 40px;
    display: flex;
    align-items: center;
}
.container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}



/* custom start */
.btn {
    font-family: 'Almoni DL AAA';
    line-height: initial;
}
.btn-primary {
    color: #fff;
    background-color: #002FAC;
    font-size: 24px;
    font-weight: 700;
    border-radius: 100px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    --bs-btn-disabled-bg: var(--rb-color-gray);
    --bs-btn-disabled-border-color: var(--rb-color-gray);
}
.btn-lg {
    height: 85px;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus:active {
    border: none;
    background-color: #C69B3C;
    color: #fff;
}
.btn-outline-black {
    border-radius: 100px;
    border: 1px solid #231F20;
    color: #231F20;
    background-color: transparent;
}
.btn-outline-black:hover,
.btn-outline-black:active,
.btn-outline-black:focus,
.btn-outline-black:focus:active {
    border-color: #231F20;
    background-color: #231F20;
    color: #fff;
}
.btn-outline-primary {
    border-radius: 100px;
    border: 1px solid rgba(0, 47, 172, 1);
    color: rgba(0, 47, 172, 1);
    background-color: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:focus:active {
    border-color: rgba(0, 47, 172, 1);
    background-color: rgba(0, 47, 172, 1);
    color: #fff;
}
.btn-icon {
    font-size: 1em;
    font-weight: 400;
    padding: 8px 16px 8px 12px;
}
.btn-icon .icon {
    margin-right: 4px;
}
/* custom end */


/* form start */
.form-control {
    padding: 12px 0;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: initial;
    color: #002FAC;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #002FAC;
    border-radius: 0;
    font-family: 'Almoni DL AAA';
}
.form-control:focus {
    color: #002FAC;
    background-color: transparent;
    border-color: #002FAC;
    outline: 0;
    box-shadow: none;
}
form input::-webkit-input-placeholder {color:#231F20; font-family: 'Almoni DL AAA'; opacity: 1;}
form input::-moz-placeholder          {color:#231F20; font-family: 'Almoni DL AAA'; opacity: 1;}
form input:-moz-placeholder           {color:#231F20; font-family: 'Almoni DL AAA'; opacity: 1;}
form input:-ms-input-placeholder      {color:#231F20; font-family: 'Almoni DL AAA'; opacity: 1;}
.form-control:active,
.form-control:focus,
.form-control:focus:active {
    border-color: #002FAC;
    outline: none;
    box-shadow: none;
}
.form-floating + .form-floating {
    margin-top: 20px;
}
.form-floating>label {
    padding: 0;
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    font-size: 28px;
    font-weight: 700;
    line-height: initial;
    color: #002FAC;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select {
    height: auto;
    min-height: auto;
    line-height: initial;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext,
.form-floating>.form-control-plaintext:focus, .form-floating>.form-control-plaintext:not(:placeholder-shown), .form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding: 16px 0 12px 0;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    color: #231F20;
    font-size: 16px;
    font-weight: 400;
    height: auto;
    opacity: 1;
    padding: 0 !important;
    transform: scale(1) translateY(-100%) translateX(0%);
    margin-top: 16px;
}
.form {
    margin-bottom: 30px;
}
.form .btn-primary {
    height: 85px;
    width: 100%;
    margin-top: 40px;
}
.form .link-doc {
    padding: 14px 50px 14px 10px;
    min-height: 100%;
}
.form .link-doc .icon,
.form .link-doc svg {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    margin-top: -15px;
    top: 50%;
}

.error-message {
    font-size: 20px;
    color: #E13C3C;
}

button .spinner-border{
    display: none;
}
button.loading .spinner-border{
    display: inline-block;
}
.page-template-agreement .form-check {
    padding-right: 0.5em;
}

.form-check-input {
    border-color: #002FAC;
}

/* form end */


/* footer start */
.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 20px;
}
.footer-logo {
    display: inline-block;
    width: 50px;
}
.footer-logo img {
    width: 100%;
}
.footer-link {
    color: #231F20;
    text-decoration: none;
}
.footer-link:hover {
    color: #002FAC;
    text-decoration: none;
}
.sep {
    display: inline-block;
    height: 20px;
    width: 1px;
    background: #231F20;
    margin: 0 20px;
    vertical-align: middle;
}
.dev {
    display: inline-block;
}
.dev a {
    text-decoration: none;
    color: #231F20;
}
.dev a:hover {
    color: #002FAC;
    text-decoration: none;
}
/* footer end */


/* header start */
.header {
    padding-bottom: 10px;
} 
.header-content {
    height: 60px;
    background: #fff;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}
.header-user {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    color: #231F20;
    text-decoration: none;
}
.header-user .icon {
    margin-left: 2px;
}
.header-user:hover {
    color: #002FAC;
    text-decoration: none;
}
@media (prefers-color-scheme: dark) {
    .header-user {
        color: #231F20;
    }
    .header-user:hover {
        color: #002FAC;
    }
}

.navbar {
    padding: 0;
    margin: 0;
}
.navbar-toggler {
    font-size: 32px;
    color: #231F20;
    border: none;
    background: transparent;
    width: 36px;
    height: 36px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 8;
}
.navbar-toggler:hover {
    color: #002FAC;
}
.navbar-toggler .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.navbar-toggler.collapsed .icon-menu-close {
    opacity: 0;
}
.navbar-toggler:not(.collapsed) .icon.icon-menu {
    opacity: 0;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus:active {
    box-shadow: none;
    border: 0;
}
.navbar-collapse.collapse:not(.show) {
    display: flex !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: .1s linear;
    transition: unset;
}
.navbar-collapse {
    position: fixed;
    top: 0;
    width: 100vw;
    right: 0;
    height: 100vh;
    background: #fff;
    z-index: 5;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: normal;
    overflow: auto;
    flex: none;

    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: .1s linear;
    transition: unset;
}
.navbar-collapse .menu-wrap {
    padding-bottom: 60px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.navbar-collapse .menu-wrap .btn {
       font-size: clamp(1.75rem, 1.6286rem + 0.5178vw, 2.25rem);
    margin-top: 12px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 40px;
}
.collapse-overlay {
    display: none;
}
.navbar-nav {
    padding: 128px 0 0;
    margin: 0;
    width: 100%;
}
.navbar .nav-item {
    margin: 0 10px;
    text-align: center;
}
.navbar .nav-link {
    font-size: 36px;
    color: #231F20;
    text-decoration: none;
}
.navbar .nav-link:hover {
    color: #002FAC;
    text-decoration: none;
}
.logo {
    display: block;
    margin: 0 auto;
    width: 168px;
    position: relative;
    z-index: 5;
}
.logo img {
    width: 100%;
}
/* header end */


/* title start */
h1, .h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}
h2, .h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
h3, .h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 400;
}
.title {
    display: block;
    width: 240px;
    margin: 0 auto 30px auto;
}
.title img {
    width: 100%;
}
/* title end */



/* other start */
.text-primary {
    color: #002FAC !important;
}
.contact-link {
    text-decoration: underline;
    color: #231F20;
    text-underline-offset: 3px;
}
.contact-link:hover {
    color: #002FAC;
    text-decoration: underline;
}
.contact-messenger {
    color: #231F20;
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    text-underline-offset: 3px;
}
.contact-messenger .icon {
    margin-left: 4px;
}
.contact-messenger:not(span):hover {
    color: #002FAC;
    text-decoration: none;
}
.wrap_btn-messenger {
    margin: 12px -4px;
}
.wrap_btn-messenger .btn-messenger {
    margin: 4px;
    padding-left: 1.75em;
    padding-right: 1.75em;
}
.btn-messenger {
    color: #fff;
    border-radius: 100px;
    background: #2CD46B;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    padding: 0 14px;
    text-decoration: none;
    font-family: 'Almoni DL AAA';
    line-height: initial;
    position: relative;
}
.btn-messenger .icon {
    margin-left: 10px;
}
.btn-messenger:hover,
.btn-messenger:active,
.btn-messenger:focus,
.btn-messenger:focus:active {
    background-color: #C69B3C;
    color: #fff;
}
.link {
    text-decoration: underline;
    color: #002FAC;
    display: inline-flex;
    align-items: center;
}
.link .icon {
    margin-left: 10px;
}
.link:hover {
    text-decoration: none;
    color: #002FAC;
}
.link-arrow {
    color: #231F20;
    text-decoration: underline;
    font-weight: 700;
}
.link-arrow .icon {
    margin-right: 10px;
}
.link-arrow .icon.icon-arrow-left {
    width: 8px;
    height: 14px;
}
.link-arrow:hover {
    text-decoration: none;
    color: #002FAC;
}
.link-doc {
    min-height: 100%;
    display: flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #002FAC;
    padding: 14px 50px 14px 10px;
    color: #231F20;
    position: relative;
    text-decoration: none;
}
.link-doc .icon, .link-doc svg {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    margin-top: -15px;
    top: 50%;
}
.link-doc:hover {
    color: #002FAC;
}
.count {
    color: #fff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:url(../img/icons/decor.svg) no-repeat center;
    background-size: contain;
}
.disabled .count {
    background-image: url(../img/icons/decor-gray.svg);
    opacity: 0.65;
}
.wrap-green-btn > * {
    width: 100%;
}
/* other end */



/* dropdown start */
.dropdown>.dropdown-toggle {
    z-index: 2;
    padding-left: 40px;
    padding-right: 40px;
    background: transparent;
    color: rgba(0, 0, 0, 1);
    border: 1px solid #2CD46B;
}
.dropdown>.dropdown-toggle .icon {
    color: #2CD46B;
}
.dropdown>.dropdown-toggle.show:after {
    transform: rotate(180deg)
}
.dropdown>.dropdown-toggle:after {
    background-image: url(../img/icons/dropdown.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-right: 0;
    top: 50%;
    position: absolute;
    left: 16px;
    border: none;
    vertical-align: middle;
    display: none;
}
.dropdown>.dropdown-menu {
    border: none;
    padding: 0;
    width: 100%;
    z-index: 1;
    display: none;
}
.dropdown-menu {
    padding-top: 8px;
    display: none;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto;
    right: auto;
    bottom: auto !important;
}
.dropdown-menu.show {
    display: block;
}
.dropdown>.dropdown-menu>li>.btn {
    padding: 0 20px;
    height: 46px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2CD46B;
    color: #fff;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    background-color: transparent;
    font-size: 1em;
}
.dropdown>.dropdown-menu>li> .btn:hover,
.dropdown>.dropdown-menu>li> .btn:focus,
.dropdown>.dropdown-menu>li> .btn:active,
.dropdown>.dropdown-menu>li> .btn:focus:active {
    background: transparent;
    color: #2CD46B
}

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    padding: 16px;
    border-radius: 0;
    border: none;
}
.dropdown-submenu .dropdown-toggle::after {
    margin-right: 12px;
}
/* dropdown end */

/* modal start */
.modal-backdrop {
    background: #fff;
}
.modal-backdrop.show {
    opacity: .8;
    filter: blur(8px);
    backdrop-filter: blur(80px);
}
.modal-dialog {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}
.modal-dialog-ended {
    display: flex;
    align-items: flex-end;
    min-height: 100%;
}
.modal .modal-content {
    border: none;
}
.modal:not(.blur-modal) .modal-content {
    border-top: 2px solid #002FAC;
    border-radius: 40px 40px 0 0;
}
.modal-header {
    padding: 16px;
    border: none;
    display: block;
}
.modal-header .btn-close {
    margin: 0 0 8px 0;
    font-size: 32px;
    padding: 0;
    background: none;
    color: #231F20;
    display: block;
}
.modal.blur-modal.show .modal-dialog {
    transition: transform .75s ease-out;
}

.modal.blur-modal .modal-content {
    background: transparent;
    backdrop-filter: blur(3px);
}

.modal-title-bordered {
    border: 1px solid #002FAC;
    border-radius: 14px;
    padding: 19px;
}

.blur-modal-button {
    margin-top: 10vh;
}

.modal-thanks .modal-thanks-title {
    font-size: clamp(2rem, 1.3319rem + 1.0776vw, 2.625rem);
}

@media (min-width: 767px) and (max-width: 1199px) {
    .modal-header .btn-close {
        font-size: 44px;
    }
}
.btn-close:before,
.btn-close:after {
    display: none;
}
.modal-title {
    margin: 0;
    color: #002FAC;
    line-height: initial;
}
.modal-body {
    padding: 0 16px 16px 16px;
}
/* modal end */


/* responsive image */
.responsive-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
}
.responsive-image-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
/* end responsive image */

/* articles */
.responsive-image-wrap.article-single-image {
    padding-bottom: 55.8659%;
}

.article-preview {
    display: block;
    color: #000000;
    text-decoration: none;
    min-height: 100%;
    line-height: 0;
}

.article-preview__img {
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: 12px 12px 0 0;
    padding-bottom: 55.8659%;
    border: 1px solid var(--color4, #002FAC);
    border-bottom: none;
}
.article-preview__img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.items-count-1 .article-preview__img {
    padding-bottom: 44%;
}

.article-preview__title {
    padding: 0 24px;
    font-size: clamp(1.5rem, -0.8708rem + 3.8278vw, 2rem);
    line-height: initial;
    border: 1px solid var(--color4, #002FAC);
    border-radius: 0 0 12px 12px;
    color: var(--color4, #002FAC);
    font-weight: 700;
    min-height: 84px;
    display: flex;
    align-items: center;
}
.article-preview:hover {
    color: #002FAC;
}
/* end articles */

@media (min-width: 767px) {
    .title {
        width: 380px;
    }
    .logo {
        width: 264px;
    }
    .form {
        width: 768px;
        max-width: 100%;
        margin: 0 auto;
    }
    .navbar-nav {

    }

    h1, .h1,
    h2, .h2 {
        font-size: 48px;
    }
    h1 .icon, .h1 .icon,
    h2 .icon, .h2 .icon {
        width: 24px;
        height: 24px;
    }
    .btn-icon {
        font-size: 24px;
    }

    .container {
        padding-left: 60px;
        padding-right: 60px;
     }
     .header {
        margin-bottom: 28px;
    }

    .link-doc {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .wrap-green-btn {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-left: -20px;
        margin-right: -20px;
    }
    .wrap-green-btn > * {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(50% - 40px);
    }
  
    .btn-primary.w-100 {
        min-width: 358px;
        width: auto !important;
    }

    .btn-messenger {
        height: 60px;

    }

    .link-doc {
        font-size: 24px;
        min-height: 118px;
        padding-right: 100px;
    }
    .link-doc .icon,
    .link-doc svg {
        width: 54px;
        height: 54px;
        right: 25px;
        margin-top: -27px;
    }
    .responsive-image-wrap.article-single-image {
        padding-bottom: 42.13%;
    }
}
@media (min-width: 1199px) {
    body.overflow-hidden {padding-right: 17px;}
    .footer {
        padding-top: 60px;
    }
    .title {
        width: 418px;
    }
    .logo {
        width: 312px;
    }
    .form {
        width: 420px;
        margin: 0 auto;
    }
    .navbar-nav {
        padding-top: 20px;
    }

    h1, .h1,
    h2, .h2 {
        font-size: 40px;
    }
    h1 .icon, .h1 .icon,
    h2 .icon, .h2 .icon {
        width: 30px;
        height: 30px;
    }
    .btn-icon {
        font-size: 28px;
    }

    .container {
       width: 1346px;
       padding-left: 20px;
       padding-right: 20px;
    }

    .wrap-green-btn > * {
        width: 416px;
    }

    .btn-lg {
        min-width: 358px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.75);
        padding: 0;
        z-index: 6;
    }
    .navbar-collapse .menu-wrap {
        width: 725px;
        background: #fff;
        height: 100%;
        overflow: auto;
        padding-right: calc(100vw - 1346px / 2 - 49vw);
        text-align: right;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        padding-bottom: 0;
    }
    .navbar-collapse .menu-wrap:before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        background: rgba(0, 47, 172, 1);
        top: 0;
        height: 100%;
    }
    .collapse-overlay {
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        height: 100%;
        width: calc(100vw - 725px);
        cursor: pointer;
        display: block;
    }
    .navbar-collapse ul {
        margin-bottom: 40px;
    }
    .navbar .nav-item {
        text-align: right;
        padding-right: 0;
    }
    .article-preview__title {
        padding: 0 16px;
    }
}
@media (min-width: 1199px) {
    .article-preview__title {
        padding: 0 28px;
    }
}
@media (max-width: 1400px) and (min-width: 1200px) {
    .navbar-collapse .menu-wrap {
        padding-right: 80px;
    }
}


.link-sms {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: rgba(0, 47, 172, 1);
    font-size: 20px;
}
.link-sms .icon {
    margin-left: 8px;
    width: 24px;
    height: 24px;
}
.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 -10px;
}
.input-container input {
    width: 44px;
    height: 60px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: rgba(0, 47, 172, 1);
    margin: 0 5px;
    padding: 5px;
    border: 1px solid rgba(0, 47, 172, 1);
    border-radius: 8px;
    appearance: none;
}

.input-container input::-webkit-outer-spin-button,
.input-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-container input[type=number] {
    -moz-appearance: textfield;
}

.sms-timer {
    opacity: 0.5;
    font-size: 1rem;
    width: 40px;
    text-align: center;
}

.link-sms-wrap.disabled a {
    color: currentColor;
    opacity: 0.5;
}


/* 404 */
.error-img {
    max-width: 60%;
    width: 420px;
    margin: 0 auto 32px auto;
}

/*pagination start*/
.pagination-p {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-p > * {
    margin: 0 10px;
    text-decoration: none;
    color: #231F20;
    text-decoration: none;
    font-weight: 500;
}
.pagination-p > *:hover {
    color: #002FAC
}
/*pagination end*/

.thanks-img {
    position: relative;
    height: 176px;
}
.thanks-img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    width: 1296px;
    max-width: none;
}

@media (max-width: 767px) {
    .thanks-img {
        height: 158px;
    }

    .page-template-thanks h1 {
        font-size: 32px;
    }

    .page-template-thanks .btn {
        width: 100%;
        max-width: 360px;
    }
}

@media (min-width: 1280px) and (max-width: 1600px) {
    .home .logo {
        width: 220px;
    }
}
.navbar li.current-menu-item .nav-link {
    color: rgba(0, 47, 172, 1);
}


.wrap-video-btn > * {
    width: 100%;
}
@media (min-width: 767px) {
    .wrap-video-btn {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-left: -20px;
        margin-right: -20px;
    }
    .wrap-video-btn > * {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(50% - 40px);
    }
}
@media (min-width: 1199px) {
    .wrap-video-btn > * {
        width: 368px;
    }
}
.btn-video {
    color: #000;
    border-radius: 100px;
    background: #fff;
    min-height: 59px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-family: 'Almoni DL AAA';
    line-height: initial;
    position: relative;
    border: 1px solid #002FAC;
}
.btn-video .icon {
    margin-left: 10px;
    width: 2rem;
    height: 2rem;
}
.btn-video:hover,
.btn-video:active,
.btn-video:focus,
.btn-video:focus:active {
    background-color: #002FAC;
    color: #fff;
}
.btn-video:hover .icon,
.btn-video:active .icon,
.btn-video:focus .icon,
.btn-video:focus:active .icon {
    filter: brightness(0) invert(1);
}
.video-modal .modal-dialog {
    margin: var(--bs-modal-margin) auto;
    
}
.video-modal .modal-content {
    border: none;
    border-radius: 0;
    background-color: transparent;
    width: auto;
    max-width: var(--bs-modal-width);
     margin: var(--bs-modal-margin) auto;
}
.video-modal .btn-close {
    top: 0;
    right: 5px;
    margin: 0 0 8px 0;
    font-size: 32px;
    padding: 0;
    background: none;
    color: #231F20;
    display: block;
    position: absolute;
    z-index: 1;
}
.video-modal video {
    border-radius: 40px;
}

/* accordion */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-circleplus' stroke='%23002FAC' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke-width='7.5'%3E%3C/circle%3E%3Cline x1='32.5' y1='50' x2='67.5' y2='50' stroke-width='5'%3E%3C/line%3E%3Cline x1='50' y1='32.5' x2='50' y2='67.5' stroke-width='5'%3E%3C/line%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    background-size: 24px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-circleplus' stroke='%23002FAC' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke-width='7.5'%3E%3C/circle%3E%3Cline x1='32.5' y1='50' x2='67.5' y2='50' stroke-width='5'%3E%3C/line%3E%3C/svg%3E%0A");
}

.accordion.level-2 > .accordion-item,
.accordion.level-2 > .accordion-item > .accordion-header > .accordion-button {
    background: #e7f1ff;
}

@media (min-width: 992px) {
    .accordion-button::after {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }
}
.footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background-color: #002FAC;
    color: #fff;
    box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, .06);
    min-height: 63px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-bar li{
    flex: 1 1 auto;
}
.footer-bar .menu-image{
    width: 19px;
    height: auto;
    vertical-align: middle;
    margin-bottom: 0.25em;
}
.footer-bar li a{
    font-size: 16px;
    color:#fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
@media (max-width: 768px) {
    .footer {padding-bottom: 80px;}
}
.gallery-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}
.gallery-block a{
    flex: 1 0 calc(100%/3 - 16px);
    margin: 0; 
}
.gallery-block img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    height: auto;
    display: block;
}
.fancybox-container {
    backdrop-filter: blur(5px);
}
.fancybox-bg {
    background: #fff!important;
    opacity: 0.75!important;
}
.fancybox-inner {    
    width: 90% !important; 
    max-width: 1346px !important;
    margin: 0 auto;
}
.fancybox-button {
    border-radius: 50%!important;
    background: #ECECEC!important;
    color: #000!important;
    padding: 10px!important;
    width: 50px!important;
    height: 50px!important;
}
.fancybox-navigation .fancybox-button {
    background: #fff!important;
    border: 1px solid #002FAC!important;
    color: #002FAC!important;
}
.fancybox-navigation .fancybox-button div {padding: 0!important;}
.fancybox-image {border-radius: 1rem;}
.fancybox-infobar {
    display: none !important;
}
.fancybox-toolbar {top:10px!important;}
@media (max-width: 768px) {
    .gallery-block {gap: 2vw;}
    .fancybox-button {
        width: 32px!important;
        height: 32px!important;
        padding: 5px!important;
    }
    .fancybox-navigation .fancybox-button {
        top:calc(50% - 16px)!important;
    }
}

/* wpcf7 */
.wpcf7-form.submitting .wpcf7-spinner {
    width: 40px;
    height: 40px;
    position: relative;
    top: -60px;
}


/* invoices */

.invoices-table-section.first-load {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.invoices-table-section.first-load .invoices-table {
    display: none;
}

.invoices-table-section.first-load .invoices-search-form {
    border: 1px solid #002FAC;
    border-radius: 22px;
    padding: 40px 35px;
    max-width: 724px;
}

.invoices-table-section #ajax-error {
    padding-top: 10px;
}

/* .invoices-table-section.first-load .invoices-search-form */

.invoices-search-form {
    display: flex;
    justify-content: start;
    align-items: flex-start;
}
.invoices-search-form .date-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    margin-left: 15px;
}
.invoices-search-form .date-input .form-label {
    width: 34px;
    margin-bottom: 0;
}

.invoices-search-form .date-input .form-control {
    width: calc(100% - 34px);
    height: 60px;
    padding: 0px 20px;
    border-radius: 16px;
    /* border: 1px solid #002FAC; */
    border-style: solid;
    border-width: 1px;
}

.invoices-search-form .date-input .invalid-feedback {
    width: 100%;
    padding-right: 34px;
    padding-top: 5px;
}

.invoices-search-form .date-input .form-control.is-invalid, 
.invoices-search-form.was-validated .form-control:invalid {
    background-image: none;
}

.invoices-table-section .invoices-search-form .form-control::placeholder {
    opacity:0.5;
}

.invoices-search-form .btn {
    padding: 0 30px;
    height: 60px;
}

.invoices-table {
    margin-top: 40px;
}

.invoices-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.invoices-table table tr {
    display: flex;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    justify-content: stretch;
    align-items: center;
    border: 1px solid #002FAC;
    border-radius: 16px;
}
.invoices-table table th,
.invoices-table table td {
    width: 25%;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.invoices-table table th:after,
.invoices-table table td:after {
    content: "";
    width: 1px;
    height: 35px;
    background-color: #00000026;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -17px;
}

.invoices-table table thead tr {
    background-color: #96AFF480;
    border: 0;
}

.invoices-table table td .btn-primary {
    font-size: 22px;
    height: 38px;
}

#invoices-loader .invoices-spinner {
    width: 100px;
    height: 100px;
    border-width: 10px;
    position: relative;
    /* border-left-color: #002FAC12; */
}

.invoices-table tbody tr.loading {
    position: relative;
    overflow: hidden;
}
.invoices-table tbody tr.loading:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #002FAC;
    opacity: 0.5;
}
.invoices-table tbody tr.loading button .spinner-border {
    display: block;
    margin-left: 10px;
}

@media (max-width:1150px) {
    .invoices-table table th,
    .invoices-table table td {
        width: 22%;
    }

    .invoices-table table th:last-child,
    .invoices-table table td:last-child {
        width: 36%;
    }

    .invoices-table table td .btn-primary {
        font-size: 18px;
    }
}

@media (max-width:767px) {

    #accessibility-btn {
        top: auto;
        bottom: 75px;
    }

    .invoices-search-form {
        flex-wrap: wrap;
    }
    .invoices-search-form .button-container {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: end;
    }
    .invoices-search-form {
        justify-content: space-between;
    }
    .invoices-search-form .date-input {
        width: 48%;
        margin: 0;
    }
    .invoices-search-form .date-input .form-label {
        width: 15%;
        margin: 0;
    }
    .invoices-search-form .date-input .form-control {
        width: 85%;
        height: 50px;
    }
    .invoices-search-form .btn {
        width: 93%;
        height: 50px;
    }

    .invoices-table table td .btn-primary {
        width: 95%;
    }

    .invoices-table {
        position: relative;
        overflow: hidden;
    }

    /* force table to not be like tables anymore */
	.invoices-table table, 
    .invoices-table table thead, 
    .invoices-table table tbody, 
    .invoices-table table th, 
    .invoices-table table td, 
    .invoices-table table tr,
    .invoices-table table td:last-child {
        display: block;
        height: auto;
        width: auto;
    }
    .invoices-table table tr { 
		overflow: hidden;
	}

    /* hide table headers (but not display: none;, for accessibility) */
	.invoices-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

    .invoices-table table td,
    .invoices-table table td:before,
    .invoices-table table td:last-child {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: start;
        font-size: 18px;
    }

    .invoices-table table td:last-child,
    .invoices-table table td:last-child:before {
        height: 60px;
    }

    .invoices-table table td { 
		/* behave  like a "row" */
		position: relative;
		padding-right: 45%;
        border-bottom: 1px solid #ccc;
	}
	
    /* now like a table header */
	.invoices-table table td:before { 
		position: absolute;
        top: 0;
        right: 0;
		width: 40%;
		white-space: nowrap;
        background: #96AFF480;
        padding-right: 5%;
	}

    /* label the data */
	.invoices-table table td:before { content: attr(data-label); }

    .invoices-table-section.first-load .invoices-search-form .date-input {
        width: 50%;
        padding: 0 5px;
    }
    .invoices-table-section.first-load .invoices-search-form .button-container {
        padding: 0 5px;
    }
    .invoices-table-section.first-load .invoices-search-form .date-input .form-label {
        width: 32px;
    }
    .invoices-table-section.first-load .invoices-search-form .date-input .form-control {
        width: calc(100% - 32px);
    }

}

@media (max-width:480px) {
    .invoices-table-section .invoices-search-form .date-input .form-control {
        font-size: 24px;
        padding: 0 5px;
    }
    .invoices-table-section.first-load .invoices-search-form {
        padding: 25px 15px;
    }
    .invoices-table-section .invoices-search-form .date-input .form-label,
    .invoices-table-section.first-load .invoices-search-form .date-input .form-label {
        width: 24px;
    }
    .invoices-table-section .invoices-search-form .date-input .form-control,
    .invoices-table-section.first-load .invoices-search-form .date-input .form-control {
        width: calc(100% - 24px);
    }
    .invoices-table-section.first-load .invoices-search-form .date-input,
    .invoices-table-section.first-load .invoices-search-form .button-container {
        padding: 0 3px;
    }
    .invoices-search-form .date-input .invalid-feedback {
        padding-right: 24px;
    }
}

@media (max-width:360px) {
    .invoices-table-section.first-load .invoices-search-form {
        padding: 15px 5px;
    }
    .invoices-table-section .invoices-search-form .form-control::placeholder {
        font-size: 95%;
    }
}


/* invoices end */