* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
background: linear-gradient(90deg, #000000, #00ff88, #ffffff, #006400, #000000);
background: black;
/* border-bottom: .4px solid var(--primary-color); */
    background-size: 400% 400%;
    width: 0%;
    transition: width 0.1s ease;
    animation: gradientShift 3s ease infinite;
}


:root {
    --primary-color: #fefbf1;
    --secondary-color: black;
    --tertiary-color: #01cb36;
    --padding: 100px 40px;
    --btn-padding: clamp(10px, 3vw, 11.5px) clamp(45px, 4.5vw, 43px) !important;
    --btn-font-size: clamp(12px, 1.6vw, 16px);
    --btn-min-width: 210px;
    --btn-max-width: calc(190px + 6.5vw);
    --btn-min-width: 210px;
    --btn-max-width: calc(190px + 6.5vw);
    --paragraph-font-size: clamp(11px, 2vw,16.5px)
}


@media (max-width:1200px) {
    :root {
        --padding: 90px 35px
    }
}

@media (max-width:800px) {
    :root {
        --padding: 80px 28px
    }
}

@media (max-width:500px) {
    :root {
        --padding: 85px 18px
    }
}


@font-face {
    font-family: poppin;
    src: url('../fonts/Poppins-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: mono;
    src: url('../fonts/MartianMono-ExtraBold.ttf') format('truetype'),

}

@font-face {
    font-family: tung;
    src: url('../fonts/Tungsten-Bold.ttf') format('truetype'),

}

@font-face {
    font-family: space;
    src: url('../fonts/Space_Mono/SpaceMono-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: hel;
    src: url('../fonts/helvectical/HelveticaNowDisplay-Medium.ttf') format('truetype'),

}

@font-face {
    font-family: hel-thin;
    src: url('../fonts/helvectical/HelveticaNowDisplay-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: wide;
    src: url('../fonts/druk-wide-bold/DrukWideBold.ttf') format('truetype'),

}

html{
    scroll-behavior: smooth;
}


section {
    padding: var(--padding) !important;
}

html {
    width: 100%;
}

html,
body {
    font-size: 24px;
    overflow-x: clip;
    background-color: var(--primary-color);
    scroll-behavior: smooth;
}

/* .hero {
    background-image: url(../img/main.png);
    height: 120vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */

nav {
    width: 100%;
    display: flex;
    font-size: 24px;
    align-items: end;
    padding: 0rem 2.5rem;
    position: absolute;
    top: 45px;
}


.nav-div {
    padding: 0em 2.5em;
    padding-bottom: .7em;
    display: flex;
    gap: 1em;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    z-index: 700;

}

nav .menu {
    height: fit-content;


    &:hover{
        cursor: pointer;
    }
}

nav .menu .lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 29px;
    width: 40px;
}

nav .menu .lines .line {
    height: 1.2px;
    width: 100%;
    background: var(--primary-color);
}

nav .menu i {
    font-size: 1.4em;
    color: var(--primary-color);

    &:hover {
        cursor: pointer;
    }

    font-weight: lighter;
}

nav .content {
    display: flex;
    color: var(--primary-color);
    align-items: center;
    gap: 3.5em;
}

nav .text {
    font-size: .45em;
    height: fit-content;
    font-family: space;
    letter-spacing: .5px;
}

nav .text .favicons {
    display: inline-flex;
    gap: 6.5px;
    height: 10.5px;
}

nav .text .favicons img {
    width: 10px;
    height: 100%;
}

nav .text-2 {
    text-align: right;
}

nav .logo {
    width: 4em;
    height: 2em;

    &:hover{
        cursor: pointer;
    }
}

nav .logo img {
    width: 100%;
    height: 100%;
}


/* side-nav */
nav .side-nav {
    position: fixed;
    top: 0em;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    /* width: 55vw; */
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: end;
    align-items: center;
    /* padding-right: 3rem; */
    padding-left: 2rem;
    border-left: 1px solid #fff;
    /* font-size: 15px; */
    /* transition: all 5s ease-out; */
}

nav .side-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 2.2em;
    font-family: wide;
    text-transform: uppercase;
    transition: all .4s ease;

    &:hover {
        /* text-decoration: underline; */
        -webkit-text-stroke: 1px var(--primary-color) !important;
        color: var(--secondary-color);
    }

}


nav .side-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* gap: .3rem; */
    height: 100%;
    padding: 6rem 0rem;
    list-style-type: none;

}

@media (max-width:760px) {
    
    nav #nav-mobile{
        display: flex !important;
        color: var(--primary-color);
    
    }
}

nav .side-nav ul li {
    text-decoration: none;
    padding-right: 3rem;

    /* transition: all .4s ease; */
    &:hover {
        background-color: #ffffff54;
    }
}

nav .side-nav .cross {
    font-family: space;
    position: absolute;
    top: .4em;
    right: 1.6em;
    font-size: 1.6em;
    font-weight: lighter;
    cursor: pointer;

    width: 1.6em;
    height: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .3em;
    transition: all .2s ease;

    &:hover {
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
}

nav .side-nav .cross p {
    position: relative;
    bottom: .25em;
}


.hide {
    display: none !important;
}

@media (max-width:1100px) {
    nav {
        font-size: 21px;
    }

    .nav-div {
        padding: 0em 2em;

    }
}

@media (max-width:950px) {
    nav {
        font-size: 18px;
    }

    .nav-div {
        padding: 0em 2em;

    }

    .nav-div .content {
        gap: 2rem;
    }
}



nav .mobile-text {
    display: none !important;
    display: flex;
    flex-direction: column;
}

@media (max-width:760px) {
    nav {
        position: relative;
        top: 30px;
    }

    .nav-div {
        padding: 0px;
    }

    nav .menu .lines {
        height: 22px;
        width: 30px;
    }

    nav :is(.text-1, .text-2) {
        display: none !important;
    }

    nav .mobile-text , .nav #nav-mobile {
        display: flex !important;
        margin-left: auto;
        color: var(--primary-color);
        font-family: space;
        font-size: clamp();
        font-size: 10px;
        gap: 6px;
        text-align: right;
    }

    nav div {
        padding: 0rem !important;
    }

    nav .logo {
        position: relative;
        left: 25px;
        width: 5em;
        height: 2.3em;
    }

    nav {
        top: 20px;
        padding: 0px 25px;
    }

}


@media (max-width:480px) {
    nav .mobile-text {
        font-size: 2vw;
    }

    nav .logo {
        left: 15px;
    }

    nav .menu i {
        font-size: 22px;

    }

}

@media (max-width:350px) {


    nav .logo {
        left: 9px;
     width: 24vw;
        height: 11vw;
    }

    nav .menu i {
        font-size: 19px;

    }

}


/* footer */

/* footer */
footer .sub-section-3 .row-2 img {
    width: 6rem !important;
    height: 6rem !important;
}





/* hero */
@media (max-width:760px) {
    .hero {
        max-height: 100dvh !important;
    }
}