/* :) */

.navigation,
.menu-btn,
.menu-item,
.option-tree-item,
.lang-trigger,
.lang-option,
label {
    user-select: none;
    -webkit-user-select: none;
}

@font-face {
    font-family: "Inter";
    src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype-variations");
    font-weight: 300 700;
    font-display: swap;
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(2.5rem, 8vw, 7rem);
}

h3 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(1rem, 5vw, 2.5rem)
}

.header {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}

.header h1 {
    margin: 0;
}

.header h3 {
    margin: 0.5rem 0 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: #e3e8ff;
}

.navigation {
    position: sticky;
    top: 0;
    z-index: 401;
    transition: transform 0.35s ease-in-out;
}

.navigation.nav-hidden {
    transform: translateY(-100%);
}

.navbar {
    position: relative;
    z-index: 450;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #0e4399;
}

.menu {
    display: flex;
    align-items: center;
}

#menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#menu-toggle:focus-visible~.menu-btn {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.menu-btn>span,
.menu-btn>span::before,
.menu-btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

.menu-btn>span::before {
    content: '';
    top: -8px;
    transition: top 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.menu-btn>span::after {
    content: '';
    top: 8px;
    transition: top 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#menu-toggle:checked~.menu-btn>span {
    transform: rotate(45deg);
}

#menu-toggle:checked~.menu-btn>span::before {
    top: 0;
    transform: rotate(0deg);
}

#menu-toggle:checked~.menu-btn>span::after {
    top: 0;
    transform: rotate(90deg);
}

.menu-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 6px;
    margin: 0 0 0 24px;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    max-width: 0;
    max-height: 46px;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.4s ease-in-out, opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
}

#menu-toggle:checked~.menu-box {
    max-width: min(1400px, 94vw);
    max-height: 800px;
    opacity: 1;
}

.menu-box.menu-open-settled {
    overflow: visible;
}

.menu-item-wrap {
    position: relative;
}

.menu-item {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.menu-item--has-children::after {
    content: '▾';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.65em;
    vertical-align: middle;
}

.option-tree {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 500;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: calc(100vw - 32px);
    max-height: 0;
    padding: 0 14px;
    background-color: #0e4399;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item-wrap.has-children:hover .option-tree,
.menu-item-wrap.has-children.is-open .option-tree {
    width: 260px;
    max-height: 340px;
    padding: 14px;
    pointer-events: auto;
}

.menu-item-wrap.has-children.force-closed .option-tree {
    width: 100% !important;
    max-height: 0 !important;
    padding: 0 14px !important;
    pointer-events: none !important;
}

.option-tree-item {
    display: block;
    padding: 8px 10px;
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: normal;
}

.option-tree-item--more {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

.page-dim {
    position: fixed;
    inset: 0;
    z-index: 400;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dim-active .page-dim {
    opacity: 1;
    pointer-events: auto;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #fff;
    background: none;
    border: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.lang-trigger::after {
    content: '▾';
    margin-left: 2px;
    font-size: 0.75em;
}

.lang-icon {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1.5px solid #fff;
    border-radius: 50%;
}

.lang-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: scaleX(0.42);
}

.lang-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -1.5px;
    right: -1.5px;
    height: 1.5px;
    background-color: #fff;
    transform: translateY(-50%);
}

.lang-dropdown {
    background-color: #fff;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.lang-option-flag {
    display: inline-block;
    flex-shrink: 0;
    width: 22px;
    height: 15px;
    background-size: cover;
    background-position: center;
}

.lang-option-flag--ua {
    background-image: url("../img/flag-ua.svg");
}

.lang-option-flag--en {
    background-image: url("../img/flag-en.svg");
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    background-color: #0e4399;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.content-section {
    width: 100%;
    box-sizing: border-box;
    padding: 4rem 0;
    scroll-margin-top: 20px;
}

.content-section--tint {
    background-color: #f5f6f8;
}

.content-section-inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    position: relative;
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1.75rem;
    padding-bottom: 14px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: #0e4399;
}

.content-section p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    max-width: 640px;
    margin: 0 0 1rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.about-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.about-text {
    flex: 1 1 420px;
}

.about-cert {
    flex: 0 0 auto;
    width: 160px;
    border-radius: 8px;
}

.credibility-heading {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
}

.credibility-gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
}

.credibility-gallery .about-cert {
    width: auto;
    height: 220px;
    max-width: 100%;
    object-fit: contain;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.service-card {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
}

a.service-card:hover {
    background-color: #eef1f6;
}

.service-card h3 {
    font-family: sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0e4399;
    margin: 0 0 0.5rem;
}

.service-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.products-intro {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0.75rem 0 0;
}

.product-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 90%;
    max-width: 1100px;
    margin: 1.5rem auto 0;
}

.product-toc a {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #0e4399;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.product-category {
    width: 100%;
    box-sizing: border-box;
    padding: 3.5rem 0;
    scroll-margin-top: 20px;
}

.product-category .content-section-inner {
    max-width: 1100px;
}

.product-category>.content-section-inner>p {
    max-width: 700px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 1.5rem;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 22px 24px;
}

.product-photo {
    display: block;
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-family: sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0e4399;
    margin: 0 0 0.6rem;
}

.doc-link {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 1.25rem 0 0;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: #eef1f6;
    color: #0e4399;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.doc-link:hover {
    background-color: #e2e7f0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 1.5rem 0 0;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
}

.video-card span {
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background-color: #000;
}

.testimonial-carousel-wrap {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    margin-top: 1.5rem;
    padding: 0 44px;
    box-sizing: border-box;
}

.testimonial-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2px 2px 14px;
    margin: 0 -2px;
}

.testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: #f5f6f8;
    border-radius: 14px;
    padding: 10px;
}

.testimonial-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background-color: #000;
}

.carousel-arrow {
    position: absolute;
    top: calc(50% - 26px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    color: #0e4399;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
}

.carousel-arrow:hover {
    background-color: #eef1f6;
}

.carousel-prev {
    left: 4px;
}

.carousel-next {
    right: 4px;
}

@media (max-width: 640px) {
    .carousel-arrow {
        display: none;
    }

    .testimonial-carousel-wrap {
        padding: 0 16px;
    }
}

.product-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #333;
    max-width: none;
    margin: 0 0 0.75rem;
}

.product-card p:last-child {
    margin-bottom: 0;
}

.product-card details {
    margin-top: 0.75rem;
    border-top: 1px solid #e5e5e5;
    padding-top: 0.75rem;
}

.product-card summary {
    cursor: pointer;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0e4399;
}

.product-card details p {
    margin-top: 0.75rem;
}

.product-card ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0 0;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.product-card li {
    margin-bottom: 0.4rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    font-family: sans-serif;
    font-size: 0.85rem;
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid #e5e5e5;
}

.spec-table th {
    color: #666;
    font-weight: 700;
}

.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 90%;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: #0e4399;
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.35rem;
    max-width: 160px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.audience-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.audience-card h3 {
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e4399;
    margin: 0 0 0.6rem;
}

.audience-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0 0 1rem;
}

.audience-link {
    display: inline-block;
    color: #0e4399;
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.testimonial {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    border-left: 3px solid #0e4399;
}

.testimonial p {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
    max-width: 640px;
    margin: 0 0 0.75rem;
}

.testimonial cite {
    display: block;
    font-family: sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: #666;
}

.citation-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.citation-list li {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    padding-left: 1rem;
    border-left: 2px solid #ddd;
}

.partners-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partners-list li {
    display: flex;
    flex-direction: column;
}

.partners-list a {
    color: #0e4399;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.partners-list span {
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

.contact-list {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: sans-serif;
    font-size: 1.05rem;
    color: #222;
}

.contact-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0e4399;
    flex-shrink: 0;
}

.contact-list a {
    color: #0e4399;
    font-weight: 700;
    text-decoration: none;
}

.contact-subheading {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    margin: 2rem 0 0.4rem;
}

.contact-org {
    font-family: sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.news-page-header {
    width: 90%;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.news-page-header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto 4rem;
}

.news-tab {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.news-tab:hover {
    background-color: #e4e4e4;
}

.news-tab-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-tab-title {
    padding: 14px 16px 0;
    font-family: sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.news-tab-meta {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px 14px;
    font-family: sans-serif;
    font-size: 13px;
    color: #555;
}

.news-unavailable {
    grid-column: 1 / -1;
    padding: 20px;
    border-radius: 12px;
    background-color: #f5f5f5;
    color: #444;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.news-unavailable code {
    background-color: #e6e6e6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.article {
    width: 90%;
    max-width: 800px;
    margin: 3rem auto 4rem;
}

.article-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin: 1.5rem 0 0.5rem;
}

.article-meta {
    font-family: sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0 0 1.5rem;
}

.article p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #222;
    margin: 0 0 1rem;
}

.back-link {
    display: block;
    width: fit-content;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    color: #0e4399;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 14px;
    }

    .menu-item {
        font-size: 16px;
        padding: 8px 12px;
    }

    #menu-toggle:checked~.menu-box {
        max-width: 80vw;
    }

    .menu-item-wrap.has-children:hover .option-tree,
    .menu-item-wrap.has-children.is-open .option-tree {
        width: 200px;
    }
}

.resource-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-list li {
    display: flex;
}

.resource-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background-color: #fff;
    color: #1a1a1a;
    font-family: sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.content-section--tint .resource-list a {
    background-color: #fff;
}

.resource-list a:hover {
    background-color: #eef1f6;
}

.resource-list a::after {
    content: '→';
    margin-left: auto;
    color: #0e4399;
    flex-shrink: 0;
}

.resource-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.legacy-permits {
    margin-top: 1.75rem;
}

.legacy-permits summary {
    cursor: pointer;
    font-family: sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0e4399;
}

.legacy-permits .resource-list {
    margin-top: 1rem;
}

.product-photo,
.article-image,
.about-cert {
    cursor: zoom-in;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 12, 20, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
