:root {
    --max-width: 100dvw;

    --player-box-width: var(--max-width);
    --player-box-height: calc(var(--player-box-width)*0.5625);

    --player-width: var(--player-box-width);
    --player-height: calc(var(--player-width)*1.1);
    --player-mt: calc((var(--player-box-height) - var(--player-height)) / 2);
}


/* html {
    overflow-x: hidden;
} */
body {
    background-color: #22155D;
}


/* Player */

.player-box {
    position: fixed;
    top: 0; left: 0;
    width: var(--player-box-width);
    height: var(--player-box-height);
    
    max-height: -webkit-fill-available;
    overflow-y: hidden;

    background-color: #060e18;

    isolation: isolate;
    z-index: -1;
}
.player-box::before {
    content: "";

    position: absolute;
    inset: 0;

    background-color: #000000a6;
    z-index: 0;
}

/* Показую завжди. Важливо для LCP */
.player-box picture.player-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.player-box[data-lowres="true"] {
    position: absolute;
}
/* Показую тільки коли відео відсутнє. Краще читається текст */
.player-box[data-lowres="true"]::before {
    background: linear-gradient(
        to bottom,
        #0000006e,
        #000000a8 70%
    )
}

#player {
    width: var(--player-width);
    height: var(--player-height);
    margin-top: var(--player-mt);
    
    opacity: 0;
    transition: opacity 1s;

    pointer-events: none;
}
#player.-shown {
    opacity: 1;
}
#player.-hidden {
    display: none;
}


/* Hero */
#hero {
    height: var(--player-box-height);
    max-height: 100dvh;
    display: grid;
    align-items: center;
}

#hero .hero-inner {
    display: grid;
    grid-template-columns: 1fr 34.5rem;
    gap: 5.2rem;
}

#hero .hero-inner .titles {
    display: grid;
    place-content: center;
    gap: 5.2rem;
}

#hero .hero-inner .titles h1 {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 7.5rem;
    line-height: 7.7rem;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-wrap: balance;
    color: #fff;
}
#hero .hero-inner .titles h2 {
    font-weight: 300;
    font-size: 3rem;
    line-height: 3.2rem;
    text-wrap: pretty;
    color: #fff;
}

#hero .hero-inner .superman a {
    display: block;
    text-decoration: none;

    will-change: transform;
    transform: translateZ(0);   /* стартовий layer */
    
    animation-name: levitate;
    animation-delay: 4s;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-direction: alternate;
}

@keyframes levitate {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -100px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    #hero .hero-inner .superman a {
        animation: none;
    }
}

#hero .hero-inner .superman a:is(:hover, :focus-visible) {
    animation-play-state: paused;
}

#hero .hero-inner .superman a img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}


/* Services | What do we do */

h3 {
    padding-block: 2rem;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    line-height: 5.7rem;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #000;

    background-color: var(--accent-yellow);
}

#services {
    background: linear-gradient(to bottom, #081022, #22155D);
    padding-bottom: 7.2rem;
}
#services h3 {
    position: relative;
    isolation: isolate;
}
#services h3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--accent-yellow);
    transform-origin: right;
    rotate: 0.65deg;
    z-index: -1;
}

#services .services-inner {
    width: 100%;
    /* margin-inline: auto; */
    /* width: min(150rem, 100%); */

    position: relative;
    isolation: isolate;

    /* border-left: 7px solid var(--accent-yellow);
    border-right: 7px solid var(--accent-yellow); */

    overflow: hidden;
}
#services .services-inner svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    fill: var(--accent-yellow);
    stroke: var(--accent-yellow);
}
#services .services-inner svg.inner-grid {
    fill: none;
    stroke: #000;
}

@media (max-width:768px){
    #services svg{
        display:none !important;
    }
}

#services .gallery {
    position: absolute;
    inset: 0;

    z-index: -1;
}
#services .gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #00000099;
    z-index: 0;
}
#services .gallery img {
    position: absolute;
    width: 100%;
    top: 50%; translate: 0 -50%;
}
#services .gallery img.-hidden {
    opacity: 0;
    /* transform: translateX(-50%); */
    z-index: -2;
}
#services .gallery img:not(.-hidden) {
    transition: opacity 0.5s, transform 0.5s;
    opacity: 1;
}

