/*==================================================
 EKOWOD Premium Theme
 main.css
 Version 2.0
==================================================*/


/*==================================================
RESET
==================================================*/

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;
    font-size: 16px;

}

body {

    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #163548;
    background: #ffffff;
    overflow-x: hidden;

}

img {

    display: block;
    max-width: 100%;
    height: auto;

}

a {

    color: inherit;
    text-decoration: none;
    transition: .3s;

}

ul {

    list-style: none;

}

button {

    cursor: pointer;
    border: none;
    background: none;

}

.btn-group-lg>.btn,
.btn-lg {
--bs-btn-padding-y: 0.9rem !important;
}

.min-vh-100 {
  min-height: 75vh !important;
}
/*==================================================
VARIABLES
==================================================*/

:root {

    --primary: #1680BC;

    --primary-dark: #0f628f;

    --secondary: #163548;

    --light: #f5f8fb;

    --white: #ffffff;

    --text: #49545f;

    --border: #e5e8ec;

    --radius: 18px;

    --shadow: 0 12px 35px rgba(0, 0, 0, .08);

    --shadow-hover: 0 20px 50px rgba(0, 0, 0, .12);

    --transition: .35s ease;

}


/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--secondary);

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 20px;

}

h1 {

    font-size: 56px;

}

h2 {

    font-size: 42px;

}

h3 {

    font-size: 28px;

}

p {

    margin-bottom: 20px;

    color: var(--text);

}

strong {

    font-weight: 700;

}

small {

    font-size: .9rem;

}

footer h4 {
    color: var(--light);
}
/*==================================================
CONTAINER
==================================================*/

.container {

    width: 100%;

    max-width: 1320px;

    margin: auto;

    padding: 0 20px;

}
main .container {

    width: 100%;


    margin: auto;

    padding: 70px 20px;

}
.section {

    padding: 90px 0;

}

.section-light {

    background: var(--light);

}

.section-dark {

    background: var(--secondary);

    color: #fff;

}


/*==================================================
BUTTONS
==================================================*/

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 34px;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: var(--transition);

    box-shadow: 0 8px 25px rgba(22, 128, 188, .25);

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    color: #fff;

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    border-radius: 50px;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-weight: 600;

    transition: var(--transition);

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}


/*==================================================
HELPERS
==================================================*/

.text-center {

    text-align: center;

}

.mt-5 {

    margin-top: 60px;

}

.mb-5 {

    margin-bottom: 60px;

}

.d-flex {

    display: flex;

}

.align-center {

    align-items: center;

}

.justify-between {

    justify-content: space-between;

}
/*==================================================
HEADER
==================================================*/

.site-header {

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    background: #fff;

    box-shadow: 0 3px 20px rgba(0, 0, 0, .06);

    transition: all .35s ease;

}

.site-header.scrolled {

    min-height: 75px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

}

.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    min-height: 95px;

}


/*==================================================
LOGO
==================================================*/

.site-branding {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}

.site-branding a {

    display: flex;

    align-items: center;

}

.site-branding img,

.custom-logo,

.site-logo {

    display: block;

    width: auto;

    max-height: 72px;

    transition: .3s;

}

.site-header.scrolled .site-branding img,

.site-header.scrolled .custom-logo,

.site-header.scrolled .site-logo {

    max-height: 60px;

}


/*==================================================
DESKTOP NAVIGATION
==================================================*/

.main-navigation {

    margin-left: auto;

}

.main-menu {

    display: flex;

    align-items: center;

    gap: 34px;

    margin: 0;

    padding: 0;

}

.main-menu>li {

    position: relative;

}

.main-menu>li>a {

    display: flex;

    align-items: center;

    height: 95px;

    font-size: 16px;

    font-weight: 600;

    color: #163548;

    transition: .3s;

}

.main-menu>li>a:hover {

    color: var(--primary);

}

.main-menu>.current-menu-item>a,

.main-menu>.current-menu-parent>a,

.main-menu>.current-page-parent>a {

    color: var(--primary);

}


/*==================================================
MENU UNDERLINE
==================================================*/

.main-menu>li>a::after {

    content: "";

    position: absolute;

    bottom: 25px;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--primary);

    border-radius: 50px;

    transition: .3s;

}

.main-menu>li:hover>a::after,

.main-menu>.current-menu-item>a::after,

.main-menu>.current-menu-parent>a::after {

    width: 100%;

}


/*==================================================
DESKTOP SUBMENU
==================================================*/

