/* ================================
   HORIZONTAL NAVIGATION + HOVER
================================ */
@media(min-width: 1140px){
    .navbar .menu-item-has-children:hover > .sub-menu{
        min-width: 1140px;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05) ;
    }
}
@media (min-width: 992px) {

    /* UL horizontal */
    .navbar .navbar-nav {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    /* Top-level items */
    .navbar .navbar-nav > li {
        position: relative;
    }

    .navbar .navbar-nav > li > a {
        padding: 10px 0;
        font-weight: 600;
        text-transform: uppercase;
        position: relative;
    }

    /* Remove bootstrap arrow / caret */
    .navbar .dropdown-toggle::after {
        display: none;
    }

    /* Dropdown menu */
    .navbar .dropdown-menu,
    .navbar .sub-menu {
        display: flex;
        opacity: 0;
        visibility: hidden;

        transition: all 0.25s ease;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        min-width: 240px;
        padding: 0;
        background: #fff;
        gap: 40px;
        z-index: 1000;
    }

    /* Hover open */
    .navbar .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    /* Dropdown links */
    .navbar .sub-menu li a {
        display: flex;
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }

    .navbar .sub-menu li a:hover {

    }

    /* Active menu item */
    .navbar-nav {

        /* აქტიური ლინკი */

        .current-menu-item > a {
            color: #ff214f !important;
        }

        /* მშობელი, როცა შვილია აქტიური */

        .current-menu-parent > a,
        .current-menu-ancestor > a {
            color: #ff214f !important;
        }

        /* dropdown-ის შიგნით აქტიური */

        .sub-menu {
            .current-menu-item > a {
                color: #ff214f !important;
            }
        }
    }

}

html.mfp-zoom-out-cur {
    overflow: hidden !important;

    body {
        overflow: hidden !important;
        height: 100vh;
        max-height: 100vh;
        /* ზოგჯერ საჭიროა padding-right, რომ გვერდმა არ "იხტუნაოს" სქროლბარის გაქრობისას */
        padding-right: 0px;
        background: rebeccapurple;
    }

}

#application-form-popup {
    max-height: 90vh;
    overflow-y: auto;
}

.big-input, .big-textarea, .big-select select {
    padding: 10px !important;
}

.blog-post-content .wp-video {
    margin-top: 20px;
}

.journal-section-slide .swiper-button-prev,
.journal-section-slide .swiper-button-next {
    top: 0;
    transform: none;

}
.journal-section-slide .swiper-button-prev i,
 .journal-section-slide .swiper-button-next i{
    color: black;
    font-weight: bold;
}
.journal-section-slide{
    padding-top: 60px;
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;

    .margin-20px-top {
        margin-top: 0;
    }
}

.footer-social-icons {
    ul {
        font-size: 20px;
    }
}

/* Pagination Styles */
.pagination-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
}

.pagination-container li {
    margin: 0 5px;
}

.pagination-container a,
.pagination-container span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ededed;
    color: #232323;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-container .current,
.pagination-container a:hover {
    background: #232323;
    color: #fff;
    border-color: #232323;
}

header nav .navbar-nav > li > a {
    margin: 0;
    padding: 0;
}