#services ul.img-grid {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
#services ul.img-grid li[name="switcher"] {
    padding-block: 1rem;

    flex-basis: 50%;
    height: 27rem;

    display: inline-flex;
    /* align-items: center; */
    /* justify-content: center; */

    cursor: pointer;
}
#services ul.img-grid li[name="switcher"][data-index="2"],
#services ul.img-grid li[name="switcher"][data-index="3"],
#services ul.img-grid li[name="switcher"][data-index="4"] {
    flex-basis: 33.3%;
}

#services ul.img-grid li[name="switcher"] img {
    width: 100%;
    aspect-ratio: 1280 / 720;

    display: flex;
    align-items: center;
    justify-content: center;
    
    display: none;  
}

#services ul.img-grid li[name="switcher"] a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    
    text-decoration: none;    
}

#services ul.img-grid li[name="switcher"] a span {
    max-width: 31rem;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    
    line-height: 1;
    letter-spacing: 0px;

    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
    
    color: #fff;
    transition: color 0.25s;
}

#services ul.img-grid li[name="switcher"]:is(:hover, :focus-visible) a span,
#services ul.img-grid li[name="switcher"].-active a span {
    color: var(--accent-yellow);
}


/* Reason - Why Choose LRT + Trailers */
#reason {
    min-height: 110dvh;

    background-color: #000;
    background-image: url("/reason.webp");
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    isolation: isolate;
}
#reason::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #00000094;
    z-index: -1;
}

#reason .btn,
#trailers .btn {
    max-width: 15rem;
    box-shadow: var(--shadow-m);
}
#reason .reason-inner,
#trailers #trailers-accordeon {
    padding-block: 5.2rem;

    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#reason .details-box,
#trailers .details-box {
    padding: 2.5rem;
    position: relative;
}
#reason .details-box *,
#trailers .details-box * {
    user-select: none;
}

#reason .details-box svg.line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 12px;

    stroke: var(--accent-yellow);
    fill: var(--accent-yellow);
}

#reason .details-box summary,
#trailers .details-box summary {
    position: relative;
    margin-bottom: 2.5rem;
    cursor: pointer;
}
#reason .details-box summary span,
#trailers .details-box summary span {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    
    line-height: 1;
    letter-spacing: 0px;
    
    text-align: center;
    text-transform: uppercase;
    
    color: #fff;
}

#reason .details-box summary::marker,
#reason .details-box summary::-webkit-details-marker,
#trailers .details-box summary::marker,
#trailers .details-box summary::-webkit-details-marker {
    font-size: 0;
    color: transparent;
    opacity: 0;
}

#reason .details-box summary svg.plus,
#trailers .details-box summary svg.plus {
    position: absolute;
    top: 50%; right: 0;
    translate: 0 -50%;

    transition: transform 0.25s;

    stroke: var(--accent-yellow);
    fill: var(--accent-yellow);
}
#reason .details-box details[open] summary svg.plus,
#trailers .details-box details[open] summary svg.plus {
    transform: rotate(45deg);
}

#reason .details-box details p,
#trailers .details-box details p {
    font-size: 2rem;
    font-weight: 300;
    
    line-height: 1.2;
    letter-spacing: 0px;
    text-wrap: pretty;
    
    color: #fff;
    margin-bottom: 2rem;
}


/* Trailer types */

#trailers #trailers-accordeon {
    padding-bottom: 9.2rem;
}

#trailers {
    background-color: #000;
    
    position: relative;
    isolation: isolate;
}

#trailers-titles {
    padding-block: 2rem;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: linear-gradient(to bottom, #12121b, #000);
}

#trailers-titles * {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    
    line-height: 1.1;
    letter-spacing: 0px;
    text-transform: uppercase;
    
    color: var(--accent-yellow);
}
#trailers-titles .right {
    margin-right: -15%;
    text-align: right;
}
#trailers-titles .left {
    margin-left: -15%;
    text-align: left;
}

#trailers .details-box {
    border-top: 1px solid var(--accent-yellow);
}

#trailers-image {
    padding-block: 5.2rem;
    overflow: hidden;
}

#truck-trailer {
    /* --drive-duration: 2.2s; */
    --drive-duration: 1s;

    display: flex;
    align-items: center;
    justify-content: center;

    will-change: transform;
    transition: transform var(--drive-duration) cubic-bezier(0.22, 1.1, 0.36, 1);
}

