/* Headin */



.headin::after{
    content: '';
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.4);
}

.headin-contain{
    width: 85%;
    padding: 140px 0px 80px;
    display: flex;
    justify-content: flex-end;
}

.headin-content{
    position: relative;
    width: 80%;
    z-index: 1;
}

.headin-headin{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.headin-name{
    font-size: 16px;
    letter-spacing: 0.4px;
}

.headin-line{
    width: 40%;
    height: 2px;
    background: white;
}

.headin-title{
    padding: 21px 0px 38px;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1em;
    letter-spacing: 1px;
}

.headin-data{
    padding-left: 60px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4em;
    /* font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2em; */
}

.headin-button{
    padding-top: 100px;
    text-align: right;
}

.headin-button button{
    width: 140px;
    height: 48px;
    border: 2px solid white;
    border-radius: 48px;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    background: transparent;
    cursor: pointer;
}


/* UX */


.ux{
    display: flex;
    justify-content: center;
}

.ux-all{
    width: 85%;
    padding: 100px 0px 160px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ux-contain{
    flex: 1;
}


/* UX : Headin */


.ux-headin{
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ux-pane{
    width: auto;
}

.ux-title{
    padding-bottom: 14px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.ux-line{
    width: 200px;
    border-top: 3px solid black;
}

.ux-button button{
    width: 140px;
    height: 45px;
    border: 3px solid black;
    border-radius: 52px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: black;
    background: transparent;
    cursor: pointer;
}


/* UX : Lean */


.ux-lean{
    position: relative;
}

.ux-btn{
    position: absolute;
    top: 200px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 0px 4px darkgray;
    font-size: 15px;
    color: black;
    background: white;
    cursor: pointer;
}

.ux-btn-left{
    left: -25px;
}

.ux-btn-right{
    right: -25px;
}


/* UX : Content */


.ux-content{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - (80px / 3));
    gap: 40px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}


.box{
    width: auto;
    scroll-snap-align: start;
}

.box-logo{
    display: flex;
}

.box-logo img{
    width: 100%;
    height: 340px;
    border-radius: 14px;
    object-fit: cover;
}

.box-content{
    padding-top: 20px;
}

.box-name{
    padding: 0px 0px 7px 0px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-title{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-subname{
    padding-top: 12px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}

.box-time{
    padding-top: 18px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgb(44, 1, 75);
    display: flex;
    align-items: center;
    gap: 16px;
}

.box-time span{
    font-size: 22px;
}


/* Lean */


.lean{
    background: whitesmoke;
    display: flex;
    justify-content: center;
}

.lean-contain{
    width: 85%;
    padding: 140px 0px;
}

.lean-title{
    padding-bottom: 21px;
    text-align: center;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.lean-content{
    display: flex;
    justify-content: center;
}

.lean-box{
    width: 700px;
    border-radius: 6px;
    background: gainsboro;
    display: flex;
    align-items: center;
    gap: 20px;
}

.lean-input{
    flex: 1;
    padding: 7px 0px 7px 20px;
    display: flex;
}

.lean-input input{
    width: 100%;
    border: none;
    letter-spacing: 0.4px;
    background: transparent;
    outline: none;
}

.lean-button button{
    width: 150px;
    height: 58px;
    border: none;
    border-radius: 0px 6px 6px 0px;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    background: black;
    cursor: pointer;
}


/* Mobile Responcsive */


/* 1200px */

@media screen and (max-width: 1200px) {

    /* .headin-content{
        width: 65%;
    } */

    .ux-content{
        grid-auto-columns: calc((100% / 2) - 20px);
    }
    
}

/* 1100px */

@media screen and (max-width: 1100px) {

    .headin-contain, .ux-all, .lean-contain{
        width: 90%;
    }
    
}

/* 1000px */

@media screen and (max-width: 1000px) {

    .lean-title{
        font-size: 38px;
        font-weight: 600;
    }
    
}

/* 900px */

@media screen and (max-width: 900px) {

    /* .headin::after{
        width: 55%;
    } */
    
}

/* 800px */

@media screen and (max-width: 800px) {

    /* .headin-content{
        width: 90%;
    } */

    .lean-box{
        width: 100%;
    }
    
}

/* 700px */

@media screen and (max-width: 700px) {

    .headin-title{
        font-size: 50px;
    }
    
}

/* 600px */

@media screen and (max-width: 600px) {

    /* .headin-content{
        width: 95%;
    } */

    .headin-title{
        font-size: 40px;
    }

    .ux-btn{
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .ux-btn-left{
        left: -18px;
    }
    
    .ux-btn-right{
        right: -18px;
    }
    

    .ux-content{
        grid-auto-columns: 100%;
    }
    
}

/* 500px */

@media screen and (max-width: 500px) {

    .ux-title{
        padding-bottom: 10px;
        font-size: 20px;
    }

    .ux-line{
        width: 120px;
    }

    .ux-button button{
        width: 120px;
        height: 40px;
        font-size: 13px;
    }

    .lean-title{
        font-size: 30px;
        font-weight: 600;
    }

    .lean-button button{
        width: 110px;
        height: 58px;
        border: none;
        border-radius: 0px 6px 6px 0px;
        font-size: 13px;
        letter-spacing: 1px;
        color: white;
        background: black;
        cursor: pointer;
    }
    
}

/* 400px */

@media screen and (max-width: 400px) {

    .ux-btn{
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .ux-btn-left{
        left: -10px;
    }
    
    .ux-btn-right{
        right: -10px;
    }
    
}

/*  */

@media screen and (max-width) {
    
}