/*
* requires external CSS variables
* --nav-height
* --max-width-fixed: 1150px;
* --max-width-relative: 90%;
*/

/*# Global #*/

:root {
    --color-text-light: #fff;
    --color-text-dark: #000;
    --color-secondary: #64CB9C;
    --color-secondary-light: #5EEBAB;
    --color-primary: #004A38;
    --color-accent: #C29B6D;
    --color-soft-200: #F3EBE2;
    --color-soft-100: #F9F5F0;
    --color-neutral-900: #1A1A1A;
    --color-neutral-800: #212121;
    --color-neutral-700: #444E57;
    --color-neutral-500: #5d5d5d;
    --color-neutral-200: #D1D4DF;
    --color-neutral-100: #EEEEEE;
    --color-bg-default: #fff;

    --max-width-fixed: 1150px;
    --max-width-relative: 90%;

    interpolate-size: allow-keywords;

    /* 
  100% = 12 * x + 11 * x / 1.618
  100% = 12x + 6,8x
  100% = 18,8x
  
  col = x = 5.32%
  63,84% = 12 * x
  gap = x / 1.618 = 3.28%
  */

    --nap20-gap-x-percentage: 3.28%;
    --nap20-gap-x: 24px;
    --nap20-gap-y: 48px;
    --nap20-gap: var(--nap20-gap-y) var(--nap20-gap-x);

    /* nap20 12 columns system */
    --nap20-col: 68px;
    --nap20-col-gap-x: 30px;
    --nap20-col-gap-y: 48px;
    --nap20-cols-12: calc(var(--nap20-col) * 12 + var(--nap20-col-gap-x) * 11);
    --nap20-cols-11: calc(var(--nap20-col) * 11 + var(--nap20-col-gap-x) * 10);
    --nap20-cols-10: calc(var(--nap20-col) * 10 + var(--nap20-col-gap-x) * 9);
    --nap20-cols-9: calc(var(--nap20-col) * 9 + var(--nap20-col-gap-x) * 8);
    --nap20-cols-8: calc(var(--nap20-col) * 8 + var(--nap20-col-gap-x) * 7);
    --nap20-cols-7: calc(var(--nap20-col) * 7 + var(--nap20-col-gap-x) * 6);
    --nap20-cols-6: calc(var(--nap20-col) * 6 + var(--nap20-col-gap-x) * 5);
    --nap20-cols-5: calc(var(--nap20-col) * 5 + var(--nap20-col-gap-x) * 4);
    --nap20-cols-4: calc(var(--nap20-col) * 4 + var(--nap20-col-gap-x) * 3);
    --nap20-cols-3: calc(var(--nap20-col) * 3 + var(--nap20-col-gap-x) * 2);
    --nap20-cols-2: calc(var(--nap20-col) * 2 + var(--nap20-col-gap-x) * 1);
    --nap20-cols-1: calc(var(--nap20-col) * 1 + var(--nap20-col-gap-x) * 0);

}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.nap20-mw-cols-1 {
    max-width: var(--nap20-cols-1);
}

.nap20-mw-cols-2 {
    max-width: var(--nap20-cols-2);
}

.nap20-mw-cols-3 {
    max-width: var(--nap20-cols-3);
}

.nap20-mw-cols-4 {
    max-width: var(--nap20-cols-4);
}

.nap20-mw-cols-5 {
    max-width: var(--nap20-cols-5);
}

.nap20-mw-cols-6 {
    max-width: var(--nap20-cols-6);
}

.nap20-mw-cols-7 {
    max-width: var(--nap20-cols-7);
}

.nap20-mw-cols-8 {
    max-width: var(--nap20-cols-8);
}

.nap20-mw-cols-9 {
    max-width: var(--nap20-cols-9);
}

.nap20-mw-cols-10 {
    max-width: var(--nap20-cols-10);
}

.nap20-mw-cols-11 {
    max-width: var(--nap20-cols-11);
}

