@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@font-face {
    font-family: "American";
    src: url(/assets/AmericanCaptain.otf) format('opentype');
}

:root {
    --light: #fcfcfc;
    --bg-color: #d3d3d3;
    --sec-color: #c1c2c2;
    --thd-color: #000;
    --fth-color: #09090970;
    --text-color: #090909;
    --text-low: #090909c2;
    --Heading: 5rem;
    --Subheading: 4rem;
    --Desc: 1.2rem;
    --Title: 2.5rem;
    --SubTitle: 1.35rem;
}

* {
    transition: .3s ease-in-out;
    user-select: none;
    font-weight: 400;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

html,
body {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "poppins" , sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background: var(--text-color);
    color: var(--light);
}

a {
    text-decoration: none;
    color: var(--light);
}

#hero{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video{
    width: 100%;
    height: 100%;
}
.video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: grayscale() brightness(.3) contrast(1);
}

.logo-holder{
    width: 250px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border-radius: 0 0 35px 0;
}.logo-holder svg{
    filter: invert();
}

.mobilenav span{
    filter: invert();
}
.hero-content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(50px);
}
.globe{
    position: relative;
    height: 500px;
    width: 500px;
    top: 0;
    left: 0;
    background: url(/assets/LOGOGlobe.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 50px;
}
.hero-content span{
    width: 70%;
    text-align: center;
    margin-top: 50px;
    font-size: var(--Desc);
}

#section2{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: #000; */
}

.test{
    background: var(--thd-color);
    width: 80%;
    height: fit-content;
    margin-top: 100px;
    border: 2px solid var(--sec-color);
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 50px;
}


.parent {
    display: flex;
    margin: 20px;
    align-items: center;
}
.parent div{
    height: fit-content;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* background: red; */
    align-items: center;
    font-family: "american", sans-serif;
}
    
.div1 {
    font-size: var(--Heading);
    font-weight: 900;
    padding: 0;
    margin: 0;
    letter-spacing: 5px;
}

.div2 {
    font-size: var(--Title);
    font-weight: 900;
    margin-left: 20px;
    line-height: 30px;
    letter-spacing: 5px;
}.div2 span {
    font-size: var(--SubTitle);
    font-weight: 500;
    letter-spacing: 3px;
}

