@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: M-BI;
    src: url(fonts/Montserrat-BlackItalic.ttf);
}
@font-face {
    font-family: M-EB;
    src: url(fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
    font-family: M-B;
    src: url(fonts/Montserrat-Bold.ttf);
}
@font-face {
    font-family: M-M;
    src: url(fonts/Montserrat-Medium.ttf);
}
@font-face {
    font-family: M-L;
    src: url(fonts/Montserrat-Regular.ttf);
}
@font-face {
    font-family: P-B;
    src: url(fonts/PPMonumentExtended-Black-BF645465a1e687b.otf);
}
@font-face {
    font-family: P-R;
    src: url(fonts/PPMonumentExtended-Regular-BF645465a253250.otf);
}
@font-face {
    font-family: M-BI;
    src: url(fonts/Montserrat-BlackItalic.ttf);
}
@font-face {
    font-family: SO;
    src: url(fonts/Southera.ttf);
}

:root {
    --primary-bg-color: #0D0D0D;
    --primary-color:    #19191A;
    --nav-text:         #fffffffd;
    --nav-text2:        #E2F85B;
    --right-bc:         #212121;
    --help-color:       #33DAFF;
    --help-back:        #058eb177;
    --settings:         #323234;
    --nav-height:       4.4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--primary-bg-color);
    color: white;
    font-size: 16px;
    overflow-x: hidden;
    user-select: none;
    height: 100%;
    scrollbar-width: none;
}

#FireNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.5rem;
    gap: 1.8rem;
    z-index: 1000;
}

/* Logo */
#logo {
    font-family: M-BI;
    font-size: clamp(1.5rem, 4.2vw, 2rem);
    color: white;
    white-space: nowrap;
    line-height: 1;
}

/* Hamburger */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s;
}

/* Navigation items */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.5rem;
}

.navs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
}

.navs:hover {
    background: rgba(255, 165, 0, 0.14);
}

.navs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: orange;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.navs:hover::after {
    transform: scaleX(1);
}

.navicons,
.navicons2 {
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
}

.navicons  { fill: var(--nav-text);  }
.navicons2 { fill: var(--nav-text2); }

.navnavtext,
.navnavtext2 {
    font-family: M-B;
    font-size: clamp(0.78rem, 1.9vw, 0.92rem);
    white-space: nowrap;
}

.navnavtext  { color: var(--nav-text);  }
.navnavtext2 { color: var(--nav-text2); }

/* Right section */
#navright {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--right-bc);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

#helpbuble {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--help-back);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    transition: all 0.25s;
}

#helpbuble:hover {
    background: rgba(51, 218, 255, 0.22);
}

#helptext {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--help-color);
}

#help {
    font-family: M-B;
    font-size: clamp(0.78rem, 1.9vw, 0.9rem);
    color: var(--help-color);
}

#settings,
#settings2 {
    width: 2.3rem;
    height: 2.3rem;
    background: var(--settings);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#settings:hover,
#settings2:hover {
    background: #454549;
}

#settings svg,
#settings2 svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: white;
    transition: transform 0.45s;
}

#settings:hover svg {
    transform: rotate(90deg);
}

#profile {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: var(--settings);
    transition: all ease-in-out 300ms;
}
#profile:hover {

    background: #454549;
}
#profile_icon{
    height: 1.4rem;
    fill: #fff;
}
/* ── RESPONSIVE ── */
@media (max-width: 410px){
        #FireNav {
        padding: 0 1.2rem;
        gap:0.5rem;

    }

}
@media (max-width: 1080px) {
    :root {
        --nav-height: 4.2rem;
    }



    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: var(--nav-height) 0 0 0;
        background: #111;
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.8rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    #nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    #nav-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    #nav-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .navs {
        width: 100%;
        padding: 1.1rem 1.3rem;
        font-size: 1.05rem;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    :root {
        --nav-height: 4rem;
    }

    #logo {
        font-size: 1.45rem;
    }

    #help {
        display: none;
    }

    #helpbuble {
        padding: 0.4rem 0.7rem;
    }

    #helptext {
        margin-right: 0;
    }

    #navright {
        gap: 0.6rem;
        padding: 0.35rem 0.7rem;
    }

    #settings, #settings2, #profile {
        width: 2.1rem;
        height: 2.1rem;
    }
}