.nap20-mw-cols-12 {
    max-width: var(--nap20-cols-12);
}

.nap20-nowrap {
    white-space: nowrap !important;
}

.nap20-display-none {
    display: none !important;
}

@media (min-width: 1024px) {
    .nap20-lg-display-block {
        display: block !important;
    }
}

.nap20-bg-light,
.nap20-bg-soft {
    background-color: var(--color-soft-100);
}

.nap20-bg-neutral-light {
    background-color: var(--color-neutral-200);
}

.nap20-bg-default {
    background-color: var(--color-bg-default);
}

.nap20-container {
    width: min(var(--max-width-relative), var(--max-width-fixed));
    margin-inline: auto
}

.nap20-flow>*+* {
    --flow: 1em;
    margin-top: var(--flow);
}

.nap20-grid {
    display: grid;
    gap: var(--gap, 1rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 16ch)), 1fr))
}

.nap20-grid-box {
    display: grid;
    gap: var(--gap, var(--nap20-gap));
}

/* ! if is variable defined inside class,
 it is not overwritten by parrent class*/

.nap20-flex-box {
    display: flex;
    gap: var(--gap, 24px);
}

.nap20-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap, 16px);
}

.nap20-stacked {
    display: grid;
}

.nap20-stacked>* {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.nap20-spacing {
    margin-top: var(--spacing, 24px)
}

.nap20-cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 24px);
}

.nap20-plain-link {
    color: inherit;
    font-weight: 400;
    text-decoration: underline;
    display: inline;
    cursor: pointer;
}

.nap20-plain-link:hover {
    color: inherit;
}


.nap20-link {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: underline;
    display: block;
    width: max-content;
    margin-inline: auto;
    line-height: 1
}

.nap20-link:hover {
    color: var(--color-secondary);
}

.nap20-button {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    line-height: 1.286;
    padding: 19px 31.5px;
    text-transform: uppercase;
    transition: background .2s ease;
    border: none;
}

.nap20-button:hover {
    background-color: var(--color-secondary-light);
    color: var(--color-text-dark);
    text-decoration: none;
}

.nap20-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
}

.nap20-title--small {
    font-size: 28px;
}

.nap20-subtitle {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: .1em;
}

.nap20-subtitle--large {
    font-size: 28px;
}

.nap20-accent-label {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nap20-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.nap20-label--large {
    font-size: 24px;
}

.nap20-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
}

.nap20-text--small {
    font-size: 16px;
}

/*# Section #*/
.nap20-section {
    --padding: 60px;
    --flow: var(--nap20-gap-y);
    padding-block: var(--padding);
}

.nap20-section-flow>*+* {
        margin-top: 48px;
    }

.nap20-section--no-padding-bottom {
    padding-bottom: 0;
}

.nap20-section--extended-top {
    padding-top: calc(var(--padding) + var(--nav-height));
}

.nap20-section__header--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nap20-section__header--flat {
    max-width: var(--nap20-cols-6);
}

.nap20-section__title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: var(--nap20-cols-10);
}

.nap20-section__title--small {
    font-size: 28px
}

.nap20-section__subtitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: .1em;
    max-width: var(--nap20-cols-8);
}

.nap20-section__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-block: 0;
    max-width: var(--nap20-cols-10);
}

.nap20-section__text+.nap20-section__text {
    margin-top: 1em;
}

.nap20-section__cta {
    margin-top: 48px;
}

.nap20-section__image {
    width: 80%;
    height: auto;
    margin-inline: auto;
    display: block;
    max-width: var(--nap20-cols-4);
}

.nap20-section__media-box {
    max-width: var(--nap20-cols-5);
}

.nap20-section__media-box>* {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}


