* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { overflow-x: hidden; }

@-moz-document url-prefix() {
    html {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

html::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

:root {
    --primary-color: #BA9B74;
    --secondary-color: #302E2F; 
    --tertiary-color: ;
    --text-color: #555555;
    --grey-bg: #DCDCDC;
    --grey-bg1: #F5F5F5;
    --hover-color: ;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content, .content1 {
    display: flex;
    width: 100%;
    max-width: 1088px; 
}

.content1 { flex-direction: column; }

header {
    background: url('../images/header-bg.png') no-repeat center center / cover;
    min-height: 210px;
    position: relative;
    z-index: 1001;
    &::before {
        content: '';
        background: linear-gradient(180deg, #262626 0.00%, rgba(41,41,41,0.65) 100.00%);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.sticky-header {
    background: rgba(38, 38, 38, 0.97);
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1300px;
    width: 100%;
}

.header-content {
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    hr {
        border-color: #484848;
        opacity: 1;
        width: 100%;
        margin: 25px 0;
    }
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    img {
        width: 72px;
        object-fit: contain;
    }
}

.socials {
    display: flex;
    gap: 10px;
    > a {
        background: rgba(213,213,213,0.16);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        width: 25px; height: 25px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn, .header-actions > a {
    background: transparent;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 50px; height: 50px;
    &::before {
        content: "";
        background: transparent;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        position: absolute; inset: 0;
        transition: all 0.3s ease;
        z-index: 1;
    }
}

.header-actions > a { 
    color: white;
    text-decoration: none;
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-right: 10px;
    width: 120px; 
}

.search-btn:hover::before, .header-actions > a:hover::before {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--text-color);
    transform: scale(0.9); 
}

.lang-change {
    display: flex;
    gap: 15px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        &.active, &:hover { color: var(--primary-color); }
    }
}

.menu {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    position: relative;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    transition: all 0.3s ease;
    > a {
        color: white;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        text-decoration: none;
        padding-bottom: 40px;
        transition: all 0.3s ease;
    }
}

.menu-item:hover {
    > a { color: var(--primary-color); }
    > div { display: grid; }
}
.menu-item.active > a { color: var(--primary-color); }

.menu-item > div {
    background: rgba(35, 35, 35, 0.92);
    display: none;
    column-gap: 30px;
    list-style: none;
    padding: 20px 20px 25px;
    margin: 0;
    position: absolute;
    top: 60px; left: calc(544px - 50vw);
    z-index: 1000;
    width: 100vw;
    padding: 35px calc(50vw - 544px) 65px;
    a {
        color: white;
        text-decoration: none;
        font: 16px 'Helvetica Roman';
        line-height: 19px;
        transition: all 0.3s ease;
    }
    p {
        color: var(--primary-color);
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 20px;
    }
}

.menu-item:first-child > div {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
}

.menu-item:nth-child(3) > div,  .menu-item:nth-child(2) > div,.menu-item:nth-child(4) > div,
.menu-item:nth-child(5) > div, .menu-item:nth-child(6) > div,
.menu-item:nth-child(7) > div {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
}

.menu-item:nth-child(2) > div > div {
    display: flex;
    > div { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
        row-gap: 30px;
        width: 50%; 
    }
}

.menu-item:nth-child(4) > div > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    p { margin-bottom: 0; }
}

.search-form {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -531px;
    height: 531px;
    left: 20%;
    right: 20%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 2000;
}

.search-form.active {
    top: 0;
    left: 0;
    right: 0;
}

.search-form-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 850px;
    > div {
        display: flex;
        justify-content: flex-end;
    }
    > p {
        color: black;
        text-align: center;
        font: 20px 'Helvetica Medium';
        line-height: 24px;
        margin-bottom: 100px;
    }
}

.search-form-cont button {
    background: transparent;
    border: none;
}

.search-form-cont input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #CFCFCF;
    color: #707070;
    font: 16px 'Helvetica Medium';
    line-height: 22px;
    padding-bottom: 19px;
    &::placeholder { color: #707070; }
    &:focus { outline: none; }
}

footer {
    background: var(--secondary-color);
    padding: 40px 20px !important;
    hr {
        border-color: var(--text-color);
        margin: 35px calc(544px - 50vw);
        opacity: 1;
    }
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.footer-contact {
    width: 100%;
    max-width: 580px;
    > p {
        color: white;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-bottom: 10px; 
    }
    > div {
        display: flex;
        gap: 5%;
    }
}

.contact-item, .info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    span:first-child {
        color: var(--primary-color);
        font: 10px 'Helvetica Medium';
        line-height: 13px;
    }
    a, span:last-child {
        color: white;
        text-decoration: none;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
}

.info-item {
    margin-bottom: 20px;
    a, div, span:last-child {
        color: black;
        text-decoration: none;
        font: 12px 'Helvetica Roman';
        line-height: 15px;
    }
}
.info-item div:hover, .info-item span:last-child:hover { color: black; }

.footer-bottom {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.copyright, .creator {
    color: white;
    font: 12px 'BPG Arial';
    line-height: 14px;
    a {
        color: var(--primary-color);
        text-decoration: none;
    }
}

.banner-swiper {
    width: 100%;
    margin-top: -210px;
    z-index: 1000 !important;
    img, video {
        width: 100%;
        height: 700px;
        object-fit: cover;
    }
}

.banner-slide {
    position: relative;
    z-index: 1;
    &::before {
        content: '';
        background: linear-gradient(180deg, #262626 0.00%, rgba(41,41,41,0.65) 100.00%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }
}

.swiper1 .swiper-pagination-bullet {
    background: #DBDBDB;
    border-radius: 50%;
    color: white;
    width: 15px;
    height: 15px;
    opacity: 1;
}
.swiper1 .swiper-pagination-bullet-active { background: var(--primary-color); }

.news-prev { padding: 55px 20px; }
.prev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    margin-bottom: 35px;
    p {
        border-bottom: 2px solid var(--primary-color);
        color: black;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 0;
        margin-left: 43.5%;
    }
    > a {
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        color: var(--text-color);
        text-decoration: none;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        padding: 16px 25px;
        transition: all 0.3s ease;
        &:hover {
            background: #F2F1F1;
            border-color: var(--grey-bg);
            padding: 13px 25px;
        }
    }
}

.news-swiper { 
    width: 100% !important;
    padding-bottom: 65px !important;
}

.swiper-slide.news-card { width: 343px !important; }

.img-cont {
    border-radius: 10px;
    width: 100%;
    height: 247px;
    overflow: hidden;
    margin-bottom: 15px;
    img {
        border-radius: 10px;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
}

.date {
    color: var(--primary-color);
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    margin-bottom: 15px;
}

.news-card {
    color: unset;
    text-decoration: none;
    .name {
        display: -webkit-box;
        font: 20px 'Helvetica Medium';
        line-height: 24px;
        line-clamp: 2;
        height: 48px;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 25px;
    }
}

.news-card:hover {
    .img-cont img { transform: scale(1.1); }
    .learn-more {
        background: var(--primary-color);
        color: white;
    }
}

.learn-more {
    background: var(--grey-bg1);
    border-radius: 3px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    width: 140px; height: 45px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        color: white;
    }
}

.links-prev { padding: 80px 20px; }
.important-links {
    display: grid;
    grid-template-columns: 427fr 237fr 139fr 237fr;
    grid-template-rows: 240px 240px;
    gap: 20px;
    width: 100%;
    max-width: 1088px;
}

.important-link {
    border-radius: 10px;
    color: unset;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    img {
        border-radius: 10px;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    &:hover img { transform: scale(1.1); }
}

.important-link:first-child { grid-row: span 2; }
.important-link:nth-child(2) { grid-column: span 2; }
.important-link:nth-child(5) { grid-column: span 2; }

.tag {
    background: var(--grey-bg);
    border-radius: 10px;
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    padding: 15px 20px;
    position: absolute;
    right: 20px; bottom: 20px;
}

.page-nav, .collection-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    a {
        color: black;
        text-decoration: none;
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 13px;
    }
    i { font-size: 7px; margin-top: -3px; }
}

.manuscript-cont { padding: 20px 20px 100px; }

.structure-cont {
    background: #F0F0E8;
    padding: 20px 20px 0;
}

.structure-content {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 50px;
    min-height: 55vh;
    > p:first-child {
        color: var(--primary-color);
        -webkit-text-stroke: 1px var(--primary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 20px;
    }
}

.struct-item {
    border-bottom: 1px solid var(--grey-bg);
    padding: 30px 0 10px;
}

.struct-head {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 21px;
    transition: all 0.3s ease;
    padding-bottom: 20px;
    span:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
    }
    span:last-child {
        color: var(--primary-color);
        -webkit-text-stroke: 1px var(--primary-color);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
    }
}

.answer {
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
    width: 100%;
}

.answer-content {
    padding: 50px 60px 60px 30px; 
    hr {
        border-color: var(--grey-bg);
        opacity: 1;
        margin: 0 0 40px 0;
    }
    hr:last-child { display: none; }
    .member-name, > p:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 30px;
    }
}

.member-link {
    background: var(--primary-color);
    border-radius: 7px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 180px; height: 45px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    &:hover { background: var(--secondary-color); }
}

.public-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    min-height: 40vh;
    > p:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 40px;
        max-width: 240px;
    }
}

.public-info-list {
    display: flex;
    flex-direction: column;
    width: calc(100% - 300px);
    gap: 50px;
    max-width: 756px;
    padding-top: 50px;
}

.public-info-item {
    border-bottom: 1px solid #DEDEDE;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 18px 'Helvetica Bold';
    line-height: 22px;
    display: flex;
    position: relative;
    padding-bottom: 25px;
    width: 100%; height: 113px;
    span { max-width: calc(100% - 95px); 
    }
}

.see-more {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 30px; top: 0;
    width: 69px; height: 69px;
    transition: all 0.3s ease;
}

.public-info-item:hover .see-more { right: 0; }

.public-info-page, .current-conference { 
    width: calc(100% - 300px); 
    max-width: 765px;
}

.public-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    > span {
        color: var(--primary-color);
        font: 20px 'Helvetica Bold';
        line-height: 24px;
    }
}

.year-filter {
    display: flex;
    align-items: center;
    gap: 20px;
    > span {
        color: var(--text-color);
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
    }
    > div {
        position: relative;
    }
}

.select-head, .select-head1 {
    background: var(--grey-bg1);
    border-radius: 5px;
    cursor: pointer;
    font: 12px 'helvetica Medium';
    line-height: 15px;
    padding: 0 20px 0 30px;
    width: 293px; height: 50px;
}

.year-select {
    box-shadow: 0 3px 10px rgba(0,0,0,0.14);
    background: white;
    border-top: 1px solid var(--primary-color);
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 40px 40px;
    position: absolute;
    top: 100%; right: 0;
    width: 330px;
    z-index: 1;
    input { display: none; }
    label {
        color: var(--text-color);
        cursor: pointer;
        font: 18px 'Helvetica Medium';
        line-height: 24px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
    &::before {
        content: '';
        background: var(--primary-color);
        position: absolute;
        width: 255px; height: 1px; 
        left: 40px; bottom: 75px;
    }
}

.year-select.active { display: grid; }

.year-select > div.active label {
    color: var(--primary-color);
}

.year-select > div:last-child { grid-column: span 4; }

.public-info-list1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 40px;
}

.public-info-item1 {
    border-bottom: 1px solid #DEDEDE;
    color: black;
    text-decoration: none;    
    position: relative;
    width: 100%; min-height: 151px;
    .see-more { top: 20px; }
    &:hover .see-more { right: 0; }
}

.public-info-desc {
    max-width: calc(100% - 140px);
    > p:first-child {
        color: #505050;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        margin-bottom: 15px;
    }
    .name {
        font: 18px 'Helvetica Bold';
        line-height: 22px;
        margin-bottom: 20px;
    }
    .intro {
        display: -webkit-box;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        line-clamp: 2;
        height: 34px;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.current-info {
    width: calc(100% - 300px);
    max-width: 765px;
    .public-info-item1 { 
        padding: 30px 0 40px;
        margin-bottom: 20px;
    }
}

.current-info .public-info-desc { 
    max-width: calc(100% - 90px); 
    .intro {
        line-clamp: unset;
        height: unset;
        overflow: unset;
        -webkit-line-clamp: unset;
    }
}

.pagination {
    display: flex;
    gap: 5px;
    button {
        background: white;
        border: 1px solid #C6C6C6;
        border-radius: 5px;
        color: #8E8E8E;
        font: 13px 'BPG Mrgvlovani Caps 2010';
        line-height: 18px;
        width: 50px; height: 50px;
        transition: all 0.3s ease;
        &:hover, &.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
    }
}

.info-pdf {
    background: var(--primary-color);
    border-radius: 50%;
    width: 60px; height: 60px;
    position: absolute;
    right: 0; top: 90px;
    transition: all 0.3s ease;
    &:hover { background: var(--text-color); }
}

.share {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.go-back {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    transition: all 0.3s ease;
    p { margin-bottom: 0; }
    div { display: none; }
    &:hover {
        color: var(--primary-color);
        -webkit-text-stroke-color: var(--primary-color);
    }
}

.go-back1 {
    background: var(--primary-color);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    width: 180px; height: 45px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
        color: white;
    }
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    span {
        color: var(--secondary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
    div {
        background: var(--grey-bg1);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        width: 35px; height: 35px;
        transition: all 0.3s ease;
        img { width: 7px; filter: brightness(0) invert(0); transition: all 0.3s ease; }
        &:hover {
            background: var(--secondary-color);
            color: white;
            img { filter: brightness(0) invert(1); }
        }
    }
}

.copy-link.copied { transform: scale(1.2); }

.page-title, .archive-title {
    color: var(--primary-color);
    -webkit-text-stroke: 1px var(--primary-color);
    text-align: center;
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    margin-bottom: 35px;
}

.media-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    .page-title { margin-bottom: 0; }
}

.datepicker { position: relative; }
.datepicker img {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

#rangeDate {
    background: var(--grey-bg1);
    border: none;
    border-radius: 5px;
    color: black;
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    width: 345px;
    height: 50px;
    padding-left: 30px;
    &:focus { outline: none; }
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.media {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.curr-media {
    background: #F9F9F9;
    border-radius: 20px;
    color: black;
    padding: 50px 40px;
    width: 64.8%;
    > p:first-child {
        font: 10px 'BPG Mrgvlovani';
        line-height: 13px;
        margin-bottom: 17px;
    }
    .name {
        font: 20px 'BPG Mrgvlovani Caps 2010';
        line-height: 24px;
        -webkit-text-stroke: 0.5px black;
        margin-bottom: 22px;
    }
    .text {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 30px;
        * { font-family: "BPG Mrgvlovani" !important; }
        b, strong { font-weight: bold !important; }
    }
    .files { margin-bottom: 40px; }
}

.curr-media hr, .current-conference hr, .curr-publication-text hr {
    border-color: #EAEAEA;
    opacity: 1;
    margin: 40px 0 30px;
}

.files {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file {
    background: white;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    &:hover { background: #F5CE9D; }
    div {
        background: var(--primary-color);
        border-radius: 50%;
        width: 26px; height: 26px;
        img { width: 11px; }
    }
    span { max-width: calc(100% - 40px); }
}

.gallery-swiper-cont { 
    position: relative; 
    min-height: 105px;
    width: 100%;
}

.gallery-swiper { width: calc(100% - 15px) !important; }

.gallery-slide {
    width: 145px !important;
    height: 105px !important;
    img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.prev-img, .next-img {
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.16);
    color: #8E8E8E;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%; z-index: 2;
    transform: translateY(-50%);
}

.prev-img { 
    left: -15px; 
    &:hover { left: -20px; }
}
.next-img { 
    right: -15px; 
    &:hover { right: -20px; }
}

.other-media {
    width: calc(35.2% - 40px);
    > p {
        color: black;
        font: 20px 'Helvetica Medium';
        line-height: 24px;
        margin-bottom: 25px;
    }
    > div {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.international-relations > img, .friends-page > img {
    border-radius: 10px;
    width: 515px;
    height: auto;
    object-fit: cover;
    margin-left: 30px;
    float: right;
}

.content-text {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    text-align: justify;
    * { font-family: 'Helvetica Roman'; }
    b, strong { font-weight: bold; }
    h1 {
        color: var(--primary-color);
        -webkit-text-stroke: 1px var(--primary-color);
        text-align: center;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: normal;
        line-height: 26px;
        margin-bottom: 35px;
        height: 26px !important;
    }
}

.friends-page {
    margin-bottom: 55px;
    > img {
        border-radius: 0;
        margin-left: 90px;
        width: 475px;
    }
}

.information {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.faq-head {
    background: var(--grey-bg);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 30px;
    transition: all 0.3s ease;
    div {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: var(--text-color);
        font-size: 9px;
        width: 25px; height: 25px;
        transition: all 0.3s ease;
        i { transition: all 0.3s ease; }
    }
    span { max-width: calc(100% - 40px); }
}

.faq-item.show .faq-head {
    background: var(--primary-color);
    color: white;
    div i { transform: rotate(180deg); color: white; }
}

.faq-answer {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
    width: 100%;
}
.faq-answer-content { padding: 20px 30px 30px 20px; }

.inner-contact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    .contact-info { width: calc(100% - 340px); }
    iframe {
        border-radius: 10px;
        width: 320px;
        height: 100%;
        min-height: 305px;
    }
}

.contact-info {
    background: #F9F9F9;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 35px 35px 45px;
    > p:first-child {
        color: var(--primary-color);
        font: 16px 'Helvetica Bold';
        line-height: 24px;
        margin-bottom: 0;
    }
    > p:nth-child(2) {
        color: #4B4B4B;
        font: 12px 'Helvetica Medium';
        line-height: 20px;
        margin-bottom: 0;
    }
}

.contact-info > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
}

.contact-info > div div {
    display: flex;
    flex-direction: column;
    span:first-child {
        color: #4B4B4B;
        font: 12px 'Helvetica Medium';
        line-height: 20px;
    }
    span:last-child, a {
        color: var(--secondary-color);
        text-decoration: none;
        font: 16px 'Helvetica Medium';
        line-height: 24px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
    span:last-child {
        display: flex;
        flex-direction: column;
    }
}

.media-items {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 65px;
}

.media-item {
    background: var(--grey-bg1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px; height: 155px;
    transition: all 0.3s ease;
    div {
        border-radius: 50%;
        width: 76px; height: 76px;
        transition: all 0.3s ease;
    }
    img { filter: brightness(0) invert(1); transition: all 0.3s ease; }
}

.media-item:first-child div { background: #0053A7; }
.media-item:last-child div { background: #FE3A44; }

.media-item:hover {
    div { background: white; }
    img { filter: unset; }
}

.media-item:first-child:hover { background: #0053A7; }
.media-item:last-child:hover { background: #FE3A44; }

.media-item:nth-child(2), .media-item:nth-child(2) div {
    position: relative;
    overflow: hidden;
}

.media-item:nth-child(2)::before, .media-item:nth-child(2) div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/insta-bg.png') no-repeat center center / cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.media-item:nth-child(2):hover::before, .media-item:nth-child(2) div::before { opacity: 1; }
.media-item:nth-child(2):hover {
    div {
        background: white;
        &::before { opacity: 0; }
    }
    img { filter: unset; }
}


.media-swiper {
    width: 100%;
    height: 415px !important;
    > img {
        width: 630px;
        height: 100%;
        object-fit: cover;
    }
}

.media-slide {
    color: black;
    display: flex !important;
    div {
        background: var(--grey-bg1);
        padding: 30px 35px;
        position: relative;
        width: calc(100% - 630px);
    }
    p:first-child, p:nth-child(2) {
        font: 24px 'Helvetica Bold';
        line-height: 29px;
        margin-bottom: 18px;
    }
    p:first-child { margin-bottom: 85px; }
    p:nth-child(2) {
        display: -webkit-box;
        height: 29px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    p:nth-child(3) {
        font: 18px 'Helvetica Medium';
        line-height: 22px;
        max-width: 310px;
        margin-bottom: 0;
    }
    button {
        background: transparent;
        border: none;
        color: white;
        position: absolute;
        bottom: 35px; left: 30px;
        width: 56px; height: 39px;
        transition: all 0.3s ease;
        i {
            color: var(--primary-color);
            font-size: 50px;
            transition: all 0.3s ease;
            &:hover { color: var(--text-color); }
        }
    }
    img { width: 630px; object-fit: cover;}
}

.video-modal .modal-body {
    padding: 0;
    border: none;
    height: 500px;
    iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
}

.video-modal .modal-header {
    padding: 0;
    border: none;
}

.video-modal .btn-close {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
    position: absolute;
    right: -30px;
}

.history-intro-text {
    font: 16px 'Helvetica Roman';
    line-height: 21px;
    text-align: center;
    margin: 0 auto;
    max-width: 910px;
}

.history-hr {
    border-color: var(--grey-bg);
    opacity: 1;
    margin: 70px 0 50px;
}

.institute-creator {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    .history-text { 
        font-size: 14px;
        line-height: 17px;
        width: calc(100% - 570px); 
    }
}

.creator-info {
    position: relative;
    width: 420px; height: 450px;
    > img { 
        border-radius: 10px;
        position: absolute;
        right: 0;
        width: 335px; height: 100%;
        object-fit: cover;
    }
    div {
        background: var(--primary-color);
        border-radius: 5px;
        color: white;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        position: absolute;
        bottom: 35px; left: 0;
        padding: 20px;
        max-width: 220px;
        span:last-child {
            font-size: 12px;
            line-height: 15px;
        }
    }
} 

.history-text {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    * { font-family: 'Helvetica Roman' !important; }
}

.history-info1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    > img {
        border-radius: 10px;
        width: 520px; height: 450px;
        object-fit: cover;
    }
    .history-text { width: calc(100% - 570px); }
}

.institute-creator::before, .history-info1::before,
.history-info2::before, .internship-details::before, .library-page::before {
    content: '';
    background: var(--grey-bg);
    width: 1px; height: 100%;
    position: absolute;
    left: 50%;
}

.history-info2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
    .history-text { width: calc(50% - 25px); }
}

.history-gal {
    display: grid;
    grid-template-columns: 325fr 384fr 325fr;
    column-gap: 27px;
    row-gap: 20px;
    a {
        display: flex;
        width: 100%;
    }
    img {
        border-radius: 10px;
        width: 100%; height: 100%;
        object-fit: cover;
    }
}

.scientific-cont { padding: 20px 20px 0; }
.scientific-text {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    max-width: 975px;
    margin: 0 auto 60px;
    text-align: center;
}

.council-members {
    background: var(--grey-bg1);
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 50px 130px;
    > p:first-child {
        color: var(--primary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        -webkit-text-stroke: 1px var(--primary-color);
        margin-bottom: 0;
    }
}

.council-member {
    border-bottom: 1px solid var(--grey-bg);
    padding-bottom: 30px;
    p:first-child {
        color: black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        -webkit-text-stroke: 1px black;
        margin-bottom: 10px;
    }
    p:last-child {
        color: var(--primary-color);
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        margin-bottom: 0;
    }
}

.conference-info {
    .public-info-head { justify-content: flex-end; }
    > p:first-child {
        color: var(--primary-color);
        -webkit-text-stroke-color: var(--primary-color);
        font-size: 20px;
        line-height: 26px;
    }
}

.current-conference {
    color: black;
    > p:first-child, .text {
        color: #505050;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        margin-bottom: 15px;
    }
    .name {
        font: 18px 'Helvetica Bold';
        line-height: 22px;
        margin-bottom: 20px;
    }
    .text {
        color: black;
        margin-bottom: 40px;
        * { font-family: 'Helvetica Roman' !important; }
    }
}

.current-conference, .library-page {
    .files { margin-bottom: 40px; }
    .file { 
        border: 1px solid var(--grey-bg); 
        &:hover {
            background: var(--grey-bg1);
            border-color: var(--grey-bg1);
        }
    }
}

.current-conference .gallery-slide {
    width: 180px !important;
    height: 125px !important;
}

.project-form {
    display: flex;
    gap: 10px;
    select {
        background: var(--grey-bg1);
        border: none;
        border-radius: 5px;
        color: black;
        font: 12px 'Helvetica Medium';
        line-height: 15px;
    }
    option { 
        font-family: 'Helvetica Roman';
    }
}

.project-form .select2-container {
    height: 50px !important;
    width: 200px !important;
    min-width: 200px !important;
}

.project-form .select2-container .select2-selection--single { 
    background: var(--grey-bg1) !important;
    border: none !important;
    border-radius: 5px !important;
    height: 50px !important;
}

.project-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: black !important;
    display: flex !important;
    align-items: center;
    max-width: 84% !important;
    font: 12px 'Helvetica Medium' !important;
    line-height: 15px !important;
    padding-left: 30px !important;
    height: 100%;
}

.project-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/select-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 25px !important;
    height: 25px !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%);
}
  
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.select2-dropdown {
    background: var(--grey-bg1) !important;
    border: none !important;
    border-radius: 0 0 5px 5px !important;
}

.select2-results {
    font: 12px 'Helvetica Medium';
    line-height: 15px;
}

.select2-results__option {
    padding: 10px 0 10px 30px !important;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--grey-bg1) !important;
    color: var(--primary-color) !important;
}

.select2-results__option--disabled { display: none !important; }

.pub-form .year-filter { 
    width: 330px; 
    > div, .select-head { width: 100%; }
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 50px;
    margin-bottom: 70px;
}

.pub-item {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 40px;
    > img {
        border-radius: 10px;
        width: 250px; height: 335px;
        object-fit: cover;
    }
}

.pub-desc { width: calc(100% - 290px); }

.pub-desc, .curr-publication-info {
    .year {
        color: var(--primary-color);
        -webkit-text-stroke: 1px var(--primary-color);
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 20px;
    }
    .title {
        color: black;
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        margin-bottom: 50px;
    }
}

.pub-info {
    display: flex;
    flex-direction: column;
    span:first-child {
        color: var(--primary-color);
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 13px;
    }
    span:last-child {
        font: 12px 'Helvetica Roman';
        line-height: 15px;
    }
}

.curr-publication {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.publication-images {
    display: flex;
    gap: 20px;
    width: 380px;
}

.publication-img-button-swiper {
    max-height: 335px !important;
    width: 107px;
}

.publication-img-button {
    border-radius: 10px;
    cursor: pointer;
    width: 107px !important;
    height: 107px !important;
}

.publication-swiper, .publication-slide { width: 250px; height: 335px; }
.publication-img-button img, .publication-slide img {
    border-radius: 10px;
    width: 100%; height: 100%;
    object-fit: cover;
}

.curr-publication-info {
    padding-top: 30px;
    .file {
        padding: unset;
        max-width: 305px;
        div {
            width: 43px; height: 43px;
            transition: all 0.3s ease;
            img { width: 16px; }
        }
        &:hover { 
            background: transparent; 
            div { background: var(--text-color); }
        }
    }
}

.pub-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 30px;
    margin-bottom: 30px;
    .pub-info { max-width: 200px; }
}

.curr-publication-text {
    max-width: 865px;
    > p:first-child {
        color: black;
        font: 16px 'Helvetica Bold';
        line-height: 20px;
        margin-bottom: 20px;
    }
}

.curr-publication-text .text, .seasonal-school .text {
    color: #031727;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    * { font-family: "BPG Mrgvlovani" !important; }
}

.seminar-info { 
    gap: 30px;
    .public-info-head { justify-content: flex-end; }
}

.seminar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 290px;
    a {
        background: rgba(235, 226, 209, 0.26);
        border-radius: 5px;
        color: #031727;
        text-decoration: none;
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        padding: 14px 24px;
        transition: all 0.3s ease;
        &.active, &:hover {
            background: var(--text-color);
            color: white;
        }
    }
}

.calligraphy-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
    > img {
        border: 1px solid var(--grey-bg);
        border-radius: 10px;
        width: 308px;
        height: 295px;
        object-fit: cover;
    }
    .text {
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        width: calc(100% - 338px);
        * { font-family: 'Helvetica Roman' !important; }
    }
}

.edu-swiper {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    margin-left: -13px !important;
    margin-right: 0 !important;
}

.edu-slide {
    width: 350px !important;
    height: 250px !important;
    img {
        border-radius: 10px;
        width: 100%; height: 100%;
        object-fit: cover;
    }
}

.edu-page, .internship, .library-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.edu-sidenav {
    background: #F8F8F8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 10px;
    width: 250px;
}

.edu-sidenav > a, .edu-sidenav > div > span:first-child {
    background: transparent;
    border-radius: 10px;
    color: black;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    padding: 14px 20px;
    transition: all 0.3s ease;
    &.active, &:hover { background: #EDE7E0; }
}

.child-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    padding-left: 40px;
    transition: all 0.3s ease;
    a {
        color: black;
        text-decoration: none;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        &.active, &:hover { color: var(--primary-color); }
    }
    a:first-child { padding-top: 20px; }
}

.child-items.active { max-height: 1000px; }

.seasonal-school { 
    width: calc(100% - 280px); 
    > p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 18px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        text-align: center;
        margin-bottom: 40px;
    }
    .text { margin-bottom: 20px; }
}

.seasonal-school-txt {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 40px;
    > img {
        float: left;
        margin-right: 30px;
    }
}

.diagrams {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    span {
        color: black;
        display: -webkit-box;
        font: 16px 'Helvetica Bold';
        line-height: 20px;
        line-clamp: 3;
        height: 60px;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-bottom: 20px;
    }
    > div { width: calc(50% - 10px); }
    > div div {
        background: #EEEEEE;
        border-radius: 10px;
        padding: 18px 20px;
        img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
    }
}

.seasonal-school .files {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 50px;
    .file {
        background: var(--primary-color);
        border-radius: 5px;
        color: white;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        padding: 10px 20px 10px 30px;
        width: calc(50% - 10px);
        div {
            width: 60px; height: 60px;
            transition: all 0.3s ease;
            img { width: 23px; }
        }
        &:hover div { background: var(--text-color); }
    }
}

.archive-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
    row-gap: 20px;
    > img {
        border-radius: 10px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.16);
        width: 100%; height: 170px;
        object-fit: cover;
    }
}

.internship {
    margin-bottom: 50px;
    > img {
        border-radius: 10px;
        width: 450px;
        height: auto;
    }
    .history-text { width: calc(100% - 480px); }
}

.internship-details, .library-page {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
    > div { width: calc(50% - 25px); }
}

.gallery-grid {
    gap: 25px;
    column-count: 3;
    overflow: hidden;
    img {
        border-radius: 10px;
        margin-bottom: 20px;
        width: 100%;
        cursor: pointer;
    }
}

.library-page { 
    margin-bottom: 0; 
    .files { margin-top: 30px; }
}

.library-imgs {
    > img {
        border-radius: 10px;
        width: 100%; height: auto;
        object-fit: cover;
        margin-bottom: 20px;
    }
    div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 14px;
        row-gap: 10px;
        img {
            border-radius: 10px;
            width: 100%; height: 165px;
            object-fit: cover;
        }
    }
}

.subscription {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 30vh;
    input {
        border: 1px solid #DBDBDB;
        border-radius: 5px;
        color: #8D8D8D;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        padding-left: 21px;
        height: 45px; width: 485px;
        &:focus { outline: none; }
    }
    button {
        background: #EEEEEE;
        border: none;
        border-radius: 25px;
        font: 14px 'Helvetica Medium';
        line-height: 19px;
        margin-top: 10px;
        width: 250px; height: 50px;
        transition: all 0.3s ease; 
        &:hover {
            background: var(--primary-color);
            color: white;
        }
    }
}

.font-search {
    position: relative;
    margin: 0 auto 30px;
    width: 770px; height: 50px;
    input {
        border: 1px solid #EEEEEE;
        border-radius: 10px;
        color: #8F8F8F;
        font: 16px 'Helvetica Roman';
        line-height: 20px;
        padding: 0 45px 0 20px;
        width: 100%; height: 100%;
        &:focus { outline: none; }
    }
    button {
        background: none;
        border: none;
        position: absolute;
        right: 20px; top: 16px;
    }
}

.fonts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.font {
    display: grid;
    grid-template-columns: 324fr 555fr 169fr;
    gap: 20px;
}

.font-text {
    background: var(--grey-bg1);
    border-radius: 10px;
    text-align: center;
    font-size: 50px !important;
    line-height: 60px !important;
    padding: 30px 22px;
}

.font-visual {
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 45px 30px;
    > div:first-child {
        font-size: 20px !important;
        line-height: 28px !important;
        letter-spacing: 2px;
    }
    > div:last-child {
        font-size: 30px !important;
        line-height: 43px !important;
        letter-spacing: 3px;
    }
}

.font-download {
    > div {
        border: 1px solid #EEEEEE;
        border-radius: 10px;
        color: var(--text-color);
        text-align: center;
        font: 12px 'Campton';
        line-height: 16px;
        min-height: 60px;
        margin-bottom: 10px;
    }
    a {
        background: white;
        border: 1px solid #EEEEEE;
        border-radius: 10px;
        color: var(--text-color);
        -webkit-text-stroke: 0.5px var(--text-color);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        padding: 33px;
        transition: all 0.3s ease;
        &:hover { 
            background: #EEEEEE;
            padding: 48px 33px 18px; 
            svg { fill: var(--text-color); }
        }
    }
    svg {
        fill: #C6C6C6;
        transition: all 0.3s ease;
    }
}

.warning-msg {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    text-align: center;
}

.files1 { margin-bottom: 50px; }
.files1 .file {
    border: 1px solid var(--grey-bg);
    padding: 15px 30px;
    &:hover { 
        background: var(--grey-bg1);
        border-color: var(--grey-bg1);
    }
    div {
        width: 43px; height: 43px;
        transition: all 0.3s ease;
        img { width: 16px; }
        &:hover { background: var(--text-color); }
    }
}

.contact-page {
    margin: 0 auto;
    max-width: 800px;
    iframe {
        border-radius: 10px;
        width: 100%;
        height: 330px;
    }
}

.contact-items {
    display: grid;
    grid-template-columns: 440fr 350fr;
    column-gap: 10px;
    row-gap: 18px;
    margin-bottom: 30px;
    div {
        background: #F9F9F9;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 13px;
        padding: 35px;
    }
    span:first-child {
        color: black;
        font: 14px 'Helvetica Bold';
        line-height: 17px;
    }
    a, span:last-child {
        color: #6B6B6B;
        text-decoration: none;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
    }
}

.collections-banner { 
    position: relative;
    height: 100vh;      
    overflow: hidden;
    transition: height 0.3s linear;
    margin-top: -210px;
    z-index: 1000;
    img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        z-index: -1;
    } 
    &::before {
        content: '';
        background: linear-gradient(180deg, rgba(0,0,0,0.4 ) 0.00%, rgba(0,0,0,0.47 ) 11.71%, 
        rgba(0,0,0,0.46 ) 32.64%, rgba(0,0,0,0.27 ) 59.84%, rgba(0,0,0,0 ) 100.00%);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.collections-banner > p {
    color: #F5CE9D;
    -webkit-text-stroke: 1px #F5CE9D;
    text-align: center;
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    position: absolute;
    top: 270px; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    max-width: 460px;
}

.collections-banner .text {
    color: white;
    text-align: center;
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    position: absolute;
    top: 300px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.collection-nav {
    color: white;
    position: absolute;
    bottom: 20px; left: calc(50vw - 544px);
    z-index: 2;
    a { color: white; }
}

.collections-banner p,
.collections-banner .text,
.collections-banner .collection-nav {
  transition: opacity 0.2s linear, transform 0.2s linear;
}

.collection-item:nth-child(even) { flex-direction: row-reverse; }

.collection-item {
    display: flex;
    min-height: 100vh;
    position: relative; 
    z-index: 1;
}

.collection-item.short {
    position: sticky; 
    top: 0;
    height: 100vh;
    z-index: 1; 
}

.collection-item img {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    object-fit: cover;
}

.collection-item .text {
    font-family: 'BPG Mrgvlovani';
    line-height: 1.4;
    position: relative;
    top: 0;
    transform: translateY(0);
      > p:first-child { 
        font: 20px 'BPG Mrgvlovani'; 
        line-height: 28px; 
    } 
    > div { 
        font: 14px 'BPG Mrgvlovani'; 
        line-height: 19px; 
        * { font-family: 'BPG Mrgvlovani' !important; } 
    }
}

.collection-item .text-wrap { 
    background: white; 
    padding-top: 50px;
    padding-bottom: 40px; 
    width: 50%; 
} 

.collection-item:nth-child(odd) .text-wrap { 
    padding-left: calc(50vw - 544px); 
    padding-right: 72px; 
} 

.collection-item:nth-child(even) .text-wrap { 
    padding-right: calc(50vw - 544px); 
    padding-left: 72px; 
} 

.collection-wrapper {
    height: 200vh; 
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.collection-item1 {
    position: sticky;
    top: 0;
    height: 100vh;
    background: url('../images/collections-img.png') no-repeat center center / cover;
    overflow: hidden;
    &::before {
        content: '';
        background: rgba(0,0,0,0.41);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.collection-item1 .text {
    color: white;
    font: 20px 'Helvetica Roman';
    line-height: 24px;
    position: absolute;  
    z-index: 2;
    top: 100vh; left: calc(50vw - 544px);
    width: 100%;
    max-width: 645px;
}

.cabinet-imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    img {
        border-radius: 10px;
        width: 100%; height: 175px;
        object-fit: cover;
    }
}

.archive-text {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 60px;
    * { font-family: 'Helvetica Roman' !important; }
}

.archive-title { 
    max-width: 430px; 
    margin: 0 auto 40px;
}

.archive-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.archive-filter > div > span {
    color: black;
    display: block;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    -webkit-text-stroke: 0.5px black;
    padding-left: 17px;
    margin-bottom: 5px;
}

.archive-filter > div:last-child .select-head1 { width: 330px; }

.dropdown-panel {
    background: white;
    box-shadow: 0 10px 46px rgba(0,0,0,0.14);
    display: none;
    min-height: 320px;
    padding: 50px calc(50vw - 544px) 100px;
    position: absolute;
    left: 0; z-index: 3;
    width: calc(100vw - 5px);
    input { display: none; }
    label.active { color: var(--primary-color); }
}

.category-select {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 95px;
    row-gap: 40px;input { display: none; }
    div { text-align: start; }
    label {
        color: var(--text-color);
        cursor: pointer;
        font: 14px 'Helvetica Medium';
        line-height: 15px;
        transition: all 0.3s ease;
        &:hover { 
            color: var(--primary-color); 
            padding-left: 20px;
        }
    }
}

.alphabet-select {
    flex-direction: column;
    > div:first-child {
        display: flex;
        flex-wrap: wrap;
        row-gap: 30px;
        column-gap: 25px;
        max-width: 1088px;
        margin-bottom: 40px;
    }
    > div:last-child {
        display: flex;
        justify-content: center;
    }
    label {
        color: var(--text-color);
        cursor: pointer;
        font: 26px 'BPG Mrgvlovani Caps 2010';
        line-height: 35px;
        width: 40px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
        &.active { -webkit-text-stroke: 1px var(--primary-color); }
    }
}

.category-select.active { display: grid; }
.alphabet-select.active { display: flex; }

.archive-items {
    column-count: 2;       
    column-gap: 95px;    
    max-height: 8000px;
}

.archive-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    break-inside: avoid;  
    margin-bottom: 60px;
    > div:first-child {
        background: var(--grey-bg1);
        border-radius: 5px;
        width: 40px; height: 42px;
    } 
    .text {
        border-bottom: 1px solid #EEEEEE;
        color: black;
        font: 16px 'Helvetica Roman';
        line-height: 20px;
        width: calc(100% - 57px);
        padding-bottom: 60px;
    }
    a {
        color: unset;
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
}

.microfilms {
    min-height: 60vh;
    .page-nav { margin-bottom: 100px; }
}

.microfilms-text {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    text-align: center;
    max-width: 715px;
    margin: 0 auto;
    * { font-family: 'Helvetica Roman' !important; }
}

.member-content {
    background: #FAFAFA;
    border-radius: 20px;
}

.content-cont { padding: 40px 20px 70px; min-height: 70vh; }