:root {
    --yamt-red: #e30410;
    --yamt-white: #fff;
    --yamt-gray: #aeaeae;
    --yamt-black: #000;
    --yamt-gray-2: #404040;
}

@font-face {
    font-family: Play Bold;
    src: url(../../fonts/play/Play-Bold.eot);
    src: url(../../fonts/play/Play-Bold.eot?#iefix) format("embedded-opentype"),
        url(../../fonts/play/Play-Bold.woff2) format("woff2"),
        url(../../fonts/play/Play-Bold.woff) format("woff"),
        url(../../fonts/play/Play-Bold.ttf) format("truetype"),
        url(../../fonts/play/Play-Bold.svg#Play-Bold) format("svg");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Play Regular';
    src: url(../../fonts/play-regular-webfont.woff2) format('woff2'),
         url(../../fonts/play-regular-webfont.woff) format('woff'),
         url(../../fonts/play-regular-webfont.svg#playregular) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Srotone Bold';
    src: url(../../fonts/srotone-bold-webfont.woff2) format('woff2'),
         url(../../fonts/srotone-bold-webfont.woff) format('woff'),
         url(../../fonts/srotone-bold-webfont.svg#srotonebold) format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Animations */

@property --translateY {
    syntax: "<percentage>";
    inherits: false;
    initial-value: -50%;
}
@property --opacity {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}
@property --blur {
    syntax: "<length>";
    inherits: false;
    initial-value: 100px;
}
@property --pulse {
    syntax: "<length>";
    inherits: false;
    initial-value: -10px;
}
@property --mask {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}
@property --size-bg {
    syntax: "<length>";
    inherits: false;
    initial-value: 400px;
}
.animate-letters-yamt,
.animate-scroll-yamt-desktop {
    opacity: var(--opacity);
    transform: translateY(var(--translateY));
    filter: blur(var(--blur));
    animation: animate-letters-yamt 1s ease-in-out forwards;
    animation-delay: calc((var(--i) - 1) * 0.2s);
}
.animate-hero-banner-yamt {
    mask: radial-gradient(var(--size-bg) at 15% 62%, black var(--mask),transparent var(--mask));
    -webkit-mask: radial-gradient(var(--size-bg) at 15% 62%, black var(--mask),transparent var(--mask));
    animation: animate-hero-banner-yamt 1.2s 1.45s ease forwards;
}
@keyframes animate-hero-banner-yamt {
    0% {
        --mask: 0%;
        --size-bg: 400px;
    }
    100% {
        --mask: 100%;
        --size-bg: 1000px;
    }
}
.pulse-scroll-yamt {
    opacity: var(--opacity);
    transform: translateY(var(--pulse));
    animation: pulse-scroll-yamt 1.5s linear infinite;
}
.animate-square-yamt {
    --bounce: linear(
        0, 0.063, 0.25, 0.563, 1 36.4%,
        0.812, 0.75, 0.813, 1 72.7%,
        0.953, 0.938, 0.953, 1 90.9%,
        0.984, 1 100% 100%
    );
    opacity: var(--opacity);
    transform: translateY(var(--translateY));
    animation: square-yamt .5s forwards;
    animation-delay: calc(((var(--j) - 1) * 0.2s) + 1s);
    animation-timing-function: var(--bounce);
}
@keyframes square-yamt {
    0% {
        --opacity: 0;
        --translateY: -50%;
    }
    20% {
        --opacity: 1;
    }
    100% {
        --opacity: 1;
        --translateY: 0%;
    }
}
@keyframes pulse-scroll-yamt {
    0%, 10% {
        --opacity: 0;
        --pulse: -35px;
    }
    20%,80% {
        --opacity: 1;
    }
    90%, 100% {
        --opacity: 0;
        --pulse: 35px;
    }
}
@keyframes animate-letters-yamt {
    0% {
        --translateY: -50%; 
        --blur: 100px;
        --opacity: 0;
    }
    90%, 100% {
        --opacity: 1;
        --translateY: 0%;
    }
    100% {
        --opacity: 1;
        --blur: 0;
    }
}

.yamt-section-2 {
    background: red;
}

/* End Animations */

.play-bold {
    padding-top: 20rem;
    font-family: Play Bold, sans-serif;
}
.play-font-bold {
    font-family: Play Bold, sans-serif;
}
.font-montserrat {
    font-family: Montserrat, sans-serif;
}

.text-balance {
    text-wrap: balance;
}

.w-box {
    max-width: var(--w);
    margin-inline: var(--margin-box);
}

.play-regular {
    font-family: Play Regular, sans-serif;
}

.srotone-bold {
    font-family: Srotone Bold, sans-serif;
    letter-spacing: 0.1rem;
}

.uppercase {
    text-transform: uppercase;
}

.p-leading {
    line-height: 1.2;
}

.relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.yamt-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
}

.yamt-section-hero-pattern {
    background-position: center;
}

.pattern-section {
    height: calc(100% - 79.2rem);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.full-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-w-full img {
    width: 100%;
}

.yamt-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding-top: 100px;
}

.yamt-hero-title {
    max-width: 644px;
    margin-top: 15rem;
}

.yamt-hero-banner {
    max-width: 860px;
    height: 73vh;
    position: relative;
}

.circle-yamt {
    position: absolute;
    bottom: 1rem;
    left: 5rem;
    width: 133px;
    height: 133px;
    background: var(--yamt-red);
    border-radius: 100%;
    z-index: 10;
}

.square-yamt {
    width: 41px;
    height: 103px;
    background: var(--yamt-gray);
    position: absolute;
    bottom: 4rem;
    left: 13rem;
}

.square-yamt-2 {
    width: 104px;
    height: 104px;
    background: var(--yamt-red);
    position: absolute;
    bottom: -1rem;
    left: 15rem;
}

.animate-scroll-yamt {
    margin-top: 10rem;
    display: inline-block;
    width: 38.75px;
    height: 51.67px;
    border: 3px solid #000;
    border-radius: 19px;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem auto 0 auto;
    overflow: hidden;
}

.animate-scroll-yamt img {
    width: 15px;
}

.yamt-hero-mid-section {
    overflow: hidden;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: -1;
}

.hero-mid-section {
    max-width: 1400px;
    height: 1400px;
    background: var(--yamt-red);
    border-radius: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    margin: -900px auto 0 auto;
}

.hero-mid-description-container-yamt {
    width: 700px;
}

.hero-mid-description-inner-yamt {
    width: 614px;
    color: var(--yamt-white);
    padding-bottom: 18.5rem;
}

.hero-mid-description-inner-yamt h2 {
    width: 100%;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-mid-description-inner-yamt p {
    font-size: 24px;
}

.footer-hero-section {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--yamt-black);
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--yamt-white);
    position: relative;
    z-index: 10;
}

.video-fixed-overlay {
    position: absolute;
    font-size: 36px;
    text-align: center;
    color: white;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
}

.footer-hero-description-inner-yamt h2 {
    font-size: 34px;
    text-align: center;
    padding-bottom: 4rem;
}

.footer-hero-description-inner-yamt {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-hero-description-inner-yamt p {
    font-size: 24px;
}

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

.black-overlay {
    background: linear-gradient(0deg, #000000 0%, transparent 100%);
}

.content-section-yamt {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    color: var(--yamt-white);
}

.content-section-yamt-inner {
    width: 100%;
    padding: 0 5rem 8rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.items-end {
    align-items: end;
}

.h-screen {
    height: 100vh;
    color: var(--yamt-white);
    z-index: 20;
}

.content-section-yamt-title-xl h2 {
    font-size: 36px;
}

.content-section-yamt p {
    margin-top: 1rem;
    font-size: 24px;
}

.flex-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-reel {
    position: relative;
    background: var(--yamt-red);
    text-transform: uppercase;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.red-reel h3 {
    font-size: 38px;
    white-space: nowrap;
    color: var(--yamt-white);
    padding: 1.5rem 1rem;
    letter-spacing: 1rem;
    margin: 0;
}

.yamt-bike-section {
    background: var(--yamt-gray-2);
    color: var(--yamt-white);
    padding: 8rem 0;
}

.content-section-yamt-inner-bike {
    padding: 0 5rem;
}

.yamt-bike-section-title {
    text-align: center;
}

.yamt-bike-section-title h2 {
    font-size: 36px;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
}

.yamt-bike-section-title p {
    font-size: 24px;
}

.grid-bikes {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.bike-item {
    cursor: pointer;
    border-radius: 4rem;
    border: 2px solid #e2e2e233;
    padding: 1rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    display: block;
}

.bike-bgs {
    border-radius: 4rem;
    background: linear-gradient(
        135deg,
        var(--yamt-red),
        rgba(255, 255, 255, 0.3)
    );
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 0;
}

.bike-bgs::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--yamt-gray-2);
    border-radius: 4rem;
    z-index: 2;
}
.bike-item:hover .bike-bgs {
    opacity: 1;
}

.bike-content {
    position: relative;
    z-index: 10;
}

.bike-content {
    z-index: 20;
}

.bike-item-photo {
    width: 100%;
    height: 300px;
}

.bike-item-photo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.bike-item-content {
    padding: 1rem;
    font-family: 'Play Regular';
    color: white;
}

.bike-item-content-title h2 {
    font-family: 'Play Bold', sans-serif;
    font-size: 21px;
}

.bike-item-content-title span {
    font-size: 12px;
    opacity: 0.6;
}
.bike-item-description-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.bike-item-description-grid h3 {
    font-family: 'Play Bold', sans-serif;
    font-size: 19px;
}
.bike-item-description-grid p {
    font-size: 13px;
    opacity: 0.8;
}
.bike-item-description-grid span {
    font-size: 13px;
}

.bike-item-button {
    margin-top: 2rem;
    margin-bottom: 1rem;
    height: 66px;
    color: var(--yamt-white);
    transition: all 0.3s ease;
    border-radius: 20rem;
    background: transparent;
    border: 2px solid var(--yamt-white);
    width: 100%;
    font-size: 22px;
}

.bike-item:hover .bike-item-button {
    background: var(--yamt-red);
    border: 2px solid var(--yamt-red);
}

.wrapper-footer {
    position: relative;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
}

.marquee h3 {
    font-family: 'Play Bold', sans-serif;
    text-transform: uppercase;
}

.overflow-hidden {
    overflow: hidden;
}
.yamt-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.yamt-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.video-fixed {
    position: fixed;
    clip-path: inset(100% 0% 0% 0%);
}

.video-btn {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    transform: scale(1.1);
}

.video-btn i {
    color: black;
    font-size: 10px;
}

.animate-scroll-yamt-mobile {
    display: none;
}

.inner-padding {
    padding: 0 6rem;
}

.bikes-swiper-container {
    max-width: 423px;
    margin: 0 auto;
    padding-top: 6rem;
}
@media (max-width: 1480px) {
    .animate-hero-banner-yamt {
        max-width: 660px;
    }
}
@media (max-width: 1380px) {
    .animate-hero-banner-yamt {
        max-width: 600px;
    }
    .yamt-hero-title {
        margin-top: 8rem;
    }
}
@media (max-width: 1299px) {
    .hero-mid-section {
        height: 1340px;
    }
    .yamt-hero-title {
        margin-top: 7rem;
    }
    .hero-mid-description-container-yamt {
        width: 540px;
    }
    .hero-mid-description-inner-yamt {
        padding-bottom: 13rem;
    }
    .inner-padding {
        padding: 0 4rem;
    }
    .pattern-section {
        height: calc(100% - 73.2rem);
    }
}
@media (max-width: 1199px) {
    .pattern-section {
        height: calc(100% - 73.2rem);
    }
    .hero-mid-description-inner-yamt {
        padding-bottom: 15rem;
    }
    .hero-mid-description-inner-yamt h2,
    .content-section-yamt-title-xl h2 {
        font-size: 28px;
    }
    .content-section-yamt p {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .video-fixed-overlay {
        font-size: 28px;
    }
    .pattern-section {
        height: 100%;
    }
    .yamt-hero-container {
        z-index: 12;
    }
    .animate-scroll-yamt {
        margin: 0rem auto 0 auto;
    }
    .hero-mid-section {
        height: auto;
        border-radius: 0;
        align-items: start;
        justify-content: start;
        margin: 0 auto;
        z-index: 10;
        position: relative;
    }

    .yamt-hero-mid-section {
        z-index: 1;
    }
    .yamt-hero-container {
        flex-direction: column;
        align-items: center;
    }
    .yamt-hero-title {
        margin-top: 0;
    }
    .hero-mid-description-inner-yamt {
        padding: 3rem;
    }
    .mobile-slider-padding {
        padding-inline: 0;
    }
    .mobile-slider-padding .yamt-bike-section-title,
    .bikes-swiper {
        padding-inline: 3rem;
    }
    .grid-bikes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .video-fixed-overlay {
        font-size: 16px;
    }
    .pattern-section {
        height: 100%;
    }
    .yamt-hero-container {
        flex-direction: column;
        padding-top: 70px;
    }
    .yamt-hero-title {
        max-width: 226px;
        margin: 2rem auto 0 auto;
    }

    .yamt-hero-banner {
        max-width: 270px;
        height: 180px;
        margin: 0 auto;
        position: inherit;
    }

    .grid-bikes {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-mid-description-container-yamt {
        padding-top: 13rem;
        width: 100%;
    }

    .hero-mid-description-inner-yamt {
        width: 100%;
    }

    .circle-yamt {
        display: none;
    }

    .square-yamt {
        width: 12px;
        height: 32px;
        bottom: 1rem;
        left: 1rem;
    }
    .square-yamt-2 {
        width: 32px;
        height: 32px;
        bottom: -0.5rem;
        left: 1.5rem;
    }

    .animate-scroll-yamt-desktop {
        display: none;
    }

    .animate-scroll-yamt-mobile {
        display: flex;
        margin: 0;
        position: absolute;
        top: 1rem;
        left: -4.5rem;
        width: 28.75px;
        height: 41.67px;
        border: 2px solid #000;
    }
    
    .footer-hero-description-inner-yamt h2 {
        text-align: left;
        padding-bottom: 1rem;
    }

    .inner-padding {
        padding: 0 3rem;
    }

    .footer-hero-section {
        padding-block: 4rem;
    }

    .animate-scroll-yamt img {
        width: 12px;
    }

    .content-section-yamt-inner {
        padding: 0 3rem 2rem;
    }
    .content-section-yamt-inner-bike {
        padding: 0 2rem;
    }
    .mobile-slider-padding {
        padding-inline: 0;
    }
    .hero-mid-description-inner-yamt h2,
    .footer-hero-description-inner-yamt h2,
    .content-section-yamt-title-xl h2 {
        font-size: 16px;
    }

    .hero-mid-description-inner-yamt p,
    .footer-hero-description-inner-yamt p,
    .content-section-yamt p {
        font-size: 14px;
    }

    .red-reel h3 {
        font-size: 12px;
        padding: 0.6rem 1rem;
        letter-spacing: 0.4rem;
    }

    .yamt-bike-section-title h2 {
        font-size: 12px;
    }

    .yamt-bike-section-title p {
        font-size: 14px;
    }

    .yamt-bike-section {
        padding-block: 5rem;
    }
    
    .bikes-swiper-container {
        padding-top: 4rem;
    }

    .bike-item-content-title h2 {
        font-size: 15px;
    }

    .bike-item-content-title span {
        font-size: 10px;
    }
    .bike-item-description-grid h3 {
        font-size: 14px;
    }

    .rmove-mobile-br br {
        display: none !important;
    }

    .hero-mid-description-inner-yamt h2 {
        width: 100%;
    }

    .bike-item-button {
        background: white;
        color: var(--yamt-black);
        font-size: 14px;
        height: 50px;
    }
    .bike-item-photo {
        height: 210px;
    }
}
