/*
Theme Name:     MAE
Author:         Goku
Version:        1.0.0
Description:    There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain...
*/

* {
    overflow-wrap: break-word;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}


/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    /*--default-color: #444444; !* Default color used for the majority of the text content across the entire website *!*/
    --default-color: #004f71; /* Default color used for the majority of the text content across the entire website */
    --default-color-accent: #004f71a8; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #566777; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #040677; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent-color: #040677; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --default-folder-color: #004f71;
    --default-table-pagination-color: #004f71ab;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #1acc8d; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1acc8d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f4f5fe;
    --surface-color: #ffffff;
}

.default-color {
    color: var(--default-color);
}

/*.dark-background {*/
/*    --background-color: #08005e;*/
/*    --default-color: #ffffff;*/
/*    --heading-color: #ffffff;*/
/*    --surface-color: #0c0091;*/
/*    --contrast-color: #ffffff;*/
/*}*/

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}


.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    /*color: color-mix(in srgb, var(--default-color), transparent 50%);*/
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title div {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #566777 !important;
    color: #ffffff !important;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}


.default-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 85% !important;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.show-on-med-and-down {
    display: none;
}

@media (max-width: 767px) {
    .hide-on-med-and-down {
        display: none !important;
    }

    .show-on-med-and-down {
        display: block !important;
    }

}

@media (max-width: 577px) {
    .hide-on-xsmall {
        /*display: none !important;*/
    }
}

blockquote {
    overflow: hidden;
    background-color: rgba(34, 34, 34, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    transition: all 0.5s;
}

blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
}

blockquote:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

ol li, ul li {
    margin-bottom: 5px;
}

.page-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
}

#btn-close-preloader {
    opacity: 1;
    float: right;
    padding: 20px;
    filter: brightness(0) invert(1) !important;
}

.btn-nav-menu {
    color: #fff !important;
    border-color: #fff !important;
    background-color: #566777 !important;
    display: block;
    height: 40px;
    padding: 10px;
    width: 40px;
    transition: 0.15s all;
}

.btn-nav-menu:hover {
    background-color: #0e0e0e !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    /*min-height: 75vh !important;*/
    min-height: 85vh !important;
    padding: 60px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero:after {
    width: 0 !important;
}

.hero .hero-logo {
    width: 150px;
    /*margin: 0 auto;*/
}

.hero .img-left-logo {
    width: 250px;
    /*box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);*/
    border-radius: 50%;
}


@media (min-width: 1365px) {
    .hero {
        background-attachment: fixed;
    }
}

.hero h2.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    padding-top: 50px;
}


@media (max-width: 767px) {
    .hero h2 {
        padding-top: 10px;
        font-size: 2rem;
    }
}

@media (max-width: 577px) {
    .hero .icon-logo-text span {
        display: inline !important;
    }

    .hero .hero-left-line {
        width: 100% !important;
        height: 1px !important;
    }

}


@media (max-width: 640px) {
    .hero h2.title {
        font-size: 36px;
    }

    .section-title h2 {
        line-height: normal;
    }

    .section-title h2::after {
        display: block;
        margin: 4px 10px 4px 0;
        width: 100%;
        background: linear-gradient(#e01c0e, #f9e10b 80%, #fcfbb3);
    }

}

.hero .icon-boxes {
    padding-bottom: 10px;

}

@media (max-width: 992px) {
    .hero .hero-logo {
        margin: 0 auto;

    }

    .hero h2 {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .hero .icon-boxes:before {

    }
}

.hero .icon-box {
    padding: 10px;
    position: relative;
    overflow: hidden;
    background: var(--background-default);
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}

.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hero .icon-box .title a {
    color: red;
    transition: 0.3s;
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
    background: var(--background-default-transparent);
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.4);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
    color: #fff !important;
}


.hero .hero-left-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(#e01c0e, #f9e10b 80%, #fcfbb3);
}

.hero .icon-logo-text {
    color: #fff;
    text-align: center;
}

.hero .icon-logo-text span {
    display: block;
}

/*
.hero ul.list-composition {
    list-style: none;
    padding: 0;
}

.hero ul.list-composition li {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff2b;
    margin-bottom: 10px;
}

.hero ul.list-composition li:first-child {
    margin-top: 35px;
}

.hero ul.list-composition i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: 32px;
    color: #fff;
    background: #566777;
    margin-right: 15px;
    line-height: 0;
    border-radius: 5px;
}

.hero ul.list-composition h4,.hero ul.list-composition h4 a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.hero ul.list-composition p {
    font-size: 15px;
}*/

/* Waves effect */

.hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
}


#preloader {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

#preloader .loading_progress {
    width: 100vw;
    height: 5px;
    overflow: hidden;
    background: #e8e9ee;
    border-radius: 6px;
    margin: auto;
}

#preloader .loading_progress {
    background: #c30734;
    margin-top: 0;
    margin-left: -100vw;
    animation-name: preloader_animation;
    animation-duration: 5.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 100vw;
    height: 3px;
    transition: .1s;
}


