* {
    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: #A98236;
    --secondary-color: #031727; 
    --tertiary-color: #EAC37A;
    --text-color: #343434;
    --grey-bg: #F9F9F9;
    --hover-color: #EBE7E1;
    --link-bg: #005497;
}

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

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

.content1 { flex-direction: column; }

.side-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: fixed;
    right: 20px; top: 180px;
    z-index: 1000;
    overflow: hidden;
}

.side-nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 22px;
    width: 69px; height: 50px;
    transition: all 0.3s ease;
    position: relative;
    span { 
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        position: absolute;
        opacity: 0;
        transition: all 0.3s ease;
    }
    &:hover span { opacity: 1; }
}

.side-nav a:first-child, .side-nav a:last-child { 
    background: var(--tertiary-color); 
    span {
        color: black;
        -webkit-text-stroke: 0.5px black;
        width: 186px; right: -186px;
    }
    &:hover { 
        width: 269px;
        span { right: 22px; } 
    }
}
.side-nav a:last-child { background: var(--grey-bg); }

.side-nav a:nth-child(2) { 
    background: var(--primary-color); 
    span {
        color: white;
        -webkit-text-stroke: 0.5px white;
        width: 53px; right: -53px;
    }
    &:hover { 
        width: 135px;
        span { right: 25px; } 
    }
}

.side-nav a:nth-child(3) { 
    background: var(--secondary-color); 
    span {
        color: white;
        -webkit-text-stroke: 0.5px white;
        width: 104px; right: -104px;
    }
    &:hover { 
        width: 173px;
        span { right: 13px; } 
    }
}