#trailers-image .truck {
    margin-right: -10rem;
    position: relative;
    z-index: 1;
}
#trailers-image .trailer img {
    margin-left: var(--delta, -10rem);
    position: relative;
}
#trailers-image .trailer img.-hidden {
    display: none;
}

#trailers-image .truck {
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#trailers-image .trailer {
    transition: transform 1.8s cubic-bezier(0.22, 1.1, 0.36, 1);
}

#truck-trailer.-faraway .truck {
    transform: translateX(130%);
}
#truck-trailer.-faraway .trailer {
    transform: translateX(110%);
}

#truck-trailer:has(.trailer [data-single]:not(.-hidden)) .truck img {
    display: none !important;
}

/* старт */
#truck-trailer.-faraway {
    transform: translateX(110%);
}

/* приїхав */
#truck-trailer.-arrived {
    transform: translateX(0);
}

/* поїхав */
#truck-trailer.-gone {
    /* --drive-duration: 1.6s; */
    --drive-duration: 0.5s;
    transform: translateX(-110%);
}

#truck-trailer.-no-transition {
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    #truck-trailer,
    #truck-trailer * {
        transform: none !important;
        transition: none !important;
    }
}


/* Operations */

#chain {
    background-color: #000;
}

#chain .chain-titles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(to bottom, #000000, #080a20);
}

#chain .chain-titles * {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    
    line-height: 1.1;
    letter-spacing: 0px;
    text-transform: uppercase;
    
    color: var(--accent-yellow);
}
#chain .chain-titles .right {
    margin-right: -4rem;
    text-align: right;
}
#chain .chain-titles .left {
    margin-left: -4rem;
    text-align: left;
}

#chain .chain-inner {
    min-height: 85dvh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    /* background-position: center bottom; */

    background-position-x: center;
    background-position-y: bottom;

    background-size: cover;
    background-repeat: no-repeat;

    /* background: linear-gradient(to bottom, #080a20, #030124); */

    position: relative;
    isolation: isolate;
}

#chain .chain-inner {
    background-image: var(--index0);
}

#chain .chain-inner[data-index="1"] {
    background-image: var(--index1);
}
#chain .chain-inner[data-index="2"] {
    background-image: var(--index2);
}
#chain .chain-inner[data-index="3"] {
    background-image: var(--index3);
}
#chain .chain-inner[data-index="4"] {
    background-image: var(--index4);
}
#chain .chain-inner[data-index="5"] {
    background-image: var(--index5);
}
#chain .chain-inner[data-index="6"] {
    background-image: var(--index6);
}


#chain .chain-inner::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
        #080a20 2rem,
        #080a2087,
        #03012426
    );
    z-index: -1;
}



#chain .chain-inner-scene {
    display: grid;
    grid-template-columns: 38rem 1fr;
}
#chain .chain-inner-scene ol#operations-list {
    list-style: none;
    padding-left: 0;

    display: grid;
    gap: 3rem;

    counter-reset: step;
}
#chain .chain-inner-scene ol#operations-list li {
    padding-left: 6.2rem;

    counter-increment: step;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    
    line-height: 1.1;
    letter-spacing: 0px;
    text-transform: uppercase;
    
    color: #fff;
    transition: color 0.25s;

    position: relative;
    cursor: pointer;
}
#chain .chain-inner-scene ol#operations-list li::before {
    content: counter(step);

    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);

    width: 4.4rem;
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 2rem;
    color: #000;
    
    line-height: 1;

    background-color: #fff;
    transition: background-color 0.25s;
}
#chain .chain-inner-scene ol#operations-list li.-active {
    color: var(--accent-yellow);
}
#chain .chain-inner-scene ol#operations-list li:not(.-active):is(:hover, :focus-within) {
    color: var(--accent-yellow);
    opacity: 0.9;
}
#chain .chain-inner-scene ol#operations-list li.-active::before {
    background-color: var(--accent-yellow);
}

#chain .chain-inner-scene .operation-info-box {
    max-width: 47.5rem;

    display: none;
    opacity: 0;
    transition: opacity 0.25s;

    position: relative;
    isolation: isolate;
}
#chain .chain-inner-scene .operation-info-box.-shown {
    display: block;
    opacity: 1;
}

