:root,
:root.white-black {
    --bg-color: white;
    --text-color: black;

    --news--boxShadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    --rightside--bg: #F8F8F8;

    --bg-color--inverse: black;
    --text-color--inverse: white;

    --main--bg: #35355A;
    --yellow: #D4AF6C;
    --bs-border-radius: 10px;
}

:root.black-white {
    --bg-color: black;
    --text-color: white;

    --bg-color--inverse: white;
    --text-color--inverse: black;

    --news--boxShadow: 0 3px 6px rgba(255, 255, 255, 0.84);
    --rightside--bg: #070707;

}


:root.black-yellow {
    --bg-color: black;
    --text-color: #FFFF00;
    --bg-color--inverse: white;
    --text-color--inverse: black;

    --news--boxShadow: 0 3px 6px rgba(255, 255, 255, 0.84);
    --rightside--bg: #070707;
}









.black-white body {
    background-color: var(--bg-color);
    color: var(--text-color);
}



.black-yellow body {
    background-color: var(--bg-color);
    color: var(--text-color);
}










body {
    font-family: "BPG Mrgvlovani";
    font-size: 12px;
    line-height: 1.2;
    transition: 0.5s;
    transform: unset !important;


}

main {
    min-height: 50vh;
}

.header--top__container {
    height: 0;
    transition: 0.6s;
    overflow: hidden;
    background-color: var(--main--bg);
    color: white;
}

header.dropped .header--top__container {
    height: 99px;
}

.header--top__container>.container {
    height: 99px !important;
}

.container {
    width: min(100% - 2rem, 930px);
    padding: 0;
}

.gap-10 {
    gap: 10px !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.header--top__container>div {
    padding-block: 20px;
}

.header--top {
    display: flex;
    align-items: center;
    height: 100%;
}

.header--top__item {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;
    padding-block: 4px 7px;
    padding-inline: 39px;
    height: 100%;
    min-height: 59px;

}

.header--top__item:not(:last-child) {
    border-right: 1px solid #D4D4D4;
}

#header--voice {
    padding-inline: 23px;
    width: 83px;
}

.header--top__item img {
    cursor: pointer;
}

.font-minus,
.font-plus {
    font-size: 10px;
}

#animation-stop img {
    opacity: 0;
    transition: all 0.3s ease;
    width: 18px;
}

#animation-stop:hover img {
    opacity: 1;
}

#animation-stop,
#design-close {
    padding-top: 10px;
    text-align: center;
}

.logo {
    display: block;
    margin-top: 10px;
}

.english-logo {
    width: 164px;
    /* height:107px; */
    height: auto;
}

.header--middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    /*height: 75px;*/
    margin-bottom: 25px;
}

.header--middle form {
    display: flex;
}