header {
    background: linear-gradient(90deg, #eeeeee 0.00%, #e7e7e7 22.07%, 
                #ffffff 46.09%, #efefef 73.38%, #eeeeee 100.00%);
    min-height: 110px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.socials {
    display: flex;
    gap: 10px;
    > a {
        background: #ECECEC;
        border-radius: 50%;
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        width: 33px; height: 33px;
        transition: all 0.3s ease;
        img { transition: all 0.3s ease; }
        &:hover {
            background: var(--primary-color);
            color: white;
            img { filter: brightness(0) invert(1); }
        }
    }
}

.logo {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 21px;
    > img:nth-child(2) { width: 70px; object-fit: contain; }
    > p {
        font: 16px 'GA Imeri CAPS';
        line-height: 19px;
        max-width: 283px;
        margin-bottom: 0;
    }
}

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

.show-search {
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; height: 35px;
}

.search-form {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 3px 7px rgba(0,0,0,0.08));
    padding: 0 20px;
    position: absolute;
    right: -100vw; top: 10px;
    width: calc(100vw - 10px); height: 90px;
    z-index: 1000;
    transition: background 0.3s ease;
    .content { gap: 45px; position: relative; }
}

.search-form.visible {
    background: white;
    right: 0;
    input, button { opacity: 1; }
    button { right: 0; }
}

.search-form input {
    border: none;
    border-bottom: 1px solid #D1D1D1;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-bottom: 15px;
    opacity: 0;
    width: calc(100% - 80px);
    transition: all 0.3s ease;
    &:focus { outline: none; }
}

.search-form button {
    background: #EEEEEE;
    border-radius: 35px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 45px;
    opacity: 0;
    width: 35px; height: 35px;
    transition: all 0.3s ease;
}

.language-change {
    display: flex;
    align-items: center;
    gap: 10px;
    > span:first-of-type {
        color: #2B2B2B;
        -webkit-text-stroke: 0.5px #2B2B2B;
        font: 12px 'Campton Light';
        line-height: 18px;
        width: 25px;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 18px;
    input {
        opacity: 0;
        width: 0; height: 0;
    }
}
  
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 12px; width: 12px;
    left: 4px; bottom: 3px;
    background: #2B2B2B;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}
  
.slider.round { 
    border-radius: 34px; 
    &::before { border-radius: 50%; }
} 

#menu-toggle-button { display: none; }

.dropdownMenu {
    background: var(--hover-color);
    color: var(--secondary-color);
    padding: 0 20px;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 110px); }

.dropdownMenu .socials {
    a {
        background: var(--secondary-color);
        color: white;
        img { filter: brightness(0) invert(1); }
    }
}

.mobile-actions { margin: 25px 0 100px; }

.mobile-search {
    position: relative;
    margin: 20px 0;
    input {
        background: transparent;
        border: 1px solid #eac37b;
        border-radius: 23px;
        color: var(--text-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        padding: 0 45px 0 20px;
        width: 100%;
        height: 45px;
        &:focus { outline: none; }
    }
    button {
        background: transparent;
        border: none;
        position: absolute;
        right: 20px; top: 8px;
    }
}

.mobile-nav i { transition: transform 0.3s ease; }

.mobile-nav ul {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;

    li { display: flex; }
    a {
        color: var(--secondary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
        padding: 10px 0 10px 20px;
        width: 100%;
    }
    li:last-child a { padding-bottom: 30px; }

}

.mobile-nav.active {
    ul { max-height: 1000px; }
    i { transform: rotate(180deg); }
}

.mobile-nav-head {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    i { color: var(--secondary-color); font-size: 12px; }
}

.mobile-nav > a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    font: 16px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 15px 0;
}

.menu {
    align-items: center;
    background: #F1EDE6;
    min-height: 48px;
    position: sticky;
    position: -webkit-sticky;
    top: 110px;
    z-index: 1000;
}

.menu-items { 
    max-width: 1064px; 
    justify-content: space-between;
    gap: 5px;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    > a {
        color: var(--secondary-color);
        font: 14px 'Helvetica Medium';
        line-height: 17px;
        text-decoration: none;
        padding-bottom: 20px;
        transition: all 0.3s ease;
    }
}

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

.menu-item ul {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: none;
    flex-wrap: wrap;
    flex-direction: column;
    column-gap: 30px;
    list-style: none;
    padding: 20px 20px 25px;
    margin: 0;
    position: absolute;
    top: 40px; left: -40px;
    z-index: 1000;
    max-width: 825px;
    max-height: 420px;

    li { display: flex; width: 240px; }
    a {
        color: var(--secondary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 16px 'Helvetica Medium';
        line-height: 19px;
        padding: 12px 20px 16px;
        width: 100%;
        transition: all 0.3s ease;
        &:hover { background: rgba(169,130,54,0.06); }
    }
}

.menu-item:nth-child(2) ul { 
    min-width: 825px; 
    max-height: 330px;
}

.menu-item:nth-child(5) ul {
    min-width: 620px;
    max-height: 380px;
}

footer {
    background: var(--secondary-color);
    padding-top: 75px !important;
    position: relative;
    overflow: hidden;
    min-height: 470px;
    .content1 { gap: 55px; }
    &::after {
        content: '';
        background: url('../images/footer-bg.png') no-repeat top center / cover;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 250px;
        z-index: 1;
    }
    > * {
        position: relative;
        z-index: 2;
    }
}

.footer-top {
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 108px;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    img:first-child, img:last-child { width: 155px; }
    img:nth-child(2) { width: 95px; }
    img:nth-child(3) {
        filter: brightness(0) invert(1);
        width: 85px;
    }
}

.footer-menu {
    ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin: 0;
        li { display: flex; }
    }
    a {
        color: unset;
        text-decoration: none;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
}

.footer-menu p, .footer-contact > p:first-child {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 30px;
}

.footer-contact { margin-left: auto; }

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

.contact-items > * {
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    transition: all 0.3s ease;
    &:hover { color: var(--tertiary-color); }
}

.icon {
    background: rgba(169, 130, 54, 0.6);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    img { filter: brightness(0) invert(1); transition: all 0.3s ease; }
}

.contact-items > *:hover .icon {
    background: white;
    color: var(--secondary-color);
    img { filter: none; }
}

.footer-bottom {
    color: white;
    display: flex;
    align-items: center;
    gap: 185px;
}

.footer-bottom .socials a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    img { filter: brightness(0) invert(1); }
    &:hover { background: var(--tertiary-color); }
}

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

.banner-swiper { 
    width: 100%; 
    img {
        width: 100%;
        height: 610px;
        object-fit: cover;
    }
}

.faq-swiper-cont {
    padding: 220px 20px 170px;
    position: relative;
    .content1 { align-items: center; }
    > * {
        position: relative;
        z-index: 2;
    }
    &::after {
        content: '';
        background: url('../images/faq-decor.svg') no-repeat center center / cover;
        position: absolute;
        left: 50px; top: 130px;
        width: 235px; height: 461px;
        z-index: 1;
    }
}

.faq-swiper-cont .title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    margin-bottom: 70px;
}

.faq-swiper {
    width: 100%;
    height: 150px;
    padding-bottom: 200px !important;
}

.faq-slide {
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding: 29px 50px 0 20px;
    min-height: 114px;
    transition: all 0.3s ease !important;
    p {
        display: -webkit-box;
        height: 57px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }
    a {
        color: var(--primary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        opacity: 0;
        transition: all 0.3s ease;
        position: absolute;
        bottom: 21px;
    }
}

.faq-slide:hover {
    min-height: 150px;
    a { opacity: 1; }
}

.partner-swiper { border-top: 1px solid #EEEEEE; padding: 70px 20px 100px !important; }
.partner-slide { width: auto !important; }

.swiper1 .swiper-pagination-bullet, .swiper2 .swiper-pagination-bullet {
    background: var(--primary-color);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    opacity: 1;
}
.swiper2 .swiper-pagination-bullet { background: rgba(52, 52, 52, 0.15);}
.swiper2 .swiper-pagination-bullet-active { background: var(--tertiary-color); } 
.swiper1 .swiper-pagination-bullet-active { background: var(--primary-color); }

.student-life-prev {
    background: #F5F5F5;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 80px 0 80px calc(50% - 574px);
}

.student-life-intro {
    width: 320px;
    > p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 34px;
        margin-bottom: 30px;
    }
    > div:first-of-type {
        color: #575757;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 40px;
    }
    a {
        color: var(--tertiary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
}


.student-life-cont { 
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 360px);
}
.student-life-swiper { width: 100%; }

.media-card.swiper-slide { width: 320px !important; }

.media-card {
    display: flex !important;
    flex-direction: column;
    > img {
        border-radius: 10px 10px 0 0;
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

.media-info {
    background: var(--grey-bg);
    border-radius: 0 0 10px 10px;
    color: black;
    padding: 30px 20px 30px 30px;
    .date {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 15px;
    }
    .title {
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 18px;
        height: 54px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 30px;
    }
}

.see-more {
    border: 1px solid #CCCFD2;
    border-radius: 15px;
    color: #CCCFD2;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    overflow: hidden;
    padding-left: 9px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    &:hover { 
        background: var(--tertiary-color);
        border-color: var(--tertiary-color);
        color: black;
        width: 133px; 
        .text { opacity: 1; }
    }
}

.see-more .text {
    opacity: 0;
    white-space: nowrap;
    margin-left: 20px;
    transition: opacity 0.3s ease;
}
.plus { margin-top: -1px; }

.swiper-btns {
    display: flex;
    gap: 10px;
    button {
        background: #C7C7C7;
        border: none;
        border-radius: 50%;
        color: white;
        width: 35px; height: 35px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); }
    }
}

.halls-cont {
    padding: 20px 20px 85px;
    .content {
        gap: 10px;
        max-width: 1290px;
    }
}

.halls { display: flex; gap: 10px; }
.hall {
    border: 1px solid #EEEEEE;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 70px;
    width: calc(50% - 5px);
}

.hall div {
    cursor: pointer;
    width: 100%; 
    position: relative;
    img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    p {
        color: white;
        text-align: center;
        font: 40px 'BPG LE Studio 02 Caps';
        line-height: 43px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        margin-bottom: 0;
    }
    &::before {
        content: '';
        background: rgba(52, 52, 52, 0.34);
        position: absolute;
        inset: 0;
        transition: all 0.3s ease;
    }
}
.hall div:hover p { display: none; }
.hall div:hover::before { background: transparent; }

.news-prev { 
    padding-bottom: 80px; 
    .content {
        align-items: flex-start;
        gap: 30px;
    }
}

.news-left {
    border: 1px solid #EEEEEE;
    border-radius: 15px;
    padding: 24px 21px 27px;
    width: calc(50% - 15px);
    > img:first-child {
        border-radius: 10px;
        width: 100%;
        height: 340px;
        object-fit: cover;
        margin-bottom: 20px;
    }
    .title {
        color: var(--text-color);
        -webkit-text-stroke: 0.5px var(--text-color);
        font: 16px 'BPG Mrgvlovani Caps 2010';
        line-height: 22px;
        margin-bottom: 10px; 
    }
    .intro { margin-bottom: 20px; }
}

.news-desc .intro, .news-left .intro {
    color: #575757;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.date2 {
    color: var(--primary-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    -webkit-text-stroke: 0.5px var(--primary-color);
    margin-bottom: 15px;
}

.learn-more {
    color: unset;
    text-decoration: none;
    display: inline-flex;
    position: relative;
    height: 35px;
    span {
        color: var(--secondary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        position: absolute;
        top: 10px; left: 0;
        opacity: 0;
        width: 75px;
        transition: all 0.3s ease;
    }
    div {
        background: rgba(169, 130, 54, 0.31);
        border-radius: 50%;
        color: white;
        font-size: 12px;
        width: 35px; height: 35px;
        transition: all 0.3s ease;
        position: absolute;
        top: 0; left: 0;
        transition: all 0.3s ease;
    }
}

.learn-more:hover {
    width: 120px;
    span { opacity: 1; }
    div { background: var(--primary-color); left: 85px; }
}

.news-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(50% - 15px);
}

.news-prev-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    > img:first-child {
        border-radius: 10px;
        width: 270px;
        height: 170px;
        object-fit: cover;
    }
}

.news-desc {
    width: calc(100% - 290px);
    .title {
        color: var(--text-color);
        -webkit-text-stroke: 0.5px var(--text-color);
        font: 14px 'BPG Mrgvlovani Caps 2010';
        line-height: 17px;
        height: 51px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 9px;
    }
    .intro { margin-bottom: 15px; }
}

.important-links { padding: 80px 20px; }

.links-form {
    justify-content: flex-end;
    gap: 115px;
    margin-bottom: 60px;
    &::after { left: 33%; }
    &::before { right: 33%; }
}

.links-form, .choose-events {
    display: flex;
    position: relative;
    input { display: none; }
    label {
        color: var(--primary-color);
        cursor: pointer;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        transition: all 0.3s ease;
        &.active, &:hover { color: var(--secondary-color); }
    }
    &::after, &::before {
        content: '';
        background: #D2D2D2;
        position: absolute;
        width: 1px; height: 42px;
        top: -10px;
    }
}

.links-swiper { 
    width: 100% !important; 
    padding-bottom: 50px !important; 
}

.link-slide, .innerlink-card, .department-item {
    border: 1px solid #D2D2D2;
    border-radius: 10px;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 26px 24px 45px;
    width: 265px !important;
    transition: all 0.3s ease !important;
    > p:first-of-type {
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        text-align: center;
        display: flex;
        align-items: center;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        height: 42px;
        vertical-align: middle;
        margin-bottom: 15px;
    }
    > p:last-child {
        color: var(--secondary-color);
        text-decoration: underline;
        font: 10px "BPG Mrgvlovani";
        line-height: 13px;
        margin-bottom: 0;
    }
    &:hover { background: var(--hover-color); }
}

.link-slide > p:nth-of-type(2) {
    color: #575757;
    text-align: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 32px;
    overflow: hidden;
    margin-bottom: 20px;
}

.link-slide > div:first-child {
    background: var(--secondary-color);
    border-radius: 50%;
    width: 156px; height: 156px;
    position: relative;
    margin-bottom: 28px;
    &::before {
        content: '';
        background: transparent;
        border: 7px solid white;
        border-radius: 50%;
        width: 145px; height: 145px;
        position: absolute;
        top: 5.5px; left: 5.5px;
    }
}

.event-calendar-cont {
    background: var(--grey-bg);
    padding: 75px 20px;
    position: relative;
    > * { position: relative; z-index: 3; }
    .content1 > p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        text-align: center;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 60px;
    }
    &::after, &::before {
        content: '';
        position: absolute;
        width: 50%; height: 100%;
        top: 0; left: 0;
        z-index: 1;
    }
    &::after { background: url('../images/calendar.png') no-repeat center center / cover; }
    &::before { background: rgba(238, 238, 238, 0.95); z-index: 2; }
}

.events-prev {
    display: flex;
    align-items: flex-start;
    gap: 105px;
    padding-left: 69px;
}

.events-swiper {
    width: calc(50% - 35px) !important;
    padding-bottom: 100px !important;
    margin: 0 !important;
}

.event-slide {
    .title {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 18px;
        margin-bottom: 20px;
    }
    .desc {
        color: black;
        font: 14px 'Helvetica Roman';
        line-height: 19px;
    }
    hr {
        border-color: rgba(0,0,0,0.31);
        opacity: 1;
        margin: 20px 0 30px;
    }
    > a:last-of-type {
        color: var(--tertiary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
}

.date1 {
    color: var(--tertiary-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 15px;
}

.time {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 14px 'Firago';
    line-height: 19px;
    margin-bottom: 40px;
}

.event-calendar-cont .flatpickr-calendar {
    background: transparent !important;
    box-shadow: none !important;
    font: 14px 'BPG Mrgvlovani Caps 2010' !important;
    line-height: 19px !important;
    width: 440px !important;
    top: 0 !important;
}

.event-calendar-cont .flatpickr-rContainer, .event-calendar-cont .flatpickr-days,
.event-calendar-cont .dayContainer { 
    width: 100% !important; 
    min-width: 100% !important;
    max-width: 100% !important;
}

.event-calendar-cont .flatpickr-day {
    border-radius: 0 !important;
    line-height: 45px !important;
    width: 63px !important;
    height: 51px !important;
    max-width: 63px !important;
}

.event-calendar-cont .flatpickr-day.selected {
    background: var(--tertiary-color) !important;
    border-color: var(--tertiary-color) !important;
}

.event-calendar-cont .flatpickr-weekdays {
    border: 1px solid var(--tertiary-color) !important;
    border-radius: 11px;
    height: 40px !important;
}

#calendarContainer { display: none !important; }

.main-events { padding: 65px 20px 130px; }

.choose-events {
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
    &::before { content: none; }
    &::after { left: 49%; }
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1020px;
    margin: 0 auto 40px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nav-btn {
    background: #C7C7C7;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    width: 35px; height: 35px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.pagination-buttons {
    display: flex;
    gap: 17px;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    button {
        background: transparent;
        border: none;
        color: #929395;
        &.active { color: var(--primary-color); }
    }
}

.media-page { padding: 40px 20px 120px; }
.media-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    > span {
        color: var(--secondary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
    }
    a {
        background: #C7C7C7;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        font-size: 12px;
        width: 35px; height: 35px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); }
    }
}

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

.curr-media {
    width: 69%;
    > img {
        border-radius: 10px 10px 0 0;
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        object-fit: cover;
    }
}

.media-desc {
    background: var(--grey-bg);
    border-radius: 20px;
    color: black;
    padding: 30px 35px 55px 30px; 
    .date {
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 14px;
    }
    .title {
        -webkit-text-stroke: 0.5px black;
        font: 20px 'BPG Mrgvlovani Caps 2010';
        line-height: 24px;
        margin-bottom: 20px;
    }
    hr {
        border-color: #EAEAEA;
        opacity: 1;
        margin: 65px 0 50px;
    }
}

.media-desc .text {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    * {
        font: 12px 'BPG Mrgvlovani' !important;
        line-height: 16px !important;
    }
    b, strong { font-weight: bold !important; }
}

.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(--tertiary-color);
        -webkit-text-stroke-color: var(--tertiary-color);
    }
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    span {
        color: var(--secondary-color);
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
    div {
        background: #ECECEC;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        width: 28px; height: 28px;
        transition: all 0.3s ease;
        img { 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); }

.other-media {
    width: calc(31% - 40px);
    > p:first-child {
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 30px;
    }
    > div {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.academic-calendar-cont {
    padding: 70px 20px 120px;
    .content1 { 
        align-items: center; 
        max-width: 915px;
    }
    hr {
        border-color: #EEEEEE;
        opacity: 1;
        margin: 40px 0;
        width: 100%;
    }
}

.page-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-align: center;
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    margin-bottom: 30px;
}

.academic-cal-intro {
    text-align: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.table-name {
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    margin-bottom: 20px;
}

.academic-table-cont { 
    margin-bottom: 50px;
    width: 100%;
}

.academic-table thead {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    th {
        background: #EEEEEE;
        border: none;
        padding: 26px 0;
    }
    th:first-child { 
        border-radius: 20px 0 0 0;
        padding: 26px 20px;
    }
    th:nth-child(2) { padding: 26px 100px 26px 40px; }
    th:last-child { border-radius: 0 20px 0 0; }
}

.academic-table tbody th {
    background: var(--grey-bg);
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    padding: 37px 20px;
    width: 50px;
}

.academic-table tbody td {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 37px 0;
}
.academic-table tbody td:nth-child(2) {
    padding: 37px 100px 37px 40px;
    max-width: 280px;
}

.academic-table tfoot {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    th {
        background: #F1EDE6;
        border: none;
        border-radius: 0 0 0 20px;
    }
    td {
        background: #F1EDE6;
        border: none;
        padding: 27px 0;
    }
    td:nth-child(2) { padding-left: 40px; }
    td:last-child { border-radius: 0 0 20px 0; }
}

.calendar-warning {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 0;
}

.news-head {
    padding: 50px 20px 40px;
    .content { align-items: center; }
    .page-title { 
        margin-bottom: 0; 
        margin-left: 190px;
    }
}

.main-news-prev {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-cont {
    padding: 50px 20px 170px;
    .page-title { text-align: center; }
}

.contact-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact-left { width: 55%; }
.contact-items1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 15px;
    margin-bottom: 50px;
    .contact-item:last-child { grid-column: 1 / 3; }
}

.contact-item {
    background: var(--grey-bg);
    border-radius: 5px;
    padding: 30px;
    > p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 10px;
    }
    a, p {
        color: #6B6B6B;
        text-decoration: none;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
    }
}

.contact-form {
    > p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 18px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 20px;
    }
}

.common-form {
    input, textarea {
        border: 1px solid #DBDBDB;
        border-radius: 5px;
        color: #8D8D8D;
        font: 10px 'BPG Mrgvlovani';
        line-height: 13px;
        padding-left: 17px;
        width: 100%;
        margin-bottom: 15px;
        &:focus { outline: none; }
    }
    input { height: 45px; }
    textarea { 
        padding-top: 17px;
        resize: none; 
        height: 150px; 
    }
}

.submit-btn {
    background: #E6DDCB;
    border: none;
    color: black;
    -webkit-text-stroke: 0.5px black;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    width: 215px; height: 45px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        color: white;
        -webkit-text-stroke-color: white;
    }
}

.map {
    width: calc(45% - 30px);
    iframe {
        border-radius: 10px;
        width: 100%;
        height: 630px;
    }
}

.history-cont { padding: 50px 20px 80px; } 
.page-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    a {
        color: black;
        -webkit-text-stroke: 0.5px black;
        text-decoration: none;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 20px;
        &.active { 
            color: var(--primary-color); 
            -webkit-text-stroke-color: transparent;
        }
    }
    i { font-size: 12px; margin-top: -3px; }
}

.halls-nav { padding: 50px 0 0 calc(50% - 574px); }

.history-intro {
    display: flex;
    align-items: flex-start;
    gap: 85px;
}

.history-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 52%;
    img {
        border-radius: 30px;
        width: 100%;
        object-fit: cover;
    }
    img:first-child { 
        height: 400px;
        grid-column: 1 / 3; 
    } 
    img:nth-child(2), img:nth-child(3) { height: 245px; } 
}

.history-intro .desc {
    padding-top: 75px;
    width: calc(48% - 85px);
    .page-title1 { margin-bottom: 60px; }
}

.history-text, .departments-text, .polylab-text,
.hall-history .text, .archive-text {
    color: #4B4B4B;
    font: 14px 'Helvetica Roman';
    line-height: 26px;
    * { font-family: 'Helvetica Roman' !important; }
    b, strong { font-weight: bold !important; }
}

.page-title1 {
    color: black;
    -webkit-text-stroke: 1px black;
    font: 24px 'BPG LE Studio 02 Caps';
    line-height: 30px;
    position: relative;
    &::after {
        content: '';
        background: var(--primary-color);
        position: absolute;
        width: 260px;
        height: 2px;
        bottom: -30px; left: 0;
    }
}

.history-video {
    background: rgba(249, 249, 249, 0.9);
    padding: 75px 20px;
    position: relative;
    iframe {
        border-radius: 30px;
        width: 660px;
        height: 355px;
    }
    &::after {
        content: '';
        background: url('../images/faq-decor.svg') no-repeat top center / cover;
        position: absolute;
        top: 43px; right: 165px;
        width: 235px; height: 461px;
        z-index: 1;
    }
}

.history-cont1 { padding: 80px 20px 150px; }
.history-content1 {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 100px;
    .page-title1 {
        width: 506px;
        margin-bottom: 0;
    }
    .history-text { width: calc(100% - 626px); }
}

.history-content2 {
    margin-bottom: 130px;
    .page-title1 { 
        max-width: 500px; 
        text-align: center;
        margin: 0 auto 60px; 
        &::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }
}
.history-cont1 .content1 > div:last-child { margin-bottom: 0; }

.mission-page {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    > img {
        border-radius: 30px;
        width: 48%;
        height: 450px;
        object-fit: cover;
    }
}

.mission {
    width: calc(52% - 20px);
    .page-title1 { margin-bottom: 60px; }
    .history-text { margin-bottom: 30px; }
}

.file {
    border: 1px solid #D2D2D2;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 17px 35px 17px 30px;
    width: 100%;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }
}

