/* Typography */
body {
  font-family: 'Open Sans', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  color: #2580c3;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem !important;
  }
}

.opensans {
  font-family: 'Open Sans', sans-serif;
}
.montserrat {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

/* Tachyons Theme */
.blue {
  color: #2580c3;
}
.bg-blue {
  background-color: #2580c3;
}
.green {
  color: #52b148;
}
.bg-green {
  background-color: #52b148;
}

/* Custom Elements */
.divider {
  width: 100px;
  height: 4px;
  background-color: #52b148;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#testimonial {
  position: relative;
  z-index: 0;
}
#testimonial:before {
  content: '';
  width: 64px;
  height: 64px;
  background-color: #2580c3;
  background-image: url('https://go.collaboratemd.com/rs/312-DMZ-860/images/cmd-icon-quote.svg');
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: -32px;
  top: -32px;
  z-index: 999;
}
#testimonial:after {
  content: '';
  width: 64px;
  height: 64px;
  background-color: #2580c3;
  background-image: url('https://go.collaboratemd.com/rs/312-DMZ-860/images/cmd-icon-quote.svg');
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: -32px;
  bottom: -32px;
  z-index: 999;
  transform: rotate(180deg);
}

.button {
  display: inline-block;
  padding: 0.65rem 1.3rem;
  border-radius: 3px;
  color: #ffffff;
  line-height: 1.05;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  text-transform: uppercase;
  text-shadow: none;
  background-color: #2580c3;
  border: 2px solid #186aa5;
  background-image: none;
  transition: all 250ms ease;
  text-decoration: none;
}
.button.button-green.button-outline {
  color: #52b148;
  border-color: #52b148;
  background-color: transparent;
}
.button:hover {
  text-decoration: none;
  background-color: #186aa5;
  border: 2px solid #186aa5;
  color: #ffffff;
}
.button.button-green.button-outline:hover {
  color: #ffffff;
  background-color: #52b148;
}
