/*INFINITE SCROLL*/

@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}
@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        transform: rotate(135deg);
        stroke-dashoffset: 46.75;
    }
    100% {
        transform: rotate(450deg);
        stroke-dashoffset: 187;
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        transform: rotate(135deg);
        stroke-dashoffset: 46.75;
    }
    100% {
        transform: rotate(450deg);
        stroke-dashoffset: 187;
    }
}
.c-spinner {
    width: 40px;
    height: 40px;
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}
.c-spinner .path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    stroke: #e11122;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}
.c-loader {
    margin-top: 32px;
    margin-bottom: 80px;
}
.c-loader .c-button {
    position: relative;
}
.c-button__loader {
    position: absolute;
    top: 50%;
    right: 10px;
    display: none;
    transform: translateY(-50%);
}
.c-button__loader .c-spinner {
    width: 16px;
    height: 16px;
}

/*HEADER*/
.c-site-header__content__nav__menu li.current-menu-item.u-not-active a {
    color: #32373c;
}

.c-site-header__content__nav__menu li.current-menu-item.u-not-active a:hover {
    color: #00acad;
}

.c-site-header--landing .c-logo-color {
    margin-top: 16px;
}

/*FOOTER*/
.c-site-footer {
    background: #4a4a4a;
    background-image: none;
}

.c-site-footer__trustpilot {
    max-width: 150px;
    margin-block: 16px;
}

/*REVIEWS*/
.c-reviews-block .l-container::before,
.c-reviews-block .l-container::after {
    content: none;
}
.c-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.c-review {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 360px;
    gap: 24px;
}

.c-review--video:after {
    content: url("img/play.svg");
    position: absolute;
    left: 26px;
    bottom: 16px;
    display: block;
}

.c-review figure {
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 64px;
    overflow: hidden;
}

.c-review figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-review .c-review__title {
    margin-bottom: 8px;
}

.c-review .c-review__role {
    display: block;
    color: #686868;
    font-size: 14px;
    margin-bottom: 12px;
}

.c-review .c-review__text {
    margin-bottom: 0;
}

/*PLAY BUTTON*/
.c-play-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    cursor: pointer;
}
.c-play-button svg {
    width: 48px;
    height: 48px;
}

/*VIDEO*/
.c-video__media {
    position: relative;
    cursor: pointer;
}
.c-video__media .c-video__picture {
    overflow: hidden;
}

.c-video__media .c-video__picture::after {
    content: "";
    position: absolute;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    inset: 0;
}
.c-video__media .c-video__picture img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

.c-video__media .c-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: 0.3s ease;
    transform: translate(-50%, -50%);
}

.c-video:hover .c-play-button {
    transform: translate(-50%, -50%) scale(1.05);
}

/*HERO*/
.c-hero-new {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 25px;
    margin-bottom: 64px;
}

.c-hero-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        #00acad 0%,
        rgba(42, 179, 179, 0.86) 100%
    );

    opacity: 1;
    z-index: 0;
}

.c-hero-new.c-hero--simple {
    min-height: 380px;
}

.c-hero-new.c-hero--simple::before {
    content: none;
}

.c-hero-new .c-hero__trustpilot {
    max-width: 100%;
    margin-top: 16px;
}

/*HERO*/
.c-hero-new.c-hero--simple {
    background-color: #00acad;
}

.c-hero-new.c-hero--simple.u-bg-grey {
    background-color: #4a4a4a;
}

.c-hero-new.u-bg-grey::before {
    background: #4a4a4a;
}

.c-hero-new .l-container::before,
.c-hero-new .l-container::after {
    content: none;
}

.c-hero-new .c-hero__content,
.c-hero-new .c-hero__media {
    position: relative;
    z-index: 2;
}
.c-hero-new .c-hero__content__title {
    line-height: 1;
}

