/* Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* Figtree */
/* Thin - 100 */
@font-face {
    font-family: 'Figtree Th';
    font-weight: 100;
    src: url('../fonts/new/Figtree-Light.woff2') format('woff2'),
        url('../fonts/new/Figtree-Light.woff') format('woff');
    font-display: swap;
}

/* Light - 300 */
@font-face {
    font-family: 'Figtree Alt Lt';
    font-weight: 300;
    src: url('../fonts/new/Figtree-Light.woff2') format('woff2'),
        url('../fonts/new/Figtree-Light.woff') format('woff');
    font-display: swap;
}

/* Regular - 400 */
@font-face {
    font-family: 'Figtree Rg';
    font-weight: 400;
    src: url('../fonts/new/Figtree-Regular.woff2') format('woff2'),
        url('../fonts/new/Figtree-Regular.woff') format('woff');
    font-display: swap;
}

/* Semibold - 600 */
@font-face {
    font-family: 'Figtree Lt';
    font-weight: 600;
    src: url('../fonts/new/Figtree-SemiBold.woff2') format('woff2'),
        url('../fonts/new/Figtree-SemiBold.woff') format('woff');
    font-display: swap;
}

/* Bold - 700 */
@font-face {
    font-family: 'Figtree Rg';
    font-weight: 700;
    src: url('../fonts/new/Figtree-Bold.woff2') format('woff2'),
        url('../fonts/new/Figtree-Bold.woff') format('woff');
    font-display: swap;
}

/* Extrabold - 900 */
@font-face {
    font-family: 'Figtree Th';
    font-weight: 700;
    src: url('../fonts/new/Figtree-ExtraBold.woff2') format('woff2'),
        url('../fonts/new/Figtree-ExtraBold.woff') format('woff');
    font-display: swap;
}

/* Paleta de culori */
:root {
    --primary_color: #012659;
    --secondary_color: #FDA127;
    --orange_arrow_color: #FCB967;
    --third_color: #6B90E8;
    --fourth_color: #fdd3a0;
    --body_color: #012659;
    --hover_secondary_color: #e09129;
    --hover_orange_light: #ffedd7;
    --green_color: #64c09e;
    --light_green_color: #88d8bd;
    --red_color: #ff6969;
    --light_red_color: #ff8f8f;
    --yellow_color: #ffb325;
    --light_gray:#F9F9F9;

}

/* *********************************************** */

/* ******************* GENERAL ******************** */

/* *********************************************** */

body {
    margin: 0;
    color: #012659;
    line-height: 1.2;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Figtree Rg';
    font-weight: 400;
    font-size: 16px;
}
body.overflow_hidden_1{
    overflow: hidden;
}
body.overflow_hidden_2{
    overflow: hidden;
}
@keyframes pageFadeIn {
    from { opacity:0; }
    to { opacity:1; }
  }
  
  body {
    opacity:0;
    animation:pageFadeIn ease-in 1;
    animation-fill-mode:forwards;
    animation-duration:0.15s;
    animation-delay: .1s
  }

html {
    scroll-behavior: smooth;
}

body,
html {
    /* overflow-x: hidden; */
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0px;
}

a {
    text-decoration: none;
    color: var(--body_color);
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.green_color {
    color: var(--green_color);
}

.red_color {
    color: var(--red_color);
}
/* .  {
    color: var(--secondary_color) !important;
} */

.yellow_color {
    color: var(--yellow_color);
}
.blue_color{
    color: var(--third_color);
}

.bg_red {
    background-color: var(--red_color) !important;
}

.bg_green {
    background-color: var(--green_color) !important;
}

.bg_light_green {
    background-color: var(--light_green_color) !important;
}

.bg_light_red {
    background-color: var(--light_red_color) !important;
}

.container::before,
.row::before,
.row::after,
.container::after {
    display: none !important;
}

.bg_dark_blue {
    background-color: #012659;
}

.bg_light_gray {
    background-color:var(--light_gray) ;
}

.bg_light_gray_1 {
    background-color: #fffefc;
}

.bg_white {
    background-color: #ffffff;
}

.bg_light_yellow {
    background-color: #fffbf6 !important;
}

.bg_orange {
    background-color: var(--secondary_color);
}

.bg_orange .arrow {
    background-color: var(--orange_arrow_color);
}

.bg_green .arrow {
    background-color: var(--light_green_color);
}

.bg_red .arrow {
    background-color: var(--light_red_color);
}

.bg_red:hover .arrow {
    color: var(--light_red_color);
}

.bg_green:hover .arrow {
    color: var(--green_color);
}

.bg_orange:hover .arrow {
    color: var(--secondary_color);
}

.w_50 {
    max-width: 70px !important;
}

.bld {
    font-weight: 700;
}

.center_elem {
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop_shadow {
    filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.161));
}

.shadow {
    -webkit-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    -moz-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
}

.checkbox {
    margin: 8px auto;
}

input[type="checkbox" i],
input[type="radio" i] {
    width: 18px;
    height: 18px;
    border: 1px solid var(--bs-border-color);
    border-radius: 5px;
    accent-color: var(--third_color);
    margin-right: 6px;
}

.wrapper {
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
}

.space30 {
    margin: 0;
    padding: 0;
    height: 30px;
    background-color: transparent;
    display: block;
}

.text_intr {
    font-weight: 700;
    font-size: 22px;
}

.text_intr span {
    color: var(--secondary_color);
}

.two_lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.three_lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text_bg {
    padding: 6px 16px;
    background-color: #091122ad;
    border-radius: 45px;
}

/* Stilizare Meniu */
.container_menu {
    z-index: 100;
    top: 0;
}

.dd_group {
    padding: var(--bs-nav-link-padding-y) var(--bs-navbar-nav-link-padding-x);
}

.navbar_collapse {
    flex-direction: column;
}

.lang {
    background-color: var(--secondary_color);
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 12px;
    color: #FFF !important;
    font-weight: 600;
}

.navbar_collapse .header_desk_top {
    background-color: var(--primary_color);
    padding: 10px 0;
}

.header_top_nav .ls_links {
    display: flex;
}

.header_top_nav .dd_main {
    color: #FFF !important;
}

.ls_links .header_top_item a {
    display: flex;
    align-items: center;
}

.header_top_item.center_elem {
    align-items: flex-start;
}

.header_top_nav .header_top_item a,
.dd_group {
    color: #FFF;
    font-size: 12px;
    text-align: center;
}

.header_top_nav .top_dd_item {
    color: var(--body_color);
    font-size: 13px;
}

.header_top_nav .header_top_item .top_dd_item {
    text-align: left;
}

.top_dd_item {
    white-space: normal;
}
.header_top_nav .top_dd_item {
    color: var(--body_color) !important;
    font-size: 12px;
}
.header_main_nav .top_dd_item {
    font-family: 'Figtree Rg' !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.top_dd_item:hover {
    background-color: var(--secondary_color);
    color: #FFF !important;
}

.dropdown-divider {
    border-color: var(--bs-border-color);
}

.dd_toggle::after {
    display: none;
}

.angle {
    transition: all 0.2s ease-in-out;
    margin-left: 5px;
}

.dd_toggle.show .angle {
    transform: rotate(180deg);
}

.user_icon i:first-child, .menu_orders i{
    font-size: 20px !important;
}

.user_header .user_links i {
    font-size: 10px;
}


.dd_menu {
    border: none !important;
}

/* Main meniu */
.header_main_nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}

.header_main_nav form {
    width: 20%;
}

.header_main_nav .main_search {
    border-color: var(--bs-border-color);

}
.books_page .main_search{
    padding: 10px 70px 10px 20px;
}
.header_main_nav form .search_item {
    width: 34px;
    height: 34px;
    top: 3px;
    right: 3px;
}

.header_main_nav form .search_item svg {
    height: 16px;
}

a.logo_section {
    display: flex;
    align-items: center;
}

a.logo_section img {
    width: 48px;
}

a.logo_section {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
}

.header_main_nav .main_nav a {
    color: var(--body_color);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Playfair Display';
}

.header_main_nav .main_nav .dd_group, 
.header_main_nav .main_nav .header_top_item {
    /* position: relative; */
}
.header_main_nav .main_nav .dd_group::after
{
    position: absolute;
    left: 0;
    content: '';
    background-color: var(--secondary_color);
    top: 8px;
    height: calc(100% - 15px);
    width: 2px;
    opacity: 0.4;
    display: block;
}
.nav_toogler_mob {
    border: none;
    padding: 0;
    outline: none;
}

.nav_toogler_mob:focus {
    box-shadow: none;
}

.nav_toogler_mob span:focus-visible {
    outline: var(--secondary_color) auto 1px !important;
}

.mob_header form {
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.header_normal_page .header_main_nav .nav-item a {
    color: #FFF;
}

/* Sfarsit stilizare meniu */
/* Stilizare footer */
.footer_padding {
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 20;
    position: relative;
}

.main_footer {
    position: relative;
}

.main_footer .footer_layer {
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 324px;
}

.partners_logos a {
    width: 120px;
    margin: 10px;
}

.home_partners a{
    width:150px;
}

.home_partners img{
    border-radius: 8px;
}

.partners_logos img {
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.footer_lefts {
    color: #FFF;
}

.footer_lefts a {
    color: #FDA127;
}

.footer_rights a,
.down_ls_footer a {
    color: #FFF;
    font-size: 16px;
    line-height: 1.5rem;
    width: fit-content;
}

.footer_rights .main_link {
    color: #FDA127;
    font-size: 18px;
}


.footer_lefts img {
    width: 44px;
    margin-right: 7px;
}

.footer_lefts p {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.3rem;
}

.footer_icons svg {
    display: block;
    width: 30px;
}

.footer_cookies P {
    color: #FFF;
}

.footer_cookies .extra_link a {
    color: var(--fourth_color);
}

.home_footer .footer_padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.years_info_wrap {
    width: 100%;
    border-radius: 6px;
    background-color: #FFF;
    padding: 10px;
}

.footer_years_pos{
    z-index: 40;
    position: absolute;
    top: -70px;
    left: 0;
}

.years_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.f_info {
    padding: 16px;
    position: relative;
    width: 20%;
    margin: 5px 0;
}

.f_info::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    background-color: #6B90E8;
    height: 70%;
    width: 1px;
    display: block;
    opacity: 0.4;
}

.home_years_sec .f_info::after {
    background-color: var(--secondary_color);
}

.f_info:last-child::after {
    display: none;
}

.f_info .info_title {
    font-weight: 700;
    font-size: 20px;
    color: var(--third_color);
}
.home_years_sec .f_info .info_title{
    color: var(--secondary_color);
}

.f_info .info {
    text-align: center;
    margin-top: 10px;
}

.footer_cookies .extra_link {
    color: var(--fourth_color);
    margin-left: 4px;
}

/* Stiluri generale pentru sectiuni Homepage */

.new_sec {
    padding: 90px 0;
}

.new_sec h2 {
    font-weight: 700;
    position: relative;
    text-align: center;
}

.new_sec h2::after,
.upside_page h1::after {
    position: absolute;
    bottom: -12px;
    left: 15%;
    background-color: #FDA127;
    content: '';
    display: block;
    width: 70%;
    height: 3px;
}

.upside_page h1::after {
    left: 0;
}


/* Stiluri generaale pentru sectiuni noutati/ evenimente HomePage  */
/* Inceput */
.new_sec .row_articles {
    margin-top: 50px;
}

.row_articles .article_wrap {
    background-color: #FFF;
    padding: 24px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    -moz-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 100px auto 0;
    transition: transform .2s ease-in;
}

.row_articles .article_wrap:hover,
.action_wrap:hover {
    transform: scale(1.1);
}

.article_wrap .article_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.article_wrap .article_content img {
    width: 100%;
    border-radius: 8px;
    margin-top: -70px;
    margin-bottom: 20px;
    object-fit: cover;
}

.article_content iframe {
    max-width: 100%;
}

.article_wrap .article_content h5,
.action_wrap .action_content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    height: 42px;
    overflow-y: hidden;
}

