@font-face {
    font-family: fontSite;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: boldFont;
    src: url(../fonts/Montserrat-Bold.ttf);
}

body {
    margin: 0px;
    background-color: #eef3fe;
    padding: 0px;
    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-height: 100vh;
}

body * {
    font-family: fontSite;
}

body .container,
body .row {
    padding: 0px;
    margin: 0px auto;
}

body button {
    outline: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 2px;
}

body button:focus {
    outline: none;
}

body input {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    border-radius: 2px;
}

body input:focus {
    outline: none;
}

body a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body a:hover,
body a:focus {
    text-decoration: none;
    color: #00a6ff !important;
}

body p {
    margin: 0px;
    color: #fff;
}

.header_index {
    position: relative;
}

.header_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    position: static;
    height: 210px;
}

.header_row .img_background {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.header_row .header_col {
    width: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_row .header_col:last-child {
    width: 340px;
}

.header_row .header_col:last-child p {
    font-size: 13px!important;
    text-align: left;
}

.header_row .header_col p {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 16.5px !important;
    color: #002c96;
}

.header_row .header_col img {
    margin-right: 20px;
}

#menu_toggle_button {
    --menu-size: 24px;
    /* Change This! */
    --menu-unit: calc(var(--menu-size) / 12);
    height: var(--menu-size);
    width: var(--menu-size);
    background-color: transparent;
    border: none;
    margin: 3px 0px 0px 0px;
    padding: 0;
    overflow: visible;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: none;
}

#menu_toggle_button .menu-button-bar {
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: block;
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
}

#menu_toggle_button .menu-button-bar#bar1 {
    top: calc(2 * var(--menu-unit));
}

#menu_toggle_button .menu-button-bar#bar2 {
    top: calc(50% - (var(--menu-unit) / 2));
    left: 0;
}

#menu_toggle_button .menu-button-bar#bar3 {
    bottom: calc(2 * var(--menu-unit));
}

body.menu-visible #menu_toggle_button .menu-button-bar {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

body.menu-visible #menu_toggle_button .menu-button-bar#bar1 {
    top: calc(50% - (var(--menu-unit) / 2));
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.menu-visible #menu_toggle_button .menu-button-bar#bar2 {
    width: 0;
    left: calc(var(--menu-size) / 2);
}

body.menu-visible #menu_toggle_button .menu-button-bar#bar3 {
    bottom: calc(50% - (var(--menu-unit) / 2));
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar_menu {
    position: relative;
    background-color: #002c96;
}

.navbar_menu .container {
    padding: 0px;
}

.navbar_menu .row_menu {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.navbar_menu .row_menu .menu_items {
    margin: 0px;
    padding: 0px;
    list-style: none;
    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;
}

.navbar_menu .row_menu .menu_items li {
    padding: 12px 20px 12px 20px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.navbar_menu .row_menu .menu_items li:hover {
    color: #00a6ff !important;
}

.navbar_menu .row_menu .menu_items li:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar_menu .row_menu .menu_items li {
    /* font-size: 22px; */
    font-size: 17px;
}

.navbar_menu .row_menu .menu_items .active_navbar {
    background-color: #003dd1;
    position: relative;
}

.navbar_menu .row_menu .menu_items .active_navbar::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -2px;
    width: 2px;
    height: 100%;
    background-color: #002c96;
    z-index: 2;
}

.navbar_menu .row_menu .menu_items .active_navbar::after {
    content: "";
    position: absolute;
    top: 0px;
    left: -1px;
    width: 2px;
    height: 100%;
    background-color: #002c96;
    z-index: 2;
}

.navbar_menu .row_menu .right_col {
    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;
    width: 165px;
}

.navbar_menu .row_menu .right_col .btn_col {
    background-color: transparent;
    border: none;
}

.navbar_menu .row_menu .right_col .btn_col img {
    width: 24px;
    height: 24px;
}

.navbar_menu .row_menu .right_col .lang_btn {
    width: 65px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 3px;
}

.navbar_menu .row_menu .right_col .lang_btn p {
    margin: 0px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-family: boldFont;
}

.navbar_menu .row_menu .right_col .langs {
    display: none;
    width: 65px;
    background-color: #003dd1;
    position: absolute;
    top: 30px;
    left: 0px;
    z-index: 9;
    border-radius: 3px;
}

.navbar_menu .row_menu .right_col .langs a {
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    color: #fff;
    border: none;
    font-size: 13px;
    display: block;
    text-align: center;
}

.navbar_menu .row_menu .right_col .langs a:hover {
    color: #fff !important;
    background-color: #00a6ff;
}

.navbar_menu .row_menu .right_col .langs a:not(:last-child) {
    margin-bottom: 2px;
}

.active_search {
    height: 120px !important;
}

.search_row {
    position: absolute;
    width: 100%;
    left: 0px;
    height: 0px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #003dd1;
    z-index: 2;
    overflow: hidden;
}

.search_row div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search_row div .input_search {
    border: none;
    outline: none;
    height: 40px;
    width: 350px;
    padding: 0px 15px;
}

.search_row div .btn_search {
    border: none;
    height: 40px;
    margin-left: 15px;
    background-color: #00a6ff;
    color: #fff;
    font-size: 14.5px;
    width: 113px;
}

.login_row {
    position: absolute;
    width: 100%;
    left: 0px;
    height: 0px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #003dd1;
    z-index: 2;
    overflow: hidden;
}

.active_login {
    height: 120px !important;
}

.login_row div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    justify-content: flex-end;
    width: 675px;
}

