
/*feedback*/

.feedback_wrapper{
    display:grid;
     grid-template-columns: repeat(1, 1fr);
     gap:20px;
}
 
.feedback-content-block:not(:last-child) {
    margin-bottom: 20px;
    width:100%;
}

.feedback-content-block h3 {
    font-weight: bold;
    color: #512b58;
    font-size: 18px;
    margin-bottom: 10px;
}

.feeback_contact_list li {
    display: flex;
    align-items: center;
    flex-wrap:wrap;
    row-gap:10px;
    column-gap: 10px;
        margin-bottom:10px;
}

.feeback_contact_list li a,
.feeback_contact_list li span {
    font-size: 16px;
    font-weight: 400;
    color: #512b58;
    transition: .3s ease-in-out;
}

.feeback_contact_list li a:hover {
    opacity: .4;
}

.feedback-social {
    display: block;
    font-weight: 600 !important;
}

.feedback-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feedback-social-list li:not(:last-child) {
    margin-right: 10px;
}

.feedback-social-list li {
    width: 40px;
    height: 40px;
    background: #512b58;
    color: #fff;
    overflow: hidden;
    margin-bottom:10px;
    border-radius: 50%;
}

.feedback-social-list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

#map {
    width: 100%;
    height: 300px;
    margin-bottom:20px;
    max-width:100%;
    border-radius:20px;
    overflow:hidden;
}

.feedback-content-qr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-qrcode {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}

.feedback-location {
    padding: 20px;
    height: 130px;
    row-gap:10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    font-size: 20px;
    text-align: right;
    color: #fff;
    background: #512b58;
}

.feedback-location span {
    font-weight: bolder;
}

.qrcode_key {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    border-radius: 5px;
   
    padding:10px;
    border: 4px solid #512b58;
}
.qrcode_key{
    margin-left:0;
     width:40%;
}
.qrcode_key img{
   
    height:100px;
    object-fit:cover;
}
@media screen and (min-width:576px){
    .feedback-location{
        width:50%;
    }
    .qrcode_key {
        width:45%;
        margin-left: 20px;
    }
    
}
@media screen and (min-width:992px){
  .feedback_wrapper{
     grid-template-columns: repeat(2, 1fr);
}
    
}