@keyframes preloader_animation {
    0% {
        margin-left: -100vw;
    }
    100% {
        margin-left: 100vw;
    }
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes flip-infinity {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(-1);
    }
    100% {
        transform: scaleX(1);
    }
}


/* Begin Composition */
.ministry-composition {
    color: white;
    padding: 1rem;
    /*height: 4rem;*/
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
}

.ministry-composition .ministry-composition-card {
    background: #566777;
    display: flex;
    border: 1px solid #566777;
    border-radius: 10px;
    overflow: hidden;
}

.ministry-composition .ministry-composition-card .ministry-composition-card-img {
    background-color: #ffffff;
}

.ministry-composition .ministry-composition-card img {
    max-width: 150px;
}


@media (min-width: 600px) {
    .ministry-composition {
        grid-template-columns: repeat(1, 1fr);
    }

}


@media (min-width: 900px) {
    .ministry-composition {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ministry-composition .ministry-composition-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ministry-composition .ministry-composition-card img {
        margin-top: 10px;
        border-radius: 5px;
    }
}

/* End Composition */


/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
    /*color: color-mix(in srgb, var(--default-color), transparent 20%);*/
}

.details .features-item + .features-item {
    margin-top: 100px;
}

@media (max-width: 640px) {
    .details .features-item + .features-item {
        margin-top: 40px;
    }
}

.details .features-item h3 {
    font-weight: 700;
    font-size: 26px;
}

.details .features-item ul {
    list-style: none;
    padding: 0;
}

.details .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.details .features-item ul li:last-child {
    padding-bottom: 0;
}

.details .features-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.details .features-item p:last-child {
    margin-bottom: 0;
}

/* Feature menu */
.feature-menu ul {
    list-style-type: none;
    display: flex;
    margin: 0;
}

.feature-menu ul li {
    padding: 10px 30px;
    background: #5856a1e6;
    border-radius: 10px;
    margin: 4px;
}

.feature-menu ul li a {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #566777;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.03);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 56px;
    /*font-size: 100px;*/
    text-transform: uppercase;
    line-height: 0;
}

.section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }
}

.navbar a, .navbar a:focus {
    /*color: rgba(255, 255, 255, 0.9) !important;*/
}

.navbar ul#menu-menu-princiapl li ul li.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid; /* This makes the arrow visible and point right */
}


.text-justify {
    text-align: justify;
}

.scroll-top {
    background-color: #566777;
}

.scroll-top.active {
    border: 1px solid #fff;
}

.scroll-top.active:hover {
    background-color: #566777;
}

.header.sticked {

    /*background:#566777 url(assets/img/bg-pattern.png) !important;*/
    /*background-size: cover !important;*/
}

.header .nav-link, .header .navbar .menu_item_wpglobus_menu_switch,
.header .navbar .menu_item_wpglobus_menu_switch .dropdown-menu li a {
    text-transform: uppercase;
}

.header-menu-logo {
    border-radius: 5px;
}


.header-logo {
    width: 15em;
}

@media (max-width: 1279px) {
    .navbar ul {
        background: #566777 !important;
        /*background: rgba(27,47,69,0.6) url(../../assets/img/bg-pattern.png);*/
    }

    .navbar .dropdown ul {
        /*border: 1px solid #8d0d0f;*/
    }

}

.dropdown-item:focus, .dropdown-item:hover {
    color: #566777 !important;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    /*background-size: cover;*/
    /*background: #566777 url(http://estatal.gov.test/wp-content/themes/estatal.gov.tl/assets/img/wave.png) no-repeat center;*/
}

.breadcrumbs .page-header {
    padding: 60px 0 60px 0;
    min-height: 45vh;
    position: relative;
    background-color: #566777;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
    background-color: #f6f6f6;
    padding: 20px 0;
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-default);
}

.breadcrumbs nav ol a {
    color: var(--color-primary);
    transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
    text-decoration: underline;
}

.breadcrumbs nav ol li + li {
    padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary);
    content: "/";
}


/* Hero */
.hero:before {
    background: rgba(27, 47, 69, 0.6);
}

.hero:after {
    background-size: auto !important;
    background: #566777 url(assets/img/wave.png) no-repeat bottom !important;
}