.file i {
    color: #A4A4A4;
    transition: all 0.3s ease;
    &:hover { color: var(--tertiary-color) !important; }
}
.file:hover i { color: white; }

.rector-page {
    display: flex;
    align-items: flex-start;
    padding: 0 65px;
    gap: 70px;
    position: relative;
    &::after {
        content: '';
        background: var(--tertiary-color);
        width: 2px; height: 100%;
        position: absolute;
        left: 508px; top: 0;
        z-index: 1;
    }
}

.rector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 75px;
    row-gap: 100px;
    margin: 0 auto;
    max-width: 895px;
    position: relative;
    &::before {
        content: '';
        background: var(--primary-color);
        position: absolute;
        left: 50%; top: 0;
        width: 1px; height: 100%;
        z-index: 2;
    }
    .role { margin-bottom: 20px !important; }
}
.rector-grid .rector:nth-child(2n) { margin-top: 150px; }

.rector {
    width: 410px;
    color: black;
    .duration {
        -webkit-text-stroke: 1px black;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        text-align: center;
        margin-bottom: 20px;
    }
    img {
        width: 100%;
        height: 410px;
        object-fit: cover;
        margin-bottom: 25px;
    }
    .name {
        font: 20px 'Helvetica Bold';
        line-height: 24px;
        margin-bottom: 20px;
    }
    .role {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-bottom: 0;
    }
}