.main-menu .menu-item-has-children {

    position: relative;

}

.main-menu>.menu-item-has-children>a::before {

    content: "▾";

    font-size: 11px;

    margin-right: 8px;

    order: 2;

}

.main-menu .sub-menu {

    position: absolute;

    left: 0;

    top: 100%;

    min-width: 270px;

    background: #fff;

    border-radius: 18px;

    padding: 12px 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .25s;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

    z-index: 999;

}

.main-menu li:hover>.sub-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.main-menu .sub-menu li {

    position: relative;

}

.main-menu .sub-menu a {

    display: block;

    padding: 13px 24px;

    color: #163548;

    font-size: 15px;

    transition: .25s;

}

.main-menu .sub-menu a:hover {

    background: #f5f8fb;

    color: var(--primary);

}


/*==================================================
SECOND LEVEL
==================================================*/

.main-menu .sub-menu .sub-menu {

    top: 0;

    left: 100%;

}


/*==================================================
HEADER BUTTON
==================================================*/

.header-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 30px;

    background: var(--primary);

    color: #fff;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

    white-space: nowrap;

}

.header-button:hover {

    background: var(--primary-dark);

    color: #fff;

    transform: translateY(-2px);

}


/*==================================================
HAMBURGER
==================================================*/

.mobile-toggle {

    display: none;

    width: 48px;

    height: 48px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}

.mobile-toggle span {

    width: 28px;

    height: 3px;

    background: #163548;

    border-radius: 20px;

    transition: .3s;

}

.mobile-toggle.active span:nth-child(1) {

    transform: rotate(45deg) translate(6px, 6px);

}

.mobile-toggle.active span:nth-child(2) {

    opacity: 0;

}

.mobile-toggle.active span:nth-child(3) {

    transform: rotate(-45deg) translate(5px, -5px);

}

/*==================================================
MOBILE NAVIGATION
==================================================*/

.mobile-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 9998;

}

.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}

body.menu-open {

    overflow: hidden;

}

@media (max-width:991px) {

    .header-inner {

        min-height: 80px;

    }

    .site-branding img,
    .custom-logo,
    .site-logo {

        max-height: 58px;

    }

    .header-button {

        display: none;

    }

    .mobile-toggle {

        display: flex;

        margin-left: auto;

        z-index: 10001;

    }

    .main-navigation {

        position: fixed;

        top: 0;

        right: -360px;

        width: 340px;

        max-width: 90%;

        height: 100vh;

        background: #fff;

        overflow-y: auto;

        transition: right .35s ease;

        box-shadow: -15px 0 40px rgba(0, 0, 0, .15);

        z-index: 10000;

        padding-top: 85px;

    }

    .main-navigation.active {

        right: 0;

    }

    .main-menu {

        display: flex;

        flex-direction: column;

        gap: 0;

    }

    .main-menu>li {

        width: 100%;

        border-bottom: 1px solid #ececec;

    }

    .main-menu>li>a {

        height: auto;

        min-height: 58px;

        padding: 18px 24px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        font-size: 17px;

    }

    .main-menu>li>a::after {

        display: none;

    }

    .main-menu>.menu-item-has-children>a::before {

        content: "";

    }

    .main-menu>.menu-item-has-children>a::after {

        content: "›";

        width: auto;

        height: auto;

        position: static;

        background: none;

        font-size: 24px;

        color: #888;

        transform: none;

    }

    .main-menu .sub-menu {

        display: none;

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border-radius: 0;

        padding: 0;

        margin: 0;

        background: #f7f9fb;

        min-width: 100%;

    }

    .main-menu .submenu-open>.sub-menu {

        display: block;

    }

    .main-menu .submenu-open>a {

        background: #eef6fb;

        color: var(--primary);

    }

    .main-menu .submenu-open>a::after {

        content: "⌃";

        font-size: 18px;

    }

    .main-menu .sub-menu li {

        border-bottom: 1px solid #e7edf2;

    }

    .main-menu .sub-menu a {

        padding: 16px 40px;

        font-size: 15px;

        color: #4b5b66;

        background: #f7f9fb;

    }

    .main-menu .sub-menu a:hover {

        background: #eef6fb;

        color: var(--primary);

    }

}

/*==================================================
MOBILE SCROLLBAR
==================================================*/

.main-navigation::-webkit-scrollbar {

    width: 8px;

}

.main-navigation::-webkit-scrollbar-thumb {

    background: #d5dce2;

    border-radius: 20px;

}