.hero-about-balkaun {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.hero-about-balkaun .stats-item {
    position: relative;
    background: rgba(0, 79, 113, .69);
}

.hero-about-balkaun .stats-item span {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-about-balkaun .stats-item span:after {
    content: none;
}

.hero-about-balkaun .stats-item:before {
    font-family: Georgia, serif;
    content: "“";
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 3.5em;
    color: rgba(238, 238, 238, 0.8);
    font-weight: normal;
}

.hero-about-balkaun .stats-item:after {
    font-family: Georgia, serif;
    content: "”";
    position: absolute;
    top: 0;
    line-height: 100px;
    right: 10px;
    font-size: 3.5em;
    color: rgba(238, 238, 238, 0.8);
    font-weight: normal;
}

@media (max-width: 1191px) {
    .hero-about-balkaun {
        margin-top: 30px;
    }
}

.bg-wave {
    background: url(assets/img/wave.png) !important;
    /*background-color: #5667771f !important;*/
    background-color: #354c5e3d !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: right;

}

.wp-block-image {
    border: none !important;
}

.section-header h2 {
    /*color: #566777;*/
}

.section-header h2:after {
    /*background:#566777;*/
}

.section-header h2 small {
    font-size: .575em;
}

.breadcrumbs nav ol a {
    color: #566777;
}

.breadcrumbs .page-header:before {
    background-color: #3535358c;;
}


.hero blockquote {

    border-radius: 2rem 0rem;
    padding: 1rem !important;
}

blockquote p {
    margin-bottom: 0 !important;
    margin-top: .5rem !important;
}

blockquote cite::before {
    content: "â€” ";
}

blockquote cite {
    display: block;
    padding-top: 1rem !important;
    margin-top: 1.5rem !important;
    border-top: 1px solid #dee2e6 !important;
    font-size: .875em;
    font-style: italic;
    color: #6c757d;
}


.on-hover {
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}

.on-hover:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.bg-light {
    background-color: #f8f9fa !important;
}

#main ul {
    list-style: none;
    padding: 0;
}

#main ul li {
    padding-bottom: 10px;
}

#main ul li::before {
    content: "\f26f";
    /*font-size: 20px;*/
    font-family: bootstrap-icons !important;
    padding-right: 4px;
    color: var(--accent-color);
}

#main ul li ul {
    margin-left: 25px;
}


#main a {
    color: #566777;
}

/* Begin Content */
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    color: #566777;
}

.content h1, .content h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}


.content h1::after, .content h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #566777;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* End Content */


/* Begin Values */
ol.list-numbers {
    list-style: none;
    padding-left: 0;
    counter-reset: my-awesome-counter;
}

ol.list-numbers li {
    counter-increment: my-awesome-counter;
    position: relative;
    padding-left: 3.5rem;
}

ol.list-numbers li::before {
    content: counter(my-awesome-counter) ". ";
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #566777;
}


/* End Values */


/* Call to Action */

.hoverable {
    transition: 0.2s ease-in;
}

.call-to-action {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.call-to-action ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.call-to-action .services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.call-to-action .services .canal {
    margin: 2px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background: rgba(0, 79, 113, .69);
}

.call-to-action .services .canal i.icon {
    font-size: 32px;
    color: #ffffff;
}

.call-to-action .services .canal.hoverable:hover {
    /*box-shadow: 1rem 1rem 5rem 0rem rgba(187,165,162, .5);*/
    box-shadow: 0 0 20px rgba(187, 165, 162, .51);
}

.call-to-action .services .canal .title {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #fff;
}

@media (min-width: 600px) {
    .call-to-action .services {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 900px) {
    .call-to-action .services {
        grid-template-columns: repeat(3, 1fr);
    }
}


.stats-item {
    padding: 30px;
    width: 100%;
    background: rgba(6, 12, 34, 0.8);
    border-radius: 10px;
    transition: 0.2s ease-in;
}

.stats-item:hover {
    box-shadow: 1rem 1rem 1rem -1rem rgba(239, 235, 235, .5);
}

.stats-item span {
    font-size: 1.35rem;
    display: block;
    /*font-weight: 700;*/
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    color: #fff;
}

.stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.stats-item p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/*#about {
    background: url(assets/img/balkaun-uniku.jpg);
    background-size: cover;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 60px 0 40px 0;
}


#about:before {
    content: "";
    background: rgba(27, 47, 69, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

@media (min-width: 1024px) {
    #about {
        background-attachment: fixed;
    }
}


#about h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

#about h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

#about p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}*/

/* Begin FAQ */
.faq .question-icon, .faq .accordion-button:not(.collapsed) {
    /*color: #566777;*/
}

/* End FAQ */


/*
*
* Tables custom
*/
table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
}

.table > :not(:first-child) {
    border-top: 1px solid var(--default-folder-color);
}

table thead {
    border-bottom: none !important;
}

table thead tr th {
    background: var(--default-folder-color) !important;
    border-color: var(--default-folder-color) !important;
    color: var(--surface-color) !important;
    font-size: 1.25rem;

}

table tbody tr td {
    padding: 10px 5px !important;
    font-size: 1rem;
}

table tbody td a:hover {
    color: var(--default-folder-color);
}

table td, table th {
    border: 1px solid #ddd !important;
}

table tbody tr:hover {
    background: rgba(0, 79, 113, .1);
}


div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover,
div.dt-container .dt-paging .dt-paging-button:hover {
    background: var(--default-table-pagination-color) !important;
    border-color: var(--default-folder-color) !important;
    color: #fff !important;
}

figcaption.wp-element-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #566777;
}

/** + .table-responsive {*/
/*    margin-top: 30px;*/
/*}*/

/*@media (min-width: 768px) {*/
/*    * + .table-responsive {*/
/*        margin-top: 40px;*/
/*    }*/
/*}*/

.table-hover tbody tr {
    transition: .55s;
}

.table-hover tbody tr:hover {
    background: #f5f6fa;
}

.wp-block-image {
    overflow: hidden;
    border: 4px solid #e6dfdf;
    border-radius: 5px;
}

.wp-block-image img {
    transition: 0.3s ease-in-out;
    width: 100%;
}