.rector-desc {
    width: calc(100% - 480px);
    .history-text { margin-bottom: 50px; }
}

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

.cons-container { padding: 50px 20px 150px; }
.governors {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.governor-card {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 30px;
    width: calc(50% - 30px);
    position: relative;
    img {
        width: 300px; height: 300px;
        object-fit: cover;
    }
    div { width: calc(100% - 330px); }
    p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 30px 'Helvetica Roman';
        line-height: 36px;
        margin-bottom: 30px;
    }
    p:last-child {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 0;
        word-break: break-word;
    }
}

.governor-card:nth-child(2):after {
    content: '';
    background: #D2D2D2;
    position: absolute;
    top: 0; left: -30px;
    width: 1px; height: 100%;
    z-index: 1;
}


.innerlinks-swiper { width: 100% !important; }
.innerlink-card img {
    border-radius: 50%;
    width: 156px; height: 156px;
    object-fit: cover;
    margin-bottom: 30px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 150px;
    row-gap: 40px;
}

.member-card {
    color: black;
    -webkit-text-stroke: 0.5px black;
    font: 20px 'Helvetica Roman';
    line-height: 26px;
    position: relative;
    p { margin-bottom: 0; }
    img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        margin-bottom: 24px;
    }
}

.member-card:nth-child(3n+2)::after, .member-card:nth-child(3n+2)::before {
    content: '';
    background: #D2D2D2;
    position: absolute;
    top: 0; 
    width: 1px; height: 100%;
}
.member-card:nth-child(3n+2)::after { left: -75px; }
.member-card:nth-child(3n+2)::before { right: -75px; }