.main-navigation::-webkit-scrollbar-track {

    background: #f7f7f7;

}

/*==================================================
HERO
==================================================*/

.hero-section {

    position: relative;

    display: flex;

    align-items: center;

     background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    overflow: hidden;

}

.hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(15, 39, 55, .82) 0%,
            rgba(15, 39, 55, .72) 45%,
            rgba(15, 39, 55, .45) 100%);

}

.hero-container {

    position: relative;

    z-index: 2;

    width: 100%;

}

.hero-content {

    max-width: 700px;

}

.hero-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 18px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .5px;

}

.hero-title {

    color: #fff;

    font-size: 64px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 28px;

}

.hero-title span {

    color: var(--primary);

}

.hero-description {

    max-width: 620px;

    color: rgba(255, 255, 255, .92);

    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

}

.hero-buttons .btn-primary {

    min-width: 210px;

}

.hero-buttons .btn-outline {

    min-width: 210px;

    border-color: #fff;

    color: #fff;

}

.hero-buttons .btn-outline:hover {

    background: #fff;

    color: var(--secondary);

}

/*==================================================
HERO FEATURES
==================================================*/

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 70px;

}

.hero-feature {

    display: flex;

    align-items: center;

    gap: 16px;

    color: #fff;

}

.hero-feature-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(6px);

    font-size: 22px;

}

.hero-feature strong {

    display: block;

    color: #fff;

    font-size: 17px;

}

.hero-feature span {

    display: block;

    font-size: 14px;

    color: rgba(255, 255, 255, .75);

}

/*==================================================
HERO ANIMATION
==================================================*/

.hero-content>* {

    animation: heroFade .8s ease forwards;

    opacity: 0;

}

.hero-content>*:nth-child(1) {

    animation-delay: .1s;

}

.hero-content>*:nth-child(2) {

    animation-delay: .25s;

}

.hero-content>*:nth-child(3) {

    animation-delay: .4s;

}

.hero-content>*:nth-child(4) {

    animation-delay: .55s;

}

.hero-content>*:nth-child(5) {

    animation-delay: .7s;

}

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: none;

    }

}

/*==================================================
RESPONSIVE HERO
==================================================*/

@media(max-width:991px) {

    .hero-section {

        min-height: 620px;

        padding: 90px 0;

    }

    .hero-title {

        font-size: 46px;

    }

    .hero-description {

        font-size: 18px;

    }

    .hero-features {

        gap: 25px;

    }

}

@media(max-width:768px) {

    .hero-section {

        text-align: center;

        min-height: 560px;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-title {

        font-size: 36px;

    }

    .hero-description {

        font-size: 17px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-features {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .hero-title {

        font-size: 30px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-feature {

        width: 100%;

        justify-content: center;

    }

}

/*==================================================
QUICK LINKS
==================================================*/

.quick-links {

    position: relative;

    padding: 90px 0;

    background: #ffffff;

}

.quick-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.quick-card {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 40px 35px;

    background: #fff;

    border-radius: 22px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    overflow: hidden;

    height: 100%;

}

.quick-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 6px;

    height: 100%;

    background: var(--primary);

    transition: .35s;

}

.quick-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);

}

.quick-card:hover::before {

    width: 100%;

    opacity: .06;

}

.quick-icon {

    width: 72px;

    height: 72px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef7fc;

    color: var(--primary);

    font-size: 34px;

    margin-bottom: 28px;

    transition: .35s;

}

.quick-card:hover .quick-icon {

    background: var(--primary);

    color: #fff;

    transform: rotate(-8deg) scale(1.05);

}

.quick-title {

    font-size: 24px;

    margin-bottom: 18px;

}

.quick-title a {

    color: var(--secondary);

}

.quick-title a:hover {

    color: var(--primary);

}

.quick-text {

    flex: 1;

    color: var(--text);

    line-height: 1.8;

}

.quick-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    font-weight: 700;

    color: var(--primary);

}

.quick-link:hover {

    color: var(--primary-dark);

}

.quick-link i {

    transition: .3s;

}

.quick-card:hover .quick-link i {

    transform: translateX(6px);

}

/*==================================================
QUICK LINKS RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .quick-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .quick-links {

        padding: 70px 0;

    }

    .quick-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }

    .quick-card {

        padding: 30px;

    }

    .quick-title {

        font-size: 22px;

    }

}

/*==================================================
NEWS SECTION
==================================================*/

.news-section {

    padding: 100px 0;

    background: #f7f9fc;

}

