@import url('./gtu-buttons.css');
@import './bootstrap.min.css';
@import url('https://free.bboxtype.com/embedfonts/?family=FiraGO:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url("https://cdn.web-fonts.ge/fonts/bpg-arial-caps/css/bpg-arial-caps.min.css");
@import url("https://cdn.web-fonts.ge/fonts/bpg-arial/css/bpg-arial.min.css");

body,
html {
    padding: 0;
    margin: 0px !important;
    background: var(--body-bg);
    font-family: 'BPG Arial';
    max-width: 100%;
    overflow-x: hidden;
}

* {
    text-decoration: none !important;
}

/* Define the scrollbar track */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Define the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #bababa;
    border-radius: 5px;
}

/* Define the scrollbar size */
::-webkit-scrollbar {
    width: 8px;
}

/* Define the scrollbar thumb on Mozilla Firefox */
/* Note: Firefox uses a different pseudo-element for scrollbar customization */
/* The following styles will only work on Firefox versions that support the scrollbar-color property */
/* For broader compatibility, you may consider using a CSS library or JavaScript plugin for custom scrollbars */
* {
    scrollbar-color: #bababa #f1f1f1;
    scrollbar-width: thin;
}


header {
    /* position: fixed; */
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.custom-dropdown-content a {
    color: #fff !important;
}


.lang-current-icon {
    background: #fff;
    border-radius: 50px;
    --samesize: 30px;
    min-width: var(--samesize);
    max-width: var(--samesize);
    min-height: var(--samesize);
    max-height: var(--samesize);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.header-langs>* {
    padding: 0px;
}

.header-langs>.lang-current-icon:hover {
    animation: spin 0.6s forwards;
} */

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*
.header-langs img {
    max-height: 26px;
}

.header-dropdown {
    position: relative;
} */

.custom-dropdown-parent {
    position: absolute;
    background: transparent;
    top: 100%;
    left: 0;
    z-index: 15;
}


.custom-dropdown-content {
    min-height: 100px;
    min-width: 200px;
    margin: 0px 0px 10px 0px;
    padding: 10px;
    background: var(--links-hover-bg);
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

.custom-dropdown-content a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'BPG Arial';
    text-transform: capitalize !important;
}

.custom-dropdown-content a:hover {
    background: var(--links-hover-bg2);
}

.langs-list {
    position: absolute;
    background: transparent;
    top: 100%;
    margin-top: -4px;
    right: -15px;
    z-index: 15;
}

.fake-dropdown-body {
    min-height: 100px;
    min-width: 200px;
    margin: 19px 0px 10px 0px;
    padding: 10px;
    background: #fff;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 0 0 8px #ddd;
}

.fake-dropdown-body a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 15px;
    transition: 300ms ease;
}

.fake-dropdown-body a img {
    max-height: 24px;
}

.fake-dropdown-body a:hover {
    background: #ddd;
    color: #333;
}

.fake-dropdown-body .active {
    background: #8462ff;
    color: #fff;
}

.fake-dropdown-body a:hover img {
    animation: spin 0.5s forwards;
}

/*

.header-links {
   display: flex;
   align-items: center;

}

.header-links .active {
    font-weight: bold;
}

.header-links .dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.header-links>* {
    transition: 0.4s;
} */

.main {

    background: #fff;
    position: relative;
}


.main .carousel-item {
    min-height: 500px;
}

.main .carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .carousel-control-prev,
.main .carousel-control-next {
    z-index: 4;
}

.carousel-control-prev-icon::before {
    font-family: "Font Awesome 5 Pro";
    /* Font Awesome font family */
    content: '\f053';
    font-size: 35px;
    font-weight: 500;
    color: #fff;
}

.carousel-control-next-icon::before {
    font-family: "Font Awesome 5 Pro";
    /* Font Awesome font family */
    content: '\f054';
    font-size: 35px;
    font-weight: 500;
    color: #fff;
}

.carousel-indicators {
    z-index: 5 !important;
}

.carousel-indicators [data-bs-target] {
    min-height: 8px !important;
    background-color: #fff !important;
    border-radius: 4px;
}

.carousel-indicators [data-bs-target].active {
    opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
}

.main-text {
    font-family: "BPG Arial Caps", sans-serif;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    max-width: 60%;
    text-align: left;
    padding: 20px;
    position: relative;
    text-align: center;
    margin: auto;
    z-index: 4;

    opacity: 0;
}

.carousel-item.active .main-text {
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(auto);
    }
}