.article_wrap .article_content h5 a,
.action_wrap .action_content h5 a {
    color: #012659;
}

.action_wrap .action_content p {
    margin-bottom: 20px;

}

.info_auth_art {
    font-size: 14px;
    opacity: 0.8;
}

.art_first_part,
.article_content p {
    margin-bottom: 20px;
}

.article_content p,
.action_content p {
    font-size: 15px;
    line-height: 1.4rem;
    height: 64px;
    overflow-y: hidden;
}

.content_page .article_content p {
    height: auto;
    overflow-y: unset;
}

.see_news a {
    color: #FDA127;
    font-weight: 700;
    transition: all 0.3s ease-in;
}

.see_news a svg {
    width: 18px;
    height: auto;
}

.see_news a:hover {
    color: #e09129;
}

.see_news span {
    margin-right: 5px;
}

/* Sfarsit stilizare  sectiuni noutati/ evenimente HomePage*/

/* Stilizare Despre Barou */
.about {
    padding: 120px 0 80px;
}

.about h2, .about_dean .rights h2 {
    font-size: 36px;
    line-height: 3rem;
}

.about h2::after {
    left: 0;
    width: 44%;
}

.about .ab_content {
    margin: 40px 0;
}


.about .ab_content p {
    margin-bottom: 8px;
    line-height: 1.6rem;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Figtree Alt Lt';
}

.about .about_rs img {
    width: 70%;
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 10;
}

.about .about_rs {
    position: relative;
}


.about .about_rs .justice_wrap img {
    width: 60%;
    position: relative;
    z-index: 10;
}

.about .about_rs .justice_wrap {
    position: absolute;
    top: -19%;
    left: 10%;
}

.ab_lines,
.ab_lines_top {
    position: absolute !important;
    width: 90px !important;
    z-index: 8 !important;
}

.ab_lines {
    top: 83%;
    left: -12%;
}

.ab_lines_top {
    top: -26%;
    right: 4%;
}


.about .about_years_info {
    background-color: #FFF;
    -webkit-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    -moz-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    width: fit-content;
    padding: 14px;
    border-radius: 8px;
    color: #FFF;
    position: absolute;
    top: 73%;
    right: 0;
    z-index: 12;
}

.about_years_info .icon_wrap {
    padding: 8px;
    border-radius: 8px;
}

.about_years_info .icon_wrap svg {
    width: 36px;
    height: auto;
}

.about_years_info .year_info_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    border-radius: 9px;
    transition: transform .2s ease-in;
}

.about_years_info .year_info_wrap:hover {
    transform: scale(1.03);
}

.about_years_info .year_info_wrap .rs_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    text-align: center;
}

.about_years_info .year_info_wrap .rs_info .ab_year {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 6px;
}

/* Stilizare sectiune Decan */
.about_dean {
    padding: 90px 0 110px 0;
}

.about_dean .dean_img {
    position: relative;
    z-index: 16;
    width: 100%;
    max-width: 340px;
}

.about_dean .dean_img img {
    border-radius: 7px;
    position: relative;
    z-index: 16;
    width: 100%;
}

.about_dean .dean_img::after {
    position: absolute;
    background-color: var(--secondary_color);
    width: 84%;
    height: 84%;
    top: -10px;
    left: -10px;
    display: block;
    content: '';
    z-index: 10;
    border-radius: 4px;
}

.about_dean .dean_quote {
    position: absolute;
    right: -30%;
    bottom: -30%;
    z-index: 20;
}

.about_dean .dean_quote_content {
    background-color: #FFF;
    padding: 40px 10px 10px 10px;
    width: 350px;
    color: #6E6E6E;
    line-height: 1.4rem;
    border-radius: 6px;
    position: relative;
}

.about_dean .dean_quote_content img {
    position: absolute;
    top: 4%;
    opacity: 0.7;
    width: 24px;
}

.about_dean .dean_quote_content .name {
    display: flex;
    flex-direction: column;
    margin-top: 14px;
}

.about_dean .dean_quote_content .name span:first-child {
    font-size: 18px;
}

.about_dean .dean_quote_content .name span:nth-child(2) {
    font-size: 14px;
}

.about_dean .rights {
    color: #FFF;
}

.about_dean .rights h2 {
    position: relative;
}

.about_dean .rights h2::after {
    position: absolute;
    background-color: #FDA127;
    width: 40px;
    height: 3px;
    content: '';
    top: 0;
    left: 0;
}

.about_dean .rights .content p:first-child {
    margin-bottom: 20px;
}

.about_dean .rights .content {
    line-height: 1.4rem;
    margin: 40px 0;
}

/* Stilizare zona de Actiuni */

.action_wrap {
    background-color: #FFF;
    -webkit-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    -moz-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    border-radius: 8px;
    width: 90%;
    transition: transform .2s ease-in;
    margin: 20px auto;
}



.action_content {
    padding: 24px;
}

.action_wrap img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    height: 180px;
    object-fit: cover;
}

.action_wrap .action_content h5 {
    margin-bottom: 20px;
}

/* Stilizare zona de cautari sub carusel */
.search_wrap {
    padding: 16px;
    background-color: #FFF;
    /* -webkit-box-shadow: 0px 7px 24px 0px rgba(111,109,119,0.12);
	-moz-box-shadow: 0px 7px 24px 0px rgba(111,109,119,0.12);
	box-shadow:0px 7px 24px 0px rgba(111,109,119,0.12); */
    filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.161));
}

.row_articles .search_wrap {
    width: 60%;
    border-radius: 40px;
}

.main_search {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    border: 1px solid #dee2e6;
    padding: 10px 70px 10px 20px;

}

.main_search::placeholder {
    color: #ACB3BE;
}

.main_search:focus {
    outline: 1px solid #ffd5a1;
    border-color: transparent;
}

.search_wrap form,
.first_line_filter form,
.header_main_nav form {
    position: relative;
}