#navbar_1 {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
#navbar_text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 0 3vw;
}
#navT {
    font-family: M-B;
    font-size: 1.2vw;
    color: #ffffffa4;
    align-items: center;
    display: flex;
    margin-bottom: 0.5vh;
}
#navT2 {
    font-family: P-B;
    font-size: 4vw;
    width: 100%;
    max-width: 15ch; 
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    word-spacing: -0.4vw;
    margin-bottom: 0.5vw;
}
#line{
    height: 3vh;
    width: 4px;
    background-color: #ffffff86;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-right: 0.6vw;
    margin-left: 0.2vw;
    border-radius: 1px;
}

#navT3 {
    font-family: M-M;
    max-width: 40ch;
    color: #ffffffb6;
    margin-bottom: 2vw;
    font-size: 1.2vw;
    padding: 0.2vw 0;
    line-height: 1.6vw;
    letter-spacing: 0.03vw;

}
#nav_split {
    display: inline-block;
    align-items: center;
    gap: 1.5vw;
    flex-wrap: wrap;

}
#nav_button {
    position: relative;
    height: 3vw;
    width: 17vw;
    background-color: #E2F85B;
    color: #181413;
    font-family: M-B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    gap: 0.4vw;
    font-size: 1vw;
}
#nav_button::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -450%;
    width: 700%;
    height: 700%;
    background-color: #ffffff;
    transform: rotate(45deg);
    transition: all 0.7s ease-in-out;
    z-index: 0;
}
#nav_button:hover::before {
    top: -50%;
    left: -230%;
}
#nav_button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
#nav_button:hover span {
    color: #0D0D0D;
}
#nav_arrow {
    height: 1.5vw;
    transform: rotate(45deg);
}











#phone_nav_arrow {
    height: 1.3rem;
    transform: rotate(45deg);
}
#phone_land{
    display: flex;
    justify-content: center;
    position: absolute;
    flex-direction: column;
    padding: 3vw;
    display: none;
    background-color: #181413;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;


}
#phone_navT{
    font-family: M-B;
    font-size: 1rem;
    color: #ffffffa4;
    align-items: center;
    display: flex;
    margin-bottom: 0.5rem;
    gap: 0.5vw;

}
#phone_navT2{
    font-family: P-B;
    font-size: 1.7rem;
    width: 100%;
    max-width: 15ch; 
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    word-spacing: -0.4vw;
    margin-bottom: 0.7rem;

}
#phone_navT3{
    font-family: M-M;
    max-width: 40ch;
    color: #ffffffb6;
    margin-bottom: 1.7rem;
    font-size: 0.9rem;
    padding: 0.2vw 0;
    line-height: 1.3rem;
    letter-spacing: 0.03rem;
}
#phone_nav_button{
    position: relative;
    height: 3rem;
    width: 10rem;
    background-color: #E2F85B;
    color: #181413;
    font-family: M-B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    gap: 0.4rem;
    font-size: 1rem;
}
#phone_nav_button2{
    position: relative;
    height: 3.5rem;
    width: 20rem;
    background-color: #E2F85B;
    color: #181413;
    font-family: M-B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    gap: 0.4rem;
    font-size: 1rem;
    margin-top: 2VW;
    z-index: 10;

}
.phone_bg-video {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 70%;
    object-fit: cover;
    z-index: 0;
    display: none;
}
@media (max-width: 1080px) {
    #navbar_text{
        display: none;
    }
    #phone_land{
        display: flex;
    }
    .phone_bg-video{
        display: block;
    }
    .bg-video{
        display: none;
    }
}
#kategorije{
    display: flex;
    justify-content: space-around;
    padding: 2vw 0;
    box-sizing: border-box;
}
.kategorija{
    position: relative;
    width: 20vw;
    height: 26vw;
    background-color: #323234;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: M-EB;
    letter-spacing: 0.4vw;
    font-size: 1.1vw;
    overflow: hidden;
    color: white;

    transition: transform 300ms ease-in-out;
}


.kategorija::before{
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: #E2F85B;
    top: 100%;
    left: -250%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}


.kategorija span{
    position: relative;
    z-index: 1;
    transition: all ease-in-out 300ms;
}
.kategorija:hover{
    transform: scale(1.05);
}
.kategorija:hover span{
    color: #181413;

}

.kategorija:hover::before{
    top: -100%;
    left: -190%;
}