/*tablet*/
@media (min-width: 768px) {
    .nap20-grid-box--cols-2-md {
        grid-template-columns: repeat(2, 1fr);
    }

    .nap20-grid-box--cols-3-md {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*desktop - full width*/
@media (min-width: 1200px) {

    /* 1 col - 68px , space 30px*/
    :root {
        --nap20-gap-x: 30px;
        --nap20-gap-y: 48px;
        --nap20-gap: var(--nap20-gap-y) var(--nap20-gap-x);
    }

    .nap20-grid-box--cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .nap20-grid-box--cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .nap20-grid-box--cols-7-5 {
        grid-template-columns: var(--nap20-cols-7) var(--nap20-cols-5);
    }

    .nap20-section {
        --padding: 80px;
    }    

    .nap20-section--no-padding-bottom {
        padding-bottom: 0;
    }

    .nap20-section__header--lower {
        margin-top: var(--nap20-gap-y);
    }

    .nap20-section__header--flat {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--nap20-gap);
        max-width: unset;
    }

    .nap20-title {
        font-size: 48px;
    }

    .nap20-title--small {
        font-size: 32px;
    }

    .nap20-section__title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .nap20-section__title--small {
        font-size: 36px
    }

    .nap20-section__subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .nap20-section__text {
        font-size: 20px;
    }

    .nap20-link {
        font-size: 24px;
    }


}

/*# Hero block #*/
.nap20-hero {
    min-height: 90vh;
    padding-top: var(--nav-height);
    position: relative;
    display: grid;
    align-items: center;
}

.nap20-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.nap20-hero__backgroundImage {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(.5);
    z-index: 0;
}

.nap20-hero__content {
    position: relative;
    margin-block: 60px;
    color: var(--color-text-light);
}

.nap20-hero__title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.125;
    margin-bottom: 22px;
}

.nap20-hero__subtitle {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.nap20-hero__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .nap20-hero__title {
        font-size: 60px;
    }

    .nap20-hero__text {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .nap20-hero__content {
        margin-block: 80px;
    }

    .nap20-hero__title {
        font-size: 80px;
        max-width: var(--nap20-cols-10);
    }

    .nap20-hero__subtitle {
        font-size: 20px;
        max-width: var(--nap20-cols-8);
    }

    .nap20-hero__text {
        max-width: var(--nap20-cols-8);
    }
}

/*# Feature component #*/
.nap20-feature {
    display: grid;
    grid-template-columns: 48px auto;
}

.nap20-feature--small {
    grid-template-columns: 36px auto;
}

.nap20-feature__image {
    width: 48px;
    height: auto;
    color: var(--color-secondary);
    justify-self: center;
}

.nap20-feature--small .nap20-feature__image {
    width: 36px;
}

.nap20-feature__body {
    padding: 16px 8px 0px 8px;
}

.nap20-feature--small .nap20-feature__body {
    padding-top: 8px;
}

.nap20-feature__title {
    margin-bottom: 9px;
}

.nap20-feature__text {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .nap20-feature {
        grid-template-columns: var(--nap20-col) auto;
    }

    .nap20-feature__image {
        width: 64px;
    }

    .nap20-feature--small .nap20-feature__image {
        width: 48px;
    }

    .nap20-feature__body {
        padding-inline: 16px;
    }

    .nap20-feature--small .nap20-feature__body {
        padding-inline: 8px;
    }

}

/*# Info component #*/
.nap20-info__title {
    margin-bottom: 9px;
}

.nap20-info__text {
    margin-bottom: 0;
}

/*# Join us block #*/
.nap20-join-us {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nap20-gap-x) var(--nap20-gap-x);
}

.nap20-join-us__image {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .nap20-join-us {
        grid-template-columns: auto 1fr;
        align-items: end;
    }

    .nap20-join-us__box {
        grid-row: span 2;
        align-self: stretch;
    }
}


@media (min-width: 1200px) {
    .nap20-join-us {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: var(--nap20-gap);
    }

    .nap20-join-us__header {
        margin-bottom: 14px;

    }

    .nap20-join-us__box {
        grid-row: unset;
        align-self: unset;
    }

    .nap20-join-us__cta {
        margin-bottom: 52px;
        grid-column: unset;
        justify-self: normal;
    }
}

