/* 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: 70px 0px 0px;
}

.headin-button button{
    width: auto;
    padding: 10px 30px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1px;
    color: black;
    background: gainsboro;
    cursor: pointer;
}

.headin-title{
    width: 60%;
    padding: 10px 0px;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.4em;
}

.headin-name{
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.4px;
}


/* Content */


.content{
    display: flex;
    justify-content: center;
}

.contain{
    width: 90%;
    padding: 30px 0px 200px;
    display: flex;
    gap: 70px;
}


/* All */


.all{
    flex: 1;
}

.image{
    padding-bottom: 45px;
    display: flex;
}

.image img{
    width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: cover;
}

.data{
    padding: 45px 0px 30px;
    border-top: 3px solid black;
}

.data-content{
    padding-bottom: 18px;
    font-size: 15px;
    letter-spacing: 0.1px;
    line-height: 1.6em;
}


/* Pane */


.pane{
    width: 400px;
}

.pane-contain{
    width: auto;
}


/* Pane : Headin */


.pane-headin{
    padding-bottom: 30px;
    font-size: 19px;
    letter-spacing: 0.3px;
    line-height: 1em; 
}


/* Pane : Content */


.pane-content{
    display: grid;
    grid-template-columns: auto;
    gap: 40px;
}


/* Box */


.box{
    width: auto;
}

.box-logo{
    display: flex;
}

.box-logo img{
    width: 100%;
    height: 280px;
    border-radius: 6px;
    object-fit: cover;
}

.box-content{
    padding: 20px 0px 0px;
}

.box-name{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: gray;
}

.box-title{
    margin: 10px 0px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-data{
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}


/* Mobile Responsive */


/* 1300px */

@media screen and (max-width: 1300px) {

    .contain{
        gap: 45px;
    }

    .pane{
        width: 360px;
    }
    
}

/* 1200px */

@media screen and (max-width: 1200px) {

    .pane{
        width: 320px;
    }
    
}

/* 1100px */

@media screen and (max-width: 1100px) {

    .pane{
        width: 300px;
    }
    
}

/* 900px */

@media screen and (max-width: 900px) {

    .headin-title{
        width: auto;
    }

    .contain{
        flex-direction: column;
    }

    .pane{
        width: auto;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .pane-contain{
        padding: 80px 0px 0px;
    }

    .pane-headin{
        padding-bottom: 45px;
    }

    .pane-content{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
}

/* 600px */

@media screen and (max-width: 600px) {

    .pane-content{
        grid-template-columns: auto;
    }
    
}

/* 500px */

@media screen and (max-width: 500px) {

    .image img{
        max-height: 60vh;
    }

    .pane-contain{
        padding: 30px 0px 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) {
    
}