.abtctn{
    margin-top: 100px;
    width: 90%;
    /* background: #000; */
    height: 60vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.abtdesc{
    width: 60%;
    height: fit-content;
    /* background: rgb(214, 214, 214); */
    display: flex;
    flex-direction: column;
}
.abtdesc h1{
    font-family: "american", sans-serif;
    font-size: var(--Subheading);
    top: 0;
    margin: 0;
}
.abtdesc span{
    margin-top: 30px;
    font-size: var(--Desc);
}
.abtdesc button{
    width: fit-content;
    align-self: center;
    bottom: 0;
    margin-top: 80px;
    padding: 15px;
    padding-inline: 20px;
    border: none;
    border-radius: 70px;
    font-family: "american" ,sans-serif;
    letter-spacing: 2px;
    font-size: var(--Desc);
    cursor: pointer;
}.abtdesc button:hover{
    box-shadow: 0 0 8px 0 var(--bg-color);
}
.abtpic{
    width: auto;
    aspect-ratio: 1 / 1;
    height: 80%;
    border-radius: 46px;
    background: url(/assets/cons2.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#products{
    width: 90%;
    /* background: #000; */
    align-self: center;
    top: 0;
    margin: 0;
    z-index: 10;
}
#products h1{
    font-family: "american", sans-serif;
    font-size: var(--Heading);
    top: 0;
    margin: 0;
}
#Pmainh1{
    background: var(--text-color);
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 5px;
    padding-inline: 20px;
    border-radius: 25px;
}
.Pctn{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 40px;
    /* background: red; */
    height: fit-content;
    margin-bottom: 50px;
    margin-top: 20px;
}
.Pctn div{
    border-radius: 46px;
    display: flex;
    flex-direction: column;
}
.Pctn :nth-child(1){
    grid-column: span 3 / span 3;
    grid-row: span 6 / span 6;
    height: 600px;
    background: linear-gradient(to top, black, #000000dc, rgba(0, 0, 0, 0.5)), url(/assets/helmet.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.Pctn :nth-child(2){
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    /* background: #000; */
    background: linear-gradient(to top, black, #000000dc, rgba(0, 0, 0, 0.5)), url(/assets/glass.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.Pctn :nth-child(3){
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 4;
    /* background: #000; */
    background: linear-gradient(to top, black, #000000dc, rgba(0, 0, 0, 0.5)), url(/assets/hear.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.Pctn :nth-child(4){
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 4;
    /* background: #000; */
    background: linear-gradient(to top, black, #000000dc, rgba(0, 0, 0, 0.5)), url(/assets/gloves.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.Pctn :nth-child(5){
    grid-column-start: 5;
    grid-row-start: 6;
    background: var(--bg-color);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'american', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--thd-color);
    cursor: pointer;
}.Pctn :nth-child(5):hover{
    box-shadow: 0 0 5px 0 var(--bg-color);
}

.bg{
    background: linear-gradient(to top, black, #000000dc, rgba(0, 0, 0, 0.5)), url(/assets/helmet.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#safety{
    background: transparent;
    height: fit-content;
    width: fit-content;
    font-size: var(--Title) !important;
    padding-bottom: 50px;
    padding-left: 50px;
}#safety span{
    height: fit-content;
    width: 70%;
    background: transparent;
    font-family: "poppins", sans-serif;
    font-size: 1rem;
}
.P2{
    padding-bottom: 15px !important;
    padding-left: 30px !important;
}
.P2 span{
    font-size: 0.8rem !important;
}

#vsn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    width: 80%;
    align-self: center;
    margin-top: 50px;
}
#vsn div{
    /* background: #000; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
#vsn h1{
    font-family: "american", sans-serif;
    font-size: var(--Subheading);
    top: 0;
    margin: 0;
    word-spacing: 8px;
    letter-spacing: 2px;
}
#vsn span{
    margin-top: 20px;
}

#vsn :nth-child(3){
    grid-column: span 2 / span 2;
}
#mission{
    display: flex;
    text-align: left;
}

#contact{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 50px;
}
#contact h1{
    font-family: "american", sans-serif;
    font-size: var(--Subheading);
}
#form{
    display: flex;
    flex-direction: column;
}
#form input{
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: var(--Desc);
    font-weight: 600;
    font-family: "poppins", sans-serif;
    padding: 8px;
    padding-inline: 20px;
    border-radius: 46px;
    border: none;
}
#form textarea{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    height: 200px;
    resize: none;
    border-radius: 25px;
    margin-top: 5px;
    padding: 10px;
    padding-left: 20px;
    font-size: var(--Desc);
    font-weight: 600;
    font-family: "poppins", sans-serif;
}
#form button{
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: var(--Desc);
    font-weight: 600;
    font-family: "poppins", sans-serif;
    padding: 8px;
    padding-inline: 20px;
    border-radius: 46px;
    border: none;
    width: fit-content;
    align-self: center;
    cursor: pointer;
}

#or{
    height: 100%;
    background: var(--bg-color);
    width: 3px;
    margin-inline: 200px;
}
#direct{
    display: flex;
    flex-direction: column;
    text-align: center;
}
#direct h1{
    align-self: center;
    justify-self: center;
}
#direct h3{
    text-align: left;
}
#direct span{
    margin-left: 50px;
}
#direct h2{
    font-size: var(--SubTitle);
    font-family: "american", sans-serif;
    letter-spacing: 2px;
}
#direct button{
    margin-inline: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-inline: 15px;
    color: var(--thd-color);
    font-family: "american", sans-serif;
    font-size: var(--SubTitle);
    letter-spacing: 2px;
    border-radius: 46px;
    border: none;
    cursor: pointer;
}

footer{
    background: var(--bg-color);
    width: 94%;
    align-self: center;
    height: fit-content;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#footerTop{
    display: flex;
    flex-direction: row;
    width: 96%;
    align-items: top;
    height: fit-content;
    margin-top: 20px;
    /* padding-bottom: 100px; */
}

#footerLogo{
    background: url(/assets/LOGO.svg);
    width: 30%;
    height: 100px;
    align-self: flex-start;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    /* margin-top: 20px; */
    /* background: #000; */
}
#sitemap{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    padding-bottom: 100px;
    border-left: 2px solid var(--text-color);
    height: max-content;
    display: flex;
    flex-direction: column;
    /* background: #000; */
}
#sitemap h1,
#Fproducts h1,
#Fcontact h1{
    margin: 0 !important;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 1.7rem;
}
#sitemap span,
#Fproducts span,
#Fcontact span{
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    margin-top: 5px;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    /* background: #ffffff; */
}
#Fproducts,
#Fcontact{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    /* border-left: 2px solid var(--text-color); */
    height: 90%;
    display: flex;
    flex-direction: column;
}
#Fcontact span{
    text-transform: none;
}