/*# Slide bar component #*/
@media (pointer: coarse) {
    .nap20-slide-bar {
        overflow-y: scroll;
    }
}

@media (pointer: fine) {
    .nap20-slide-bar:hover>* {
        overflow-y: scroll;
        transform: translateX(calc(100vw - 100%));
    }
}

.nap20-slide-bar>* {
    max-width: initial;
    transition: transform var(--time, 5s) linear;
}

/*# Number box component #*/
.nap20-number-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-secondary);
    padding: 16px;
    width: fit-content;
}

.nap20-number-box__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.nap20-number-box__text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0px;
    letter-spacing: .1em;
}

@media (min-width: 1200px) {

    .nap20-number-box__title {
        font-size: 80px;
    }

    .nap20-number-box__text {
        font-size: 20px;
    }

}

/*# Testimonials block #*/
.nap20-testimonial {
    position: relative;
    --height: 256px;
    --width: 360px;
    display: grid;
    justify-content: center;
    grid-template-columns: var(--width);
    grid-template-rows: repeat(2, var(--height));
    background-color: inherit;
}

.nap20-testimonial__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nap20-testimonial__tip {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    background-color: inherit;
}

.nap20-testimonial__body {
    display: flex;
    flex-direction: column;
    padding: 48px 32px 32px 40px;
    overflow: clip;
    overflow-clip-margin: content-box;
}

.nap20-testimonial__text {
    margin-bottom: 20px;
}

.nap20-testimonial__name {
    margin-bottom: 7px;
    /* margin-top: auto; */
}

.nap20-testimonial__job {
    margin: 0;
}

.nap20-testimonials__grid {
    background-color: inherit;
}

@media (min-width: 768px) {
    .nap20-testimonial {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, var(--width));
        grid-template-rows: var(--height);
    }

    .nap20-testimonial:nth-child(even) .nap20-testimonial__image {
        order: 1;
    }

    .nap20-testimonials__grid {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (min-width: 1440px) {
    .nap20-testimonial {
        grid-template-columns: repeat(2, 1fr);
    }

    .nap20-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: unset;
    }

    .nap20-testimonial:nth-child(even) .nap20-testimonial__image {
        order: unset;
    }

    .nap20-testimonial:nth-child(3n) .nap20-testimonial__image,
    .nap20-testimonial:nth-child(4n) .nap20-testimonial__image {
        order: 1;
    }
}

/*# Highlights block #*/
.nap20-highlights__grid {
    display: grid;
    gap: 16px;
}

.nap20-highlight {
    border: 1px solid var(--color-neutral-200);
    width: 100%;
    padding-block: 32px;
    padding-inline: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: var(--nap20-cols-4);
}

.nap20-highlight__title {
    margin-bottom: 18px;
}

.nap20-highlight__number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .nap20-highlights__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--nap20-gap);
    }
}

/*# Comparison Table block #*/
.nap20-comparison-table {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    font-size: 18px;
    font-weight: 400;
    justify-items: center;
    overflow-x: auto;
    padding-block: 32px;
    background-color: var(--color-bg-default);
    max-width: var(--nap20-cols-12);
    margin-inline: auto;
}

.nap20-comparison-table>* {
    padding-inline: 32px;
    width: 100%;
}

.nap20-comparison-table__header {
    font-size: 20px;
    font-weight: 700;
    border: none;
    padding-block: 16px;
    text-align: center;
}

.nap20-comparison-table__cell-inner {
    border-bottom: 1px solid #00000088;
    padding-block: 16px;
    padding-inline: 16px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 4px;
}

.nap20-comparison-table__cell-inner svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.nap20-comparison-table__last-row-cell {
    padding-bottom: 24px;
}

.nap20-comparison-table> :nth-child(4n-3) {
    .nap20-comparison-table__cell-inner {
        text-align: left;
        justify-content: start;
    }
}

.nap20-comparison-table> :nth-child(4n-2) {
    background-color: var(--color-secondary-light);
}

