#container{
    width: 100%;
    background-color: var(--background);
   
} 
.content{
    position: relative;
    z-index: 1;
    display: flex;
    
    justify-content: space-between;
    
}

.contact{
    width: 50%;
    margin-bottom: 2rem;
}

 #container .infor{
    margin: 2rem 0 2rem 0;  
    line-height: 2rem;
    
}
.title{
    font-size: 25px;
    margin-top: 3rem;
    margin-bottom: 3rem;    
}
.infor p{
    font-weight: 600;
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
}
h5{
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
    color: var(--inactive);
}

#infor_customer .full-width{
    width: 100%;
}
 #infor_customer .field-input{
    height: 45px ;
     padding-top: 1.5em;
     padding-bottom: 0.38em;
     border-radius: 3px;
     border: 1.5px solid var(--primary-color);
     background: white;
     padding: 0.94em 2.8em 0.94em 0.8em;
}
#infor_customer #txtname{
    width: 90%;
    
} 
#infor_customer .email-phone{
    
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 15px;
    margin-top: 4rem;
    width: 90%;
    justify-content: space-between;
      
}
 #infor_customer  #txtemail{
  width: 100%
}
#infor_customer #txtphone {
    width: 100%
  } 
   
  #infor_customer  .note .field-note{
      margin-top: 4rem;
      padding: 0.94em 2.8em 0.94em 0.8em;
    outline-color: var(--primary-color);
    border-radius: 3px;
    border: 1.5px solid var(--primary-color);
    font-size: 1.5rem;
    width: 90%;
} 
/* reponsive */
@media (max-width: 428px){
    #container .content{
        display: block;
        width: 100%;
    }
   
    .map {
        position: relative;
        padding-bottom: 86%; 
        height: 0;
        overflow: hidden;
    }
    /* //(450/500*100% = 90%) */
    .map iframe {
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .contact{
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
    }
    .title{
        font-size: 20px;
    }
    .infor p{
        font-size: 14px;
    }
    #infor_customer .email-phone{
        display: block;
        
    }
    #infor_customer .email{
      
        margin-bottom: 4rem;
    } 
    

  }
  
  @media (min-width: 429px) and (max-width: 768px){

    #container .content{
        /* display: block; */
        width: 100%;
    }
   
    /* .map {
        position: relative;
        padding-bottom: 86%; 
        height: 0;
        overflow: hidden;
    } */
    /* //(450/500*100% = 90%) */
    .map iframe {
        position: absolute;
        top:0;
        left: 0;
        width: 50%;
        height: 100%;
    }
    .contact{
        padding-left: 2rem;
        padding-right: 2rem;
        width: 50%;
    }
    
    /* #infor_customer .email-phone{
        display: block;
    } */
    #infor_customer .email{
       
        margin-bottom: 4rem;
    } 
    
  }
 