#kat1{
    background: url(img/flare.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
#kat2{
    background: url(img/luči.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
#kat3{
    background: url(img/paketi.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
#kat4{
    background: url(img/vrvi.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.marquee {
    width: 100%;
    height: 2vw;
    background-color: #e3f85b25;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2vw;
    animation: scroll 20s linear infinite;
}

.neki {
    color: #E2F85B;
    font-family: M-B;
    font-size: 1vw;
    white-space: nowrap;
    letter-spacing: 0.1vw;
}

/* animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}
@media (max-width: 1080px) {
    #kategorije{
        padding: 0;
        flex-wrap: wrap;
    }

    .kategorija{
        width: 50%;
        height: 44vw;
        font-size: 3vw;
        letter-spacing: 1vw;
    }
    .kategorija:hover{
        transform: scale(1);
    }
    .marquee{
        height: 8vw;
    }
    .neki{
        font-size: 3.8vw;
        letter-spacing: 0.8vw;
    }
    .marquee-track{
        gap: 7vw;
    }
}
#title_prodajani{
    font-family: M-BI;
    font-size: 1.2vw;
    display: flex;
    align-items: center;
}
#about_prodajani{
    font-family: M-B;
    color: #ffffffab;
    font-size: 1vw;
    margin-left: 0.1vw;
    margin-top: 0.3VW;
}
#prodajani{
    padding: 0 2vw;
}
#prodaja-items{
    padding: 1vw 0;
    display: flex;
    gap: 1vw;
}




.prodaja_item{
    width: 15vw;
    height: 16vw;
    background-color: #202020;
    padding: 1vw;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 300ms;
}
.prodaja_name{
    font-family: M-B;
    font-size: 0.8vw;
    width: 70%;
    letter-spacing: 0.05VW;
    z-index: 3;
    position: relative;
    
}
.prodaja_podname{
    font-family: M-B;
    font-size: 0.7VW;
    color: #ffffff96;
}
.front_img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    transform: translateY(-1vw) translateX(-1.1vw);
}
.front_img2{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0.08;
    transform: scale(1.6) translateX(-0.6VW) translateY(-0.5vw);
}
.absolutno{
    position: absolute;
}
.prodaja_cena{
    position: absolute;
    bottom: 4.5vw;
    font-family: M-B;
    font-size: 1.2vw;
    display: flex;
    letter-spacing: 0.05vw;
    justify-content:space-around;
    width: 100%;
    z-index: 3;
}
.smaller_euro{
    font-size: 1.2vw;
    color: #ffffffa6;
    display: inline-block;
    transform: translateX(-0.2vw);

}
.prodaja_cenacena{
    position: absolute;
    left: 0;
}
.prodaja_paketcena{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 2vw;
}
.cencena_paketa{
    font-size: 0.5vw;
    color: #ffffffb2;
}
.cencenacena_paketa{
    font-size: 0.7vw;
    color: #ffffffd2;
    letter-spacing: 0.05vw;
}
.podrobnosti_icona{
    height: 1vw;
    fill: #fff;
}
.podrobnost{
    background-color: #4d4d4d;
    display: flex;
    gap: 0.2vw;
    padding: 0.1vw 0.3vw;
    border-radius: 0.3vw;
    justify-items: center;
    align-items: center;
    
}
.prodaja_podrobnosti{
    position: absolute;
    bottom: 0.5vw;
    display: flex;
    width: 86%;
    justify-content: space-between;
    transition: all ease-in-out 300ms;
}
.podrobnosti_title{
    font-family: M-B;
    font-size: 0.6vw;
}
.prodaja_hover{
    background-color: #e3f85b33;
    position: absolute;
    width: 100%;
    height: 1.2vw;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-1vw) translateY(2vw) ;
    color: #E2F85B;
    font-family: M-B;
    letter-spacing: 0.1vw;
    font-size: 0.7vw;
    transition: all ease-in-out 300ms;
}
.prodaja_item:hover .prodaja_hover{
    transform: translateX(-1vw) translateY(0) ;
}
.prodaja_item:hover .prodaja_podrobnosti{
    bottom: 1.6vw;
}
.prodaja_item:hover{
    background-color: #2e2e2e;
}
@media (max-width: 1080px) {
    #title_prodajani{
        font-size: 5vw;
        gap: 1vw;
        padding-bottom: 0.5vw;
    }
    #prodajani{
        padding: 3vw
        ;
    }
    #about_prodajani{
        font-size: 3.5vw;
        padding-left: 0.2vw;
        padding-bottom: 1vw;
    }
}

#prodaja-items {
    display: flex;
    gap: 1vw;
}


.slider-btn {
    display: none;
}

@media (max-width:  1258px){
    .navs{
        padding: 1rem 1rem;
    }
}

@media (max-width:  1080px) {

    /* SLIDER WRAPPER */
    #prodaja-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /* SLIDER TRACK */
    #prodaja-items {
        display: flex !important;
        width: 100%;
        overflow: hidden;
        gap: 0;
    }

    /* FORCE ITEM SIZE */
    .prodaja_item {
        min-width: 100% !important;
        width: 100% !important;
        height: 90vw;
        flex-shrink: 0;
    }

    /* SHOW ARROWS */
    .prodaja_name{
        font-size: 4vw;
    }
    .prodaja_item{
        padding: 5vw;
        box-sizing: border-box;
    }
    .prodaja_podname{
        font-size: 3vw;
    }
    .prodaja_cenacena{
        font-size: 8vw;
    }
    .smaller_euro{
        font-size: 8vw;
        transform: translateX(-1vw);
    }
    .cencena_paketa{
        font-size: 4vw;
    }
    .cencenacena_paketa{
        font-size: 4vw;
    }
    .prodaja_cena{
        bottom: 30vw;
    }
    .podrobnosti_icona{
        height: 6vw;
    }
    .podrobnosti_title{
        font-size: 3.5vw;
    }
    .podrobnost{
        padding: 0.3vw 2vw;
        border-radius: 1.5vw;
        gap: 2vw;
    }
    .prodaja_cena{
        width: 90%;
    }
    .front_img{
        transform: translateX(-7vw) translateY(-10vw);
    }
    .front_img2{
    transform: scale(1.6) translateX(-3VW) translateY(-2vw);
    }
    .prodaja_podrobnosti{
        bottom: 6vw;
    }
    #prodajani{
        padding: 5vw;
    }
    .prodaja_hover{
        height: 7vw;
        transform: translateX(-5vw) translateY(7vw);
        font-size: 3vw;
    }
    .prodaja_item:hover .prodaja_hover{
        transform: translateX(-5vw) translateY(0) ;
    }
    .prodaja_item:hover .prodaja_podrobnosti{
    bottom: 9.5vw;
    }
    #prodaja-items {
        scroll-snap-type: x mandatory;     /* helps snapping */
        -webkit-overflow-scrolling: touch; /* smooth momentum on iOS */
    }
    .prodaja_item {
        scroll-snap-align: start;          /* snap each item */
    }



    
}
@media (max-width: 1080px) {
    #prodaja-slider,
    #prodaja-items {
        touch-action: pan-x;          /* ← allows horizontal touch, blocks vertical */
        -webkit-user-select: none;    /* prevents text selection */
        user-select: none;
    }
    
    /* Also helps on iOS */
    #prodaja-items {
        -webkit-overflow-scrolling: touch;
    }
}
#showcase{
    width: 100%;
    max-height: 50vw;
    display: flex;
    align-items: center;
    padding: 2vw;
    box-sizing: border-box;
    justify-content: space-between;
    position: relative;
}
#showcase_title{
    font-family: M-L;
    font-size: 2vw;
    letter-spacing: 0.1vw;
    color: #E2F85B;
    line-height: 1.2vw;
}
#showcase_title2{
    font-family: M-B;
    font-size: 2.5vw;
    letter-spacing: 0.1vw;   
}
#showcase_about{
    font-family: M-M;
    font-size: 0.9vw;
    width: 36vw;
    color: #ffffffcb;
    margin-top: 1vw;
    letter-spacing: 0.05vw;
    z-index: 2;
}
#showcase_about2{
    font-family: M-M;
    font-size: 0.9vw;
    width: 36vw;
    color: #ffffffcb;
    margin-top: 1vw;
    letter-spacing: 0.05vw;
    z-index: 2;
    display: none;
}
#showcasebutton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    background-color: #E2F85B;
    height: 2.5vw;
    color: #19191A;
    font-family: M-B;
    gap: 0.2vw;
    letter-spacing: 0.05vw;
    z-index: 2;
}
#showcase_img{
    height: 40vw;
    transform: translateX(-2vw);
    z-index: 2;
}
#lines{
    position: absolute;
    z-index: 1;
}
#trucky{
    position: absolute;
    height: 70vw;
    right: 0;
}
.bg-video2{
    inset: 0;
    width: 100%;
    height: 35vw;
    object-fit: cover;
    position: absolute;
}
@media (max-width: 1080px) {
    #showcase_title{
        font-size: 4vw;
        margin-bottom: 1vw;
    }
    #showcase_title2{
        font-size: 6.5vw;
        width: 90vw;
        margin-bottom: 2vw;
    }
    #showcase_about{
        display: none;
    }
    #showcase{
        padding: 5vw;
        box-sizing: border-box;
        margin-top: 0vw;
        display: flex;
        flex-direction: column;
        margin-bottom: 85vw;
    }
    #showcase_img{
        height: 90vw;
        transform: translateY(-15VW);
    }
    #phone_nav_button2{
        width: 100%;
        transform: translateY(90VW);
    }
    #lines{
        height: 300%;
        width: 300%;
    }
    #trucky{
        height: 120vw;
        transform: translateY(12vw) translateX(6vw);
    }
    #showcase_about2{
        display: block;
        font-size: 3.5vw;
        letter-spacing: 0.1vw;
        width: 90vw;
    }
}