.login_row div label input {
    border: none;
    outline: none;
    height: 40px;
    width: 255px;
    padding: 0px 15px;
    margin-right: 25px;
}

.login_row div label .label {
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 4px;
}

.login_row div label {
    margin: 0px;
}

.login_row div .btn_login {
    border: none;
    height: 40px;
    background-color: #00a6ff;
    color: #fff;
    font-size: 14.5px;
    width: 113px;
}

.login_row div .user_name {
    font-size: 20px;
    color: #fff;
    margin-right: 30px;
}

#loginform-password,
#loginform-username {
    font-size: 16.5px !important;
}

.login_row div .btn_exit {
    width: 113px;
    height: 40px;
    font-size: 14.5px;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.login_row .when_login {
    align-items: center;
}

.open_down_menu {
    height: auto !important;
    -webkit-transition: 0.3s;
    transition: .3s;
}

.down_menu {
    position: absolute;
    width: 100%;
    left: 0px;
    height: 0px;
    top: 49px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #003dd1;
    z-index: 2;
    overflow: hidden;
}

.down_menu .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.down_menu ul {
    list-style: none;
    margin-right: 35px;
    padding: 15px 0 15px 20px;
}

.down_menu ul li {
    padding: 0px !important;
    border: none !important;
    margin-bottom: 8px;
}

.down_menu ul li a {
    position: relative;
}

.down_menu ul li a .tooltip {
    position: absolute;
    right: -90px;
    top: -3px;
    background-color: #00a6ff;
    color: #fff;
    opacity: 0;
    padding: 3px 10px;
    display: block;
    transition: .3s;
    border-radius: 5px;
    transition-delay: 800ms;
    z-index: -1;
}

.down_menu ul li a:hover .tooltip {
    opacity: 1 !important;
    z-index: 2;
}

.down_menu ul li a .tooltip::before {
    position: absolute;
    left: 1.5px;
    background-color: #00a6ff;
    content: '';
    top: 50%;
    width: 20px;
    height: 25px;
    clip-path: polygon(50% 0%, 0 50%, 50% 100%);
    transform: translate(-50%, -50%);
}

.news_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news_header p {
    text-transform: uppercase;
    margin: 0px;
    color: #002c96;
    font-size: 20px;
    font-family: boldFont;
}

.news_header .btn_all_news {
    background-color: transparent;
    border: none;
    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;
    width: 120px;
}

.news_header .btn_all_news a {
    font-size: 14.5px;
    font-family: fontSite;
    color: #002c96;
    text-transform: uppercase;
}

.btn_all_news_mobile {
    display: none;
    border: none;
    background-color: transparent;
}

.news_items {
    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-bottom: 65px;
}

.news_items .big_item {
    max-width: 540px;
    width: 100%;
    height: 355px;
    position: relative;
    overflow: hidden;
}

.news_items .big_item .img_news {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_items .big_item .inner_items {
    color: #fff;
    padding: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    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;
    -webkit-box-shadow: inset 0 -180px 100px -50px #000000;
    box-shadow: inset 0 -180px 100px -50px #000000;
}

.news_items .big_item .inner_items:hover {
    -webkit-box-shadow: inset 0 -150px 100px -50px #000000;
    box-shadow: inset 0 -150px 100px -50px #000000;
}

.news_items .big_item .inner_items p {
    font-size: 20px;
}

.news_items .big_item .inner_items .inner_header {
    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;
}

.news_items .big_item .inner_items .inner_header p {
    font-size: 14.5px;
}

.news_items .big_item .inner_items .inner_header .btn_link {
    background-color: transparent;
    border: none;
}

.news_items .small_item {
    max-width: 255px;
    width: 100%;
    height: 355px;
    position: relative;
    overflow: hidden;
}

.news_items .small_item .img_news {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_items .small_item img {
    width: 100%;
}

.news_items .small_item .inner_items {
    color: #fff;
    padding: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    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;
    background-color: rgba(0, 0, 0, 0.7);
}

.news_items .small_item .inner_items:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.news_items .small_item .inner_items p {
    font-size: 20px;
}

.news_items .small_item .inner_items .inner_header {
    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;
}

.news_items .small_item .inner_items .inner_header .btn_link {
    background-color: transparent;
    border: none;
}

.news_items .small_item .inner_items .inner_header p {
    font-size: 14.5px;
    font-weight: normal;
}

.services {
    background-color: #002c96;
    background-image: url(../static/images/img/bg_services.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

.services .services_title {
    text-transform: uppercase;
    margin-bottom: 50px;
    font-size: 20px;
    font-family: boldFont;
}

.services .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.services .items .item {
    background-color: #002c96;
    width: 255px;
    height: 180px;
    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;
    margin-bottom: 40px;
    padding: 15px;
}

.services .items .item:not(:nth-child(4n + 4)) {
    margin-right: 40px;
}

.services .items .item:hover {
    background-color: #fff;
}

.services .items .item:hover p {
    color: #002c96 !important;
}

.services .items .item p {
    text-align: center;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.advertisements {
    background-color: #eef3fe;
    padding-bottom: 40px;
}

.advertisements .news_advertisements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.advertisements .news_advertisements p:first-child {
    font-size: 20px;
    width: 50%;
    font-family: boldFont;
}

.advertisements .news_advertisements p {
    text-transform: uppercase;
    margin: 0px;
    color: #002c96;
}

.advertisements .news_advertisements .btn_all_advertisements {
    background-color: transparent;
    border: none;
    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;
    width: 120px;
}

.advertisements .news_advertisements .btn_all_advertisements p {
    font-size: 14.5px;
    width: auto;
    font-family: fontSite;
}

.advertisements .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.advertisements .items .item {
    width: 350px;
    height: 245px;
    padding: 15px;
    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;
    background-color: #fff;
    margin-bottom: 45px;
}

.advertisements .items .item:not(:nth-child(3n + 3)) {
    margin-right: 45px;
}

.advertisements .items .item:hover {
    background-color: #00a6ff;
}

.advertisements .items .item:hover p {
    color: #fff !important;
}

.advertisements .items .item .content p:first-child {
    color: #00a6ff;
    margin-bottom: 15px;
    font-size: 14.5px;
}

.advertisements .items .item .content p:last-child {
    color: #002c96;
    font-size: 20px;
}

.advertisements .items .item .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.advertisements .items .item .inner_header {
    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;
}

.advertisements .items .item .inner_header p {
    color: #a0a0a0;
    font-size: 14.5px;
}

.advertisements .items .item .inner_header .btn_link {
    background-color: transparent;
    border: none;
}

.partners {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0px;
}

.partners div {
    width: 24%;
}

.partners div img {
    width: 100%;
    height: 100%;
    margin: 0px auto;
}

.footer_header {
    background-image: url(../static/images/img/bg_services.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 145px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #002c96;
}

.footer_header .info_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer_header .info_row .info {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_header .info_row .info p {
    font-size: 14.5px;
}

.footer_header .info_row .info img {
    width: 24px;
    height: 24px;
    margin-right: 20px;
}

.links_sect {
    background-color: #002c96;
    padding: 42px 0px;
}

.links_sect .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.links_sect .links ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 33%;
}

.links_sect .links ul li {
    margin: 8px 0px;
}

.links_sect .links ul li a {
    font-size: 14.5px;
}

.copyright {
    background-color: #000f34;
    padding: 12px 0px;
}

.copyright .inner {
    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;
}

.copyright .inner div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
}

.copyright .inner a {
    text-decoration: underline;
    margin-left: 20px;
}

.about_page {
    padding: 50px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about_page .main_colum {
    width: 72.4%;
}

.about_page .main_colum .sect_1 {
    margin-bottom: 70px;
}

.about_page .main_colum .sect_1 h2 {
    font-size: 25px;
    font-family: boldFont;
    width: 60%;
    margin-bottom: 50px;
}

.about_page .main_colum .sect_1 p {
    font-size: 14.5px;
    margin-bottom: 20px;
    color: #000;
}

.about_page .main_colum .sect_2 {
    margin-bottom: 70px;
}

.about_page .main_colum .sect_2 h2 {
    font-size: 25px;
    font-family: boldFont;
    width: 60%;
    margin-bottom: 50px;
}

.about_page .main_colum .sect_2 .punk_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about_page .main_colum .sect_2 .punk_div .punk {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.about_page .main_colum .sect_2 .punk_div .punk span {
    background-color: #00a6ff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: block;
}

.about_page .main_colum .sect_2 .punk_div .punk p {
    font-size: 14.5px;
    color: #000;
    margin: 0px;
    width: 85%;
}

.about_page .main_colum .sect_3 .description {
    font-size: 14.5px;
    color: #000;
    margin-bottom: 50px;
}

.about_page .main_colum .sect_3 .punk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.about_page .main_colum .sect_3 .punk span {
    background-color: #00a6ff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: block;
}

.about_page .main_colum .sect_3 .punk p {
    font-size: 14.5px;
    color: #000;
    margin: -5px 0px 10px 0px;
    width: 90%;
}

.about_page .main_colum .more_info {
    color: #002c96;
    text-decoration: underline;
}

.about_page .sidebar {
    width: 22.4%;
}

.about_page .sidebar .title {
    width: 100%;
    background-color: #002c96;
    height: 65px;
    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;
}

.about_page .sidebar .title h2 {
    margin: 0px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: boldFont;
}

.about_page .sidebar .news_sidebar {
    margin-top: 20px;
    border-bottom: 1px solid #e2e5e7;
    padding-bottom: 10px;
    display: block;
}

.about_page .sidebar .news_sidebar .img_news {
    width: 100%;
    height: 170px;
    position: relative;
}

.about_page .sidebar .news_sidebar .img_news img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: contrast(1.1);
    filter: contrast(1.1);
}

.about_page .sidebar .news_sidebar .date {
    margin: 10px 0px 4px 0px;
    color: #a0a0a0;
    font-size: 14.5px;
    display: block;
}

.about_page .sidebar .news_sidebar .description {
    color: #000;
    font-size: 17.5px;
    font-family: boldFont;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.about_page .sidebar .more_news {
    color: #002c96;
    margin-top: 10px;
    display: block;
    text-decoration: underline;
}

.news_in_page .news_in_sect1 h2 {
    font-size: 20px;
    font-family: boldFont;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.news_in_page .news_in_sect1 .main_image {
    width: 100%;
    height: 540px;
    position: relative;
}

.news_in_page .news_in_sect1 .main_image img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news_in_page .news_in_sect1 .date {
    color: #a0a0a0;
    font-size: 14.5px;
    margin: 20px 0px;
    display: block;
}

.news_in_page .news_in_sect1 .title_news {
    color: #000;
    font-family: boldFont;
    font-size: 20px;
    margin-bottom: 20px;
}

.news_in_page .news_in_sect1 .content {
    color: #000;
    font-size: 14.5px;
    margin-bottom: 20px;
}

.news_in_page .news_in_sect1 a {
    color: #007bff;
    text-decoration: none;
}

.news_in_page .news_in_sect1 a:hover {
    text-decoration: underline;
}

.news_in_page .news_in_sect1 p {
    color: #000;
    font-size: 14.5px;
    margin-bottom: 20px;
}

.news_in_page .news_in_sect2 {
    position: relative;
    margin-top: 50px;
}

.news_in_page .news_in_sect2 .slider_for {
    margin-bottom: 30px;
    visibility: hidden;
}

.news_in_page .news_in_sect2 .slider_for img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.news_in_page .news_in_sect2 .slider_nav .item {
    margin: 0px 20px 0px 0px !important;
}

.news_in_page .news_in_sect2 .slider_nav .item img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.news_in_page .news_in_sect2 .shadow_slider {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100px;
    height: 100px;
    z-index: 10;
    -webkit-box-shadow: inset -125px 0px 30px -50px #fff;
    box-shadow: inset -125px 0px 30px -50px #fff;
}

.news_in_page .sidebar {
    margin-top: 74px;
}

.contact_form {
    margin: 50px 0px;
}

.contact_form .title {
    font-size: 20px;
    font-family: boldFont;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contact_form .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f6f7f7;
    height: 400px;
}

.contact_form .form .info_col {
    width: 32%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #002c96;
}

.contact_form .form .info_col .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact_form .form .info_col .info:not(:last-child) {
    margin-bottom: 30px;
}

.contact_form .form .info_col .info p {
    font-size: 14.5px !important;
}

.contact_form .form .info_col .info p:first-child {
    font-family: boldFont;
}

.contact_form .form .info_col .info img {
    width: 24px;
    height: 24px;
    margin-right: 25px;
    margin-top: 3px;
}

.contact_form .form form {
    width: 68%;
    padding: 0px 40px;
    font-size: 16.5px !important;
}

.contact_form .form form textarea {
    width: 100%;
    border: 1px solid #d4d4d4;
    height: 160px;
    border-radius: 2px;
    padding: 20px;
    resize: none;
    font-size: 17px !important;
    margin-bottom: 22px;
}

.contact_form .form form textarea:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact_form .form form textarea::-webkit-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form textarea:-ms-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form textarea::-ms-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form textarea::placeholder {
    color: #d4d4d4;
}

.contact_form .form form .inputs {
    width: 100%;
    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: 17px 0px !important;
}

.contact_form .form form .inputs input:focus {
    outline: none;
    box-shadow: none;
}

.contact_form .form form .inputs input {
    /*width: 48%;*/
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    resize: none;
    height: 50px;
}

.contact_form .form form .inputs .form-group {
    width: 48%;
    position: relative;
}

.contact_form .form form .inputs input::-webkit-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form .inputs input:-ms-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form .inputs input::-ms-input-placeholder {
    color: #d4d4d4;
}

.contact_form .form form .inputs input::placeholder {
    color: #d4d4d4;
}

.contact_form .form form .send_btn {
    margin-top: -10px;
    border: none;
    border-radius: 2px;
    background-color: #f15642;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 160px;
    height: 40px;
    line-height: 38px;
}

.contact_form .form form .send_btn:hover {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.map_contact {
    height: 400px;
    width: 100%;
}

.map_contact iframe {
    width: 100%;
    height: 100%;
}

.news_blog_header {
    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: 50px 0px;
}

.news_blog_header .title {
    font-family: boldFont;
    font-size: 20px;
    text-transform: uppercase;
}

.news_blog_header .date .btn_remove {
    position: absolute;
    right: 7px;
    top: 5px;
    background-color: #fff;
    padding: 0px;
    border: 0px;
    width: 23px;
    height: 23px;
    z-index: 2;
    display: none;
}

.news_blog_header .date .btn_remove img {
    width: 70%;
    height: 70%;
    position: static !important;
}

.news_blog_header .date {
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    background-color: transparent;
    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;
    width: 138px;
    height: 36px;
    position: relative;
    padding: 0px 8px;
}

.news_blog_header .date input {
    background-color: transparent;
    border: none;
    width: 100%;
    font-size: 14.5px;
    color: #959595;
}

.news_blog_header .date img {
    width: 20px;
    height: 22px;
    position: absolute;
    right: 9px;
    top: 5.5px;
}

.news_blog_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news_blog_main .item {
    width: 350px;
    display: block;
    margin-bottom: 50px;
}

.news_blog_main .item:hover .text {
    color: #002C96;
}

.news_blog_main .item:not(:nth-child(3n + 3)) {
    margin-right: 45px;
}

.news_blog_main .item .img {
    position: relative;
    width: 100%;
    height: 230px;
}

.news_blog_main .item .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

.news_blog_main .item .date {
    color: #a0a0a0;
    margin-top: 15px;
}

.news_blog_main .item .text {
    -webkit-transition: .3s;
    transition: .3s;
    color: #000;
    font-size: 17.5px;
    overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.licence-form .control-label {
    font-size: 16.5px !important;
}

.pagination {
    margin: 50px 0px;
    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;
}

.pagination a {
    display: block;
    padding: 0px;
    margin: 0px 2px;
    font-size: 14.5px;
    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: 16px;
    height: 20px;
    color: #959595;
    border-radius: 0px;
}

.pagination li {
    margin: 0px 4px;
}

.pagination .prev,
.pagination .next {
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 20px;
}

.pagination .prev::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #fff;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.pagination .prev::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../static/images/icons/pagin_left_icn.svg);
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.pagination .next::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #fff;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.pagination .next::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../static/images/icons/pagin_right_icn.svg);
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.pagination a img {
    width: 50%;
    height: 50%;
}

.pagination .active {
    color: black;
    position: relative;
}

.pagination .active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #00a6ff;
    border-radius: 1px;
}

.regulation_page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 50px 0px;
}

.regulation_page .main {
    width: 75%;
}

.regulation_page .main .title {
    font-size: 20px;
    font-family: boldFont;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.regulation_page .main .pdf_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e2e5e7;
    padding-bottom: 15px;
}

.regulation_page .main .pdf_item .icn_mobile {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0px 0px 40px 10px;
}

.regulation_page .main .pdf_item .icn_mobile img {
    width: 40px;
    height: 40px;
}

.regulation_page .main .pdf_item .icn_mobile span {
    font-size: 11px;
    color: #a0a0a0;
    margin-left: 10px;
}

.regulation_page .main .pdf_item:not(:last-child) {
    margin-bottom: 15px;
}

.regulation_page .main .pdf_item .icn {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 25px 10px 0px;
}

.regulation_page .main .pdf_item .icn img {
    width: 40px;
    height: 40px;
}

.regulation_page .main .pdf_item .icn span {
    font-size: 11px;
    color: #a0a0a0;
    margin-top: 5px;
}

.regulation_page .main .pdf_item .link a {
    color: #002c96;
    font-size: 17.5px;
}

.regulation_page .main .pdf_item .link a:hover {
    text-decoration: underline;
    color: #002c96 !important;
}

.regulation_page .main .pdf_item .link .size_pdf {
    display: block;
    color: #a0a0a0;
    font-size: 16.5px !important;
}

.contact_form .form form textarea {
    font-size: 16.5px !important;
}

.regulation_page .sidebar_parent {
    width: 22%;
    position: relative;
    overflow: hidden;
    max-height: 1482px;
}

.regulation_page .sidebar_parent .overflow {
    -webkit-box-shadow: inset 0px -121px 28px -77px #002c96;
    box-shadow: inset 0px -121px 28px -77px #002c96;
    height: 100px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.regulation_page .sidebar_parent .sidebar_header {
    text-transform: uppercase;
    background-color: #002c96;
    padding: 12px;
}

.regulation_page .sidebar_parent .sidebar_header .title {
    color: #fff;
    font-size: 20px;
    font-family: boldFont;
}

.regulation_page .sidebar_parent .sidebar_header a {
    font-size: 14.5px;
    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;
    width: 90%;
}

.regulation_page .sidebar_parent .sidebar_header a svg path {
    fill: #00a6ff;
}

.regulation_page .sidebar_parent .sidebar {
    background-color: #002c96;
    padding: 12px;
    overflow: scroll;
    height: 95%;
    padding-bottom: 30px;
}

.regulation_page .sidebar_parent .sidebar::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(255, 255, 255, 0.3);
}

.regulation_page .sidebar_parent .sidebar::-webkit-scrollbar-thumb {
    background: #00a6ff;
}

.regulation_page .sidebar_parent .sidebar .sidebar_item {
    margin-top: 15px;
    border-bottom: 1px solid #fff;
    display: block;
    padding-bottom: 15px;
}

.regulation_page .sidebar_parent .sidebar .sidebar_item .item_title {
    text-transform: uppercase;
    font-size: 12px;
    color: #00a6ff;
}

.regulation_page .sidebar_parent .sidebar .sidebar_item .content {
    color: #fff;
    font-size: 17.5px;
    margin: 5px 0px;
}

.regulation_page .sidebar_parent .sidebar .sidebar_item .date {
    color: #fff;
    opacity: 0.3;
    font-size: 14.5px;
}

.regulation_page .content {
    margin-top: 40px;
}

.regulation_page .content p {
    color: #000;
    font-size: 14.5px;
    margin-bottom: 20px;
}


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


/*** By Developer ***/

.contact_form .help-block {
    color: #ff0032;
    font-size: 10px;
    position: absolute;
    bottom: -18px;
    left: 0px;
    width: 100%;
}

.alert-dismissable .close,
.alert-dismissible .close {
    right: 0;
}

.form input,
.form textarea {
    font-size: 15px;
}

.contact_form .form-group {
    position: relative;
}

.contact_form .form form .inputs {
    margin-bottom: -5px;
}

.login_row .form-group {
    margin-bottom: 0;
}

.login_row #login-form {
    display: flex;
}

.login_row .field-loginform-username,
.login_row .field-loginform-password {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    margin-left: 5px;
    margin-right: 5px;
}

.login_row .submitBtn {
    width: 150px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: 17.5px;
    margin-left: 5px;
    margin-right: 5px;
}

.login_row p.help-block {
    font-size: 12px;
    position: absolute;
    z-index: 999;
    bottom: -19px;
    left: 0;
}

.result-not---found {
    display: none;
}

.anchor___logout {
    font-size: 17.5px;
}

#snackbar-login {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
    background: #002c96;
    padding: 16px 40px;
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

.show {
    visibility: visible !important;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}


/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

.slick-initialized {
    visibility: visible !important;
}


/*** /By Developer ***/

.banner-covid {
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 5px;
    width: 200px;
    height: 70px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.75);
}

.banner-covid img {
    border-radius: 5px;
}

.banner-covid .close-div {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 5px;
    right: 5px;
    z-index: 2;
    cursor: pointer;
}

.banner-covid .close-div:before {
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: rotate(45deg);
}

.banner-covid .close-div:after {
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: rotate(-45deg);
}

.exam-register-form .help-block,
.licence-form .help-block {
    color: red;
    font-size: 13px;
    margin-left: 5px;
}

.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 1200px) {
    .active_down_menu {
        font-size: 13px;
    }
}

.time-selector label {
    text-align: center;
    background: lightblue;
    border-radius: 20px;
    width: 100px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    cursor: pointer;
}

.time-selector input {
    display: none;
}

.time-selector input[type='radio']:checked+label {
    background: #0b93d5;
}

.select-time-container .times-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px 0;
}

#banner-238 {
    width: 270px;
    filter: grayscale(100%);
    opacity: 0.6;
}

#banner-238:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#banner-239 {
    width: 190px;
    filter: grayscale(100%);
    opacity: 0.6;
}

#banner-239:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#banner-240 {
    width: 150px;
    opacity: 0.6;
}

#banner-240:hover {
    opacity: 1;
}

#banner-241 {
    width: 210px;
    filter: grayscale(100%);
    opacity: 0.6;
}

#banner-241:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#langregisteredexam-id_fin{
    text-transform: uppercase;
}
.hided{
    display: none;
}