
		
.contact-container {
  display: flex;
  justify-content: space-between;
  background-image: url("pict/fon_text.jpg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100%;
  max-width: 1100px;
  padding: 10px 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 auto;
}
		
.locations-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
  gap: 10px;
  padding: 15px 10px 15px 10px;
}
		
.locations-item {
  font-family: PTBold;
  font-size: 22px;
  text-decoration: none; 		
}
		
.locations-item img {
  position: relative;
  top: 4px;	
}
		
.contactus-form-left {
  width: 45%;
  padding: 0px 20px 20px 20px;
  margin: 0 auto;
  font-family: PTSans-Regular; 
  font-size: 20px;
  color:#404040;
}

.contactus-form-right {
  width: 55%;
  margin: 0 auto;
}
		
.hours-list {
  list-style-type: none; 
  padding-left: 0;
  margin: 10px 0 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 60px 0 0;
  align-items: baseline;
  position: relative;
  padding-left: 25px; /* room for the bullet */
}

.hours-list li::before {
  content: "■"; /* square bullet */
  position: absolute;
  left: 0;
  color: #404040;
  font-size: 14px;
  line-height: 1.7;
}
				
.day {
  font-family: PTSans-Bold; 
  font-size: 20px;
  color:#404040;
}
		
.map-container {
  max-width: 1200px;
  margin: 0 auto; 
  align-content: center;
}

.map-container iframe {
  width: 100%;
  aspect-ratio: 2 / 1;
}

.mail-text {
font-family: PTBold; 
font-size: 25px; 
text-decoration: none; 
}

@media (max-width: 920px) {
  .contactus-form-right, .contactus-form-left {
  width: 50%;
  }
}

@media (max-width: 830px) {
 .mail-text {
  font-size: 23px;
  }
 .map-container iframe {
  aspect-ratio: 1.8 / 1;
 }
}

@media (max-width: 780px) {
 .contact-container {
  display: block;
  }
 .contactus-form-right, .contactus-form-left {
  width: 70%;
  }
}

@media (max-width: 700px) {
  .contactus-form-right, .contactus-form-left {
  width: 80%;
  }
 .map-container iframe {
  aspect-ratio: 1.5 / 1;
 }
}

@media (max-width: 600px) {
  .contactus-form-right, .contactus-form-left {
  width: 90%;
  }
  .locations-grid {
    margin: 0 auto;
    padding: 10px;
 }
  .map-container iframe {
  aspect-ratio: 1.2 / 1;
 }
 .locations-item {
  line-height: 1; 		
 }
}

@media (max-width: 560px) {
  .contactus-form-right {
  width: 100%;
  }
  .contactus-form-left {
  width: 100%;
  margin: 10px 20px;
  }
  .contact-container {
  padding: 10px 0px;
 }
 .locations-grid {
  
  padding-left: 10px;
 }
}

@media (max-width: 560px) {
 .locations-grid {
  padding-left: 15px;
 }
}
		
@media (max-width: 500px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  }
  .contactus-form-left {
  margin: 10px 10px;
  padding: 0px 0px 20px 20px;
  }
  .mail-text { 
font-size: 21px;  
 }
}
	
	
	