#slogan{
    margin-top: 2vw;
    position: relative;
    height: 35vw;
    padding: 2vw;
    box-sizing: border-box;
}
#slogan_text{
    position: absolute;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
}
#slogan_1{
    font-family: M-B;
    font-size: 1.5rem;
    letter-spacing: 0.1vw;
    display: flex;
    align-items: center;
}
#slogan_2{
    font-family: P-B;
    font-size: 4.5em;
    width: 60vw;
    letter-spacing: 0.05vw;

}
#slogan_3{
    font-family: M-M;
    font-size: 1.4rem;
    letter-spacing: 0.05vw;  
    width: 40vw;
    color: #ffffffda;
}
#footer{
    width: 100%;
    height: 15vw;
    background-color: #111111;
    z-index: 2;
    position: relative;
}
#fireopslogo{
    font-family: M-BI;
    font-size: 3vw;
}
#aboutfireops{
    font-family: M-M;
    width: 13vw;
    font-size: 0.6vw;
    color: #ffffffa6;
}
#bottom_footer{
    position: absolute;
    bottom: 0vw;
    padding: 2vw;
    box-sizing: border-box;
    font-family: M-M;
    font-size: 0.7vw;
    color: #ffffff36;

}
#split{
    padding: 2vw;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}
#footer_first{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#footer_second{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.1vw;
}
#footer_pagest{
    font-family: M-B;
    margin-bottom: 0.5vw;
}
.footer_page{
    font-family: M-B;
    color: #ffffffa4;
    transition: all ease-in-out 300ms;
}
.footer_page:hover{
    color: #fff;
}
#find_us{
    font-family: M-B;
    color: #ffffff9c;
    margin-bottom: 0.5vw;

}
#find_us3{
    font-family: M-B;
    color: #ffffff9c;
    
}
#find_us2{
    font-family: M-B;
    color: #ffffff9c;
    margin-bottom: 0.5vw;
    margin-top: 0.5vw;
}
.footer_icon{
    height: 2vw;
    fill: #fff;
    transition: all ease-in-out 300ms;

}
#findusicon{
    display: flex;
    gap: 1vw;
}
.footer_icon:hover{
    transform: scale(1.1);
    fill: #ffffff60;
}
.fli{
    font-family: M-B;
    font-size: 0.7vw;
    margin-left: 0.8vw;
}
#footer_fourth{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5vw;
}
#signa{
    font-size: 2.6vw;
    font-family: SO;
    width: 17vw;
}
@media (max-width: 1080px) {
    #split{
        flex-direction: column;
        gap: 12vw;
    }
    #fireopslogo{
        font-size: 15vw;
    }
    #aboutfireops{
        font-size: 3vw;
        width: 65vw;
    }
    #footer_second{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 4vw;
    }
    #footer_third{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #find_us{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #findusicon{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8vw;
    }
    .footer_icon{
        height: 12vw;
    }
    #find_us2{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fli{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 2.7vw;
    }
    #footer_fourth{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    #signa{
        font-size: 13vw;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-7vw);
    }
    #find_us2{
        margin-top: 2vw;
    }
    #footer{
        height: 180vw;
        transform: translateY(10vw);
    }
    #bottom_footer{
        font-size: 2.5vw;
        padding: 5vw;
    }

}
#landing_page{
}
#login{
    height: 48vw;
    width: 100%;
    background-color: #0D0D0D;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    position: relative;
    display: none;
}
#login_firefighter{
    height: 45vw;
    z-index: 4;
}
#login_title{
    font-family: M-B;
    font-size: 2.5vw;
}
#login_title2{
    font-family: M-B;
    font-size: 1.9vw;
}
#login_about{
    font-size: 0.7vw;
    font-family: M-M;
    letter-spacing: 0.03vw;
    margin-bottom: 1vw;
}
.input_title{
    font-family: M-M;
    font-size: 0.7vw;
    margin-bottom: 0.2vw;
    color: #ffffffab;
}
.input_field{
    width: 22vw;
    background-color: #ffffff11;
    height: 2.3vw;
    border-radius: 0.15vw;
    display: flex;
    align-items: center;
    position: relative;
}
.input_input{
    width: 18vw;
    height: 2.3vw;
    background-color: transparent;
    border: transparent;
    color: #fff;
    padding-left: 0.5vw;
    font-family: M-M;
    font-size: 0.8vw;
}
.input_input:focus, 
.input_input:active {
    outline: none; 
    border: none;
    background-color: transparent;
}
.input_icon{
    height: 1.2vw;
    fill: #ffffffab;
    position: absolute;
    right: 0.5vw;
}
.inputed{
    padding: 0.5vw 0vw;
}
.remember_me{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: M-M;
    color: #ffffffbd;
    font-size: 0.7vw;
    letter-spacing: 0.01vw;
    gap: 0.5vw;
}
.remeber_check{
    height: 2vw;
}


  .checkbox-wrapper-8 .tgl {
    display: none;
  }
  .checkbox-wrapper-8 .tgl,
  .checkbox-wrapper-8 .tgl:after,
  .checkbox-wrapper-8 .tgl:before,
  .checkbox-wrapper-8 .tgl *,
  .checkbox-wrapper-8 .tgl *:after,
  .checkbox-wrapper-8 .tgl *:before,
  .checkbox-wrapper-8 .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper-8 .tgl::-moz-selection,
  .checkbox-wrapper-8 .tgl:after::-moz-selection,
  .checkbox-wrapper-8 .tgl:before::-moz-selection,
  .checkbox-wrapper-8 .tgl *::-moz-selection,
  .checkbox-wrapper-8 .tgl *:after::-moz-selection,
  .checkbox-wrapper-8 .tgl *:before::-moz-selection,
  .checkbox-wrapper-8 .tgl + .tgl-btn::-moz-selection,
  .checkbox-wrapper-8 .tgl::selection,
  .checkbox-wrapper-8 .tgl:after::selection,
  .checkbox-wrapper-8 .tgl:before::selection,
  .checkbox-wrapper-8 .tgl *::selection,
  .checkbox-wrapper-8 .tgl *:after::selection,
  .checkbox-wrapper-8 .tgl *:before::selection,
  .checkbox-wrapper-8 .tgl + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper-8 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 2vw;
    height: 1vw;
    position: relative;
    font-size: 0.7vw;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper-8 .tgl + .tgl-btn:after,
  .checkbox-wrapper-8 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper-8 .tgl + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-8 .tgl + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper-8 .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn {
    overflow: hidden;
    transform: skew(-10deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    transition: all 0.2s ease;
    font-family: M-B;
    background: #888;
  }
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after,
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
    transform: skew(10deg);
    display: inline-block;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    position: absolute;
    line-height: 1vw;
    font-weight: bold;
    color: #fff;
  }
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after {
    left: 100%;
    content: attr(data-tg-on);
  }
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
    left: 0;
    content: attr(data-tg-off);
  }
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active {
    background: #888;
  }
  .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active:before {
    left: -10%;
  }
  .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn {
    background: #86d993;
  }
  .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:before {
    left: -100%;
  }
  .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:active:after {
    left: 10%;
  }
  #forgot{
    display: flex;
    font-family: M-M;
    color: #ffffffbd;
    font-size: 0.7vw;
    letter-spacing: 0.01vw;
  }
  #login_split{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 22vw;
  }
  #logins{
    background-color: #fff;
    height: 2vw;
    width: 22vw;
    border-radius: 0.1vw;
    margin-top: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: M-B;
    font-size: 0.7vw;
    letter-spacing: 0.02vw;
  }