.administration-members { 
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px; 
}

.admin-member {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contact-info {
    background: var(--grey-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 35px;
    width: calc(50% - 30px);
    > 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: 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;
    }
    span:last-child {
        display: flex;
        flex-direction: column;
    }
}

.administration-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    a {
        border: 1px solid #D2D2D2;
        border-radius: 10px;
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        padding: 0 22.5px;
        min-height: 120px;
        transition: all 0.3s ease;
        &:hover {
            background: var(--hover-color);
            border-color: var(--hover-color);
        }
    }
}

.page-head {
    background: var(--hover-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 40px;
    height: 110px;
    margin-bottom: 30px;
    span {
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
    }
    > div {
        display: flex;
        align-items: center;
        gap: 50px;
    }
}

.inner-page-head span {
    font-size: 16px;
    line-height: 20px;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
}

.information.adm-info { margin-bottom: 40px; }

.info-head {
    border: 1px solid #D2D2D2;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-left: 20px;
    min-height: 50px;
    transition: all 0.3s ease;
    div {
        background: rgba(75, 75, 75, 0.16);
        border-radius: 50%;
        color: white;
        font-size: 10px;
        width: 25px; height: 25px;
        transition: all 0.3s ease;
        i { transition: all 0.3s ease; }
    }
    span { max-width: calc(100% - 40px); }
}

.info-item.show .info-head {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    div {
        background: rgba(255, 255, 255, 0.16);
        i { transform: rotate(180deg); }
    }
}

.answer {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
    width: 100%;
}
.answer-content { padding: 20px 30px 30px 20px; }
.answer-content a, .polylab-text a {
    color: #003DCB;
    -webkit-text-stroke: 1px #003DCB;
    text-decoration: none;
    position: relative;
    margin-left: 15px;
    &::after {
        content: "\f0c1";
        color: #D1D1D1;
        -webkit-text-stroke: 1px transparent;
        font-family: 'Font Awesome 6 Free';
        font-weight: bold;
        position: absolute;
        left: -30px; top: 0;
    }
}

.inner-contact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    > div:first-child, .contact-info { width: 345px; }
    iframe {
        border-radius: 10px;
        width: calc(100% - 365px);
        height: 100%;
        min-height: 310px;
    }
}

.inner-contact > div:last-child {
    width: calc(100% - 365px);
    iframe { 
        width: 100%;
        min-height: 165px; 
    }
}

.inner-contact1 iframe { height: unset; }