.wp-block-image:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
    padding-top: 80px;
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 30px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    border-bottom: 0;
    box-shadow: none;
}

.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
}

.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-categories {
    display: flex;
    list-style-type: none;
}

.news-categories li {
    background: #0000003b;
    margin-right: 2px;
    padding: 2px 15px;
    border-radius: 5px;
}

.news-categories li a {
    color: #ffffff;
}

.news .btn-success {
    background-color: var(--default-color);
    border-color: var(--default-color);
}

.news .btn-success:hover {
    background: var(--default-color-accent);
}

.news {
    padding: 60px 0;
}

.news .news-item {
    padding: 40px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.news .news-item:hover {
    box-shadow: 0 0 20px rgba(65, 62, 151, .51);
}

.news .news-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 15px;
}

.news .news-item .icon i {
    color: var(--color-default);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.news .news-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #eeeeee;
    border-radius: 50px;
    /*z-index: 1;*/
    top: 3px;
    right: -5px;
    transition: 0.3s;
}

.news .news-item h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 18px;
    position: relative;
    display: block;
    border-bottom: 4px solid #eeeeee;
    transition: 0.3s;
}

.news .news-item h3.heading a {
    color: var(--default-color-accent);
}

.news .news-item p {
    line-height: 24px;
    font-size: 12px;
    margin-bottom: 0;
}

.news .news-item .readmore {
    margin-top: 15px;
    display: block;
    color: var(--default-color-accent);
}

.news .news-item:hover .icon:before {
    background: var(--default-color-accent);
}

.news .news-item:hover h3 {
    border-color: var(--default-color-accent);
}

.news .news-item .meta-top {
    margin-top: 20px;
    color: var(--default-color-accent);
}

.news .news-item .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.news .news-item .meta-top ul li + li {
    padding-left: 20px;
}

.news .news-item .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(86, 184, 230, 0.8);
}

.news .news-item .meta-top a {
    font-family: 'Inter', sans-serif;
    color: #467ab3;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.news article ul li::before {
    content: none !important;
}

.news ul li::before, .news .news-item .meta-top i {
    color: rgba(0, 0, 0, 0.4) !important;
}

.news > .container {
    /*padding: 30px;*/
    border-radius: 10px;
    transition: .5s all;
}

.news > .container:hover {
    /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);*/
}


.news h1, .news h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.meta-tags ul {
    display: flex;
    padding: 0;
}

.meta-tags ul li {
    border-right: 1px solid #566777;
    padding-right: 10px;
    margin-right: 10px;
}

.meta-tags ul li:last-child {
    border: none;
    padding-right: 10px;
    margin-right: 10px;
}

.news .sidebar .sidebar-title {
    font-size: 22px;
}

.news .sidebar .search-form form button i {
    line-height: 0;
}

.news .sidebar .search-form form button:hover {
    background: rgba(86, 184, 230, 0.8);
}

.news .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}

.news .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.news .sidebar .categories ul li + li {
    padding-top: 10px;
}

.news .sidebar .categories ul a {
    color: var(--color-primary);
    font-size: 15px;
}

.news .sidebar .categories ul a:hover {
    color: var(--color-default);
}

.news .sidebar .categories ul a span {
    padding-left: 5px;
    font-size: 14px;
}


.news .sidebar .recent-news .recent-news-item {
    display: flex;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.news .sidebar .recent-news .recent-news-item a {
    color: var(--default-color-accent);
}

.news .sidebar .recent-news .recent-news-item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    border-radius: 10px;
}

.news .sidebar .recent-news .recent-news-item:hover a {
    color: var(--default-color);
}

.news .sidebar .recent-news .recent-news-item + .recent-news-item {
    margin-top: 15px;
}

.news .sidebar .recent-news img {
    width: 80px;
    margin-right: 15px;
}


.news .sidebar .post-title {
    padding: 0;
}

.news .sidebar .meta-top time {
    font-size: 0.7375rem;
    color: var(--heading-color);
}


.news .sidebar .sidebar-item {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.news .sidebar .sidebar-item h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.news .sidebar .sidebar-item h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--default-color);
}


.news .sidebar .sidebar-item.search-form .input-group {
    position: relative;
}

.news .sidebar .sidebar-item.search-form .input-group .form-control {
    border-radius: 50px;
    padding-right: 50px;
    height: 40px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.news .sidebar .sidebar-item.search-form .input-group .form-control:focus {
    box-shadow: none;
    border-color: color-mix(in srgb, var(--background-default), transparent 60%);
}

.news .sidebar .sidebar-item.search-form .input-group .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    z-index: 5;
    border-radius: 50%;
    background-color: var(--background-default);
    color: var(--contrast-color);
}

.news .sidebar .sidebar-item.search-form .input-group .btn:hover {
    background-color: color-mix(in srgb, var(--background-default), transparent 25%);
}

