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

    /**************************
        SLIDER AREA
    ***************************/
    .slider_header {
        width: 100%;
        height: 860px;
        position: relative;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        background-size: cover;
        background-position: center;
        transition: opacity 1s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px;
        text-align: center;
    }

    .slide.active {
        opacity: 1;
    }

    .slide h1 {
        font-size: 80px;
        font-family: Geomanist-Bold;
        line-height: 75px;
        text-align: center;
        margin-bottom: 20px;
        color: #FFFFFF;
    }

    .slide p {
        font-size: 24px;
        font-family: Geomanist-Book;
        line-height: 38px;
        text-align: center;
        margin-bottom: 30px;
        color: #FFFFFF;   
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-border{
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        padding: 0 20px 0px 20px;
        border-radius: 5px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    .btn-border:hover {
        background-color: white;
        color: black;
        cursor: pointer;
    }

    /**************************
        BOTTOM TABS
    ***************************/
    .bottom-tabs-wrapper {
        width: 100%;
        padding: 25px 60px;
        position: absolute;
        top: -150px;
    }
    .tab-top-line {
        position: absolute;
        top: 20px;
        left: 60px;
        width: calc(100% - 120px);
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
    }

    .active-line {
        height: 3px;
        background: #00e676;
        width: 33.33%;
        transition: transform 0.4s ease;
    }

    .tabs {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .tab {
        width: 33.33%;
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        opacity: 0.5;
        transition: 0.3s;
    }

    .tab.active {
        opacity: 1;
    }

    .tab-number {
        width: 48px;
        height: 48px;
        border: 2px solid #00e676;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #00e676;
        font-size: 18px;
        font-weight: bold;
    }

    .tab-text {
        font-family: Geomanist;
        color: rgba(255, 255, 255, 1);
        font-size: 22px;
        letter-spacing: -0.43px;
        line-height: 28px;
    }
    .mT90{
        margin-top: 130px ;
    }

    .slide {
        pointer-events: none;
    }

    .slide.active {
      pointer-events: auto;
    }

    @media(max-width:1400px){
        .slider_header {
            height: 690px;
        }
        .slide h1 {
            font-size: 56px;
            line-height: 55px;
        }
        .tab-text {
            font-family: Geomanist;
            color: rgba(255, 255, 255, 1);
            font-size: 20px;
            letter-spacing: -0.43px;
            line-height: 26px;
        }
        .btn-border {
            height: 50px;
            font-size: 20px;
        }
        .mT90{
            margin-top: 90px ;
        }
    
    }
    @media(max-width:1400px){
        .slider_header {
            height: 712px;
        }
        .slide h1 {
            font-size: 48px;
            line-height: 54px;
        }
        .slide{
            padding: 0 15px;
            justify-content: center;
        }
        .mT90 {
            margin-top: 0px;
        }
    }    