.nap20-comparison-table> :nth-child(4n-2) .nap20-comparison-table__cell-inner svg {
    color: var(--color-text-light);
}

/*# Contact block #*/

.nap20-contact-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nap20-gap);
    grid-template-areas:
        'header'
        'form'
        'contact';
}

.nap20-contact-block__form {
    grid-area: form;
}

.nap20-contact-block__header {
    grid-area: header;
    max-width: var(--nap20-cols-5);
}

.nap20-contact-block__contact {
    grid-area: contact;
    --spacing: 16px;
    align-self: end;
}

@media (min-width: 1024px) {
    .nap20-contact-block__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px var(--nap20-gap-x);
        grid-template-areas:
            'header form'
            'contact form';
    }

    .nap20-contact-block__header {
        max-width: unset;
    }

    .nap20-contact-block__form {
        margin-top: 8px;
    }
}

@media (min-width: 1200px) {
    .nap20-contact-block__form {
        margin-top: 22px;
        margin-left: calc(var(--nap20-col) + var(--nap20-col-gap-x));
    }
}


/*# Contact form component #*/
.nap20-contact-form {
    position: relative;
}

.nap20-contact-form__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.nap20-contact-form__inner {
    --gap: 16px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-bottom: 16px;
}

.nap20-contact-form__submit {
    width: fit-content;
}

.nap20-input {
    padding-block: 16px;
    padding-inline: 24px;
    border: none;
    border-radius: 0;
    width: 100%;
}

.nap20-form-wrapping-label {
    display: block;
    line-height: 1;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;

    .nap20-input {
        margin-top: 6px;
        font-size: 16px;
        font-weight: 500;
    }
}

.nap20-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.nap20-checkbox-label {
    margin: 0;
}

.nap20-checkbox-label--plain {
    color: var(--color-neutral-800);

    a {
        color: var(--color-neutral-800);
        border-bottom: none;
        text-decoration: underline;
    }
}

.nap20-checkbox {
    width: 24px;
    height: 24px;
}

.nap20-contact-form__result {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    opacity: 0;
}

/*# Contact box component #*/
.nap20-contact-box {
    display: flex;
    gap: 16px;
    align-items: center;
    width: fit-content;
}

.nap20-contact-box:hover {
    color: var(--color-secondary);
}

.nap20-contact-box__image {
    width: 88px;
    height: 88px;
}

.nap20-contact-box__name {
    margin-bottom: 4px;
}

.nap20-contact-box__name,
.nap20-contact-box__phone {
    display: block;
}

/*# Secondary footer component #*/
.nap20-secondary-footer-list {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.nap20-secondary-footer-link {
    padding-block: 4px;
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.nap20-secondary-footer-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.nap20-secondary-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nap20-secondary-footer {
    --color-light: #EEEEEE;
    --spacing: 24px;
    background-color: var(--color-light);
    padding-block: 48px;
}

.nap20-secondary-footer__block-a {
    grid-area: a;
}

.nap20-secondary-footer__block-b {
    grid-area: b;
    margin-top: var(--spacing);
}

.nap20-secondary-footer__block-b1 {
    grid-area: b1;
}

.nap20-secondary-footer__block-c {
    grid-area: c;
    margin-top: var(--spacing);
}



@media (min-width: 768px) {
    .nap20-secondary-footer__inner {
        display: grid;
        grid-template-areas:
            'a b'
            'a b1'
            'a c';
        grid-template-columns: 1fr 1fr;
    }

    .nap20-secondary-footer__block-b1-md {
        grid-area: b1;
    }

    .nap20-secondary-footer__block-b,
    .nap20-secondary-footer__block-c {
        margin-top: 0;
    }


}

@media (min-width: 1200px) {
    .nap20-secondary-footer__inner {
        grid-template-areas:
            'a b c';
        grid-template-columns: 4fr 2fr 2fr;
        align-items: center;
    }

    .nap20-secondary-footer-list--inline {
        display: flex;
        gap: 32px;
    }

    .nap20-secondary-footer__block-c-lg {
        grid-area: c;
    }

    .nap20-secondary-footer__block-b {
        margin-top: 0;
    }

    .nap20-secondary-footer__block-c {
        margin-top: 0;
    }

}

/*# Filter component #*/

.nap20-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 25px;
    cursor: pointer;
    background-color: var(--color-gray-light);
}

.nap20-filter-header__title {
    font-size: 24px;
    font-weight: bold;
}

.nap20-filter__wrapper {
    background-color: #f5f2ee;
    padding: 25px;
    text-align: left;
    width: 100%;
}

.nap20-filter__no-result {
    margin-block: 50px
}

.nap20-filter__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px
}

