/* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

/* General Custom CSS */

.contact-direct {
  max-width: 980px;
}

.contact-direct .avia_textblock > p:first-child {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-direct-item {
  border-left: 4px solid #b02b2c;
  background: #f8f8f8;
  padding: 22px 24px;
}

.contact-direct-item:first-child {
  grid-column: span 2;
}

.contact-direct-label {
  color: #777;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.contact-direct-value {
  font-size: 25px;
  line-height: 1.25;
  margin: 0;
  word-break: break-word;
}

.contact-direct-value a {
  color: #222;
  text-decoration: none;
}

.contact-direct-value a:hover,
.contact-direct-value a:focus {
  color: #b02b2c;
}

.static-map-section {
  position: relative;
}

.static-map-frame {
  border: 0;
  display: block;
  height: 400px;
  width: 100%;
}

.static-map-link {
  background: rgba(255, 255, 255, 0.94);
  bottom: 14px;
  color: #222;
  font-size: 13px;
  left: 14px;
  padding: 8px 11px;
  position: absolute;
  text-decoration: none;
}

.static-map-link:hover,
.static-map-link:focus {
  color: #b02b2c;
}




/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

@media only screen and (min-width: 768px) {
  /* Add your Desktop Styles here */

}



/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

@media only screen and (max-width: 767px) {
  /* Add your Mobile Styles here */

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

  .contact-direct-item:first-child {
    grid-column: auto;
  }

  .contact-direct-value {
    font-size: 21px;
  }
}