#footerBottom{
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    margin-top: 20px;
    padding: 20px;
    width: 94%;
    border-top: 2px solid var(--thd-color);
}
#footerBottom span {
    cursor: pointer;
}

.hover:hover{
    box-shadow: 0 0 8px 0 var(--bg-color);
}

/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||| RESPOSIVE STYLES |||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */

@media (max-width: 400px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        /* transform: scale(0.5); */
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        margin-top: -20px;
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: none;
        visibility: hidden;
        /* transform: translateY(-80px); */
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct{ 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center;
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
        /* width: 190%;
        transform: scale(0.5); */
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
    
}

@media (max-width: 450px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column-reverse;
        transform: translateY(120px);
    }
    .abtdesc{
        width: 100%;
        margin-top: 50px;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
        height: 300px;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 451px) and (max-width: 549px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        transform: translateY(-80px);
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 550px) and (max-width: 649px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        transform: translateY(-80px);
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 650px) and (max-width: 768px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        transform: translateY(-80px);
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 768px) and (max-width: 949px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        transform: translateY(-80px);
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 950px) and (max-width: 1025px) {
    :root{
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    .hero-content{
        transform: translateY(10px);
    }
    .globe{
        height: 200px;
    }.hero-content span{
        margin-top: 0;
    }
    #mobilenavctn{
        display: flex;
    }
    #section2{
        transform: translateY(-80px);
    }
    .test{
        transform: scale(0.5);
        width: fit-content;
        padding-inline: 10px;
    }
    .abtctn{
        flex-direction: column;
        transform: translateY(-80px);
    }
    .abtdesc{
        width: 100%;
    }
    .abtdesc button{
        transform: translateY(-50px);
    }
    .abtpic{
        display: block;
    }
    #products{
        position: relative;
    }
    #products { 
        width: 95%; 
    }
    .Pctn { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto; 
        gap: 16px; 
    }
    .Pctn :nth-child(1) { 
        grid-column: span 2 / span 2;
        height: 300px; 
    }
    .Pctn :nth-child(2) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(3) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; 
    }
    .Pctn :nth-child(4) { 
        grid-column: span 1; 
        grid-row: span 1; 
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 220px; }
    .Pctn :nth-child(5) { 
        grid-column: span 2 / span 2;
        grid-column-start: auto; 
        grid-row-start: auto; 
        height: 50px; 
        font-size: 1.4rem; 
    }
    #safety { 
        padding-bottom: 30px; 
        padding-left: 24px; 
    }
    #vsn{
        display: flex;
        flex-direction: column;
    }
    #contact { 
        flex-direction: column; 
        align-items: center; 
        gap: 40px; 
        margin-top: 60px; 
    }
    #or { 
        display: none; 
    }
    #form, 
    #direct { 
        width: 90%; 
        text-align: center; 
    }
    #direct h3 { 
        text-align: center; 
    }
    #direct span { 
        margin-left: 0; 
    }
    #form{
        align-items: center;
    }
    #form input, 
    #form textarea, 
    #form button { 
        width: 100%; 
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 1200px) and (max-width: 1366px) {
    :root {
        --Heading: 4rem;
        --Subheading: 3rem;
        --Desc: 1rem;
        --Title: 2rem;
        --SubTitle: 1.35rem;
    }
    .globe{
        height: 300px;
    }
    #footerTop span{
        font-size: 0.8rem;
    }
    #footerLogo{
        width: 600px;
        margin: 0;
    }
    #Fproducts{
        /* background: #000; */
        width: 40%;
    }
}

.loaderbg{
    position: fixed;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    flex-direction: column;
    transition: .4s ease-out;
}
.loaderLogo{
    width: 40%;
    height: fit-content;
    filter: invert();
    margin-bottom: 100px;
}
.loaderbg span{
    margin-top: 20px;
    font-family: monospace;
    letter-spacing: 2px;
}
.Progressbarbg{
    width: 40%;
    height: 15px;
    border-radius: 46px;
    background: #535353;
    padding: 2px;
}
.progress{
    background: #fff;
    width: 2%;
    height: 100%;
    border-radius: 46px;
    transition: 0.5s ease-in-out;
}