
/*** Reset ***/

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 100%;
  font-weight: 500;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, p, 
blockquote, figure,
ol, ul {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
a, button {
  color: inherit;
}
a {
  text-decoration: none;
}
button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:focus,
input,
select {
  outline: 0;
}
input {
  display: inline-block;
  line-height: 1;
  background: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  white-space: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-expand {
  display: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
em, i {
  font-style: italic;
}
strong, b {
  font-weight: 700;
}
sup { 
  position: relative;
  top: -0.5em;
  font-size: 0.6em;
  vertical-align: baseline;
}
hr {
  height: 0;
  border: 0;
  border-bottom: 1px solid #dce1e4;
  margin: 25px 0;
}
.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*** Reset ***/


/*** Common ***/

.container {
  position: relative;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
main {
  position: relative;
  display: block;
  margin-top: 130px;
}
.anchor {
  position: relative;
  display: block;
  top: -185px;
  visibility: hidden;
}
.a-text {
  top: -125px;
}
.a-main {
  top: -150px;
}
.a-doctor {
  top: -230px;
}

/*** Common ***/


/*** Header ***/

header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 6px -2px rgba(0,0,0, 0.3);
  z-index: 999;
}
.logo-wrap {
  float: left;
  margin: 21px 0;
}
.logo img {
  float: left;
  width: 240px;
  padding-right: 17px;
  border-right: 2px solid #dce1e4;
}
.logo p {
  float: left;
  display: block;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.1;
  color: #56565b;
  padding-left: 16px;
  margin: 8px 0 0;
}
.contact-info,
.mobile-info {
  font-weight: 700;
}
.contact-info {
  float: right;
}
.request {
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #01a1dd;
  padding: 13px 15px;
  border-radius: 0 0 4px 4px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.request:hover {
  background: #003764;
}
.contact-info span,
.mobile-info span {
  display: block;
  font-size: 1.48em;
  color: #003764;
}
.contact-info span {
  text-align: right;
  margin: 12px 13px 0 0;
}

/*** Header ***/


/*** Desktop Navigation ***/

.main-nav {
  position: relative;
  left: 0;
  text-align: center;
  background: #56565b;
}
nav {
  display: inline-block;
  vertical-align: top;
}
.dropdown,
.single-link {
  float: left;
}
.panel-link a,
.single-link a {
  position: relative;
  display: block;
  font-size: 1.05em;
  line-height: 1;
  color: #fff;
}
.panel-link a {
  padding: 10px 32px 14px 16px;
}
.single-link a {
  padding: 10px 16px 14px;
}
.panel-link a:after {
  position: absolute;
  content: "";
  top: 15px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.dropdown:hover a,
.single-link a:hover {
  color: #fff;
  background: #003764;
}
.dropdown:hover a:after {
  color: #fff;
}
.panel-link a:hover,
.single-link a:hover,
.panel a:hover {
  color: #01a1dd;
}

.dropdown:hover .panel {
  display: block;
  opacity: 1;
} 
.panel {
  position: absolute;
  display: none;
  min-width: 160px;
  top: 40px;
  text-align: left;
  background: #003764;
  padding: 4px 0 10px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 6px -2px rgba(0,0,0, 0.3);
  opacity: 0;
  transition: all .3s ease .15s;
}
.panel ul {
  list-style: none;
}
.panel a {
  position: relative;
  display: block;
  font-size: 0.95em;
  color: #fff;
  padding: 7px 16px;
}
.panel li li {
  display: none;
}

nav a.active {
  color: #fff;
  background: #003764;
}

.main-nav .mobile-info,
.main-nav button,
.menu-btn,
.open {
  display: none;
}

/*** Desktop Navigation ***/


/*** Colors + Fonts 

Blue - #003764
Sky Blue - #01a1dd
Light Blue - #edf5fb

Gray - #56565b
Medium Gray - #dce1e4
Light Gray - #f5f5f5

font-family:'Foundry Sterling W01 Lt';
font-family:'Foundry Sterling W01 Bk';
font-family:'Foundry Sterling W01 Md';
font-family:'Foundry Sterling W01 Bd';

Colors + Fonts ***/


/*** Font Styles ***/

main h1,
main h2 {
  letter-spacing: -0.02em;
}
main h1 {
  font-weight: 700;
  font-size: 2.2em;
  line-height: 1.1;
  color: #003764;
  margin-bottom: 15px;
}
main h2 {
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.2;
  color: #01a1dd;
  margin-bottom: 2px;
}
main h3,
main p,
main li {
  font-size: 1.15em;
  color: #56565b;
}
main h3 {
  font-weight: 700;
  line-height: 1.2;
}
main p {
  line-height: 1.5;
  margin-bottom: 20px;
}
main ul {
  margin: 0 0 20px 45px;
}
main li {
  line-height: 1.35;
  margin: 8px 0;
}
main p a,
.callout a {
  text-decoration: underline;
}
main p a:hover,
.callout a:hover {
  color: #01a1dd;
}

main h2 + h3 {
  margin-top: 8px;
}
main p + ul {
  margin: -10px 0 20px 45px;
}

.video-section h2 {
  font-weight: 700;
  font-size: 1.8em;
  color: #003764;
  margin-bottom: 15px;
}
.video-section h2 {
  text-align: center;
}

/*** Font Styles ***/


/*** Subpage Content ***/

.banner {
  padding: 12% 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sub-content {
  margin-top: 45px;
}

.cta-block,
.profile {
  padding: 30px 0;
  border-bottom: 1px solid #dce1e4;
}
.cta-block:first-of-type,
.profile:first-of-type {
  padding: 15px 0 30px;
}
.cta-block:last-of-type,
.profile:last-of-type {
  border-bottom: none;
}
.cta-block img,
.profile img {
  float: left;
  width: 25%;
  margin-right: 3%;
}
.cta-block img {
  border-radius: 0 20px 0 20px;
}
.cta-text,
.pro-text {
  float: left;
  width: 72%;
}
.cta-block h3,
.cta-block a {
  font-weight: 700;
  color: #003764;
}
.cta-block h3 {
  font-size: 1.2em;
  line-height: 1.15;
  margin-bottom: 5px;
}
.cta-block p {
  font-size: 1.05em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cta-block a {
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.cta-block a:after {
  position: absolute;
  content: ">";
  font-family: inherit;
  font-weight: 700;
  font-size: 0.7em;
  top: 5px;
  margin-left: 6px;
}
.cta-block a:hover {
  color: #01a1dd;
}
.full-text h3 {
  margin: -5px 0 5px;
}

.pro-text h2 {
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 5px;
}
.pro-text h2 a {
  color: inherit;
}
.pro-text h2 a:hover {
  color: #01a1dd;
}
.pro-text p:last-child {
  margin: 0;
}
.pro-text h2 + h3 {
  margin: -10px 0 15px;
}

.pro-text-title {
  margin-bottom: 20px;
}
.pro-text-title h3 {
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.4;
  color: #01a1dd;
}
.pro-text-title h4 {
  display: inline-block;
  font-weight: 700;
  font-size: 1.15em;
  color: #003764;
  padding: 2px 0 2px 10px;
  border-left: 5px solid #01a1dd;
  margin-top: 20px;
}

.diagram {
  float: right;
  width: 50%;
  padding-left: 30px;
  margin-bottom: 15px;
}
.diagram p {
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1.3;
  padding: 8px 12px 10px;
  background: #dce1e4;
  margin: 0;
}

.callout {
  width: 100%;
  background: #edf5fb;
  padding: 15px 30px;
  border-radius: 0 30px 0 30px;
  margin: 30px 0 25px;
}
.callout ul {
  margin: 0 22px;
}
.callout h3 {
  font-size: 1.25em;
  margin: 5px 0 10px;
}
.callout + .cta-block {
  padding: 15px 0 30px;
}
main h2 + .callout {
  margin: 10px 0 25px;
}
.jump-nav ul {
  list-style: none;
  margin: 0;
}

/*** Subpage Content ***/


/*** Side Navigtion ***/

.side-block {
  float: left;
  width: 76%;
  padding-left: 50px;
}
.side-nav {
  float: left;
  position: relative;
  width: 24%;
}
.side-nav ul {
  list-style: none;
  margin: 0;
}
.side-nav li {
  margin: 0;
}
.side-nav a {
  display: block;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.1;
  color: #fff;
  background: #003764;
  padding: 10px 16px 12px;
  border-radius: 4px 4px 0 0;
  margin: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.side-nav li li a {
  font-size: 0.72em;
  color: #56565b;
  background: #f5f5f5;
  border-radius: 0;
  border-left: 1px solid #dce1e4;
  border-right: 1px solid #dce1e4;
  border-bottom: 1px solid #dce1e4;
}
.side-nav li li:last-child a {
  border-radius: 0 0 4px 4px;
}
.side-nav li li li a {
  position: relative;
  font-weight: 500;
  font-size: 0.6em;
  background: #fff;
  border-radius: 0 !important;
  padding-left: 38px;
}
.side-nav li li li a:before {
  position: absolute;
  content: ">";
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95em;
  color: #01a1dd;
  top: 13px;
  left: 28px;
}
.side-nav a:hover {
  background: #01a1dd;
}
.side-nav li li a:hover,
.side-nav li li a.active {
  color: #01a1dd;
  background: #edf5fb;
}

/*** Side Navigtion ***/


/*** Patient Stories ***/

.story-block {
  padding-bottom: 35px;
  border-bottom: 1px solid #dce1e4;
  margin: 25px 0;
}
.story-block h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
}
.story-block img {
  float: left;
  width: 28%;
  border-radius: 0 20px 0 20px;
  margin-top: 5px;
}
.hide {
  display: none;
}
.story-text {
  float: left;
  width: 72%;
  padding-left: 3%;
}
.read-more {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 1.15em;
  color: #01a1dd;
  margin: 0;
  padding: 0;
}
.read-more:after {
  position: absolute;
  content: ">";
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75em;
  top: 5px;
  right: -17px;
}
.read-more:hover {
  color: #003764;
}

.vid-col h1 {
  margin-bottom: 35px;
}
.vid-col .video-section {
  margin: 0 0 40px;
}
.vid-col .video-section p {
  font-size: 1.05em;
  line-height: 1.4;
  margin-top: 10px;
}
[class^="col-2"] {
  float: left;
  width: 48%;
}
.col-2-1 {
  margin-right: 2%;
  clear: both;
}
.col-2-2 {
  margin-left: 2%;
}

/*** Patient Stories ***/


/*** Contact Us ***/

.col-block {
  width: 100%;
  margin-top: 30px;
}
[class^="col-3"],
[class^="loc-3"] {
  float: left;
  width: 31%;
  margin-right: 3%;
  padding: 0 15px;
}
[class^="loc-3"] {
  margin-top: 20px;
  margin-bottom: 20px;
}
.col-3-3,
.loc-3-3 {
  margin-right: 0;
}
[class^="col-4"] {
  float: left;
  width: 22.75%;
  margin-right: 3%;
}
.col-4-4 {
  margin-right: 0;
}
.hospital img {
  width: 100%;
  border-top-right-radius: 15px;
}
.hospital h2,
.hospital p,
.hospital a,
.doc-contact h3,
.contact-text p  {
  font-weight: 700;
}
.hospital h2,
.doc-contact h3 {
  font-size: 1.25em;
  color: #003764;
}
.hospital h2 {
  line-height: 1.15;
  background: #edf5fb;
  padding: 12px 15px 15px;
  border-bottom-left-radius: 15px;
}
.hospital p {
  line-height: 1.45;
  padding: 0 15px;
  margin: 15px 0 10px;
}
.hospital a {
  position: relative;
  font-size: 1.05em;
  color: #003764;
  padding: 0 15px;
}
.hospital a:after {
  position: absolute;
  content: ">";
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75em;
  top: 9px;
  margin-left: 6px;
}
.hospital a:hover {
  color: #01a1dd;
}

.contact-text p {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #dce1e4;
  border-bottom: 1px solid #dce1e4;
  margin: 45px 0;
}

.doc-contact {
  padding-bottom: 10px;
  border-bottom: 1px solid #dce1e4;
  margin-bottom: 20px;
}
[class^="col-3"] .doc-contact:last-child {
  border-bottom: none;
}
.doc-contact h3 {
  margin-bottom: 6px;
}
.doc-contact p {
  margin-bottom: 10px;
  line-height: 1.45;
}
.doc-contact i {
  font-size: 0.9em;
  color: #aaaaad;
}

/*** Contact Us ***/


/*** Homepage ***/

.intro {
  position: relative;
  max-width: 820px;
  padding-top: 40px;
  margin: 0 auto 40px;
}
.intro p {
  font-weight: 500;
  font-size: 1.2em;
  text-align: center;
}

.home-grid {
  max-width: 1300px;
  padding: 0 2%;
  margin: 50px auto;
}
.home-grid a {
  float: left;
  display: block;
  width: 48%;
  margin-bottom: 2%;
}
.home-grid a:nth-child(odd) {
  margin-right: 4%;
}
.cta-card {
  background: #edf5fb;
  border-radius: 0 30px 0 30px;
}
.cta-card img {
  float: left;
  width: 40%;
  border-right: 8px solid #fff;
  border-bottom-left-radius: 30px;
}
.card-text {
  float: left;
  position: relative;
  width: 60%;
  padding: 18px 25px 0;
}
.card-text:before {
  position: absolute;
  content: '';
  top: 18px;
  left: 0;
  border-top: 13px solid transparent;
  border-left: 17px solid #fff;
  border-bottom: 13px solid transparent;
}
.card-text h3 {
  font-weight: 700;
  color: #003764;
}
.card-text h3 {
  font-size: 1.35em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.card-text p,
.card-text span {
  font-size: 1.05em;
}
.card-text p {
  line-height: 1.3;
  color: #003764;
  margin-bottom: 10px;
}
.card-text span {
  position: relative;
  display: block;
  font-weight: 700;
}
.card-text span:after {
  position: absolute;
  content: ">>";
  font-family: inherit;
  font-weight: 700;
  top: 2px;
  margin-left: 8px;
}
.card-text span,
.home-grid a:hover h3 {
  color: #01a1dd;
}
.home-grid a:hover img {
  filter: url("data:image/svg+xml;utf8,#grayscale");
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-filter: gray;
          filter: gray;
}
.cta-card img,
.card-text h3,
.card-text:before {
  -webkit-transition: all ease 0.8s;
          transition: all ease 0.8s;
}
.home-grid a:hover .card-text:before {
  border-top: 13px solid transparent;
  border-left: 17px solid #01a1dd;
  border-bottom: 13px solid transparent;
}

/*** Homepage ***/


/*** Video ***/

.video-section {
  max-width: 900px;
  margin: 50px auto;
}
.video-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.video-section h2 {
  margin-bottom: 20px;
}
.video-section p {
  margin-top: 15px;
  padding: 0 15px;
}
.video-profile {
  background: #edf5fb;
  padding: 25px;
  border-radius: 0 30px 0 30px;
  margin-top: 30px;
}
video {
  margin: 10px 0 25px;
}

.homepage .video-section p {
  text-align: center;
}

/*** Video ***/


/*** Parallax ***/

.parallax {
  position: relative;
  height: auto;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 40px 0;
  overflow: hidden;
}
.parallax p {
  display: block;
  font-weight: 500;
  font-size: 4em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 8% 20px;
}

/*** Parallax ***/


/*** Footer ***/

footer {
  position: relative;
  background: #f5f5f5;
  margin-top: 150px;
}
.footer-section {
  padding: 40px 0;
}
[class^="fc-6"] {
  float: left;
}
.fc-6-1 {
  width: 10%;
}
.fc-6-2,
.fc-6-3,
.fc-6-5 {
  width: 18%;
  padding: 0 15px;
}
.fc-6-4 {
  width: 24%;
  padding: 0 15px;

}
.fc-6-6 {
  float: right;
  width: 12%;
}
.fc-6-6 i {
  position: absolute;
  font-size: 1.3em;
  margin-left: 8px;
}
.fc-6-6 li:nth-last-of-type(2) {
  margin: 5px 0 20px;
}
[class^="fc-6"] ul {
  list-style: none;
}
[class^="fc-6"] li {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.1;
  margin: 5px 0;
}
[class^="fc-6"] li li {
  font-weight: 500;
  font-size: 0.9em;
}
[class^="fc-6"] a {
  color: #56565b;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
[class^="fc-6"] a:hover {
  color: #01a1dd;
}

.copyright {
  background: #56565b;
  padding: 10px 0 12px;
}
.copyright span {
  display: block;
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  text-align: center;
}

/*** Footer ***/


/*** Home Slider ***/

.slider {
  position: relative;
  z-index: 99;
}
.center {
  background: #56565b;
}
.center .slide {
  display: block;
}
.center.site-slider-ready .slide {
  display: none;
  opacity: 1;
}
.center.site-slider-ready .slide.is-active {
  display: block;
}

/*** Home Slider ***/


/*** Seminars ***/





.register a {
  letter-spacing: 0.1em;
  padding: 13px 40px;
}
.request span {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}


.seminar-block {
  text-align: center;
  background: #01a1dd;
  padding: 40px 20px 45px;
}
.seminar-block p,
.seminar-block h3 {
  max-width: 900px;
  color: #fff;
  margin: 0 auto;
}
.seminar-block h3 {
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 10px;
}


.seminar-text {
  max-width: 750px;
  text-align: center;
  background: #edf5fb;
  padding: 30px 40px 40px;
  margin: 50px auto;
  border-radius: 0 30px 0 30px;
}
.seminar-text h1 {
  font-size: 2em;
  line-height: 1.2;
}
.seminar-text a,
.seminar-info a {
  font-weight: 700;
  border-radius: 4px;
}
.seminar-text a {
  font-size: 1.2em;
  padding: 13px 30px;
  margin-top: 10px;
}
.schedule {
  margin-top: 25px;
}
.schedule h2 {
  margin: 5px 0;
}
.schedule p {
  font-size: 1.05em;
}


.seminar-info {
  padding-bottom: 18px;
  border-bottom: 1px solid #f5f5f5;
  margin: 25px 0;
}
.seminar-info:last-of-type {
  border: none;
}
.seminar-info h2 {
  margin-bottom: 12px;
}
.seminar-info p {
  margin-bottom: 15px;
}
.seminar-info a {
  text-decoration: none;
  margin: 5px 0 0;
}


.parallax-overlay {
  display: inline-block;
  max-width: 750px;
  background: rgba(1,161,221, 0.8);
  padding: 30px 50px 40px;
  margin: 5% auto;
}
.parallax-overlay h5  {
  display: block;
  font-weight: 500;
  font-size: 2.5em;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}


.webinar .profile,
.landing .profile {
  padding: 40px;
  border: 2px solid #dce1e4;
  border-radius: 10px;
  margin-bottom: 30px;
}
.webinar .profile:last-of-type,
.landing .profile:last-of-type {
  margin-bottom: 50px;
}


.landing {
  margin-top: 105px;
}
.landing .seminar-block h3 {
  max-width: 850px;
}

.landing-text {
  max-width: 1000px;
  text-align: center;
  padding: 0 20px;
  margin: 50px auto 30px;
}
.landing-text h2 {
  font-weight: 700;
  font-size: 1.7em;
  text-align: center;
  margin-bottom: 30px;
}
.landing-text h3 {
  font-size: 1.3em;
  margin-bottom: 5px;
}

.container > .seminar-block {
  margin: 50px 0;
}
.landing .seminar-block h3:nth-of-type(2) {
  margin-top: 30px;
}
.container > .seminar-block p {
  max-width: 900px;
}


.view-block {
  margin-top: 175px;
  padding-bottom: 100px;
}
.view-block h1 {
  text-align: center;
  margin-bottom: 35px;
}
.view-block h2,
.view-block p {
  text-align: center;
}
.view-block p {
  margin: 0;
}
.view-block .video-section {
  max-width: 750px;
  margin: 0 auto 5px;
}
.view-block p img {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 20px;
}
#q_msg {
  display: none;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #01a1dd;
  padding: 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 990px) {
  .landing-btn {
    display: block !important;
  }
  .landing-btn span {
    display: none;
  }
  .request {
    font-size: 0.8em;
    line-height: 1.2;
    text-align: center;
    padding: 8px 13px 10px;
    border-radius: 4px;
    margin-top: 15px;
  }
  .seminar-block {
    padding: 30px 25px 35px;
  }
  .schedule {
    margin-top: 15px;
  }
  .schedule p {
    font-size: 0.95em;
  }
  .seminar-text {
    padding: 25px 25px 30px;
    margin: 40px auto;
  }
  .seminar-text a {
    font-size: 1em;
  }
  .parallax-overlay {
    margin: 8%;
    padding: 25px 40px 30px;
  }
  .parallax-overlay h5 {
    font-size: 1.7em;
  }
  .webinar .profile,
  .landing .profile {
    padding: 30px;
    margin-bottom: 20px;
  }
  .webinar .profile:last-of-type,
  .landing .profile:last-of-type {
    margin-bottom: 40px;
  }
  .landing {
    margin-top: 65px;
  }
  .landing-text {
    margin: 30px 0;
  }
  .landing-text h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .landing-text h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  .landing .seminar-block h3 {
    font-size: 1.3em;
  }
  .container > .seminar-block {
    margin: 40px 0;
  }
  .view-block {
    margin-top: 100px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 750px) {
  .parallax-overlay h5 {
    font-size: 1.4em;
  }
  .landing .banner {
    padding: 20% 0;
    background-size: 150%;
    background-position: 35% center;
  }
  .landing .banner
  .landing .seminar-block h3 {
    font-size: 1.2em;
  }
  .landing-text {
    padding: 0;
  }
  .landing-text h2,
  .landing .seminar-block h3 {
    font-size: 1.3em;
  }
  .landing-text h3 {
    font-size: 1.1em;
    margin-bottom: 2px;
  }
  .seminar-info {
    margin: 20px 0 10px;
  }
  .seminar-info h2 {
    margin-bottom: 10px;
  }
  .seminar-info p {
    margin-bottom: 12px;
  }
  .landing-text {
    margin: 25px 0 25px;
  }
}

@media only screen and (max-width: 600px) {
  .webinar .profile img,
  .landing .profile img {
    max-width: 300px;
    margin: 0 auto 15px;
  }
  .landing .seminar-block h3:nth-of-type(2) {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .landing-btn {
    display: none !important;
  }
  .seminar-block {
    padding: 25px 25px 30px;
  }
  .seminar-text {
    padding: 20px 25px 30px;
    margin: 30px auto;
  }
  .webinar .profile,
  .landing .profile {
    padding: 25px;
  }
  .landing-text h2,
  .landing .seminar-block h3 {
    font-size: 1.2em;
  }
  .landing-text h3 {
    font-size: 1.1em;
    margin-bottom: 2px;
  }
  .landing .seminar-block h3 {
    font-size: 1.1em;
  }
  .container > .seminar-block {
    margin: 30px 0;
  }
}













@media only screen and (min-width: 1024px) {
  .parallax {
    background-attachment: fixed;
  }
}

@media only screen and (max-width: 1300px) {
  .parallax p {
    font-size: 3.1em;
  }
}

@media only screen and (max-width: 1150px) {
  .home-grid {
    padding: 0 6%;
  }
  .home-grid a {
    float: none;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2% !important;
  }
  .cta-card {
    border-radius: 0 25px 0 25px;
  }
  .cta-card img {
    width: 25%;
    border-bottom-left-radius: 25px;
  }
  .card-text {
    width: 75%;
    padding: 18px 25px 0;
  }
}

@media only screen and (max-width: 990px) {
  .container {
    width: 88%;
  }
  main {
    margin-top: 65px;
  }
  .anchor {
    top: -90px; 
  }
  .a-text {
    top: -60px;
  }
  .a-main {
    top: -75px;
  }
  .a-doctor {
    top: -120px;
  }
  .contact-info,
  .side-nav {
    display: none;
  }
  header {
    height: 65px;
    border-bottom: 2px solid #dce1e4;
  }
  header .container {
    width: 100%;
    padding: 0 25px 0 22px;
  }
  .logo-wrap {
    margin: 11px 0 0;
  }
  .logo img {
    width: 200px;
    padding-right: 14px;
  }
  .logo p {
    font-size: 1em;
    padding-left: 13px;
    margin: 4px 0 0;
  }
  .menu-btn {
    float: right;
    display: block;
    cursor: pointer;
    margin-top: 19px;
  }
  .menu-btn span {
    display: block;
    width: 30px;
    height: 4px;
    background: #01a1dd;
    margin-bottom: 6px;
  }
  .menu-btn:hover span {
    background: #003764;
  }
  .main-nav {
    position: fixed;
    left: inherit;
    text-align: left;
    background: #fff;
  }
  .menu {
    position: fixed;
    width: 280px;
    height: 100%;
    top: 63px;
    right: -285px;
    background: #fff;
    padding-bottom: 200px;
    border-top: 2px solid #dce1e4;
    box-shadow: -5px 0px 5px -3px rgba(0,0,0,0.2);
    overflow-x: scroll;
    z-index: 999; 
  }
  .mobile-info {
    text-align: center;
  }
  .mobile-info span {
    text-align: center;
    margin-top: 12px;
  }
  .main-nav .mobile-info,
  .main-nav button,
  .menu-open {
    display: block;
  }
  nav {
    display: block;
    vertical-align: inherit;
    border-top: solid 1px #dce1e4;
    margin-top: 18px;
  }
  .dropdown,
  .single-link {
    float: none;
  }
  .panel-link a:after,
  .dropdown:hover .panel {
    display: none;
  }
  .panel-link,
  .single-link {
    height: 50px;
    border-bottom: solid 1px #dce1e4;
  }
  .panel-link a,
  .single-link a {
    height: 100%;
    font-weight: 700;
    color: #56565b;
    white-space: nowrap;
    padding: 15px 5px 0 18px;
  }
  .panel-link a {
    float: left;
    width: 81%;
  }
  .single-link a {
    width: 100%;
  }
  nav a.active {
    color: #56565b;
    background: inherit;
  }
  .panel-link button {
    float: right;
    position: relative;
    width: 19%;
    height: 50px;
    border-left: solid 1px #dce1e4;
  }
  button.open:after,
  button.closed:after {
    font-family: inherit;
    font-weight: bold;
    color: #01a1dd;
  }
  button.closed:after {
    content: "+";
  }
  button.open:after {
    content: "-";
  }
  .panel-link button:hover {
    background: #dce1e4;
  }
  .panel {
    position: relative;
    width: 100%;
    top: 0;
    text-align: left;
    background: inherit;
    padding: 0;
    border-bottom: solid 1px #dce1e4;
    border-radius: none;
    opacity: 1;
    box-shadow: none;
    transition: none;
  }
  .panel ul {
    margin: 0;
  }
  .panel li {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    border-bottom: solid 1px #fff;
  }
  .panel li:last-child {
    border-bottom: none;
  }
  .panel a {
    display: block;
    font-size: 0.95em;
    line-height: 1.1;
    color: #56565b;
    padding: 11px 30px 13px;
  }
  .panel a:before {
    position: absolute;
    content: ">";
    font-family: inherit;
    font-weight: 700;
    color: #01a1dd;
    top: 13px;
    left: 20px;
  }
  .panel li li {
    display: block;
    background: #fff;
    padding-left: 12px;
    border-bottom: solid 1px #f5f5f5;
  }
  .panel li li a:before {
    content: ">";
  }
  .panel a span {
    display: block;
  }
  .dropdown:hover a,
  .single-link a:hover {
    color: #56565b;
    background: none;
  }
  .panel-link a:hover,
  .single-link a:hover,
  .panel a:hover {
    color: #01a1dd;
  }
  .intro {
    padding-top: 30px;
    margin: 0 auto;
  }
  .home-grid {
    margin: 35px auto 25px;
  }
  .homepage .video-section {
    margin: 0 0 45px;
  }
  .sub-content {
    margin-top: 4%;
  }
  .side-block {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  main h1 {
    font-size: 1.8em;
  }
  main h2 {
    font-size: 1.25em;
  }
  main h3,
  main p,
  main li,
  .intro p {
    font-size: 1.1em;
  }
  main p {
    margin-bottom: 15px;
  }
  main ul {
    margin: 0 0 15px 45px;
  }
  main li {
    margin: 6px 0;
  }
  main p + ul {
    margin: -5px 0 15px 45px;
  }
  .video-section h2 {
    font-size: 1.8em;
  }
  .callout {
    padding: 15px 25px;
    border-radius: 0 25px 0 25px;
    margin: 25px 0;
  }
  .callout h3 {
    font-size: 1.2em;
    margin: 5px 0 10px;
  }
  .callout + .cta-block {
    padding: 10px 0 30px;
  }
  .parallax {
    margin: 30px 0;
  }
  .parallax p {
    font-size: 2.6em;
  }
  
  [class^="col-3"],
  [class^="loc-3"] {
    float: left;
    width: 47%;
    margin-right: 6%;
    padding: 0 15px;
  }
  .col-3-2,
  .col-3-3,
  .loc-3-2,
  .loc-3-4 {
    margin-right: 0;
  }
  [class^="col-4"] {
    width: 47%;
    margin: 0 6% 30px 0;
  }
  .col-4-2,
  .col-4-4 {
    margin-right: 0;
  }
  .contact-text p {
    margin: 10px 0 30px;
  }
  footer {
    margin-top: 150px;
  }
  .footer-section {
    padding: 40px 0 30px;
  }
  [class^="fc-6"] {
    float: left !important;
    padding: 0;
    margin-bottom: 10px;
  }
  .fc-6-1,
  .fc-6-4 {
    width: 35%;
  }
  .fc-6-2,
  .fc-6-5 {
    width: 40%;
    padding: 0 30px;
  }
  .fc-6-3,
  .fc-6-6 {
    width: 25%;
  }
  .story-block {
    padding-bottom: 25px;
  }
  .story-block img,
  .story-text {
    float: none;
    width: 100%;
  }
  .story-block img {
    max-width: 380px;
    margin: 0 0 15px;
  }
  .story-text {
    padding-left: 0;
  }
  .story-block h2 {
    margin-bottom: 12px;
  }
  .vid-col h1 {
    margin-bottom: 25px;
  }
  .vid-col .video-section {
    margin: 0 0 30px;
  }
  .seminar-block {
    padding: 30px 25px 35px;
  }
  .schedule {
    margin-top: 15px;
  }
  .schedule p {
    font-size: 0.95em;
  }
  .seminar-text {
    padding: 25px 25px 30px;
    margin: 40px auto;
  }
  .seminar-text a {
    font-size: 1em;
  }
}

@media only screen and (max-width: 750px) {
  main h1,
  .video-section h2 {
    font-size: 1.6em;
  }
  main h2 {
    font-size: 1.15em;
  }
  main h3 {
    font-size: 1em;
  }
  main p,
  main li,
  .cta-block p,
  .intro p,
  .vid-col .video-section p {
    font-size: 1em;
    line-height: 1.35;
  }
  main p {
    margin-bottom: 12px;
  }
  main ul {
    margin: 0 0 12px 35px;
  }
  main li {
    margin: 4px 0;
  }
  main p + ul {
    margin: -5px 0 12px 35px;
  }
  .home-grid a {
    margin: 0 auto 12px !important;
  }
  .cta-card {
    border-radius: 0 20px 0 20px;
  }
  .cta-card img {
    display: none;
  }
  .card-text {
    width: 100%;
    padding: 15px 22px 20px;
  }
  .card-text:before {
    top: 16px;
    border-top: 11px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 11px solid transparent;
  }
  .card-text h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
  .card-text p,
  .card-text span {
    font-size: 1em;
  }
  .home-grid a:hover .card-text:before {
    border-top: 11px solid transparent;
    border-left: 15px solid #01a1dd;
    border-bottom: 11px solid transparent;
  }
  .cta-block,
  .profile {
    padding: 25px 0;
  }
  .cta-block:first-of-type,
  .profile:first-of-type {
    padding: 12px 0 25px;
  }
  .cta-block h3 {
    font-size: 1.1em;
  }
  .pro-text h2 {
    font-size: 1.2em;
  }
  .pro-text h2 + h3 {
    margin: -10px 0 10px;
  }
  .pro-text-title {
    margin-bottom: 15px;
  }
  .pro-text-title h3 {
    font-size: 1.1em;
  }
  .pro-text-title h4 {
    font-size: 1em;
    margin-top: 15px;
  }
  .callout {
    padding: 15px 20px;
    border-radius: 0 20px 0 20px;
    margin: 20px 0;
  }
  .callout h3 {
    font-size: 1.05em;
    margin: 0 0 5px;
  }
  .parallax {
    margin: 20px 0;
  }
  .parallax p {
    font-size: 2.2em;
  }
  .intro {
    padding-top: 22px;
  }
  .intro span {
    display: none;
  }
  .home-grid {
    margin: 25px auto 15px;
  }
  .homepage .video-section {
    margin: 0 0 40px;
  }
  .video-section {
    margin: 40px auto;
  }
  .video-section h2 {
    margin-bottom: 15px;
  }
  .video-section p {
    padding: 0;
    margin-top: 10px;
  }
  
  footer {
    margin-top: 100px;
  }
  .footer-section {
    padding: 30px 0 20px;
  }
  [class^="fc-6"] {
    width: 45%;
    padding: 0;
  }
  .fc-6-1,
  .fc-6-3,
  .fc-6-5 {
    clear: both;
    margin-right: 10%;
  }
  .story-block {
    padding-bottom: 20px;
    margin: 20px 0;
  }
  .story-block img {
    margin: 0 0 15px;
  }
  .story-block h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  .read-more {
    font-size: 1.05em;
  }
  .read-more:after {
    font-size: 0.65em;
    top: 6px;
    right: -15px;
  }
  .vid-col h1 {
    margin-bottom: 20px;
  }
  .vid-col .video-section {
    margin: 0 0 25px;
  }
  [class^="col-2"] {
    float: none;
    width: 100%;
    margin: 0;
  }
  video {
    margin: 5px 0 15px;
  }
  .seminar-info {
    margin: 20px 0 10px;
  }
  .seminar-info h2 {
    margin-bottom: 10px;
  }
  .seminar-info p {
    margin-bottom: 12px;
  }
  .seminar-info a {
    margin: 5px 0 15px;
  }
}

@media only screen and (max-width: 600px) {
  .diagram {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .cta-block {
    padding: 15px 0 20px;
    border-top: 1px solid #dce1e4;
    border-bottom: none;
  }
  .cta-block:first-of-type {
    padding: 15px 0 20px;
    margin-top: 20px;
  }
  .cta-block img {
    display: none;
  }
  .cta-text,
  .pro-text,
  .profile img {
    float: none;
    width: 100%;
  }
  .profile img {
    max-width: 200px;
    margin: 0 0 15px;
  }
  .profile {
    padding: 25px 0 20px;
  }
  .profile:first-of-type {
    padding: 12px 0 20px;
  }
  .video-profile {
    padding: 20px;
    border-radius: 0 20px 0 20px;
    margin-top: 20px;
  }
  .full-text h3 {
    margin: 0 0 5px;
  }
  .callout + .cta-block {
    padding: 15px 0 20px;
    margin-top: 25px;
  }
  [class^="col-3"],
  [class^="loc-3"] {
    float: none;
    width: 100%;
    margin-right: 0;
    padding: 0 15px;
  }
  [class^="loc-3"] {
    max-width: 350px;
    margin-bottom: 30px;
  }
  [class^="col-3"] .doc-contact:last-child {
    border-bottom: 1px solid #dce1e4;
  }
}

@media only screen and (max-width: 500px) {
  .container {
    width: 85%;
  }
  header .container {
    width: 100%;
    padding: 0 22px 0 19px;
  }
  .logo-wrap {
    margin: 14px 0 0;
  }
  .logo img {
    width: 170px;
    padding-right: 12px;
  }
  .logo p {
    font-size: 0.9em;
    padding-left: 11px;
    margin: 2px 0 0;
  }
  .logo p span {
    display: block;
  }
  .sub-content {
    margin-top: 25px;
  }
  main h1,
  .video-section h2 {
    font-size: 1.4em;
  }
  main h2 {
    font-size: 1.1em;
  }
  .parallax p {
    font-size: 1.7em;
  }
  [class^="col-4"] {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: 0 0 25px;
  }
  .seminar-block {
    padding: 25px 25px 30px;
  }
  .seminar-text {
    padding: 20px 25px 30px;
    margin: 30px auto;
  }
}

@media only screen and (max-width: 450px) {
  [class^="fc-6"] {
    float: none;
    width: 100%;
    padding: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 410px) {
  header .container {
    width: 100%;
    padding: 0 15px 0 12px;
  }
  .logo-wrap {
    margin: 18px 0 0;
  }
  .logo img {
    width: 130px;
    padding-right: 10px;
  }
  .logo p {
    font-size: 0.8em;
    padding-left: 9px;
    margin: -1px 0 0;
  }
}


/*------------------------------------*\
  #BLOG
\*------------------------------------*/


.blog-main {
  margin-top: 50px;
}
.post-block,
.blog-top h1 {
  float: left;
  width: 70%;
  margin-right: 4%;
}
.post {
  padding: 30px 0;
  border-bottom: 1px solid #dce1e4;
}
.post:last-child {
  border-bottom: none;
}
.post img {
  float: left;
  width: 25%;
  border-radius: 0 20px 0 20px;
  margin-right: 5%;
}
.post a:hover img {
  opacity: 0.9;
}
.post-text {
  float: left;
  width: 70%;
}
.post-text h2 {
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.1;
}
.post-info {
  margin: 15px 0;
}
.post-info span {
  display: block;
  font-size: 0.95em;
  line-height: 1.25;
  color: #56565b;
}
.post-info span:first-of-type {
  font-weight: 700;
  margin-bottom: 2px;
}
.post-text p {
  font-size: 1.05em;
  line-height: 1.4;
  margin-bottom: 15px;
}
.post-text a:hover h2,
.archive-post a:hover h2 {
  text-decoration: underline;
}


.blog-link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #01a1dd;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.blog-link:after {
  position: absolute;
  content: ">";
  font-family: inherit;
  font-weight: 700;
  font-size: 0.7em;
  top: 5px;
  margin-left: 6px;
}
.blog-link:hover {
  color: #003764;
}


.sidebar {
  float: left;
  width: 26%;
  margin-top: 30px;
}
.sidebar h3 {
  font-size: 1.25em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}
.archive {
  padding: 17px 22px 24px;
  border-radius: 4px;
}


.archive {
  background: #edf5fb;
  margin-top: 25px;
}
.archive h3 {
  color: #003764;
}
.archive a {
  display: block;
  margin-bottom: 10px;
}
.archive p {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.2;
  color: #01a1dd;
  margin-bottom: 4px;
}
.archive span {
  display: block;
  font-size: 0.85em;
  color: #56565b;
}
.archive a:last-of-type {
  margin: 15px 0 0;
}
.archive a:hover p {
  text-decoration: underline;
}
.archive .blog-link {
  color: #003764;
}
.archive .blog-link:hover {
  color: #01a1dd;
}


.month h2 {
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
  color: #56565b;
  border-top: 1px solid #dce1e4;
  padding-top: 20px;
  margin-bottom: 20px;
}
.month:first-of-type h2 {
  margin-top: 30px;
}

.archive-post {
  padding: 15px 0 20px;
  border-top: 1px solid #dce1e4;
}
.archive-post a:last-of-type {
  display: block;
  margin: 5px 0 0;
}
.archive-info p {
  font-size: 1em;
  margin: 5px 0;
}
.archive-info p span {
  padding: 0 5px;
}

.blog-back {
  margin-top: 25px;
}
.blog-back .blog-link {
  display: block;
  color: #fff;
  padding: 15px 22px;
  background: #01a1dd;
  border-radius: 4px;
}
.blog-back .blog-link:after {
  top: 14px;
  right: 0;
  color: #01a1dd;
  background: #fff;
  padding: 5px 5px 3px 6px;
  margin-right: 22px;
  border-radius: 2px;
}
.blog-back .blog-link:hover {
  background: #003764;
}


.blog-banner {
  margin: 8px 0 25px;
  border-radius: 0 20px 0 20px;
}
.blog-info span {
  display: block;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.3;
  color: #01a1dd;
}
.blog-left {
  float: left;
  width: 40%;
  padding: 5px 25px 10px 0;
}
.blog-right {
  float: right;
  width: 40%;
  padding: 5px 0 10px 25px;
}
blockquote {
  font-size: 1.5em;
  line-height: 1.3;
  color: #003764;
  margin: 20px 0;
}


@media only screen and (max-width: 990px) {
  .blog-main {
    margin-top: 25px;
  }
  .post-block,
  .blog-top h1 {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .post img {
    float: left;
    width: 25%;
  }
  .sidebar {
    float: none;
    width: 100%;
    margin: 40px 0 20px;
  }
  .archive {
    float: left;
    width: 47%;
    margin: 0;
  }
  .blog-banner {
    margin: 20px 0 25px;
  }
  .blog-info span {
    margin: 0;
  }
  .blog-back {
    float: right;
    width: 47%;
    clear: both;
  }
}

@media only screen and (max-width: 750px) {
  .blog-top h1 {
    display: block;
    clear: both;
    margin: 55px 0 5px;
  }
  .post-text h2 {
    font-size: 1.3em;
  }
  .post-info {
    margin: 10px 0;
  }
  .post-info span {
    font-size: 0.95em;
    line-height: 1.25;
  }
  .post-text p {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .sidebar {
    margin: 20px 0;
  }
  .blog-banner {
    margin: 20px 0 15px;
  }
  .blog-left {
    width: 50%;
    padding: 5px 20px 10px 0;
  }
  .blog-right {
    width: 50%;
    padding: 5px 0 10px 20px;
  }
  blockquote {
    font-size: 1.3em;
    line-height: 1.2;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 600px) {
  .post {
    padding: 25px 0;
  }
  .month h2 {
    padding-top: 8px;
    margin-bottom: 10px;
  }
  .month:first-of-type h2 {
    margin-top: 20px;
  }
  .sidebar {
    margin: 20px 0 0;
  }
  .archive,
  .blog-back {
    float: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 15px;
  }
}




.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,55,100, 0.8);
  z-index: 999999;
}
.modal {
  position: fixed;
  width: 90%;
  max-width: 600px;
  max-height: calc(100% - 10%);
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: auto;
}
.modal-close {
  display: block;
  position: absolute;
  font-weight: 700;
  font-size: 3em;
  line-height: 1;
  color: #01a1dd;
  top: 0;
  right: 15px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.modal-close:hover {
  color: #003764;
}
.modal-content {
  height: 100%;
  padding: 50px;
  overflow: auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.modal-content img {
  max-width: 200px;
  margin: 0 auto 30px;
}
.modal-content h3 {
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.2;
  font-weight: 800;
  color: #003764;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-content p {
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1.5;
  color: #56565b;
  margin: 0 auto;
}
.modal-content a {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #01a1dd;
  padding: 13px 15px;
  border-radius: 5px;
  margin-top: 25px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.modal-content a:hover {
  background: #003764;
}


@media screen and (max-width:600px) {
  .modal-close {
    font-size: 2.5em;
    top: -3px;
    right: 10px;
  }
  .modal-content img {
    max-width: 180px;
    margin: 0 auto 25px;
  }
  .modal-content {
    padding: 35px;
  }
  .modal-content h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
  }
  .modal-content p {
    font-size: 1em;
  }
  .modal-content a {
    margin-top: 20px;
  }
}