#chain .chain-inner-scene .operation-info-box svg {
    position: absolute;

    inset: 0;
    width: 100%;
    height: 100%;

    stroke: var(--accent-yellow);
    fill: #00000080;

    z-index: -1;
}

#chain .chain-inner-scene .operation-info-box p {
    padding: 4.5rem 3rem 6.5rem;
    font-size: 2rem;
    font-weight: 300;
    text-wrap: pretty;
    color: #fff;
}
#chain .chain-inner-scene .operation-info-box .btn {
    position: absolute;
    bottom: 0; right: 3rem;
    width: 15rem;
}

#chain .chain-inner #operation-animation {
    position: absolute;
    bottom: 0; left: 50%;
    transform: scaleX(-1) translate(35%, -75%);
    z-index: -1;
}
#chain .chain-inner #operation-animation img {
    width: min(66rem, 100%);
}

/* Membership */

#membership {
    padding-block: 2rem 7rem;
    background-color: var(--accent-yellow);
}

#membership .membership-titles {
    padding-block: 5rem;

    display: grid;
    place-items: center;
}

#membership .membership-titles * {
    --step: 15%;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 5.5rem;
    
    line-height: 1.1;
    letter-spacing: 0px;
    text-transform: uppercase;
    
    color: #000;
}
#membership .membership-titles .right {
    margin-right: var(--step);
    text-align: right;
}
#membership .membership-titles .left {
    margin-left: var(--step);
    text-align: left;
}

#membership .membership-inner {
    margin-inline: auto;
    width: 95%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

#membership .membership-inner .membership-card {
    flex: 1;
    width: 100%;
    max-width: 33rem;
    min-width: 22rem;

    padding: 1rem;
    aspect-ratio: 1;

    /* box-shadow: 0px 0px 4px 1px #eddc00; */
    /* border-radius: 5px; */
    
    overflow: hidden;
}
#membership .membership-inner .membership-card img {
    width: 100%;
}

/* Reviews */

#reviews {
    min-height: 85dvh;

    display: grid;
    place-items: center;

    background-image: url("/reviews.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: relative;
    isolation: isolate;
}
#reviews::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom, #1B1D5C, #393DC2);
    mix-blend-mode: multiply;

    z-index: -1;
}

#reviews .reviews-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    position: relative;
    isolation: isolate;
}

#reviews .reviews-inner svg.blob {
    position: absolute;
    
    top: 50%; right: 37rem;
    width: 60%;
    transform: translate(100%, -55%);
    
    stroke: #000;
    fill: var(--accent-yellow);
    z-index: -1;
}

#reviews h5 {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}
#reviews h6 {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--accent-yellow);
}

#reviews .reviews-box {
    display: grid;
    grid-template-columns: 1fr 35rem;
    gap: 4rem;
}
#reviews .reviews-box img {
    width: 100%;
    object-fit: contain;
    border-radius: 1rem;
    corner-shape: squircle;
}

#reviews .reviews-box-inner {
    padding-block: 2rem;

    scrollbar-width: thin;
    scroll-behavior: smooth;

    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 1rem;

    overflow-x: auto;
}

#reviews .reviews-box-inner ul {
    width: max-content;
    display: flex;
    gap: 2rem;
}
#reviews .reviews-box-inner ul li {
    padding: 2rem 1.5rem;
    width: 25rem;
    flex: 0 0 auto;

    /* display: grid; */
    display: flex;
    flex-direction: column;
    gap: 2rem;

    background-color: #ffffff1a;
    backdrop-filter: blur(1px);

    scroll-snap-align: start;

    border-radius: 5px;
    corner-shape: squircle;
}

#reviews .reviews-box ul li .name-box {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem;
}
#reviews .reviews-box ul li .name-box .name-ico {
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3rem;
    color: #fff;

    background-color: palevioletred;
    border-radius: 50%;
}
#reviews .reviews-box ul li .name-box .name-date {
    padding-block: 0.5rem;
    display: grid;
    gap: 1rem;
}

#reviews .reviews-box ul li .name-box .name-date .name,
#reviews .reviews-box ul li .name-box .name-date .date {
    font-size: 1.65rem;
}
#reviews .reviews-box ul li .name-box .name-date .name,
#reviews .reviews-box ul li .name-box .name-date .date {
    color: #3973df;
}
#reviews .reviews-box ul li .name-box .name-date .date {
    font-weight: 300;
    color: #fff;
}