.inner-contact .contact-info1 { 
    width: 100%; 
    padding: 30px 20px;
    margin-bottom: 25px;
    > div {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
}

.staff-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.staff-filter {
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font: 14px 'Helvetica Roman';
    line-height: 19px;
    padding: 25px 30px 40px;
    width: 280px;
    input { display: none; }
    label {
        color: var(--secondary-color);
        cursor: pointer;
        transition: all 0.3s ease;
        &:hover, &.active { color: var(--primary-color); }
    }
}

.staff-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: calc(100% - 310px);
}

.staff-members > p:first-child {
    color: black;
    -webkit-text-stroke: 1px black;
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 24px;
    margin-bottom: 30px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 23px;
    row-gap: 30px;
}

.staff {
    img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .name {
        color: black;
        font: 16px 'Helvetica Bold';
        line-height: 18px;
        margin-bottom: 15px;
    }
    .role {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 0;
    }
}

.departments { margin-bottom: 70px; }
.departments:last-child { margin-bottom: 0; }

.departments > p:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-align: center;
    font: 24px 'BPG LE Studio 02 Caps';
    line-height: 30px;
    margin-bottom: 50px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.departments-grid.adm-grid { margin-bottom: 70px; }

.department-item {
    width: 100% !important;
    padding: 35px 22.5px;
    svg {
        margin-bottom: 30px;
        stroke: var(--tertiary-color);
        transition: all 0.3s ease;
    }
    p:first-of-type { 
        margin-bottom: 30px; 
        line-clamp: 2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }
}
.department-item:hover svg { stroke: var(--secondary-color); }

.departments-text, .polylab-text {
    font: 18px 'Helvetica Roman' !important;
    max-width: 790px;
    margin: 0 auto 50px;
}

.dep-files {
    width: 100%; 
    max-width: 790px;
    margin: 0 auto;
}

.polylab-text { 
    max-width: 1020px; 
    a {
        font-size: 14px !important;
        line-height: 19px;
    }
}

.lab-members > div {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 33px;
    font: 18px 'Helvetica Bold';
    line-height: 26px;
    margin-bottom: 80px;
    img {
        border-radius: 20px;
        width: 100%;
        height: 175px;
        object-fit: cover;
        margin-bottom: 15px;
    }
}

.folk-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    img {
        border-radius: 20px;
        width: 164px;
        height: 175px;
        object-fit: cover;
    }
    p:first-child {
        font: 16px 'Helvetica Bold';
        line-height: 20px;
        margin-bottom: 10px;
    }
    p:last-child {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 0;
        max-width: 175px;
    }
}

.folk-head ~ .contact-info { padding: 20px 30px; }

.hall-head {
    background: url('../images/grandhall.png') no-repeat center center / cover;
    color: white;
    -webkit-text-stroke: 0.5px white;
    font: 40px 'BPG LE Studio 02 Caps';
    line-height: 43px;
    position: relative;
    padding: 65px 0 0 calc(50% - 584px);
    overflow: hidden;
    height: 155px;
    width: 100%;
    > * { position: relative; z-index: 2; }
    &::after {
        content: '';
        background: rgba(52, 52, 52, 0.34);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}
.recital-head { background: url('../images/recitalhall.png') no-repeat center center / cover; }

.hall-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 65px;
}

.halls-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 35px;
    margin-bottom: 45px;
    text-align: center;
}

.hall-history .text {
    margin-bottom: 50px;
    font-size: 18px;
    * { font-size: 18px !important; }
}

.hall-imgs {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    img {
        border-radius: 20px;
        width: 100%;
        object-fit: cover;
    }
    > img:first-child { width: 70%; height: 450px; }
}

.hall-imgs div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;
    img:first-child { height: 185px; }
    img:last-child { height: 245px; }
}

.halls-contact {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 50px;
    > div {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        div { padding-top: 30px; }
    }
    > div:first-child {
        border-right: 1px solid #D2D2D2;
        padding-right: 80px;
    }
    img {
        border-radius: 10px;
        width: 183px; height: 183px;
        object-fit: cover;
    }
    .name {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 20px 'Helvetica Roman';
        line-height: 24px;
        margin-bottom: 15px;
    }
    .pos {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-bottom: 0;
    }
}

.hall-plan {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 75px;
    > img {
        width: 535px;
        object-fit: contain;
    }
}