.header--middle--left {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.adaptation {
    height: 75px;
    background-color: #35355A;
    font-size: 10px;
    font-family: "BPG Mrgvlovani Caps 2010";
    padding: 0 15px 0px 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.adaptation button {
    color: white;
    background-color: transparent;
    display: flex;
    gap: 8px;
    align-items: center;
    text-transform: uppercase;

}

.adaptation.adapted,
.adaptation:hover {
    background-color: #D4AF6C;
    height: 88px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.hotline {
    font-size: 16px;
    background-color: #EE3135;
    width: 222px;
    /*padding-bottom: 15px;*/
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hotline i {
    color: #EE3135;
    background-color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 5px;
}

.hotline a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search--input__container {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    /*margin-right: 25px;*/
    /*margin-bottom: 20px;*/
}

.search--input__container i {
    color: var(--text-color);
    font-size: 16px;
    /* position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); */
}

.search--input__container input {
    border: none;
    background-color: transparent;
    width: 194px;
    border-bottom: 1px solid #D8D8D8;
    transition: all 0.5s ease;
    /*opacity: 0;*/
}

.search--input__container:hover input,
.search--input__container input:focus,
.search--input__container input:focus-visible {
    opacity: 1 !important;
}

.language--switcher {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding-bottom: 18px;*/
    font-size: 12px;
    /*padding-left: 22px;*/
    position: relative;
    text-transform: capitalize;
}

.language-image {
    width: 20px;
    height: 20px;
}

.language--switcher div {
    position: absolute;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
    overflow: hidden;
}

.language--switcher .fa-arrow-down {
    transition: all 0.3s ease;
}

.language--switcher.dropped div {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.language--switcher.dropped .fa-arrow-down {
    transform: rotate(180deg) translateY(-2px);
}

.dropdownbtn {
    cursor: pointer;

}

header {
    position: relative;
}

.header--bottom {
    background-color: rgba(53, 53, 90, 0.65);

    position: absolute;
    bottom: -75px;
    width: 100%;
    z-index: 999;
    /* transition: top 0.6s ease; */
}


header.navbar--fixed .header--bottom {
    position: fixed;
    top: 0;
    bottom: unset;
}

.header--bottom ul {
    display: flex;
    /* gap: 10px; */
    align-items: center;
    justify-content: space-between;

    font-size: 11px;
    font-family: "BPG Mrgvlovani Caps 2010";
    color: white;

}

.header--bottom ul li {
    flex-grow: 1;
    height: 100%;

}

.header--bottom ul li:first-child {
    max-width: 45px;
}

.header--bottom ul li a {
    text-align: center;
    padding-inline: 3px;
    display: grid;
    place-items: center;
    height: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.header--bottom ul li a:hover,
.header--bottom ul li a.active {
    background-color: #D4AF6C;
}

.header--bottom .fa-house {
    font-size: 15px;
}

section.hero--bigBackground {
    height: 684px;
    background-image: url('../img/Rectangle\ 1.png');
    background-size: cover;
    position: relative;
    background-position: center;
}

section.hero--bigBackground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 53, 90, 0.45);
}

.news--box {
    position: relative;
    /*top: -429px;*/
    /*margin-bottom: -379px;*/
    width: 100%;
    top: -180px;
    margin-bottom: -130px;

}

.news--grid {
    padding-inline: 30px;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
    box-shadow: var(--news--boxShadow);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 60fr 40fr;
    /* background-color: white; */
    background-color: var(--bg-color);
}

.title {
    font-family: "Gilroy GEO";
    font-size: 20px;
    margin-bottom: 20px;
}

.title--underlined {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title--underlined::before {
    content: '';
    display: block;
    width: 23px;
    height: 3px;
    background-color: var(--yellow);
}

.big--news {
    padding-right: 35px;
    padding-block: 30px 50px;
    border-right: 1px solid #D8D8D8;


}

.big--news a {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.big--news img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    border-radius: 10px;
}

.news--time {
    color: #B9B9B9;
}

.news--header {
    font-size: 16px;
    font-family: "BPG Mrgvlovani Caps 2010";
}

.news--paragraph {
    color: #737373;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.4;
}

.see--more {
    margin-right: auto;
    border-radius: 3px;
    background-color: var(--main--bg);
    color: white;
    font-size: 11px;
    font-family: "BPG Mrgvlovani Caps 2010";
    padding: 11px 33px;
    margin-top: 20px;
    transition: 0.3s;
}

.see--more:hover {
    color: black;
    background-color: var(--yellow);
}

.small--news__container {
    margin-top: 44px;
    padding-block: 30px 50px;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.small--news {
    display: flex;
    gap: 14px;
}

.small--news .news--header {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.small--news .news--time {
    font-size: 10px;
    margin-bottom: 13px;
}

.small--news div:first-child {
    line-height: 0;
}

.small--news img {
    width: 100px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}

.exposure {
    display: flex;
    align-items: center;
    height: 105px;
    position: relative;
    background-image: url('../img/exposure.png');
    background-size: cover;
    color: white !important;
    transition: all 0.3s ease;
}

.exposure::before {
    transition: all 0.3s ease;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.36);
}

.exposure h1 {
    font-family: "Gilroy GEO";
    font-size: 30px;
    position: relative;
}

.exposure--form {


    position: absolute;
    right: 0;
    width: calc(((100vw - 930px) / 2) + 139px);
    background-color: var(--main--bg);
    transition: all 0.3s ease;
    top: 0;

    display: none;
}

.exposure--form div {
    height: 105px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-inline: 15px;
    font-size: 10px;
}

.exposure:hover::before {
    background-color: rgba(0, 0, 0, 0.63);
}

.exposure:hover .exposure--form {
    background-color: var(--yellow);
}

.exposure-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.exposure-form-link {
    z-index: 3;
}

section.FAQ {
    margin-bottom: 40px;
}

.FAQ--grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    min-height: 150px;
    margin-top: 37px;
}

.FAQ--grid__item {
    padding: 30px 25px 30px 20px;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    font-size: 14px;
    line-height: 18px;
    height: 115px;
    overflow: hidden;
    transition: 0.3s;
}

.FAQ--grid__item p {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    height: 54px;
}

.FAQ--grid__item:hover {
    height: 150px;
    padding-bottom: 20px;
}

.see--mr {
    font-size: 10px;
    margin-top: 30px;
    color: var(--yellow);
}

.hero--section {
    margin-bottom: 75px;
}

.statisticsHotline--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-family: "Gilroy GEO";
    font-size: 26px;
}

.statisticsHotline--left {
    text-align: right;
    background-image: url('../img/statleft.png');
    background-size: cover;
    background-position: bottom;
    padding-block: 37px;
    padding-right: 30px;
    position: relative;
    transition: all 0.3s ease;
    color: white !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.statisticsHotline--left::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--main--bg);
    opacity: 100%;
    transition: all 0.3s ease;

}

.statisticsHotline--left:hover::before {
    opacity: 53%;

}

.statisticsHotline--grid span {
    position: relative;
}

.statisticsHotline--left:hover {
    padding-right: 75px;
}

.statisticsHotline--left i {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
    font-size: 22px;
}

.statisticsHotline--left:hover i {
    opacity: 1;
}

.statisticsHotline--right {
    text-align: left;
    background-image: url('../img/statright.png');
    background-size: cover;
    background-position: center;
    padding-block: 37px;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
    color: white !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.statisticsHotline--right::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(212, 175, 108, 1);
    opacity: 100%;
    transition: all 0.3s ease;

}

.statisticsHotline--right:hover::before {
    background-color: rgba(0, 0, 0, 0.28);

}

.statisticsHotline--grid span {
    position: relative;
}

.statisticsHotline--right:hover {
    padding-left: 75px;
}

.statisticsHotline--right i {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
    font-size: 22px;
}

.statisticsHotline--right:hover i {
    opacity: 1;
}

.section--donors {
    margin-bottom: 130px;
}

.section--donors .title--underlined::before {
    background-color: #EE3135;
}

.section--donors .title--underlined {
    margin-bottom: 37px;
}

.swiper--donors {
    margin-inline: 50px;
}

.swiper--donors-next {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 22px;
    color: #C9C9C9;
    transition: 0.3s;
}

.swiper--donors-prev {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    z-index: 5;
    color: #C9C9C9;
    font-size: 22px;
    transition: 0.3s;
}

.swiper--donors-next:hover,
.swiper--donors-prev:hover {
    color: #707070;
}

.swiper--donors .swiper-slide img {
    max-width: 100%;
    height: 101px;
    object-fit: cover;
}

footer {
    min-height: 198px;
    padding-block: 35px;
    background-image: url('../img/footer.png');
    color: white;
    font-size: 11px;

    font-family: "BPG Mrgvlovani Caps 2010";

    position: relative;
}

footer .container,
footer>img {
    z-index: 5;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main--bg);
    opacity: 86%;
    z-index: 1;
}

.footer--img {
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(((100vw - 930px) / 2) + 170px);
    object-fit: cover;
    object-position: top;

}

.footer--img__right {
    right: 0;
}

.footer--img__left {
    left: 0;
}

.footer--nav {
    display: flex;
    justify-content: space-between;
    /* gap: 10px; */
    gap: 5px;
    flex-wrap: wrap;
    text-transform: uppercase;
}

footer a {
    transition: 0.3s;
}

footer a:hover {
    color: var(--yellow) !important;
}

.footer--socials {
    margin-top: 50px;
    margin-bottom: 37px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer--socials__item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.footer--socials__item div {
    margin-right: 5px;
}

.footer--socials__item:hover div {
    background-color: var(--yellow);
}

footer .icon--wrapper {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    background-color: white;
    color: black;
    border-radius: 50%;
    transition: 0.3s;
}

.credits {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 10px;
    opacity: 0.76;
}


/* inner pages start*/


.breadcrumbs--section {
    height: 180px;
    position: relative;
    background-image: url('../img/breadcrumb.svg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    color: white;
    font-size: 11px;
    font-family: "BPG Mrgvlovani Caps 2010";
    margin-bottom: 30px;
}

.breadcrumbs--section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main--bg);
    opacity: 45%;
}

.breadcrumbs--section .container {
    position: relative;
    z-index: 5;
}

.breadcrumb {
    margin: 0;
}

.breadcrumbs {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    text-transform: uppercase;
}

.breadcrumbs li {
    position: relative;

}

.breadcrumbs li:not(:first-child)::before {
    content: url('../img/Path\ 59.svg');
    margin-right: 2px;
}

.breadcrumbs li a {
    transition: 0.3s;
}

.breadcrumbs li a:hover {
    color: var(--yellow) !important;
}

.innerPage--grid {
    display: grid;
    grid-template-columns: 1fr 246px;
    gap: 30px;
    align-items: flex-start;
}

.innerPage--rightside {
    /* background-color: #F8F8F8; */
    background-color: var(--rightside--bg);
    border-radius: 10px;
    padding: 30px 15px 30px 15px;
    text-align: right;
    font-family: "BPG Mrgvlovani Caps 2010";
    line-height: 1.4;
    text-transform: uppercase;
}

.innerPage--rightside li:not(:last-child) {
    margin-bottom: 20px;
}

.innerPage--rightside li a {
    transition: 0.3s;
}

.innerPage--rightside li a:hover,
.innerPage--rightside li a.active {
    color: var(--yellow) !important;
}

.innerPage--img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.innerPage--img {
    margin-bottom: 30px;
}

.innerPage--content {
    line-height: 1.4;
}

.innerPage--content p {
    margin-bottom: 15px;
}

.innerPage--content ul li {
    list-style-type: disc;

    margin-bottom: 15px;
}

.innerPage--content ul li::marker {
    content: '';

}

.innerPage--content ul li::before {
    content: '•';
    display: inline;
    padding-right: 5px;
}

.innerPage--content h1,
.innerPage--content h2,
.innerPage--content h3 {
    font-family: "Gilroy GEO";
    font-size: 16px;
}

.innerPage--content b,
.innerPage--content strong {
    font-family: "Gilroy GEO";
}

.innerPage--content iframe,
.innerPage--content video,
.innerPage--content img {
    max-width: 100%;
}

.xelmdzgvaneliPirebi--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    row-gap: 40px;
}

.xelmdzgvaneliPirebi--item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xelmdzgvaneliPirebi--img img {
    width: 315px;
    height: 266px;
    object-fit: cover;
    border-radius: 10px;
}

.xelmdzgvaneliPirebi--position {
    color: #919191;
}

.xelmdzgvaneliPirebi--name {
    font-family: "Gilroy GEO";
    font-size: 18px;
}

.xelmdzgvaneliPirebi--vrclad {
    color: var(--yellow);
    display: flex;
    gap: 7px;
    transition: all 0.3s ease;
}

.xelmdzgvaneliPirebi--vrclad .fa {
    margin-top: 2px;
}

.xelmdzgvaneliPirebi--item:hover .xelmdzgvaneliPirebi--vrclad {
    gap: 15px;
}

.xelmdzgvaneliPirebi--grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.xelmdzgvaneliPirebi--inner__back {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    color: var(--yellow) !important;
}

.xelmdzgvaneliPirebi--inner__back i {
    position: relative;
    left: 5px;
    transition: 0.3s;
}

.xelmdzgvaneliPirebi--inner__back:hover i {
    left: 0;
}

.xelmdzgvaneliPirebi--grid__inner .innerPage--content {
    line-height: 1.1;
}

.innerPage--bignews {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.innerPage--bignews .see--more {
    margin-top: 6px;
}

.innerPage--bignews img.rounded {
    width: 100%;
    /* height: 278px; */
    height: auto;
    object-fit: cover;
}

.innerPage--smallNews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    row-gap: 30px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 7px;
    font-size: 13px;
}

.pagination i {
    color: #7D7D7D;
    transition: all 0.3s ease;
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-inline: 17px;

}

.pagination .active {
    color: var(--yellow) !important;
}

.pagination a {
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a:hover i {
    color: var(--yellow) !important;
}

.news__inner img.rounded {
    height: 278px;
    object-fit: cover;
    width: 100%;
}

.news__inner .innerPage--content {
    color: #737373;
    margin-bottom: 40px;

}

.news--inner__slider {
    width: calc(100% - 120px);
    line-height: 0;
    max-width: 654px;
}

.news--inner__slider--container {
    position: relative;
    margin-bottom: 30px;
    padding: 22px 0;
    border: 1px solid #E1E1E1;
    border-radius: 10px;
}

.news--inner__slider--container .next,
.news--inner__slider--container .prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.news--inner__slider--container .next {
    right: 22px;
}

.news--inner__slider--container .prev {
    left: 22px;
}

.news--inner__slider--container .swiper-slide img {
    width: 100%;
    height: 111px;
    object-fit: cover;
    border-radius: 10px;
}

.news--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share--container {
    display: flex;
    align-items: center;
    gap: 11px;
}

.share--line {
    width: 16px;
    height: 1px;
    background-color: black;
}

.share--container a {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: black;
    display: grid;
    place-items: center;
    color: white !important;
    font-size: 11px;
    transition: 0.3s;
}

.share--container a:hover {
    background-color: var(--yellow);
}

.video--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    row-gap: 30px;
}

.video--item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video--time {
    margin-top: 2px;
    color: #B9B9B9;
}

.video--item p {
    font-family: "BPG Mrgvlovani Caps 2010";
    line-height: 1.3;
}

.video--play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(0);
    transition: 0.3s;
    fill: white;
}