.c-hero-new .c-hero__image {
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 8px 12px 36px 0px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.c-hero-new .c-hero__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-hero-new .c-hero__text {
    font-size: 18px;
    margin-block: 24px;
}

.c-hero-new .c-hero__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-hero-new .c-hero__media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-hero-new .c-hero__badge {
    display: inline-flex;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 18px;
    color: #4a4a4a;
    background-color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 16px;
    border-radius: 10px;
    box-shadow: 0px 4px 28px 0px #0000004d;
    margin-inline: auto;
}

.c-hero-new .c-hero__badge.u-bg-dark {
    color: #fff;
    background-color: #252a47;
}

.c-hero-new .c-hero-badge__icon {
    width: 32px;
    height: 32px;
}

.c-hero-new .c-hero-badge__icon img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-hero-new .c-button {
    text-transform: uppercase;
}

.c-hero-new .c-button--ghost {
    color: #ab2af7;
    background-color: #fff;
    border-color: #ab2af7;
}

.c-hero-new .c-button--ghost:hover {
    color: #fff;
    background-color: #ab2af7;
    border-color: #ab2af7;
}

.c-hero-new .c-hero__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.c-hero-new.c-hero--simple .c-hero__container {
    justify-content: center;
}

/*404*/
.error404 .c-hero__content__footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*TABS*/

.page-template-p-prezzi .c-hero-new {
    padding-bottom: 260px !important;
    margin-bottom: 0;
}

.c-tabs {
    position: relative;
    margin-top: -248px;
}

.c-tabs__menu {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
}

.c-tabs__contents > * {
    display: none;
}

.c-tabs__contents > .u-is-active {
    display: block;
}

.c-tabs__item .c-tabs__button {
    display: inline-block;
    width: 100%;
    color: #fff;
    background-color: #fefefe2a;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.c-tabs__item.u-is-active .c-tabs__button {
    color: #4a4a4a;
    background-color: #fff;
}

/*TOPIC*/
.c-surtitle {
    display: inline-block;
    color: #07aeae;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.c-topic__picture {
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
}

.c-topic__picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-topic__title {
    color: #4a4a4a;
    font-family: "TeXGyreAdventor-bold";
    font-size: 32px;
    margin-bottom: 24px;
}

.c-topic__text + .c-topic__picture {
    margin-top: 24px;
    margin-bottom: 0;
}

.c-topic__text ul {
    list-style: disc;
    padding-left: 40px;
}

.c-topic__text ul li::marker {
    color: #4fd1c5;
}

h3.c-topic__title,
.c-topic__text h3,
h4.c-topic__title,
.c-topic__text h4,
h5.c-topic__title,
.c-topic__text h5,
h6.c-topic__title,
.c-topic__text h6 {
    font-family: "TeXGyreAdventor-bold";
}

h3.c-topic__title,
.c-topic__text h3 {
    font-size: 24px;
}

h4.c-topic__title,
.c-topic__text h4 {
    color: #999;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
}

h5.c-topic__title,
.c-topic__text h5 {
    font-size: 16px;
}

/*PRICES*/

.c-prices__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.c-prices__grid:before,
.c-prices__grid:after {
    content: none;
}

.c-price--top {
    border: 3px solid #ab2af7;
}

.c-price--top .c-price__top {
    position: absolute;
    top: -24px;
    right: 9%;
    width: 80%;
    color: #ab2af7;
    background-color: #fff;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding-block: 14px;
    border: 3px solid #ab2af7;
    border-radius: 50px;
    z-index: 1;
}

/*TABLE SHOW*/
.j-table-show {
    position: absolute;
    right: 50%;
    bottom: 24px;
    display: none;
    color: #ab2af7;
    background-color: transparent;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    transform: translate(50%, -50%);
    z-index: 2;
}

.j-table-show:hover {
    color: #8827c4;
}

.u-max-height .c-table-block__container {
    position: relative;
    max-height: 800px;
    overflow: hidden;
}

.u-max-height .c-table-block__container:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 20%,
        #ffffff 100%
    );
    z-index: 2;
}

.u-max-height + .j-table-show {
    display: block;
}

/*CROSS*/
.c-table span.t-cross {
    width: 100%;
}