.news .sidebar .recent-news .post-title {
    font-size: 0.9375rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.news .sidebar .recent-news .post-title a {
    color: var(--default-color-accent);
}

.news .sidebar .recent-news .post-title a:hover {
    color: var(--heading-color);
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.news-details {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.news-details .article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.news-details .article-header .meta-categories {
    margin-bottom: 1.5rem;
}

.news-details .article-header .meta-categories .category {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    margin: 0 0.5rem;
    background: color-mix(in srgb, var(--default-color-accent), transparent 90%);
    color: var(--default-color-accent);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-details .article-header .meta-categories .category:hover {
    background: var(--default-color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.news-details .article-header .title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--default-color-accent);
}

@media (max-width: 768px) {
    .news-details .article-header .title {
        font-size: 1.25rem;
    }
}

.news-details .article-header .article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}


.news-details .article-header .article-meta .post-info {
    display: flex;
    gap: 1.5rem;
    color: color-mix(in srgb, var(--default-color-accent), transparent 30%);
    font-size: 0.95rem;
}

.news-details .article-header .article-meta .post-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .news-details .article-header .article-meta {
        justify-content: center;
        text-align: center;
    }

    .news-details .article-header .article-meta .post-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.news-details .article-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

.news-details .article-content .content-section {
    margin-bottom: 4rem;
}


.news-details .article-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color-accent), transparent 90%);
}

.news-details .article-navigation .navigation.post-navigation .nav-links {
    display: flex;
    gap: 1rem;
    /*flex-wrap: wrap;*/
}

.news-details .article-navigation .navigation.post-navigation .nav-links .nav-next a,
.news-details .article-navigation .navigation.post-navigation .nav-links .nav-previous a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-details .article-navigation .navigation.post-navigation .nav-links a .post-title .post-date {
    font-size: .75rem;
}

.news-details .article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color-accent), transparent 90%);
}

.news-details .article-footer h4 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.news-details .article-footer .share-article {
    margin-bottom: 3rem;
}

.news-details .article-footer .share-article .share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-details .article-footer .share-article .share-buttons .share-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--surface-color);
    border-radius: 30px;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-details .article-footer .share-article .share-buttons .share-button i {
    font-size: 1.2rem;
}

.news-details .article-footer .share-article .share-buttons .share-button:hover {
    background: var(--default-color-accent);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.news-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
    background: var(--default-color-accent);
}

.news-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
    background: var(--default-color-accent);
}

.news-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
    background: var(--default-color-accent);
}


/* single.php */
.blog-content-detail h3.title {
    font-size: 1.25rem;
    color: #566777;
}

.blog-content-detail .meta-tags ul li {
    border-right: 1px solid #566777;
    padding-right: 10px;
    margin-right: 10px;
}

.blog-content-detail .meta-tags ul li span {
    font-size: .75rem;
}

/* Pagination buttons */

.page-pagination ul {
    display: flex;
    list-style: none;
}

.page-pagination ul li::before, .page-pagination ul li::marker {
    content: "" !important;
}

.page-pagination ul li:hover a {
    background: #566777;
    color: #ffffff !important;
}

.page-pagination li a,
.page-pagination li.active span.current,
.page-pagination li span.dots {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-pagination li a {
    background: var(--default-color-accent);
    color: #ffffff !important;
}

.page-pagination li.active span.current {
    /*background: #566777;*/
    background: var(--default-color);
    color: #ffffff !important;
}

.page-pagination li span.dots {
    color: #566777 !important;
}


/* Begin Procurement */


.procurement-meta-date {
    background: var(--heading-color);
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

#table-procurement-container table tbody td > span {
    font-size: .80rem;
}


/*--------------------------------------------------------------
# Ministry Composition Section
--------------------------------------------------------------*/

/* Front */

.ministry-compositions .composition-slide-img-wrapper {
    width: 100%;
    height: 250px; /* Or any fixed height you want */
    overflow: hidden;
    position: relative;
    transition: ease-in-out 0.2s;
}

.ministry-compositions .composition-slide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Options: cover, contain, fill, scale-down */
    display: block;
    border-radius: 10px;
    border: 1px dashed #566777;

}

.ministry-compositions .composition-slide-img-wrapper:hover {
    width: 100%;
    height: 260px; /* Or any fixed height you want */
    overflow: hidden;
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    top: 35% !important;
}

#composition .ministry-composition .service-item {
    background-color: var(--surface-color);
    /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
    height: 100%;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
}

#composition .ministry-composition .service-item .icon {
    font-size: 32px;
    border-radius: 10px;
    position: relative;
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

#composition .ministry-composition .service-item h3 {
    /*color: color-mix(in srgb, var(--heading-color), transparent 25%);*/
    font-weight: 700;
    font-size: 22px;
    transition: 0.3s;
}

#composition .ministry-composition .service-item p {
    margin-bottom: 0;
    /*color: color-mix(in srgb, var(--default-color), transparent 40%);*/
    transition: 0.3s;
}

#composition .ministry-composition .service-item .read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: 0.3s;
    font-size: 14px;
}

#composition .ministry-composition .service-item .read-more i {
    margin-left: 10px;
}

#composition .ministry-composition .service-item.item-cyan .icon {
    color: #0dcaf0;
    border: 1px solid #0dcaf0;
    background: rgba(13, 202, 240, 0.1);
}