#reviews .reviews-box ul li .stars-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#reviews .reviews-box ul li .stars-box .rate {
    font-size: 3rem;
    color: orange;
}
#reviews .reviews-box ul li .stars-box .stars svg {
    stroke: orange;
    fill: #e9bd0066;
}

#reviews .reviews-box ul li .text {
    flex:1;

    font-size: 1.65rem;
    font-weight: 300;
    color: #c9c9c9;
    text-align: justify;

    hyphens: auto;
    overflow-wrap: break-word;
}

#reviews nav {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 0.7rem;
}
#reviews nav button {
    width: 4.2rem;
    aspect-ratio: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: unset;
    border-radius: 3px;
    opacity: 0.25;

    cursor: pointer;
}

#reviews nav button:is(:hover, :focus) {
    opacity: 0.5;
}

/* Team */

#team {
    background-color: var(--accent-yellow);
    position: relative;
    isolation: isolate;
    padding-bottom: 3rem;
    overflow-x: clip;
}
#team::after {
    content: "";
    
    position: absolute;
    
    bottom: -1rem; right: -5%;
    width: 110%; height: calc(100% - 6.5rem);

    background-color: var(--accent-yellow);

    transform-origin: right;
    transform: rotate(-0.75deg);

    border-block: 2px solid #000;

    z-index: 0;
}

#team h3 {
    position: relative;
    isolation: isolate;
    padding-bottom: 3rem;
}
#team h3::before {
    content: "";
    
    position: absolute;
    inset: 0;
    background-color: var(--accent-yellow);
    
    transform-origin: right;
    transform: rotate(1.5deg);

    border-top: 2px solid #000;

    z-index: -1;
}

#team .team-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;

    position: relative;
    z-index: 1;
}

#team .team-inner .team-card {
    --clip-path: polygon(var(--w, 17px) 0, 100% 0, 100% 100%, 0% 100%);

    flex: 1;

    width: 95%;
    min-width: 35rem;
    max-width: 40rem;

    aspect-ratio: 400 / 600;

    display: flex;
    align-items: center;
    justify-content: center;

    clip-path: var(--clip-path);
    background-color: #000;

    position: relative;
    isolation: isolate;
    overflow: hidden;
}


#team .team-inner .team-card p {
    position: absolute;
    top: 3rem; left: 4rem;
    max-width: 25rem;

    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;

    text-transform: uppercase;
    color: var(--accent-yellow);

    text-shadow: 1px 1px 5px #000;

    z-index: 1;
}
#team .team-inner .team-card .card-image {
    width: calc(100% - 4px);
    height: calc(100% - 4px);

    display: flex;
    align-items: center;
    justify-content: center;

    clip-path: var(--clip-path);
}

#team .team-inner .team-card img {
    height: 100%;
    object-fit: contain;
}
#team .team-inner .team-card .btn {
    position: absolute;
    bottom: 3rem; left: 4rem;
    width: 17.5rem;

    z-index: 1;
}


/* CTA */

#CTA {
    min-height: 574px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#CTA svg.bottom-line {
    position: absolute;
    inset-inline: 0;
    left: 0; top: 0;

    stroke: #000;
    fill: var(--accent-yellow);
}

.parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.parallax.city {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 372px;
    width: 100%;
    z-index: -3;
}

.city .parallax-track img {
    height: 372px;
    width: auto;
}

.parallax.road {
    margin-top: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 202px;
    width: 100%;
    z-index: -1;
}

.road .parallax-track img {
    height: 202px;
    width: auto;
}

.parallax-track {
    display: flex;
    width: max-content;
    height: 100%;
    will-change: transform;
}

.parallax-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.city .parallax-track {
    transform: translateX(-50%);
    animation: city-move 180s linear infinite;
}

@keyframes city-move {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.road .parallax-track {
    animation: road-move 15s linear infinite;
}

@keyframes road-move {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .parallax-track {
        animation: none;
    }
}



#CTA .CTA-inner {
    position: absolute;
    bottom: 12%; left: 50%;
    translate: -50% 0%;

    display: grid;
    place-items: center;
    gap: 7rem;
    
    isolation: isolate;
    z-index: 2;
}