.search_item {
    position: absolute;
    background-color: #FDA127;
    border: none;
    height: 30px;
    width: 54px;
    text-align: center;
    border-radius: 40px;
    right: 5px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.search_item i {
    font-size: 18px;
    color: #FFF;
}

/* Stilizare Carusel Header HomePage  */
.slide_desc{
    height: 128px;
    overflow-y: hidden;
    margin: 70px 0;
    color: #FFF;
}

.slide_desc strong, .slide_desc span, .slide_desc div, 
.slide_desc p, .slide_desc ul, .slide_desc li, .slide_desc a{
    color: #FFF !important;
    font-size: 16px !important;
    line-height: 1.6rem !important;
}
.carousel_header{
    height: 640px;
}
.carousel_header {
    /* margin-top: 75px; */
}
.header_normal_page {
    margin-top: 150px;
}

.carousel_inner_header {
    height: 100%;
    z-index: 2;
}

.car_indicators_header,
.car_next_header {
    z-index: 30;
}

.carousel_bg {
    position: relative;
    width: 100%;
}

.carousel_bg .car_img_bg {
    width: 100%;
    height: 640px;
    object-fit: cover;
    /* background-image: url(images/layer_carusel_all.png); */
}

.carousel_img_wrapp {
    position: relative;
}

.carousel_img_wrapp::after {
    content: '';
    position: absolute;
    background: url(../images/new/layer_carusel_all.png);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.car_img_layer_all {
    position: absolute;
    top: 0;
    left: 0;
}

.car_img_layer_right {
    position: absolute;
    right: 0;
}

.content_slide_wrapp {
    position: absolute;
    left: 0;
    z-index: 20;
    display: block;
    top: 0;
    color: #FFFF;
    width: 100%;
}

.content_slide {
    width: 84%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_slide h2 {
    font-size: 44px;
}

.car_indicators_header button {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50%;
    border: 1px solid #FDA127 !important;
}

.car_indicators_header .active {
    position: relative;
}

.car_indicators_header [data-bs-target] {
    opacity: 1 !important;
}

.car_indicators_header .active::after {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FDA127;
    content: "";
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

.car_next_header {
    height: fit-content;
    opacity: 1 !important;
    top: 45%;
    z-index: 6;
}

.car_next_icon_header {
    width: 3rem !important;
    height: 3rem !important;
}

/* Sfarsit Stilizare Carusel HomePage */

/* Inceput stilizare chenare de Cautare HomePage */
.row_top {
    margin-top: 30px;
}

.profile_body .row_top {
    padding: 40px 0;
    margin-top: 0;
}

.user_data.row_top {
    padding-top: 20px;
}

.grid_search_boxes {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    grid-column-gap: 3.5%;
    grid-row-gap: 24px;
}

.search_box {
    background-color: #FFF;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.profile_body .search_box {
    min-height: 210px;
}

.header_box,
.search_box .content p {
    text-align: center;
}

.header_box svg {
    width: 44px;
    height: 44px;
    fill: var(--third_color);
    margin-bottom: 10px;
}

.header_box svg path,
.header_box svg rect {
    stroke: var(--third_color);
}

.search_box .content {
    margin: 30px auto;
    text-align: center;
}

.box_input {
    height: 40px;
    border-radius: 30px;
    border: 1px solid var(--secondary_color) !important;
    width: 100%;
    padding: 6px 16px;
}

.box_input:focus-visible {
    outline: none;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    height: 40px !important;
    border-radius: 30px !important;
    padding: 6px 20px;
    border: 1px solid var(--secondary_color) !important;
}

.search_box_wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(../images/new/accordion_arrow_active.svg) !important;
    border-color: transparent !important;
    border-style: none !important;
    border-width: 0 !important;
    width: 18px !important;
    height: 18px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent !important;
    border-width: none !important;
    transform: rotate(180deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0px !important;
    right: 21px !important;
    width: 20px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--secondary_color) !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-radius: 20px 20px 0 0 !important;
}

.select2-dropdown {
    border: 1px solid var(--secondary_color) !important;
    border-top-color: transparent !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #d2d4d8 !important;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 0 0 20px 20px;
    padding: 3px;
}

.select2-container--default .select2-results>.select2-results__options {
    padding-right: 3px;
}

.select2-container--default .select2-results__option[aria-selected=true]:last-child,
.select2-container--default .select2-results__option--highlighted[aria-selected]:last-child {
    border-radius: 0 0 0 20px;
}

.select2-results__option {
    padding: 6px 10px 6px 28px !important;
}

.dd_links_box button::after {
    display: none !important;
}

.dd_links_box button i {
    color: var(--secondary_color);
    font-size: 20px;
}

.dd_links_box ul {
    width: 100%;
}

.btn.show {
    border-radius: 20px 20px 0 0;
    /* border-bottom-color: transparent !important; */
}

.dd_links_box ul {
    inset: auto !important;
    position: absolute !important;
    top: 40px !important;
    transform: none !important;
    border-radius: 0 0 20px 20px;
    border-color: var(--secondary_color);
    border-top-color: transparent;
}

.dd_links_box .dd_item:focus,
.dd_links_box .dd_item:hover {
    color: #FFF !important;
    background-color: var(--secondary_color) !important;
}

.input_holder {
    position: relative;
}
.input_holder input[type="text"] {
    padding-right: 40px !important;
}

.input_holder .inp_search {
    background-color: var(--secondary_color);
    height: 34px;
    width: 34px;
    position: absolute;
    right: 3px;
    top: 3px;
    border: none;
    border-radius: 50%;
}

.input_holder .inp_search svg {
    width: 16px;
}

.profile_body .see_news {
    text-align: center;
}

.search_box .content ul {
    list-style: url(../images/new/checked.svg);
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 0 10px;
}

.search_box .content ul li {
    margin: 4px 16px;
}

.search_box .content ul span {
    color: var(--secondary_color);
    font-weight: 700;
}

/* Sfarsit stilizare chenare de Cautare HomePage */


/* Diverse componente Generale */
.see_more_btn {
    /* background-color: #FDA127; */
    width: 220px;
    padding: 8px;
    color: #FFF;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in;
}

.see_more_btn:hover {
    transform: scale(1.05);
}

.see_more_btn:hover .arrow {
    background-color: #FFF;
}

.see_more_btn:hover p {
    margin-bottom: 0;
}

.see_more_btn a,
.see_more_btn button {
    text-decoration: none;
    color: #FFF;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.see_more_btn button {
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
}

.see_more_btn p {
    text-align: center;
    font-weight: 700;
    width: calc(100% - 42px);
}

.see_more_btn .arrow {
    padding: 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.see_more_link {
    margin-top: 78px;
    font-weight: 700;
    margin-right: 69px;
    position: relative;
    padding: 0 0 5px 0;
}

a.see_more_link::after {
    position: absolute;
    content: '';
    display: block;
    background-color: var(--secondary_color);
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
}

/* Stilizare pagini */

/* Elemente generale pagini */
.gallery .gal_img {
    overflow-x: scroll;
    padding-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: var(--secondary_color) transparent;
    scrollbar-width: thin !important;
}

.gallery .gal_img::-webkit-scrollbar {
    width: 6px;
    height: 10px;
    cursor: pointer;
}

.gallery .gal_img::-webkit-scrollbar-track {
    background: transparent;
}

.gallery .gal_img::-webkit-scrollbar-thumb {
    background: var(--body_color);
    border-radius: 10px;
}

.gallery .gal_img a {
    margin: 0 10px;
}

.gallery img.img-responsive {
    max-width: 200px;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.button_second {
    color: var(--third_color);
    padding: 5px 0;
    background-color: transparent;
    width: auto;
    font-weight: 700;
}

.courses_tabs .detail_line,
.ins_curs .event_pres .detail_line {
    justify-content: start;
}

.wrapper .form_wrap {
    margin: 0;
}

.courses_tabs .nav-underline .nav-link {
    color: var(--body_color);
}

.page_body {
    background-color: #F9F9F9;
}

.page_body_content {
    padding: 60px 0 100px;
}

.min_height {
    min-height: 50vh;
}

.sections .wrapper {
    padding: 14px;
    border-radius: 8px;
}

.sections .accordion-button {
    padding: 0;
    color: var(--body_color) !important;
}

.sections .accordion-button:not(.collapsed),
.sections .accordion-button:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: transparent;
}

.sections .accordion-body {
    padding: 0;
    margin-top: 20px;
}

.sections .accordion-body a {
    width: auto;
    font-size: 18px;
    padding: 10px;
    border-radius: 4px;
}

.sections .accordion-body a:hover {
    background-color: var(--secondary_color);
    color: #FFF;
}

.sections .accordion-button {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Figtree Rg';
}

.sections .accordion-button:not(.collapsed) {
    color: var(--secondary_color) !important;
}

.sections .accordion-button:not(.collapsed)::after {
    background-image: url(../images/new/accordion_arrow_active.svg);
}

.sections .accordion-button:not(.collapsed) a{color: var(--secondary_color);}

.sections .accordion-button::after {
    width: 30px;
    height: 30px;
    background-size: 30px;
}

/* Stilizare formular */

/* Stilizare Resurse Descarcabile */


/* Pagina de Stire */

.header_img img {
    max-height: 560px;
    object-fit: cover;
    width: 100%;
    object-position: 50% 50%;
    border-radius: 6px;
}

.header_img {
    position: relative;
}

.header_img::after {
    position: absolute;
    content: '';
    background-image: url(../images/new/layer_img_stire.png);
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    display: block;
}

.sm_icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary_color);
    border-radius: 50%;
}

.sm_icon svg {
    height: 20px;
    max-width: 20px;
}

.upside_page h1 {
    /* color: var(--secondary_color); */
    position: relative;
}


.auth_page span:first-child {
    font-size: 18px;
    font-weight: 700;
}

.auth_page .data_pub_page {
    margin-top: 3px;
    display: flex;
    align-items: center;
}

.auth_page .data_pub_page svg {
    margin-right: 6px;
    width: 14px;
}

.auth_page .data_pub_page span {
    opacity: 0.7;
}

.content_page {
    padding: 36px 0;
}

.content_page .article_content {
    font-size: 16px;
}

.content_page .article_content p{
    height: auto;
    overflow-y: unset;
}

.content_page .article_content img {
    width: 600px;
    margin: 20px auto;
    max-width: 100%;
    display: block;
    border-radius: 3px;
}

.resources_content {
    padding: 20px;
    background-color: #FFF;
    border-radius: 8px;
}

.login .form_wrap .see_more_btn {
    margin-top: 0;
}

.form_wrap .form-control:focus,
.form_wrap .form-select:focus,
.page_content_suspend_saj input[type=text]:focus,
.page_content_saj form input[type=text]:focus,
.page_content_saj form textarea:focus {
    border-color: var(--fourth_color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(253 211 160 / 25%);
}

.small_article_dside {
    margin-top: 30px;
}

.small_article {
    border-radius: 8px;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
    width: 80%;
    margin-left: auto;
}

.small_article:last-child {
    margin-bottom: 0;
}

.small_article:hover {
    transform: scale(1.08);
}

.small_article img {
    margin: 0 0 20px;
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}


/* Sfarsit Stilizare Pagina */

/* Stilizare Pagina Normala (Tablou, Un Avocat, Tablouri */
.header_normal_page {
    position: relative;
}

.header_page_img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: 50% 50%;
}

.header_page_img::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-color: #04102b8a;
}

.content_header_page {
    /* position: absolute; */
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    color: #FFF;
    min-height: 280px;
    background-size: cover !important;
    display: flex;
    align-items: center;
    align-content: center;
}

.title_header_page {
    height: calc(100% - 1.2rem);
}

.title_header_page h1 {
    color: var(--secondary_color);
    text-align: center;
}

.content_ds_header_page {
    height: 100%;
    padding: 15px 0;
    z-index: 1;
}

.content_header_page::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-color: #04102b8a;
}

.content_ds_header_page .breadcrumbs {
    color: var(--fourth_color);
}

.content_ds_header_page .breadcrumbs i {
    color: #FFF;
    margin: 0 4px;
    font-size: 12px;
}

.content_ds_header_page h2 {
    text-align: center;
    font-size: 24px;
    margin-top: 30px;
    line-height: 2.1rem;
    font-weight: 400;
}

.content_ds_header_page h2.text_bg {
    border-radius: 14px;
}

.content_normal_page {
    margin-bottom: 40px;
}

.custom_content h2, .custom_content h3, 
.custom_content h4, .custom_content h5, .custom_content h6 {
    margin: 20px 0;
}

.custom_content img, .custom_content iframe {
    width: 100%;
    margin: 20px auto;
    max-width: 400px;
    object-fit: contain;
}

.content_normal_page .table_wrap_links {
    background-color: #FFF;
    border-radius: 8px;
}

.content_normal_page .table_wrap_links,
.resources_content {
    margin: 20px auto;
}

.form_wrap {
    margin: 36px auto;
}

.content_normal_page .form_wrap{
    margin-bottom: 0;
}
.form_wrap .see_more_btn{
    margin-top: 24px;
}

.table_link {
    font-weight: 700;
    font-size: 20px;
    padding: 24px;
    position: relative;
}

.table_link:first-child {
    border-radius: 8px 8px 0 0;
}

.table_link:last-child {
    border-radius: 0 0 8px 8px;
}

.table_link:hover {
    background-color: #ffbc64;
}

.table_link i {
    color: var(--secondary_color);
}

.table_link:hover .link_wrap, .table_link:hover i {
    color: #FFF;
}

.table_link::after {
    position: absolute;
    bottom: 0;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    content: '';
    display: block;
    background-color: var(--fourth_color);
    opacity: 0.4;
}

.table_link:last-child:after {
    display: none;
}

/* Sfarsit Stilizare Pagina Normala (Tablou, Un Avocat, Tablouri */


/* Inceput Stilizare Un Tablou */
.up_side_filter {
    margin-bottom: 50px;
}

.first_line_filter form {
    width: 70%;
}

.books_page .first_line_filter form {
    width: 83%;
}

.books_page .first_line_filter form select {
    width: 80px;
}

.results .value_res {
    font-weight: 700;
    color: var(--secondary_color);
}

.results span {
    font-size: 18px;
}

.see_all {
    padding: 10px 20px;
    color: #FFF;
    background-color: var(--secondary_color);
    border-radius: 30px;
    width: 25%;
    text-align: center;
}

.letters_wrap {
    width: 70%;
}

.filter_letters {
    display: grid;
    grid-template-columns: 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6% 6%;
    grid-column-gap: 0.5%;
    grid-row-gap: 2%;
    width: 100%;
    justify-content: end;
}

.filter_letters .letter {
    border: 1px solid #DADEE3;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
}

.letter_active {
    background-color: var(--secondary_color);
    border-color: var(--secondary_color) !important;
    color: #FFF;
}

.letter_active a {
    color: #FFF;
}

.user_debts .right_side_info,
.user_debts .see_news a {
    font-size: 18px;
}


.table_taxes .header,
.table_taxes .line {
    display: grid;
    grid-template-columns: 5% 42.5% 20% 25%;
    grid-column-gap: 2.5%;
}
.table_ordered_avs .line,.table_ordered_avs .header{
    grid-template-columns: 2% 34.5% 20% 25% 5% !important;
}

.table_orders .header,
.table_orders .line {
    display: grid;
    grid-template-columns: 2% 66% 11% 13%;
    grid-column-gap: 2.5%;
}

.table_taxes .header,
.table_lawyers .header,
.table_debts .header,
.table_orders .header,
.table_books_resulted .header, 
.table_user_books .header, .table_debts_file .header,
.table_eregs .header {
    background-color: var(--secondary_color);
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 14px 14px 0 0;
}

.table_books_resulted .line::after:last-child {
    display: none !important;
}

.table_lawyers .header {
    display: grid;
    grid-template-columns: 30% 65%;
    grid-column-gap: 5%;
}

.table_debts .header,
.table_debts .line {
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 19%;
    grid-column-gap: 1.25%;
}

.table_books_resulted .header,
.table_books_resulted .line {
    display: grid;
    grid-template-columns: 80% 16%;
    grid-column-gap: 4%;
}

.table_tax_cart .table_lines .line:hover {
    cursor: default !important;
}

.table_tax_cart .header,
.table_tax_cart .line {
    display: grid;
    grid-template-columns: 5% 45% 10% 8% 12% 10%;
    grid-column-gap: 2%;
}

.table_lines .table_lines {
    display: none;
}

.table_lines .header {
    border-radius: 0 0 14px 14px;
}

.table_lines ul {
    padding-left: 0;
    margin-bottom: 0;
}

.table_lawyers .table_lines,
.table_taxes .table_lines,
.table_debts .table_footer .table_lines,
.table_debts .table_lines,
.table_orders .table_lines,
.table_books_resulted .table_lines, .table_debts .table_footer .table_lines,
.table_user_books .table_lines, .table_debts_file .table_lines,
.table_eregs .table_lines {
    border: 1px solid #DADEE3;
    border-top-color: var(--secondary_color);
    /* background-color: #FFF; */
}

/* .table_lawyers .table_lines,
.table_taxes .table_lines,
.table_debts .table_footer .table_lines,
.table_orders .table_lines,
.table_books_resulted .table_lines,
.table_user_books .table_lines {
    border-radius: 0 0 14px 14px;
} */

.table_debts .table_footer .table_lines {
    border-top-color: #DADEE3;
}

.table_debts .table_lines .line:last-child:hover {
    border-radius: 0;
}

.table_debts .table_footer .table_lines .line:last-child:hover {
    border-radius: 0 0 14px 14px;
}

.table_user_books .table_lines .line:last-child:hover {
    border-radius: 0;
}

.table_lawyers .table_lines .line,
.table_taxes .table_lines .line,
.table_debts .table_lines .line,
.table_orders .table_lines .line,
.table_books_resulted .line, 
.table_user_books .table_lines .line,
.table_debts_file .table_lines .line,
.table_eregs .table_lines .line {
    padding: 20px;
    position: relative;
    font-size: 18px;
    background-color: #FFF;
}

.table_lawyers .table_lines .line {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-column-gap: 5%;
}

.table_eregs .table_lines .line {
    display: grid;
    grid-template-columns: 14% 14% 14% 20% 10% 10% 12%;
    grid-column-gap: 1%;
    font-size: 16px !important;
}

.table_taxes .table_lines .line img {
    width: 100% !important;
    max-width: 120px !important;
}

.table_lines .line:hover {
    background-color: #DADEE3;
}

.table_lines .line::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #DADEE3;
    bottom: 0;
    left: 0;
}

.table_lines .line:last-child::after {
    display: none;
}

.table_taxes .table_lines .line:last-child::after,
.table_user_books .table_lines .line::after {
    display: none;
}
.table_user_books .table_lines .line{border-top: 1px solid #DADEE3;}
.table_user_books .table_lines .line:first-child {
    border-top: none;
}
.table_user_books .line, .table_user_books .header{
    display: grid;
    grid-template-columns: 60% 20% 16%;
    grid-column-gap: 2%;
}
/* .table_lawyers .table_lines .line:last-child {
    border-radius: 0 0 14px 14px;
} */
.table_lines .line.see_details:last-child{
    border-radius: 0 0 14px 14px;
}
.table_lawyers .table_lines .line.see_details:last-child::after{
    display: none !important;
}
/* .table_lines .line:last-child:hover {
    border-radius: 0 0 14px 14px;
} */
.table_taxes .table_lines, .table_orders .table_lines {
    border-radius: 0 0 14px 14px;
}

.table_lines .line .see_more_btn {
    margin-top: 0;
    width: 80% !important;
    padding: 5px;
    margin-left: auto;
    cursor: pointer;
}

.table_taxes .table_lines .line .see_more_btn {
    width: 100% !important;
}

.table_lines .line .see_more_btn p {
    font-weight: 500;
    font-size: 16px;
    width: calc(100% - 30px);
    cursor: pointer;
}

.table_lines .line .see_more_btn .arrow {
    width: 28px;
    height: 28px;
    padding: 6px;
}

.table_debts .table_footer .table_lines .line {
    display: flex;
}

.table_footer .table_lines .line .see_more_btn {
    width: 20% !important;
    margin-right: auto;
    margin-left: 0;
}

.table_eregs .header {
    display: grid;
    grid-template-columns: 14% 14% 14% 20% 10% 10% 12%;
    grid-column-gap: 1%;
    font-size: 16px;
}

/* Sfarsit Stilizare Un Tablou */

/* Inceput stilizare Pagina de Avocat */
.lawyer_card .left_side {
    width: 30%;
}

.lawyer_card .left_side img {
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
}

.lawyer_card .right_side {
    /* max-height: 300px; */
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lawyer_card .right_side h2 {
    font-family: 'Figtree Rg';
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.lawyer_card .right_side .down_side .title {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 600;
}

.lawyer_card .right_side .down_side .lside,
.lawyer_card .right_side .down_side .rside {
    width: 46%;
}

/* Sfarsit stilizare Pagina de Avocat */
/* Stilizare Breadcrumbs */
.breadcrumbs {
    /* display: flex; */
    font-weight: 700;
    color: var(--secondary_color);
    padding: 15px 0;
    margin-top: 10px;
}

.breadcrumbs i {
    color: var(--body_color);
}

.breadcrumbs span,
.breadcrumbs i {
    width: auto;
}

.resources_header {
    margin-bottom: 30px;
}

.resources_header .lside svg {
    width: 16px;
    margin-right: 6px;
    margin-bottom: 3px;
}

.resources_header .lside span {
    font-weight: 700;
    font-size: 22px;
}

.resources_header .rside {
    font-size: 18px;
    opacity: 0.8;
}

.res_lines_wrap .res_line {
    padding: 16px;
    border-radius: 3px;

}

.res_lines_wrap .res_line .dwload {
    min-width: 30px;
    min-height: 30px;
    background-color: var(--fourth_color);
    border-radius: 6px;
    margin-right: 8px;
}

.res_lines_wrap .res_line .dwload svg {
    width: 16px;
}

.res_lines_wrap .res_line .dwload svg path {
    fill: var(--secondary_color);
}

.res_lines_wrap .res_line span {
    max-width: 500px;
    font-size: 15px;
    font-weight: 700;
    margin-right: 20px;
}

.res_lines_wrap .res_line .rside span {
    color: #ffbc64;
    margin-right: 0;
}

.res_lines_wrap a:hover .res_line {
    background-color: #ffbc64;
}

.res_lines_wrap a:hover .res_line .dwload {
    background-color: #FFF;
}


.res_lines_wrap a:hover .res_line span {
    color: #FFF;
}

/* Inceput stilizare pagina de Noutati */
.news_section .see_more_btn {
    margin-top: 60px;
}

.news_section .see_news a,
.login .see_news a {
    font-size: 18px;
}

.login .see_news {
    margin-bottom: 30px;
}

.login .form_wrap,
.login .buttons_row {
    margin-top: 60px;
}

.login .see_more_btn p,
.login label {
    font-size: 18px;
}

span.res_elem_tag {
    padding: 3px 10px;
    background-color: var(--third_color);
    color: #FFF;
    border-radius: 10px;
    font-size: 14px;
    width: auto;
    top: -11px;
    left: 20px;
    animation: wiggle 3s linear infinite;
}

.news_element {
    width: 100%;
    margin: 30px auto;
    transition: all 0.2s ease-in-out;
    padding: 20px;
    border-radius: 8px;
}

.news_element:hover {
    background-color: #FFF;
    transform: scale(1.05);
    -webkit-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    -moz-box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
    box-shadow: 0px 3px 24px 7px rgba(111, 109, 119, 0.12);
}

.news_element h3::after {
    position: absolute;
    content: '';
    display: block;
    height: 12px;
    background-color: var(--secondary_color);
    width: 40px;
    left: 0px;
    top: -10px;
}

.news_element .ls_news {
    width: 32%;
}

.news_element .ls_news img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.news_element .rs_news {
    width: 66%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news_section .article_content p {
    font-size: 16px;
}

.news_element .art_down_side .sm_icon {
    width: 30px;
    height: 30px;
}

.news_element .art_down_side .sm_icon svg {
    height: 14px;
    width: 14px;
}

.news_element .art_down_side .sm_icon {
    width: 26px;
    height: 26px;
    background-color: #FFF;
    border: 1px solid var(--primary_color);
}

.news_element .art_down_side .sm_icon svg path {
    fill: var(--primary_color);
}

.sm_icon:nth-child(1) {
    animation: preloader 0.8s ease-in-out alternate infinite;
}

.sm_icon:nth-child(2) {
    animation: preloader 0.8s ease-in-out alternate .4s infinite;
}


/* Paginare */
.pagination_wrapp {
    margin-top: 90px;
    margin-bottom: 90px;
}

.pagination_wrapp nav {
    display: flex;
}

.pagination_wrapp nav ul {
    width: auto;
    margin: auto;
}

.pagination_wrapp nav ul span {
    text-align: center;
    font-size: 22px;
    margin-top: 2px;
}

.pag_link {
    background-color: transparent;
    border-color: transparent;
    font-size: 24px;
    color: var(--body_color);
    border-radius: 33px !important;
}

.page-link:focus {
    color: var(--body_color);
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(253, 211, 160, 0.55);
}

.page-link:hover {
    border-color: transparent;
    color: var(--secondary_color);
}

li.pag_item {
    min-width: 60px;
    text-align: center;
    margin: 0 4px;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.not_logged_text {
    font-size: 30px;
    font-weight: 700;
    color: var(--body_color);
    font-family: "Figtree Rg";
}

.one_month.sel_inv_cal {
    background: var(--secondary_color);
}

.one_month.sel_inv_cal a.big {
    color: black;
}

.active>.pag_link,
.pag_link.active {
    background-color: var(--secondary_color);
    border-color: transparent;
    color: #FFF !important;
}

/* Sfarsit Paginare */
/* Calendar */
.calendar {
    margin: 40px auto;
}

.calendar .wrapper {
    padding: 30px;
}

.calendars_wrapp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.calendar .header {
    margin-bottom: 30px;
}

.calendar .header span {
    font-size: 26px;
    font-weight: 700;
}

.calendar .header i {
    font-size: 18px;
}

.calendars_wrapp .table_wrap {
    width: 48%;
    margin: 0 0 6px;
    padding: 10px;
    border-radius: 5px;
 
}

.table_wrap.table_wrap_selected {
    background: var(--secondary_color);
}

.news_table .table_wrap.table_wrap_selected .bld, .news_table .table_wrap.table_wrap_selected a {
    color: #FFF;
}

.calendar_container .cal_down {
    padding: 8px;
    width: 6%;
    text-align: center;
    margin: 5px 0 30px auto;
    background-color: var(--secondary_color);
    color: #FFF;
    font-size: 24px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
}

.calendar_container .cal_down:hover {
    background-color: var(--hover_orange_light);
    color: var(--secondary_color);
    border-color: var(--secondary_color);
    /* background-color: var(--hover_secondary_color); */
}


.table_wrap .table_header {
    background-color: #012659;
    opacity: 0.75;
    color: #FFFF;
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px 14px 0 0;
    font-size: 24px;
}

.table_wrap .table_wrap {
    border-radius: 14px;
}

.news_table .table_wrap {
    padding-left: 20px;
    font-size: 20px;
}

.news_table .table_wrap .bld {
    font-weight: 700;
    color: var(--secondary_color);
    margin-left: 4px;
}

.single_row {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    border: 1px solid #ebeff4;
}

.single_row:hover {
    background-color: #ebeff4;
}

.table_wrap .single_row:nth-child(2) {
    border-bottom: none;
    border-top: none;
}

.table_wrap .single_row:last-child {
    border-radius: 0 0 20px 20px;
    border-top: none;
}

.one_month {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: var(--body_color);
}

.one_month .small {
    font-size: 18px;
    margin-bottom: 10px;
}

.one_month a.big {
    color: var(--secondary_color);
}

.one_month span.big {
    color: #8e9aaf;
}

.one_month .big {
    font-size: 20px;
    font-weight: 700;
}

/* Sfarsit Calendar */
.forg_passw {
    font-size: 18px;
    font-weight: 700;
    color: var(--body_color);
}

/* Pagina de search */
.search_page .search_wrap {
    border-radius: 8px;
}

.search_page .radio input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border: 1px solid #dee2e6;
    appearance: none;
    border-radius: 50%;
}

.search_page .radio input[type="radio"]:checked {
    border: 6px solid var(--secondary_color);
}

.search_page .search_wrap p,
.search_page .search_wrap p {
    font-size: 18px;
}

.nr_results {
    font-size: 28px;
}

.search_page .nr_results {
    margin-top: 60px;

}

.nr_results span {
    color: var(--secondary_color);
    font-weight: 600;
}

/* Pagina de Carti / Biblioteca */

.form_search_book {
    width: 100%;
}

.form_search_book .search_item {
    left: calc(100% - 250px);
}

.form_search_book .main_search {
    width: calc(100% - 190px);
}

.form_search_book .select2-container {
    width: 185px !important;
}

.form_search_book .search_item {
    right: calc(20% + 6px);
}

.profile_body .header_box i {
    font-size: 28px;
    color: var(--third_color);
}

.error {
    padding: 16px;
    width: 80%;
    margin: 0 auto 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.failed {
    background-color: #ffc0b4;
    border: 1px solid #f85b3f;
}

.form_error,
.failed .c {
    color: #f85b3f;
    font-size: 16px !important;
    font-weight: 600;
    margin: 4px auto !important;
}

.error_wrap {
    width: fit-content;
    margin: 0 auto;
}

.profile_up_side {
    margin: 30px auto;
}

.profile_up_side_info {
    width: fit-content;
    margin: auto;
}

.profile_up_side_info p {
    font-size: 18px;
    text-align: center;
}

.profile_up_side_info p span {
    color: var(--secondary_color);
    font-weight: 700;
}

.profile_up_side_info .see_news {
    display: flex;
}

.profile_up_side_info .see_news a {
    font-size: 18px;
    margin: auto;
}

.profile_body .search_box .body_box {
    position: relative;
}

.back_image.grd_img {
    position: absolute;
    opacity: 0.15;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 350px;
    max-height: 150px;
    width: auto;
}

.profil .back_image.grd_img img {
    max-width: 175px;
    max-height: 130px;
    height: auto;
}

.data_grid {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-column-gap: 4%;
    grid-row-gap: 30px;
}

.errorgreen {
    border: 1px solid #3b725e66;
    background-color: #b6e9d8;
}

.errorgreen .c {
    color: #3b725e;
}

.error .c {
    width: fit-content;
    margin: auto;
    font-size: 20px;
}

.error.errorred {
    background: var(--red_color);
    color: white;
    border: 1px solid #1d0707;
}

.btn_change {
    color: var(--third_color);
    font-weight: 600;
}

.profile_page .header_box {
    margin-bottom: 4px;
}

.profile_page .search_box .see_news {
    margin-top: 4px;
    position: relative;
    z-index: 10;
}

.courses_select {
    background-color: #fffbf6;
}

.courses_prep .typo {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.c_types_grid {
    display: grid;
    grid-template-columns: 50% 50%;
}

.c_types_grid .single_type {
    padding: 20px;
    border: 1px solid #faf5ef;
    text-align: center;
    word-wrap: break-word;
}

.single_type.active_course {
    background-color: #ced3d9;
    color: #fff;
}

.single_type.active_course a {
    color: #FFF;
}

.c_types_grid .single_type:first-child,
.c_types_grid .single_type:nth-child(2) {
    border-bottom: none;
}

.c_types_grid .single_type:first-child,
.c_types_grid .single_type:nth-child(3) {
    border-right: none;
}

.c_types_grid .single_type:first-child {
    border-top-left-radius: 8px;
}

.c_types_grid .single_type:nth-child(2) {
    border-top-right-radius: 8px;
}

.c_types_grid .single_type:nth-child(3) {
    border-bottom-left-radius: 8px;
}

.c_types_grid .single_type:last-child {
    border-bottom-right-radius: 8px;
}

.courses_prep .courses_tabs {
    margin-top: 20px;
    background-color: #fffbf6;
}

.courses_tabs .title {
    font-size: 18px;
}

.course_info {
    padding: 20px;
    text-align: left;
    border: 1px solid transparent;
    margin-bottom: 16px;
}

.course_info:last-child {
    margin-bottom: 0;
}

.course_info:hover {
    border-color: #c1c6cc;
    border-radius: 6px;
}

.course_info .c_cod,
.course_info .c_title {
    font-weight: 700;
    font-size: 18px
}

.course_info .c_title {
    font-size: 22px;
}

.course_info .fa-check,
.ins_curs_info .fa-check,
.ins_curs .event_pres .fa-check {
    color: #55cec6;
    font-size: 14px;
    margin-top: 2px;
}

.ins_curs_form .see_more_btn {
    margin-top: 30px;
}

.course_info .fa-clock {
    color: #FFC75F;
    font-size: 14px;
    margin-top: 2px;
}

.ev_info {
    font-weight: 700;
    color: var(--yellow_color);
}

.ev_p {
    font-size: 20px;
}

.curs .c_code,
.curs .c_title {
    font-weight: 700;
}

.curs .c_code {
    font-size: 18px;
}

.curs .c_title {
    font-size: 24px;
    width: fit-content;
}

.curs .c_title::after {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: var(--secondary_color);
    margin-top: 1px;
}
/* two factor */
.auth-code-digits {
	display: flex;
	width: 100%;
}

.auth-code-digits .digit {
	-webkit-transition: all 0.30s ease-in-out;
	border-radius: 3px;
	border: 1px solid gray;
	height: 40px;
	text-align: center;
	width: 40px;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	margin: 5px 5px 3px 5px;
	outline: none;
	font-size: 25px;
}
.auth-code-digits.digit:first-child {
    margin-left: 0;
    padding-left: 0;
}
.auth-code-digits input[type="number"]:focus {
	box-shadow: 0 0 5px rgba(66, 8, 0, 1);
	padding: 3px 0px 3px 3px;
	margin: 5px 1px 3px 0px;
	border: 1px solid rgba(66, 8, 0, 1);
}

/* Chrome, Safari, Edge, Opera */
.auth-code-digits input[type="number"]::-webkit-outer-spin-button,
.auth-code-digits input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.auth-code-digits input[type="number"][type=number] {
  -moz-appearance: textfield;
}

.detail_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.curs .detail_line {
    font-size: 18px;
}

.ral_b {
    font-weight: 700;
}

.curs .details_wrap {
    margin: 40px auto 0;
}

.curs .see_more_btn {
    font-size: 18px;
    margin-top: 40px;
}

.curs .see_more_btn .arrow {
    width: 34px;
    height: 34px;
}

.ins_curs_info {
    font-size: 18px;
}

.ins_curs_info p {
    margin-bottom: 4px;
    font-weight: 700;
}

.ins_curs_info ul {
    list-style: none;
    padding-left: 10px;
}

.btn_small {
    background-color: var(--third_color);
    padding: 6px;
    border-radius: 6px;
    color: #FFF;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    border: none;
    font-size: 16px;
}

.page_content_saj .btn_small {
    display: inline-block;
    width: auto;
}

.page_content_saj .see_more_btn.bg_green {
    width: 400px;
}

.page_content_saj .see_more_btn p {
    width: calc(100% - 46px);
}

.page_content_saj .btn_small {
    padding: 10px 20px;
}

.ins_curs_info li {
    margin-top: 6px;
}

.ins_curs .event_pres {
    background: #FFF;
    margin: 30px auto;
    padding: 15px;
    border: 1px solid #faf5ef;
    border-radius: 8px;
}

.ins_curs .event_pres .title {
    font-size: 20px;
}

.ins_curs .event_pres .event_details {
    margin-top: 20px;
}

.but_down_evsubs .see_more_btn {
    width: 50%;
}

.but_down_evsubs .see_more_btn.bg_green {
    width: 40%;
}

.but_down_evsubs .see_more_btn p {
    width: calc(100% - 46px);
}

.see_more_btn.bg_green:hover .arrow {
    background-color: #FFF ! important;
    color: var(--light_green_color) ! important;
}

.pay_now i {
    font-size: 14px;
}

.file_3cols_wrap {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-column-gap: 2%;
    grid-row-gap: 17px;
}

.file_2cols_wrap{
    display: grid;
    grid-template-columns: 24% 74%;
    grid-column-gap: 2%;
}

.lawyer_file hr{
    border-top: 1px solid var(--secondary_color);
}

.descr_p {
    font-size: 20px;
    margin: 6px auto;
}

.page_content_saj form input[type=text],
.page_content_saj form textarea {
    margin-top: 8px;
}

.page_content_saj form .select2-container {
    width: 60% !important;
}

.page_content_saj form label {
    display: flex;
}
a#link_modal {
    display: block;
}
.page_content_suspend_saj input[type=text],
.page_content_saj form input[type=text],
.page_content_saj form textarea {
    display: block;
    width: 60%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--bs-form-control-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bottom_box .see_news {
    text-align: center;
}

.table_taxes .table_lines .line div:nth-child(3) {
    font-weight: 700;
}

.table_special table {
    width: 100%;
}
.table_debts .table_lines:last-child, .table_debts .table_lines:last-child .line,
.table_debts .table_lines:last-child .line:hover {
    border-radius: 0 0 14px 14px;
    border-top: none;
}
.disabled_button {
    background: grey !important;
    cursor: not-allowed;
}

.disabled_button button {
    background: grey !important;
    cursor: not-allowed;
}

.disabled_button .arrow {
    background: grey !important;
    cursor: not-allowed;
}

.disabled_button:hover .arrow {
    background: grey !important;
    cursor: not-allowed;
}

span#form {
    position: relative;
    top: -190px;
    display: block;
}
form[name="reservation"]{
    top: 180px;
}
form[name="reservation"] button{
    width: 25%;
}
.book_presentation{width: 74%;}
.alert_reserv{top: 154px;}
.header_desk_top .header_top_item,
.header_desk_top .dd_group {
    background-color: #576d8d;
    margin-right: 4px;
    border-radius: 2px;
}

.header_desk_top .rs_links .header_top_item,
.header_desk_top .rs_links .dd_group {
    background-color: transparent;
}
.nav-link {
    padding: 3px var(--bs-nav-link-padding-x);
}

#mob_nav_overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 90;
    user-select: none;
    display: none;
}

.close_icon{
    background-image: url(../images/new/close_icon.svg);
    /* width: 1em;
    height: 1em;
    margin-right: 4px; */
}

.about_dean .rights{
    min-height: 440px;
}

.menu_orders .nr_items{
    color: #ffff;
    font-size: 12px;
    background-color: var(--third_color);
    padding: 2px 6px;
    border-radius: 12px;
    position: absolute;
    top: -6px;
    left: 47%;
}

.cart_items{
    position: absolute;
    top: 133%;
    min-width: 380px;
    border-radius: 4px;
    left: calc(-200% - 220px);
    z-index: 100;
    color: var(--body_color);
    padding: 10px;
}

.cart_items .cart_prod{
    font-size: 14px;
    padding:10px 0;
    border-bottom: 1px solid #dee2e6;
}
.cart_items .cart_prod:last-child{
    border-bottom: none;
}

.cart_items .arrow{
    width: 28px;
    height: 28px;
}

.cart_items .arrow i{font-size: 16px !important;}
.cart_items .see_more_btn{padding: 4px;}
.cart_items .see_more_btn a{font-size: 16px !important;}
.cart_items .cart_items_enum{
    padding-right: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.table_debts_file .header, .table_debts_file .line{
    display: grid;
    grid-template-columns: 6% 31% 27% 27%;
    grid-column-gap: 3%;
}

.table_debts_file .header, .table_debts_file .total_values{font-size: 18px;}
.table_debts_file .line{font-size: 16px;}
.lawyer_file .wrapper{
    border: 1px solid #DADEE3;
}

button#btn-resetpass:disabled {
    background: grey !important;
}

button#btn-resetpass:disabled .arrow {
    background: darkgray !important;
}

.cookie_banner{
    background-color: #3f73bb;
    position: fixed;
    bottom: 0;
    z-index: 1010;
    min-height: 120px;
    align-items: center;
}

.cookie_layer{
    width: 100vw;
    height:100vh;
    background-color: #00000094;
    position:fixed;
    top:0;
    z-index: 1000;
    
   
}

.close_cookie{
    background-color: var(--secondary_color);
    padding: 8px 28px;
    border-radius: 10px;
    color: #FFF;
    margin-left: 44px;
    height: fit-content;
}

.box_select{
    position: relative;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box_select::after{
    content: "\f107";
    font-family: FontAwesome;
    width: 18px;
    height: 20px;
    text-align: center;
    color: var(--secondary_color);
    font-size: 20px;
    pointer-events: none;
    transition:all 0.2s ease-in-out
}


/* Custom select */
.sel {
    height: 40px;
    border-radius: 30px;
    border: 1px solid var(--secondary_color) !important;
    width: 100%;
    padding: 10px 16px;
  }

  .sel.box_select.active{
    border-radius: 20px 20px 0 0;
  }
  
  .sel::before {
    /* position: absolute;
    content: '\f063';
    font-family: 'FontAwesome';
    font-size: 2em;
    color: #FFF;
    right: 20px;
    top: calc(50% - 0.5em); */
  }
  
  .sel.active::before {
    transform: rotateX(-180deg);
  }
  
  .sel__placeholder {
    /* display: block;
    font-family: 'Quicksand';
    font-size: 2.3em;
    color: #838e95;
    padding: 0.2em 0.5em;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible; */
  }
  
  .sel.active .sel__placeholder {
    /* visibility: hidden; */
  }
  
  .sel__placeholder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.2em 0.5em;
    content: attr(data-placeholder);
    visibility: hidden;
  }
  
  .sel.active .sel__placeholder::before {
    /* visibility: visible; */
  }
  
  .sel__box {
    padding: 0.5rem 0;
    position: absolute;
    top: 39px;
    left: -1px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: calc(100% + 2px);
    box-sizing: border-box;
    border: 1px solid var(--secondary_color);
    border-radius: 0 0 20px 20px;
    border-top-color: transparent;
  }

  .sel.box_select.active::after, .btn.show i {
    transform: rotate(180deg);
}
  
  .sel.active .sel__box {
    display: block;
    /* animation: fadeInUp 500ms; */
  }
  
  .sel__box__options {
    display: list-item;
    /* font-family: 'Quicksand'; */
    /* font-size: 1.5em; */
    /* color: #838e95; */
    padding: 0.5em 1em;
    user-select: none;
  }
  
  .sel__box__options::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 0.5em;
    margin-left: 5px;
    display: none;
  }
  
  .sel__box__options.selected::after {
    display: inline;
  }
  
  .sel__box__options:hover {
    background-color: var(--secondary_color);
    color: #FFF;
  }

  .seePass .fa-eye-slash{
    color: var(--secondary_color);
  }
  
  /* ----- Select Box Black Panther ----- */
  .sel {
    /* border-bottom: 4px solid rgba(0, 0, 0, 0.3); */
  }
  
  .sel--black-panther {
    z-index: 3;
  }
  
  /* ----- Select Box Superman ----- */
  .sel--superman {
  /*   display: none; */
    z-index: 2;
  }

  .bibl_sel{
    width: 26%;
  }

  .content_page th, td {
    border: 1px solid gray;
}

.content_page table{
    max-width: 100%;
}

.c-pointer {
    cursor: pointer;
}

  /* .container_menu.position-fixed {
    left: 0;
    width: calc(100% - 17px);
} */
  
  /* ===== Keyframes ===== */
  @keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }




/* Sfarsit Custom select */



/* Animatii */
/* Keyframes */
@keyframes toggleOnCheckbox {
    0% {
        opacity: 0;
        transform: translate(-50%, -85%) scale(0) rotate(45deg);
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -85%) scale(0.9) rotate(45deg);
    }

    100% {
        transform: translate(-50%, -85%) scale(0.8) rotate(45deg);
    }
}


@keyframes preloader {
    100% {
        transform: scale(1.2);
        filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.161));
    }
}

/* Sfarsit stilizare pagina de Noutati */
/* Responsive */

@media (min-width:576px) {
    .w-sm-100 {
        width: 100%;
    }
}

@media (min-width:768px) {}

@media (min-width:992px) {
    .w-lg-75 {
        width: 75%;
    }

    .dd_menu {
        top: 103%;
        left: 0;
    }
}

@media (min-width:1200px) {
    .w-xl-50 {
        width: 50%;
    }
}

@media (max-width:1399px) {
    .alert_reserv {
        top: 164px;
    }
    .about .about_rs .justice_wrap{
        top: -20%;
        left: 0%;
    }
    .about .about_rs .justice_wrap img{
        width: 52%;
    }
}

@media (max-width:1199px) {
    .carousel_header{
        /* margin-top: 168px; */
    }
    .header_normal_page {
        margin-top: 187px;
    }
    .about {
        padding: 60px 0;
    }

    .new_sec .row_articles {
        margin-top: 30px;
    }
    .new_sec {
        padding: 60px 0;
    }
    .about .about_rs .justice_wrap {
        top: -18%;
        left: -15%;
    }
    .about .about_rs .justice_wrap img {
        width: 43%;
    }
    .alert_reserv {
        top: 156px;
    }
    .header_top_nav .header_top_item a {
        font-size: 12px;
    }

    a.logo_section {
        font-size: 16px;
    }

    a.logo_section img {
        width: 44px;
    }

    .grid_search_boxes {
        grid-template-columns: 31% 31% 31%;
        grid-column-gap: 3.5%;
    }

    .row_articles .article_wrap {
        width: 100%;
    }

    .years_info_wrap,
    .f_info {
        padding: 10px;
    }

    .f_info .info {
        margin-top: 10px;
    }

    .news_element .rs_news {
        width: 58%;
    }

    .news_element .ls_news {
        width: 40%;
    }
    .about_dean .dean_quote{
        right: -12%;
    }
    .ab_lines{
        left: 19%;
    }
    .row_articles .search_wrap {
        width: 80%;
    }
}

