@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Kanit", sans-serif;
    padding: 0;
    margin: 0;
    outline: none !important;
}

::selection {
    background: #df1b21;
    color: aliceblue !important;
}

body {
    overflow-x: hidden !important;
    background: whitesmoke;
}

#Header {
    background: white;
    border-top: solid 7px #df1b21;
    position: relative;
    z-index: 2;
}

.HeaderLogo {
    display: flex;
    margin: 0 0;
    background-color: #df1b21;
    height: 95px;
}

.HeaderLogo img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 130px;
    background: #df1b21;
    padding: 15px;
    padding-left: 20px;
    object-fit: contain;
    transition: 300ms;
    cursor: pointer;
}

.HeaderTabs {
    display: flex;
    justify-content: start;
    width: fit-content;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    padding: 0;
    margin: 0;
}

.HeaderTabs li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 15px;
    font-size: 17px;
    margin: 0 0;
    cursor: pointer;
    user-select: none;
    transition: 300ms;
    font-weight: 600;
    margin-left: 15px;
    text-transform: uppercase;
}

.HeaderTabs li:hover {
    color: #df1b21;
}


.HeaderLogo img:hover {
    padding: 25px;
    padding-top: 20px;
}

.BannerSlider {
}

.BannerSliderItem {
}

.BannerSliderItem img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%) contrast(80%);
    object-position: center;
}

.BannerSliderItemContent {
    position: absolute;
    left: 0;
    top: 0;
    width: 665px;
    height: 100%;
    z-index: 2;
    background: #ffffffab;
    max-width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    padding-left: 95px;
}

.BannerSliderItemContent h2 {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    font-weight: bolder;
    color: #df1b21;
}

.BannerSliderItemContent p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
}

.BannerSliderItemInner {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.4;
    overflow: hidden;
    position: relative;
}

#Banner {
    padding: 0;
    position: relative;
}

.BannerArrows {
    position: absolute;
    left: 0;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    height: 0;
}

.BannerArrows button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 80px;
    background: white;
    border: none;
    transition: 300ms;
}

.BannerArrows button img {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 14px;
    opacity: 0.7;
}

.BannerArrows button:hover {
    transform: scale(1.2);
}

#Banner .slick-arrow {
    display: none !important;
}

.BannerSlider .slick-dots {
    position: absolute;
    left: 104px;
    bottom: 27px;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.BannerSlider .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.BannerSlider .slick-dots li div {
    width: 15px;
    height: 15px;
    background: #1d1d1d;
    margin: 0 5px;
    border-radius: 1000px;
    cursor: pointer;
    opacity: 0.3;
}

.BannerSlider .slick-dots .slick-active div {
    opacity: 1.0;
    background: #df1b21;
}

#Models {
    padding-top: 90px;
    padding-bottom: 100px;
}

.SharedSectionHeader {
    display: block;
    margin: 0 auto 40px;
    width: 900px;
    max-width: 100%;
    text-align: center;
}

.SharedSectionHeader h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}

.SharedSectionHeader p {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-weight: 300;
}

.ModelsFiltration {
    display: flex;
    justify-content: center;
    margin: 50px auto 35px;
    width: fit-content;
    /* background: red; */
    padding: 10px;
}

.ModelsFiltration button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    padding: 10px 25px;
    border-radius: 1000px;
    margin: 0 5px;
    border: none;
    font-weight: 500;
    color: #7e7e7e;
    transition: 300ms;
}

.ModelsFiltration .ActiveModelsFiltration {
    background: #df1b21;
    color: aliceblue;
}

.ModelsFiltration button:hover {
    transform: scale(1.1);
    filter: brightness(95%);
}

.ModelItem {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    background: white;
    width: 290px;
    border-bottom: solid 7px #df1b21;
    box-shadow: 0px 0px 59px -35px #949494;
    cursor: pointer;
    overflow: hidden;
}

.ModelItem img {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.8;
    object-fit: contain;
    transition: 400ms;
}

.ModelItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
    color: #3a3a3a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
}

.ModelItem label {
    display: block;
    margin: 3px auto;
    width: 100%;
    font-weight: 500;
    color: #909090;
}

.ModelItem label strong {
    font-weight: unset;
    font-size: 13px;
}

.ModelItemInfo {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
}

.UNKSectionImg {
}

.UNKSectionImg div {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    background-size: cover;
    background-repeat: no-repeat;
}

.UNKSectionContent {
    display: flex;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1 / 0.5;
    background: whitesmoke;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}

.UNKSectionContentInner {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.UNKSectionContentInner h4 {
    display: block;
    margin: 15px auto;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    color: #df1b21;
}

.UNKSectionContentInner p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #3e3e3e;
}

