
/* Responsive Elements  = Mobile*/
@media only screen and (max-width: 768px) {
  .contactus{
    background-color: rgb(60, 60, 60);
    color: white;
    display: flex;
    flex-direction: column;
  }
  
  .contactcard{
    flex : 4;
    display: grid;
    grid-template-rows: 1fr 5fr;
  }
  
  .lhs-contact {
    display: block;
  }
  
  .rhs-contact {
    display: block;
  }
  .contactcard img {
    display: none;
  }
  
  .contactcard h1 {
    font-size: 14px;  
    position: relative;
    left: 30px;
  }
  .contactcard p {
    font-size: 10;
    position: relative;
    left: 30px;
    width: 80%;
  }
  
  
  .v-divider {
    /* flex : 1; */
    width: 100%;
    border-style: solid;
    border-bottom: 1px black;
    border-width: 1px;
  }
  
  .tandc {
    display:flex;
    flex-direction: column;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
  }
  
  .tandc .lhs {
    flex: 2;
    display: flex;
  }
  
  .tandc .middle {
    flex: 4;
  }
  
  .tandc .rhs {
    flex: 1;
    align-content: flex-end;
    padding-right: 10px;
  }
  
  .tandc a {
    flex: 1;
    color: white;
    font-size: 12px;
  }
  
}
/* Responsive elements = Web */
@media only screen and (min-width: 769px) {
  .contactus{
    background-color: rgb(60, 60, 60);
    color: white;
    display: flex;
    flex-direction: row;
  }
  
  .contactcard{
    flex : 4;
    display: grid;
    grid-template-columns: 1fr 5fr;
  }
  
  .lhs-contact {
    display: block;
  }
  
  .rhs-contact {
    display: block;
  }
  .contactcard img {
    height: 20px;
    position: relative;
    top: 20px;
    left: 20px;
  }
  
  .contactcard h1 {
    font-size: 14px;  
    position: relative;
    left: 30px;
  }
  .contactcard p {
    font-size: 10;
    position: relative;
    left: 30px;
    width: 80%;
  }
  
  
  .v-divider {
    /* flex : 1; */
    width: 1px;
    border-style: solid;
    border-left: 1px black;
  }
  
  .tandc {
    display:flex;
    flex-direction: row;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
  }
  
  .tandc .lhs {
    flex: 2;
    display: flex;
  }
  
  .tandc .middle {
    flex: 4;
  }
  
  .tandc .rhs {
    flex: 1;
    align-content: flex-end;
    padding-right: 10px;
  }
  
  .tandc a {
    flex: 1;
    color: white;
    font-size: 12px;
  }
  
}