.video--item:hover .video--play {
    fill: var(--yellow);
}

.video--img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    border-radius: 10px;
}

#rangeDate,
#rangeDatevideo {
    width: 212px;
    height: 30px;
    border: 1px solid #DBDBDB;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding-left: 20px;
}

.datepicker svg {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}















.statistics--container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statistics--item {
    font-family: "BPG Mrgvlovani Caps 2010";
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #DBDBDB;
    padding: 17px 20px 17px 30px;
    transition: 0.3s;
}

.statistics--item:hover {
    border-color: #6E6E6E;
}

.statistics--item i {
    color: var(--yellow);
}

.statistics--inner__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.statistics--inner__item {
    display: grid;
    grid-template-columns: 1fr 246px;
    gap: 30px;
    font-family: "BPG Mrgvlovani Caps 2010";
}

.statistics--inner__item p {
    padding: 10px 20px;
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    transition: 0.3s;
    min-height: 55px;
    display: flex;
    align-items: center;
}

.statistics--inner__item figure {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background-color: #F8F8F8;
    border-radius: 10px;
    transition: 0.3s;
    padding: 10px 5px;
}

.statistics--inner__item- svg {
    transition: 0.3s;
}

.statistics--inner__item:hover figure {
    background-color: var(--main--bg);
    color: white;

}

