

/** DL style*/
.c-profile-block__row {
    display: flex;
    letter-spacing: 0;
}
.c-profile-block__title {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #B8A131;
    width: 200px;
    padding: 22px 20px 23px;
    text-align: center;
}
.c-profile-block__title--color {
    color: #846343;
}
.c-profile-block__txt {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding: 22px 20px 23px;
    flex: 1;
}
.p-profile__info {
    gap: 40px;
}

.c-profile-block{
    padding: 0 20px;
}
.c-map{
    height: 440px;
    width: 100%;
    border-radius: 50px;
}

.p-profile__img{
    width: 260px;
}
.p-profile__img img{
    width: 100%;
    display: block;
    border-radius: 20px;
}


@media screen and (max-width: 1024px) {
    .c-profile-block__title {
        width: 180px;
    }
    .c-profile-block{
        padding: 0;
    }
    .c-map{
        height: 340px;
        border-radius: 20px;
    }
}
@media screen and (max-width: 768px) {
    .c-profile-block__title{
        width: 100px !important;
        font-size: 12px !important;
        padding: 10px 5px 15px !important;
    }
    .c-profile-block__txt{
        font-size: 12px !important;
        padding: 10px 5px 15px !important;
    }
    .c-profile-block__row {
        gap: 0 !important;
    }
    .c-map{
        height: 200px;
    }
    .p-profile__info{
        flex-wrap: wrap;
        gap: 20px;
    }
    .p-profile__img{
        max-width: 150px;
        margin: auto;
    }
    .p-profile__content{
        width: 100%;
    }
}
/** End DL style*/

/** Table style*/
.c-profile-block--table .c-profile-block__title{
    /* background-color: rgba(215, 0, 0, 0.1); */
    border: 0;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
    font-size: 16px;
    padding: 28px 20px;
    width: 220px;
}
.c-profile-block--table .c-profile-block__txt{
    border: 0;
    border-left: 0;
    border-bottom: 0;
    padding: 28px 23px 28px 0;
    font-size: 16px;
    font-weight: bold;
}
.c-profile-block--table .c-profile-block__row {
    gap: 10px;
    background-color: #fff;
    /* border-radius: 20px; */
}
.c-profile-block--table .c-profile-block__row:nth-child(even){
    background-color: #F8F5EA;
}
.c-profile-block--table .c-profile-block__row ~ .c-profile-block__row{
    /* margin-top: 20px; */
    border-top: 1px solid #ccc;
}
.c-profile-block--table .c-profile-block__row:last-child .c-profile-block__title,
.c-profile-block--table .c-profile-block__row:last-child .c-profile-block__txt{
    border-bottom: 1px solid #CCCCCC;
}
@media(max-width: 768px){
    .c-profile-block--table .c-profile-block__row{
        /* border-radius: 10px; */
    }
}
/** End Table style*/