/* Header : Top */


._header-top{
    color: white;
    background: black;
    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: #ff6600;
}

._header-top-search{
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: clip;
}


/* Headin */


.headin{
    display: flex;
    justify-content: center;
}

.headin-contain{
    width: 90%;
    padding: 40px 0px;
}

.headin-name{
    font-size: 18px;
    font-weight: 300;
    color: indigo;
}

.headin-title{
    width: 60%;
    padding: 10px 0px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.4em;
}

.headin-subname{
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.4px;
}


/* UX */


.ux{
    display: flex;
    justify-content: center;
}

.ux-contain{
    width: 90%;
    padding: 10px 0px 100px;
}


/* UX : Headin */


.ux-headin{
    display: flex;
    gap: 40px;
}


/* UX : Logo */


.ux-logo{
    position: relative;
    flex: 1;
    min-height: 60vh;
}

.ux-image{
    position: absolute;
    inset: 0px;
    display: flex;
}

.ux-logo img{
    width: 100%;
    border-radius: 7px;
    object-fit: cover;
}


/* UX : Pane */


.ux-pane{
    width: 450px;
    border-radius: 7px;
    box-shadow: 0px 4px 17px gainsboro;
    display: flex;
    justify-content: center;
}

.ux-lean{
    width: 80%;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ux-box{
    width: 100%;
}

.ux-name{
    padding-bottom: 10px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.ux-subname{
    font-size: 14px;
}


/* UX : Content */


.ux-content{
    padding: 40px 0px;
}

.ux-title{
    padding-bottom: 20px;
    font-size: 21px;
    font-weight: 600;
}

.ux-all{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ux-data{
    flex: 1;
    font-family: 'AGP';
    font-size: 19px;
    letter-spacing: 0.2px;
    text-align: justify;
}


/* UI */


.ui{
    display: flex;
    justify-content: center;
}

.ui-contain{
    width: 90%;
    padding: 0px 0px 140px;
}


/* UI : Title */


.ui-title{
    padding-bottom: 40px;
    font-size: 16px;
    letter-spacing: 0.3px;
}


/* UI : Content */


.ui-content{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 45px;
}


/* Box */


.box{
    width: auto;
    box-shadow: 0px 4px 17px gainsboro;
}

.box-logo{
    width: auto;
    display: flex;
}

.box-logo img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.box-content{
    padding: 20px 30px;
}

.box-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3em;
}

.box-name{
    padding: 10px 0px 40px;
    font-size: 14px;
}


/* Mobile Responsive */


/* 1300px */

@media screen and (max-width: 1300px) {

    .ui-content{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
}

/* 1200px */

@media screen and (max-width: 1200px) {

    .ux-pane{
        width: 400px;
    }

    .ux-lean{
        width: 80%;
        padding: 50px 0px;
    }

    .ux-all{
        width: auto;
    }
    
}

/* 1000px */

@media screen and (max-width: 1000px) {

    .ux-headin{
        flex-direction: column;
    }

    .ux-pane{
        width: 100%;
    }

    .ux-lean{
        width: 85%;
        padding: 60px 0px;
    }
    
}

/* 900px */

@media screen and (max-width: 900px) {

    .headin-title{
        width: auto;
    }

    .ui-content{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
}

/* 600px */

@media screen and (max-width: 600px) {

    .ui-content{
        grid-template-columns: auto;
    }
    
}

/* 500px */

@media screen and (max-width: 500px) {

    .ux-image img{
        max-height: 60vh;
    }

    .ux-lean{
        width: 85%;
        padding: 40px 0px;
    }
    
}

/* 400px */

@media screen and (max-width: 400px) {

    .headin-title{
        font-size: 24px;
        font-weight: 700;
    }

    .image img{
        max-height: 55vh;
        border-radius: 4px;
    }

    .box-logo img{
        height: 240px;
        border-radius: 4px;
    }
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}