* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { overflow-x: hidden; }

:root {
    --bg-color: #FFFFFF;
    --bg-color1: #F8F8F8;
    --main-color: #044a8c;
    --search-color: #8F8F8F;
    --menu-color: #0673b1;
    --secondary-color: #ECBC55;
    --tertiary-color: #B89B5E;
    --text-color: #4F4F4F;
    --text-color1: #6B6B6B; 
    --text-color2: black; 
    --text-color-white: white;
    --content-bg: #FBFBFB;
    --border-color: #DBDBDB;
}

:root.white-black {
    --bg-color: #000000;
    --bg-color1: #000000;
    --main-color: #044a8c;
    --search-color: #8F8F8F;
    --menu-color: #0673b1;
    --secondary-color: #ECBC55;
    --tertiary-color: #B89B5E;
    --text-color: white;
    --text-color1: white; 
    --text-color2: white; 
    --text-color-white: black;
    --content-bg: black;
    --border-color: white;
}

:root.black-red {
    --bg-color: #000000;
    --bg-color1: #000000;
    --main-color: #044a8c;
    --search-color: #8F8F8F;
    --menu-color: #0673b1;
    --secondary-color: #ECBC55;
    --tertiary-color: #B89B5E;
    --text-color: red;
    --text-color1: red; 
    --text-color2: red; 
    --text-color-white: red;
    --content-bg: black;
    --border-color: white;
}

:root.black-yellow {
    --bg-color: #000000;
    --bg-color1: #000000;
    --main-color: #044a8c;
    --search-color: #8F8F8F;
    --menu-color: #0673b1;
    --secondary-color: #ECBC55;
    --tertiary-color: #B89B5E;
    --text-color: yellow;
    --text-color1: yellow; 
    --text-color2: yellow; 
    --text-color-white: yellow;
    --content-bg: black;
    --border-color: white;
}

.Container {
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 30px;
    max-width: unset !important;
}

.content, .content3 {
    display: flex;
    width: 100%;
    max-width: 1166px;
}
.content3 { flex-direction: column; }

.content1 { padding: 0 14px; }
.content2 {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1166px;
}

/* announcement */
.announcement-container {
    position: fixed;
    top: 110px; right: 48px;
    z-index: 1000;
}

.announcement { position: relative; }
.announcement-logo {
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 109px;
    height: 109px;
    /* transition: all 0.3s ease; */
}

.announcement-logo div {
    background: #CCA758;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
}

.announcement-content {
    background: white;
    border-radius: 20px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.14));
    padding: 29px 24px;
    position: absolute;
    top: 18px;
    right: 53px;
    width: 352px;
/*    height: 514px;*/
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.announcement-content img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.announcement-body {
    --bs-modal-width: 600px !important;
    padding: 0 20px 20px !important;
}

.announcement-header {
    border-bottom: none;
    justify-content: flex-end;
    padding: 5px 20px !important;
    button {
        background: none;
        border: none;
        color: var(--main-color);
    }
}

.announcement-body img {
    border-radius: 10px;
    width: 100%;
}

/*** Remove valid/invalid feedback effects ***/
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: var(--border-color) !important;
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    box-shadow: none !important;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
    --bs-form-select-bg-icon: none !important;
}

.form-select {
    --bs-form-select-bg-img: none !important;
    background-image: url(../images/arrow-down-l.svg) !important;
    background-size: 8px 5px !important;
    background-position: right 22px center !important;
}
/***************************************/

.fixed-bg {
    position: fixed;
    top: 0; opacity: 0.1;
    width: 100%; height: 695px;
    object-fit: cover;
}