.main-textkkk::after {
    content: '';
    position: absolute;
    left: 40px;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(132, 98, 255, 1);
    margin-right: -40px;
    margin-bottom: -40px;
    min-height: 60px;
}

.scroll-loader {
    position: fixed;
    left: 0;
    top: 60px;
    min-height: 5px;
    background: rgba(132, 98, 255, 1);
    min-width: 0px;
    z-index: 888;
    display: none;
}

.about-conference {
    min-height: 300px;
}


.main-title {
    font-family: 'FiraGO', sans-serif;
    font-feature-settings: "case" on;
    text-transform: uppercase;
    color: var(--main-title-text-color);
    text-align: left;
    font-size: 20px;
    padding: 25px 0px;
    font-weight: 600;
    /* margin: auto; */
    position: relative;
}

.left-imaged {
    display: grid;
    gap: 50px;
    grid-template-columns: 500px auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.left-image-parent {
    overflow: hidden;

}

.left-image {
    padding-top: 90%;
    position: relative;
    transform: scale(1.2);
    transition: 400ms ease;
}

.left-image-parent:hover .left-image {
    transform: scale(1.5);
}

.left-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1)
}

.left-imaged-text {
    font-family: "BPG Arial", sans-serif;
    line-height: 1.7;
    font-size: 16.5px;
}

.lines-under-title {
    display: grid;
    grid-template-columns: 100px auto 100px;
    grid-template-rows: 5px auto 5px;
    justify-content: space-between;
    align-items: center;
}

.lines-under-title>* {
    min-height: 7px;
    display: block;
    background: var(--sidebar-a-hover);
}

.lines-under-title>*:last-child {
    background: #f1eaf6;
}


.articles-grid a .zoom {
    position: relative;
    overflow: hidden;
}

.articles-grid a .zoom>* {
    transition: 400ms ease;
}

.articles-grid a:hover .zoom>* {
    transform: scale(1.2);
}

.articles-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
}









.albums-grid a .zoom {
    position: relative;
    overflow: hidden;
}

.albums-grid a .zoom>* {
    transition: 400ms ease;
    border-radius: 10px;
    overflow: hidden;
}

.albums-grid a:hover .zoom>* {
    transform: scale(1.2);
}

.albums-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
}



.article-image {
    background: #a7a7a7;
    padding-top: 70%;
    overflow: hidden;
}

.grid-article-title {
    display: block;
    text-decoration: none;
    line-height: 1.5;
    cursor: pointer;
    font-family: 'FiraGO', sans-serif;
    font-feature-settings: "case" on;
    text-transform: uppercase;

    font-size: 16px !important;
    color: var(--grid-article-title-text-color) !important;
    padding: 5px 20px !important;
}


.articles-grid>*:hover .grid-article-title {
    color: var(--grid-article-title-hover-text-color) !important;
}



.grid-article-info {
    background: var(--bg-article-info);
    padding: 20px;
}

.articles-grid>*:hover .grid-article-info {
    background: var(--grid-article-info-hover) !important;
}

.btn {
    font-family: 'BPG Arial';
    font-size: 15px;
    border-radius: 50px;
}


.partner-slide {
    padding: 10px;
}

.partner-slide>a {
    min-height: 130px !important;
    max-height: 130px !important;

    display: grid;
    text-align: center;
    background: #fff;
    padding: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.partner-slide img {
    max-height: 90px;
    max-width: 95%;
}

.slick-prev.slick-arrow::before,
.slick-next.slick-arrow::before {
    color: #8462ff !important;
}

.gallery-items {
    border-radius: 0px;
    position: relative;

    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
}

.gallery-items>* {
    background: #bbbbbb;
    padding-top: 130%;
    position: relative;
    overflow: hidden;
}

.gallery-item-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.gallery-items>* .gallery-item-image {
    transition: 300ms ease;
}


.gallery-items>*:hover .gallery-item-image {
    transform: scale(1.1);
}



.full-screen-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 52, 102, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
}