.news-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;

}

.news-subtitle {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: #eaf6fc;

    color: var(--primary);

    font-weight: 700;

    font-size: 14px;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.news-title {

    font-size: 46px;

    margin-bottom: 20px;

}

.news-description {

    font-size: 18px;

    color: var(--text);

}

/*==================================================
NEWS GRID
==================================================*/

.news-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
    margin: 50px 0;
}

/*==================================================
CARD
==================================================*/

.news-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border-radius: 22px;

    box-shadow: var(--shadow);

    transition: .35s;

    height: 100%;

}

.news-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);

}

/*==================================================
IMAGE
==================================================*/

.news-image {

    display: block;

    overflow: hidden;


    background: #eef2f5;

}

.news-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.news-card:hover img {

    transform: scale(1.08);

}

/*==================================================
CONTENT
==================================================*/

.news-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 30px;

}

.news-date {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #7c8791;

    font-size: 14px;

}

.news-date i {

    color: var(--primary);

}

.news-title {

    font-size: 24px;

    line-height: 1.4;

    margin-bottom: 18px;

}

.news-title a {

    color: var(--secondary);

}

.news-title a:hover {

    color: var(--primary);

}

.news-excerpt {

    flex: 1;

    color: var(--text);

    line-height: 1.8;

}

/*==================================================
BUTTON
==================================================*/

.news-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    font-weight: 700;

    color: var(--primary);

}

.news-button i {

    transition: .3s;

}

.news-card:hover .news-button i {

    transform: translateX(7px);

}

/*==================================================
FOOTER
==================================================*/

.news-footer {

    margin-top: 70px;

    text-align: center;

}

/*==================================================
PAGINATION
==================================================*/

.pagination,
.nav-links {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 70px;

}

.page-numbers {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #fff;

    color: var(--secondary);

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);

    transition: .3s;

}

.page-numbers:hover {

    background: var(--primary);

    color: #fff;

}

.page-numbers.current {

    background: var(--primary);

    color: #fff;

}

.page-numbers.prev,
.page-numbers.next {

    width: auto;

    padding: 0 24px;

    border-radius: 50px;

}

/*==================================================
NO POSTS
==================================================*/

.no-posts {

    padding: 100px 30px;

    text-align: center;

    background: #fff;

    border-radius: 24px;

    box-shadow: var(--shadow);

}

.no-posts h2 {

    margin-bottom: 20px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .news-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .news-grid {

        grid-template-columns: 1fr;

    }

    .news-section {

        padding: 80px 0;

    }

    .news-title {

        font-size: 34px;

    }

    .news-content {

        padding: 25px;

    }

}

@media(max-width:576px) {

    .news-title {

        font-size: 28px;

    }

    .news-description {

        font-size: 16px;

    }

}

/*==================================================
PAGE HEADER
==================================================*/

.page-header {

    position: relative;

    padding: 110px 0 90px;

    background: linear-gradient(135deg, #163548 0%, #1680BC 100%);

    overflow: hidden;

}

.page-header::before {

    content: "";

    position: absolute;

    inset: 0;

    background: url("../images/pattern.svg") center/cover;

    opacity: .08;

}

.page-header-content {

    position: relative;

    z-index: 2;

    text-align: center;

}

.page-title {

    color: #fff;

    font-size: 54px;

    margin-bottom: 20px;

}

.page-subtitle {

    color: rgba(255, 255, 255, .85);

    font-size: 20px;

}

/*==================================================
BREADCRUMBS
==================================================*/

.breadcrumbs {

    margin-top: 20px;

    color: rgba(255, 255, 255, .75);

    font-size: 15px;

}

.breadcrumbs a {

    color: #fff;

}

.breadcrumbs a:hover {

    text-decoration: underline;

}

/*==================================================
PAGE CONTENT
==================================================*/

.page-content {

    padding: 90px 0;

}

.page-content article {

    max-width: 900px;

    margin: auto;

}

.page-content img {

    border-radius: 18px;

    margin: 35px auto;

}

.page-content h2 {

    margin-top: 50px;

}

.page-content ul {

    margin: 20px 0 30px 25px;

    list-style: disc;

}

.page-content ol {

    margin: 20px 0 30px 25px;

}

.page-content li {

    margin-bottom: 10px;

}

.page-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 40px 0;

}

.page-content table th {

    background: var(--primary);

    color: #fff;

    padding: 16px;

}

.page-content table td {

    padding: 16px;

    border: 1px solid #e6eaf0;

}