#composition .ministry-composition .service-item.item-orange .icon {
    color: #fd7e14;
    border: 1px solid #fd7e14;
    background: rgba(253, 126, 20, 0.1);
}

#composition .ministry-composition .service-item.item-teal .icon {
    color: #20c997;
    border: 1px solid #20c997;
    background: rgba(32, 201, 151, 0.1);
}

#composition .ministry-composition .service-item.item-red .icon {
    color: #df1529;
    border: 1px solid #df1529;
    background: rgba(223, 21, 4, 0.1);
}

#composition .ministry-composition .service-item.item-indigo .icon {
    color: #6610f2;
    border: 1px solid #6610f2;
    background: rgba(102, 16, 242, 0.1);
}

#composition .ministry-composition .service-item.item-pink .icon {
    color: #f3268c;
    border: 1px solid #f3268c;
    background: rgba(243, 38, 140, 0.1);
}

#composition .ministry-composition .service-item:hover {
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

#composition .ministry-composition .service-item:hover h3 {
    color: var(--heading-color);
}

#composition .ministry-composition .service-item:hover p {
    /*color: color-mix(in srgb, var(--default-color), transparent 10%);*/
}

.team-member {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.3, 1);
}

.team-member:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

/*--------------------------------------------------------------
# Avatar
--------------------------------------------------------------*/

.single-ministry-composition .section-title h2::before {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

@media (max-width: 768px) {
    .single-ministry-composition .section-title h2::before,
    .single-ministry-composition .section-title h2::after {
        width: 50px;
    }
}

@media (max-width: 475px) {
    .single-ministry-composition .section-title h2::before,
    .single-ministry-composition .section-title h2::after {
        width: 100%;
        display: block;
        margin: 15px 0;
    }
}

.single-ministry-composition .minister-avatar {
    margin-bottom: 20px;
}

.single-ministry-composition .minister-avatar img {
    max-width: 250px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.single-ministry-composition .composition-content {
    text-align: justify;
}

.single-ministry-composition .composition-content:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


@media (min-width: 992px) {
    .single-ministry-composition .list-of-composition {
        /*position: fixed;*/
        /*right: 0;*/
    }
}


.single-ministry-composition .list-of-composition .composition-member {
    background-color: var(--surface-color);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 10px;
    margin-bottom: 10px;
}

.single-ministry-composition .list-of-composition .composition-member:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.single-ministry-composition .list-of-composition .composition-member .composition-member-avatar {
    overflow: hidden;
    width: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.single-ministry-composition .list-of-composition .composition-member .composition-member-info {
    padding-left: 30px;
}

.single-ministry-composition .list-of-composition .composition-member .composition-member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
}

.single-ministry-composition .list-of-composition .composition-member .composition-member-info span {
    display: block;
    font-size: 13px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.single-ministry-composition .list-of-composition .composition-member .composition-member-info span:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    /*background: color-mix(in srgb, var(--default-color), transparent 85%);*/
    bottom: 0;
    left: 0;
}

/* End Single Minister page */


/* Begin Documents */


.estatal-doc-categories a.nav-link {
    font-size: .95rem;
    color: #3a393a;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.estatal-doc-categories a.nav-link:hover {
    /*box-shadow: 0 0 20px rgba(65, 62, 151, .51);*/
    box-shadow: 0 0 20px var(--default-folder-color);
}

.estatal-doc-categories a.nav-link > i {
    /*color: #566777;*/
    color: var(--default-folder-color);
    font-size: 45px;
    transition: 0.3s;
}

.estatal-doc-categories a:hover {
    background: var(--default-folder-color);
}

.estatal-doc-categories a:hover i {
    color: #ffffff;
}

.estatal-doc-categories table a:hover {
    background: transparent;
}


.nav-estatal-doc, .estatal-doc-content {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.estatal-doc-content {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.nav-estatal-doc:hover {
    /*box-shadow: 0 0 20px rgba(65, 62, 151, .51);*/
}

.estatal-doc-content:hover {
    /*box-shadow: 0 0 20px rgba(65, 62, 151, .51);*/
    box-shadow: 0 0 20px var(--default-folder-color);
}

.estatal-doc-content [hidden] {
    display: block !important;
}

.wp-block-file [hidden] {
    display: block !important;
}

.estatal-doc-content .list-group a:hover {
    color: #566777;
}

.nav-estatal-doc a.nav-link {
    font-size: 1rem !important;
    margin-bottom: 2px;
    color: #960707;
    text-align: center;
    background: #eaeaeaa6 !important;
    border-radius: 6px;
}

.nav-estatal-doc a.document-category i.icon {
    /*color: #960707;*/
    /*color: #ffffff;*/
    font-size: 25px;
    display: block;
}

.nav-estatal-doc a.document-category span {
    /*color: #ffffff;*/
}

.nav-estatal-doc a span.badge {
    color: #ffffff;
}

.nav-estatal-doc a.nav-link:hover, .nav-estatal-doc a.nav-link.active, .municipality-doc-categories a.nav-link:hover {
    /*background: var(--heading-color) !important;*/
    background: #960707 !important;
    border-radius: 5px;
    color: #ffffff !important;

}

.doc-meta {
    border-bottom: 1px solid #62718d;
    padding-bottom: 5px;
}

.doc-meta .doc-meta-general {
    color: #62718d;
    font-size: 13px;
}

.doc-meta .doc-categories {
    font-size: 13px;
    margin-top: 5px;
    color: #62718d;
}


ul.doc-list-attachment {
    margin: 0;
    padding: 0;
    list-style-type: none !important;
    list-style-position: unset !important;
}

ul.doc-list-attachment li:not(:last-child) {
    margin-bottom: 8px;
}

ul.doc-list-attachment li {
    display: flex !important;
    align-items: center;
    border: 1px solid #c30734;
    padding: 5px;
}

ul.doc-list-attachment li .icon-attachment {
    flex: 0 0 30px;
}

ul.doc-list-attachment li .icon-attachment i {
    display: inline-block;
    line-height: 1;
}

ul.doc-list-attachment li .icon-attachment i:before {
    margin: 0;
    font-size: 20px;
    color: #000;
}

ul.doc-list-attachment li .doc-file-name-size {
    flex: 0 0 calc(100% - 160px);
    padding-right: 10px;
}

ul.doc-list-attachment li .doc-file-name-size .doc-file-name {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #202b5d;
    word-break: break-word;
}

ul.doc-list-attachment li .doc-file-name-size .doc-file-size {
    display: block;
    font-size: 12px;
    color: #62718d;
    text-transform: capitalize;
}

ul.doc-list-attachment li .doc-download a {
    font-size: 12px;
}

.estatal-doc-single-container figure {
    max-width: 250px;
}

.estatal-doc-categories ul.post-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.estatal-doc-categories ul.post-categories li {
    background: #7b8895;
    padding: 2px 10px;
    display: inline-block;
    margin-right: 3px;
    margin-top: 3px;
    font-size: .70rem;
    border-radius: 2px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    color: #ffffff;
    text-align: center;
}

.doc-folder.active {
    box-shadow: 0 0 20px rgba(65, 62, 151, .51);
    background: var(--default-folder-color) !important;
}

.doc-folder.active i,
.doc-folder.active span,
.doc-folder:hover i,
.doc-folder:hover span {
    color: #ffffff !important;
}

.doc-folder:hover {
    /*background: #566777 !important;*/
    background: var(--default-folder-color) !important;
}

#modal-document {
    z-index: 999999;
}

/* End Documents */


/* Begin Map */
.leaflet-control-fullscreen a {
    background-color: #ffffff;
}

#canvas {
    height: 450px;
}

#canvas .leaflet-popup-pane .leaflet-popup .leaflet-popup-content {
    width: 500px !important;
}

#canvas #hero {
    min-height: 200px !important;
    max-height: 200px !important;
}

