* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}


/* =========================== popup model =================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-title {
  font-size: 35px;
  text-align: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 35px;
  border: 1px solid #888;
  width: 100%;
  max-width: 1037px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 1.3);
}
.main-qr{
  display: flex;
}
.modal-body{
  padding: 20px;
  margin-top: 170px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

#map {
  width: 95rem;
  height: 32rem;
}
#map2 {
  width: 20rem;
    height: 16rem;
}

#reach {
  margin-left: 7rem;
  border-bottom: 3px solid orange;
  width: 15rem;
  font-size: 2rem;
}

.contact-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin-left: 28%;
  margin-bottom: 2%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input[type="submit"] {
  background-color: orange;
  color: white;
  border: none;
  cursor: pointer;
}

.form-group input[type="submit"]:hover {
  background-color: #e06b12;
}

@media screen and (max-width: 600px) {
  .contact-container {
    width: 90%;
  }
}

/*=================RISPONSIVE============== */

@media (min-width: 769px) and (max-width: 1024px) {
  #map {
    width: 62.4rem;
    height: 32rem;
  }
  .modal-content {
    margin: 15% 0px 0px 170px;
  }
}
@media (max-width: 768px) {

  #reach {
    margin-left: 2rem;
    width: fit-content;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal {
    z-index: 1000000;
    width: 100%;
  }
  .main-qr{
    display: flex;
    flex-wrap: wrap;
}
.main-qr .img{
    margin-left: -60px;
}
.modal-body{
    margin-top: -20px;
}


  #map {
    width: 23.8rem;
    height: 32rem;
  }

  #reach {
    margin-left: 1rem;
    width: fit-content;
    font-size: 1.2rem;
  }

  .contact-container {
    margin-left: 5%;
  }
}