*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

html, body {
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #006634;
  padding-bottom: 1rem;
}

h4, h5, h6 {
  color: #0f8eba;
}

p, a, span, small {
  font-family: "Open Sans", sans-serif;
  color: #292929;
  line-height: 1.25rem;
}
p:last-child, a:last-child, span:last-child, small:last-child {
  padding-bottom: 0;
}

h1 {
  font-size: 2rem;
  line-height: 1.5rem;
  padding: 1.5rem 0 3rem;
}
@media (min-width: 500px) {
  h1 {
    font-size: 2.25rem;
    line-height: 3.5rem;
    padding: 1.5rem 0 3rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    padding: 1.75rem 0 3.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    padding: 2rem 0 4rem;
  }
}

h2, h3 {
  font-size: 1.4rem;
  line-height: 1.75rem;
}
@media (min-width: 500px) {
  h2, h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  h2, h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2, h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (min-width: 500px) {
  h4 {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h5 {
  font-size: 1rem;
  line-height: 1.25rem;
}
@media (min-width: 500px) {
  h5 {
    font-size: 1.1rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
    line-height: 1.3rem;
  }
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.375rem;
    line-height: 1.4rem;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

h6 {
  font-size: 1.1rem;
  line-height: 1.25rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.6rem;
  padding-bottom: 1rem;
}

a {
  transition: color 0.1s;
  text-decoration: none;
}
a:hover {
  color: #006634;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 500px) {
  .container {
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}

strong {
  font-weight: bold;
}

.breakpoint-indicator {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  left: 20px;
}
.breakpoint-indicator:before {
  content: "xs";
  padding: 0.5rem 1rem;
  background: white;
  color: #292929;
  border: 2px solid #292929;
}
@media (min-width: 500px) {
  .breakpoint-indicator:before {
    content: "sm";
  }
}
@media (min-width: 768px) {
  .breakpoint-indicator:before {
    content: "md";
  }
}
@media (min-width: 1024px) {
  .breakpoint-indicator:before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  .breakpoint-indicator:before {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  .breakpoint-indicator:before {
    content: "xxl";
  }
}

.sticky {
  padding: 1rem;
  position: sticky;
  top: 1rem;
  border-top: 2px solid #006634;
  border-bottom: 2px solid #006634;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}
.sticky .cta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .sticky .cta {
    justify-content: initial;
  }
}
.sticky .cta img {
  width: 75px;
}
@media (min-width: 768px) {
  .sticky .cta h3 {
    margin-left: 1rem;
  }
}
.sticky .cta h3, .sticky .cta p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.sticky .cta .whatsapp-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .sticky .cta .whatsapp-button {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .sticky .cta .whatsapp-button {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .sticky .cta .whatsapp-button p {
    white-space: nowrap;
    margin-right: 1rem;
  }
}
.sticky.scroll h3, .sticky.scroll img {
  left: 0;
  opacity: 1;
}
.sticky h3, .sticky img {
  position: relative;
  transition: left 0.4s, opacity 0.4s;
  left: -10vw;
  opacity: 0;
}

.button {
  font-size: 1rem;
  padding: 1rem;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  color: #006634;
  border: 2px solid #006634;
  border-radius: 10px;
  flex: 0 0 150px;
  max-height: 60px;
}
.button:hover {
  color: white;
  background: #006634;
  border-color: #131313;
}

header {
  margin-bottom: 1rem;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40vw;
  height: 40vw;
}
@media (min-width: 500px) {
  header .logo {
    width: 28vw;
    height: 28vw;
  }
}
header .logo img {
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
}
header .photo {
  width: 40vw;
  height: 40vw;
}
@media (min-width: 500px) {
  header .photo {
    width: 28vw;
    height: 28vw;
  }
}
header .photo img {
  width: auto;
  height: 100%;
  display: block;
  border: 2px solid #006634;
  padding: 3px;
}

main .content {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  main .content {
    display: flex;
  }
}
main .contact-information {
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  main .contact-information {
    padding-right: 1rem;
    width: 30%;
  }
}
@media (min-width: 1024px) {
  main .contact-information {
    padding-right: 1rem;
    width: 25%;
  }
}
@media (min-width: 768px) {
  main .about {
    padding-left: 1rem;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  main .about {
    padding-left: 1rem;
    width: 75%;
  }
}

footer {
  border-top: 2px solid #292929;
}
footer .treatment-locations, footer .sport-location {
  padding: 1rem 0;
}
footer .treatment-locations > div, footer .sport-location > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 500px) {
  footer .treatment-locations > div, footer .sport-location > div {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
footer .treatment-locations .location, footer .sport-location .location {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
footer .treatment-locations .location a, footer .sport-location .location a {
  display: flex;
  flex-wrap: wrap;
}
footer .treatment-locations .location h4, footer .sport-location .location h4 {
  flex: 0 0 100%;
}
@media (min-width: 500px) {
  footer .treatment-locations .location, footer .sport-location .location {
    width: 50%;
    margin-bottom: 3rem;
  }
  footer .treatment-locations .location.logo-vince-fysio, footer .sport-location .location.logo-vince-fysio {
    width: 100%;
    justify-content: center;
  }
}
footer .treatment-locations .location .logo-container, footer .sport-location .location .logo-container {
  display: flex;
  width: 100%;
  margin: 0 1rem 0 0;
}
@media (min-width: 768px) {
  footer .treatment-locations .location .logo-container, footer .sport-location .location .logo-container {
    width: 100px;
    height: 100px;
    margin-right: 1rem;
  }
  footer .treatment-locations .location .logo-container:first-child, footer .sport-location .location .logo-container:first-child {
    justify-content: center;
  }
}
footer .treatment-locations .location .logo-container img, footer .sport-location .location .logo-container img {
  width: 100%;
  object-fit: contain;
}
footer .business-data {
  background: #131313;
}
footer .business-data span, footer .business-data {
  color: white;
}
footer .business-data > .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .business-data > .container {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
footer .copyright-bar p {
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */
