/* --------------------------------------------------------------- */
body{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    background-color: white;
}
.preheader .block {
    width: 91%;
}
header .block {
    width: 90%;
}
.block{
    width: 1300px;
}
.block-slider{
    width: 100%;
    overflow-x: hidden;
}
a{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}


@media screen and (max-width: 1400px) {
    .preheader .block {
        width: 99%;
    }
    header .block {
        width: 98%;
    }
    .block{
        width: 1250px;
    }
}
@media screen and (max-width: 1250px) {
    .block{
        width: calc(100vw - 50px);
    }
}
@media screen and (max-width: 950px) {
    .block{
        width: calc(100vw - 20px);
    }
}
*{
    box-sizing: border-box;
}

.btn-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}
.btn-link:hover {
    background-color: #1a252f;
}
.zag {
    text-align: center;
    font-size: 30px;
    color: #2c3e50;
    font-weight: bold;
}
.mini-menu .zag {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .zag {
        font-size: 24px;
    }
}
/* --------------------------------------------------------------- */
.preheader{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f3f3f3;
    overflow: auto;
    max-width: 100vw;
    background: linear-gradient(135deg, #4c5db4b5 0%, #020a2e 100%);
    color: white;
}
.preheader .block{
    display: flex;
    height: 40px;
    align-items: center;

}
.preheader .left{
    padding-left: 10px;
    display: flex;
}
.preheader .center{
    flex-grow: 1;
}
.preheader .right{
    padding-left: 10px;
    display: flex;
    align-items: center;
}
.preheader .switcher{
    display: flex;
}
.preheader .switcher a{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}
.preheader .switcher a:hover{
    background-color: #ebebeb;
    color: #040c31;
}
.preheader .switcher a.active{
    background-color: white;
    cursor: default;
    color: black;
}
.preheader .switcher a:first-child{
    margin-left: -10px;
}
.preheader .enter{
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
} 
.preheader .enter:hover{
    background-color: #ebebeb;
    color: #040c31;
}
@media screen and (max-width: 1300px) {
    .preheader .left .blog{
        display: none;
    }
    .preheader .right{
        display: flex;
    }
}
@media screen and (max-width: 767px) {
    .preheader .left .blog{
        display: none;
    }
    .preheader .right{
        display: none;
    }
}

/* --------------------------------------------------------------- */
header{
    display: flex;
    justify-content: center;
    font-weight: 400;
}
header .block{
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
}
header .left{
    display: flex;
    align-items: center;
}
header .center{
    flex-grow: 1;
}
header .right{
    display: flex;
    flex-direction: column;
}

header .logo{
    display: flex;
    align-items: center;
}
header .logo .pre-logo{
    height: 70px;
}
header .logo img{
    height: 90px;
}
header .logoText{
    padding-left: 15px;
    max-width: 350px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: #2c3e50;
}
header .email{
    font-size: 16px;
}
header .right .btns{
    display: flex;
}
header .right .contacts{
    margin-top: 10px;
    text-align: center;
}
header .right .btn{
    border: 1px solid #e3e3e3;
    padding: 10px;
    text-align: center;
    margin-right: 10px;
}
header .right .btn:last-child{
    margin-right: 0px;
}
header .right .btn:hover{
    background-color: #f7f7f7;
}

@media (max-width: 1300px) {
    header .logo {
        flex-direction: column;
    }
    header .logo .pre-logo {
        height: 40px;
    }
    header .logo img {
        height: 70px;
    }
    header .logoText {
        font-size: 12px;
        width: 70%;
    }

}
/* --------------------------------------------------------------- */
.menu-nav{
    color: #2c3e50;
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-weight: bold;
    width: max-content;
}
.menu-nav .block{
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.menu-nav .item {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.menu-nav .item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: #0056b3;
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-nav .item:hover::after {
    width: 100%;
    left: 0%;
}

.menu-nav .item:hover{
    background-color: rgba(0,0,0,0.1);
    border-radius: 8px;
}

.menu-nav .item-container {
    position: relative;
}

.menu-nav .submenu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4c5db4 0%, #020a2e 100%);
    color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    min-width: 200px;
    max-width: 300px;
    padding: 10px 0;
    flex-direction: column;
}

.menu-nav .item-container:first-child .submenu{
    left: 0px;
    margin-left: 0px;
}
.menu-nav .item-container:last-child .submenu{
    right: 0px;
    margin-left: 0px;
}

.menu-nav .item-container:hover .submenu{
    display: flex;
}

.menu-nav .submenu > a{
    text-align: left;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 0;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-nav .submenu > a:hover{
    background-color: #f8f9fa;
    color: #1a252f;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .menu-nav .item {
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media (max-width: 1300px) {
    .menu-nav .item {
        font-size: 12px;
    }
}
/* --------------------------------------------------------------- */
.sliderHolder{
    display: flex;
    justify-content: center;
    background: #fafafa;
}
.slider-item {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 20px;
    color: white;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(27 33 66 / 95%) 0%, rgba(0, 30, 70, 0) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.slide-title p {
    margin: 0;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start; 
    margin-top: 20px;
}
.slide-button {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.slide-button:hover {
    background: #f0f0f0;
    border-color: #4c5db4;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.slide-button:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
@media (max-width: 1366px) {
    .slide-title {
        font-size: 1.7rem;
        margin: 0;
    }
    .slide-buttons {
        margin-top: 0px;
        justify-content: center;
    }
    .slide-content {
        text-align: center;
    }
}
@media screen and (max-width: 950px) {
    .slider-item{
        height: 300px; 
    }
    .sliderHolder{
        max-width: 100vw;
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .slider-item::before {
        width: 100%;
        background: rgb(0 30 70 / 60%);
    }

    .slide-content {
        text-align: center;
        margin-left: 0;
        padding: 0 20px;
        max-width: 100%;
    }

    .slide-title {
        font-size: 1.2rem;
    }

    .slide-buttons {
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .slide-button {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin: 5px 0;
    }
}
.slick-next:before, .slick-prev:before{
    color: black;
    display: none !important;
}

/* --------------------------------------------------------------- */
.welcomeHolder{
    display: flex;
    justify-content: center;
}
.welcomeHolder .block{
    padding-top: 20px;
    padding-bottom: 20px;
}
.welcomeHolder .zag{
    font-size: 24px;
    margin-bottom: 20px;
}
.welcomeHolder .welcome-text{
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
}
.welcomeHolder .btn{
    border: 1px solid #e3e3e3;
    padding: 10px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    margin-right: 15px;
}
.welcomeHolder .btn:hover{
    background-color: #f7f7f7;
}
/* --------------------------------------------------------------- */
.main-content {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    background-color: #f3f3f3;
}

.main-content .block {
    max-width: 1300px;
    width: 100%;
}

.main-content .content-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.news-column {
    flex: 1;
    min-width: 0;
}

.news-column .zag-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.news-column .read-all {
    display: inline-flex;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.news-column .read-all:hover {
    color: #1a252f;
}

.news-column .read-all i {
    margin-left: 8px;
    font-size: 12px;
}

.news-column .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-template-areas: 
        "big big"
        "small2 small1";
}

.news-column .item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.news-column .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-column .big-item {
    grid-area: big;
    height: 300px;
}

.news-column .small-item {
    grid-area: small1;
    height: 200px;
}

.news-column .small-item:nth-child(2) {
    grid-area: small2;
}

.news-column .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.news-column .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    height: 140%;
    background: linear-gradient(to top, rgb(0 0 0 / 90%), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-column .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.news-column .date {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.announcements-column {
    flex: 0 0 400px;
    border-radius: 8px;
    padding: 0 0 20px 20px;
}

.announcements-column .zag-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.announcements-column .items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcements-column .announcement-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.announcements-column .announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.announcements-column .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcements-column .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.announcements-column .description {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    word-break: break-word;
}

.announcements-column .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.announcements-column .more-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.announcements-column .more-link:hover {
    color: #1a252f;
}

.announcements-column .date {
    font-size: 12px;
    color: #777;
}

.announcements-column .more-news {
    text-align: center;
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 20px;
    }

    .main-content .content-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-column {
        padding: 0 0 20px 0;
    }

    .news-column .text {
        font-size: 13px;
    }

    .news-column .items {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "big"
            "small1"
            "small2";
    }
    
    .news-column .big-item {
        height: 200px;
    }
    
    .news-column .small-item {
        height: 150px;
    }

    .announcements-column {
        flex: 1;
        width: 100%;
        max-width: none;
        padding: 0 0 20px 0;
    }
    
    .news-column .overlay {
        height: 180%;
    }

    .announcements-column .announcement-item {
        padding: 15px;
    }
    
    .announcements-column .title {
        font-size: 14px;
    }
    
    .announcements-column .description {
        font-size: 12px;
    }
    .announcements-column .more-news a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-column .big-item {
        height: 150px;
    }
    
    .news-column .small-item {
        height: 150px;
    }
}
/* --------------------------------------------------------------- */
.reviewHolder {
    padding-top: 20px;
    padding-bottom: 30px; 
    display: flex;
    justify-content: center;
    background-color: #fafafa;
}

.reviewHolder .block {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.reviewHolder .sliderreview {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 20px 0 auto;
}

.reviewHolder .slick-initialized .slick-slide {
    margin-right: 20px;
}

.sliderreview .slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.sliderreview .slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background: linear-gradient(0deg, rgb(27 33 66 / 95%) 0%, rgba(0, 30, 70, 0) 100%);
    z-index: 1;
}
.sliderreview .image{
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.sliderreview .slide-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}

.sliderreview .slide-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 200%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.sliderreview .slide-title{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 2;
    margin: 0;
}

@media (max-width: 768px) {
    .reviewHolder .zag{
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .sliderreview .slider-item {
        height: 150px;
        margin-right: 10px;
    }
    
    .sliderreview .slide-title{
        font-size: 16px;
        max-width: 90%;
    }
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .sliderreview .slider-item {
        height: 120px;
    }
    
    .sliderreview .slide-title{
        font-size: 14px;
    }
}
/* --------------------------------------------------------------- */
.videoHolder {
    padding-top: 20px;
    padding-bottom: 30px; 
    display: flex;
    justify-content: center;
    background-color: #f3f3f3;
}

.videoHolder .block {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.videoHolder .sliderVideo {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 20px 0 auto;
}

.videoHolder .slick-initialized .slick-slide {
    margin-right: 20px;
}

.sliderVideo .slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.sliderVideo .slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background: linear-gradient(0deg, rgb(27 33 66 / 95%) 0%, rgba(0, 30, 70, 0) 100%);
    z-index: 1;
}
.sliderVideo .image{
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.sliderVideo .slide-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}

.sliderVideo .slide-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 200%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.sliderVideo .slide-title{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 2;
    margin: 0;
}



@media (max-width: 768px) {
    .videoHolder .zag{
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .sliderVideo .slider-item {
        height: 150px;
        margin-right: 10px;
    }
    
    .sliderVideo .slide-title{
        font-size: 16px;
        max-width: 90%;
    }
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .sliderVideo .slider-item {
        height: 120px;
    }
    
    .sliderVideo .slide-title{
        font-size: 14px;
    }
}
/* --------------------------------------------------------------- */
.menu-block {
    display: flex;
    justify-content: center;
    background-color: #fafafa;
    padding: 40px 20px;
}

.menu-block .block {
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.menu-block .btn-container {
    position: relative;
}

.menu-block .zag-row {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
    height: 100%;
}


.menu-block .all-links-btn {
    display: flex;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
}

.menu-block .all-links-btn:hover {
    background-color: #1a252f;
}

.menu-block .all-links-btn i {
    margin-left: 8px;
    font-size: 12px;
}

.menu-block .featured-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.menu-block .featured-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 150px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #2c3e50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 20px;
    text-align: center;
}

.menu-block .featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.menu-block .featured-item .icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.menu-block .featured-item:hover .icon-circle {
    background-color: #e9ecef;
}

.menu-block .featured-item img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.menu-block .featured-item .text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    word-break: break-word;
}

.menu-block .all-links-dropdown {
    display: none;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    width: 280px;
    position: absolute;
    z-index: 98;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.menu-block .all-links-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-block .all-links-dropdown li {
    margin-bottom: 8px;
}

.menu-block .all-links-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #2c3e50;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.menu-block .all-links-dropdown a:hover {
    background-color: #f8f9fa;
    color: #1a252f;
}

.menu-block .all-links-dropdown.active {
    display: block;
}

@media (max-width: 1366px) {
    .menu-block .featured-item {
        width: 155px;
        padding: 10px;
    }
    .menu-block .zag-row {
        align-items: flex-start;
    }
    .menu-block .zag-row .zag {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .menu-block .block {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-block .zag-row {
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    .menu-block .zag {
        margin-right: 10px;
    }
    
    .menu-block .all-links-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .menu-block .featured-items {
        gap: 15px;
    }
    
    .menu-block .featured-item {
        width: calc(50% - 10px);
        height: auto;
        padding: 15px;
    }
    
    .menu-block .featured-item .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .menu-block .featured-item img {
        max-width: 28px;
        max-height: 28px;
    }
    
    .menu-block .all-links-dropdown {
        width: 300px;
        left: -85%;
    }
}

@media (max-width: 480px) {
    .menu-block .featured-item {
        width: calc(50% - 10px);
    }
}
/* --------------------------------------------------------------- */
footer {
    background: linear-gradient(135deg, #4c5db4b5 0%, #020a2e 100%);
    color: white;
    padding: 40px 20px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    align-items: start;
}

.footer-left {
    flex-shrink: 1;
    width: 265px;
    display: flex;
    flex-direction: column;
}

.footer-left .logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-left .logoText {
    text-align: left;
}

.footer-left .logo img {
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-left .contacts {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.footer-left .contacts a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.4);
    transition: all 0.2s ease;
}

.footer-left .contacts a:hover {
    color: #e6f0ff;
    border-bottom-color: #e6f0ff;
}

.footer-columns {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 1;
    flex-direction: row;
    justify-content: space-evenly;
}

.footer-columns .column {
    min-width: 180px;
}

.footer-columns .column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    color: white;
    letter-spacing: 0.5px;
    margin-block-start: 0;
}

.footer-columns .column h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-columns .column h3:hover::after {
    width: 50px;
}

.footer-columns .column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-columns .column li {
    margin-bottom: 10px;
}

.footer-columns .column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 8px;
}

.footer-columns .column a::before {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-5px);
}

.footer-columns .column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-columns .column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
@media screen and (max-width: 1366px) {
    .footer-columns {
        gap: 5px;
        justify-content: space-between;
    }
    .footer-left {
        width: 305px;
    }
    .footer-left .logoText {
        width: 150px;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .footer-left {
    flex-direction: row;
  }
}

@media screen and (min-width: 769px) and (max-width: 1366px) and (orientation: landscape) {
  .footer-left {
    flex-direction: column;
  }
}


@media screen and (max-width: 768px) and (orientation: portrait) {
  .footer-left {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .footer-left {
    flex-direction: row;
  }
}


@media screen and (min-width: 800px) and (max-width: 1100px) and (orientation: portrait) {
    .footer-left {
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) and (max-width: 820px) and (orientation: portrait) {
  .footer-left {
    flex-direction: row;
  }
}


@media screen and (max-width: 950px) {
    footer {
        padding: 20px 20px 40px;
    }
    .footer-left .logo img {
        margin-bottom: 0px;
    }
    .footer-container {
        flex-direction: column;
        gap: 0px;
    }
    
    .footer-left {
        width: 100%;
        /*text-align: center;*/
    }
    
    .footer-left .logo {
        margin-bottom: 25px;
    }
    
    .footer-columns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-columns .column {
        min-width: 150px;
        flex: 1 1 150px;
        padding: 10px 0;
    }
    
    .footer-columns .column h3 {
        font-size: 15px;
        padding-bottom: 6px;
    }
}

@media screen and (max-width: 600px) {
    .footer-container {
        padding: 10px 15px 30px;
        gap: 30px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-columns .column {
        min-width: 100%;
        flex: none;
    }
    
    .footer-columns .column h3::after {
        width: 100%;
    }
    
    .footer-columns .column h3:hover::after {
        width: 30px;
    }
}
/* --------------------------------------------------------------- */
.rector{
    display: flex;
    justify-content: center;
    border-top: 2px solid #545f93;
}
.rector .block{
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 1000px;
    align-items: center;
}
.rector .left{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.rector .left img{
    max-height: 300px;
}
.rector .right{
    flex-grow: 1;
    padding-left: 50px;
}
.rector .right .zag{
    font-size: 24px;
    margin-bottom: 15px;
}
.rector .right .text{
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
}
.rector .right .btns{
    margin-top: 20px;
}
.rector .right .btn{
    border: 1px solid #e3e3e3;
    padding: 10px;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
} 
.rector .right .btn:hover{
    background-color: #f7f7f7;
}
@media screen and (max-width: 950px) {
    .rector .block{
        flex-direction: column;
    }
    .rector .left img{
        max-width: 300px;
        width: calc(100vw - 50px);
    }
    .rector .right{
        padding-left: 0px;
        padding-top: 20px;
        width: 100%;
    }
}
/* --------------------------------------------------------------- */
.mobileTop{
    display: none;
    background-color: white;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 50px;
    width: 100%;
    color: black;
    box-shadow: 0 0px 7px 0 rgb(0 0 0 / 44%);
    z-index: 100;
}
.mobileTop .left{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mobileTop .right{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.mobileTop .center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}
.mobileTop .pre-logo{
    max-height: 30px;
    margin-right: 5px;
}
.mobileTop img{
    max-height: 35px;
}
.mobileTop .logo-text{
    font-size: 18px;
    margin-left: 10px;
    font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    header, .menu-nav {
        display: none;
    }
    .mobileTop {
        display: flex;
    }
    body {
        padding-top: 50px;
    }
}

@media screen and (max-width: 950px) {
    header, .menu-nav{
        display: none;
    }
    .mobileTop{
        display: flex;
    }
    body{
        padding-top: 50px;
    }
}
/* --------------------------------------------------------------- */
.drawer{
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    background-color: white;
}
.tss-label{
    display: none !important;
}
.drawer .header{
    height: 120px;
    width: 100%;
    background-color: #e2e2e2;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.drawer .header img{
    pointer-events: none;
    height: 70px;
}
.drawer .header .logoText{
    color: black;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}
.drawer .menu{
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    max-height: calc(100vh - 160px);
    overflow: auto;
}
.drawer .menu a{
    color: rgba(0,0,0,0.87);
    display: block;
    font-size: 12px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}

.drawer .menu .mobile-social {
    display: flex;
    align-items: center;
    color: rgba(0,0,0,0.87);
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    gap: 10px;
}

.drawer .menu .mobile-social a {
    padding: 0px;
}

@media screen and (max-height: 610px) {
    .drawer .menu a{
        height: 42px;
        line-height: 42px;
    }
}
.drawer .menu a:hover {
    background-color: rgba(0,0,0,0.05);
}
.drawer .copy{
    color: gray;
    width: 100%;
    text-align: center;
    left: 0px;
    bottom: 15px;
    font-size: 12px;
  
}
body.activeSlider{
    overflow: hidden;
}
@media screen and (min-width: 950px){
    .drawerItem {
        display: none !important;
    }
}
/* --------------------------------------------------------------- */
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    display: flex;
    justify-content: center;
    flex-grow: 1;
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #545f93;
}
.content-block{
    display: flex;
}
.content-block .left{
    flex-shrink: 0;
}
.content-block .right{
    flex-grow: 1;
}
.content-block .mini-menu{
    margin-right: 20px;
    width: 250px;
    top: 0px;
    margin-bottom: 20px;
    background-color: white;
}
.content-block .mini-menu:last-child{
    margin-bottom: 0px;
    position: sticky;
}
.content-block .mini-menu .zag{
    background-color: #4c5db4;
    color: white;
    padding: 10px;
}
.content-block .mini-menu .items{
    border: 1px solid #e7e7e7;
}
.content-block .mini-menu .items a{
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.content-block .mini-menu .items a.active{
    font-weight: 600;
}
.content-block .mini-menu .items a:hover{
    background-color: #f4f4f4;
}
.content-block .page-zag{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
@media screen and (max-width: 950px){
    .content-block{
        flex-direction: column;
    }
    .content-block .left{
        padding-top: 20px;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content-block .mini-menu{
        margin-right: 0px;
    }
}
/* --------------------------------------------------------------- */
.page{
    background-color: white;
}
/* --------------------------------------------------------------- */
.news-zag{
    font-size: 24px;
    margin-bottom: 15px;
}
.news .block{
    max-width: 1300px;
}
.news .item{
    display: flex;
    width: 100%;
    margin-top: 25px;
    position: relative;

    border: 1px solid #e3e3e3;
    align-items: center;
}
.news .item .image{
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center center;
    flex-shrink: 0;
}
.news .item.empty .image{
    background-size: 80%;
    background-repeat: no-repeat;
}
.news .item .item-data{
    flex-grow: 1;
    padding: 20px;
    padding-bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.news .item .item-data .text{
    font-size: 18px;
    font-weight: 500;
}
.news .item .item-data .opis{
    margin-top: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}
.news .item .item-data .more{

}
.news .item:hover .item-data .more{
    text-decoration: underline;
}
.news .item .item-data .date{
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 5px;
}
@media screen and (max-width: 950px){
    .news .item.empty .image{
        background-size: 50%;
    }
}
/* --------------------------------------------------------------- */
.pages{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.pages > div{
    display: flex;
    align-items: center;
}
.pages > div > a{
    padding: 10px;
    color: #ababab
}
.pages > div > a:hover{
    color: black;
}
.pages > div > a.active{
    color: black;
}
.pages > div > div{
    padding: 5px;
    color: #ababab
}

@media screen and (max-width: 950px){
    .news .item{
        flex-direction: column;
    }
    .news .item .image{
        width: 100%;
        max-width: 400px;
        height: 200px;
    }
}
/* --------------------------------------------------------------- */
.contentPart{
    word-break: break-word;
    text-align: left;
    
}
.contentPart a{
    text-decoration: underline;
}
.contentPart p, .contentPart span{
    padding-left: 0px !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    line-height: 115% !important;
}
.contentPart img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 100%;
    max-height: 900px;
    object-fit: contain; 
}
.contentPart iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.contentPart table{
    width: auto !important;
}
.contentPart .government-link {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.contentPart .government-link a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contentPart .government-link img{
    margin-left: 0;
    margin-right: 0;
    width: 110px;
    height: 110px;
    object-fit: contain;
}
@media screen and (max-width: 950px){
    .contentPart{
        max-width: 100vw;
        overflow: auto;
    }
    .contentPart img{       
        width: auto !important;
        height: auto !important;
    }
}
/* --------------------------------------------------------------- */
.page-nav{
    margin-bottom: 20px;
}
.page-nav a{

}
.page-nav a:hover{
    text-decoration: underline;
}
.news .item .item-data .opis{
    word-break: break-word;
}
/* --------------------------------------------------------------- */
.faqBlock > div{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.faq {
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}
.faq .question{
    cursor: pointer;
    padding: 20px;
}
.faq.active .question{
    border-bottom: 1px solid lightgrey;
}
.faq .question i{
    display: inline-block;
    margin-left: 0px;
    vertical-align: middle;
    font-size: 18px;
    line-height: 14px;
}
.faq .question:hover{
    background-color: rgba(0,0,0,0.01);
}
.faq:not(.active) .question-full, .faq:not(.active) .answer{
    display: none;
}
.faq .question-full{
    padding: 20px;
    padding-top: 0px;
    padding-top: 20px;
    padding-bottom: 5px;
    line-height: 24px;
    font-size: 14px;
}
.faq .answer{
    padding: 20px;
    padding-top: 0px;
    line-height: 24px;
    font-size: 14px;
}
.faq.active i:before{

}
.faq:last-child{
    margin-bottom: 0px;
}
/* --------------------------------------------------------------- */
.modalBlock{
    position: fixed;
    left: 0px;
    top: 0px;
    overflow: auto;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background-color: rgba(0,0,0,0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
    cursor: pointer;

    z-index: 999;
}
.modalBlock.active{
    display: flex;
}
.modal{
    max-width: 500px;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    cursor: default;
    position: relative;

    margin-top: 50px;
    margin-bottom: 50px;
}
.modal-zag{
    font-size: 16px;
    padding: 20px;
    border-bottom: 1px solid lightgray;
}
.modal-data{
    padding: 20px;
}
.modal input, .modal textarea{
    width: 100%;
    font-size: 14px;
    padding: 12px 12px;
    display: block; 
    margin-bottom: 20px;
    border: none;
    border: 1px solid lightgray;
    font-family: 'Roboto', sans-serif;
}
.modal textarea{
    min-height: 150px;
}
.modal .btns{
    display: flex;
}
.modal .btns .left{

}
.modal .btns .center{
    flex-grow: 1;
}
.modal .btns .right{

}
.modal .btn{
    padding: 10px;
    border: 1px solid lightgray;
    cursor: pointer;
    user-select: none;
}
.modal .btn:hover{
    background-color: rgba(0,0,0,0.02);
}
.modal .btn-primary{
    background-color: #4c5db4;
    color: white;
}
.modal .btn-primary:hover{
    background-color: #24306e;  
}
.modal .close{
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 10px;
    font-size: 18px;
    color: gray;
}
.modal .close:hover{
    cursor: pointer;
}
/* --------------------------------------------------------------- */

@media screen and (min-width: 950px){
    .rector .block{
        display: block;
    }
    .rector .left{
        float: left;
    }
    .rector .right{
        padding-left: 0px;
    }
    .rector .left img{
        margin-right: 20px;
        margin-bottom: 20px;
    }
}
/* --------------------------------------------------------------- */
.search-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0 10px 0;
}

.search-container .block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
}

.search-container .zag {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
    font-weight: bold;
}

.search-form {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.search-form input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
}

.search-form button {
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
}

.search-form button:hover {
    background-color: #1a252f;
}

.search-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.search-result h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #2c3e50;
}

.search-result h3 a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.search-result h3 a:hover {
    color: #3498db;
    text-decoration: underline;
}

.result-content {
    font-size: 14px;
    color: #34495e;
    line-height: 1.5;
    margin: 0;
}

.no-results {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.result-type {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .search-container .zag {
        font-size: 24px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        align-self: stretch;
    }

    .search-result h3 {
        font-size: 16px;
    }

    .result-content {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .search-container .zag {
        font-size: 20px;
    }

    .search-result {
        padding: 12px;
    }

    .search-result h3 {
        font-size: 15px;
    }
}