.c-table .t-cross:after {
    content: "";
    display: block;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.669464.669464c.892646-.892619 2.339866-.892619 3.232506 0L16 12.7676 28.0981.669464c.8926-.892619 2.3399-.892619 3.2325 0 .8925.892646.8925 2.339866 0 3.232506L19.2325 16l12.0981 12.0981c.8925.8926.8925 2.3399 0 3.2325-.8926.8925-2.3399.8925-3.2325 0L16 19.2325 3.90197 31.3306c-.89264.8925-2.33986.8925-3.232506 0-.892619-.8926-.892619-2.3399 0-3.2325L12.7676 16 .669464 3.90197c-.892619-.89264-.892619-2.33986 0-3.232506Z' fill='%23AAA'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

@media (width >= 1024px) {
    .c-table .t-cross:after {
        height: 15px;
        background-position: center;
    }
}

/*TOOLTIP*/
.c-table__feature {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c-table__feature.has-tooltip:after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("img/tooltip.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.c-table__feature .c-tooltip {
    position: absolute;
    right: -76px;
    bottom: 125%;
    width: 180px;
    color: #fff;
    background-color: #555;
    text-align: center;
    font-size: 14px;
    padding: 8px;
    border-radius: 6px;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    visibility: hidden;
}

.c-table__feature .c-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-color: #555 transparent transparent transparent;
    border-width: 5px;
    margin-left: -5px;
    border-style: solid;
}

.c-table__feature:hover .c-tooltip {
    opacity: 1;
    visibility: visible;
}

/*CTA*/

.c-cta {
    max-width: 840px;
    margin-inline: auto;
}

.single .c-cta {
    max-width: 800px;
}

.c-cta__container {
    position: relative;
    color: #fff;
    background: #ab2af7;
    padding: 40px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.c-cta:hover .c-cta__container {
    background-color: #8827c4;
}

.c-cta__picture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: none;
    max-width: 180px;
}

.c-cta__picture img {
    max-width: 100px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
}

.c-cta__content {
    max-width: 400px;
}

.c-cta__title {
    font-size: 27px;
    margin-bottom: 16px;
}

.c-cta__text {
    font-size: 16px;
    margin-bottom: 32px;
}

.c-cta__link {
    color: #fff !important;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.c-link--arrow:after {
    content: "\e910";
    color: #fff;
    font-family: "icomoon" !important;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    margin-left: 8px;
    speak: none;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.c-link--download {
}

.c-link--download:after {
    content: url("data:image/svg+xml,%3Csvg width='16' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.82134.600927c-.13432.03024-.20754.064566-.32143.15066-.12803.096786-.24574.256243-.29527.400033l-.0403.117-.00479 4.31024-.00479 4.31026-.80521-.80163c-.73356-.73029-.81515-.80598-.91676-.85033-.21623-.09441-.49318-.09225-.702.00549-.42271.1978-.60178.71929-.38851 1.13151.06338.12249.17508.23857 1.62293 1.68624 1.71321 1.7129 1.63008 1.6394 1.90617 1.685.10062.0167.15929.0167.25992 0 .27502-.0454.19223.0278 1.9054-1.6845 1.4502-1.4495 1.5602-1.56385 1.6237-1.68659.2132-.41253.0342-.93384-.3885-1.13166-.2088-.09774-.4858-.0999-.702-.00549-.1016.04435-.1832.12004-.91674.8503l-.80518.80159-.00482-4.31021-.00482-4.31022-.042-.11837c-.10042-.282941-.35436-.501929-.6442-.555515-.12847-.023742-.20412-.022338-.3308.006192ZM1.3856 13.4347c-.15196.0369-.26359.102-.387633.2258-.246276.2458-.297126.516-.205182 1.0901.231845 1.4479 1.422915 2.5407 2.893865 2.6551.29298.0228 8.33635.0228 8.62935 0 1.0479-.0815 1.9587-.6484 2.4981-1.5548.2443-.4106.3832-.8585.4261-1.3747.0343-.4121-.0192-.5967-.2365-.8159-.1959-.1977-.4358-.2781-.711-.2384-.1719.0247-.3064.0906-.443.2172-.1858.172-.2458.309-.2697.6165-.0209.269-.043.3725-.1183.5556-.0778.1893-.1622.3217-.2918.4579-.195.2049-.4507.3537-.7406.4308l-.153.0407H3.72634l-.153-.0407c-.29567-.0787-.54332-.223-.73961-.4311-.13815-.1464-.22644-.2853-.30078-.4732-.06759-.1708-.0901-.2811-.11026-.54-.02394-.3075-.08388-.4445-.26968-.6165-.21598-.2-.48766-.2723-.76741-.2044Z' fill='%23fff'/%3E%3C/svg%3E");
    display: inline-block;
    margin-left: 8px;
}

.c-link--arrow:before {
    content: none;
}

.c-cta--single {
    margin-block: 56px;
}

.c-cta--sidebar {
    max-width: none;
    margin-block: 32px;
}

.c-cta--sidebar .c-cta__container {
    padding: 20px;
}

.c-cta--sidebar .c-cta__content {
    position: relative;
}

.c-cta--sidebar .c-cta__picture img {
    max-width: 100px;
}

/*LIST*/

/*POSTS BLOCK*/

.c-posts-block .c-content-block__header,
.c-list-block .c-content-block__header {
    margin-bottom: 32px;
}

.c-posts-block .c-content__surtitle {
    text-transform: uppercase;
}

.c-posts-block .c-content__header {
    margin-bottom: 16px;
}

.c-posts-block .c-content__link {
    color: #ab2af7;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.c-posts-block .c-content__link::after {
    color: #ab2af7;
    font-size: 10px;
}

.c-posts-block__grid,
.c-list-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/*SUMBENU*/
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.menu-item-has-children > a::after {
    content: "\e910";
    color: inherit;
    font-family: "icomoon" !important;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    transition: 0.3s ease;
    transform: rotate(90deg);
    speak: none;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
}
.menu-item-has-children.u-is-open > a::after {
    transform: rotate(270deg);
}

.u-menu-open .c-toggle__item {
    opacity: 0;
}
.u-menu-open .c-toggle__item:first-of-type {
    opacity: 1;
    transform: rotate(-45deg) translate(-6px, 6px);
}
.u-menu-open .c-toggle__item:last-of-type {
    opacity: 1;
    transform: rotate(45deg) translate(-6px, -6px);
}
.u-menu-open .c-navbar {
    height: calc(100dvh - 66px);
}

.sub-menu {
    display: none;
}

/*MEGAMENU*/
body.u-megamenu-open {
    position: relative;
}
body.u-megamenu-open .l-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
}

body.u-megamenu-open .c-megamenu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background-color: #fff;
    margin-top: 16px;
    z-index: 10;
}

.c-megamenu {
    margin-top: 16px;
}

.c-megamenu__cta {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 24px 72px;
}

.c-megamenu__close {
    display: block;
    width: 100%;
    text-align: right;
}

.c-megamenu__cta .c-link {
    font-family: "TeXGyreAdventor-Bold";
    text-decoration: none;
}

.c-megamenu__cta .c-link::before {
    content: none;
}

