/* Reset */

html,body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
}

ul, ol, li {
    list-style-position: outside;
    margin: 0;
    padding: 0;
    display: list-item;
}

html{
    scroll-behavior: smooth;
}

/* Home page */

:root {
    --brand-body: #F4F4F4;
    --brand-accent: #000000;
    --brand-accent-color: #98CD00;
}

body {
    font-family: 'Fixel Display';
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    overflow-x: hidden;
    color: #1F1F1F;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

header {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 28px 0;
}

header .site-logo {
    max-width: 233px;
    max-height: 80px;
}

.hero-section {
    position: relative;
    padding: 125px 0 135px;
    border-radius: 0 0 124px 124px;
    background-color: var(--brand-body);
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.hero-section .hero-subtitle {
    font-family: 'Fixel Display';
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-section .hero-title {
    font-family: 'Fixel Display';
    font-size: 56px;
    font-weight: 800;
    line-height: 67.2px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--brand-accent);
    padding: 4px 20px;
    display: inline-block;
    border-radius: 16px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
}

.hero-section .hero-description {
    margin: 22px auto 0;
    max-width: 617px;
}

.hero-section .hero-notice {
    margin-top: 42px;
    line-height: 20px;
    color: var(--brand-accent);
    text-decoration: underline;
    cursor: pointer;
}

.hero-section .hero-notice.listing-page {
    width: 30px;
    height: 30px;
    -webkit-mask: url(/wp-content/themes/top-10-theme/assets/img/info.svg) no-repeat 50% 50%;
    mask: url(/wp-content/themes/top-10-theme/assets/img/info.svg) no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--brand-accent);
    margin-top: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

@-webkit-keyframes decor-left {
    0% {
        top: 30%;
    }
    50% {
        top: 28%;
    }
    100% {
        top: 30%;
    }
}

@keyframes decor-left {
    0% {
        top: 30%;
    }
    50% {
        top: 28%;
    }
    100% {
        top: 30%;
    }
}

@-webkit-keyframes decor-right {
    0% {
        top: 30%;
    }
    50% {
        top: 31%;
    }
    100% {
        top: 30%;
    }
}

@keyframes decor-right {
    0% {
        top: 30%;
    }
    50% {
        top: 31%;
    }
    100% {
        top: 30%;
    }
}


.hero-section .decor-left {
    position: absolute;
    left: 0;
    top: 30%;
    -webkit-animation: decor-left 2.5s infinite;
    animation: decor-left 2.5s infinite;
    max-width: 20vw;
}

.hero-section .decor-right {
    position: absolute;
    right: 0;
    top: 30%;
    -webkit-animation: decor-right 2.5s infinite;
    animation: decor-right 2.5s infinite;
    max-width: 30vw;
}

.listing-section {
    margin: -120px 0 140px;
}

.listing-wrap {
    margin-bottom: 24px;
    background-color: var(--brand-body);
    border-radius: 16px;
    position: relative;
}

.listing-wrap .listing-label {
    position: absolute;
    top: -14px;
    height: 28px;
    left: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.listing-wrap .listing-label span {
    position: absolute;
    left: 0;
    padding: 0 6px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}

.listing-wrap .listing-label svg path {
    fill: var(--brand-accent);
}

.listing-wrap .listing-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 32px;
    background-color: #fff;
    border: 2px solid var(--brand-body);
    border-radius: 16px;
}

.listing-wrap .listing-info,
.listing-wrap .listing-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.listing-item .listing-number {
    background-color: var(--brand-body);
    color: var(--brand-accent);
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    padding: 0 19.5px;
    border-radius: 6px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
}

.listing-item .listing-brand img {
    display: block;
    width: 224px;
    border-radius: 6px;
	height: 72px;
    object-fit: cover;
}

.listing-item .listing-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29.71px;
    margin: 0 24px;
}

.listing-item .listing-title a {
    color: #1F1F1F;
}

.listing-item .listing-rating {
    border-radius: 10px;
    background-color: var(--brand-body);
    color: var(--brand-accent);
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 56px;
    padding: 7.5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.5px;
    margin-right: -15px;
    position: relative;
}

.listing-item .listing-rating span {
    font-size: 12px;
    line-height: 14.7px;
    margin-bottom: -3px;
    margin-left: 2px;
}

.listing-item .listing-stars {
    border-radius: 8px;
    border: 1px solid var(--brand-body);
    padding: 7px 16px 7px 30px;
    margin-right: 32px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
}

.listing-item .listing-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    position: relative;
    background-color: var(--brand-accent-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 19.81px;
    text-align: left;
    color: #fff;
    text-decoration: unset;
    padding: 18px 26.5px;
    border-radius: 12px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
}

.listing-item .listing-button a span {
    position: relative;
    z-index: 2;
}

.listing-item .listing-button a .arrow {
    background-image: url("/wp-content/themes/top-10-theme/assets/img/arrow.svg");
    background-position: left center;
    background-repeat: no-repeat;
    width: 20px;
    height: 16px;
}

.listing-item .listing-button a:hover {
    background-color: var(--brand-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.listing-item .listing-button a:hover .arrow {
    background-image: url("/wp-content/themes/top-10-theme/assets/img/arrow-active.svg");
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.listing-wrap .listing-description {
    padding: 9px 32px;
    font-size: 12px;
    line-height: 16.8px;
}

.listing-item .listing-mobile,
.listing-wrap .listing-description .show-more {
    display: none;
}

.subscription-section {
    overflow-x: clip;
}

.subscription-section .subscription-wrap {
    padding: 2px;
    background: -o-linear-gradient(273.65deg, var(--brand-accent) 2.83%, rgba(255, 255, 255, 1) 96.85%);
    background: linear-gradient(176.35deg, var(--brand-accent) 2.83%, rgba(255, 255, 255, 1) 96.85%);
    border-radius: 80px;
    position: relative;
}

.subscription-section .subscription-wrap:after {
    position: absolute;
    content: '';
    display: block;
    width: 110%;
    height: 150px;
    bottom: -70px;
    left: -5%;
    background-color: #fff;
    -webkit-filter: blur(30px);
    filter: blur(30px);
}

.subscription-section .subscription-inner {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--brand-body)), color-stop(90%, rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(top, var(--brand-body) 0%, rgba(255, 255, 255, 1) 90%);
    background: linear-gradient(180deg, var(--brand-body) 0%, rgba(255, 255, 255, 1) 90%);
    padding: 48px 0 84px;
    text-align: center;
    border-radius: 80px;
}

.subscription-section img {
    max-width: 100%;
}

.subscription-section .subscription-title {
    font-family: 'Fixel Display';
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: #000;
    text-transform: uppercase;
    margin: 20px 0;
    -webkit-animation: color-change 4s linear infinite;
    animation: color-change 4s linear infinite;
    background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, var(--brand-accent)));
    background: -o-linear-gradient(left, #000, #000 50%, var(--brand-accent) 50%);
    background: linear-gradient(to right, #000, #000 50%, var(--brand-accent) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}


@-webkit-keyframes color-change {
    0%{
        background-position: 200%;
    }

    50%{
        background-position: 100% center;
    }

    100%{
        background-position: 0 0;
    }
}


@keyframes color-change {
    0%{
        background-position: 200%;
    }

    50%{
        background-position: 100% center;
    }

    100%{
        background-position: 0 0;
    }
}

.subscription-section .subscription-form {
    max-width: 315px;
    position: relative;
    margin: 0 auto;
}

.subscription-section input[type="email"] {
    background: #fff;
    padding: 7px 90px 7px 16px;
    border: 1px solid var(--brand-body);
    border-radius: 16px;
    font-family: 'Fixel Display';
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: #5D5D5D;
    width: 100%;
    margin-bottom: 12px;
}

.subscription-section .subscription-button {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 1;
    /*     height: calc(100% - 8px); */
    cursor: pointer;
}

.subscription-section input[type="submit"] {
    height: 40px;
    border-radius: 42px;
    width: 80px;
    border: 0;
    outline: 0;
    background-color: var(--brand-body);
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: transparent;
}

.subscription-section .subscription-button:after {
    position: absolute;
    content:'';
    -webkit-mask: url(/wp-content/themes/top-10-theme/assets/img/submit.svg) no-repeat 50% 50%;
    mask: url(/wp-content/themes/top-10-theme/assets/img/submit.svg) no-repeat 50% 50%;
    background-color: var(--brand-accent);
    width: 30px;
    height: 12px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    top: 14px;
    right: 12px;
    pointer-events: none;
}

.subscription-section .subscription-button:hover input[type="submit"] {
    background-color: var(--brand-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.subscription-section .subscription-button:hover:after {
    right: 25px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: #fff;
}

.subscription-section .wpcf7 form .wpcf7-response-output {
    margin-top: 10px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.2;
}

.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item label input {
    width: 15px;
}

.subscription-section .decor-left {
    position: absolute;
    left: -17%;
    top: -10%;
    max-width: 40vw;
}

.subscription-section .decor-right {
    position: absolute;
    right: -15%;
    top: 20%;
    max-width: 30vw;
}

footer {
    margin-top: 130px;
    padding: 80px 0;
    background-color: var(--brand-body);
    border-radius: 88px 88px 0 0;
}

footer .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .footer-info {
    width: 50%;
}

footer .footer-logo {
    display: block;
    margin-bottom: 24px;
}

footer .footer-logo img {
    max-width: 272px;
    max-height: 60px;
}

footer .footer-menu a {
    display: block;
    color: #000;
    margin: 12px 0;
    font-size: 14px;
    line-height: 19.6px;
}

footer .footer-notice {
    line-height: 20px;
    color: var(--brand-accent);
    text-decoration: underline;
    margin-top: 10px;
    cursor: pointer;
}

footer .footer-bottom {
    border-top: 1px solid #fff;
    margin-top: 36px;
    padding-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .footer-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .footer-logos img {
    max-width: 150px;
	max-height: 60px;
}

footer .footer-logos img[src*="18.svg"] {
	min-height: 30px;
}

footer .footer-copyright {
    font-size: 14px;
    line-height: 19.6px;
}

.cky-consent-container .cky-notice-group {
    justify-content: center;
}

.cky-consent-container .cky-notice-des {
    color: #1F1F1F!important;
}

.cky-consent-container .cky-notice-des a {
    color: var(--brand-accent);
    text-decoration: underline;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn.cky-btn-customize,
.cky-modal .cky-btn-preferences,
.cky-modal .cky-btn-reject,
.cky-consent-container .cky-notice-btn-wrapper .cky-btn-reject {
    color: var(--brand-accent)!important;
    border-color: var(--brand-accent)!important;
}

.cky-consent-container .cky-notice-btn-wrapper .cky-btn.cky-btn-accept,
.cky-modal .cky-btn-accept {
    background-color: var(--brand-accent)!important;
    border-color: var(--brand-accent)!important;
}

.cky-btn-revisit-wrapper {
    display: none!important;
}

/* Popup */

body.popup-active {
    overflow: hidden;
}

.overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 20vh;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 40px 40px 48px;
    background-color: #fff;
    text-align: center;
    border-radius: 24px;
}

.popup.popup-contact {
    background-color: var(--brand-body);
    padding-bottom: 20px;
    max-width: 400px;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
}

.popup-close svg rect {
    fill: var(--brand-accent);
}

.popup.popup-contact .popup-close svg rect {
    fill: var(--brand-accent-color);
}

.popup-title {
    font-family: 'Fixel Display';
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-bottom: 8px;
}

.popup.popup-contact input,
.popup.popup-contact textarea {
    width: 100%;
    padding: 4px 16px;
    border: 1px solid var(--brand-body);
    outline: 0;
    border-radius: 16px;
    background-color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 32px;
    color: #5D5D5D;
    font-family: 'Fixel Display';
}

.popup.popup-contact input[type="submit"] {
    background-color: var(--brand-accent-color);
    max-width: 112px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 17.15px;
    padding: 9.5px;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
}

.popup.popup-contact textarea {
    max-height: 80px;
}

.wpcf7-spinner {
    display: block;
    margin: 0 auto;
}

.wpcf7-not-valid-tip {
    margin: -10px 0 5px;
    font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0;
    border: unset;
    font-size: 14px;
    margin-top: -20px;
}

/* Default pages */

.default-content {
    padding: 130px 0 0;
    font-size: 14px;
    line-height: 19.6px;
}

.default-content .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.default-content aside {
    width: 25%;
    height: 100%;
    position: sticky;
    top: 40px;
}

.default-content .main-content {
    width: 65%;
}

.default-content h1 {
    font-family: 'Fixel Display';
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
}

.default-content h2,
.default-content h3 {
    font-family: 'Fixel Display';
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 24px;
}

.default-content b,
.default-content strong {
    font-weight: 600;
}

.default-content p,
.default-content h2,
.default-content h3,
.default-content h4,
.default-content ul,
.default-content ol {
    margin-bottom: 16px;
}

.default-content ul,
.default-content ol {
    list-style-type: none;
    padding-left: 24px;
}

.default-content li {
    margin-bottom: 8px;
    position: relative;
}

.default-content li:before {
    content: '';
    top: 6px;
    left: -24px;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    -webkit-mask: url('/wp-content/themes/top-10-theme/assets/img/marker.svg') no-repeat 50% 50%;
    mask: url('/wp-content/themes/top-10-theme/assets/img/marker.svg') no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: var(--brand-accent);
}

.default-content a {
    color: var(--brand-accent);
}

.default-content .back-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    text-decoration: unset;
}

.default-content .back-link svg path {
    fill: var(--brand-accent);
}

.default-content .table-content {
    margin-top: 20px;
}

.default-content .table-content a {
    text-decoration: unset;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    color: #5D5D5D;
    padding: 4px 0 4px 16px;
    display: block;
    border-left: 1px solid var(--brand-body);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.default-content .table-content a.active {
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media screen and (max-width: 1200px) {
    .listing-wrap .listing-item {
        padding: 24px 15px;
    }

    .listing-item .listing-brand img {
        max-width: 200px;
		height: 65px;
    }
}

@media screen and (max-width: 991px) {
    .listing-info .listing-title,
    .listing-cta .listing-button {
        display: none;
    }

    .listing-item .listing-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .listing-wrap .listing-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }

    .popup {
        width: 80%;
    }

    .default-content aside {
        width: 33%;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.2;
    }

    header {
        padding: 15px 0;
    }

    header .site-logo {
        max-width: 180px;
        max-height: 30px;
    }

    footer .footer-logo img {
        max-width: 180px;
        max-height: 40px;
    }

    .hero-section {
        padding: 70px 0 20px;
        border-radius: 0 0 36px 36px;
    }

    .hero-section .hero-subtitle {
        font-size: 30px;
        line-height: 1.4;
    }

    .hero-section .hero-title {
        font-size: 34px;
        line-height: 1.2;
        border-radius: 6px;
        padding: 4px 8px;
    }

    .hero-section .hero-description {
        display: none;
    }

    .hero-section .hero-notice {
        margin-top: 12px;
    }

    .hero-section .hero-notice.listing-page {
        top: 15px;
        width: 23px;
        height: 23px;
    }

    .listing-section {
        margin: -10px 0 65px;
    }

    .listing-wrap .listing-label {
        left: -17px;
    }

    .listing-wrap .listing-label span {
        padding: 0 5px;
        font-size: 12px;
        line-height: 14.4px;
        gap: 5px
    }

    .listing-wrap .listing-label span img {
        width: 14px;
    }

    .listing-wrap .listing-label svg {
        width: 100%;
        height: 28px;
    }

    .listing-wrap .listing-item {
        padding: 24px 12px;
        gap: 5px;
    }

    .listing-item .listing-number {
        font-size: 16px;
        line-height: 19.2px;
        padding: 0;
        margin-right: 4px;
        width: 24px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 42px;
    }

    .listing-item .listing-brand img {
        max-width: 130px;
		height: 40px;
    }

    .listing-item .listing-rating {
        font-size: 17px;
        line-height: 19.6px;
        min-width: 44px;
    }

    .listing-item .listing-rating span {
        font-size: 10px;
        line-height: 9.8px;
    }

    .listing-item .listing-stars {
        gap: 2px;
        margin-right: 0;
        padding: 7px 5px 7px 20px;
    }

    .listing-item .listing-stars img {
        width: 14px;
    }

    .listing-item .listing-mobile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        margin-top: 10px;
    }

    .listing-item .listing-title {
        margin: 0;
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .listing-item .listing-button  {
        width: 100%;
    }

    .listing-item .listing-button a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 14px;
        line-height: 17.33px;
        padding: 9.5px;
        border-radius: 8px;
    }

    .listing-wrap .listing-description {
        padding: 4px 12px;
        font-size: 11px;
        line-height: 14px;
        max-height: 34px;
        overflow: hidden;
        position: relative;
    }

    .listing-wrap .listing-description.active {
        max-height: 100%;
    }

    .listing-wrap .listing-description .show-more {
        display: block;
        position: absolute;
        right: 11px;
        bottom: 2px;
        background-color: var(--brand-body);
        padding: 0 3px;
        color: var(--brand-accent);
        text-decoration: underline;
        cursor: pointer;
        z-index: 2;
    }

    .listing-wrap .listing-description .show-more:before {
        content: '...';
        position: absolute;
        top: 0;
        left: -7px;
        display: block;
        color: #1F1F1F;
        background-color: var(--brand-body);
        padding: 0 1px;
    }

    .listing-wrap .listing-description.active .show-more {
        position: unset;
        text-align: right;
    }

    .listing-wrap .listing-description.active .show-more:before {
        content: unset;
    }

    .listing-wrap .listing-cta {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .subscription-section .subscription-wrap,
    .subscription-section .subscription-inner {
        border-radius: 48px;
    }

    .subscription-section .subscription-wrap:after {
        height: 110px;
        bottom: -55px;
        -webkit-filter: blur(20px);
        filter: blur(20px);
    }

    .subscription-section .subscription-inner {
        padding: 32px 12px 55px;
    }

    .subscription-section .subscription-title {
        font-size: 16px;
        line-height: 19.2px;
    }

    .subscription-section .subscription-title br {
        display: none;
    }

    .subscription-section input[type="email"] {
        font-size: 14px;
    }

    footer {
        margin-top: 70px;
        padding: 48px 0 15px;
        border-radius: 48px 48px 0 0;
    }

    footer .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .footer-info,
    footer .footer-menu {
        width: 100%;
    }

    footer .footer-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 18px;
    }

    footer .footer-menu a {
        width: 50%;
        margin: 6px 0;
        font-size: 12px;
    }

    footer .footer-menu p {
        display: none;
    }

    footer .footer-bottom {
        margin-top: 18px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
    }

    footer .footer-logos {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .footer-copyright {
        font-size: 12px;
    }

    .popup {
        width: 95%;
        border-radius: 8px;
        top: 20px;
        padding: 40px 25px;
    }

    .popup-close svg {
        width: 24px;
        height: 24px;
    }

    .popup-title {
        font-size: 16px;
        line-height: 14px;
        margin-bottom: 15px;
    }

    .popup.popup-contact input,
    .popup.popup-contact textarea {
        font-size: 14px;
    }

    .wpcf7-not-valid-tip {
        font-size: 11px;
    }

    .wpcf7 form .wpcf7-response-output {
        font-size: 12px;
    }

    .default-content .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .default-content aside,
    .default-content .main-content {
        width: 100%;
    }

    .default-content aside h3,
    .default-content .table-content {
        display: none;
    }

    .default-content {
        padding: 50px 0 0;
    }

    .default-content aside {
        margin-bottom: 12px;
        position: unset;
    }

    .default-content h1 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .default-content h3,
    .default-content h2 {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }

    .default-content p, .default-content h2, .default-content h3, .default-content h4, .default-content ul, .default-content ol {
        margin-bottom: 8px;
    }
}