/* variable */
:root {
    --system_primery_color: #104d8d;
    --system_secendory_color: #202e3b;
    --footer_background_color: #dadada;
    --footer_headline_color: #414141;
    --footer_text_color: #5b5c6e;
    --footer_text_hover_color: #104d8d;
    --menu_bg: #f8f9fa;
    --menu_text: #2b3d4e;
    --menu_hover_text: #fb1159;
    --menu_title_text: #202e3b;
    /* theme color custom */
    --theme-primary-color-1: #264d9d;
    --theme-primary-color-2: #7c94c4;
    --theme-primary-color-3: #d2dbeb;
    --theme-success-color-1: #30b55c;
    --theme-success-color-2: #83d39d;
    --theme-success-color-3: #d6f0de;
    --theme-dark-color-1: #3e3f42;
    --theme-dark-color-2: #bcbdc0;
    --theme-light-color: #ffffff;
    --theme-warning-color: #fec222;
    --theme-orange-color: #FF9900;
    --theme-main-color: #284D9C;
    --font-family: "roboto", sans-serif;
}

* {
    font-family: 'Roboto', sans-serif;
    /* font-style: italic; */
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.outline-none {
    outline: none
}

.block-elements {
    padding-left: 7%;
    padding-right: 7%;
}

.bg-custom-primary {
    background-color: var(--theme-primary-color-1) !important;
}

.bg-custom-warning {
    background-color: var(--theme-warning-color) !important;
}

.font-medium {
    font-weight: 600;
}

.text-custom-primary {
    color: var(--theme-primary-color-1);
}

.text-custom-info {
    color: var(--theme-primary-color-2);
}

.text-custom-success {
    color: var(--theme-success-color-1);
}

.text-custom-warning {
    color: var(--theme-warning-color);
}

.text-custom-muted {
    color: #bcbdc0;
}

/* shadow */
.dark-shadow {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
}

/* border */
.border-custom {
    border-radius: 20px;
}

/* button custom */
.btn-custom-1 {
    background-color: var(--theme-primary-color-1);
    color: var(--theme-light-color);
    border: 1px solid var(--theme-primary-color-1);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-custom-1:hover {
    background-color: var(--theme-light-color);
    color: var(--theme-dark-color-1);
    border: 1px solid var(--theme-dark-color-1);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-outline-custom-1 {
    color: var(--theme-primary-color-1);
    border: 1px solid var(--theme-primary-color-1);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-outline-custom-1:hover {
    background-color: var(--theme-primary-color-1);
    color: var(--theme-light-color);
    border: 1px solid var(--theme-primary-color-1);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-custom-2 {
    background-color: var(--theme-success-color-1);
    color: var(--theme-light-color);
    border: 1px solid var(--theme-success-color-1);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-custom-2:hover {
    background-color: var(--theme-light-color);
    color: var(--theme-success-color-1);
    border: 1px solid var(--theme-success-color-1);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-outline-custom-2 {
    color: var(--theme-success-color-1);
    border: 1px solid var(--theme-success-color-1);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-outline-custom-2:hover {
    background-color: var(--theme-success-color-1);
    color: var(--theme-light-color);
    border: 1px solid var(--theme-success-color-1);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-outline-custom-3 {
    color: var(--theme-light-color);
    border: 1px solid var(--theme-light-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-outline-custom-3:hover {
    background-color: var(--theme-warning-color);
    color: var(--theme-dark-color);
    border: 1px solid var(--theme-warning-color);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-custom-orange {
    background-color: var(--theme-orange-color);
    color: var(--theme-light-color);
    border: 1px solid var(--theme-orange-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-custom-orange:hover {
    background-color: var(--theme-light-color);
    color: var(--theme-orange-color);
    border: 1px solid var(--theme-orange-color);
    text-decoration: none;
    transition: 0.3s ease-out;
}

.btn-switch-custom {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 22px;
    border-radius: 20px;
    background: #fff;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
    margin: 0;
}

.btn-switch-custom::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 20px;
    height: 20px;
    background: var(--theme-warning-color);
    border-radius: 50%;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-switch-custom:active::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.input-switch-custom:checked + .btn-switch-custom {
    background: var(--theme-warning-color);
}

.input-switch-custom:checked + .btn-switch-custom::before {
    left: 19px;
    background: #fff;
}

.input-switch-custom:checked + .btn-switch-custom:active::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

/* Client Header */
.header {
    z-index: 3;
    font-size: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
}

/* .header .navbar-brand {
  width: 30%;
} */
.header .navbar-brand .logo-header {
    width: 100%;
    max-width: 145px;
}

.header-info {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--color-blue-1);
    color: var(--theme-light-color);
}

.header .header-navbar {
    padding-top: 5px;
    padding-bottom: 5px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--theme-light-color);
}

.header .header-navbar .navbar-nav .nav-item a {
    font-weight: 600;
}

.header .header-navbar .navbar-nav .nav-item.active a {
    color: var(--theme-primary-color-1);
}

.header .header-navbar .nav-link:hover,
.header .dropdown-item a:hover {
    color: var(--theme-primary-color-2);
}

.header .header-navbar .dropdown-menu {
    margin-top: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.header .dropdown-item {
    padding: 0 10px;
}

.header .dropdown-item a {
    display: block;
    padding: 10px 0;
    font-weight: 500 !important;
    width: calc(100%);
    color: var(--theme-dark-color-1);
    text-decoration: none;
}

.Navigation {
    background: white;
    height: 66px;
    display: flex;
    align-items: center;
    transition: .5s;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 9999;
}

.Navigation-action a {
    width: 105px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 400;
    padding: 9px 14px;
}

.Navigation-action a.login {
    border: 1px solid #636466;
    background-color: #FFFFFF;
    color: #707173;
}

.Navigation-action a.register {
    border: 1px solid transparent;
    background-color: #0270D9;
    color: #FFFFFF;
}

.Navigation-action a.login,
.Navigation-action a.register {
    display: inline-flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    transition: all 0.25s linear;
}

.Navigation-action a.login:hover {
    background-color: #284D9C;
    color: #fff;
}

.Navigation-item {
    align-items: center;
}

.Navigation-item .button-bars {
    display: none
}

.Navigation-item .button-bars i.fa {
    font-size: 2rem;
    color: black;
    font-weight: 400;
    transition: .5s;
}

.Navigation .list-item-group {
    margin-bottom: 0
}

.Navigation .list-item-group.horizon {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    padding: 0;
    flex: 1;
    align-items: center;
    margin-right: 30px;
}

.Navigation-item-logo {
    display: flex;
    align-items: center;
}

.Navigation-item-logo a {
    display: block;
}

.Navigation .list-item-group.horizon .list-item {
    margin-left: 30px;
    position: relative;
}

.Navigation .list-item-group.horizon .list-item:first-child {
    margin-left: 0;
}

.Navigation .list-item-group.horizon .list-item .has-dropdown-list {
    position: absolute;
    min-width: 200px;
    max-width: 100%;
    left: 0;
    background: #fff;
    top: 45px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    z-index: 9;
    transition: .5s;
    padding: 0;
    transform: translateY(20%);
    opacity: 0;
    visibility: hidden
}

.Navigation .list-item-group.horizon .list-item .has-dropdown-list .list-item {
    padding: 10px;
    margin: 0;
}

.Navigation .list-item-group.horizon .list-item .has-dropdown-list .list-item .list-item-link {
    color: #000
}

.Navigation .list-item-group.horizon .list-item.has-dropdown:hover > .has-dropdown-list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible
}

.Navigation .list-item-group.horizon .list-item .list-item-link {
    font-size: 16px;
    color: black;
    /*text-transform: capitalize;*/
    transition: .5s;
}

.Navigation .list-item-group.horizon .list-item .list-item-link i {
    margin-left: 5px;
}

.Navigation .list-item-group.horizon .list-item .list-item-link:hover {
    color: #284D9C;
    font-weight: 400;
}

.Navigation .list-item-group.horizon .list-item .list-item-link.active {
    color: #284D9C;
    font-weight: 500;
}

.Navigation-auth-name {
    display: flex;
    flex-direction: column;
}

/* Client Footer */
.footer .logo-footer .logo {
    object-fit: contain;
}

.footer .logo-footer .logo-name {
    color: var(--theme-light-color);
}

.footer .info-footer i {
    width: 20px;
}

.footer .footer-link li {
    margin-bottom: 10px;
}

.footer .footer-link li a {
    text-decoration: none;
    color: var(--theme-light-color);
}

.card-title a {
    color: #3E3F42;
    text-decoration: none;
}

label.error {
    color: red;
    font-size: 14px;
    display: initial;
}

#bg-load {
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.loader {
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    top: 35%;
    background: url('../images/loading.gif') no-repeat center;
    background-color: rgba(0, 0, 0, 0.3);
    width: 146px;
    height: 26px;
}

.Navigation .Navigation-item .Navigation-auth {
    position: relative;
    cursor: pointer;
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* .Navigation .Navigation-item .Navigation-auth .Navigation-auth-name {} */

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown {
    position: absolute;
    top: 54px;
    min-width: 148px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    z-index: 20;
    /*left: -76%;*/
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    transform: translateY(50%);
}

.Navigation .Navigation-item .Navigation-auth.show .Navigation-auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown .Navigation-auth-dropdown-item {
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown .Navigation-auth-dropdown-item:last-child {
    border-bottom: unset;
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown .Navigation-auth-dropdown-item .Navigation-auth-dropdown-item-link {
    display: block;
    width: 100%;
    color: black;
    padding: 10px;
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown .Navigation-auth-dropdown-item:hover .Navigation-auth-dropdown-item-link,
.Navigation .Navigation-item .Navigation-auth .Navigation-auth-dropdown .Navigation-auth-dropdown-item.active .Navigation-auth-dropdown-item-link {
    background: #ECF1FF;
    color: #12387A;
    font-weight: 500;
}

.Navigation.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    background: white;
    top: 0;
    z-index: 9999;
    /*    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);*/
}

.Navigation .Navigation-item .Navigation-auth .Navigation-auth-avatar img {
    width: 34px;
    height: 34px;
    border: 1px solid #AEBFFF
}

.bg-color_linear_infinite {
    background-color: #284D9C;
}

.shadow_linear_infinite {
    box-shadow: 0px 0px 1.5px 0px #284D9C;
}

.animate-left_2s_linear_infinite {
    animation: left 2s linear infinite;
}

.animate-top_2s_linear_infinite {
    animation: top 2s linear infinite;
}

.animate-right_2s_linear_infinite {
    animation: right 2s linear infinite;
}

.animate-bottom_2s_linear_infinite {
    animation: bottom 2s linear infinite;
}

@keyframes left {
    0% {
        height: 0;
        left: 0;
        top: 42px;
    }

    20% {
        height: 42px;
        left: 0;
        top: 0;
    }

    40% {
        height: 0;
        left: 0;
        top: 0;
    }
}

@keyframes top {
    0% {
        left: 0;
        top: 0;
        width: 0;
    }

    20% {
        left: 0;
        top: 0;
        width: 0;
    }

    40% {
        left: 0;
        top: 0;
        width: 42px;
    }

    60% {
        left: 42px;
        top: 0;
        width: 0;
    }
}

@keyframes right {
    0% {
        height: 0;
        left: 42px;
        top: 0;
    }

    40% {
        height: 0;
        left: 42px;
        top: 0;
    }

    60% {
        height: 42px;
        left: 42px;
        top: 0;
    }

    80% {
        height: 0;
        left: 42px;
        top: 42px;
    }
}

@keyframes bottom {
    0% {
        left: 42px;
        top: 42px;
        width: 0;
    }

    60% {
        left: 42px;
        top: 42px;
        width: 0;
    }

    80% {
        left: 0;
        top: 42px;
        width: 42px;
    }

    100% {
        left: 0;
        top: 42px;
        width: 0;
    }
}

.spinner {
    border: 4px solid #e5e7eb;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.position-absolute {
    position: absolute;
}

.icon-container {
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.button-bars.active .icon-container {
    border-radius: 50%;
    border: 1px solid #003399;
}

.icon_linear_infinite {
    display: flex;
}

.button-bars.active .icon_linear_infinite {
    display: none;
}

.icon-bars {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    justify-content: center;
}

.bar {
    height: 5px;
    border-radius: 5px;
    background-color: #003399;
    transition: all 0.3s ease;
}

.bar.large {
    width: 100%;
}

.bar.medium {
    width: 75%;
}

.bar.small {
    width: 50%;
    background-color: rgba(0, 51, 153, 0.5);
}

.button-bars.active .icon-bars .bar.large:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
}

.button-bars.active .icon-bars .bar.small:nth-child(2) {
    opacity: 0;
}

.button-bars.active .icon-bars .bar.large:nth-child(4) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.button-bars.active .icon-bars .bar.medium:nth-child(3) {
    opacity: 0;
}

.button-bars .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-bars.active .overlay {
    z-index: 3;
    opacity: 1;
    height: 100vh;
}

/*Footer */
.footer__content {
    background-color: #EFF4F7;
    padding: 46px 0;
}

.footer__content-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
    color: #1F3B64;
}

.footer__content-item {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.footer__item-image {
    margin-right: 6px;
}

.footer__item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #1F3B64;
    letter-spacing: 1px;
}

.footer__license {
    color: white;
    background: #12387A;
    padding: 20px 0;
}

.footer__license-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.footer__license img {
    width: 130px;
    height: auto;
}

.footer__license .container div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__license-wrapper {
    flex-direction: column;
}

@media (min-width: 1140px) {
    .menu-courses__dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 40px;
        pointer-events: auto;
        background: transparent;
    }
}

@media (min-width: 992px ) {
    .footer__license-text {
        text-align: center;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .footer__content-title {
        height: 72px;
    }

    .footer__content-item {
        align-items: start;
    }

    .footer__item-image {
        margin-top: 6px
    }
}

@media (max-width: 1140px) {
    .Navigation .list-item-group.horizon {
        max-height: 0;
        overflow: hidden;
        transition: .5s;
        position: absolute;
        top: 100%;
        margin: 0;
        background: white;
        height: 100vh;
        width: 100%;
        left: 0;
        padding: 0 40px;
        z-index: 10;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: start;
        box-sizing: border-box;
        transition-duration: .3s;
        transition-property: all;
        left: 0;
        transform: translate3d(-100%, 0, 0);
        padding: 0 12px;
        padding-top: 18px;
    }

    .Navigation .list-item-group.horizon .list-item .has-dropdown-list {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: unset;
        box-shadow: unset;
        max-height: 0;
        overflow: hidden;
    }

    .Navigation .list-item-group.horizon .list-item .has-dropdown-list .list-item {
        padding: 0px;
    }

    .Navigation-item {
        align-items: center;
    }

    .Navigation-item .button-bars {
        display: block;
        margin-left: 10px;
    }

    .Navigation-action {
        flex: 2;
        display: flex;
        justify-content: flex-end;
    }

    .Navigation .list-item-group.horizon.active {
        max-width: calc(100vh - 66px - 0px);
        transform: translate3d(0, 0, 0);
        max-height: calc(100vh - 66px - 0px);
        overflow-y: auto;
    }

    .fixed.Navigation .list-item-group.horizon.active {
        max-height: calc(100vh - 66px);
        max-width: calc(100vh - 66px - 0px);
        transform: translate3d(0, 0, 0);
    }

    .Navigation .list-item-group.horizon .list-item {
        padding: 0;
        width: 100%;
        margin: 0;
        height: fit-content;
    }

    .Navigation .list-item-group.horizon .list-item:first-child {
        margin-left: 0;
    }

    .Navigation .list-item-group.horizon .list-item .list-item-link {
        padding: .5rem 0;
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 7px 10px;
        border-radius: 8px;
        margin-bottom: 5px;
        font-size: 16px;
        color: black;
        transition: .5s;
    }

    .Navigation .Navigation-item .Navigation-auth {
        flex: 1;
        justify-content: flex-end;
    }

    .Navigation .list-item-group.horizon .list-item .list-item-link.active {
        background-color: #EEF4FF;
    }

    .Navigation .list-item-group.horizon .list-item .list-item-link:hover {
        background-color: #EEF4FF;
    }
}

@media (max-width: 992px) {
    .footer__license {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .footer__license .container div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer__license-wrapper {
        margin-bottom: 16px;
    }

    button.btn-runtop {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .footer__license .container div {
        align-items: start;
    }

    .footer__license-wrapper {
        flex-direction: row;
    }

    .footer__license .container div {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .Navigation .Navigation-item .Navigation-auth {
        flex: 1;
        justify-content: flex-end;
    }

    .Navigation {
        padding: 10px 12px;
        box-shadow: 0px 0px 20px 0px #00000040;
    }

    .Navigation .Navigation-item .Navigation-auth .Navigation-auth-name {
        display: none;
    }

    .Navigation-action a.login {
        border-radius: 99px !important;
        height: 34px;
        width: 100px;
        border: 1px solid #284D9C;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: #284D9C;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

}
