.separator-detail{
    margin: 0px 25px;
}

.ctn_head_main{
    display : flex;
    flex-direction: row;
    justify-content: space-between;
}

.ctn_head2 > span {
    font-size: 26px;
    font-weight: 700;
}

.ctn_value_detail{
    display : inline-block;
    width: 49%;
    padding : 15px 0px;
    border-style: solid;
    border-color :black;
    border-width : 1px 0px 0px 0px;

}

.lbl_detail{
    float:left;
    color : #A0A0A0;
    font-weight: 700;
}

.value_detail{
    float:right;
    margin-right: 25px;
}

.ctn_other_detail{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top:50px;
}

.piece_dtl{
    width:50%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.info_dtl{
    width:50%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.ttl_dtl{
    font-weight: 600;
    text-transform: uppercase;
}

#image2{
    margin-top: 50px;
}

/* Gallery CSS */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.modal-content {
    display: inline-block;
    margin: auto;
    max-width: 100%;
    max-height: 80vh; 
    border-radius: 8px;
    object-fit: contain; 
    background-color: transparent!important;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    pointer-events: none;
}

.ctn_gallery {
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.ctn_show_btn{
    margin: 50px;
    text-align: center;
}

.ctn_show_btn > span {
    cursor: pointer;
    text-decoration: underline!important;
}

.ligne{
    width: 100%;
    height: 1px;
    background-color: black;
}

.gal_title{
    margin-top:50px;
    margin-bottom : 20px;
}

.gal_title > h2{
    margin-bottom: 5px;
}

/** Courtier CSS **/

.ctn_courtier{
    display:flex;
    flex-direction: column;
    row-gap: 25px;
}

.ctn_info{
    display:flex;
    flex-direction: column;
    row-gap: 10px;
}

.ctn_info > div {
    font-size: 20px;
    color: white;
    font-weight: 275;
}

.ctn_contact{
    display:flex;
    flex-direction: column;
    row-gap: 10px;
}

.ctn_contact > div{
    font-size: 16px;
    color: white;
}

#btn-submit-form{
    margin-top: 20px;
}

input:focus{
    box-shadow:none!important;
}

textarea:focus{
    box-shadow:none!important;
}

.icon-check{
    display: none;
}

@media screen and (max-width:1366px) {
    #image2{
        margin-top: 35px;
        max-height: 600px;
        width: 100%;
        object-fit: cover;
    }

    .ctn_other_detail{
        margin-top: 35px;
    }

    .gal_title{
        margin-top: 35px;
    }
}

@media screen and (max-width:1200px) {
}

@media screen and (max-width:1024px) {
    #image2{
        max-height: 450px;
    }
    .ctn_head2 > span {
        font-size: 20px;
    }

    .ctn_info > div {
        font-size: 16px;
    }

    .ctn_contact > div{
        font-size: 13px;
    }
}

@media screen and (max-width:767px) {
    #image2{
        max-height: 400px;
        margin-top: 15px;
    }

    .ctn_head1{
        display: flex;
        flex-direction: column;
    }

    .separator-detail{
        display:none;
    }

    .icon-check{
        display: inline-block;
    }

    .ctn_value_detail {
        width: 99%;
        padding: 8px 0px;
    }

    .value_detail {
        margin-right: 5px;
    }

    .ctn_other_detail {
        margin-top: 25px;
        flex-direction: column;
        row-gap: 15px;
    }
    
    .piece_dtl {
        width: 100%;
        flex-direction: row;
        column-gap: 15px;
    }
    
    .info_dtl {
        width: 100%;
        flex-direction: column;
        row-gap: 10px;
    }

    .ctn_gallery {
        max-height: 200px;
    }

    .ctn_courtier{
        row-gap:15px;
    }

    .ctn_contact {
        row-gap: 5px;
    }

    .ctn_info {
        row-gap: 5px;
    }
}