#account_yet{
    width: 22vw;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 0.8vw;
    font-family: M-M;
    gap: 0.3vw;
    font-size: 0.65vw;
}
.translu50{
    color: #ffffff8f;
}
#login_lines1{
    position: absolute;
    bottom: -5.7vw;
    z-index: 5;
}
#login_form{
    transform: translateY(-1vw);
    z-index: 20;
}
#login_lines{
    position: absolute;
}
#login_truck{
    position: absolute;
    left: -8vw;
    opacity: 0.7;
}


#signup{
    height: 48vw;
    width: 100%;
    background-color: #0D0D0D;
    display: none;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.input_field2{
    width: 10.5vw;
    background-color: #ffffff11;
    height: 2.3vw;
    border-radius: 0.15vw;
    display: flex;
    align-items: center;
    position: relative;
}
#signup_split{
    display: flex;
    gap: 1vw;
}
.input_input2{
    width: 8vw;
    height: 2.3vw;
    background-color: transparent;
    border: transparent;
    color: #fff;
    padding-left: 0.5vw;
    font-family: M-M;
    font-size: 0.8vw;
}
.input_input2:focus, 
.input_input2:active {
    outline: none; 
    border: none;
    background-color: transparent;
}
.inputed3{
    padding: 0.3vw 0vw;
}