#canvas #hero h2 {
    font-size: 30px !important;
}

@media (max-width: 640px) {
    #canvas .leaflet-popup-pane .leaflet-popup .leaflet-popup-content {
        width: 300px !important;
    }

    #canvas #hero {
        min-height: 200px !important;
        max-height: 200px !important;
    }

    #canvas #hero h2 {
        font-size: 15px !important;
    }

    #canvas #hero .hero-right {
        margin-top: 5px;
    }

    #canvas #hero .hero-logo {
        width: 50px !important;
    }
}

/*#map-canvas #btn-toggle-basemap{*/
/*    border-top-right-radius: 5px;*/
/*    border-bottom-right-radius: 5px;*/
/*}*/

/*#map-canvas .btn-group .btn-secondary{*/
/*    background: #960707;*/
/*    border-color: #960707;*/
/*}*/

/* Side map options */

.side-map-options {
    position: absolute;
    top: 48px;
    right: 5px;
    color: #fff;
    background: #6c757d;
    z-index: 999;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    padding: 10px;
    border-radius: 5px;
    max-height: 400px;
    overflow: auto;
}

.side-map-options .basemap-options .basemap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 25%;
    margin: 5px;
    width: 150px;
    max-width: 150px;
    min-height: 75px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    border-radius: 4px;
    border: 1px solid rgb(190, 190, 190);
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    text-transform: uppercase;
}

#side-boundaries.side-map-options {
    right: 80px;
}

.side-map-options .boundaries-options label {
    font-size: 16px;
}

.side-map-options .boundaries-options .boundary {
    margin: 5px;
    width: 150px;
    max-width: 150px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    text-transform: uppercase;
}

.side-map-options .basemap-options .basemap:hover {
    border: 3px solid #ffffff;
}

.side-map-options .basemap-options .basemap.activated,
.side-map-options .boundaries-options .boundary.activated {
    border: 3px solid #ffffff;
}

.side-map-options .basemap-option-title,
.side-map-options .boundaries-option-title {
    padding: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.side-map-options .basemap-options .basemap .basemap-title {
    position: absolute;
    font-size: 10px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .5);
    font-weight: 700;
    padding: .5em;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    z-index: 5;
    color: #000;
}

.side-map-options .boundaries-options .boundary .boundaries-title {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    padding: .5em;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    color: #ffffff;
}

.side-map-options .boundaries-options .boundary {
    transition: all 5s;
}