.statistics--inner__item svg {
    transition: 1s;
}

.statistics--inner__item:hover svg {
    fill: white;
}

.statistics--inner__item:hover p {
    border-color: #6E6E6E;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    background-color: var(--yellow);
}

.flatpickr-day.today {
    border-color: var(--yellow);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background-color: var(--yellow) !important;
    border-color: var(--yellow) !important;
}

.flatpickr-current-month span.cur-month {
    font-family: "BPG Mrgvlovani Caps 2010";
}

.flatpickr-day {
    border-radius: 0;
}

.flatpickr-prev-month i,
.flatpickr-next-month i {
    color: var(--yellow);
}

.flatpickr-current-month span.cur-month {
    font-weight: normal;
}

.flatpickr-calendar {
    padding: 20px;
    width: 348px;
}

.flatpickr-day:hover {
    color: white;
    background-color: var(--yellow);
    border-radius: var(--yellow);
}

.fadeUp {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    transition: 1s;
    filter: blur(5px);
}

.activated {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: 1s !important;
    filter: blur(0) !important;
}

.delayed0 {
    transition-delay: 200ms !important;
}

.delayed1 {
    transition-delay: 400ms !important;
}

.delayed2 {
    transition-delay: 600ms !important;
}

.delayed3 {
    transition-delay: 800ms !important;
}