.seats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.seat-cat:first-child > p:first-child { background: #A6CD3E; }
.seat-cat:nth-child(2) > p:first-child { background: #F3ABAA; }
.seat-cat:nth-child(3) > p:first-child { background: #A4C3D3; }
.seat-cat:nth-child(4) > p:first-child { background: #FFCA05; }
.seat-cat:nth-child(5) > p:first-child { background: var(--grey-bg); }

.seat-cat > p:first-child {
    border-radius: 10px;
    color: black;
    padding: 13px 20px;
    margin-bottom: 20px;
    span:first-child {
        font: 20px 'Helvetica Medium';
        line-height: 24px;
    }
    span:last-child {
        font: 14px 'Helvetica Roman';
        line-height: 19px;
    }
}

.seat-cat div {
    color: #4B4B4B;
    font: 16px 'Helvetica Roman';
    line-height: 22px;
    padding-left: 25px;
    p { margin-bottom: 0; }
}

.archive-text {
    font-size: 16px;
    margin-bottom: 70px;
    * { font-size: 16px !important; }
}

.museum-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.museum-link {
    background: white;
    border-radius: 30px;
    color: var(--secondary-color);
    -webkit-text-stroke: 1px var(--secondary-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    transition: all 0.3s ease;
    img {
        border-radius: 30px 30px 0 0;
        width: 100%;
        height: 170px;
        object-fit: cover;
    }
    p {
        border: 1px solid #D2D2D2;
        border-top: none;
        border-radius: 0 0 30px 30px;
        text-align: center;
        padding: 20px 0;
        margin-bottom: 0;
        width: 100%;
        transition: all 0.3s ease;
    }
    &:hover {
        background: #E6DDCB;
        p { border-color: #E6DDCB; }
    }
}

.museum-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    .folk-head { margin-bottom: 0; }
}

.museum-team1 .folk-head p:last-child {
    color: #616161;
    font: 10px 'Helvetica medium' !important;
    line-height: 14px;
    -webkit-text-stroke-color: transparent;
}

.museum-contact { width: 100%; max-width: 790px; margin: 0 auto; }
.visit-form { width: 100%; max-width: 790px; margin: 0 auto 80px; }

.admission-links { margin-bottom: 50px; }
.admission-links div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    .link { width: 200px; }
}

.link {
    background: #F1EDE6;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    transition: all 0.3s ease;
    height: 50px; width: 100%;
    &:hover { 
        background: var(--link-bg); 
        color: white;
    }
}

.faculties {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    .innerlink-card { width: calc(50% - 15px) !important; }
}

.faculty-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    .link {
        width: auto;
        padding: 0 20px;
    }
}

.electronic-system {
    background: url('../images/electronic-system.png') no-repeat center center / cover;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    width: 100%; height: 365px;
    * { position: relative; z-index: 2; }
    &::after {
        content: '';
        background: rgba(3, 23, 39, 0.69);
        border-radius: 10px;
        position: absolute;
        inset: 0;
    }
}

.electronic-system p {
    color: white;
    text-align: center;
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 40px;
    max-width: 450px;
    margin-bottom: 0;
}

.electronic-system a {
    background: var(--primary-color);
    border-radius: 26px;
    color: white;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    width: 165px; height: 50px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

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

.link1 {
    background: rgba(169, 130, 54, 0.06);
    color: var(--secondary-color);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 16px 'Helvetica Medium';
    line-height: 20px;
    height: 69px;
    padding: 0 10px;
    transition: all 0.3s ease;
    &:hover { background: rgba(234, 195, 122, 0.42); }
}

.sacredmusiclab-team {
    display: flex;
    gap: 60px;
    margin-bottom: 65px;
    > div { 
        display: flex;
        align-items: center;
        gap: 35px;
        max-width: 500px; 
    }
    img {
        border-radius: 20px;
        width: 230px;
        height: 245px;
        object-fit: cover;
    }
    p:first-child {
        color: black;
        font: 20px 'Helvetica Bold';
        line-height: 24px;
        margin-bottom: 15px;
    }
    p:last-child {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 0;
    }
}

.conferences {
    display: grid;
    grid-template-columns: repeat(3, 265px);
    justify-content: center;
    column-gap: 40px;
    row-gap: 25px;
    margin-bottom: 50px;
    a {
        border: 1px solid var(--hover-color);
        border-radius: 10px;
        display: flex;
        width: 100%; height: 265px;
    }
    img {
        border-radius: 10px;
        object-fit: cover;
        width: 100%; height: 100%;
    }
}

.conference {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.conference-nav {
    background: #F1EDE6;
    border-radius: 10px;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 30px 40px;
    width: 265px;
    p {
        -webkit-text-stroke: 0.5px black;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 20px;
        margin-bottom: 10px;
    }
    a {
        color: unset;
        text-decoration: none;
        font: 14px 'Helvetica Medium';
        line-height: 19px;
    }
}

.conference-content {
    background: var(--grey-bg);
    border-radius: 10px;
    font: 16px 'Helvetica Roman';
    line-height: 26px;
    padding: 30px 30px 60px;
    width: calc(100% - 295px);
    * {font: 16px 'Helvetica Roman' !important; }
    b, strong { font-weight: bold !important; }
}

.projects-page {
    display: flex;
    gap: 30px;
    position: relative;
    &::before {
        content: '';
        background: var(--hover-color);
        width: 1px; height: calc(100% - 160px);
        position: absolute;
        left: 50%; top: 160px;
    }
}

.projects {
    width: calc(50% - 15px);
    > div:first-child {
        background: var(--grey-bg);
        border-radius: 10px;
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        display: flex;
        align-items: center;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        padding-left: 65px;
        height: 110px;
        margin-bottom: 55px;
    }
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 0 64px;
    a {
        color: var(--secondary-color);
        text-decoration: none;
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        transition: all 0.3s ease;
        &:hover { color: var(--link-bg); }
    }
}

.fb-share {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto 50px;
    button {
        background: var(--link-bg);
        border: none;
        border-radius: 50%;
        width: 30px; height: 30px;
        img { filter: brightness(0) invert(1); }
    }
    hr {
        border-color: #E6DDCB;
        opacity: 1;
        margin: 0;
        width: calc(100% - 50px); height: 1px;
    }
}

.proj-img {
    max-width: 800px;
    object-fit: cover;
}

.publications-cont {
    background: linear-gradient(to bottom, white 835px, #F6F6F6 835px);
}

.publications-content {
    margin: 0 auto;
    max-width: 770px;
    width: 100%;
    .title {
        color: var(--secondary-color);
        text-align: center;
        font: 18px 'Helvetica Roman';
        line-height: 22px;
        margin-bottom: 20px;
    }
    .text {
        color: var(--secondary-color);
        text-align: center;
        font: 14px 'Helvetica Roman';
        line-height: 19px;
        margin-bottom: 60px;
    }
    .text:last-of-type { text-align: justify; }
    hr {
        border-color: #E9E9E9;
        opacity: 1;
        margin: 50px 0;
    }
}

.publications-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
    > span {
        color: var(--primary-color);
        -webkit-text-stroke: 0.5px var(--primary-color);
        font: 22px 'BPG LE Studio 02 Caps';
        line-height: 26px;
    }
}

.publications-head a {
    background: #F1EDE6;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 200px;
    height: 50px;
    position: relative;
    transition: all 0.3s ease;
    img { 
        display: none; 
        position: absolute;
        top: 19px; right: 37px;
    }
    span {
        position: absolute;
        left: 50%; top: 15px;
        transform: translateX(-50%);
        transition: all 0.3s ease;
    }
}

.publications-head a:hover {
    background: var(--secondary-color);
    color: white;
    img { display: flex; }
    span { left: 40%; }
}

.pub-img {
    width: 100%;
    max-width: 800px;
    object-fit: cover;
    margin: 0 auto 55px;
}

.read-more {
    background: var(--tertiary-color);
    border-radius: 50%;
    color: white;
    margin: 0 auto 35px;
    width: 67px; height: 67px;
    transition: all 0.3s ease;
    position: relative; top: 0;
    &:hover { top: 10px; }
}

.publication-nav {
    background: url('../images/publications-bg.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    height: 115px; width: 100%;
    position: relative;
    margin-bottom: 70px;
    .page-nav { 
        position: relative;
        margin-bottom: 0;
        z-index: 2;
    }
    &::before {
        content: '';
        background: rgba(255,255,255,0.86);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.publications-page {
    padding-bottom: 150px;
    .content {
        align-items: flex-start;
        gap: 30px;
    }
}

.publications-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 290px;
    a {
        border: 1px solid #EBEBEB;
        background: transparent;
        border-radius: 5px;
        color: var(--secondary-color);
        text-decoration: none;
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        padding: 13px 23px;
        transition: all 0.3s ease;
        &:hover, &.active { 
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white; 
        }
    }
    a:first-child, a:nth-child(2) {
        font-family: 'BPG Mrgvlovani Caps 2010';
        -webkit-text-stroke: 0.5px var(--secondary-color);
        &:hover, &.active { -webkit-text-stroke-color: white; }
    }
}

.publications-list-cont { width: calc(100% - 320px); }
.publications-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 45px;
    margin-bottom: 50px;
    a {
        color: var(--secondary-color);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        font: 14px 'Helvetica Medium';
        line-height: 17px;
        img {
            border-radius: 10px;
            width: 100%;
            height: 260px;
            object-fit: cover;
        }
    }
}

.curr-publication {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: calc(100% - 320px);
    > img {
        border-radius: 10px;
        width: 330px;
        height: 445px;
        object-fit: cover;
    }
}

.pub-desc {
    width: calc(100% - 360px);
    .title {
        color: var(--secondary-color);
        font: 20px 'Helvetica Bold';
        line-height: 24px;
        margin-bottom: 20px;
    }
    > div:nth-child(2) {
        color: var(--secondary-color);
        font: 16px 'Helvetica Roman';
        line-height: 22px;
        margin-bottom: 40px;
    }
    .files { margin-bottom: 60px; }
}

.publication-rule {
    width: calc(100% - 320px);
    .page-head { 
        background: #EBE2D1;
        width: 100%; 
    }
    .text {
        color: #4B4B4B;
        font: 16px 'Helvetica Roman';
        line-height: 26px;
        margin-bottom: 50px;
    }
}

.department-link {
    background: rgba(3, 23, 39, 0.05);
    border-radius: 5px;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Helvetica Medium';
    line-height: 17px;
    transition: all 0.3s ease;
    width: 390px; height: 50px;
    margin: -71px 0 15px auto;
    &:hover {
        background: var(--secondary-color);
        color: white;
    }
}

.partner-links, .partner-links1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}
.partner-links1 { grid-template-columns: repeat(3, 1fr); }

.partner-link {
    background: var(--secondary-color);
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 35px;
    width: 100%;
    height: 300px;
    -webkit-text-stroke: 1px white;
    transition: all 0.3s ease;
    &:hover { background: #133C5D; }
}

.partner-link:first-child {
    background: url('../images/eu.png') no-repeat center center / cover; 
    position: relative;
    > * { position: relative; z-index: 3; }
    &::after {
        background: var(--primary-color);
        border-radius: 10px;
        content: '';
        position: absolute;
        z-index: 2;
        inset: 0;
        transition: all 0.3s ease;
    }
}

.partner-link:first-child:hover::after {
    background: rgba(3, 23, 39, 0.71);
}

.partners-page {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 100px;
}

.filter-partners {
    width: 290px;
    hr {
        border-color: #EBEBEB;
        opacity: 1;
        margin: 30px 0;
    }
    > a {
        border: 1px solid #EBEBEB;
        border-radius: 5px;
        color: var(--secondary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font: 16px 'Helvetica Medium';
        line-height: 20px;
        padding: 13px 30px 13px 23px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
        i { color: white; }
        &:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
        }
    }
    > a:last-child { margin-bottom: 0; }
}

.partners-form {
    > p {
        font: 12px 'Helvetica Roman';
        line-height: 15px;
        margin-bottom: 10px;
    }
    select {
        background: var(--grey-bg);
        background-image: url('../images/arrow-down.svg') !important;
        background-size: 11px 6px !important;
        background-position: right 20px center !important;
        background-repeat: no-repeat !important;
        --bs-form-select-bg-img: none !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: none;
        border-radius: 5px;
        font: 12px 'Helvetica Roman';
        line-height: 15px;
        padding-left: 20px;
        width: 100%;
        height: 50px;
    }
}

.country-partners {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: calc(100% - 330px);
}

.partner-item {
    p {
        color: var(--secondary-color);
        -webkit-text-stroke: 1px var(--secondary-color);
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 26px;
        margin-bottom: 15px;
    }
    a {
        color: var(--secondary-color);
        text-decoration: none;
        display: block;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        &:hover { color: var(--primary-color); }
    }
    a:last-child { margin-bottom: 0; }
}

.exchange-info {
    width: calc(100% - 330px);
    > p:first-child {
        color: var(--secondary-color);
        font: 16px 'Helvetica Roman';
        line-height: 21px;
        margin-bottom: 20px;
    }
    .archive-text { margin-bottom: 0; }
}

.exchange-btns {
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    position: relative;
    width: 310px;
    margin-bottom: 40px;
    button {
        background: transparent;
        border: none;
        border-radius: 5px;
        font: 16px 'Helvetica Medium';
        line-height: 21px;
        height: 45px;
        width: 150px;
        span { position: relative; z-index: 2; }
    }
    &::after {
        content: '';
        background: #EBE2D1;
        border-radius: 5px;
        position: absolute;
        left: 0;
        width: 150px; height: 100%;
        z-index: 1;
        transition: all 0.3s ease;
    }
}

.exchange-btns.changed::after { left: 160px; }

.outgoing-text, .incoming-text { display: none; }
.outgoing-text.active, .incoming-text.active { display: block; margin-bottom: 30px; }

.guide-links {
    display: flex;
    gap: 10px;
    .link { width: 150px; }
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    .innerlink-card > p:first-of-type {
        font-size: 14px;
        line-height: 19px;
        height: 38px;
    }
}

.library-head {
    > div { gap: 20px; }
    img {
        border-radius: 50%;
        width: 78px; height: 78px;
        object-fit: cover;
    }
}

.library-contact-info {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    > div {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.electronic-item {
    border: 1px solid #D2D2D2;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 25px 30px;   
}

.library-content { 
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.content-title {
    color: var(--primary-color);
    text-align: center;
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 35px;
    margin-top: 20px;
}

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

#rangeDate {
    background: #F9F9F9;
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    width: 265px;
    height: 50px;
    padding-left: 20px;
    &:focus { outline: none; }
}