/*==================================================
CATEGORY / ARCHIVE
==================================================*/

.archive-posts {

    padding: 90px 0;

}

.archive-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

/* używamy wyglądu kart aktualności */

.archive-card {

    display: flex;

    flex-direction: column;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .35s;

}

.archive-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);

}

.archive-card img {

    width: 100%;

    aspect-ratio: 16/10;

    object-fit: cover;

    transition: .45s;

}

.archive-card:hover img {

    transform: scale(1.08);

}

.archive-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    flex: 1;

}

.archive-meta {

    display: flex;

    gap: 20px;

    margin-bottom: 16px;

    font-size: 14px;

    color: #7d8a94;

}

.archive-content h2 {

    font-size: 24px;

    margin-bottom: 18px;

}

.archive-content h2 a {

    color: var(--secondary);

}

.archive-content h2 a:hover {

    color: var(--primary);

}

.archive-content p {

    flex: 1;

}

.archive-button {

    margin-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: var(--primary);

}

.archive-button:hover {

    color: var(--primary-dark);

}

/*==================================================
SEARCH
==================================================*/

.search-header {

    margin-bottom: 60px;

    text-align: center;

}

.search-header h1 {

    margin-bottom: 15px;

}

.search-form {

    display: flex;

    gap: 15px;

    max-width: 700px;

    margin: 40px auto;

}

.search-form input[type="search"] {

    flex: 1;

    height: 60px;

    padding: 0 22px;

    border: 1px solid var(--border);

    border-radius: 50px;

    font-size: 16px;

}

.search-form input:focus {

    outline: none;

    border-color: var(--primary);

}

.search-form button {

    width: 170px;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.search-form button:hover {

    background: var(--primary-dark);

}

/*==================================================
404
==================================================*/

.error404 {

    text-align: center;

    padding: 140px 0;

}

.error404 h1 {

    font-size: 150px;

    color: var(--primary);

    line-height: 1;

}

.error404 h2 {

    margin: 20px 0;

}

.error404 p {

    max-width: 600px;

    margin: auto auto 40px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .archive-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .page-header {

        padding: 80px 0;

    }

    .page-title {

        font-size: 38px;

    }

    .archive-grid {

        grid-template-columns: 1fr;

    }

    .search-form {

        flex-direction: column;

    }

    .search-form button {

        width: 100%;

        height: 58px;

    }

}

@media(max-width:576px) {

    .page-title {

        font-size: 30px;

    }

    .page-content {

        padding: 70px 0;

    }

}

/*==================================================
SINGLE POST
==================================================*/

.single-post-section {

    padding: 90px 0;

    background: #f7f9fc;

}

.single-post {


    margin: auto;

    background: #fff;

    border-radius: 24px;

    padding: 10px 60px;

    box-shadow: var(--shadow);

}

.entry-header {

    margin-bottom: 40px;

}

.entry-title {

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 25px;

}

.post-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 30px;

    color: #7c8791;

    font-size: 15px;

}

.post-meta span {

    display: flex;

    align-items: center;

    gap: 8px;

}

.post-meta i {

    color: var(--primary);

}


/*==================================================
FEATURED IMAGE
==================================================*/

.single-main-image {

    display: block;

    max-width: 420px;

    margin: 40px auto;

    border-radius: 18px;

    overflow: hidden;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.single-main-image:hover {

    transform: translateY(-6px);

}

.single-main-image img {

    width: 100%;

    display: block;

}


/*==================================================
CONTENT
==================================================*/

.entry-content {

    font-size: 18px;

    color: var(--text);

    line-height: 1.9;

}

.entry-content h2 {

    margin-top: 60px;

}

.entry-content h3 {

    margin-top: 45px;

}

.entry-content p {

    margin-bottom: 24px;

}

.entry-content img {

    max-width: 100%;

    height: auto;

    border-radius: 18px;

    margin: 35px auto;

    cursor: pointer;

    transition: .35s;

}

.entry-content img:hover {

    transform: scale(1.02);

}

.entry-content figure {

    margin: 40px auto;

}

.entry-content figcaption {

    text-align: center;

    font-size: 14px;

    color: #7d8a94;

    margin-top: 12px;

}


/*==================================================
GALLERY
==================================================*/

.gallery {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 18px;

    margin: 45px 0;

}

.gallery img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

}


/*==================================================
BLOCKQUOTE
==================================================*/