.innerPage--rightside li {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    transition: 1s;
    filter: blur(5px);
}

.innerPage--rightside li:nth-child(1) {
    transition-delay: 200ms !important;
}

.innerPage--rightside li:nth-child(2) {
    transition-delay: 400ms !important;
}

.innerPage--rightside li:nth-child(3) {
    transition-delay: 600ms !important;
}

.innerPage--rightside li:nth-child(4) {
    transition-delay: 800ms !important;
}

.innerPage--rightside li:nth-child(5) {
    transition-delay: 1000ms !important;
}

.innerPage--rightside li:nth-child(6) {
    transition-delay: 1200ms !important;
}

.innerPage--rightside li:nth-child(7) {
    transition-delay: 1400ms !important;

}

.innerPage--rightside li:nth-child(8) {
    transition-delay: 1800ms !important;
}

.innerPage--rightside li:nth-child(9) {
    transition-delay: 2000ms !important;
}

.innerPage--rightside li:nth-child(10) {
    transition-delay: 2200ms !important;
}






.FAQ--container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FAQ--item {
    border: 2px solid #DBDBDB;
    border-radius: 10px;
    padding: 20px 20px 20px 30px;
    cursor: pointer;
    transition: 0.5s;
}

.FAQ--item:hover {
    border-color: black;
}