.c-megamenu__title {
    color: #002514;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.c-megamenu__text p {
    font-size: 14px;
    margin-bottom: 12px;
}

.c-megamenu__nav {
    padding-block: 48px;
}

.c-megamenu__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}

.c-megamenu-item {
    flex: 1;
}

.c-megamenu-item__header {
    display: flex;
    gap: 12px;
}

.c-megamenu-item__icon {
    width: 24px;
    height: 24px;
}

.c-megamenu-item__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-megamenu__item .c-title {
    font-family: "TeXGyreAdventor-Bold";
    font-weight: 700;
}

.c-megamenu-item__link {
    font-family: "TeXGyreAdventor-Bold";
    font-weight: 700;
    text-decoration: none;
}

.c-megamenu-item__link:hover {
    text-decoration: none !important;
}

.c-megamenu-item__link:after {
    color: #00acad;
    transition: 0.3s ease;
}

.c-megamenu-item__link:hover::after {
    color: #0070ad;
}

.c-megamenu-item__link::before {
    content: none;
}

/*SINGLE*/

.c-post-content {
    max-width: 840px;
    margin-top: 150px;
    margin-right: auto !important;
}

.c-post-content .c-content-block,
.c-news-article .c-content-block {
    margin-block: 48px;
}

.c-post-content.u-m-0 {
    margin-top: 0;
}

.c-news-article {
    max-width: 840px;
}

.single-rentri .c-news-article {
    margin-inline: auto;
}

.single-rentri .c-content h4,
.single-elenco-cer .c-content h4 {
    color: #999;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
}

.single-post .c-news-article {
    margin-top: 164px;
}

.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
    font-family: "TeXGyreAdventor-Bold";
}

.c-news-article__text {
    flex: 1;
}

.c-news-article__footer {
    display: flex;
    justify-content: space-between;
    margin-block: 32px;
}

