.renew {
	background-color: #9d9d9d;
	color: black;
	text-align: center;
    font: 16px "BPG Mrgvlovani";
    line-height: 20px;
	height: 45px;
	font-size: 16px;
	padding-top: 12px;
}

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

body.no-scroll {
    overflow: hidden;
}

:root {
    --primary-color: #003399;
    --secondary-color: #295CAA;
    --menu-title: #484848;
    --search-color: #D5D5D5;
    --inner-page-bg: #F5F5F5;
    --link-color: #505050;
    --brand-red: #d80f10;
}

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

.Container1 {
    background: var(--inner-page-bg);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.common-container {
    padding-top: 50px;
    padding-bottom: 140px;
}

.Content {
    display: flex;
    width: 100%;
    max-width: 1170px;
}

.content1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1170px;
}

/* header */
header {
    background: white;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
    min-height: 70px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
}

.logo {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 19px;
    max-width: 250px;
}

.logo img {
    height: 100px;
    max-width: 250px;
    object-fit: contain;
}

.logo p, .footer-logo p {
    font: 12px 'FiraGO';
    line-height: 14px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin-bottom: 0;
    height: 55px;
    padding: 0 20px;
}

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.menu-item > a {
    color: var(--menu-title);
    text-decoration: none;
    font: 14px 'FiraGO';
    line-height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu-item > ul {
    background: white;
    border-radius: 0 0 5px 5px;
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    z-index: 1000;
    width: 234px;
    padding: 0;
}

.menu-item li {
    font: 12px 'FiraGO';
    line-height: 14px;
    display: flex;
    align-items: center;
    min-height: 35px;
    padding: 14px 0 14px 20px;
    transition: all 0.3s ease;
}

.menu-item li:hover {
    background: #F0F0F0;
}

.menu-item ul a {
    color: var(--link-color);
    text-decoration: none;
    display: flex;
}

.menu-item:hover > ul {
    display: flex;
}

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

.header-actions {
    display: flex;
    align-items: center;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 17px;
    overflow: hidden;
}

.search-form input {
    background: white;
    border: 1px solid var(--search-color);
    border-radius: 20px;
    color: var(--search-color);
    cursor: pointer;
    width: 0;
    opacity: 0;
    font: 10px "BPG Mrgvlovani";
    line-height: 13px;
    padding-left: 17px; 
    height: 40px;
    transition: width 0.3s ease, opacity 0.3s ease;
    position: absolute;
    top: -10px;
    right: 60px;
    z-index: 100;
}

.search-form img {
    z-index: 102;
}

.search-form:hover input {
    width: 204px;
    opacity: 1; 
}

.search-form input:focus {
    outline: none;
}

.language-change {
    border-left: 1px solid #CCCCCC;
    padding-left: 17px;
    position: relative;
}

.language-change > a {
    color: #636363;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-change > a i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.language-change a i.active {
    transform: rotate(180deg);
}

.language-change ul {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 100%;
}

.language-change ul a {
    color: rgba(255, 255, 255, 0.41);
    text-decoration: none;
}

.menu-toggle {
    display: none !important;
}

/*footer*/
.footer-container {
    background: var(--primary-color);
    padding: 52px 35px 29px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 47px;
    width: 100%;
    padding-bottom: 46px;

    .footer-logo { display: none; }
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font: 16px 'FiraGo';
    line-height: 19px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials > a {
    width: 24px;
    height: 24px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 55px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item a, .contact-item span {
    color: white;
    text-decoration: none;
    font: 14px 'FiraGo';
    line-height: 17px;
    max-width: 200px;
}

.contact-item div {
    background: white;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 29px;
    height: 29px;
}

.footer-container hr {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

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

.copyright {
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    display: flex;
    flex-direction: column;
    max-width: 210px;
}

.footer-bottom .logo {
    color: white;
}

.footer-bottom .logo img {
    width: 350px;
    height: 100px;
}

.creator {
    color: white;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.creator a {
    color: #9BC3FF;
    text-decoration: none;
}

.image-swiper {
    width: 100%;
    height: auto;
    max-height: 600px;
    z-index: 1;
}

.image-slide {
    width: 100%;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.swiper1 .swiper-pagination {
    bottom: 50px !important;
}

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

.swiper1 .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.banner-link {
    background: rgba(240, 241, 245, 0.82);
    border-radius: 20px;
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    position: absolute;
    z-index: 2;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 40px;
    transition: all 0.3s ease;
}

.banner-link:hover {
    background: var(--secondary-color);
    color: white;
}

.banner-link svg { transition: all 0.3s ease; }
.banner-link:hover svg { fill: white; }

/* middle menu */
.middle-menu {
    width: 100%;
    max-width: 1090px;
    height: 100px;
    position: relative;
    z-index: 2;
    margin: -29px auto 78px;
}

.middle-menu a {
    color: #1a2431;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 14px 'FiraGo';
    line-height: 17px;
    height: 100px;
    padding-left: 20px;
    transition: all .3s ease;
    position: absolute;
    bottom: 0;
    width: 25%;
}

.middle-menu a:first-child {
    border-radius: 15px 0 0 15px;
}
.middle-menu a:last-child {
    border-radius: 0 15px 15px 0;
}

.middle-menu a:nth-child(odd) {
    background: #FAFAFA;
}

.middle-menu a:nth-child(even) {
    background: #F2F2F2;
}

.middle-menu a:hover {
    border-radius: 15px 15px 0 0;
    height: 115px;
}

/* news preview */
.news-preview-container {
    margin-bottom: 50px;
}

.page-title {
    font: 20px 'GL Tatishvili Metal';
    line-height: 24px;
    margin-bottom: 15px;
}

.news-preview-cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.news-preview-cont > div {
    width: calc((100% - 30px) / 2);
}

.news-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-preview-item {
    border: 1px solid var(--search-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 21px 0 11px;
    gap: 13px;
    height: 100px;
}

.news-preview-item p {
    color: var(--menu-title);
    display: flex;
    font: 13px 'FiraGo';
    line-height: 17px;
    height: 51px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 65px);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.news-preview-item svg {
    width: 20px;
    fill: var(--brand-red);
    transition: all 0.3s ease;
}

.news-preview-item:hover p {
    color: var(--secondary-color);
}

.news-preview-item:hover svg {
    fill: var(--secondary-color);
}

.pdf-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pdf-preview a {
    background: #FAFAFA;
    border-radius: 5px;
    color: #1A2431;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font: 14px 'FiraGo';
    line-height: 19px;
    gap: 20px;
    height: 184px;
    transition: all 0.3s ease;
    padding: 27px;
}

.pdf-preview a svg {
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.pdf-preview a:hover,
.pdf-preview a.active {
    background: var(--primary-color);
    color: white;
}

.pdf-preview a:hover svg,
.pdf-preview a.active svg {
    fill: white;
}

.pdf-preview a span {
    text-align: left;
}

.pdf-preview a:nth-child(3) {
    font-size: 13px;
}

/* preview content */
.preview-content {
    flex-direction: column;
    width: 100%;
}

.preview-swiper {
    width: 100%;
    padding-bottom: 50px !important;
    /* margin-bottom: 100px; */
}

.preview-swiper .swiper-pagination {
    display: flex;
    justify-content: center;
}

.preview-swiper .swiper-pagination-bullet {
    background: rgb(152, 152, 152, 0.4);
    border-radius: 50%;
    color: white;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 25px;
    height: 25px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    color: white;
}

.prev-slide {
    cursor: pointer;
}

.prev-slide-cover {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0) 0%, rgba(50, 63, 91, 0.2) 65%, rgba(39, 39, 39, 0.6) 80%, rgba(39, 39, 39, 0.9) 100%);
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    transition: all 0.3s ease;
}

.prev-slide:hover .prev-slide-cover {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0) 0%, rgba(0, 10, 31, 0.5) 65%, rgba(0, 0, 0, 0.2) 100%);
}

.prev-slide img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.prev-slide p {
    color: white;
    font: 16px 'FiraGo';
    line-height: 22px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    height: 66px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    width: 69%;
    margin-bottom: 0;
    font-feature-settings: "case" 1;
}

/* news page */
.news-page-content, 
.gallery-page-content {
    gap: 40px;
}

.inner-page-title {
    font: 14px 'FiraGo';
    line-height: 17px;
    text-align: center;
    margin-bottom: 0;
}

.news-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 35px;
    row-gap: 30px;
}

.news-item {
    background: white;
    border: 1px solid var(--search-color);
    border-radius: 5px;
    cursor: pointer;
    padding: 14px 27px 42px;
}

.news-date {
    color: #AEAEAE;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    padding-left: 34px;
    margin-bottom: 15px;
}

.news-item > div {
    display: flex;
    gap: 13px;
}

.news-item > div p {
    color: var(--menu-title);
    font: 14px 'FiraGo';
    line-height: 17px;
    height: 85px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
    max-width: calc(100% - 41px);
    transition: all 0.3s ease;
}

.news-item > div svg {
    margin-top: 16px;
    width: 20px;
    fill: var(--brand-red);
    transition: all 0.3s ease;
}

.news-item:hover > div svg {
    fill: var(--secondary-color);
}

.news-item:hover > div p {
    color: var(--secondary-color);
}

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

.pagination div a {
    color: #929395;
    text-decoration: none;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.pagination div p {
    color: #003399;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.prev-page, .next-page {
    background: #C8C8C8;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-page a, .next-page a {
    color: white !important;
}

.prev-page:hover, .next-page:hover {
    background: var(--primary-color);
}

.prev-page i, .next-page i {
    color: white;
    font-size: 13px;
}

.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(--primary-color);
}

/* inner news page */
.inner-news-page {
    flex-direction: column;
}

.news {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.current-news {
    width: 65%;
}

.current-news-img {
    width: 100%;
    height: 297px;
    object-fit: cover;
    /* change this later */
    object-position: 0%;
    margin-bottom: 30px;
}

.news-title {
    background: #F5F5F5;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 10px;
}

.news-title > p:first-child {
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    margin-bottom: 15px;
}

.news-title > p:last-child {
    color: #AEAEAE;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 0;
}

.news-text {
    background: #f5f5f5;
    border-radius: 5px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding: 30px 30px 36px;
    margin-bottom: 26px;
}

.news-text * {
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px !important;
}

.share-news {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.go-back {
    color: #A4A4A4;
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 20px;
    transition: all 0.3s ease;
}

.go-back:hover {
    color: var(--primary-color);
}

.share {
    color: white;
    display: flex;
    align-items: center;
    gap: 21px;
}

.share a {
    color: #A4A4A4;
    text-decoration: none;
}

.share span {
    color: var(--primary-color);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.share div i, .share a i {
    font-size: 20px;
    color: #A4A4A4;
    transition: all 0.3s ease;
}

.share a:hover i, 
.share div:hover i {
    color: var(--primary-color);
}

.other-news {
    width: 32%;
}

.other-news > p:first-child {
    font: 14px 'FiraGo';
    line-height: 17px;
    margin-bottom: 25px;
}

.other-news > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item > img {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-item > div {
    background: #f5f5f5;
    border-radius: 0 0 5px 5px;
    padding: 27px 23px 31px;
}

.gallery-item p {
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 32px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

/* inner gallery page */
.gallery-img {
    width: 100%;
    height: 290px;
}

.gallery-img img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* links page */
.links-page-content {
    gap: 30px;
}

.link-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.sidenav {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 22px 20px 15px;
    width: 307px;
}

.side-link {
    background: white;
    border-radius: 5px;
    color: var(--link-color);
    text-decoration: none;
    font: 14px 'FiraGo';
    line-height: 17px;
    padding: 11px 36px 11px 14px;
    transition: all 0.3s ease;
}

.side-link.active,
.side-link:hover {
    background: #F0F0F0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 337px);
}

.link {
    display: flex;
    gap: 20px;
}

.link a {
    background: white;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 55px;
    padding-left: 19px;
    width: calc(100% - 108px);
}

.copy-link {
    background: var(--primary-color);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 88px;
}

/* contact page */
.contact-content {
    padding-top: 50px;
    gap: 40px;
}

.contact-info {
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 179px;
    width: 100%;
}

.contact-icon {
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    width: 29px;
    height: 29px;
}

.contact-info > div {
    display: flex;
    align-items: center;
    gap: 20px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.contact-info a {
    color: black;
    text-decoration: none;
}

.contact-address, .contact-email {
    position: relative;
}

.contact-address::after,
.contact-email::after {
    content: '';
    background: var(--primary-color);
    position: absolute;
    top: -27px;
    right: -66px;
    height: 85px;
    width: 1px;
}

/* content pages */
.new-content-page {
    padding-top: 50px;
    padding-bottom: 140px;
    width: 100%;
    max-width: 1090px;
}

.new-content-page * {
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px !important;
}

.new-content-page b,
.new-content-page strong {
    font-weight: bold !important;
}

.members-page {
    padding-top: 50px;
    padding-bottom: 140px;
}

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

.member-card {
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    min-height: 148px;
}

.member-position {
    color: #919191;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-align: center;
}

.member-name {
    font: 14px 'Gilroy GEO';
    line-height: 18px;
}

.symbolic {
    padding-top: 50px;
    padding-bottom: 140px;
}

.symbol-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.black-white {
    color: var(--primary-color);
    text-decoration: none;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 20px;
}

.pdfs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 28px;
    margin-bottom: 30px;
}

.pdf {
    color: #000;
    display: grid;
    grid-template-columns:  478px 193px;
    grid-gap: 20px;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdf p {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    min-height: 55px;
    display: flex;
    align-items: center;
    padding-left: 19px;
}

.pdf p span {
    width: 93%;
    max-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf figure, .pdf div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 10px 5px;
    width: 193px;
}

.pdf div {
    background: var(--primary-color);
}

.pdf div span {
    color: white;
}

.pdf figure svg {
    transition: all 0.3s ease;
}

.pdf:hover figure {
    background: var(--primary-color);
    color: #fff;
}

.pdf:hover figure svg {
    fill: white;
}

.request-files {
    display: flex;
    flex-direction: column;
    align-items: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-top: 50px;
}

.request-files a {
    color: var(--primary-color);
    text-decoration: none;
}

/* main page map buttons */
.map1 ul {
    display: none;
    gap: 20px;
    list-style: none;
    position: relative;
    z-index: 2000;
    top: -80px;
}

.map1 ul li {
    border-radius: 10px;
    font: 16px 'FiraGo';
    line-height: 18px;
    width: 350px;
    height: 50px;
}

.map1 ul li a {
    background: #EEEEEE;
    border-radius: 10px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.map1 ul li:hover a {
    background: var(--primary-color);
    color: white;
}

/* heraldic page */
.category-item {
    width: 100%;
    height: 259px;
    border-radius: 10px;
    position: relative;
}

.category-item > img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.category-cover {
    /* background: linear-gradient(to bottom, rgba(0, 51, 153, 0) 0%, rgba(0, 22, 77, 1) 100%); */
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0) 0%, rgba(50, 63, 91, 0.5) 65%, rgba(39, 39, 39, 0.6) 80%, rgba(39, 39, 39, 0.9) 100%);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}

.category-title {
    position: absolute;
    z-index: 10;
    width: 69%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    color: white;
    font: 16px 'FiraGo';
    line-height: 22px;
    max-height: 66px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-feature-settings: "case" 1;
}

.category-item:hover .category-cover {
    /* background-color: var(--primary-color); */
    background: rgba(39, 39, 39, 0.8);
    border-radius: 0 0 10px 10px;
    height: 40%;
    top: 60%;
}

.common-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1090px;
    column-gap: 35px;
    row-gap: 30px;
}

.common-grid .arms {
    width: 100%;
    position:relative;
}

.arms .arms_img { 
    width: 100%;
    height:352px; 
}

.arms .arms_info {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 25%, rgba(39, 39, 39, 0.4) 40%, 
    rgba(39, 39, 39, 0.6) 55%, rgba(39, 39, 39, 0.8) 80%, rgba(39, 39, 39, 1) 100%);
    color: #fff;
    position:absolute;
    bottom: 0;
    height: 130px;
    width: 100%;
}

.arms .arms_info div {
    font: 14px "FiraGo";
    line-height: 19px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    font-feature-settings: "case" 1;
}

.arms .arms_info img {
    vertical-align:middle;
}

/* map popup */
.region {
    display: flex;
    align-items: center;
    gap: 32px;
}

.regionarm {
    padding-left: 10px;
}

.regionarm img {
    margin-top: 21px !important;
    margin-right: 0 !important;
}

.regioninfo {
    font: 16px 'FiraGo';
    line-height: 20px;
    width:250px;
}

.map_more .more {
    position: absolute;
    z-index: 55;
    height: 18px;
    width: 80px;
    right: 10px;
    bottom: 20px;
}

.map_more .more a {
    text-decoration:none; 
    color:var(--primary-color); 
    font-size: 14px;
}

.contact-map {
    width: 100%;
    max-width: 1170px;
}

.contact-map iframe {
    border-radius: 10px;
}

.arms_navbar {
    margin-bottom: 80px;
}

.news-preview-img {
    border-radius: 2px;
    width: 100px;
    height: 70px;
    object-fit: cover;
    object-position: top;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
}

.symbolic-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 70px;
    max-width: 1170px;
}

.symbolic-btns a {
    background: #FAFAFA;
    border: none;
    border-radius: 5px;
    color: unset;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font: 14px 'FiraGO';
    line-height: 19px;
    height: 40px;
    padding: 0 15px;
    transition: all 0.3s ease;
}
.symbolic-btns a:hover, .symbolic-btns a.active {
    background: var(--primary-color);
    color: white;
}

.symbolic-btns a:last-child {
    font-size: 12px;
    line-height: 17px;
}

.listen-anthem {
    background: var(--primary-color);
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    text-decoration: none;
    width: 180px;
    height: 40px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.footer-logo {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;

    img {
        width: 50px;
        margin-left: -14px;
    }
}

.file-request-container {
    position: relative;
}

.file-request {
    color: var(--brand-red);
    cursor: pointer;
    text-decoration: underline;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
}

.file-request-form {
    background: white;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    padding: 50px 30px 30px;
    display: none;
    position: absolute;
    top: -400px;
    left: -210px;
    width: 740px;
    z-index: 2;
}

.file-request-form.visible { display: block; }

.file-request-form > p:first-child {
    color: var(--brand-red);
    text-align: center;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 30px;
}

.file-request-form label {
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    margin-bottom: 12px;
}

.close-form {
    color: var(--brand-red);
    cursor: pointer;
    position: absolute;
    font-size: 20px;
    top: 20px;
    right: 20px;
}

.file-request-form input {
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 100%;
    height: 45px;
    padding-left: 20px;
    &:focus { outline: none; }
}

.file-request-form select {
    background: transparent;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 100%;
    height: 45px;
    padding: 0 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:nth-last-of-type(2), .form-group:last-of-type {
    grid-column: 1 / span 2;
}

.request-comment {
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 15px 20px 0;
    height: 100px;
    resize: none;
    grid-column: 1 / span 2;
}

.file-request-form > div:first-of-type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 23px;
    row-gap: 20px;
    max-width: 660px;
    margin-bottom: 30px;
}

.agree-terms {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.agree-terms input {
    margin: 0 10px 0 0;
    background: transparent;
    border: 1px solid var(--primary-color) !important;
    border-radius: 3px !important;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: all 0.3s ease;
    position: relative;
    width: 20px !important;
    height: 20px !important;
    padding-left: unset !important;
}

.agree-terms input:checked {
    background: var(--primary-color);
}

.agree-terms input:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agree-terms label {
    color: black;
    font-size: 10px;
    line-height: 13px;
    margin-top: -2px;
    margin-bottom: unset;
    font-family: "BPG Mrgvlovani";
    max-width: calc(100% - 35px);
}

.send-request {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 250px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
    }
}

.dropdownMenu {
    background: rgba(0, 46, 118, 0.9);
    color: white;
    padding: 0 30px;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: scroll !important;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100vh - 110px); }

.dropdownMenu hr {
    border: 1px solid rgba(255, 255, 255, 0.27);
    opacity: 1;
    margin: 0 -30px;
}

.dropdownMenu a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    padding: 20px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu-children {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    > a {
        padding: 0;
        font: 12px "BPG Mrgvlovani";
        line-height: 16px;
    }
    > a:last-child { padding-bottom: 20px; }
}

.mobile-menu-children.visible { max-height: 1000px; }
.mobile-search { display: none; } 

.main-page-teritorials {
    display: none;
    padding-top: 50px;
    padding-bottom: 80px;
}