#CTA .CTA-inner .cta-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
#CTA .CTA-inner .cta-box * {
    font-family: "Druk";
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;

    transform-origin: center;

    color: #000;
}
#CTA .CTA-inner .cta-box .call-us {
    padding: 5px;
    max-width: 57rem;

    font-size: 5.5rem;
    text-align: center;
    text-decoration: none;
    rotate: -7.45deg;

    animation: pump 1s infinite alternate;

    position: relative;
    isolation: isolate;
}
#CTA .CTA-inner .cta-box .call-us svg {
    position: absolute;
    
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    transform: translate(-50%, -52%);

    fill: var(--accent-yellow);
    stroke: #000;

    z-index: -1;
}
#CTA .CTA-inner .cta-box a.call-phone {
    padding: 2rem 4rem;

    font-size: 3rem;
    text-align: center;
    text-decoration: none;
    background-color: var(--accent-yellow);
    border: 2px solid #000;

    rotate: 9.2deg;
    /* animation: pump 1s infinite alternate; */
}

@keyframes pump {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

#CTA .CTA-inner .truck-image {
    width: min(79rem, 100%);
}
#CTA .CTA-inner .truck-image img {
    width: 100%;
    object-fit: contain;
}


/* Blog */
#blog {
    background: linear-gradient(to bottom, #000 65%, #f9e600c4);
    padding-bottom: 10rem;
}
#blog h3 {
    padding-block: 0;
    position: relative;
    isolation: isolate;
    rotate: 1deg;
}
#blog h3::before {
    content: "";
    position: absolute;
    
    inset-block: -3rem;
    inset-inline: 0;

    background-color: var(--accent-yellow);
    z-index: -1;
}

#blog ul {
    padding-block: 10rem;

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

#blog ul li {
    width: min(40rem, 95%);
    min-height: 40rem;

    display: grid;
    grid-auto-rows: 1fr;    /* even rows */

    position: relative;
    isolation: isolate;
}

#blog ul li svg {
    position: absolute;
    inset: 0;
    stroke: var(--accent-yellow);
}

#blog ul li .article-headers {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid var(--accent-yellow);
}
#blog ul li .article-headers .article-title {
    font-family: "Druk";
    font-style: italic;
    font-size: 3rem;
    font-weight: 900;
    text-align: right;
    text-transform: uppercase;
    line-height: 1;
    color: var(--accent-yellow);
}

#blog ul li .article-headers .acticle-desc {
    max-width: 27.5rem;
    font-size: 1.7rem;
    color: #fff;
}

#blog ul li .article-thumb {
    padding: 1.5rem;
    
    background-image: var(--bk, "url('/blog/1.webp')");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
}
#blog ul li .article-thumb .btn {
    margin-top: auto;
    width: 14rem;
    box-shadow: var(--shadow-s);
}

#blog .presentation {
    padding-block: 1rem;

    /* grid-column: 1 / -1; */
    display: flex;
    justify-content: center;
}
#blog .presentation .btn {
    width: 20rem;
}


@media (max-width: 1450px) {
    #mainLogo {
        max-width: 28rem;
    }
    #hero .hero-inner {
        max-width: 112rem;
    }
    #hero .hero-inner .titles {
        gap: 3.5rem;
    }
    #hero .hero-inner .titles h1 {
        font-size: 5.2rem;
        line-height: 1.3;
    }
    #hero .hero-inner .titles h2 {
        font-size: 2.2rem;
        line-height: 1.5;
        text-wrap: balance;
    }
}