.FAQ--head {
    color: #579ECE;
    font-size: 14px;
    font-family: "BPG Mrgvlovani Caps 2010";

    display: flex;
    align-items: center;
    gap: 20px;
}

.FAQ--item svg {
    fill: #737373;
    transition: 0.5s;
}


.FAQ--content__hidden {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.FAQ--item.toggled svg {
    fill: var(--yellow);
}

.FAQ--item.toggled .plus-vertical {
    transform: translate(-50%, -50%) rotate(90deg);
}

.plus-vertical {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.FAQ--content {
    padding-left: 35px;
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.3;
}

#contact--map {
    height: 350px;
    margin-top: 45px;
}

.mt-20 {
    margin-top: 20px;
}

.contact--head {
    background-image: url('../img/Rectangle\ 655.png');
    height: 180px;
    position: relative;
    margin-bottom: 40px;
    display: grid;
    place-items: center;
    padding: 20px 80px;
    color: white;
    font-size: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact--head>div {
    position: relative;
    z-index: 56;
}

.contact--head::before,
.contact--addresses::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #35355A;
    border-radius: 10px;
    opacity: 0.70;
    z-index: 5;
    left: 0;
    top: 0;
}

.contact--head__item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact--head__item .icon--wrapper {
    background-color: var(--yellow);
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    transition: 0.5s;
}

.contact--head__item p:nth-child(3) {
    padding: 6px 11px;
    background-color: var(--yellow);
    border-radius: 5px;

}

a.contact--head__item:hover .icon--wrapper {
    background-color: var(--main--bg);
}

a.icon--wrapper:hover {
    background-color: var(--main--bg);
}

.contact--head__item.bordered {
    padding: 24px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.39);
    border-left: 1px solid rgba(255, 255, 255, 0.39);
}

.contact--title {
    font-size: 16px;
    font-family: "BPG Mrgvlovani Caps 2010";
    margin-bottom: 25px;
}

fieldset {
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    padding: 5px 5px 5px 30px;

}

legend {
    float: unset;
    width: auto;
    font-family: "Gilroy GEO";
    font-size: 14px;
    position: relative;
    padding-inline: 10px;
    margin-left: -10px;
}

.required legend::after {
    position: absolute;
    top: -4px;
    right: 3px;
    width: 5px;
    height: 5px;
    content: '*';
    color: #EE3135;
    font-weight: lighter;
}

fieldset input {
    width: 100%;
    height: 100%;
    border: none;
    color: #8D8D8D;
    padding-block: 10px;
    background-color: transparent;
}

input::placeholder {
    opacity: 1;
}

.fieldset--grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

fieldset textarea {
    width: 100%;
    border: none;
    height: 64px;
    background-color: transparent;

}

textarea {
    resize: none;
}

textarea:focus {
    outline: none;
}

.contact--btn {

    height: 50px;
    width: 164px;
    background-color: var(--main--bg);
    color: white;
    display: grid;
    place-items: center;
    border-radius: 10px;
    transition: 0.5s;
    font-family: "BPG Mrgvlovani Caps 2010";
}

.contact--btn:hover {
    background-color: var(--yellow);
}