#Events {
    background: #ffffff;
    padding-top: 90px;
    border-top: dashed 1px #df1b21;
    padding-bottom: 120px;
}

#Events .SharedSectionHeader {
    margin-bottom: 80px;
}

#Accessories {
    padding-top: 70px;
}

.AccessoriesItem {
    display: block;
    margin: 15px auto;
    width: 100%;
    background: white;
    position: relative;
    overflow: hidden;
    padding-left: 30%;
    border-left: solid 4px #df1b21;
    cursor: pointer;
    transition: 300ms;
}

.AccessoriesItem img {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    object-fit: contain;
    transition: 300ms;
}

.AccessoriesItemInfo {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 35px 20px;
}

.AccessoriesItemInfo h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #3a3a3a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
    transition: 300ms;
}

.AccessoriesItemInfo label {
    display: block;
    margin: 0 auto;
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
    color: #6f6f6f;
}

.AccessoriesItemInfo label strong {
    font-weight: unset;
    margin-left: 4px;
    font-size: 12px;
}

#Footer {
    background: #df1b21;
    padding-top: 70px;
    position: relative;
    z-index: 2;
    padding-bottom: 130px;
}

.FooterSocialMedia {
}

.FooterSocialMedia h4 {
    display: block;
    margin: 0 auto 20px;
    width: 98%;
    font-size: 29px;
    color: aliceblue;
    text-transform: uppercase;
    font-weight: bold;
}

.FooterSocialMediaGH {
    display: flex;
    justify-content: start;
    width: fit-content;
    margin: 0 0 25px;
    align-items: center;
}

.FooterSocialMediaGH a {
    text-decoration: none !important;
    color: aliceblue;
    font-size: 30px;
    margin: 0px 0;
    margin-right: 6px;
    transition: 300ms;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
}


.FooterSocialMediaGH a:hover {
    transform: scale(1.2);
}

.FooterSocialMedia h6 {
    display: block;
    margin: 16px auto;
    width: 100%;
    color: aliceblue;
    font-size: 21px;
}

.FooterSocialMedia h6 i {
    width: 33px;
    text-align: center;
}

.FooterCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.FooterCenterInner {
    display: block;
    margin: 0 auto;
    width: fit-content;
    height: fit-content;
}

.FooterCenterInner img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-height: 140px;
    max-width: 100%;
}

.FooterSubForm {
}

.FooterSubFormHolder {
    display: block;
    margin: 12px auto;
    width: 100%;
    background: white;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.FooterSubFormHolder input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    z-index: 0;
    padding: 0 26px;
    font-size: 14px;
    padding-left: 40px;
}

.FooterSubFormHolder i {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8b8b8b;
}

.FooterSubForm textarea {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 14px;
    padding: 7px 40px;
}

.FooterSubForm button[type=submit] {
    display: block;
    margin: 20px auto;
    float: right;
    color: aliceblue;
    background: none;
    border: solid 1px;
    padding: 8px 21px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 400ms;
}

.FooterSubForm button[type=submit] i {
    margin-right: 8px;
}

.FooterSubForm button[type=submit]:hover {
    background: aliceblue;
    color: red;
    border-color: aliceblue;
}

.FooterSocialMediaParent {
    display: flex;
    justify-content: start;
    width: 100%;
    height: 100%;
    align-items: center;
}

#OurLocation {
    filter: grayscale(1);
    transition: 400ms;
}

#OurLocation iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.2;
    outline: none !important;
}

.FooterBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: 275px;
    background-repeat: repeat;
    mix-blend-mode: difference;
    opacity: 0.7;
    z-index: -1;
}

.UNKSectionContentInner {
}

.UNKSectionContentInner button {
    display: block;
    margin: 20px 0 0;
    width: fit-content;
    padding: 16px 21px;
    background: #df1b21;
    color: aliceblue;
    border: none;
    border-radius: 5px;
    transition: 300ms;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 12px;
}

.UNKSectionContentInner button:hover {
    background: #3c3c3c;
    transform: scale(1.1);
}

.ScrollerBtn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999999;
    width: 60px;
    height: 60px;
    background: #df1b21;
    border: none;
    border-radius: 1000px;
    display: none;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    margin: 2%;
}

.ScrollIndicatorAmount {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #df1b21;
}

.ScrollIndicatorAmountParent {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    z-index: 99999999;
}

.ScrollerBtn img {
    display: block;
    margin: 0 auto;
    width: 29px;
    filter: invert(1);
    pointer-events: none;
}

