html {
  height: 100%;
  min-height: 100%;
  position: relative;
}

header {
  display: block;
  min-height: 40px;
  background-color: white;
  z-index: 1000;
}

body {
  height: 100%;
  min-height: 100%;
  position: relative;
}

footer {
  min-height: 40px;
  background-color: #f2f2f2;
}

span {
  font-family: "Segoe UI Light", "Segoe WPC", "Segoe UI", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
}

p {
  font-family: "Segoe UI Light", "Segoe WPC", "Segoe UI", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
}

a {
  font-family: "Segoe UI Light", "Segoe WPC", "Segoe UI", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

section {
  width: 100%;
  position: relative;
}

.root {
  max-width: 100%;
  align-items: center;
  display: flex;
  min-height: calc(100vh - 68px - 40px);
  flex-direction: column;
  background-color: #2b6777;
}

.bg-physio {
  background-image: url("/static/media/physio1.jpg");
  background-position: 50%;
  background-size: cover;
}

.bg-blue {
  background-color: #c8d8e4;
}

.bg-green {
  background-color: #2b6777;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  min-height: 68px;
}
.navbar .navbar-item {
  width: 100%;
  text-align: center;
}
.navbar .navbar-item li {
  display: inline-block;
  float: none;
}
.navbar .navbar-item li a {
  padding: 0 30px;
}
.navbar .navbar-brand {
  padding-bottom: 8px;
}

.btn-cta {
  background-color: #52ab98;
  color: white;
  border: 1px solid white;
}
.btn-cta:hover {
  background-color: #1ea185;
  color: white;
  border: 1px solid white;
}

@media screen and (min-width: 0px) and (max-width: 459px) {
  .hide-small-screen {
    display: none;
  }
}
@media screen and (min-width: 460px) {
  .hide-large-screen {
    display: none;
  }
}
@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-fade-in {
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}/*# sourceMappingURL=style.css.map */