/* Header : Top */


._header-top{
    color: white;
    background: #ff6600;
    display: flex;
    justify-content: center;
}

._header-top-data{
    width: 90%;
    padding: 14px 0px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 17px;
}

._header-top-data a{
    transition: all 0.4s ease-in-out;
}

._header-top-data a:hover{
    color: #111;
}

._header-top-search{
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: clip;
}


/* Headin */


.ux{
    position: relative;
    display: flex;
    justify-content: center;
}

.ux::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 70vh;
    background: black;
}

.ux-contain{
    position: relative;
    width: 90%;
    padding: 100px 0px 140px;
    z-index: 1;
}


/* UX : Headin */


.ux-headin{
    width: auto;
    padding-bottom: 100px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ux-pane{
    width: 600px;
}

.ux-title{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4em;
}

.ux-subname{
    display: none;
    padding-top: 17px;
    font-size: 14px;
}

.ux-button button{
    width: 140px;
    height: 48px;
    border: none;
    border-radius: 48px;
    font-size: 14px;
    letter-spacing: 1px;
    color: black;
    background: white;
    cursor: pointer;
}


/* UX : Content */


.ux-content{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}


.box{
    position: relative;
    width: auto;
}

.box-logo{
    display: flex;
}

.box-logo img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.box-contain{
    position: absolute;
    inset: 0px;
    padding: 40px;
    color: white;
    background: linear-gradient(to bottom, transparent, black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.box-title{
    width: 100%;
    font-size: 21px;
    font-weight: 700;
}

.box-data{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.box-button button{
    width: 120px;
    height: 44px;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    color: black;
    background: white;
    cursor: pointer;
}

.box-icon{
    font-size: 18px;
    color: white;
}


/* Popup */


.popup-blur{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.788);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.popup{
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 1000px;
    background: white;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateX(30%);
}

.popup-box{
    width: 90%;
    padding: 40px 0px;
}

.popup-contain{
    width: auto;
}


/* Popup : Headin */

.popup-headin{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.popup-pane{
    flex: 1;
}

.popup-title{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.popup-close button{
    width: 45px;
    height: 45px;
    padding: 0px;
    border: none;
    border-radius: 45px;
    font-size: 18px;
    color: black;
    background: whitesmoke;
    cursor: pointer;
}


/* Popup : Content */


.popup-content{
    margin-bottom: 40px;
    padding: 40px 0px 0px;
}

.popup-logo{
    display: flex;
}

.popup-logo img{
    width: 100%;
    min-height: 50vh;
    max-height: 70vh;
    object-fit: cover;
}

.popup-line{
    padding: 30px 0px;
    display: flex;
    justify-content: center;
}

.popup-lines{
    width: 60%;
    border-top: 3px solid black;
}

.popup-all{
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-title{
    padding-bottom: 7px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.popup-data{
    padding-bottom: 4px;
    font-size: 17px;
    font-family: 'AGP';
    letter-spacing: 0.3px;
    line-height: 1.3em;
}


/* UI */


.ui{
    background: whitesmoke;
    display: flex;
    justify-content: center;
}

.ui-contain{
    width: 90%;
    padding: 140px 0px;
}


/* UI : Headin */


.ui-headin{
    padding-bottom: 60px;
    text-align: center;
}

.ui-subtitle{
    font-size: 16px;
}

.ui-title{
    font-size: 44px;
    font-weight: 700;
}

.ui-data{
    font-size: 14px;
}


/* UI : Content */


.ui-content{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}


.ui-box{
    width: auto;
    box-shadow: 0px 4px 17px gainsboro;
    padding: 40px 30px;
    border-radius: 10px;
    background: white;
}

.ui-logo{
    display: flex;
    justify-content: flex-end;
}

.ui-icon{
    width: 80px;
    height: 80px;
    border-radius: 80px;
    font-size: 24px;
    background: gainsboro;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-icon img{
    height: 28px;
}

.ui-all{
    width: auto;
}

.ui-name{
    padding: 10px 0px;
    font-size: 21px;
    font-weight: 700;
}

.ui-subname{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ui-button{
    padding-top: 14px;
}

.ui-button button{
    width: 130px;
    height: 48px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    background: black;
    cursor: pointer;
}


/* Mobile Responsive */


/* 1300px */

@media screen and (max-width: 1300px) {

    .ux-content, .ui-content{
        gap: 30px;
    }
    
}

/* 1100px */

@media screen and (max-width: 1100px) {

    .ux-contain{
        padding: 80px 0px 100px;
    }

    .ux-headin{
        padding-bottom: 60px;
    }

    .ui-title{
        font-size: 40px;
    }

    .ux-content, .ui-content{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ui-contain{
        padding: 80px 0px 140px;
    }

    .ui-headin{
        padding-bottom: 40px;
    }
    
    .popup{
        width: 100%;
    }
    
}

/* 700px */

@media screen and (max-width: 700px) {

    .ux-pane{
        width: 400px;
    }

    .ux-title{
        font-size: 38px;
    }

    .ux-content, .ui-content{
        gap: 23px;
    }
    
}

/* 550px */

@media screen and (max-width: 550px) {

    .ux-content, .ui-content{
        grid-template-columns: auto;
    }
    
}

/* 400px */

@media screen and (max-width: 400px) {

    .ux-title{
        font-size: 30px;
    }

    .ui-title{
        font-size: 30px;
    }

    .ux-button button{
        width: 120px;
        height: 48px;
    }
    
}

/* 350px */

@media screen and (max-width: 350px) {

    .ux-title{
        font-size: 27px;
    }

    .box-contain{
        padding: 30px;
    }

    .ui-box{
        padding: 30px 20px;
    }
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}