.gallery-items>* .full-screen-layer {
    transition: 300ms ease;
    opacity: 0;
}

.gallery-items>*:hover .full-screen-layer {
    opacity: 1;
}


.footer-blocks {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    gap: 30px;
}

.footer-block {
    padding: 20px 0px;
    min-width: 260px;
}

.footer-block-title {
    font-family: 'FiraGO', sans-serif;
    font-feature-settings: "case" on;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    padding: 20px 15px;
    color: var(--footer-block-title-color);
}

.footer-links a {
    display: block;
    padding: 12px 15px;
    line-height: 1;
    font-size: 16px;

    font-family: 'FiraGO', sans-serif;
    font-feature-settings: "case" on;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--footer-contact-name-color);
}

.footer-links a:hover {
    color: var(--footer-links-hover-color) !important;
}

.footer-contact-icon {
    --samesize: 40px;
    min-height: var(--samesize);
    max-height: var(--samesize);
    min-width: var(--samesize);
    max-width: var(--samesize);

    color: var(--logo-text-bg);
    font-size: 18px;
    background: var(--footer-contact-icon-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-name {
    font-family: 'FiraGO', sans-serif;
    font-feature-settings: "case" off;
    text-transform: initial;
    font-size: 17px;
    font-weight: 400;
    color: var(--footer-contact-name-color);
}

.footer-contact-links {
    padding: 0px 15px;
}

.footer-contact-links>* {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0px;
}

.footer-copyright {
    padding: 20px;
    margin-top: 10px;
    text-align: center;
    font-family: 'BPG Arial', sans-serif;
    font-feature-settings: "case" off;
    text-transform: initial;
    font-size: 16px;
    font-weight: 600;
    border: none !important;
    color: var(--footer-copyright-color) !important;
}


.lines-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lines-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.lines-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

#google_translate_element,
.skiptranslate {
    display: none !important;
}

#thebody {
    margin: 0px !important;
    top: 0px !important;
}

.news-text {
    font-family: 'BPG Arial';
    font-size: 16px;
}


.lightbox-layer {
    background: var(--lightbox-layer);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: none;
}

.lightbox-header {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    max-width: 1200px;
    margin: auto;
}



.lh-button {
    background: #fff;
    color: var(--sidebar-a-hover);
    min-height: 42px;
    width: 42px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 300ms ease;
}

.lh-button.close {
    max-width: 42px;
}


.lh-button:hover {
    background: #563fa9;
}

.lh-button.close:hover {
    background: rgba(255, 0, 0, 0.814) !important;
    color: #fff !important;
}

.lightbox-image {
    position: fixed;
    left: 0;
    top: 80px;
    right: 0;
    bottom: 20px;
    z-index: 1202;
    background: #fff;
    max-width: 1200px;
    margin: auto;
}

.lightbox-header .disabled {
    opacity: 0.3;
}

.lightbox-header-parent {
    background: var(--lightbox-header-parent);
}

.lightbox-header * {
    color: var(--lightbox-headertext-color);
}


.lh-button:hover {
    background: #fff;
    color: var(--sidebar-a-hover);
}

.lh-button.close:hover {
    background: rgba(255, 0, 0, 0.814) !important;
}

.lightbox-image {
    position: fixed;
    left: 0;
    top: 80px;
    right: 0;
    bottom: 20px;
    z-index: 1202;
    background: var(--bg-white);
    max-width: 1200px;
    margin: auto;
}

.lightbox-header .disabled {
    opacity: 0.3;
}

.sidenav .card-header {
    background: var(--sidenav-card-header-bg) !important;
    color: var(--sidenav-card-header-text) !important;
}

.msa-left>:nth-child(1) span,
.msa-right>:nth-child(2) span {
    color: var(--msa-color-active) !important;
}

.trigger-color {
    color: var(--trigger-color);
}

.slick-dots li.slick-active button::before {
    color: var(--bg-active) !important;
}

.carouselButton {
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    font-family: 'BPG Arial';
}

.carouselButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px #fff;
}