.side-map-options .boundaries-options .boundary:hover {
    border: 3px solid #ffffff;
}

.side-map-options .boundaries-options label {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #566777;
    border-color: #566777;
}

/* End Map */


/* Begin Gallery */
.gallery-item {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item:hover {
    -webkit-box-shadow: 8px 8px 8px #e6e6e6;
    -moz-box-shadow: 8px 8px 8px #e6e6e6;
    box-shadow: 8px 8px 8px #e6e6e6;
    border-radius: 10px;
}

.gallery-item a {
    cursor: pointer;
}

.gallery-item a:hover {
    color: var(--color-primary);
}

.gallery-item .gallery-item-image {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.5, 1.5);
}

.gallery-item .gallery-item-content {
    margin: 0 8px;
}

.gallery-item .gallery-item-content h3.heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--default-color-accent);
    border-bottom: 4px solid #eeeeee;
    padding-bottom: 10px;
    transition: 0.3s;
}

.gallery-item a:hover h3.heading {
    border-bottom: 4px solid var(--default-color-accent);
}

.gallery-item .gallery-item-content p {
    /*color: var(--color-primary);*/
    /*font-size: 12px;*/
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}

/* End Gallery*/


/* Begin timeline*/


.visita-papal .sidebar .sidebar-title {
    font-size: 22px;
}

.visita-papal .sidebar .search-form form button i {
    line-height: 0;
}

.visita-papal .sidebar .search-form form button:hover {
    background: rgba(86, 184, 230, 0.8);
}

.visita-papal .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}

.visita-papal .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.visita-papal .sidebar .categories ul li + li {
    padding-top: 10px;
}

.visita-papal .sidebar .categories ul a {
    color: var(--color-primary);
    font-size: 15px;
}

.visita-papal .sidebar .categories ul a:hover {
    color: var(--color-default);
}

.visita-papal .sidebar .categories ul a span {
    padding-left: 5px;
    font-size: 14px;
}


/*.visita-papal .timeline {*/
/*    position: relative;*/
/*    margin-top: 40px;*/
/*    padding-left: 30px;*/
/*}*/

/*.visita-papal .timeline:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    height: 100%;*/
/*    width: 3px;*/
/*    background-color: color-mix(in srgb, var(--heading-color), transparent 70%);*/
/*}*/

/*.visita-papal .timeline .timeline-item {*/
/*    position: relative;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.visita-papal .timeline .timeline-item:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*.visita-papal .timeline .timeline-item .timeline-dot {*/
/*    position: absolute;*/
/*    left: -35px;*/
/*    top: 5px;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    border-radius: 50%;*/
/*    background-color: var(--heading-color);*/
/*}*/

/*.visita-papal.timeline .timeline-item .timeline-content h4 {*/
/*    font-weight: 700;*/
/*    font-size: 1.25rem;*/
/*    margin-bottom: 10px;*/
/*    color: var(--heading-color);*/
/*}*/

/*.visita-papal .timeline .timeline-item .timeline-content p {*/
/*    margin-bottom: 0;*/
/*}*/

/* End timeline*/

/* Begin WPStatistics*/
ul.wpstats-visitors li {
    color: rgba(255, 255, 255, 0.9) !important;
}

ul.wpstats-visitors li span {
    margin-right: 2px;
}

ul.wpstats-top-countries {

}

/* End WPStatistics*/


/*--------------------------------------------------------------
# Not found Page Section
--------------------------------------------------------------*/
.not-found {
    padding: 80px 0;
    margin: 0 auto;
    position: relative;
    background-attachment: fixed !important;
    background-position: center !important;
    height: 85vh;
    display: flex;
    align-items: center;
}

.not-found .page-overlay {
    background-color: #f1f5f7e8 !important;
}

.not-found .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.not-found .error-code {
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-family: var(--heading-font);
    line-height: 1;
}

.not-found .error-title {
    font-size: 2rem;
    color: var(--default-color);
    font-weight: 600;
}

.not-found .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .not-found {
        padding: 60px 0;
    }

    .not-found .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .not-found .error-title {
        font-size: 1.5rem;
    }

    .not-found .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

}


.addtoany_content_bottom {
    margin-top: 3rem !important;
}

.footer {

}

.footer .footer-content .footer-info .logo {
    line-height: normal !important;
}

.footer .footer-content h4 {
    color: #ffffff;
}

.footer .footer-content .footer-links ul a {
    color: #ffffff;
}

.footer .footer-content {
    background: #566777 url(assets/img/bg-pattern.png) !important;
}

.footer .footer-content .footer-info .logo span,
.footer .footer-content .footer-info p {
    color: #ffffff !important;
}

.footer .footer-legal {
    background: #566777e8 url(assets/img/bg-pattern.png) !important;
    /*background: #f1b20fe8 url(assets/img/bg-pattern.png) !important;*/
}

.footer .footer-legal .copyright {
    color: #ffffff !important;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer .partners a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .partners a:hover {
    color: #fff;
    border-color: #fff;
}

.footer .partners a img.sponsors-logo {
    max-width: 100%;
    height: auto;
}