blockquote {

    margin: 45px 0;

    padding: 30px;

    border-left: 5px solid var(--primary);

    background: #f4f9fc;

    border-radius: 16px;

    font-style: italic;

}


/*==================================================
TABLE
==================================================*/

.entry-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 40px 0;

}

.entry-content th {

    background: var(--primary);

    color: #fff;

    padding: 16px;

}

.entry-content td {

    border: 1px solid #e6ebef;

    padding: 16px;

}


/*==================================================
TAGS
==================================================*/

.post-tags {

    margin-top: 50px;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.post-tags a {

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef6fb;

    color: var(--primary);

    font-size: 14px;

}

.post-tags a:hover {

    background: var(--primary);

    color: #fff;

}


/*==================================================
POST NAVIGATION
==================================================*/

.post-navigation {

    margin-top: 70px;

    padding-top: 40px;

    border-top: 1px solid #ececec;

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.post-navigation a {

    color: var(--primary);

    font-weight: 700;

}


/*==================================================
COMMENTS
==================================================*/

.comments-area {

    margin-top: 80px;

}

.comments-title {

    margin-bottom: 35px;

}

.comment-list {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.comment {

    padding: 25px;

    border-radius: 18px;

    background: #f7f9fc;

}

.comment-author {

    font-weight: 700;

}

.comment-meta {

    margin-bottom: 15px;

    color: #7c8791;

    font-size: 14px;

}

.comment-respond {

    margin-top: 60px;

}

.comment-form {

    display: grid;

    gap: 20px;

}

.comment-form input,

.comment-form textarea {

    width: 100%;

    padding: 16px 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    font-size: 16px;

}

.comment-form textarea {

    min-height: 180px;

}

.comment-form input:focus,

.comment-form textarea:focus {

    outline: none;

    border-color: var(--primary);

}

.comment-form .submit {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 34px;

    border: none;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

}


/*==================================================
IMAGE MODAL
==================================================*/

.image-modal {

    position: fixed;

    inset: 0;

    display: none;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, .92);

    z-index: 99999;

}

.image-modal.active {

    display: flex;

}

.image-modal img {

    max-width: 92vw;

    max-height: 92vh;

    border-radius: 12px;

}

.image-modal-close {

    position: absolute;

    top: 25px;

    right: 35px;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #fff;

    color: #222;

    font-size: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .single-post {

        padding: 40px;

    }

    .entry-title {

        font-size: 36px;

    }

}

@media(max-width:768px) {

    .single-post {

        padding: 30px;

    }

    .entry-title {

        font-size: 30px;

    }

    .post-navigation {

        flex-direction: column;

    }

    .single-main-image {

        max-width: 100%;

    }

}

@media(max-width:576px) {

    .single-post {

        padding: 22px;

    }

    .entry-content {

        font-size: 16px;

    }

    .post-meta {

        flex-direction: column;

        gap: 10px;

    }

}

/*==================================================
FOOTER
==================================================*/

.site-footer {

    position: relative;

    background: #163548;

    color: #fff;

    margin-top: 100px;

}

.footer-top {

    padding: 80px 0 50px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

}

.footer-logo {

    max-width: 220px;

    margin-bottom: 25px;

}

.footer-description {

    color: rgba(255, 255, 255, .75);

    line-height: 1.9;

    margin-bottom: 30px;

}

.footer-title {

    color: #fff;

    font-size: 22px;

    margin-bottom: 25px;

}

.footer-menu {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-menu a {

    color: rgba(255, 255, 255, .75);

    transition: .3s;

}


.footer-menu a:hover {

    color: #fff;

    padding-left: 8px;

}
.footer-menu li, .footer-contact li {
    margin-left: -30px;
}

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.footer-contact li {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}

.footer-contact i {

    color: var(--primary);

    font-size: 18px;

    width: 20px;

    margin-top: 4px;

}

.footer-social {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .3s;

}

.footer-social a:hover {

    background: var(--primary);

    transform: translateY(-4px);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

}

.footer-bottom-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}

.footer-copy {

    color: rgba(255, 255, 255, .65);

    font-size: 15px;

}

.footer-bottom-menu {

    display: flex;

    gap: 20px;

}

.footer-bottom-menu a {

    color: rgba(255, 255, 255, .65);

}

.footer-bottom-menu a:hover {

    color: #fff;

}


/*==================================================
FORMS
==================================================*/

form {

    width: 100%;

}

input,
select,
textarea {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 16px 20px;

    font-size: 16px;

    transition: .3s;

    background: #fff;

}

textarea {

    min-height: 180px;

    resize: vertical;

}

input:focus,
select:focus,
textarea:focus {

    outline: none;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(22, 128, 188, .08);

}


/*==================================================
CONTACT FORM 7
==================================================*/

.wpcf7 {

    margin-top: 40px;

}

.wpcf7-form {

    display: grid;

    gap: 25px;

}

.wpcf7-submit {

    width: auto;

    min-width: 220px;

    background: var(--primary);

    color: #fff;

    border: none;

    border-radius: 50px;

    padding: 16px 36px;

    font-weight: 700;

    transition: .3s;

}

.wpcf7-submit:hover {

    background: var(--primary-dark);

}

.wpcf7-spinner {

    margin-left: 15px;

}

.wpcf7-not-valid-tip {

    color: #dc3545;

    margin-top: 8px;

    font-size: 14px;

}

.wpcf7-response-output {

    margin-top: 20px !important;

    border-radius: 12px;

}


/*==================================================
TABLES
==================================================*/

table {

    width: 100%;

    border-collapse: collapse;

}

table th {

    background: var(--primary);

    color: #fff;

}

table th,
table td {

    padding: 16px;

    border: 1px solid #e8edf2;

}


/*==================================================
ALERTS
==================================================*/

.alert {

    padding: 20px 25px;

    border-radius: 14px;

    margin-bottom: 25px;

}

.alert-success {

    background: #eaf8ef;

    color: #1d6f42;

}

.alert-warning {

    background: #fff8e5;

    color: #996c00;

}

.alert-danger {

    background: #fdecec;

    color: #b42318;

}


/*==================================================
WIDGETS
==================================================*/

.widget {

    margin-bottom: 45px;

}

.widget-title {

    font-size: 24px;

    margin-bottom: 25px;

}

.widget ul {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.widget a {

    color: var(--secondary);

}

.widget a:hover {

    color: var(--primary);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom-inner {

        flex-direction: column;

        text-align: center;

    }

    .footer-bottom-menu {

        justify-content: center;

        flex-wrap: wrap;

    }

}

@media(max-width:576px) {

    .footer-top {

        padding: 60px 0 40px;

    }

    .footer-title {

        font-size: 20px;

    }

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: none;

    }

}

@keyframes zoomIn {

    from {

        opacity: 0;

        transform: scale(.9);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}

.fade-in {

    animation: fadeIn .8s ease both;

}

.fade-up {

    animation: fadeUp .8s ease both;

}

.zoom-in {

    animation: zoomIn .6s ease both;

}


/*==================================================
HELPERS
==================================================*/

.clearfix::after {

    content: "";

    display: block;

    clear: both;

}

.text-left {

    text-align: left;

}

.text-right {

    text-align: right;

}

.text-center {

    text-align: center;

}

.d-none {

    display: none;

}

.d-block {

    display: block;

}

.d-flex {

    display: flex;

}

.flex-column {

    flex-direction: column;

}

.justify-center {

    justify-content: center;

}

.justify-between {

    justify-content: space-between;

}

.align-center {

    align-items: center;

}

.w-100 {

    width: 100%;

}

.h-100 {

    height: 100%;

}

.rounded {

    border-radius: 18px;

}

.shadow {

    box-shadow: var(--shadow);

}

.shadow-hover:hover {

    box-shadow: var(--shadow-hover);

}


/*==================================================
WORDPRESS CORE
==================================================*/

.alignleft {

    float: left;

    margin: 0 30px 25px 0;

}

.alignright {

    float: right;

    margin: 0 0 25px 30px;

}

.aligncenter {

    display: block;

    margin: 40px auto;

}

.wp-caption {

    max-width: 100%;

}

.wp-caption img {

    display: block;

}

.wp-caption-text {

    text-align: center;

    color: #7d8a94;

    margin-top: 10px;

    font-size: 14px;

}

.gallery-caption {

    font-size: 14px;

    color: #7d8a94;

}

.sticky {

    border-left: 5px solid var(--primary);

}

.bypostauthor {

    position: relative;

}

.screen-reader-text {

    position: absolute;

    left: -9999px;

}

.screen-reader-text:focus {

    left: 20px;

    top: 20px;

    background: #fff;

    padding: 15px;

    z-index: 999999;

}


/*==================================================
SELECTION
==================================================*/

::selection {

    background: var(--primary);

    color: #fff;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #edf1f5;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: var(--primary-dark);

}


/*==================================================
BACK TO TOP
==================================================*/

.back-to-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 999;

}

.back-to-top.active {

    opacity: 1;

    visibility: visible;

}

.back-to-top:hover {

    background: var(--primary-dark);

    transform: translateY(-5px);

}


/*==================================================
LOADING
==================================================*/

.loading {

    position: relative;

    pointer-events: none;

    opacity: .6;

}

.loading::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 28px;

    height: 28px;

    margin: -14px;

    border: 3px solid rgba(0, 0, 0, .15);

    border-top-color: var(--primary);

    border-radius: 50%;

    animation: spin 1s linear infinite;

}

@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}


