body {
    display: flex;
    flex-direction: column;
    font-family: "Red Hat Display", sans-serif;
    line-height: 1.4;
    min-height: 100vh;
    background: #fff;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* paragraph: 16 dydžio, line height 24
H2: 24/ 36
H3: 20/26
H4: 18/24
tarpai tar paragrafų / paragraph spacing - 6 */

.heading__1 {
    color: #000;
    font-family: "Red Hat Display", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.heading__2 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.heading__3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.heading__4 {
    font-size: 18px;
    line-height: 24px;
}

h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
    font: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button {
    background: none;
    border: none;
    color: black;
    text-shadow: none;
    box-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    min-height: 0;
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
}

.logo {
    padding: 4px 0;
}

.site-header {
    display: flex;
    width: 100%;
    max-width: 1159px;
    margin: 0 auto;
    padding: 15px 24px 0;

    @media (max-width: 768px) {
        padding: 16px 16px 0 ;
    }

    @media (min-width: 400px) {
        align-items: center;
        justify-content: space-between;
    }

    @media (max-width: 399px) {
        gap: 5px;
        flex-direction: column;
    }

    .site-header__disclaimer {
        color: #7C7C7C;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;

        &:hover {
            text-decoration: underline;
        }
    }
}

.main {
    .main__header {
        width: 100%;
        max-width: 1159px;
        margin: 30px auto;
        padding: 0 24px;
        display: flex;
        gap: 30px;

        @media (max-width: 991px) {
            flex-direction: column;
            gap: 15px;
        }

        @media (max-width: 576px) {
            margin: 15px auto;
            padding: 0 16px;
        }

        .main__header-item {
            flex: 1;

            &:first-child {
                @media (min-width: 992px) {
                    margin: 30px 30px 0;
                }
            }
        }

        .main__header-date-wrp {
            display: flex;
            gap: 7px;

            @media (max-width: 576px) {
                align-items: end;
            }
        }

        .main__header-date {
            color: #7C7C7C;
            font-size: 14px;
            font-weight: 400;
            line-height: 24px;

            @media (max-width: 576px) {
                font-size: 12px;
                line-height: 1;
            }
        }

        .main__header-icon {
            @media (max-width: 576px) {
                width: 12px;
            }
        }

        .main__header-desc {
            color: #2B2B2B;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;

            @media (max-width: 576px) {
                font-size: 14px;
            }
        }

        .main__header-title {
            color: #000;
            font-size: 36px;
            margin: 11px 0 15px;
            font-weight: 700;
            line-height: 24px;

            @media (min-width: 991px) and (max-width: 1040px) {
                line-height: 36px;
            }

            @media (max-width: 768px) {
                font-size: 24px;
                line-height: 1;
            }
        }

        .main__header-list {
            color: #000;
            font-size: 16px;
            line-height: 24px;
            padding-left: 27px;
            font-weight: 700;
            display: flex;
            flex-direction: row;
            gap: 16px;
            margin-left: -15px;
            justify-content: space-between;

            @media (max-width: 576px) {
                font-size: 14px;
                flex-direction: column;
                gap: 10px;
            }

            .main__header-list-li {
                &::marker {
                    color: #000;
                    font-size: 12px;
                }
            }
        }
    }
}

.main__inner-page {
    width: 100%;
    max-width: 1099px;
    margin: 0 auto;
    padding: 60px 24px;

    @media (max-width: 991px) {
        padding: 30px 24px;
    }

    p {
        margin-top: 8px;
    }

    .main__inner-page-title {
        margin-bottom: 15px;
    }
    
    .main__inner-page-link {
        text-decoration: underline;
    }
    
    .main__inner-page-heading {
        margin-top: 14px;
    }
    
    .main__inner-page-welcome {
        color: #3e4348;
        margin-top: 16px;
    }
    
    .main__inner-page-list {
        margin: 6px 0 0;
        line-height: 24px;
        padding-left: 24px;
        
        li {
            &::marker {
                font-size: 12px;
            }
        }
    }
}

.mini-providers {
    @media (min-width: 991px) {
        min-width: 430px;
    }

    @media (min-width: 577px) {
        margin-top: 13px;
    }
}

.mini-provider {
    display: grid;
    background-color: #F2F2F2;
    padding: 12px 41px 14px;
    column-gap: 43px;
    grid-template-columns: 120px auto;
    grid-template-rows: auto;
    grid-template-areas: 
        "mini-logo mini-score-wrp"
        "mini-logo mini-desc"
        "mini-logo mini-cta";
    font-size: 14px;
    border-radius: 15px;
    max-width: 540px;
    
    @media (max-width: 576px) {
        grid-template-areas: 
        "mini-logo mini-score-wrp"
        "mini-desc mini-desc"
        "mini-cta mini-cta";
        grid-template-columns: 88px auto;
        gap: 0;
        padding: 12px;
        font-size: 12px;
    }

    &:not(:last-child) {
        margin-bottom: 15px;
    }

    .mini-provider__logo {
        display: flex;
        align-items: center;
        justify-self: center;
        grid-area: mini-logo;
    }

    .mini-provider__score-wrp {
        display: flex;
        gap: 8px;
        grid-area: mini-score-wrp;

        @media (max-width: 576px) {
            width: fit-content;
            flex-direction: column-reverse;
            align-items: center;
            gap: 0;
            margin-left: 16px;
        }
    }

    .mini-provider__score {
        color: #2B2B2B;
        font-weight: 700;
        line-height: 24px;

        .mini-provider__score-span {
            font-weight: 400;
        }
    }

    .mini-provider__description {
        margin-top: 3px;
        color: #000;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: 1px;
        grid-area: mini-desc;

        @media (max-width: 576px) {
            margin-top: 5px;
        }
    }

    .mini-provider__cta {
        display: block;
        height: 17px;
        color: #2B2B2B;
        margin-top: 7px;
        font-weight: 500;
        line-height: 13px; /* 100% */
        letter-spacing: 1px;
        text-decoration-line: underline;
        grid-area: mini-cta;
        text-align: right;

        @media (max-width: 991px) {
            margin-top: 10px;
        }

        @media (max-width: 576px) {
            margin-right: 5px;
        }
    }

    .mini-provider__stars {
        display: flex;
        gap: 3px;
        align-items: center;
    }
}

.providers {
    width: 100%;
    max-width: 1159px;
    margin: 0 auto;
    padding: 0 24px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.provider {
    display: grid;
    grid-template-columns: 241px auto 256px;
    grid-template-rows: auto;
    grid-template-areas: "logo content cta-area";
    border-radius: 30px;
    border: 1px solid #B0B0B0;
    background: #FFF;
    align-items: center;

    &:not(:last-child) {
        margin-bottom: 30px;

        @media (max-width: 767px) {
            margin-bottom: 16px;
        }
    }

    @media (max-width: 1199px) {
        grid-template-columns: auto auto auto 256px;
        column-gap: 32px;
        grid-template-areas:
            "content-top content-top cta-area cta-area"
            "logo logo cta-area cta-area"
            "title title cta-area cta-area"
            "desc desc cta-area cta-area"
            "features features cta-area cta-area";
        padding-left: 32px;
        align-items: stretch;
    }

    @media (max-width: 991px) {
        grid-template-columns: auto auto auto 180px;
    }

    @media (max-width: 767px) {
        grid-template-columns: auto;
        grid-template-areas:
        "content-top"
        "logo"
        "title"
        "desc"
        "features"
        "cta-area";
        padding: 0 16px;
    }

    .provider__logo {
        grid-area: logo;

        @media (min-width: 1200px) {
            display: flex;
            align-items: center;
            justify-self: center;
            padding-left: 21px;
        }

        @media (max-width: 576px) {
            max-width: 120px;
            margin: 8px 0;
        }
    }

    .provider__content {
        display: contents;

        @media (min-width: 1200px) {
            display: flex;
            grid-area: content;
            flex-direction: column;
            margin-left: 39px;
            margin-right: 36px;
        }
    }

    .provider__content-top {
        grid-area: content-top;
        display: flex;
        gap: 5px;

        @media (max-width: 1199px) {
            height: fit-content;
            margin-top: 16px;
        }
    }

    .provider__cta-area {
        grid-area: cta-area;
        display: flex;
        border-radius: 0px 30px 30px 0px;
        background: #F2F2F2;
        align-items: center;

        @media (min-width: 1200px) {
            padding: 59px 0 58px;
        }

        @media (max-width: 1199px) {
            justify-content: center;
        }

        @media (min-width: 768px) {
            flex-direction: column;
        }

        @media (max-width: 767px) {
            border-radius: 0 0 30px 30px;
            margin: 0 -16px;
            gap: 32px;
            padding: 8px 0;
        }

        @media (max-width: 576px) {
            gap: 16px;
        }
    }

    .provider__index {
        grid-area: index;
        width: 38px;
        text-align: center;
        background: #000;
        color: #FFF;
        font-size: 12px;
        font-weight: 700;
        line-height: 24px; /* 200% */
    }

    .provider__label {
        grid-area: label;
        max-width: max-content;
        background: #7C7C7C;
        color: #FFF;
        font-size: 12px;
        font-weight: 700;
        line-height: 24px; /* 200% */
        padding: 1px 14px 0 13px;
    }

    .provider__title {
        grid-area: title;
        color: #2B2B2B;
        font-size: 24px;
        font-weight: 700;
        line-height: 24px;

        @media (min-width: 1200px) {
            margin-top: 15px;
        }
    }

    .provider__description {
        grid-area: desc;
        margin-top: 9px;
        color: #2B2B2B;
        font-size: 14px;
        font-weight: 700;
        line-height: 24px; /* 171.429% */
    }

    .provider__features {
        grid-area: features;
        display: flex;
        margin-top: 15px;
        gap: 24px;
        color: #000;
        font-size: 14px;
        font-weight: 700;
        line-height: 24px;

        @media (max-width: 1199px) {
            margin-bottom: 16px;
            gap: 12px;
            row-gap: normal;
            flex-wrap: wrap;
        }

        @media (min-width: 1200px) {
            margin-left: 8px;
        }

        .provider__features-feature {
            position: relative;
            padding-left: 12px;

            &::before {
                content: "";
                position: absolute;
                transform: translateY(-50%);
                top: 50%;
                border-radius: 50%;
                left: 0;
                width: 3px;
                height: 3px;
                background: #000;
            }
        }
    }

    .provider__score {
        color: #2B2B2B;
        font-size: 48px;
        font-weight: 700;
        line-height: 24px;

        @media (max-width: 767px) {
            line-height: 1;
            font-size: 36px;
        }

        @media (max-width: 576px) {
            font-size: 28px;
        }
    }

    .provider__score-span {
        color: #7C7C7C;
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;

        @media (max-width: 576px) {
            font-size: 18px;
        }
    }

    .provider__rating {
        display: flex;
        color: #2B2B2B;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px; /* 200% */
    }

    .provider__cta {
        position: relative;
        width: fit-content;
        background: #FDCC0D;
        color: #000;
        text-decoration: underline;
        padding: 4px 21px;
        font-size: 14px;
        font-weight: 700;
        line-height: 24px;

        @media (min-width: 768px) {
            margin-top: 10px;
        }

        &:hover {
            text-decoration: underline;
        }

        &:before {
            content: "";
            display: block;
            position: absolute;
            width: 11px;
            height: 11px;
            border-radius: 11px;
            background: #F2F2F2;
            top: 10px;
            left: -5px;
        }

        &:after {
            content: "";
            display: block;
            position: absolute;
            width: 11px;
            height: 11px;
            border-radius: 11px;
            background: #F2F2F2;
            top: 10px;
            right: -5px;
        }
    }

    .provider__url {
        color: #00E;
        text-align: center;
        margin-top: 10px;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-decoration-line: underline;
        text-underline-offset: 4px;

        @media (max-width: 576px) {
            font-size: 12px;
            line-height: 1;
        }
    }

    .provider__stars {
        display: flex;
        margin-top: 18px;
        gap: 3px;

        @media (max-width: 767px) {
            margin-top: 5px;
        }
    }

    .provider__cta-area-content, .provider__cta-area-action {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.full-width-block {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 60px;
    background: #F2F2F2;

    @media (max-width: 767px) {
        margin-top: 30px;
    }

    .full-width-block__img {
        align-self: end;

        @media (max-width: 991px) {
            display: none;
        }
    }

    .full-width-block__content {
        max-width: 560px;
        margin-top: 36px;
        flex: 1 1 auto;
        padding-right: 24px;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;

        p {
            color: #000;
            font-size: 14px;
            font-weight: 400;
            line-height: 18px;
            margin: 14px 0;
        }

        @media (max-width: 991px) {
            padding: 16px 24px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            padding-right: 16px;
            padding-left: 16px;
        }

        .full-width-block__content-title {
            max-width: 480px;
            color: #000;
            font-size: 36px;
            font-weight: 700;
            line-height: 42px; /* 116.667% */
        }

        .full-width-block__content-text {
            text-align: justify;
        }
    }
}

.faq-block {
    width: 100%;
    max-width: 1159px;
    padding: 0 24px;
    margin: 60px auto 0;

    @media (max-width: 767px) {
        margin: 30px auto 0;
    }

    @media (max-width: 576px) {
        padding: 0 16px;
    }

    .faq-block__title {
        color: #000;
        margin: 0 0 32px 0;
        padding-left: 21px;
        font-size: 36px;
        font-weight: 700;
        line-height: 42px;

        @media (max-width: 576px) {
            margin: 0 0 16px 0;
            padding-left: 0;
            font-size: 28px;
            line-height: 36px;
        }
    }
}

.faq {
    width: 100%;
    margin-bottom: 60px;

    @media (max-width: 767px) {
        margin-bottom: 30px;
    }

    .faq__item {
        border-radius: 30px;
        padding: 10px 21px 9px;
        border: 1px solid #B0B0B0;

        &:not(:last-child) {
            margin-bottom: 15px;
        }

        &.active {
            padding-bottom: 33px;

            @media (max-width: 576px) {
                padding-bottom: 16px;
            }

            .faq__answer {
                display: block;
            }

            .faq__icon {
                transform: rotate(90deg);
            }
        }
    }

    .faq__icon {
        .faq__icon-wrp {
            display: flex;
            align-self: center;
        }
    }

    .faq__question {
        display: flex;
        gap: 10px;
        width: 100%;
        text-align: left;
        color: #000;
        font-size: 16px;
        font-weight: 700;
        line-height: 42px;
        cursor: pointer;

        @media (max-width: 576px) {
            white-space: normal;
            line-height: 1.4;
        }
    }

    .faq__icon-wrp {
        @media (max-width: 576px) {
            display: flex;
            align-self: center;
        }
    }

    .faq__answer {
        display: none;
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;

        p {
            &:not(:last-child) {
                margin-bottom: 12px;
            }

            @media (max-width: 576px) {
                margin-top: 12px;
            }
        }

        @media (max-width: 576px) {
            font-size: 14px;
        }
    }
}

.footer {
    background: #F2F2F2;
    padding: 26px 0 16px;
    margin-top: auto;

    .footer__wrp {
        width: 100%;
        max-width: 1159px;
        padding: 0 24px;
        margin: 0 auto;
    }

    .footer__content {
        display: flex;
        align-items: center;
        max-width: 541px;
        height: 44px;
        margin-top: 12px;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }

    .footer__security {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        color: #7C7C7C;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;

        @media (max-width: 576px) {
            flex-direction: column;
            gap: 8px;
        }

        .footer__security-menu-item {
            color: #7C7C7C;

            &:hover {
                text-decoration: underline;
            }

            &:first-child {
                &::after {
                    content: "|";
                    margin-left: 5px;
                }
            }
        }
    }
}

.image-fluid {
    display: block;
    height: auto;
    max-width: 100%;
}

.footer-banner {
    background: #FDCC0D;
    width: 100%;
    position: sticky;
    bottom: 0;
    box-shadow: 0 -5px 15px 0 rgba(43, 43, 43, 0.25);
    transition: 0.2s all ease-out;
    display: none;

    &.footer-banner_active {
        display: block;
    }

    &.footer-banner_small {
        box-shadow: none;

        @media (max-width: 768px) {
            box-shadow: 0 -5px 15px 0 rgba(43, 43, 43, 0.25);
        }

        .footer-banner-arrow {
            rotate: 180deg;
        }

        .footer-banner-text {
            display: none;
        }

        .footer-banner-logo {
            height: 50px;
            width: auto;

            @media (max-width: 768px) {
                height: 40px;
            }
        }

        .footer-banner-title {
            font-size: 20px;
            align-self: center;

            @media (max-width: 768px) {
                display: none;
            }
        }

        .footer-banner-discount{
            font-size: 40px;

            @media (max-width: 768px) {
                font-size: 32px;
            }
        }

        .footer-banner-button {
            font-size: 14px;
            padding: 5px 46px;

            @media (max-width: 768px) {
                font-size: 10px;
                padding: 5px 10px;
                justify-self: center;
            }
        }

        .footer-banner-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0;
            gap: 10px;

            @media (max-width: 768px) {
                padding: 10px;
            }
        }
    }

    .footer-banner-wrapper {
        width: 100%;
        max-width: 1159px;
        margin: 0 auto;
        padding: 24px;
        display: grid;
        align-items: center;
        grid-template:
            'logo discount title button'
            'logo discount text button';
        gap: 10px;
        position: relative;

        @media (max-width: 768px) {
            padding: 16px;
            grid-template:
            'logo logo'
            'title title'
            'text text'
            'discount button';
            gap: 5px;
        }
    }

    .footer-banner-logo {
        grid-area: logo;
        filter: brightness(0%);
        transition: 0.2s all ease-out;

        @media (max-width: 768px) {
            height: 40px;
            width: auto;
            justify-self: center;
        }
    }

    .footer-banner-title {
        grid-area: title;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        align-self: flex-end;
        transition: 0.2s all ease-out;

        @media (max-width: 768px) {
            font-size: 20px;
            justify-self: center;
        }
    }

    .footer-banner-text {
        grid-area: text;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        align-self: flex-start;
        transition: 0.2s all ease-out;

        @media (max-width: 768px) {
            justify-self: center;
        }
    }

    .footer-banner-button {
        grid-area: button;
        background: #2B2B2B;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        padding: 10px 46px;
        transition: all 0.2s ease-out;
        text-align: center;

        &:hover {
            cursor: pointer;
            background: #0d0d0d;
        }

        @media (max-width: 768px) {
            font-size: 10px;
            padding: 5px 10px;
            justify-self: center;
        }
    }

    .footer-banner-discount {
        grid-area: discount;
        color: #2B2B2B;
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: 150%;
        transition: 0.2s all ease;

        @media (max-width: 768px) {
            font-size: 32px;
            justify-self: center;
        }
    }

    .footer-banner-arrow {
        position: absolute;
        right: 0;
        top: -13px;
        height: 25px;
        width: 25px;
    }
}