.nap20-filter__controls {
    --min: 200px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr))
}

.nap20-filter__buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px
}

.nap20-filter__form-control {
    display: flex;
    gap: 10px;
    align-items: center;
    user-select: none;

    label {
        font-size: 14px;
        width: max-content;
        margin: 0;
    }

    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}

.nap20-filter__clear-button {
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer
}

@media(pointer:coarse) {
    .nap20-filter {
        --ruler-color: #c5c5c5
    }

    .nap20-filter__controls {
        gap: 0
    }

    .nap20-filter__form-control {
        border-bottom: 1px solid var(--ruler-color);

        label {
            padding-block: 12px;
            flex-grow: 1;
        }
    }

    .nap20-filter__form-control:first-child {
        border-top: 1px solid var(--ruler-color)
    }
}

/*# Article Preview #*/

.nap20-preview-section {
    --min: 500px;
    container-type: inline-size;
    container-name: nap20-preview-section
}

.nap20-preview-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    max-width: var(--min);
    margin-inline: auto
}

.nap20-preview-section__button-more--bottom {
    display: block;
    text-align: center;
    max-width: var(--min);
    margin-top: 50px;
    margin-inline: auto
}

.nap20-preview-section__button-more--top {
    display: none
}

.nap20-preview-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px 50px;
    justify-items: center
}

.nap20-preview-section__footer {
    display: grid;
    justify-content: center
}

.nap20-preview-section__footer__more-button {
    margin-top: 80px;
    margin-bottom: 80px
}

.nap20-article-preview {
    transition-duration: .3s;
    transition-delay: .3s;
    transition-property: all, display;
    transition-behavior: normal, allow-discrete;
    opacity: 1;
    display: flex;

    @starting-style {
        opacity: 0;
    }
}

.nap20-article-preview.hidden {
    opacity: 0;
    display: none;
    transition-duration: .3s;
    transition-delay: 0s
}

.nap20-article-preview.ready-to-show {
    opacity: 0;
    transition-duration: .3s;
    transition-delay: 0s
}

.nap20-article-preview {
    display: flex;
    flex-direction: column;
    max-width: var(--min)
}

.nap20-article-preview__image {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 3/2
}

.nap20-article-preview__title {
    margin: 25px 0 16px 0
}

.nap20-article-preview__text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4118;
    margin-bottom: 32px
}

.nap20-article-preview__content {
    flex-grow: 1
}

.nap20-article-preview__button {
    align-self: flex-start
}

.nap20-article-preview__inactive-label {
    margin: 0;
    z-index: 1;
    align-self: center;
    justify-self: center;
    color: white
}

.nap20-article-preview--inactive {
    .nap20-article-preview__image {
        filter: grayscale(1)brightness(.5);
    }

    .nap20-article-preview__title {
        color: gray;
    }

    .nap20-article-preview__text {
        color: gray;
    }
}

@container nap20-preview-section (min-width:800px) {
    .nap20-preview-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nap20-preview-section__header {
        max-width: unset;
    }

    .nap20-preview-section__button-more--top {
        display: inline-block;
    }

    .nap20-preview-section__button-more--bottom {
        display: none;
    }
}

/*# Quote component #*/