/*==================================================
PRINT
==================================================*/

@media print {

    .site-header,

    .site-footer,

    .mobile-toggle,

    .header-button,

    .news-footer,

    .post-navigation,

    .comments-area {

        display: none !important;

    }

    body {

        background: #fff;

        color: #000;

    }

    a {

        color: #000;

        text-decoration: none;

    }

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    h1 {

        font-size: 48px;

    }

    h2 {

        font-size: 38px;

    }

    .container {

        max-width: 1140px;

    }

}

@media(max-width:992px) {

    .section {

        padding: 80px 0;

    }

    .container {

        max-width: 960px;

    }

}

@media(max-width:768px) {

    body {

        font-size: 15px;

    }

    .section {

        padding: 70px 0;

    }

    .container {

        padding: 0 18px;

    }

    h1 {

        font-size: 36px;

    }

    h2 {

        font-size: 30px;

    }

    h3 {

        font-size: 24px;

    }

}

@media(max-width:576px) {

    .section {

        padding: 60px 0;

    }

    .container {

        padding: 0 15px;

    }

    h1 {

        font-size: 30px;

    }

    h2 {

        font-size: 26px;

    }

    h3 {

        font-size: 22px;

    }

    .btn-primary,

    .btn-outline {

        width: 100%;

        justify-content: center;

    }

}