.c-link--pagination {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    gap: 8px;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.c-link--pagination:hover {
    color: #8827c4 !important;
    text-decoration: none !important;
}

.c-link--pagination::after {
    color: #ab2af7;
    margin: 0;
    transition: 0.3s ease;
}

.c-link--pagination:hover::after {
    color: #8827c4;
}

.c-link--pagination span {
    position: absolute;
    bottom: -32px;
    display: none;
    color: #4a4a4a;
}

.c-prev {
    flex-direction: row-reverse;
}

.c-next {
    text-align: right;
}

.c-prev::after {
    transform: rotate(180deg);
}

/*LINK*/
.c-news-article a,
.c-codici-article a {
    color: #ab2af7;
    font-weight: 600;
    transition: 0.3s ease;
}
.c-news-article a:hover,
.c-codici-article a:hover {
    color: #069192;
    text-decoration: underline;
}

/*COMMENTI*/

.c-comments {
    background-color: #fafafa;
    padding-block: 64px;
    margin-top: 64px;
}

.c-comments__container {
    max-width: 895px;
    background-color: #fff;
    padding-block: 40px;
    padding-inline: 32px;
    margin-inline: auto;
}

.c-comments__title,
.c-comments h3 {
    text-align: center;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.c-comments .comment-body a:not(.comment-author a):not(.comment-meta a) {
    color: #ab2af7;
    font-weight: bold;
    transition: 0.3s ease;
}

.c-comments .comment-reply-title {
    display: block;
    text-align: left;
}

.c-comments .navigation,
.c-comments h3#comments {
    display: none;
}

.c-comments .comment-author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.c-comments .comment-author.vcard cite {
    font-weight: 700;
    font-style: normal;
}

.c-comments .comment-author.vcard img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.commentlist {
    list-style: none;
    padding-left: 0;
}

.c-comments label:not(.comment-form-cookies-consent label) {
    display: block;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.c-comments textarea,
.c-comments input:not(input[type="checkbox"]):not(input[type="submit"]) {
    width: 100%;
    padding: 8px;
    border: 1px solid #9d9d9c;
    border-radius: 6px;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.c-comments .comment-form-cookies-consent {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.c-comments .comment-form-cookies-consent label {
    font-size: 14px;
    margin: 0;
}

.c-comments .logged-in-as {
    display: flex;
    flex-direction: column;
}

.reply a,
.c-comments .logged-in-as a {
    color: #ab2af7;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 12px;
    text-transform: uppercase;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
}

.c-comments .submit {
    min-width: 175px;
    color: #fff;
    background-color: #ab2af7;
    text-align: center;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    padding: 20px 20px;
    border: 2px solid #ab2af7;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.comment-body {
    position: relative;
    word-break: break-word;
}

.comment:not(.comment.depth-2) {
    padding-block: 32px;
    border-bottom: 1px solid #b4b4b4;
}

.comment .children {
    padding-top: 32px;
    padding-left: 32px;
}

.comment-author {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50%;
}

.comment-meta {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%;
    text-align: right;
}

.comment-body p:first-of-type {
    padding-top: 64px;
}

/*BOX VERIFICATO*/

.c-verification {
    position: relative;
    background-color: #eeffff;
    padding: 32px 24px;
    border-radius: 12px;
    overflow: hidden;
}

.c-verification__title {
    color: #545454;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.c-verification__title strong {
    color: #00acad;
    font-weight: 800;
}

.c-verification__text {
    font-size: 16px;
    margin-bottom: 24px;
}

.c-verification__authors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-author--verified {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.c-author--verified .c-author__title {
    color: #545454;
    font-weight: 700;
}

.c-author--verified .c-author__figure {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.c-author--verified .c-author__intro {
    font-size: 14px;
    margin: 0;
}

.c-author--verified .c-author__content {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    font-family: "TeXGyreAdventor-Bold";
    margin: 0;
}

.c-author--verified .c-author__content svg {
    position: absolute;
    top: 3px;
    left: 24px;
}

.single-post .c-content-block--verification > .l-container {
    padding-inline: 0;
}

@media screen and (min-width: 768px) {
    .c-verification__authors {
        flex-direction: row;
        gap: 48px;
    }

    .c-verification__title {
        font-size: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .c-verification {
        padding: 48px;
    }

    .c-verification__authors {
        gap: 100px;
    }
}

@media screen and (min-width: 1440px) {
    .c-verification__content {
        max-width: 80%;
    }
}

/*CONTATTI*/

.page-id-599 .c-hero.c-hero--small,
.page-id-138 .c-hero.c-hero--small {
    padding-top: 130px;
}

@media screen and (min-width: 768px) {
    .page-id-599 .c-hero.c-hero--small,
    .page-id-138 .c-hero.c-hero--small {
        padding-top: 150px;
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 1024px) {
    .page-id-599 .c-hero.c-hero--small,
    .page-id-138 .c-hero.c-hero--small {
        padding-top: 180px;
        padding-bottom: 75px;
    }
}

/*BLOG*/

.blog .l-2col,
.page-template-p-rentri .l-2col {
    display: flex;
    flex-direction: column-reverse;
}

#blog-articles .c-articles__grid .c-news:nth-child(n + 5) {
    display: none;
}

#blog-articles.u-show-all .c-articles__grid .c-news:nth-child(n + 5) {
    display: block;
}

#guide-articles .c-articles__grid .c-news:nth-child(n + 4) {
    display: none;
}

#guide-articles.u-show-all .c-articles__grid .c-news:nth-child(n + 4) {
    display: flex;
}

.c-news .c-news__text {
    margin-top: 16px;
}

.c-articles__title {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: #282828;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 28px;
}

.c-articles__title:before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    background-color: #4fd1c5;
    border-radius: 2px;
    margin-top: 16px;
}

.c-articles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.c-articles__footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.c-articles--guide .c-articles__grid {
    grid-template-columns: 1fr;
    gap: 56px;
}

.c-articles--related {
    margin-block: 120px;
}

.c-articles--related .c-articles__grid {
    grid-template-columns: 1fr;
}

.c-articles--related .c-articles__title {
    justify-content: center;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
}

.c-articles--related .c-news__title {
    font-size: 20px !important;
}

.c-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.c-categories li {
    color: #4a4a4a;
    background-color: #eaeaea;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: none;
    border-radius: 40px;
    transition: 0.3s ease;
}

.blog .c-tag--all,
.c-tag.u-active,
.c-tag.u-is-active,
.c-tag:hover {
    color: #fff;
    background-color: #26b1b2;
}

/*CODICI*/

.c-post-content--codici .c-post-content__header {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    background-color: #fff;
    padding-top: 48px;
    padding-bottom: 32px;
    margin-bottom: 40px;
}

.c-post-content__header .c-header__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

#searchForm {
    position: relative;
}

#searchButton {
    position: absolute;
    top: 0;
    left: 8px;
    bottom: 0;
    background-color: transparent;
    border: none;
}

#counter {
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

#searchForm input {
    min-width: 200px;
    height: 48px;
    font-family: "IBM Plex Sans", sans-serif;
    padding: 16px;
    padding-left: 40px;
    border: 1px solid #9d9d9c;
    border-radius: 6px;
}

#searchForm input:focus-visible {
    outline: 2px solid #ab2af7;
}

#prevButton,
#nextButton,
#resetButton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 8px;
    border: none;
}

#prevButton::after,
#nextButton::after {
    content: "\e910";
    color: inherit;
    font-family: "icomoon" !important;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    transition: 0.3s ease;
    transform: rotate(90deg);
    speak: none;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
}

#prevButton::after {
    transform: rotate(270deg);
}

.highlight {
    background-color: #00dfdf;
}

.highlight.active {
    background-color: #ab2af7;
}

.c-post-content--single {
    max-width: none;
    margin-inline: auto !important;
}

.c-news-popular--codici .c-news__title {
    font-size: 20px !important;
}

