*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --fm-inter: "Inter", serif;
    /* --fm-martian: "Martian Mono", serif; */
}

body{
    font-family: var(--fm-inter);
    color: #131313;
}

img, video{
    display: block;
    width: 100%;
    object-fit: cover;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}

.container{
    padding: 0 30px;
}

section:not(.banner_sec, .mob_sec){
    padding: 60px 0;
}

/* background image css  */

.banner_sec{
    background: url(../images/bg-bnr.png) no-repeat;
    background-position: top;
    background-size: cover;
}

/* background image css end */

/* nav css start  */
/* header{
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.4s;
} */

.header-scrolled{
    transform: translateY(-100%);
}

.header_wrap {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    column-gap: 70px;
    padding-block: 15px;
}

.logo_wrap img{
    max-width: 250px;
}

.nav_list ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    & li a{
        display: block;
        width: max-content;
        font-family: var(--fm-inter);
        line-height: 19px;
        letter-spacing: -0.64px;
        color: #131313;
        text-transform: uppercase;
    }
}

/* .nav_list ul li a.active {
    position: relative;
    &:before{
        content: "";
        height: 7px;
        position: absolute;
        width: 7px;
        background: #131313;
        top: 50%;
        left: -15px;
        transform: translateY(-50%);
    }
    
} */

/* nav css end */

/* slider css  */

.main_caraousel_sec{
    margin-top: 60px;
}

.main_caraousel_wrap .draggable{
    padding: 0 25% !important;
}

.slider_img{
    margin: 0 15px;
}

section.slider_con_sec{
    padding-top: 0px;
}

.slider_con_wrap{
    margin-bottom: 60px;
    max-width: 1000px;
    margin-inline: auto;
}
/* 
.scroll_btn{
    text-align: end;
    & h2{
        font-size: 52px;
        line-height: 53px;
        letter-spacing: -2.13px;
        font-weight: 400;
        text-transform: uppercase;
        color: #131313;
        &:after{
            content: "";
            background: url(../images/scroll-ico.svg) no-repeat;
        background-size: contain;
        height: 15px;
        width: 37px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        }
    }
} */
.scroll_btn ul{
    & li p{
        font-weight: 700;
        text-transform: uppercase;
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 48px;
        margin-top: 40px;
    }
}

.scroll_btn h4{
    text-transform: uppercase;
    position: relative;
    font-weight: normal !important;
    &:after{
        content: "";
        background: url(../images/scroll-ico.svg) no-repeat;
    background-size: contain;
    height: 15px;
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    }
}

.slider_con a{
    color: #131313;
    font-family: var(--fm-martian);
    text-transform: uppercase;
    letter-spacing: -0.64px;
    line-height: 19px;
    font-weight: 400;
    &:before{
        content: "";
        background: url(../images/watch-ico.svg) no-repeat;
        background-size: contain;
        height: 10px;
        width: 10px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
}

.slider_grid .slick-track{
    display: flex;
    & .slider_grid_item {
        height: auto;
    }
    .slider_img{
        height: 100%;
        & video{
            height: 100%;
            object-fit: cover;
        }
    }
}

.slider_grid a {
    height: auto;
}

/* slider css end */

@media screen and (min-width: 767px){
    .mob_sec, .hamburder_icon{
        display: none;
    }
}

@media screen and (max-width: 767px){
    .slider_con_sec, .main_caraousel_sec{
        display: none;
    }


    /* header css  */


    .logo_wrap img{
        max-width: 160px;
        filter: invert(1);
    }

    header{
        position: fixed;
        width: 100%;
        z-index: 1;
        left: 0;
    }

    .header_wrap{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburder_icon span{
        display: block;
        width: 30px;
        background: #ffffff;
        height: 2px;
        border-radius: 120px;
        transition: 0.4s;
        &:last-child{
            width: 20px;
        }
        &:not(:last-child){
            margin-bottom: 5px;
        }
    }

    .nav_inner{
        position: fixed;
        background: #ffffff;
        left: 0;
        height: 100%;
        top: 0;
        padding: 20px;
        transform: translate3d(-100%, 0, 0);
        transition: 0.4s;
        & ul{
            display: block;
        }
        & ul li a{
            margin-bottom: 10px;
            font-size: 14px;
            width: 100%;
        }
        & ul li .nav_txt a::before{
         right: 0;
         left: auto !important;
         height: 5px;
         width: 5px;
        }
    }

    .nav_inner.open{
        transform: translate(0);
    }


    .hamburder_icon.active span:first-child {
        transform: rotate(45deg);
        width: 25px;
    }
    
    .hamburder_icon.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 25px;
    }

    /* header css end */

    .mob_inner{
        position: relative;
        & .video_txt{
            position: absolute;
            bottom: 30px;
            left: 30px;
        }
        & .video_txt h1{
           font-size: 27px;
           font-family: var(--fm-inter);
           font-family: "Anton", sans-serif;
           /* font-family: "Martian Mono", monospace; */
           color: #ffffff;
           text-transform: uppercase;
           font-weight: 300;
           line-height: 45px;
        }

        & video{
            height: 100vh;
        }
    }
}