hr {
border-top: none;

}

/*==================================================
POST NAVIGATION
==================================================*/

.post-navigation {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-top: 60px;

    padding-top: 40px;

    border-top: 1px solid #e8edf2;

}

.post-navigation .nav-previous,
.post-navigation .nav-next {

    flex: 1;

}

.post-navigation .nav-next {

    text-align: right;

}

.post-navigation a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;

    box-shadow: 0 10px 25px rgba(22, 128, 188, .20);

}

.post-navigation a:hover {

    background: var(--primary-dark);

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(22, 128, 188, .30);

}

.post-navigation .nav-next a {

    margin-left: auto;

}

.post-navigation .nav-previous a::before {

    content: "←";

    margin-right: 10px;

    font-size: 18px;

}

.post-navigation .nav-next a::after {

    content: "→";

    margin-left: 10px;

    font-size: 18px;

}

@media(max-width:768px) {

    .post-navigation {

        flex-direction: column;

        gap: 15px;

    }

    .post-navigation .nav-next {

        text-align: left;

    }

    .post-navigation .nav-next a {

        margin-left: 0;

    }

    .post-navigation a {

        width: 100%;

    }

}
.hero-scroll-wrapper {

    position: absolute;

    left: 50%;

    bottom: 40px;

    transform: translateX(-50%);

    z-index: 20;

}

.hero-scroll {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    text-decoration: none;

    color: #fff;

}

.hero-scroll-circle {

    width: 84px;

    height: 84px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .12);

    border: 2px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

    transition: .35s;

    animation: heroPulse 2.5s infinite;

}

.hero-scroll-circle i {

    font-size: 32px;

    color: #fff;

    animation: heroArrow 1.8s infinite;

}

.hero-scroll:hover .hero-scroll-circle {

    transform: translateY(6px);

    background: rgba(255, 255, 255, .2);

}

.hero-scroll span {

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

@keyframes heroArrow {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(6px);

    }

}

@keyframes heroPulse {

    0% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, .25);

    }

    70% {

        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

    }

}

.image-modal{

position:fixed;

inset:0;

display:none;

justify-content:center;

align-items:center;

background:rgba(0,0,0,.92);

z-index:999999;

}

.image-modal.show{

display:flex;

}

.image-modal img{

max-width:95vw;

max-height:95vh;

border-radius:12px;

box-shadow:0 20px 60px rgba(0,0,0,.4);

}

.modal-close{

position:absolute;

top:25px;

right:35px;

width:52px;

height:52px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#fff;

font-size:34px;

cursor:pointer;

}