header {
    background: rgba(38, 122, 173, 0.95) !important;
    min-height: 130px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

header.scrolled, header.active {
    background: rgba(4, 74, 140, 0.9) !important;
    .header-logo, .menu-item > a, .language-change > a,
    .language-change ul a { color: var(--text-color-white); }
    .search-form { 
        background: #2E73A5; 
        img { filter: brightness(0) invert(1); }
        input, input::placeholder { color: white; }
    }
    .menu-toggle { filter: brightness(0) invert(1); }
}

.header-content {
    align-items: center;
    gap: 10px;
}

.header-logo, .footer-logo {
    color: var(--text-color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-logo img {
    width: 88px;
    height: 87px;
    object-fit: contain;
}

.header-logo p:first-child, .footer-logo p:first-child {
    font: 20px 'GL Tatishvili';
    line-height: 16px;
    margin-bottom: 0;
}

.header-logo p:last-child, .footer-logo p:last-child {
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 0;
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-form {
    background: rgb(0, 99, 159, 0.11);
    border-radius: 10px;
    position: relative;
    margin-right: 17px;
    width: 40px; height: 40px;
    transition: all 0.3s ease;
    &:hover { width: 193px; }
}

.search-form input {
    background: transparent;
    border: none;
    color: var(--main-color);
    cursor: pointer;
    display: flex;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    width: calc(100% - 70px); height: 20px;
    position: absolute;
    left: 43px; top: 11px;
    transition: all 0.3s ease;
    &::placeholder { color: var(--main-color); transition: all 0.3s ease; }
}

.search-form input:focus { outline: none; }

.search-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    position: absolute;
    left: 13.4px; top: 13.4px;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
}

.language-change {
    border-left: 1px solid #CCCCCC;
    padding-left: 17px;
    position: relative;
}

.language-change > a {
    color: white;
    text-decoration: none;
    font: 16px "Chromatica Bold";
    line-height: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.language-change > a i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.language-change a.active i {
    transform: rotate(180deg);
}

.language-change ul {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 100%;
}

.language-change ul a {
    color: white;
    text-decoration: none;
}

/* dropdown menu styles */
.menu-toggle {
    display: none;
    filter: brightness(0) invert(1);
}

.dropdownMenu {
    background-image: url(../images/dropdown-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0 30px;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(26, 94, 147, 0.85);
    z-index: 1;
    height: 1000px;
}
  
.dropdownMenu > * {
    position: relative;
    z-index: 2;
}
  
.dropdownMenu hr {
    border: 1px solid rgba(255, 255, 255, 0.17);
    opacity: 1;
    margin: 0 -35px;
}
  
.dropdownMenu.visible {
    height: calc(100vh - 123px);
}

body.no-scroll {
    overflow: hidden;
}

.dropdownMenu form button {
    background: transparent;
    border: none;
    color: var(--mobile-border);
    position: absolute;
    top: 14px;
    right: 18px;
}

.dropdownMenu form button i {
    font-size: 15px;
}

.mobile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 36px 0;
}

.mobile-media {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-media a {
    fill: white;
    color: white;
    text-decoration: none;
}

.mobile-media i {
    padding-top: 6px;
    font-size: 24px;
}

.mobile-languages {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-languages a {
    color: white;
    text-decoration: none;
    font: 20px "Chromatica Bold";
    line-height: 24px;
    opacity: 0.41;
}

.mobile-languages a.active {
    opacity: 1;
}

.mobile-search {
    border: 1px solid white;
    border-radius: 22px;
    color: white;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    padding-left: 20px;
    position: relative;
    width: 100%;
    height: 44px;
    margin: 24px 0;
}

.mobile-search input {
    background: transparent;
    border: none;
    color: white;
    height: 100%;
    width: 88%;
}

.mobile-search input::placeholder { color: white !important; }

.mobile-search input:focus,
.mobile-search button:focus {
    outline: none;
}

.mobile-nav {
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    padding: 20px 0;
}

.mobile-nav:last-of-type {
    padding-bottom: 40px;
}

.mobile-nav-items {
    font: 14px "BPG Mrgvlovani";
    line-height: 19px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-items.visible {
    max-height: 1000px;
}

.mobile-nav-items a,
.mobile-nav-items a:hover {
    color: white;
    text-decoration: none;
}

.mobile-nav-items a:last-child {
    margin-bottom: 40px;
}

.mobile-contact {
    color: white;
    text-decoration: none;
    display: inline-block;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding: 20px 0;
}

.dropdownMenu > hr:last-child {
    margin-bottom: 70px;
}

/* navbar */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 0 65px;
    height: 55px;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.menu-item:hover::after,
.menu-item.active::after {
    background: var(--tertiary-color);
}

.menu-item > a {
    color: var(--text-color-white);
    text-decoration: none;
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-item > ul {
    background: var(--bg-color);
    border-radius: 10px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    display: none;
    flex-direction: column;
    gap: 20.5px;
    grid-template-columns: 320px 1fr;
    list-style: none;
    position: absolute;
    top: 100%;
    left: -10px;
    z-index: 1000;
    width: 275px;
}

.menu-item li {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding-right: 25px;
}

.menu-item > ul > li:first-child { padding-top: 30px; }
.menu-item > ul > li:last-child { padding-bottom: 30px; }

.menu-item ul a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease;
}

.menu-item > ul a:hover {
    color: var(--main-color);
    margin-left: 15px;
}

.menu-item:hover > ul,
.menu-item:hover > .child-menu {
    display: flex;
}

.child-menu {
    background: var(--bg-color);
    border-radius: 10px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    display: none;
    justify-content: space-between;
    position: absolute;
    top: 100%;
    right: unset; left: -183px;
    padding: 30px 34px 34px;
    width: 991px;
}

.child-menu-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 215px;
}

.child-menu-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.child-menu-item ul a {
    font-size: 10px;
    line-height: 13px;
}

.child-menu-item ul a:hover {
    color: var(--main-color);
    padding-left: 15px;
}

.child-menu-title {
    color: var(--main-color);
    font: 13px 'BPG Mrgvlovani';
    line-height: 16px;
    text-decoration: none;
    display: flex;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.child-menu-title:hover {
    margin-left: 15px;
}

/* banner section */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 295px; right: 35px;
}

.social-media a {
    background: #F1F1F1;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--main-color);
        i { color: white; } 
        svg { fill: white; } 
    }
}

.social-media i { font-size: 11px; color: var(--main-color);; }

.social-media svg, .social-media i {
    fill: var(--main-color);
    transition: all 0.3s ease;
} 

.banner-slider {
    width: 100%; max-width: 1166px;
    max-height: 440px;
}

.banner-slide {
    cursor: pointer;
    display: flex !important;
    img {
        border-radius: 10px 0 0 10px;
        width: calc(100% - 510px); height: 100%;
        object-fit: cover;
    }
}

.banner-slide-content {
    background: var(--main-color);
    border-radius: 0 10px 10px 0;
    padding: 60px 50px 0 40px;
    width: 510px; height: 100%;
    > p:first-child {
        color: var(--text-color-white);
        display: -webkit-box;
        font: 20px 'GL Tatishvili';
        line-height: 24px;
        height: 120px;
        overflow: hidden;
        line-clamp: 5;
        margin-bottom: 20px;
    }
    > p:nth-child(2) {
        color: var(--text-color-white);
        display: -webkit-box;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        height: 102px;
        overflow: hidden;
        line-clamp: 6;
        max-width: 347px;
        margin-bottom: 30px;
    }
    > p:last-child {
        color: #CCA758;
        font: 14px 'Helvetica';
        line-height: 17px;
        margin-bottom: 0;
    }
}

.banner-slider .swiper-pagination {
    display: flex;
    bottom: 48px !important;
    left: calc(100% - 474px) !important;
}

.banner-slider .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    width: 10px; height: 10px;
    opacity: 1;
}
.banner-slider .swiper-pagination-bullet-active {  background: white;  }

.contact-link {
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

/* running line styles */
.running-lines-container {
    align-items: center;
    height: 65px;
}

.running-lines {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
}

.running-lines a {
    color: var(--text-color2);
    text-decoration: none;
    margin-right: 20px !important;
}

.running-lines:hover .line-slide {
    animation-play-state: paused !important;
}

.line-slide {
    display: inline-block;
    animation: 35s marqueeLine infinite linear;
}

@keyframes marqueeLine {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* news preview slider */
.news-swiper-content {
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px 35px 45px;
    position: relative;
}

.news-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    p {
        color: var(--text-color2);
        font: 20px 'GL Tatishvili';
        line-height: 24px;
        margin: 0;
    }
    div {
        background: #D9D9D9;
        width: calc(100% - 100px);
        height: 1px;
    }
}

.news-head > p:first-child {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin: 0;
}

.news-swiper { width: 100%; }

.news-slide {
    cursor: pointer;
    p:first-child {
        color: #D5D5D5;
        font: 14px 'Helvetica';
        line-height: 17px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }
    p:last-child {
        color: var(--text-color2);
        display: -webkit-box;
        font: 14px 'Helvetica Roman';
        line-height: 17px;
        margin-bottom: 0;
        height: 85px;
        overflow: hidden;
        line-clamp: 5;
    }
    &:hover p:first-child { color: var(--main-color); }
}

.news-preview {
    background: var(--bg-color1);
    border-radius: 0 0 10px 10px;
    padding: 30px 20px;
}

.news-preview > p:first-child {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    text-align: center;
    position: relative;
    margin-bottom: 17px;
}

.news-decor {
    background: #DDE0E6;
    width: 98px;
    height: 4px;
    margin: 0 auto 24px;
}

.news-preview > p:nth-child(3) {
    color: var(--text-color1);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-align: center;
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 26px;
}

.news-preview > p:last-child {
    color: var(--main-color);
    font: 14px 'GL Tatishvili';
    line-height: 22px;
    text-align: center;
}

.news-swiper .swiper-pagination-bullet {
    background: #ECECEC;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    opacity: 1 !important;
}

.news-swiper .swiper-pagination-bullet-active {
    background: var(--main-color);
}

/* prosecutor info preview */
.prosecutor-info {
    background-image: url(../images/prosecutor-info-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 424px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding-left: calc((100vw - 938px) / 2);
}

.prosecutor-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(180deg, #0066a2 0.00%, #01528c 100.00%);
    z-index: 1;
}

.prosecutor-info::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: rgba(245, 245, 245, 0.92);
    z-index: 1;
}

.prosecutor-info > * {
    position: relative;
    z-index: 2;
}

.prosecutor-logo {
    display: flex;
    align-items: center;
    gap: 27px;
    color: white;
}

.prosecutor-logo p:first-child {
    font: 19px 'BPG Mrgvlovani Caps 2010';
    line-height: 26px;
    margin-bottom: 0;
}

.prosecutor-logo p:last-child {
    font: 32px 'GL Tatishvili';
    line-height: 38px;
    margin-bottom: 0;
}

.prosecutor-info-items {
    width: 63.2%;
}

.info-item {
    border-radius: 34px 0 0 34px;
    display: flex;
    color: black;
    text-decoration: none;
    align-items: center;
    gap: 32px;
    padding-left: 25px;
    padding-right: calc((100vw - 1090px) / 2);
    height: 67px;
    transition: all 0.3s ease;
}

.info-item.active,
.info-item:hover {
    background: rgba(255, 255, 255, 0.85);
}

.icon {
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
}

.info-item p {
    font: 18px 'GL Tatishvili';
    line-height: 22px;
    margin-bottom: 0;
}

.info-item > img {
    opacity: 0;
    margin-left: auto;
    transition: all 0.3s ease;
}

.info-item:hover > img,
.info-item.active > img {
    opacity: 1;
}

/* intresting info section */
.interesting-info-title {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 26px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
}

.interesting-info-title::after {
    background: var(--tertiary-color);
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    width: 45px;
    height: 3px;
}

.interesting-info-container {
    background: transparent;
    position: relative;
    padding: 30px 20px 75px;
}

.interesting-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interesting-item {
    background: var(--bg-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 23px 40px 23px 20px;
    width: 100%;
}

.interesting-item img {
    border-radius: 50%;
    width: 74px; height: 74px;
    object-fit: cover;
}

.interesting-item-content p:first-child {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 10px;
}

.interesting-item-content p:last-child {
    color: var(--text-color1);
    display: -webkit-box;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 32px;
    line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0;
}

/* donors section */
.donors-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donors-content > p:first-child {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    padding-bottom: 5px;
    margin-bottom: 40px;
    position: relative;
}

.donors-content > p:first-child::after {
    background: var(--tertiary-color);
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    width: 45px;
    height: 3px;
}

.donor-swiper {
    width: 100%;
    padding: 10px !important;
    margin-bottom: 70px;
}

.donor-slide {
    background: white;
    border-radius: 10px;
    cursor: pointer;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.14));
    padding: 30px 20px;
}

.donor-slide img {
    width: 100%;
    object-fit: cover;
}

/* footer styles */
footer {
    background: rgba(0, 99, 159, 0.85) !important;
    color: white;
    padding: 30px 20px !important;
    position: relative;
    .content3 hr {
        border-color: rgba(255, 255, 255, 0.33);
        margin: 30px 0;
        margin-left: calc(583px - 50vw);
        margin-right: calc(583px - 50vw);
    }
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.footer-menu {
    p, > a {
        color: unset;
        text-decoration: none;
        display: block;
        font: 20px 'GL Tatishvili';
        line-height: 24px;
        margin-bottom: 30px;
    }
    div {
        font: 14px 'Helvetica Roman';
        line-height: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    div a {
        color: white;
        text-decoration: none;
        font: 14px 'Helvetica Roman';
        line-height: 20px;
        transition: all 0.3s ease;
        &:hover { color: #88D2FF; }
    }
    .socials { flex-direction: row; }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo { gap: 20px; }
.footer-logo img {
    width: 92px; height: 94px;
    object-fit: cover;
}
.footer-logo p:first-child { font-size: 13px; line-height: 17px; }
.footer-logo p:last-child { font-size: 21px; line-height: 25px; }

.disabled {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 19px;
    opacity: 0.44;
}

.disabled span {
    color: var(--text-color-white);
    font: 11px 'BPG Mrgvlovani Caps 2010';
    line-height: 15px;
}

.copyright {
    opacity: 0.44;
    color: var(--text-color-white);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.copyright p:first-child {
    margin-bottom: 10px;
}

.copyright p:last-child {
    margin-bottom: 0;
}

.copyright a {
    color: var(--text-color-white);
    text-decoration: none;
}

.socials {
    display: flex;
    gap: 15px;
    a {
        background: rgb(241, 241, 241, 0.15);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 40px; height: 40px;
        transition: all 0.3s ease;
        svg { fill: white; }
        &:hover { background: var(--main-color); }
    }
}

/* star design styles */
.star-design {
    position: relative;
}

.star-design::before {
    content: "";
    position: absolute;
    top: 125px;
    left: calc((100vw - 1090px) / 2);
    bottom: 0;
    width: 1px; 
    background: var(--border-color);
    z-index: 1;
}

.star-design::after {
    content: "";
    position: absolute;
    top: 115px; 
    left: calc((100vw - 1106px) / 2);
    width: 18px; 
    height: 18px; 
    background-image: url('../images/star.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

/* news page */
.news-container {
    padding: 66px 30px 180px;
} 

.page-title {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 64px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 29px;
    row-gap: 40px;
    margin-bottom: 70px;
    position: relative;
    z-index: 4;
}

.news-item {
    cursor: pointer;
}

.news-item img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 194px;
    object-fit: cover;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 17px;
}

.pagination-buttons {
    display: flex;
    gap: 17px;
}

.pagination-buttons button {
    background: transparent;
    border: none;
    color: #929395;
    cursor: pointer;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.pagination-buttons button.active {
    color: var(--main-color);
}

.prev-page, .next-page {
    background: #C8C8C8 !important;
    border: none;
    border-radius: 50%;
    color: white !important;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-page:hover, .next-page:hover {
    background: var(--main-color) !important;
}

.prev-page i, .next-page i {
    font-size: 10px;
}

/* inner news page styles */
.inner-news-content {
    flex-direction: column;
}

.news {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 4;
}

.current-news {
    width: 65%;
}

.current-news-img {
    border-radius: 10px 10px 0 0;
    height: 397px;
    width: 100%;
    object-fit: cover;
}

.current-news-preview {
    background: var(--content-bg);
    border-radius: 0 0 5px 5px;
    padding: 15px 24px;
    margin-bottom: 7px;
}

.current-news-preview p:first-child {
    color: var(--text-color2);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 16px;
}

.news-date {
    color: var(--main-color);
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    margin-bottom: 0;
}

.news-info {
    background: var(--content-bg);
    border-radius: 5px;
    color: var(--text-color2);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 15px 23px;
    margin-bottom: 30px;
}

.news-info iframe {
    width: 100% !important;
    height: 400px !important;
}

/* share news styles */
.share-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.share-news > a:first-child {
    color: #A4A4A4;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 20px;
    transition: all 0.3s ease;
}

.share-news > a:first-child:hover {
    color: var(--main-color);
}

.share {
    display: flex;
    align-items: center;
    gap: 21px;
}

.share p {
    color: var(--main-color);
    margin-bottom: 0;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding-top: 5px;
}

.share svg {
    fill: #A4A4A4;
    transition: all 0.3s ease;
}

.share a:hover svg {
    fill: var(--main-color);
}

.other-news {
    width: 32%;
}

.other-news > p:first-child {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 21px;
}

.other-news-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* prosecutors page styles */
.prosecutors-container {
    padding: 66px 30px 122px;
}

.prosecutor-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 26px;
    padding: 0 14px;
}

.prosecutor-filter select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #FCFCFC;
    background-image: url('../images/arrow-down.svg');
    background-repeat: no-repeat;
    background-position-x: 92%;
    background-position-y: 20px;
    border: none;
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 265px;
    height: 45px;
    padding-left: 18px;
}

.prosecutor-filter select:focus,
.prosecutor-filter input:focus {
    outline: none;
}

.prosecutor-filter div {
    background: #FCFCFC;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 0 45px 0 18px;
    width: 326px;
    height: 45px;
}

.prosecutor-filter div input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.prosecutor-filter div input::placeholder {
    font-size: 10px;
    line-height: 13px;
}

.prosecutor-cont {
    background: var(--content-bg);
    border-radius: 10px;
    filter: drop-shadow(0px 3px 18.5px rgba(0,0,0,0.08));
    padding: 50px 30px;
    margin-bottom: 30px;
}

.prosecutor-cont-title {
    color: var(--text-color2);
    font: 18px 'GL Tatishvili';
    line-height: 22px;
    margin-bottom: 30px;
}

.general-prosecutor {
    padding: 30px;
    margin-bottom: 40px;
}

.general-prosecutor-info {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.general-prosecutor-info img {
    border-radius: 10px;
    width: 230px;
    height: 259px;
    object-fit: cover;
}

.general-prosecutor-info > div > p:first-child {
    color: var(--text-color2);
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    margin-bottom: 10px;
}

.general-prosecutor-info > div > p:nth-child(2) {
    color: #919191;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.deputy-prosecutors {
    padding: 50px 30px 40px;
    margin-bottom: 30px;
}

.prosecutor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 27px;
    row-gap: 30px;
}

.hidden-card, .hidden-section {
    display: none;
}

.prosecutor-card {
    cursor: pointer;
}

.prosecutor-card img {
    border-radius: 10px;
    height: 259px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.prosecutor-name {
    color: var(--text-color2);
    font: 14px 'GL Tatishvili';
    line-height: 17px;
    margin-bottom: 10px;
}

.prosecutor-position {
    color: #919191;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.general-prosecutor-dep {
    position: relative;
    margin-bottom: 30px;
}

.see-all-pros {
    color: var(--main-color);
    cursor: pointer;
    font: 18px 'GL Tatishvili';
    line-height: 22px;
    position: absolute;
    top: 50px;
    right: 30px;
    transition: all 0.3s ease;
}

.see-all-pros:hover {
    color: var(--menu-color);
}

.divisions {
    padding: 50px 30px;
    margin-bottom: 50px;
}

.see-more-prosecutors {
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    color: var(--text-color-white);
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    width: 214px;
    height: 50px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.see-more-prosecutors:hover {
    background: var(--menu-color);
}

/* inner prosecutor page */
.prosecutor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin: 0 0 30px 28px;
}

.prosecutor > div {
    background: var(--content-bg);
    border-radius: 10px;
    filter: drop-shadow(0px 3px 18.5px rgba(0, 0, 0, 0.08));
    padding: 30px;
}

.prosecutor-img {
    display: flex;
    flex-direction: column;
    width: 299px;
}

.prosecutor-details {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: calc(100% - 329px);
}

.prosecutor-img > img {
    border-radius: 10px;
    width: 100%;
    height: 259px;
    object-fit: cover;
    margin-bottom: 30px;
}

.prosecutor-img .name {
    font: 26px 'GL Tatishvili';
    line-height: 32px;
    margin-bottom: 10px;
}

.prosecutor-img .position {
    color: #919191;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.go-back {
    color: #A4A4A4;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding-left: 387px;
    transition: all 0.3s ease;
}

.go-back:hover {
    color: var(--main-color);
}

/* donor page */
.donor-container {
    padding: 66px 30px 180px;
}

.donor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 30px;
    margin-left: 58px;
}

.donor-card {
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.14));
    transition: all 0.3s ease;
    padding: 35px 25px;
}

.donor-card:hover {
    filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.16));
}

.donor-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 26px;
}

.donor-card p:first-of-type {
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    margin-bottom: 14px;
}

.donor-card p:last-child {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    height: 52px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

/* inner donor page */
.donor {
    background: white;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.14));
    margin-left: 58px;
    padding: 25px 25px 54px;
}

.donor-title-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.donor-title-logo > img:first-child {
    width: 201px;
    height: 140px;
    object-fit: contain;
}

.donor-title-logo > p {
    text-align: center;
    font: 30px 'GL Tatishvili';
    line-height: 37px;
    margin: 0 auto;
}

.donor > p {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 14px;
    margin-bottom: 56px;
}

.donor-pdf {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #4D4D4D;
    cursor: pointer;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    width: 343px;
    height: 50px;
    padding: 0 27px 0 20px;
    transition: all 0.3s ease;
}

.donor-pdf svg {
    fill: var(--main-color);
    transition: all 0.3s ease;
}

.donor-pdf:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

.donor-pdf:hover svg {
    fill: white;
}

/* prosecutor's office functions */
.functions-container {
    padding: 66px 30px 200px;
}

.functions {
    background: var(--bg-color);
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 26px;
    margin-left: 58px;
}

.functions ul {
    list-style: none;
    padding-left: 0;
}

.functions p {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
}

/* office history page */
.history-container {
    background: var(--bg-color);
    padding: 66px 0 0;
}

.history-content .page-title {
    padding-left: calc((100vw - 1090px) / 2);
}

.history-page {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding-right: calc((100vw - 1090px) / 2);
}

.history-content hr {
    border-color: var(--border-color);
    opacity: 1;
    max-width: 885px;
    margin: 6rem 0 6rem auto;
}

.history-item-container {
    width: 100%;
    max-width: 885px;
    height: 680px;
}

.years {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc((100vw - 754px) / 2);
    z-index: 1;
}

.years p {
    border-radius: 0 25px 25px 0;
    color: var(--text-color2);
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 58px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: 0;
}

.years p::after {
    content: "";
    position: absolute;
    top: 2; 
    left: calc((100vw - 1106px) / 2);
    width: 18px; 
    height: 18px; 
    background-image: url('../images/star.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.years p.active,
.years p:hover {
    background: var(--menu-color);
    color: white;
}

.years p.active::after,
.years p:hover::after {
    background-image: url('../images/white-star.svg'); 
}

.history-content
.history-item-details:nth-of-type(4) {
    flex-direction: row-reverse;
}

.history-item-details {
    display: flex !important;
    align-items: flex-start;
    gap: 40px;
    max-width: 885px;
    position: relative;
}

.history-item-details div {
    width: 53.22%;
}

.history-item-details .history-item-title {
    background: var(--bg-color);
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 20px;
}

.history-item-details .history-item-desc {
    background: var(--bg-color);
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 0;
}

.history-item-details img {
    border-radius: 10px;
    width: 42.26%;
    height: 300px;
    object-fit: cover;
}

/* international cooperation page */
.cooperation-container {
    padding: 66px 30px 200px;
}

.cooperation-content {
    background: var(--bg-color);
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 26px;
    margin: 0 0 90px 58px;
}

/* faq */
.faq-title {
    background: var(--bg-color);
    color: var(--text-color2);
    font: 26px 'GL Tatishvili';
    line-height: 32px;
    margin: 0 0 50px 58px;
}

.faq {
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: 58px;
}

.question {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 17px;
    font: 20px 'GL Tatishvili';
    line-height: 24px;
}

.question p {
    color: var(--text-color2);
    margin-bottom: 0;
}

.question .toggle-icon.minus {
    display: none;
}

.answer {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 26px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.answer-content {
    padding: 24px 0 0;
}


/* contests page styles */
.contests-container {
    padding: 66px 30px 300px;
}

.contests {
    margin-left: 39px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.contests-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 59%;
}

.vacancy-desc, .vacancy {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
}

.vacancy-desc > p:first-child {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 0;
}

.vacancy-desc hr {
    border-color: var(--border-color);
    opacity: 1;
    margin: 20.5px 0;
}

.vacancy-desc > p:last-child,
.vacancy-desc .last-child {
    color: var(--text-color)  !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 26px !important;
}

.vacancy-desc .last-child * {
    color: var(--text-color)  !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 26px !important;
}

.vacancy {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
}

.vacancy a {
    color: #0055FF;
    text-decoration: none;
}

.materials {
    background: var(--main-color);
    border-radius: 10px;
    color: var(--text-color-white);
    padding: 30px;
    width: 38%;
}

.materials > p:first-child {
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 0;
}

.materials hr {
    border-color: var(--text-color-white);
    margin: 20.5px 0;
    opacity: 1;
}

.pdfs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdf {
    color: var(--text-color-white);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pdf-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pdf-title p {
    margin-bottom: 0;
}

.pdf-title p:first-child {
    border: 1px solid var(--text-color-white);
    border-radius: 5px;
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
}

.pdf-title p:last-child {
    font: 14px 'GL Tatishvili';
    line-height: 17px;
    width: calc(100% - 65px);
    height: 17px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.actions {
    display: flex;
    gap: 20px;
}

.actions svg {
    fill: var(--text-color-white);
    transition: all 0.3s ease;
}

.actions svg:hover {
    fill: #FFCA5A;
}

/* internship page */
.internship-container {
    padding: 66px 30px 300px;
}

.internship {
    margin-left: 39px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.internship > div {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
}

.internship div p:first-child {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 0;
}

.internship div:last-child p:first-child {
    font-size: 20px;
    line-height: 24px;
}

.internship div hr {
    border-color: var(--border-color);
    margin: 20.5px 0;
    opacity: 1;
}

.internship div div:last-child {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
    margin-bottom: 0;
}

.internship div div:last-child * {
    color: var(--text-color) !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 26px !important;
}

/* training page */
.training-container {
    padding: 66px 30px 300px;
}

.training-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-left: 39px;
    margin-bottom: 60px;
}

.training-container .text {
    background: var(--content-bg);
    border-radius: 10px;
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
    width: 59%;
    padding: 30px;
}

.news-slider-container {
    margin-left: 25px;
}

.news-slider-header {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 40px 14px;
}

.news-slider-header p {
    font: 24px "GL Tatishvili";
    line-height: 29px;
    margin-bottom: 0;
}

.news-slider-header hr {
    border-color: var(--border-color);
    margin: 0;
    opacity: 1;
    width: 100%;
}

.news-buttons {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-buttons div {
    background: #C8C8C8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

.news-buttons div:hover {
    background: var(--main-color);
}

.news-buttons i {
    font-size: 10px;
}

/* plan open lecture page */
.open-lecture-container {
    padding: 66px 30px 200px;
}

.open-lecture {
    margin-left: 39px;
}

.open-lecture-content {
    background: var(--content-bg);
    border-radius: 10px;
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
    padding: 30px;
    margin-bottom: 30px;
}

/* lecture form */
.lecture-form  {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 40px 30px 60px;
}

.lecture-form > p:first-child {
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 15px;
}

.lecture-form > p:nth-child(2) {
    color: var(--text-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 26px;
    margin-bottom: 34px;
}

.form-title {
    color: var(--main-color);
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 26px;
    margin-bottom: 20px;
}

.form-floating > .form-control {
    min-height: unset !important;
}

.fullname, .contact-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 20px;
}

.fullname > div,
.contact-info > div {
    width: 48.5%;
}

.lecture-form label,
.request-form label,
.contact-form label {
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.lecture-form input,
.request-form input,
.contact-form input {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 31px !important;
}

.lecture-form .invalid-feedback span,
.request-form .invalid-feedback span,
.contact-form .invalid-feedback span {
    color: #D90236;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.lecture-form .form-floating > label,
.lecture-form .form-floating > .form-control,
.request-form .form-floating > label,
.request-form .form-floating > .form-control,
.contact-form .form-floating > label,
.contact-form .form-floating > .form-control  {
    padding-left: 31px !important;
}

.form-margin {
    margin-bottom: 30px;
}

.lecture-form select {
    color: black;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px !important;
    padding-left: 28px;
    height: 50px !important;
    min-height: 50px !important;
    padding-top: 22px !important;
}

.seminar-info .filter-option-inner-inner {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px !important;
}

.seminar-info button {
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px;
    height: 50px;
}

.seminar-info button:hover {
    background: transparent !important;
}

.seminar-info button:focus {
    outline: none !important;
}

.seminar-info .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
    padding-left: 16px;
}

.seminar-info .text {
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
}

.duration {
    margin-top: 20px;
}

/* Add custom arrow for selectpicker */
.custom-arrow .dropdown-toggle::after {
    display: none;
}

.custom-arrow .btn.dropdown-toggle {
    position: relative;
    padding-right: 30px;
}

.custom-arrow .btn.dropdown-toggle::before {
    content: '';
    position: absolute;
    right: 22px; 
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 5px; 
    background-image: url(../images/arrow-down-l.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.place {
    margin-bottom: 20px;
}

.first-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
}

.first-date > div {
    width: 25%;
}

.additional-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    margin-top: 20px;
}

.additional-date > div {
    width: 33.3%;
}

.add-date {
    color: var(--main-color);
    cursor: pointer;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 0;
}

.audience {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 40px;
}

.audience > div {
    width: 48.5%;
}

.lecture-form textarea,
.request-form textarea {
    font: 12px "BPG Mrgvlovani";
    line-height: 19px;
    height: 159px !important;
    resize: none;
}

/* Firefox */
@-moz-document url-prefix() {
    .lecture-form textarea,
    .request-form textarea  {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

.lecture-form textarea::-webkit-scrollbar,
.request-form textarea::-webkit-scrollbar  {
    width: 5px; 
}

.lecture-form textarea::-webkit-scrollbar-thumb,
.request-form textarea::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
} 

.send-btn {
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    color: white;
    font: 16px 'GL Tatishvili';
    line-height: 19px;
    width: 214px;
    height: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: var(--menu-color);
}

/* juvenile justice page / content-page */
.content-page {
    padding: 66px 30px 100px;
}

.interesting-info-content, .jury-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-left: 39px;
}

.content-page-text {
    background: var(--content-bg);
    border-radius: 10px;
    color: var(--text-color );
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
    padding: 30px;
    margin-left: 39px;
    word-wrap: break-word !important;
}

.interesting-info-content .content-page-text {
    margin-left: 0;
    width: 59%;
}

/* jury page */
.jury-info {
    margin-bottom: 70px;
}

.jury-info > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 59%;
}

.jury-info .content-page-text {
    margin-left: 0;
}

.jury-info > div:first-child img {
    border-radius: 10px;
    width: 100%;
    height: 326px;
    object-fit: cover;
}

/* policy page */
.policy-content {
    margin-left: 29px;
}

.policy-content iframe {
    border-radius: 10px;
    display: flex;
    width: 70%;
    height: 421px;
    margin: 0 auto 50px;
}

.policy-content .faq {
    background: var(--bg-color);
    margin-left: 0;
    margin-bottom: 87px;
}

.files {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file {
    background: var(--content-bg);
    border-radius: 10px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 80px;
    padding: 0 50px 0 22px;
    transition: all 0.3s ease;
}

.file:hover {
    background: var(--main-color);
    color: white;
}

.file-title {
    display: flex;
    align-items: center;
    gap: 50px;
}

.file-title p {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 0;
}

.file-title > p:first-child {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 49px;
}

.file-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.file-actions svg {
    fill: #A4A4A4;
    transition: all 0.3s ease;
}

.file:hover svg {
    fill: white;
}

/* public info pages */
.public-info-page {
    padding: 66px 30px 315px;
}

.public-info {
    margin-left: 39px;
}

.public-swiper {
    padding: 10px !important;
}

.public-slide {
    background: var(--bg-color);
    border-radius: 10px;
    color: var(--text-color2);
    text-decoration: none;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    display: flex !important;
    align-items: center;
    height: 76px !important;
    padding: 0 40px 0 25px;
    transition: all 0.3s ease !important;
}

.public-slide:hover,
.public-slide:focus,
.public-slide:focus-visible,
.public-slide.active {
    background: var(--main-color);
    color: white;
}

.public-slide:focus {
    outline: none;
}

.public-slide:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

.public-swiper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.public-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.public-buttons > div {
    background: #C8C8C8;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

.public-buttons > div:hover {
    background: var(--main-color)
}

.public-buttons > div:last-child {
    background: var(--main-color);
}

.public-buttons i {
    font-size: 10px;
}

.public-info-content,
.research-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.research-content {
    display: none;
}

.research-content.active {
    display: flex;
}

.public-info-left, .research-left {
    background: var(--content-bg);
    border-radius: 10px;
    width: 59%;
    padding: 30px;
    min-height: 259px;
}

.public-info-left > p:first-child,
.research-left > p:first-child,
.responsible-people > p:first-child,
.useful-info > p:first-child {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 0;
}

.public-info-left hr,
.research-left hr,
.data-protection hr, 
.responsible-people hr, 
.useful-info hr {
    border-color: var(--border-color);
    margin: 20.5px 0 30.5px;
    opacity: 1;
}

.public-info-links, 
.research-links {
    display: flex;
    flex-direction: column;
}

.public-info-links a, .research-links a {
    color: #0068B8;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 26px;
}

/* public information - reports */
.reports {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 25px;
}

.report-item {
    background: var(--content-bg);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 20px 35px 30px;
    min-height: 117px;
    transition: all 0.3s ease;
}

.report-item:hover {
    background: #F2F2F2;
    padding-left: 40px;
}

.report-item p {
    color: var(--text-color2);
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 0;
    max-width: 71%;
}

.report-item div {
    background: #C8C8C8;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

.report-item:hover div {
    background: var(--main-color);
}

.report-item div i {
    font-size: 10px;
}

/* public information - inner research */
/*.year-swiper-container {
    background: var(--main-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 30px;
    margin-bottom: 30px;
}

.year-swiper   {
    color: white ;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
}

.year-slide  {
    cursor: pointer;
}*/
/* public information - inner research  for the a tag*/
.year-swiper-container {
    background: var(--main-color) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    padding: 0 30px !important;
    margin-bottom: 30px !important;
}

.year-swiper {
    color: white !important;
    font: 12px 'BPG Mrgvlovani Caps 2010' !important;
    line-height: 16px !important;
    width: 100% !important;
}

/* Update this part to target the anchor tags */
.year-slide a {
    cursor: pointer;
    color: white !important; /* Ensure link color stays white */
    text-decoration: none; /* Remove default underline */
    display: block; /* Make link fill the slide space */
}

/* Optional: Add hover effect */
.year-slide a:hover {
    opacity: 0.8;
}

.year-slide.active {
    color: #FFCA5A;
}

/* public info - data protection */
.data-protection {
    background: var(--content-bg);
    border-radius: 10px;
    color: var(--text-color2);
    padding: 30px 30px 48px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 18px;
}

.data-protection > p:first-child {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 0;
}

.data-protection a {
    color: #0055FF;
    text-decoration: none;
}

/* public info - statistical data */
.statistics-item p {
    max-width: 80%;
}

.statistics-title, .legal-acts-title {
    background: white;
    font: 24px "GL Tatishvili";
    line-height: 29px;
    margin-bottom: 40px;
}

.go-back1 {
    background: white;
    color: #A4A4A4;
    text-decoration: none;
    display: inline-block;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-top: 35px;
    transition: all 0.3s ease;
}

.go-back1:hover {
    color: var(--main-color);
}

/* public info - request info, responsible people */
.responsible-people, .useful-info {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 30px;
}

.responsible-people div:last-child {
    font: 12px 'BPG Mrgvlovani';
    line-height: 18px;
}

.responsible-people a {
    color: #0055FF;
    text-decoration: none;
}

/* public info - request info, uselful info */
.useful-info {
    padding: 30px 30px 58px;
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link {
    background: white;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 80px;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.link:hover {
    background: var(--main-color);
    color: white;
}

.link p:first-child {
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 0;
}

.link svg {
    transition: all 0.3s ease;
}

.link:hover svg {
   fill: white;
}

/* public info reques form */
.request-form {
    background: var(--content-bg);
    border-radius: 10px;
    padding: 40px 30px;
}

.request-form > p:first-child {
    font: 24px 'GL Tatishvili';
    line-height: 29px;
    margin-bottom: 40px;
}

.request-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
    row-gap: 15px;
    margin-bottom: 20px;
}

.request-address {
    grid-column: span 2;
}

/* contact page styles */
.contact-page {
    padding: 66px 30px 140px;
}

.contact-page-content {
    margin-left: 39px;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 31px;
}

.contact-form {
    width: 53.38%;
}

.contact-form > p:first-child,
.info > p:first-child {
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    margin-bottom: 20px;
}

.contact-comment {
    margin: 20px 0;
}

.contact-comment textarea {
    resize: none;
    height: 150px !important;
}

.contact-form .send-btn {
    left: unset;
    transform: unset;
}

.info {
    width: 43.67%;
}

.info-content {
    background: #F9F9F9;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 22px 30px;
    min-height: 85px;
    margin-bottom: 15px;
}

.info-content > p:first-child {
    font: 12px 'GL Tatishvili';
    line-height: 14px;
    margin-bottom: 0;
}

.info-content > div:last-child {
    color: var(--text-color1);
    font: 12px 'BPG Mrgvlovani';
    display: flex;
    row-gap: 10px;
    column-gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    line-height: 16px;
}

.info-content > div:last-child a {
    color: var(--text-color1);
    text-decoration: none;
}


/* structure pages */
.structure-container {
    padding: 66px 30px 200px;
}

.tree-structure {
    margin-left: 51px;
}

.tree-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.tree {
    color: white;
    font-family: "BPG Mrgvlovani Caps 2010";
    width: 100%;
    text-align: center;
    margin-bottom: 127px;
}

.tree li {
    background: #CCA758;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 4px rgba(0,0,0,0.08 ));
    display: inline-table;
    text-align: center;
    list-style-type: none;
    font-size: 14px;
    line-height: 19px;
    position: relative;
    width: 197px;
    min-height: 150px;
}

.tree1 li {
    background: var(--content-bg);
    color: var(--text-color);
}

.tree li span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;;
}

.tree > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.tree > ul > li:first-child {
    background: var(--main-color);
    border-radius: 10px;
    color: var(--text-color-white);
    font-size: 16px;
    line-height: 22px;
    width: 359px;
    height: 143px;
}

.tree ul {
    position: relative;
    padding: 0;
    margin: 0;
}

.tree ul > ul {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.tree li::after, .tree li::before {
    content: '';
    position: absolute;
    top: -33px;
    right: 50%;
    border-top: 1px solid var(--border-color);
    width: 54%;
    height: 33px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid var(--border-color);
}

.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}

.tree li:first-child::before, .tree li:last-child::after {
    border: 0 none;
}

.tree li:last-child::before {
    border-right: 1px solid var(--border-color);
}

.tree > ul > li:first-child::after, 
.tree > ul > li:first-child::before {
    border: none;
}

.tree ul ul::before {
    content: '';
    position: absolute;
    top: -90px;
    left: 50%;
    border-left: 1px solid var(--border-color);
    width: 0;
    height: 57px;
}

/* second structure styles */
.structure {
    margin-left: 26px;
}

.structure p {
    margin: 0;
}

.structure > ul > li:first-child div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 8px;
}

.structure > ul > li:first-child p:first-child {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 19px;
}

.structure > ul > li:first-child p:last-child {
    font: 20px 'GL Tatishvili';
    line-height: 24px;
}

.structure ul ul > ul {
    flex-direction: column;
    row-gap: 20px;
}

.structure ul ul > ul li {
    background: var(--content-bg);
    color: var(--text-color);
    font-size: 10px;
    line-height: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px
}

.structure ul ul > ul li:first-child {
    background: #CCA758;
    color: white;
}

.structure ul ul > ul li:first-child p:first-child {
    font-size: 10px;
    line-height: 13px;
    margin-bottom: 23px;
}

.structure ul ul > ul li:first-child p:last-child {
    font: 18px 'GL Tatishvili';
    line-height: 22px;
} 

.structure ul ul > ul li:not(:first-child)::before,
.structure ul ul > ul li:not(:first-child)::after {
    border: 0 none !important;
}

.structure ul ul ul::before {
    border: 0 none;
}

.structure ul ul li:first-child::before {
    border-top: 1px solid var(--border-color);
}

.structure ul ul > ul:last-child > li:first-child {
    background: var(--content-bg);
    color: #4D4D4D;
}

.structure ul ul > ul:last-child > li:first-child p {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 0;
}

.structure ul ul > ul:first-child li:first-child::before,
.structure ul ul > ul:last-child li:first-child::after {
    border: 0 none;
}

.structure ul ul > ul:last-child li:first-child::before {
    border-right: 1px solid var(--border-color);
}

/* content page maps */
.map-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 36px;
}

.map {
    border-radius: 10px;
    width: 53%;  
    height: 527px;
}

.map iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.box {
    border: solid var(--main-color) 1px;
    border-radius: 10px;
    width: 47%;
    height: 527px;
}

.box-head {
    background: var(--main-color);
    border-radius: 8px 8px 0 0;
    color: white;
    display: flex;
    align-items: center;
    font: 20px "GL Tatishvili";
    line-height: 24px;
    padding-left: 40px;
    height: 76px;
}

.box-body {
    background: white;
    padding: 10px 0 20px;
    overflow-y: auto;
    height: 441px;
}

/* Firefox */
@-moz-document url-prefix() {
    .box-body {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

/* scrollbar styles */
.box-body::-webkit-scrollbar {
    width: 5px; 
}

.box-body::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 77px;
    border-radius: 3px;
} 

.box-body-component {
    position: relative;
}

.box-body-component::after {
    background: #EEEEEE;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92%;
    height: 1px;
}

.box-body-component:last-child::after {
    background: transparent;
    height: 0;
    width: 0;
}

.region-head {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 19.5px 34.5px 19.5px 40px;
}

.region-head p {
    max-width: 77%;
    margin-bottom: 0;
}

.box-body-component ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    list-style: none;
    margin-bottom: 0;
    max-height: 0;
    padding-left: 39px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-body-component ul li {
    cursor: pointer;
    transition: all 0.3s ease;
}

.box-body-component ul li:hover {
    color: var(--main-color);
}

.box-body-component ul li:last-child {
    margin-bottom: 20px;
}

.box-body-component ul.active {
    max-height: 1000px;
}

.box-body-p {
    margin-left: 40px;
}

.map-arrow {
    background: #C8C8C8;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}

.map-arrow:hover{
    background: var(--main-color);
}

.map-arrow.rotate {
    background: var(--main-color);
    transform: rotate(180deg);
}

.jury-court-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1090px;
}

/* gallery */
.gallery {
    background: white;
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 34px;
}

.gallery-slide-content {
    margin: 0 45px;
    overflow: hidden;
}

.gallery-card {
    width: 155px;
    height: 111px !important;
}

.gallery-card img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.gallery-slide-container .swiper-button-prev::after,
.gallery-slide-container .swiper-button-next::after {
    content: '';
}

.gallery-next, .gallery-prev {
    color: var(--secondary-color) !important;
}

/* sarch results */
.search-results {
    padding-top: 50px;
    padding-bottom: 100px;
}

.search-heading {
    font-size: 24px;
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 20px;
}

.search-page-form {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.search-bar {
    border: 1px solid #ccc;
    border-radius: 4px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: calc(100% - 60px);
    padding: 0 20px;
}

.search-bar:focus {
    outline: none;
}

.search-icon {
    background: var(--main-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
}

.search-item {
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 15px;
}

.search-item-image {
    border-radius: 5px;
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.search-item-content {
    width: calc(100% - 220px);
}

.search-item-title {
    font: 16px 'BPG Mrgvlovani';
    line-height: 20px;
    margin-bottom: 10px;
}

.search-item-date {
    color: var(--secondary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 20px;
}

.search-item-preview {
    color: var(--text-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.search-item-button {
    background: var(--main-color);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-item-button:hover {
    background: var(--menu-color);
}

/* adapt modal */
.adapt-header p {
    font: 20px 'BPG Mrgvlovani Caps 2010';
    line-height: 24px;
    margin-bottom: 0;
}

.adapt-body ul {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin: 0;
    padding-left: 12px;
}

/* accessibility wrapper */
.accessibility-wrapper {
    color: #fff;
    display: flex;
    align-items: center;
    font-family: "BPG Mrgvlovani Caps 2010";
    position: fixed;
    top: 55%; right: -242px;
    transform: translateY(-50%);
    z-index: 99;
    width: 300px;
    height: 180px;
    transition: right 0.3s;
}

.accessibility-wrapper.appear {
    right: 0;
}

.access-icon  {
    background: var(--main-color);
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.access-icon i {
    font-size: 20px;
}

.access-icon svg {
    fill: white;
}

.access-icon svg:last-of-type,
.accessibility-wrapper.appear .access-icon i {
    display: none;
}

.accessibility-wrapper.appear .access-icon svg:last-of-type {
    display: block;
}

.access {
    width: 250px;
    height: 100%;
    background-color: var(--main-color);
    color: #fff !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 30px;
    border-radius: 5px 0 0 5px;
}

.contrast-cont p, .font-cont p {
    font: 15px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 10px;
}

.contrast-img {
    display: flex;
    gap: 10px;
}

.contrast-img img {
    cursor: pointer;
}

.font-minus span, .font-plus span {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.reset-cont button {
    background: var(--menu-color);
    border: none;
    border-radius: 5px;
    color: var(--text-color-white);
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    padding: 6px 15px;
}

.video-cont {
    background: transparent;
    position: relative;
    iframe { width: 660px; height: 370px; }
}

.video-cont {
    cursor: pointer;
    width: 600px;
    height: 370px;
    margin: 60px auto;
    padding: 0;
    position: relative;
    > div {
        background: rgb(246, 5, 5);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        width: 45px; height: 45px;
        z-index: 3;
    }
    > img {
        width: 100%; height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: 2;
    }
}

.video-cont video {
    width: 100%; height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.map-container { 
    padding: 0 20px 120px; 
    position: relative;
    background: transparent;
}

.map-svg > g > g path, .map-svg > g > path {
    cursor: pointer;
    fill: #C8C8C8;
    transition: all 0.3s ease;
    &:hover { fill: var(--main-color);}
}

.map-svg > g > path.active, .map-svg > g > g.active path {
  fill: var(--main-color) !important;
  transition: .3s;
}

.map-svg > g > g:hover path { fill: var(--main-color); }

.info-box {
  position: absolute;
  background: rgba(255,255,255,0.88);
  padding: 27px 30px 20px 39px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 310px;
  right: 350px; top: 5px;
  transition: opacity .3s ease;
}

.info-box.hidden {
  display: none;
}

.info-box p {
    color: var(--main-color);
    font: 20px 'GL Tatishvili';
    line-height: 20px;
    margin-bottom: 17px;
}

.info-box a {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    div {
        background: var(--main-color);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 7px;
        width: 19px; height: 19px;
    }
}

.info-box a span {
    max-width: calc(100% - 40px);
}

.faq-cont {
    padding: 50px 20px 80px;
    position: relative;
    .content3 { gap: 20px; }
}

.faq-item1 {
    .question {
        background: #2E73A5;
        justify-content: space-between;
        padding: 15px 30px;
        p { color: var(--text-color-white); } 
        img { filter: brightness(0) invert(1); }
    }
    .answer-content {
        color: black;
        font: 14px 'Helvetica Roman';
        line-height: 20px;
        padding: 24px 30px 0;
        * { 
            font-size: 14px !important; 
            font-family: 'Helvetica Roman' !important; 
        }
    }
}

.faq-item1.show .question { background: #CCA758; }

.new-dropdown { max-width: 890px; }

.guide-link {
    background: #2E73A5;
    color: var(--text-color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 20px 'GL Tatishvili';
    line-height: 24px;
    padding: 15px 30px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.guide-title {
    color: var(--text-color2);
    font: 24px 'GL Tatishvili';
    line-height: 29px;
}

.guide-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    a {
        color: #A4A4A4;
        text-decoration: none;
        font: 14px 'BPG Mrgvlovani Caps 2010';
        line-height: 20px;
        transition: all 0.3s ease;
        &:hover { color: var(--main-color); }
    }
}