.ScrollerBtn:hover {
    background: #be292c;
    transform: scale(1.3);
    box-shadow: -7px -6px 1px 0px #00000047;
}

.ModelItem:hover img {
    transform: scale(1.1);
}

.MotorcycleArt {
    display: block;
    margin: 0 auto;
    position: relative;
    padding-top: 130px;
    overflow: hidden;
}

.MotorcycleArt img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 90%;
    max-height: 360px;
    position: relative;
    z-index: 2;
}

.MotorcycleArtBG {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: 275px;
    background-repeat: repeat;
    mix-blend-mode: difference;
    opacity: 0.4;
    z-index: -1;
}

.MotorcycleArtFADE {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    background: whitesmoke;
    box-shadow: 0px 40px 82px 38px whitesmoke;
    z-index: 1;
}

.MotorcycleArtText {
    display: block;
    margin: 0 auto;
    width: 800px;
    text-align: center;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.MotorcycleArtText h2 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #df1b21;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 8px;
}

.MotorcycleArtText p {
    display: block;
    margin: 20px auto;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #787878;
}

#OurLocation:hover {
    filter: grayscale(0);
}

.Preloader {
}

.PreloaderInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.PreloaderDiv {
}

@keyframes PreloaderLogoAnimation {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.0);
    }
}

.PreloaderDiv img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: 120px;
    transform: translatey(0px);
    -webkit-animation: PreloaderLogoAnimation 3s ease-in-out infinite;
    animation: PreloaderLogoAnimation 3s ease-in-out infinite;
}

.PreloaderDiv label {
    display: block;
    margin: 17px auto;
    width: fit-content;
    font-size: 15px;
    letter-spacing: 2px;
    color: #8e8e8e;
}


.ProductImageGH {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
    background: white;
    position: relative;
    overflow: hidden;
    border: dashed 1px #df1b21;
}

.ProductImageGH img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px;
}

.ProductDetails {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.ProductDetailsName {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #df1b21;
}

#ProductDetails {
    padding-top: 90px;
    padding-bottom: 120px;
}

.ProductDetailsTextEditorContentGH {
    display: block;
    margin: 15px auto;
    width: 100%;
    overflow: hidden;
}

.ProductDetailsNamePrice {
    display: block;
    margin: 21px auto;
    width: 100%;
    font-size: 26px;
    font-weight: bold;
    color: #4d4d4d;
}

.ProductDetailsNamePrice strong {
    font-size: 18px;
}

.ProductDetailsCategory {
    display: block;
    margin: 10px auto;
    width: 100%;
    font-size: 14px;
}

#EventShow {
    padding-top: 80px;
    padding-bottom: 42px;
}

.EventPage {
}

.EventCover {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    aspect-ratio: 1/0.3;
    background: white;
    position: relative;
    overflow: hidden;
}

.EventCover .setbg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.EventCoverDetails {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.EventCoverDetails h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-weight: bold;
    color: #df1b21;
    font-size: 33px;
}

.EventCoverDetails label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
}

.EventCoverDetails label i {
    margin-right: 5px;
    color: #848484;
}

.EventContentGH {
    display: block;
    margin: 26px auto;
    width: 100%;
    overflow: hidden;
}

.AccessoriesItem:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 39px -21px #00000073;
}

.AccessoriesItem:hover h4 {
    color: #df1b21;
}

.AccessoriesItem:hover img {
    transform: scale(1.1);
}

#FooterCP {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0000001a;
    padding: 0;
    margin: 0 auto;
}


.CopyRights {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: aliceblue;
}

.CopyRights p {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 15px 15px;
}

.CopyRights p a {
    text-decoration: none;
}

.CopyRights p a img {
    display: inline-block;
    vertical-align: unset;
    width: auto;
    height: 19px;
    margin: 0 5px;
    transition: 300ms;
    filter: drop-shadow(0px 0px 0px black);
}

.CopyRights p a img:hover {
    transform: scale(1.1);
    filter: drop-shadow(2px 4px 6px black);
}

.SideMenuBtn {
    display: none;
}

.SideMenu {
    display: none;
}

.ModelsRF {
    display: none;
    margin: 0 auto;
    width: 100%;
}

.ModelsRFInner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
}

.ModelsRFDiv {
    display: block;
    margin: 50px auto;
    width: fit-content;
    text-align: center;
}

.ModelsRFDiv img {
    display: block;
    margin: 0 auto;
    width: 175px;
    filter: hue-rotate(140deg);
}

.ModelsRFDiv h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 17px;
    color: #7d7d7d;
}

.ModelsRFDiv h4 u {
    display: inline-block;
    text-decoration: none;
    color: #df1b21;
}