.contact--addresses {
    background-image: url('../img/Rectangle\ 656.png');
    margin-top: 50px;
    height: 180px;
    position: relative;

    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 80px;
    color: white;
    font-size: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.contact--addresses h1 {
    font-family: "Gilroy GEO";
    font-size: 16px;
}

.contact--addresses div {
    z-index: 6;
}

.contact--addresses__item {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.contact--addresses__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
}

.contact--addresses__item h3 {
    font-family: "Gilroy GEO";
    font-size: 14px;
    margin-bottom: 6px;
    margin-top: 12px;
}

.contact--addresses__item p {
    font-size: 12px;
}

#custom-button {
    width: 100%;
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: white;
    background-color: #008037;
    border-radius: 10px;
    cursor: pointer;
    padding: 15px 30px;
}

#custom-button span {
    text-align: left;
    font-size: 14px;
    font-family: "BPG Mrgvlovani Caps 2010";
}




.fileupload--grid {
    display: grid;
    grid-template-columns: 663fr 246fr;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
}

#fileupload {
    padding: 12px 30px;
    height: 80px;
    background-image: url('../img/uploader.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: grid;
    grid-template-columns: 330fr 284fr;
    align-items: center;
    color: white;
    border-radius: 10px;
}

#fileupload::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #35355A;
    border-radius: 10px;
    opacity: 0.76;
    z-index: 5;
    left: 0;
    top: 0;
}

#fileupload>* {
    position: relative;
    z-index: 6;
}

#fileupload h3 {
    font-family: "Gilroy GEO";
    font-size: 20px;
    padding-right: 10px;
}

#fileupload div {
    padding: 6px 0 6px 20px;
}

#fileupload h4 {
    font-family: "Gilroy GEO";
    font-size: 16px;
    margin-bottom: 8px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-transform: uppercase;
}

#fileupload p {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

#fileupload.uploaded div {
    border-left: 1px solid white;
}

.form--agreement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;

}

.form--agreement>div {
    color: #35355A;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form--agreement div a {
    font-family: "Gilroy GEO";
    text-decoration: underline !important;
}

.checkbox--styled {
    position: relative;
}

.checkbox--styled input {
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox--styled span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #EFEFEF;
    border-radius: 5px;
    z-index: -1;
}

.checkbox--styled input:checked+span::before {
    background-image: url('../img/checked.svg');
}

.form--agreement label {
    cursor: pointer;
}

.search--number {
    font-family: "BPG Mrgvlovani";
    font-size: 20px;
    color: #579ECE;
}

#search--results__form {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 25px;
    border: 1px solid #DBDBDB;
    padding: 13px 20px 13px 30px;
    margin-bottom: 35px;
}

#search--results__form input {
    color: #579ECE;
    border: none;
    border-bottom: 1px solid #D8D8D8;
    width: 100%;
    padding-bottom: 5px;
}

#search--results__form .fa-magnifying-glass {
    font-size: 18px;
}

.search--section {
    padding-right: 43px;
    padding-left: 33px;
}

.search--container {
    padding-left: 30px;
    padding-right: 22px;
}

.search--match {
    color: #579ECE;
}

.search--item {
    line-height: 1.3;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 32px;
}

.search--item a {
    font-size: 11px;
    font-family: "BPG Mrgvlovani Caps 2010";
    padding: 11px 33px;
    transition: 0.3s;
    background-color: var(--main--bg);
    color: white !important;
    border-radius: 3px;
}

.search--item a:hover {
    background-color: var(--yellow);
}

.team--grid {
    grid-template-columns: 1fr;
}

.innerPage--content,
.xelmdzgvaneliPirebi--grid__inner .innerPage--content {
    font-size: 14px;
    line-height: 1.3;
}

.xelmdzgvaneliPirebi--grid__inner {
    display: block;
}