.c-news-popular--codici .c-news__picture {
    height: 225px;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.c-news-popular--codici .c-news__picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*RENTRI*/
.c-news--rentri {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-news--rentri .c-news__figure {
    width: 120px;
    height: 120px;
    background-color: #00acad;
    border-radius: 100px;
    overflow: hidden;
}

.c-news--rentri .c-news__text {
    flex: 1;
}

/*SEARCHBAR*/

/*SCROLLNAV*/

.c-news-nav {
    font-size: 16px;
}

.c-news-nav .c-nav__label {
    font-family: "TeXGyreAdventor-Bold";
    text-transform: uppercase;
}

.scroll-nav__section {
    margin-block: 24px;
}

.scroll-nav__list {
    list-style: none;
    padding-left: 0;
}

.scroll-nav__item {
    margin-block: 8px;
}

.scroll-nav__link .icon {
    display: none;
    transition: 0.3s;
}

.scroll-nav__item--active a {
    color: #ad27fb;
    font-weight: 700;
}

.scroll-nav__item--active .icon {
    display: inline-block;
    margin-right: 8px;
    fill: #ad27fb;
}

/*ACCORDION*/

.c-accordion-block {
    max-width: 840px;
    margin-inline: auto;
}
.c-accordion-block .c-content-block__title {
    text-align: center;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 32px;
    margin-bottom: 32px;
}

.c-accordion-block .c-surtitle {
    width: 100%;
    text-align: center;
}

.single .c-accordion-block .c-content-block__title,
.single .c-accordion-block .c-surtitle {
    text-align: left;
}

.c-accordion-item {
    cursor: pointer;
}

.c-accordion-item__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.c-accordion-item + .c-accordion-item {
    margin-top: 16px;
}

.c-accordion-item__header .icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #00acad;
    padding: 14px;
    border: 1px solid #00acad;
    border-radius: 100px;
    transition: 0.3s ease;
    transform: rotate(90deg);
}

.c-accordion-item.u-is-open .icon {
    color: #fff;
    background-color: #00acad;
    transform: rotate(270deg);
}

.c-accordion-item:not(.u-is-open):hover .c-accordion-item__title {
    color: #ab2af7;
}

.c-accordion-item:not(.u-is-open):hover .icon {
    color: #ab2af7;
    border-color: #ab2af7;
}

.c-accordion-item.u-is-open {
    padding-bottom: 32px;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 32px;
}

.c-accordion-item__content {
    display: none;
}

.c-accordion-item.u-is-open .c-accordion-item__content {
    display: block;
}

.c-accordion-item__content a {
    color: #ab2af7;
    font-weight: 600;
    transition: 0.3s ease;
}

.c-accordion-item__content ul {
    list-style: disc;
    padding-left: 24px;
}

.c-accordion-item__content ul li::marker {
    color: #00acad;
}

.c-accordion-item__content .c-link--arrow {
    color: #ab2af7;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.c-accordion-item__content .c-link--arrow::after {
    color: #ab2af7;
}

.c-accordion-item__content .c-link--arrow:hover {
    color: #8827c4;
    text-decoration: none;
}

.c-accordion-item__content .c-link--arrow:hover::after {
    color: #8827c4;
}

.c-accordion-item__content a:hover {
    color: #8827c4;
    text-decoration: underline;
}

.c-accordion-item__title {
    max-width: 80%;
    color: #4a4a4a;
    font-family: "TeXGyreAdventor-Bold";
    font-size: 22px;
    transition: 0.3s ease;
}

.u-is-open .c-accordion-item__title {
    color: #00acad;
}

@media screen and (max-width: 425px) {
    .c-table-block .c-content-block__content {
        padding: 0;
        margin-inline: -20px;
    }

    .c-table thead th span {
        font-size: 10px;
    }

    .c-table tbody td {
        font-size: 12px;
    }

    .c-table tbody td .icon-check {
        border: none;
    }

    body.u-megamenu-open .c-megamenu {
        padding-bottom: 80px;
        overflow: auto;
    }
}

@media screen and (max-width: 600px) {
    .c-comments .comment-author {
        position: relative;
        margin-bottom: 8px;
    }

    .comment-meta {
        position: relative;
        max-width: none;
        text-align: left;
    }

    .comment-body p:first-of-type {
        padding-top: 16px;
    }
}

@media screen and (max-width: 767px) {
    .blog .c-sidebar .c-cta,
    .c-sidebar--rentri .c-cta {
        display: none;
    }

    .blog .c-sidebar,
    .c-sidebar--rentri {
        margin-bottom: 40px;
    }

    .page-template-p-prezzi .c-hero-new {
        background-image: none;
    }
}

@media screen and (min-width: 768px) {
    body.u-megamenu-open .c-megamenu {
        top: 90px;
    }

    .c-megamenu__title {
        min-width: 205px;
        margin-right: 32px;
        margin-bottom: 0;
    }

    .c-cta__container {
        padding-block: 40px;
        padding-left: 220px;
        border-radius: 8px;
    }

    .c-cta__picture:not(.c-cta--sidebar .c-cta__picture) {
        display: block;
    }

    .c-cta__picture img {
        max-width: 180px;
    }

    /*HERO*/
    .c-hero-new.c-hero--simple {
        background-image: url("data:image/svg+xml,%3Csvg width='335' height='374' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M139.511 320.035c2.756 20.451 12.172 39.419 26.787 53.965H0L.00000716 0v292.454C7.7741 250.016 27.1589 210.574 55.9949 178.52c28.8359-32.053 65.9901-55.458 107.3241-67.607 4.546-1.265 9.159-2.273 13.818-3.02l-10.253-38.4381L335 121.195 220.799 271.572l-11.34-42.472c-22.409 3.933-42.919 15.096-58.407 31.787-10.241 17.906-14.298 38.697-11.541 59.148Z' fill='%2359C7C7'/%3E%3C/svg%3E");
        /* background-image: url("data:image/svg+xml,%3Csvg width='335' height='374' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M139.511 320.035c2.756 20.451 12.172 39.419 26.787 53.965H0L.00000716 0v292.454C7.7741 250.016 27.1589 210.574 55.9949 178.52c28.8359-32.053 65.9901-55.458 107.3241-67.607 4.546-1.265 9.159-2.273 13.818-3.02l-10.253-38.4381L335 121.195 220.799 271.572l-11.34-42.472c-22.409 3.933-42.919 15.096-58.407 31.787-10.241 17.906-14.298 38.697-11.541 59.148Z' fill='%2359C7C7'/%3E%3C/svg%3E"),
            linear-gradient(180deg, #00acad 0%, rgba(42, 179, 179, 0.86) 100%); */
        background-size: 25%;
        background-position: 0 100%;
        background-repeat: no-repeat;
    }

    .c-hero-new.c-hero--simple.u-bg-grey {
        background-image: url("data:image/svg+xml,%3Csvg width='335' height='374' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M139.511 320.035c2.756 20.451 12.172 39.419 26.787 53.965H0L.00000716 0v292.454C7.7741 250.016 27.1589 210.574 55.9949 178.52c28.8359-32.053 65.9901-55.458 107.3241-67.607 4.546-1.265 9.159-2.273 13.818-3.02l-10.253-38.4381L335 121.195 220.799 271.572l-11.34-42.472c-22.409 3.933-42.919 15.096-58.407 31.787-10.241 17.906-14.298 38.697-11.541 59.148Z' fill='%23747474'/%3E%3C/svg%3E");
    }

    .c-hero-new .c-hero__badge {
        font-size: 17px;
    }

    .c-hero-new .c-hero__footer {
        flex-direction: row;
    }

    .c-hero-new .c-hero__trustpilot {
        max-width: 290px;
    }

    /*TABS*/

    .c-tabs {
        margin-top: -92px;
    }

    .c-tabs__contents > .u-is-active {
        margin-top: 64px;
    }

    .page-template-p-prezzi .c-hero-new {
        padding-bottom: 150px !important;
    }

    .c-tabs__menu {
        flex-direction: row;
        gap: 40px;
        margin-bottom: 0;
    }

    .c-tabs__item .c-tabs__button {
        font-size: 16px;
        padding: 24px 30px;
        border-radius: 16px 16px 0px 0px;
    }

    /*VIDEO*/
    .c-video__media .c-video__picture img {
        min-height: 0;
    }

    .c-play-button svg {
        width: 80px;
        height: 80px;
    }

    /*GRIDS*/

    .c-posts-block__grid,
    .c-list-block__grid,
    .c-articles__grid,
    .c-prices__grid {
        grid-template-columns: 1fr 1fr;
    }

    .c-reviews__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    /*RENTRI*/
    .c-news--rentri {
        flex-direction: row;
    }

    .c-news--rentri .c-news__figure {
        width: 150px;
        height: 150px;
    }

    /*ARTICLES*/
    .c-articles__title {
        align-items: center;
    }

    .c-articles__title:before {
        margin: 0;
    }

    .c-comments__container {
        padding-block: 64px;
        padding-inline: 120px;
        border-radius: 8px;
    }

    .c-table__feature.has-tooltip:after {
        flex: 0 0 auto;
    }
}

@media screen and (max-width: 820px) {
    /*TABELLA MOBILE*/

    .c-table {
        table-layout: fixed;
    }

    .c-table thead tr th:first-of-type {
        display: none;
    }

    .c-table thead tr th:not(:first-of-type),
    .c-table tbody td {
        width: 25%;
        text-align: left;
    }

    .c-table thead th {
        padding: 0;
    }

    .c-table tr {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-block: 8px;
        border-bottom: 1px solid #d4d4d4;
    }

    .c-table thead th span {
        font-size: 14px;
        padding: 0;
    }

    .c-table tbody td {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 14px;
        padding: 4px;
    }

    .c-table tbody td:first-of-type {
        justify-content: flex-start;
        width: 100%;
    }

    .c-table tbody td .icon-check {
        width: 24px;
        height: 24px;
        font-size: 9px;
        padding: 0;
    }

    .c-table-block__container {
        padding-block: 40px;
        padding-inline: 8px;
        border-radius: 8px;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 1023px) {
    .c-megamenu__cta {
        padding: 20px;
    }

    .c-hero-new .c-button--special {
        justify-content: center;
    }

    /*TABELLA TABLET*/
    .c-table-block__container {
        padding: 16px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .c-site-header__content__nav__menu li a {
        font-size: 15px;
    }
}
@media screen and (min-width: 1024px) {
    /*MEGAMENU*/
    body.u-megamenu-open .c-megamenu {
        top: 100px;
        height: 60vh;
        min-height: 450px;
    }

    .c-megamenu__cta {
        flex-direction: row;
    }

    .c-megamenu__list {
        flex-wrap: nowrap;
    }

    /*FOOTER*/
    .c-site-footer__trustpilot {
        max-width: 180px;
    }

    /*CODICI*/
    .c-post-content--codici .c-post-content__header {
        top: 110px;
    }

    #searchForm input {
        min-width: 300px;
    }

    /*BLOG*/
    .blog .l-2col,
    .page-template-p-rentri .l-2col {
        flex-direction: row;
    }

    .c-news-article__footer {
        margin-bottom: 64px;
    }

    .c-link--pagination span {
        display: block;
    }

    /*HERO*/
    .c-hero-new {
        min-height: 730px;
        padding-top: 180px;
        padding-bottom: 0;
    }

    .c-hero-new .c-hero__image {
        height: 300px;
    }

    .c-hero-new .c-hero__container {
        align-items: flex-start;
        flex-direction: row;
    }

    .c-hero-new::before {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 65%, 0 80%);
        clip-path: polygon(0 0, 100% 0, 100% 65%, 0 80%);
    }

    .c-hero-new .c-hero__text {
        font-size: 18px;
    }

    .c-hero-new .c-hero__content {
        width: 50%;
        padding-top: 32px;
    }

    .c-hero-new .c-hero__content__title {
        font-size: 48px;
    }

    .c-hero-new.c-hero--simple {
        padding-bottom: 60px;
    }

    .c-hero-new.c-hero--simple {
        background-size: 250px;
    }

    .c-hero-new.c-hero--simple::before {
        -webkit-clip-path: none;
        clip-path: none;
    }

    .c-articles--related .c-articles__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .c-articles__grid {
        grid-template-columns: 1fr 1fr;
    }

    /*TOOLTIP*/

    .c-table__feature {
        align-items: flex-start;
    }

    .c-table__feature.has-tooltip:after {
        width: 24px;
        height: 24px;
    }

    /*SUBMENU*/
    .sub-menu {
        position: absolute;
        top: calc(100% + 20px);
        left: -24px;
        width: auto;
        min-width: 240px;
        background-color: #fff;
        text-align: left;
        padding: 32px 40px;
        box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .sub-menu li {
        display: block !important;
        text-align: left;
        font-size: 16px;
        line-height: 1;
        padding: 0 !important;
    }

    .sub-menu li a {
        line-height: 1.2;
        padding: 8px 0 !important;
    }

    .sub-menu li a span {
        display: block;
        font-family: "Strawford", sans-serif;
        font-weight: 400;
        margin-top: 4px;
    }

    .sub-menu li a:hover {
        color: #ad27fb !important;
    }

    .single-rentri .c-comments {
        padding-bottom: 180px;
    }

    /*TABLE*/
    .c-table tbody td:first-of-type {
        min-width: 210px;
    }

    /*TOPIC*/
    .c-topic__picture {
        height: 470px;
    }

    /*TABS*/
    .c-tabs {
        margin-top: -72px;
    }
}

@media screen and (min-width: 1280px) {
    /*HEADER*/
    .c-site-header__content__nav__menu {
        margin-right: 60px;
    }
}

@media screen and (min-width: 1440px) {
    .c-hero-new {
        min-height: 800px;
    }
    .c-hero-new .c-hero__content {
        width: 60%;
        max-width: 630px;
    }

    .c-hero-new .c-hero__text {
        font-size: 21px;
    }

    .c-hero-new .c-hero__content__title {
        font-size: 58px;
    }

    .c-hero-new .c-hero__image {
        max-width: 590px;
        height: 400px;
    }

    .c-hero-new.c-hero--simple {
        min-height: 450px;
        background-size: 300px;
    }

    .c-hero-new.c-hero--simple .c-hero__content {
        max-width: 800px;
    }

    /*SIDEBAR*/
    .c-post-content {
        flex: 1;
    }

    .c-sidebar {
        flex: 0 0 400px;
    }

    .c-cta--sidebar {
        margin-top: 32px;
    }

    .c-cta--sidebar .c-cta__container {
        padding-left: 120px;
    }

    .c-cta--sidebar .c-cta__picture {
        display: block;
    }

    .c-news-article {
        max-width: 900px;
    }

    .c-prices__grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .c-price {
        max-width: 260px;
        flex-grow: 1;
    }

    .c-table thead th span {
        font-size: 20px;
    }

    .c-site-header__content__nav__menu {
        margin-right: 80px;
    }

    .c-tabs {
        margin-top: -93px;
    }

    .c-tabs__item .c-tabs__button {
        font-size: 20px;
        padding: 32px 40px;
    }
}

@media screen and (min-width: 1920px) {
    .c-hero-new.c-hero--simple {
        background-position: 15% 100%;
    }

    .c-news-article {
        max-width: 1100px;
    }
}