@media (max-width: 950px) {
    #hero .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    #hero .hero-inner .titles {
        place-items: center;
        text-align: center;
        text-wrap: balance;
        gap: 2rem;
    }
    #hero .hero-inner .superman a {
        display: none;
    }

    #hero .hero-inner .titles h1 {
        max-width: 45rem;
        font-size: 3.5rem;
        line-height: 1;
    }
    #hero .hero-inner .titles h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    h3, h4 {
        font-size: 2.5rem !important;
        line-height: 1 !important;
    }

    /* Services */
    #services {
        padding-bottom: unset;
    }
    #services .services-inner {
        overflow: visible;
    }
    #services .services-inner svg {
        display: none;
    }
    #services .gallery,
    #services .gallery img {
        display: none !important;
    }
    #services ul.img-grid {
        display: grid;
    }
    #services ul.img-grid li[name="switcher"] {
        border-bottom: 2px solid #000;
        position: relative;
        isolation: isolate;
        overflow: hidden;
    }
    #services ul.img-grid li[name="switcher"] img {
        display: block;

        position: absolute;
        inset: 0; top: 50%;
        transform: translateY(-50%);

        z-index: -2;
    }
    #services ul.img-grid li[name="switcher"]::before {
        content: "";
        position: absolute;
        inset: 0;

        background-color: #00000099;
        z-index: -1;
    }
    #services ul.img-grid li[name="switcher"]:not(:nth-of-type(1))::after {
        content: "";
        
        position: absolute;
        inset: 0; height: 1rem;

        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 3px);
        background-color: var(--accent-yellow);
    }
    #services ul.img-grid li[name="switcher"]:nth-of-type(odd)::after {
        transform: scaleX(-1);
    }

    /* Reason */
    #reason {
        background-position: 25% bottom;
        background-size: cover;
    }
    #reason .reason-inner {
        grid-template-columns: 1fr;
        padding-bottom: 60rem;
    }
    #reason .details-box summary span,
    #trailers .details-box summary span {
        font-size: 2rem;
    }

    /* Trailers */
    #trailers #trailers-accordeon {
        grid-template-columns: 1fr;
    }
    #trailers-titles .right {
        margin-right: 7%;
    }
    #trailers-titles .left {
        margin-left: -7%;
    }
    #trailers-image {
        padding-block: 3.5rem 1rem;

        background: linear-gradient(
            to bottom,
            #000 60%,
            #000000ab
        );

        position: sticky;
        top: 0;

        z-index: 1;
    }
    #truck-trailer {
        scale: 50%;
    }
    #truck-trailer.-gone {
        transform: translateX(-200%);
    }

    /* Chain */
    #chain .chain-inner-scene {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    #chain .chain-inner-scene ol#operations-list {
        padding-block: 5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:"a0 a4""a1 a5""a2 a6""a3 .";
    }
    #chain .chain-inner-scene ol#operations-list li {
        font-size: 2rem;
        text-shadow: #000 1px 1px 2px;
        grid-area: var(--area);
    }

    /* Reviews */
    #reviews {
        padding-block: 5rem;
    }
    #reviews .reviews-box {
        grid-template-columns: 1fr;
    }
    #reviews .reviews-box img {
        /* max-width: 35rem;
        margin-inline: auto; */
        display: none;
    }
    #reviews .reviews-inner svg.blob {
        display: none;
    }

    /* Team */
    #team {
        padding-bottom: 5rem;
    }
    #team h3 {
        padding-bottom: 6rem;
    }
    #team .team-inner .team-card {
        max-width: 95%;
        aspect-ratio: 400 / 220;
    }
    #team .team-inner .team-card img {
        width: 100%;
        height: auto;
    }
    #team .team-inner .team-card::before,
    #team .team-inner .team-card::after {
        top: unset;
        bottom: 0; width: 100%;
        height: var(--w, 17px);
        scale: 1 -1;
    }

    /* CTA */

    #CTA .CTA-inner {
        height: 100%;
        bottom: unset;
        top: -15%;
    }
    #CTA .CTA-inner .cta-box {
        justify-content: center;
    }
    #CTA .CTA-inner .cta-box .call-us {
        max-width: 28rem;
        font-size: 4.5rem;
        position: absolute;
        translate: 0 -55%;
    }
    #CTA .CTA-inner .truck-image {
        width: 79rem;
        position: absolute;
        transform: translateX(20%);
        bottom: 0;
    }

    /* Blog */
    #blog ul {
        grid-template-columns: 1fr;
    }
    #blog ul li {
        margin-inline: auto;
        width: min(40rem, 100%);
    }
    #blog .presentation {
        grid-column: unset;
    }
}


@media (max-width: 640px) {
    :root {
        --player-box-height: 95dvh;
        font-size: 9px !important;
    }
    #player {
        display: none;
    }
    #hero .hero-inner {
        padding-top: 25rem;
    }
    #truck-trailer {
        scale: 35%;
    }
    #truck-trailer.-gone {
        transform: translateX(-300%);
    }
}