#store_top{
    width: 100vw;
    height: 17vw;
    background: url(img/Store.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
    flex-direction: column;
    position: relative;
}
#store_title{
    font-size: 4vw;
    color: #fff;
    font-family: P-B;
    letter-spacing: 2.5vw;
    z-index: 2;
}
#store_about{
    font-size: 0.7vw;
    font-family: P-B;
    letter-spacing: 0.5vw;
    color: #E2F85B;
    z-index: 2;
}
#store_back{
    position: absolute;
    font-size: 10vw;
    font-family: P-B;
    letter-spacing: 2.5vw;
    -webkit-text-stroke: #e3f85b13 0.1vw;
    color: transparent;
}
#store{
    display: none;
}

#tester_lines{
    margin-top: 5vw;
    margin-bottom: 5vw;
    position: relative;
    height: 5vw;
}

#first_line{
    width: 120%;
    height: 3vw;
    background-color: #e3f85b24;
    transform: translateX(-10vw) rotate(3deg);
    position: absolute;
}
#second_line{
    width: 120%;
    height: 3vw;
    background-color: #e3f85b54;
    transform: translateX(-10vw) rotate(-3deg);
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee_track{
    display: flex;
    align-items: center;
    gap: 2vw;
    white-space: nowrap;

    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.tester_line_text{
    font-size: 1.3vw;
    font-family: P-B;
    color: #E2F85B;
    letter-spacing: 0.2vw;
}

.star{
    height: 1.5vw;
    fill: #E2F85B;
}
#tester_text1{
    font-family: P-B;
    color: #E2F85B;
    font-size: 1;
    letter-spacing: 0.1vw;
    line-height: 0.3vw;
}
#tester_text2{
    font-family: P-B;
    color: #ffffff;
    font-size: 2vw;
    letter-spacing: 0.1vw;
}
#tester_text3{
    width: 41vw;
    font-family: M-M;
    letter-spacing: 0.05vw;
    color: #ffffffa3;
    margin-top: 1vw;
    font-size: 0.9vw;
}
#tester_text32{
    width: 41vw;
    font-family: M-M;
    letter-spacing: 0.05vw;
    color: #ffffffa3;
    margin-top: 1vw;
    font-size: 0.9vw;
    display: none;
}
#form{
    width: 41vw;
    height: 3rem;
    background-color: #E2F85B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: M-B;
    color: #181413;
    letter-spacing: 0.05vw;
    margin-top: 2vw;
}
#form2{
    width: 41vw;
    height: 3rem;
    background-color: #E2F85B;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: M-B;
    color: #181413;
    letter-spacing: 0.05vw;
    margin-top: 2vw;
}
#form_arrow1{
    height: 1.2vw;
    transform: rotate(45deg);
    margin-left: 0.5vw;
}
#test_full{
    width: 100%;
    padding: 2vw;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
