.contacts{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 70vh;
    margin-top: 80px;
    background: url(images/customer-care.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .contact{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100%;
      background-color: rgb(12, 12, 12, 0.7);
      
  }
  .contact p{
    width: 80%;
    max-width: 600px;
    color: var(--secondary-color);
    margin: 10px;
    text-align: center;
  }
  
.right-btn{
    align-items: center;
    width: auto;
    min-width: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    margin-bottom: 5px;
    color: var(--text-color);
    background-color: var(--dark-gold);
    border: none;
    padding: 5px 6px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(31, 29, 29, 0.5);
    flex-shrink: 0;
    min-width: 90px;
    cursor: pointer;
    transition: 0.3s;
    margin: 10px;
  }
  .right-btn:hover{
    box-shadow: 0 0 25px rgb(220, 231, 123);
  }

  
.contacting{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    background-color: rgb(19, 18, 18, 0.3);
  }
  .contacting-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 20px 0px 20px;
    padding: 5px;
  }
  .contacting-item1{
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 5px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    color: var(--text-color);
    box-shadow: 0 0 15px rgb(48, 49, 49, 0.3);
  }
  .contacting-item1 svg{
    width: 40px;
    height: 40px;
  }

  .contacting-item2{
    background-color: var(--secondary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0px 10px;
    width: auto;
    padding: 5px;
    color: var(--text-color);
    box-shadow: 0 0 15px rgb(48, 49, 49, 0.3);
  }
  .contacting-item2 p{
    font-size: 18px;
    text-align: center;
  }
  


  
.map-side{
    width: 100vw;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding-left: 15px;
  }
  .map h2{
    color: var(--primary-color);
    margin: 10px;
  }
  .map iframe{
    width: 100%;
  }
  