@media (max-width:991px) {
    .carousel_header {
        /* margin-top: 82px; */
        overflow-x: hidden;
    }
    .header_normal_page {
        margin-top: 164px;
        overflow-x: hidden;
    }
    .bibl_sel {
        width: 34%;
    }
    .file_3cols_wrap{
        grid-template-columns: 48% 48%;
    }
    .user_links[data-bs-popper] {
        right: auto !important; 
        left: calc(50% - 90px);
        min-width: 180px !important;
    }
    .header_main_nav .main_nav .dd_group::after{
        display: none;
    }
    .about .about_rs .justice_wrap img {
        width: 37%;
    }
    .about .about_rs img, .row_articles .search_wrap{
        width: 100%;
    }
    .about .about_rs .justice_wrap {
        top: -18%;
        left: -87%;
    }
    .alert_reserv {
        top: 135px;
    }
    form[name="reservation"] {
        top: 160px;
    }
    .course_info {
        border-bottom-color: #dee2e6;
    }

    .w_100 {
        width: 100%;
    }

    .sm_icon {
        width: 30px;
        height: 30px;
    }

    .sm_icon svg {
        height: 16px;
        max-width: 16px;
    }

    .small_article img {
        height: 140px;
    }

    .small_article {
        width: 100%;
    }

    .navbar_collapse .header_desk_top {
        background-color: transparent;
    }

    .header_main_nav {
        padding: 10px 0;
    }

    .header_main_nav .top_dd_item {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .header_main_nav .main_nav a {
        font-weight: 600;
        font-size: 18px;
        font-family: 'Figtree Rg';
    }

    .header_mob_top {
        background-color: var(--primary_color);
    }

    .header_top_nav .ls_links,
    .main_nav {
        width: 100%;
        display: grid;
        grid-template-columns: 32% 32% 32%;
        grid-column-gap: 2%;
        grid-row-gap: 2%;
    }

    .header_top_item.center_elem {
        align-items: center;
    }

    .header_top_nav .header_top_item a,
    .user_icon span,
    .user_links a,
    .header_top_nav .top_dd_item, .header_top_nav .dd_main, .header_top_nav .header_top_item a, .dd_group {
        font-size: 16px;
    }

    .header_mob_top .header_top_item,
    .header_mob_top .dd_group {
        background-color: #576d8d;
    }


    .header_top_item,
    .header_mob_top .dd_group {
        padding: 4px;
        border-radius: 3px;
    }

    .header_top_item.user_header {
        background-color: transparent;
    }


    .dd_menu {
        position: absolute !important;
        width: 100%;
        min-width: 100% !important;
    }

    .main_nav .top_dd_item {
        text-align: center;
    }

    .carousel_header,
    .carousel_bg .car_img_bg {
        height: 480px;
    }

    .content_slide h2 {
        font-size: 36px;
    }

    .content_slide p {
        font-size: 16px;
        line-height: 1.4rem;
    }

    .see_more_btn .arrow {
        padding: 8px;
        width: 32px;
        height: 32px;
    }

    .grid_search_boxes {
        grid-template-columns: 49% 49%;
        grid-column-gap: 2%;
    }

    .search_wrap {
        width: calc(100% - 2*calc(var(--bs-gutter-x) * .5));
    }

    .row_articles .article_wrap,
    .action_content {
        padding: 8px;
    }

    .f_info {
        width: 33%;
    }

    .f_info:nth-child(3)::after {
        display: none;
    }

    .about_dean .dean_quote {
        position: absolute;
        right: 0%;
        bottom: -54%;
        z-index: 20;
    }

    .about_dean .dean_img {
        position: relative;
        z-index: 16;
    }

    .about_dean .dean_img img:nth-last-child(2),
    .about_dean .dean_quote_content {
        width: 100%;
    }

    .about_dean .dean_quote {
        bottom: auto;
        top: 85%;
    }

    .about_dean .dean_quote_content img {
        top: 4%;
    }

    .about .about_years_info {
        right: 0;
        padding: 10px;
    }

    .about_years_info .year_info_wrap {
        padding: 6px;
    }

    .about_years_info .year_info_wrap .rs_info {
        margin-left: 10px;
        font-size: 14px;
    }

    .about_years_info .icon_wrap svg {
        width: 24px;
    }

    .about_years_info .year_info_wrap .rs_info .ab_year {
        font-size: 18px;
    }

    .news_element .ls_news {
        width: 45%;
    }

    .news_element .rs_news {
        width: 50%;
    }

    .news_element .ls_news img {
        min-height: 260px;
    }

    .calendar_container .cal_down {
        width: 16%;
    }

    .navbar_collapse .header_desk_top {
        padding: 0;
    }

    .navbar_collapse {
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        z-index: 100;
        border-bottom: 4px double var(--body_color);
        max-height: calc(100vh - 200px);
        overflow-y: scroll;
    }

    .header_top_nav .lang {
        display: none;
    }

    .footer_years_pos {
        top: -93px;
    }

    .page_body_content {
        padding: 40px 0 100px;
    }

    .footer_padding {
        padding-top: 138px;
    }

    .table_taxes .table_lines .line img {
        width: 50%;
    }

    .table_footer .table_lines .line .see_more_btn {
        width: 40% !important;
        margin-left: auto;
        margin-right: 0;
    }

    .table_debts {
        margin-bottom: 50px;
    }

    .table_taxes .header,
    .table_taxes .line {
        grid-template-columns: 6% 40% 17.5% 32%;;
        grid-column-gap: 1.5%;
    }

    .table_ordered_avs .line, .table_ordered_avs .header{
        grid-template-columns: 2% 25.5% 20% 25% 5% !important;
    }

    .table_taxes .header,
    .table_taxes .line .see_more_btn {
        width: 100% !important;
    }

    .table_orders .header,
    .table_orders .line {
        grid-template-columns: 5% 45% 15.5% 30%;
        grid-column-gap: 1.5%;
    }

    .table_books_resulted .header,
    .table_books_resulted .line {
        grid-template-columns: 76% 20%;
    }
    .table_taxes .header, .table_taxes .table_lines .line{padding: 10px;}
    .but_down_evsubs .see_more_btn {
        width: 58%;
    }
    .sections .accordion-button{font-size: 18px;}
    .sections .accordion-button::after {
        width: 23px;
        height: 23px;
        background-size: 23px;
    }
    .about_dean {
        padding: 70px 0 60px 0;
    }

    .table_eregs .header, .table_eregs .table_lines .line {
        grid-template-columns: 22% 22% 22% 22%;
        grid-column-gap: 4%;
        grid-row-gap:10px;
      }
}

@media (max-width:767px) {
    .bibl_sel {
        width: 38%;
    }
    .modal_md{
        min-width: unset !important;
        min-height: unset !important;
    }
    .about_dean .rights{
        min-height: 0px;
    }
    .news_section .see_more_btn {
        margin-top: 40px;
    }
    .new_sec .row_articles {
        margin-top: 20px;
    }
    .new_sec {
        padding: 40px 0;
    }
    form[name="reservation"] {
        background-color: var(--light_gray);
        top: 135px;
    }

    form[name="reservation"] button {
        width: 75%;
        margin: 0 auto;
    }
    .table_user_books .line, .table_user_books .header {
        display: grid;
        grid-template-columns: 56% 36%;
        grid-column-gap: 8%;
    }
    .books_page .first_line_filter form, .book_presentation {
        width: 100%;
    }

    .books_page .results span {
        font-size: 22px;
    }

    /* body::-webkit-scrollbar{width: 6px;} */
    .user_debts .wrapper {
        width: 100% !important;
    }

    .carousel-control-prev {
        left: -14px;
    }

    .carousel-control-next {
        right: -14px;
    }

    .car_next_icon_header {
        width: 2rem !important;
        height: 2rem !important;
    }

    .gallery img.img-responsive {
        max-width: 150px;
    }

    .up_side_filter,
    .pagination_wrapp {
        margin-bottom: 50px;
    }

    .pagination_wrapp {
        margin-top: 50px;
    }

    .letters_wrap {
        width: 75%;
    }

    .filter_letters {
        grid-template-columns: 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7% 7%;
        grid-column-gap: 0.75%;
    }

    .see_all {
        width: 20%;
    }

    .data_grid {
        grid-template-columns: 100%;
    }

    .four_md_lines {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lawyer_card .sm_icon{
        width: 30px !important;
        height: 30px !important;
    }

    .lawyer_card .right_side .down_side .lside,
    .lawyer_card .right_side .down_side .rside {
        width: 100%;
    }

    .lawyer_card .right_side .down_side .title {
        font-size: 16px;
    }

    .header_img img {
        max-height: 280px;
    }

    .small_article img {
        height: 200px;
    }

    .small_article {
        width: 80%;
        margin: 30px auto;
    }

    .footer_icons svg {
        width: 24px;
        height: 22px;
    }

    .footer_icons img {
        width: 74px;
    }

    .footer_lefts p {
        font-size: 12px;
    }

    .footer_rights a {
        font-size: 14px;
    }

    .footer_rights .main_link {
        font-size: 16px;
    }

    .footer_lefts img {
        width: 34px;
    }

    .footer_lefts h6 {
        font-size: 16px;
    }

    .content_slide {
        width: 84%;
    }

    .slide_desc{
        margin: 30px 0;
    }

    .f_info .info_title {
        font-size: 18px;
    }

    .f_info .info_title a,
    .f_info .info a {
        cursor: pointer;
    }

    .f_info .info,
    .f_info .info a {
        font-size: 14px;
    }

    .about_dean .rights h2::after {
        width: 45%;
    }

    .about_dean .rights .content {
        margin: 40px 0;
        text-align: center;
    }

    .about_dean .rights .see_more_btn {
        margin: 0 auto;
    }
    .about_dean .dean_img{
        max-width: 280px;
    }

    .about_dean .dean_img {
        margin: 70px auto 0;
    }

    .about_dean .dean_img::after {
        top: -10px;
        left: -10px;
    }

    .ab_lines_top,
    .ab_lines {
        display: none !important;
    }

    .about h2 {
        margin-top: 120px;
    }

    .about .about_rs img {
        width: 80%;
        margin: auto;
    }

    .about .about_rs .justice_wrap {
        position: absolute;
        top: -29%;
        left: 0%;
    }

    .about .about_rs .justice_wrap img {
        width: 60%;
    }

    .about {
        padding: 80px 0 50px;
    }

    .about_years_info .year_info_wrap {
        width: 48%;
        margin: 4px auto;
    }

    .about .about_years_info {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .about h2, .about_dean .rights h2 {
        font-size: 30px;
        text-align: center;
        width: fit-content;
    }
    .about_dean .rights h2{margin: auto;}

    .about h2::after {
        left: 28%;
        width: 44%;
    }

    .about .ab_content {
        text-align: center;
    }

    .about .see_more_btn {
        margin: 0 auto;
    }

    .news_element .ls_news,
    .news_element .rs_news {
        width: 100%;
    }

    .news_element .rs_news {
        margin-top: 30px;
    }

    .news_element .ls_news img {
        height: 200px;
        min-height: auto;
    }

    .calendars_wrapp .table_wrap,
    .page_content_saj .see_more_btn.bg_green {
        width: 100%;
    }

    .news_table .table_wrap:last-child {
        margin-bottom: 0;
    }

    .sections {
        margin-bottom: 40px;
    }

    .table_taxes .header,
    .table_taxes .line {
        display: grid;
        grid-template-columns: 6% 47% 17% 20%;
        grid-column-gap: 2.5%;
    }

    .table_lawyers .table_lines .line {
        grid-template-columns: 32% 32% 32%;
        grid-column-gap: 2%;
    }

    .table_lines .line .see_more_btn {
        width: 100% !important;
    }

    .table_debts .table_lines .line,
    .table_debts .table_lines .line {
        padding: 10px;
    }

    .table_taxes .header,
    .table_taxes .line,
    .table_orders .header,
    .table_orders .line,
    .table_ordered_avs .line,
    .table_ordered_avs .header{
        grid-template-columns: 100% !important;
        grid-row-gap: 14px;
    }

    .table_taxes .table_lines .line img {
        width: 35%;
        max-width: 120px;
    }
    .table_tax_cart .header, .table_tax_cart .line {
        display: grid;
        grid-template-columns: 10% 50% 24%;
        grid-column-gap: 9%;
        grid-row-gap: 16px;
    }
    .sections .accordion-button {
        font-size: 22px;
    }
    .about_dean .dean_quote{
        width: 130%;
        right: -15%;
    }
    .about_dean {
        padding:30px 0 180px 0;
    }
}

@media (max-width:575px) {
    .carousel_header{
        margin-top: 0;
    }
     .header_normal_page {
        margin-top: 152px;
    }
    .table_debts_file .header, .table_debts_file .line{
        grid-template-columns: 32% 65%;
        grid-column-gap: 3%;
        grid-row-gap: 10px;
        padding: 10px !important;
    }

    .table_eregs .header, .table_eregs .table_lines .line {
        grid-template-columns: 100%;
        grid-column-gap: 0%;
        grid-row-gap:10px;
      }

    .table_debts_file .total_values{
        display: flex;
        justify-content: space-between;
    }
    .slide_desc strong, .slide_desc span, .slide_desc div, .slide_desc p, .slide_desc ul, .slide_desc li, .slide_desc a{
        line-height: 1.4rem !important;
        font-size: 14px !important;
    }
    .slide_desc {
        height: 117px;
    }
    .about_dean .rights h2 {
        font-size: 26px;
    }
    .row_articles .article_wrap{
        margin: 80px auto 0;
    }
    .new_sec {
        padding: 30px 0;
    }
    .alert_reserv {
        top: 123px;
    }
    form[name="reservation"]{
        top: 122px;
    }
    .table_user_books .line, .table_user_books .header {
        display: grid;
        grid-template-columns: 100%;
        grid-row-gap: 16px;
    }
    .form_search_book .main_search, .bibl_sel {
        width: 100%;
    }

    .form_search_book .search_item {
        left: calc(100% - 60px);
        top: calc(100% - 35px);
    }

    .table_books_resulted .header,
    .table_books_resulted .line {
        grid-template-columns: 100%;
        grid-row-gap: 20px;
    }

    .table_books_resulted .line .see_more_btn {
        width: 50% !important;
        margin-left: 0;
    }

    .c_types_grid .single_type {
        font-size: 14px;
        padding: 10px;
    }

    .courses_select.wrapper,
    .courses_tabs.wrapper {
        padding: 20px 10px 20px;
    }

    .course_info .c_cod {
        font-size: 16px;
    }

    .course_info .c_title,
    .ins_curs_info {
        font-size: 16px;
    }

    .course_info {
        padding: 10px;
    }

    .tab-pane {
        padding: 6px !important;
    }

    .carousel-control-prev {
        left: -14px;
    }

    .carousel-control-next {
        right: -14px;
    }

    .error {
        width: 100%;
    }

    .form_wrap {
        margin-bottom: 0;
    }

    .breadcrumbs {
        padding: 6px 0;
    }

    .table_link {
        padding: 16px;
    }

    .table_link {
        font-size: 18px;
    }

    .pag_link {
        font-size: 20px;
    }

    .table_lawyers .table_lines .line .see_more_btn p {
        font-size: 14px;
    }

    .first_line_filter form {
        width: 65%;
    }

    .letters_wrap,
    .see_all,
    .page_content_suspend_saj input[type=text] {
        width: 100%;
    }

    .pagination_wrapp {
        margin-top: 40px;
    }

    span.res_elem_tag {
        left: 8px;
    }

    .search_wrap {
        width: 100%;
        padding: 8px;
    }

    .search_page .nr_results {
        margin-top: 40px;
    }

    .nr_results {
        font-size: 24px;
    }

    .search_page .search_wrap p,
    .search_page .search_wrap p {
        font-size: 16px;
    }

    .search_page .radio input[type="radio"] {
        width: 14px;
        height: 14px;
    }

    .search_page .radio input[type="radio"]:checked {
        border-width: 4px;
    }

    .news_element {
        margin: 40px auto;
        width: 94%;
        padding: 8px;
    }

    .news_element h3 {
        font-size: 20px;
    }

    .table_taxes .header,
    .table_lawyers .header,
    .table_lawyers .table_lines .line,
    .table_taxes .table_lines .line {
        font-size: 16px;
        padding: 12px;
    }

    .small_article {
        width: 90%;
        margin: 26px auto;
    }

    .res_lines_wrap .res_line {
        padding: 10px;
    }

    a.logo_section img {
        width: 34px;
    }

    a.logo_section {
        font-size: 14px;
    }

    .footer_icons a {
        margin-right: 12px;
    }

    .footer_icons a:last-child {
        margin-right: 0px;
    }

    .content_slide p {
        font-size: 14px;
        line-height: 1.1rem;
    }

    .content_slide h2 {
        font-size: 26px;
    }

    .see_more_btn {
        width: 190px;
        padding: 6px;
    }

    .see_more_btn .arrow {
        padding: 6px;
        width: 28px;
        height: 28px;
    }

    .see_more_btn p {
        width: 150px;
        font-size: 14px;
    }

    .content_slide h2~p {
        height: 56px;
        overflow-y: hidden;
    }

    .content_slide h2 {
        /* max-height: 66px; */
        overflow-y: hidden;
    }
    .carousel_header,
    .carousel_bg .car_img_bg {
        height: 360px;
    }

    .car_indicators_header button {
        width: 14px !important;
        height: 14px !important;
    }

    .car_indicators_header .active::after {
        width: 8px;
        height: 8px;
        left: 3px;
        top: 3px;
    }

    .grid_search_boxes {
        grid-template-columns: 80%;
        grid-row-gap: 20px;
        justify-content: center;
    }

    .text_intr {
        font-size: 20px;
    }

    .row_articles .article_wrap,
    .action_wrap, .about .about_rs img, .row_articles .search_wrap  {
        width: 80%;

    }


    .row_articles .article_wrap,
    .action_content {
        padding: 14px;
    }

    a.see_more_link {
        margin: 50px 0 20px 0;
        font-size: 14px;
    }

    .about h2, .about_dean .rights h2 {
        font-size: 24px;
        line-height: 2rem;
    }

    .about .ab_content p {
        font-size: 16px;
    }

    .news_section h3 {
        font-size: 24px;
    }

    .news_section .see_news a {
        font-size: 16px;
    }

    li.pag_item {
        min-width: 35px;
    }

    .calendar .wrapper {
        padding: 14px;
    }

    .main_footer .footer_layer {
        display: none;
    }

    .footer_years_pos {
        position: unset;
    }

    .bg_mob_footer {
        padding-top: 20px;
        background-color: var(--body_color);
    }
    .home_footer .footer_padding {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .footer_padding {
        padding-top: 20px;
    }
    .login .see_more_btn p,
    .login label,
    .forg_passw,
    .login .see_more_btn p,
    .login label {
        font-size: 16px;
    }

    .login .form_wrap,
    .login .buttons_row {
        margin-top: 30px;
    }

    .page_body_content {
        padding: 40px 0;
    }

    .sections .accordion-button::after {
        width: 24px;
        height: 24px;
        background-size: 24px;
        /* transform: var(--bs-accordion-btn-icon-transform); */
    }

    .pagination_wrapp {
        margin-bottom: 0;
    }

    .table_debts .table_lines .line {
        font-size: 16px;
    }

    .table_taxes .header,
    .table_lawyers .header,
    .table_debts .header {
        font-size: 18px;
    }

    .table_lawyers .line_details .lead{
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 6px;
    }
    .table_debts, .content_normal_page {
        margin-bottom: 0px;
    }

    .table_footer .table_lines .line .see_more_btn {
        width: 60% !important;
    }

    .curs .see_more_btn p {
        width: 150px;
        font-size: 16px;
    }

    .wrapper {
        padding: 16px 10px;
    }

    .curs .c_title {
        font-size: 18px;
    }

    .curs .c_code,
    .curs .detail_line {
        font-size: 16px;
    }

    .curs .details_wrap {
        margin: 30px auto;
    }

    .curs .see_more_btn .arrow {
        width: 28px;
        height: 28px;
    }

    .form_search_book .select2-container {
        width: 70% !important;
        margin: auto;
    }
    .but_down_evsubs .see_more_btn.bg_green, .but_down_evsubs .see_more_btn{
        width:100%;
    }
    .but_down_evsubs .see_more_btn.bg_green{
        margin-top: 10px;
    }
}

@media(max-width:475px) {
    .footer_cookies {
        flex-direction: column;
    }
    .close_cookie{
        margin:20px auto 0;
        min-width: 70%;
        text-align: center;
    }
    .footer_cookies p{
        text-align: center;
    }
    .user_icon span {
        display: none;
    }

    .user_debts .wrapper {
        padding: 14px;
        font-size: 16px;
    }
    .table_debts .table_lines:last-child .line{
        display: flex;
        justify-content: space-between;
    }

    .table_lines .line .see_more_btn {
        padding: 4px;
        justify-content: space-between;
    }

    .table_lawyers .table_lines .line div,
    .table_lawyers .col_name:nth-child(2) {
        /* text-align: center; */
    }

    .table_lines .line .see_more_btn .arrow {
        width: 24px;
        height: 24px;
    }

    .content_header_page {
        min-height: 130px;
    }

    .header_top_nav .ls_links,
    .main_nav {
        grid-template-columns: 48% 48%;
        grid-column-gap: 4%;
    }

    .f_info {
        width: 50%;
    }

    .f_info:nth-child(2)::after,
    .f_info:nth-child(4)::after {
        display: none;
    }

    .f_info:nth-child(3)::after {
        display: block;
    }

    .about h2 {
        margin-top: 140px;
    }

    .header_mob_top {
        background-color: transparent;
    }

    .table_lawyers .table_lines .line,
    .table_lawyers .header {
        grid-template-columns: 65% 30%;
        grid-column-gap: 5%;
        font-size: 14px;
        grid-row-gap: 10px;
        align-items: start;
    }

    .table_debts .header,
    .table_debts .line {
        grid-template-columns: 32% 32% 32%;
        grid-column-gap: 2%;
        grid-row-gap: 16px;
    }

    .table_tax_cart .header,
    .table_tax_cart .line {
        grid-template-columns: 100%;
        grid-column-gap: 2%;
        grid-row-gap: 16px;
    }
}

@media (max-width:425px) {
    .about_dean .dean_quote {
        width: 100%;
        right: 0%;
    }
    .curs .details_wrap .detail_line {
        flex-direction: column;
    }

    .curs .details_wrap .detail_line .col-4,
    .curs .details_wrap .detail_line .col-8 {
        width: 100%;
    }

    .curs .details_wrap .detail_line .col-8 {
        margin-top: 4px;
    }

    .resources_header .lside span {
        font-size: 20px;
    }

    .resources_header .rside {
        display: none !important;
    }

    .gallery .gal_img {
        padding-bottom: 10px;
    }

    .gallery img.img-responsive {
        max-width: 114px;
    }

    .up_side_filter {
        margin-bottom: 40px;
    }

    .first_line_filter {
        flex-direction: column-reverse;
    }

    .filter_letters .letter {
        padding: 4px;
    }

    .results span,
    .results .value_res {
        font-size: 22px
    }

    .lawyer_card .info_wrapper {
        flex-direction: column;
        justify-content: center !important;
    }

    .lawyer_card .right_side,
    .first_line_filter form,
    form[name="reservation"] button, .row_articles .search_wrap  {
        width: 100%;
    }

    .first_line_filter form {
        margin-top: 6px;
    }

    .lawyer_card .left_side {
        width: 50%;
        margin: 0 auto 20px;
    }

    .resources_content {
        padding: 10px;
    }

    .res_line {
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .res_lines_wrap .res_line .rside {
        margin-top: 10px;
    }

    .res_lines_wrap .res_line span {
        margin-right: 0;
        font-size: 14px;
    }

    .res_lines_wrap .res_line .dwload {
        min-width: 24px;
        min-height: 24px;
    }

    .res_lines_wrap .res_line .dwload svg {
        width: 12px;
    }

    .res_lines_wrap .res_line .rside {
        display: flex;
        width: 100%;
    }

    .res_lines_wrap .res_line .rside span {
        margin-left: auto;
    }

    .top_dd_item {
        padding: 4px;
    }

    .grid_search_boxes {
        grid-template-columns: 100%;
    }

    .row_articles .article_wrap,
    .action_wrap {
        width: 95%;
    }

    .row_articles .article_wrap:hover,
    .action_wrap:hover {
        transform: scale(1.06);
    }

    .about_dean .dean_img {
        width: 90%;
    }

    .about_dean .dean_quote_content {
        padding: 8px 8px;
    }

    .about_dean .dean_quote_content img {
        opacity: 0.4;
    }

    .about_dean .dean_quote_content p {
        font-size: 14px;
    }

    .about_dean .dean_quote_content .name span:first-child {
        font-size: 16px;
    }

    .about h2 {
        margin-top: 160px;
    }

    .calendar .header span {
        font-size: 22px;
    }

    .news_table .table_wrap,
    .one_month .big,
    .one_month .small {
        font-size: 16px;
    }

    .calendar_container .cal_down {
        width: 22%;
        padding: 4px;
    }

    .table_wrap .table_header {
        font-size: 20px;
    }

    .login h1 {
        font-size: 22px;
    }
    .slide_desc {
        margin: 16px 0;
    }
    .carousel-indicators{margin-bottom:0.5rem !important;}
}

@media (max-width:375px) {
    .file_3cols_wrap {
        grid-template-columns: 100%;
    }
    .course_info .bottom_info {
        flex-direction: column;
    }

    .course_info .bottom_info .right {
        margin-top: 10px;
    }

    .filter_letters .letter {
        font-size: 14px;
    }

    .up_side_filter.wrapper {
        border-radius: 8px;
        padding: 8px;
    }

    .buttons_row {
        flex-direction: column;
    }

    .forg_passw {
        margin-top: 16px;
    }

    .f_info {
        width: 100%;
        margin: 0;
    }

    .f_info::after {
        display: block;
        left: -5px;
        height: 80%;
        top: 10%;
        width: 4px;
        border-radius: 0 10px 10px 0;
        opacity: 1;
    }

    .f_info:nth-child(2):after,
    .f_info:nth-child(4):after,
    .f_info:last-child:after {
        display: block;
    }

    .about .about_years_info {
        flex-direction: column;
    }

    .about_years_info .year_info_wrap {
        width: 100%;
    }

    .year_info_wrap br {
        display: none;
    }

    .about_years_info .year_info_wrap .rs_info {
        font-size: 16px;
    }

    .about_years_info .year_info_wrap {
        padding: 10px;
    }

    .about h2 {
        margin-top: 200px;
    }

    .about {
        padding: 50px 0;
    }

    .pag_link {
        font-size: 18px;
        padding: 6px 6px;
    }

    .table_debts .header,
    .table_debts .line {
        grid-template-columns: 49% 49%;
        grid-column-gap: 2%;
    }

    .table_debts .table_footer .table_lines .line {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .table_footer .table_lines .line .see_more_btn {
        width: 80% !important;
        margin-right: auto;
        margin-left: auto;
    }

    .table_books_resulted .line .see_more_btn {
        width: 100% !important;
    }
}

@media (max-width:350px) {
    .text_intr {
        font-size: 16px;
    }

    .about h2 {
        margin-top: 240px;
    }
}

@media (max-width:320px) {

    .header_top_nav .ls_links,
    .main_nav {
        display: flex;
        flex-direction: column;
    }

    .header_mob_top .header_top_item,
    .header_mob_top .dd_group {
        margin: 4px 0;
        min-height: 40px;
    }
}

.header_no_language {
    color: #FFF;
}

.header_no_language {
    margin-top: 150px;
}

.header_no_language {
    position: relative;
}

@media (max-width:1199px) {
    .header_no_language {
        margin-top: 187px;
    }
}

@media (max-width:991px) {
    .header_no_language {
        margin-top: 134px;
        overflow-x: hidden;
    }
}

@media (max-width:575px) {
     .header_no_language {
        margin-top: 123px;
    }
}