#gas1 {
    width: 20vw;
    height: 24vw;
    border-radius: 0.5vw;
    position: relative;
    overflow: hidden;
    background: url('img/gas1.png') center/cover no-repeat;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: transform 300ms ease-in-out;
    z-index: 3;
}

/* Shine Layer */
#gas1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.116) 45%,
        rgba(255, 255, 255, 0.226) 50%,
        rgba(255, 255, 255, 0.137) 55%,
        transparent 70%
    );
    background-size: 300% 100%;
    background-position: -170% 0;
    transition: background-position 0.9s ease-in-out; 
    
    pointer-events: none;
    mix-blend-mode: screen;
}

#gas1:hover::before {
    background-position: -30% 0;
    transition-duration: 1.3s; 
}

#gas1:hover {
    transform: scale(1.02);
}


#gas2{
    background: url(img/gas2.jpg);
    width: 20vw;
    height: 24vw;
    background-position: center;
    background-size: cover;
    border-radius: 0.5vw;
    position: absolute;
    right: 7vw;
    bottom: -2vw;
    opacity: 0.2;
}
#gas3{
    background: url(img/gas3.jpg);
    width: 18vw;
    height: 22vw;
    background-position: center;
    background-size: cover;
    border-radius: 0.5vw;
    position: absolute;
    right: 24vw;
    bottom: 9vw;
    opacity: 0.2;
}
#tester_right{
    display: flex;
    margin-right: 13vw;
}
#Tester{
    margin-bottom: 8vw;
}
@media (max-width: 1080px) {
    #first_line{
    width: 120%;
    height: 12vw;
    background-color: #e3f85b24;
    transform: translateX(-10vw) rotate(5deg);
    position: absolute;
    }
    #second_line{
    width: 120%;
    height: 12vw;
    background-color: #e3f85b54;
    transform: translateX(-10vw) rotate(-5deg);
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.tester_line_text{
    font-size: 5vw;
    font-family: P-B;
    color: #E2F85B;
    letter-spacing: 0.2vw;
}
.star{
    height: 5vw;
    fill: #E2F85B;
}
.marquee_track{
    display: flex;
    align-items: center;
    gap: 5vw;
    white-space: nowrap;

    animation: marquee 50s linear infinite;
}
#test_full{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 20vw;
    padding: 0;
}
#tester_left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
}
#tester_text1{
    font-size: 4vw;
    line-height: 6vw;
}
#tester_text2{
    font-size: 7vw;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    letter-spacing: 0.5vw;
    margin-bottom: 5vw;
}
#tester_text3{
    font-size: 3.6vw;
    width: 95vw;
    text-align: center;
    display: none;
}
#tester_text32{
    font-size: 3.9vw;
    width: 95vw;
    text-align: center;
    display: flex;
}
#form{
    display: none;
}
#gas1{
    height: 65vw;
    width: 55vw;
    border-radius: 2vw;
}
#tester_right{
    margin: 0;
    margin-top: 10vw;
}
#gas2{
    height: 60vw;
    width: 50vw;
    border-radius: 2vw;
    bottom: -13vw;
}
#gas3{
    height: 60vw;
    width: 50vw;
    border-radius: 2vw;
    bottom: 13vw;
    right: 43vw;
}
#Tester{
    margin-bottom: 50vw;
}
#form2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90vw;
    position: absolute;
    bottom: -35vw;
    height: 14vw;
    font-size: 4vw;
}
#form_arrow1{
    height: 6vw;
    transform: rotate(45deg);
    margin-left: 1vw;
}
#phone_nav_button2{
    height: 14vw;
    font-size: 4vw;
    gap: 1vw;
}
#phone_nav_arrow{
    height: 5vw;
}
#phone_nav_button{
    height: 12vw;
    width: 50vw;
    font-size: 4vw;
}
#phone_navT{
    font-size: 3vw;
}
#line{
    width: 0.8vw;
    border-radius: 0.5vw;
    height: 4.5vw;
}
#phone_navT2{
    font-size: 7vw;
}
#phone_navT3{
    font-size: 3.5vw;
    line-height: 5vw;
}
#phone_land{
    padding-top: 6vw;
    padding-bottom: 6vw;
}

}