.xelmdzgvaneliPirebi--float {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.xelmdzgvaneliPirebi--float img {
    width: 315px;
    height: auto;
    object-fit: cover;
}

.double--footer--socials {
    display: flex;
    align-items: center;
    gap: 15px;

}

.double--footer--socials .icon--wrapper {
    color: black !important;
    font-size: 14px;
}

footer .icon--wrapper:hover {
    background-color: var(--yellow);
}

.double--footer--socials .icon--wrapper svg {
    width: 15px;
}






/* new news design start */
 .small--news__container {
    padding-left: 30px;

}

.small--news {
    flex-direction: column;
}

.small--news img {
    width: 100%;
    height: 178px;
}

.small--news .news--time {
    font-size: 13px;
    margin-bottom: 8px;
}

.small--news .news--header {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-height: 1.2;
}

.news--paragraph {
    -webkit-line-clamp: 3;
}

.big--news {
    padding-bottom: 30px;
}

.small--news__container {
    padding-bottom: 30px;
} 

/* new news design end */

/* new contact design start */
.contact--addresses h1{
    margin-bottom: 27px;
}
.contact--addresses{
    justify-content: unset;
    height: 190px;
    border-radius: 10px;
}
.contact--selectcontainer{
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 85px;
}
.contact--selectcontainer h2{
    font-family: "Gilroy GEO";
font-size: 16px;
margin-bottom: 16px;
}
.contact--selectcontainer select{
    background-color: white;
    width: 280px;
    height: 50px;
    padding-left: 30px;
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    color: #8D8D8D;
    appearance: none;
    cursor: pointer;
}
.select--arrow{
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    background-color: #D4AF6C;
    font-size: 10px;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
}
.contactSelect--rightside{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}
.contactSelect--rightside h3{
    font-family: "Gilroy GEO";
font-size: 19px;
margin-bottom: 5px;
text-transform: uppercase;
}
.contactSelect--rightside p{
    font-size: 17px;
}
.cities--container div:not(.active){
    display: none;
}

/* new contact design end */


/* sextortion link styles */
.sextortion {
    background-image: url('../img/sextortion-bg.jpg');
}

.sextortion h1 {
    /* text-align: right; */
}

/* sextortion page */
.sextortion-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.sextortion-intro > img {
    width: 40%;
    object-fit: cover;
    border-radius: 5px;
}

.sextortion-intro > div {
    width: 60%;
}

.sextortion-summery {
    margin-bottom: 20px;
}

.extortion > p:first-child,
.selflessness > p:first-child {
    color: #085294;
}

.selflessness {
    margin-bottom: 40px;
}

.selflessness-img {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.selflessness-img > p {
    width: 60%;
    font-size: 14px;
}

.selflessness-img > img {
    width: 40%;
    border-radius: 5px;
}

.extortion {
    margin-bottom: 40px;
}

.extortion-intro {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.extortion-intro img {
    width: 40%;
    border-radius: 5px;
}

.extortion-intro > div {
    width: 60%;
}

.sextortion-list {
    margin-bottom: 30px;
}

.sextortion-list ul li {
    margin-bottom: 5px;
    text-align: justify;
}

.list-img {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 10px;
    word-wrap: 100%;
}

.list-img ul {
    width: 60%;
}

.list-img img {
    width: 40%;
    border-radius: 5px;
}

.sextortion-news {
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.sextortion-news a {
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white !important;
    display: flex;
    position: relative;
    height: 235px;
    width: calc((100% / 3));
    z-index: 1;
}

.sextortion-news a::before {
    background-color: rgba(0, 0, 0, 0.58); 
    border-radius: 5px;
    opacity: 0.76;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%; 
    z-index: 2;
}

.sextortion-news a p {
    position: absolute;
    display: flex;
    flex-direction: column;
    font: 22px "BPG Mrgvlovani Caps 2010";
    gap: 5px;
    top: 30%;
    left: 30px;
    right: 10px;
}

.sextortion-news a > * {
    z-index: 3;
}

.sextortion-news a:first-child {
    background-image: url('../../uploads_script/sextortion/Picture7.jfif');
}

.sextortion-news a:nth-child(2) {
    background-image: url('../../uploads_script/sextortion/Picture9.png');
}

/* .sextortion-news a:nth-child(3) {
    background-image: url('../../uploads_script/sextortion/Picture9.png');
}

.sextortion-news a:last-child {
    background-image: url('../../uploads_script/sextortion/Picture7.jfif');
} */

.sextortion-menu {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: none;
    position: fixed;
    width: 250px;
    top: 350px;
    right: 10px;
    z-index: 10000;
    flex-direction: column;
}

.sextortion-menu.fixed {
    display: flex;
}

.sextortion-menu li {
    display: inline;
    font-size: 13px;
    line-height: 19px;
    transition: all 0.3s ease;
}

.sextortion-menu li:hover {
    color: #D4AF6C;
}

.mobile-overwiev, .mobile-extortion {
    display: none;
}

.sextortion-page p {
    text-align: justify;
}

.new-link a {
    font-size: 11px !important;
}