/* ΗΟΜΕPAGE CAROUSEL */
.page-template-Homepage {
    background: #4a4a4a;
}
.home-carousel .vcarousel-cell {
    /* width: 636px; */
    padding-left: calc(var(--vs-gutter-x) * .5) !important;
    padding-right: calc(var(--vs-gutter-x) * .5) !important;
}
.home-carousel .vcarousel-cell .inner-container > *:not(.brand-logo) {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.home-carousel .vcarousel-cell.is-selected .inner-container > *:not(.brand-logo) {
    opacity: 1;
    visibility: visible;
}
.home-carousel .brand-logo {
    position: relative;
    width: 340px;
    height: 114px;
    background: var(--color-white);
    padding: 20px;
}
.home-carousel .brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: 100%;
    background: inherit;
    z-index: -1;
    transform: skewX(-10deg);
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.cat-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cat-wrapper > li {
    display: inline-block;
    padding: 8px 18px 6px;
    border: 1px solid var(--color-white);
    border-radius: 12rem;
    color: var(--color-white);
    transition: background 0.3s ease-in-out;
}
.cat-wrapper > li:hover {
    color: var(--color-white);
    background: var(--color-gray-50);
}
.cat-wrapper > li > a {
    color: inherit;
    text-decoration: none;
}
/* 3D TIRE */
/* .home {
    background: var(--color-deep-gray)!important;
} */
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* SECTIONS */
.stats-wrapper {
    --s: 36px;
    max-width: 480px;
    /* aspect-ratio: 400 / 295; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    background: transparent content-box;
    mask: conic-gradient(#000 0 0) content-box, conic-gradient(at var(--s) var(--s), #0000 75%, #000 0) 0 0 / calc(100% - var(--s)) calc(100% - var(--s));
}
.stats-wrapper .inner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 55px;
    /* transition: padding 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out; */
}
/* .stats-wrapper .inner-wrapper.inactive {
    padding: 35px;
    width: 35px;
    height: 35px;
}
.stats-wrapper .inner-wrapper.inactive * {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 0.5s;
} */
.page-template-Homepage #wrapper-footer {
    background: var(--color-white);
    border: none;
}
/* latest news */
.latest-news-item .inner-wrapper {
    aspect-ratio: 1164 / 206;
    display: flex;
    /* justify-content: space-between; */
    background: var(--color-white);
    transition: transform 0.3s ease-in-out;
}
.latest-news-item:hover .inner-wrapper {
    transform: skewX(-10deg);
}
.latest-news-item .inner-wrapper > * {
    transition: transform 0.3s ease-in-out;
}
.latest-news-item:hover .inner-wrapper > *:not(.img-container) {
    transform: skewX(10deg);
}
.latest-news-item .img-container {
    height: 100%;
}
.latest-news-item .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.latest-news-item:hover .img-container img {
    transform: scale(1.05);
}
.latest-news-item .latest-title {
    transition: color 0.3s ease-in-out;
}
.latest-news-item:hover .latest-title {
    color: var(--color-orange);
}