.nap20-quote__text {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.nap20-quote__author {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    display: block;
}

.nap20-quote--center {
    text-align: center !important;
}

.nap20-quote--center .nap20-quote__author {
    text-align: center;
}

@media (min-width: 768px) {
    .nap20-quote__text {
        font-size: 32px;
    }

    .nap20-quote__author {
        font-size: 16px;
    }
}

/*# Carousel #*/
.nap20-carousel-arrow-left--dark,
.nap20-carousel-arrow-right--dark {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15.41 7.41L10.83 12l4.58 4.59L14 18l-6-6 6-6z"/></svg>');
    width: 48px;
    height: 48px;
}

.nap20-carousel-arrow-right--dark {
    transform: rotate(180deg);
}

.nap20-carousel-indicators--dark li {
    background-color: var(--color-text-dark);
}

/*# Logo wall component #*/
.nap20-logo-wall {
    --row-height: 80px;
    --item-min-width: 200px;
    --gap-x: 60px;
    --gap-y: 16px;
    height: var(--row-height);
    overflow: clip;
    overflow-clip-margin: border-box;
}

.nap20-logo-wall__grid {
    display: flex;
    gap: var(--gap-y) var(--gap-x);
}

.nap20-logo-wall__grid>* {
    width: var(--item-min-width);
    height: var(--row-height);
    object-fit: contain;
}

@media (min-width: 450px) {
    .nap20-logo-wall {
        padding-inline: 32px;
        height: calc(2*var(--row-height) + 1 * var(--gap-y));
    }

    .nap20-logo-wall__grid {
        display: grid;
        gap: var(--gap-y) var(--gap-x);
        grid-template-columns: repeat(auto-fill, minmax(var(--item-min-width), 1fr));
        grid-auto-rows: var(--row-height);
    }

    .nap20-logo-wall__grid>* {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/*# Pricing table component #*/
.nap20-pricing-table__title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.nap20-pricing-table__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.67;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.nap20-pricing-table__price {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
}

.nap20-pricing-table__price--small {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.nap20-pricing-table {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    font-size: 18px;
    font-weight: 400;
    justify-items: center;
    overflow-x: auto;
    padding: 32px;
    background-color: var(--color-bg-default);
    max-width: var(--nap20-cols-12);
    margin-inline: auto;
}

.nap20-pricing-table>* {
    padding-inline: 32px;
    width: 100%;
}

.nap20-pricing-table__header {
    font-size: 20px;
    font-weight: 700;
    border: none;
    padding-bottom: 16px;
    padding-top: 32px;
    text-align: center;
}

.nap20-pricing-table__x {
    color: var(--color-neutral-500);
}

.nap20-pricing-table__check {
    color: var(--color-secondary);
}

.nap20-pricing-table__cell-inner {
    border-bottom: 1px solid #00000088;
    padding-block: 16px;
    padding-inline: 16px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 4px;
    font-size: 16px;
}

.nap20-pricing-table__cell-inner svg {
    width: 20px;
    height: 20px;
}

.nap20-pricing-table__last-row-cell {
    padding-bottom: 24px;

    .nap20-pricing-table__cell-inner {
        border: none;
        white-space: nowrap;
    }
}

/* first column */
.nap20-pricing-table> :nth-child(4n-3) {
    padding-left: 0;

    .nap20-pricing-table__cell-inner {
        text-align: left;
        justify-content: start;
    }
}

/* second and third column */
.nap20-pricing-table> :nth-child(4n),
.nap20-pricing-table> :nth-child(4n-2) {
    background-color: var(--color-soft-100);

    /* .nap20-pricing-table__cell-inner svg {
  color: var(--color-text-light);
} */
}

.nap20-pricing-table-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    font-size: 18px;
    font-weight: 400;
    overflow-x: auto;
    padding: 32px;
    background-color: var(--color-bg-default);
    max-width: var(--nap20-cols-8);
    margin-inline: auto;
}

.nap20-pricing-table-small>* {
    /* padding-inline: 32px; */
    width: 100%;
    min-width: 250px;
}

/* first column */
.nap20-pricing-table-small> :nth-child(2n-1) {
    padding-left: 0;

    .nap20-pricing-table__cell-inner {
        text-align: left;
        justify-content: start;
    }
}

/*# Footer #*/
.nap20-footer__logo {
    display: block;
    width: 185px;
    height: 42px;
}

.nap20-footer__logo>* {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nap20-footer-list {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.nap20-footer__text {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 28px;
}

.nap20-footer-link {
    padding-block: 4px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.nap20-footer-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}


.nap20-footer {
    --flow: 48px;
}

.nap20-footer__inner {
    display: flex;
    flex-direction: column;
    --spacing: 24px;

    .nap20-footer__block-a {
        grid-area: a;
    }

    .nap20-footer__block-b1 {
        grid-area: b1;
        margin-top: var(--spacing);
    }

    .nap20-footer__block-b2 {
        grid-area: b2;
    }

    .nap20-footer__block-c {
        grid-area: c;
        margin-top: var(--spacing);
    }

    .nap20-footer__block-d1 {
        grid-area: d1;
        margin-top: var(--spacing);
    }

    .nap20-footer__block-d2 {
        grid-area: d2;
    }
}

.nap20-footer-nav {
    color: white;
    background-color: var(--color-neutral-700);
}

.nap20-footer-nav__inner {
    display: flex;
    flex-direction: column;
    gap: var(--flow);
}

@media (min-width: 768px) {
    .nap20-footer-nav__inner {
        flex-direction: row;
    }

    .nap20-footer__inner {
        display: grid;
        grid-template-areas:
            'a b1'
            'c b2'
            'd1 d2';
        grid-template-columns: 1fr 1fr;

        .nap20-footer__block-b1 {
            margin-top: 0;
        }

        .nap20-footer__block-c {
            margin-top: 0;
            align-self: end;
        }

        .nap20-footer__block-d2 {
            margin-top: var(--spacing);
        }
    }
}



@media (min-width: 1200px) {
    .nap20-footer__inner {
        grid-template-areas:
            'a b1 b2'
            'c d1 d2';
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.nap20-footer-copy {
    background-color: var(--color-secondary);
    align-items: end;
}

/*# Details #*/
.nap20-details {
    background: inherit;
    overflow: hidden;
}

.nap20-details::details-content {
    block-size: 0;
    transition: block-size 0.5s, content-visibility 0.5s;
    transition-behavior: allow-discrete;
}

.nap20-details[open]::details-content {
    block-size: auto;
}

.nap20-details>summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: var(--color-soft-200);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: .1em;
    cursor: pointer;
}

.nap20-details>summary:hover {
    color: var(--color-secondary);
}

.nap20-details>summary::after {
    content: '';
    width: 24px;
    height: 24px;
    fill: red;
    background-image: url('data:image/svg+xml;utf8,<svg width="26" height="15" viewBox="0 0 26 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.5782 14.3139L0.264214 2.99988L3.09221 0.171875L12.9922 10.0719L22.8922 0.171875L25.7202 2.99988L14.4062 14.3139C14.0312 14.6888 13.5225 14.8994 12.9922 14.8994C12.4619 14.8994 11.9533 14.6888 11.5782 14.3139Z" fill="black"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: transform 0.5s ease-out;
}

.nap20-details>summary:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg width="26" height="15" viewBox="0 0 26 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.5782 14.3139L0.264214 2.99988L3.09221 0.171875L12.9922 10.0719L22.8922 0.171875L25.7202 2.99988L14.4062 14.3139C14.0312 14.6888 13.5225 14.8994 12.9922 14.8994C12.4619 14.8994 11.9533 14.6888 11.5782 14.3139Z" fill="%2364CB9C"/></svg>');
}

.nap20-details[open]>summary::after {
    transform: rotate(180deg);
}

.nap20-details__content {
    padding: 20px 25px;
}