@font-face {
  font-family: "DINPro-Light";
  src: url("../fonts/DINPro-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu-Light";
  src: url("../fonts/Ubuntu-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu-Regular";
  src: url("../fonts/Ubuntu-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu-Bold";
  src: url("../fonts/Ubuntu-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu-Italic";
  src: url("../fonts/Ubuntu-Italic.ttf") format("truetype");
}

/*colors*/
/*font-size*/
/*screen size*/
* {
  font-family: Ubuntu-Regular, "Open Sans";
}

html {
  overflow-x: hidden;
}

html.stopFlow {
  overflow: hidden;
}

body,
html {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  color: #000;
  overflow-x: hidden;
}

a {
  cursor: pointer;
}

.mainWrap {
  background: url(../images/pageBg.jpg) no-repeat;
  background-position: top right;
  background-size: cover;
}

/*header style master page*/
header {
  /*background: url(../images/header.png) no-repeat;*/
  background: rgba(3, 87, 134, 0.5);
  background-size: cover;
  height: initial;
  max-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 1.5% 1%;
}

@media (min-width: 768px) {
  header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    max-height: initial;
  }
}

@media (min-width: 992px) {
  header {
    padding: 1.5% 3%;
  }
}

header section.headerLogo_container {
  height: 100%;
  width: 40%;
}

@media (min-width: 488px) {
  header section.headerLogo_container {
    width: 25%;
  }
}

@media (min-width: 576px) {
  header section.headerLogo_container {
    width: 25%;
  }
}

@media (min-width: 768px) {
  header section.headerLogo_container {
    width: 25%;
  }
}

@media (min-width: 992px) {
  header section.headerLogo_container {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  header section.headerLogo_container {
    width: 40%;
  }
}

header section.headerLogo_container div.headerLogo {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header section.headerLogo_container div.headerLogo a {
  height: 100%;
  width: 100%;
  display: inline-block;
}

header section.headerLogo_container div.headerLogo img.headerLogo_img {
  max-height: 100%;
  max-width: 100%;
}

header section.headerNav_container {
  width: initial;
  text-align: right;
}

@media (min-width: 768px) {
  header section.headerNav_container {
    width: 75%;
  }
}

@media (min-width: 992px) {
  header section.headerNav_container {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  header section.headerNav_container {
    width: 60%;
  }
}

header section.headerNav_container div.MenuButton {
  font-size: 24px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: ease-in-out all 0.5s;
  transition: ease-in-out all 0.5s;
}

@media (min-width: 768px) {
  header section.headerNav_container div.MenuButton {
    display: none;
  }
}

header section.headerNav_container ul.headerNav {
  list-style: none;
  margin-bottom: 0;
  background: #035786;
  z-index: 9;
  position: relative;
  padding: 10px 0;
  position: absolute;
  right: 0;
  width: 200px;
  right: -100%;
  top: 100%;
  -webkit-transition: ease-in-out 0.2s right;
  transition: ease-in-out 0.2s right;
  height: 100vh;
  width: 100%;
}

header section.headerNav_container ul.headerNav.showMenu {
  right: 0px;
}

@media (min-width: 768px) {
  header section.headerNav_container ul.headerNav.showMenu {
    top: initial;
    right: initial;
  }
}

@media (min-width: 768px) {
  header section.headerNav_container ul.headerNav {
    padding: 0px 5px;
    background: initial;
    z-index: initial;
    position: initial;
    position: initial;
    right: initial;
    width: initial;
    height: initial;
    top: initial;
    -webkit-transition: initial;
    transition: initial;
    width: initial;
  }
}

header section.headerNav_container ul.headerNav li.headerNav_item {
  text-align: center;
  display: block;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  header section.headerNav_container ul.headerNav li.headerNav_item {
    padding: 0 0 0 5px;
    display: inline-block;
    text-align: center;
    margin-bottom: initial;
  }
}

@media (min-width: 992px) {
  header section.headerNav_container ul.headerNav li.headerNav_item {
    padding: 0 0 0 15px;
  }
}

header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link {
  display: inline-block;
  padding: 2px 15px;
  text-decoration: none;
}

@media (min-width: 992px) {
  header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link {
    padding: 2px 25px;
  }
}

header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link:hover {
  opacity: 0.8;
}

header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link span.headerNav_text {
  color: #fff;
}

header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link.specialLink {
  background: #fff;
  border-radius: 5px;
}

header section.headerNav_container ul.headerNav li.headerNav_item a.headerNav_link.specialLink span.headerNav_text {
  color: #069899;
}

/***********************/
footer {
  background: rgba(3, 87, 134, 0.5);
  padding: 0.5% 3%;
  text-align: right;
  color: #fff;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

footer a:hover {
  opacity: 0.8;
}

/*body style master page and content pages*/
span.break {
  display: block;
}

section.body {
  max-width: 100%;
  min-height: 100vh;
}

section.body section.homeBanner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

section.body section.homeBanner img.homeBanner_img {
  max-width: 100%;
  margin-top: -10%;
}

section.body section.homeBanner span.homeBanner_text {
  position: absolute;
  color: #fff;
  font-size: 18px;
  top: initial;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 1%;
  bottom: 0;
}

@media (min-width: 488px) {
  section.body section.homeBanner span.homeBanner_text {
    font-size: 18px;
    top: 45%;
    right: 5%;
    background: initial;
    padding: initial;
  }
}

@media (min-width: 576px) {
  section.body section.homeBanner span.homeBanner_text {
    font-size: 22px;
    top: 35%;
    right: 8%;
  }
}

@media (min-width: 768px) {
  section.body section.homeBanner span.homeBanner_text {
    font-size: 26px;
    top: 35%;
    right: 10%;
  }
}

@media (min-width: 992px) {
  section.body section.homeBanner span.homeBanner_text {
    font-size: 30px;
    top: 38%;
    right: 15%;
  }
}

@media (min-width: 1200px) {
  section.body section.homeBanner span.homeBanner_text {
    font-size: 34px;
    top: 35%;
    right: 20%;
  }
}

section.body section.homeFooter {
  width: 100%;
  height: 300px;
  min-height: 300px;
  position: relative;
}

@media (min-width: 488px) {
  section.body section.homeFooter {
    height: 200px;
    min-height: initial;
  }
}

section.body section.homeFooter div.homeFooter_imgContainer {
  max-height: 100%;
  overflow: hidden;
}

section.body section.homeFooter img.homeFooter_img {
  max-width: 100%;
}

section.body section.homeFooter div.homeFooter_iconsContainer {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 488px) {
  section.body section.homeFooter div.homeFooter_iconsContainer {
    width: 100%;
    top: -90px;
    -webkit-transform: translate(-50%, 50px);
            transform: translate(-50%, 50px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 768px) {
  section.body section.homeFooter div.homeFooter_iconsContainer {
    width: 75%;
    top: -100px;
  }
}

@media (min-width: 992px) {
  section.body section.homeFooter div.homeFooter_iconsContainer {
    width: 55%;
  }
}

section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item {
  padding: 0 15px;
  height: initial;
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
}

section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item a {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

@media (min-width: 488px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item a {
    padding-bottom: initial;
    display: initial;
  }
}

@media (min-width: 488px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item {
    height: 100%;
    width: 33%;
    text-align: center;
  }
}

section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item img.iconsContainer_img {
  max-height: 75px;
}

@media (min-width: 768px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item img.iconsContainer_img {
    max-height: 100px;
  }
}

section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item span.iconsContainer_text {
  text-align: left;
  display: inline-block;
  color: #fff;
  padding-top: 10px;
  font-size: 12px;
  padding-left: 10px;
}

section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item span.iconsContainer_text span.break {
  display: none;
}

@media (min-width: 488px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item span.iconsContainer_text span.break {
    display: block;
  }
}

@media (min-width: 488px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item span.iconsContainer_text {
    padding-left: initial;
    display: block;
    text-align: center;
  }
}

@media (min-width: 768px) {
  section.body section.homeFooter div.homeFooter_iconsContainer div.iconsContainer_item span.iconsContainer_text {
    font-size: 16px;
    padding-top: 15px;
  }
}

/***********************/
.pageHeading {
  color: #fff;
  text-align: center;
  padding: 3% 0;
  font-size: 24px;
}

@media (min-width: 488px) {
  .pageHeading {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .pageHeading {
    font-size: 34px;
  }
}

.pageBody {
  background: #fff;
}

.pageBody .pageRow .pageRow_textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pageBody .pageRow .pageRow_textContainer .pageRow_textInner {
  margin: 0 auto;
  width: 90%;
  padding: 15px 15px 5px 15px;
}

@media (min-width: 576px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner {
    padding: initial;
    width: 97%;
  }
}

@media (min-width: 992px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner {
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner {
    width: 70%;
  }
}

@media (min-width: 1400px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner {
    width: 60%;
  }
}

.pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_heading {
  display: block;
  text-align: center;
  color: #069899;
  font-size: 20px;
  line-height: initial;
}

@media (min-width: 576px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_heading {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_heading {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_heading {
    font-size: 28px;
  }
}

.pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_paragraph {
  display: block;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  font-weight: normal;
}

@media (min-width: 576px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_paragraph {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_paragraph {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .pageBody .pageRow .pageRow_textContainer .pageRow_textInner .pageRow_paragraph {
    padding-top: 25px;
  }
}

.pageBody .pageRow .pageRow_imgContaienr {
  max-height: 200px;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 0px;
}

@media (min-width: 576px) {
  .pageBody .pageRow .pageRow_imgContaienr {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    max-height: 400px;
    margin-bottom: initial;
  }
}

.pageBody .pageRow .pageRow_imgContaienr .pageRow_img {
  width: 100%;
}

.headerStylePadding {
  padding-left: 1%;
  padding-right: 1%;
}

@media (min-width: 992px) {
  .headerStylePadding {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.signsAndSymtomsSection {
  background: url(../images/homeFooter.jpg) no-repeat;
  background-size: cover;
}

.signsAndSymtomsSection .signsAndSymtomsSubSection {
  color: #9bd6d6;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .signsAndSymtomsSection .signsAndSymtomsSubSection {
    width: 80%;
  }
}

.signsAndSymtomsSection .signsAndSymtoms_imgList {
  padding: 0 15px;
  height: initial;
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 1200px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem {
  padding: 0 2%;
  margin-top: 25px;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 576px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem a {
    display: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

@media (min-width: 576px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem {
    width: calc(100% / 3);
    padding: 0 2%;
    text-align: center;
    display: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

@media (min-width: 1200px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem {
    width: calc(100% / 3);
    padding: 0 5%;
  }
}

.signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListImg {
  max-height: 75px;
}

@media (min-width: 768px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListImg {
    max-height: 100px;
  }
}

.signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListText {
  text-align: left;
  display: inline-block;
  color: #9bd6d6;
  padding-top: 00px;
  font-size: 12px;
  padding-left: 10px;
  line-height: 14px;
}

.signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListText span.break {
  display: none;
}

@media (min-width: 576px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListText span.break {
    display: block;
  }
}

@media (min-width: 576px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListText {
    padding-left: initial;
    display: block;
    text-align: center;
    padding-top: 10px;
  }
}

@media (min-width: 768px) {
  .signsAndSymtomsSection .signsAndSymtoms_imgList .signsAndSymtoms_imgListItem .signsAndSymtoms_imgListText {
    font-size: 16px;
    padding-top: 15px;
    line-height: 18px;
  }
}

.diagnosingGaucherDiseaseSection {
  background: url(../images/pageBg2.jpg) no-repeat;
  background-size: cover;
}

.diagnosingGaucherDiseaseSection .pageHeadingFont {
  color: #069899;
}

.diagnosingGaucherDiseaseSection .twoRowSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  margin-bottom: 45px;
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv {
    width: 33%;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item {
  padding: 0 2%;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item {
    width: 100%;
    padding: 0 2%;
  }
}

@media (min-width: 1200px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item {
    width: 100%;
    padding: 0 1%;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_img {
  max-height: 75px;
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_img.top {
  max-height: 45px;
}

@media (min-width: 768px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_img {
    max-height: 100px;
  }
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_img.top {
    max-height: 70px;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text {
  text-align: center;
  display: inline-block;
  color: #212529;
  padding-top: 00px;
  font-size: 12px;
  padding-left: initial;
  line-height: 14px;
  margin-top: 3px;
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text.bottom {
  color: #069899;
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text span.break {
  display: none;
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text span.break {
    display: block;
  }
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text {
    padding-left: initial;
    display: block;
    text-align: center;
    padding-top: 10px;
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_Item .verticalDiv_text {
    font-size: 16px;
    padding-top: 15px;
    line-height: 18px;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_arrow {
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_arrow {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.diagnosingGaucherDiseaseSection .twoRowSection .verticalDiv .verticalDiv_arrow .verticalDiv_arrowImg {
  max-height: 100%;
}

.pageHeadingFont {
  color: #fff;
  text-align: center;
  padding: 1% 0;
  font-size: 24px;
}

@media (min-width: 488px) {
  .pageHeadingFont {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .pageHeadingFont {
    font-size: 34px;
  }
}

.subHeading {
  font-size: 15px;
}

@media (min-width: 488px) {
  .subHeading {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .subHeading {
    font-size: 20px;
  }
}

.smallNote {
  font-size: 10px;
  line-height: 12px;
  display: block;
}

@media (min-width: 488px) {
  .smallNote {
    font-size: 10px;
  }
}

.howTreatedSection {
  background: url(../images/homeFooter.jpg) no-repeat;
  background-size: cover;
}

.howTreatedSection .howTreatedSectionSubSection {
  color: #9bd6d6;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .howTreatedSection .howTreatedSectionSubSection {
    width: 80%;
  }
}

.referenceSection {
  background: url(../images/homeFooterDark.jpg) no-repeat;
  background-size: cover;
}

.referenceSection .referenceSectionHeading {
  color: #fff;
  text-align: center;
  padding: 1% 0;
  font-size: 18px;
}

@media (min-width: 488px) {
  .referenceSection .referenceSectionHeading {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .referenceSection .referenceSectionHeading {
    font-size: 28px;
  }
}

.referenceSection .referenceSection_items {
  text-align: left;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .referenceSection .referenceSection_items {
    text-align: center;
  }
}

.referenceSection .referenceSection_items .referenceSection_itemsText {
  color: #9bd6d6;
  text-align: center;
  margin: 0 auto;
  word-wrap: break-word;
  /*word-break: break-all;*/
}

.treatmentSection {
  background: url(../images/pageBg.jpg) no-repeat;
  background-size: cover;
  min-height: calc(100vh - 100px);
}

.treatmentSection .treatmentSectionHeading {
  color: #fff;
  text-align: center;
  padding: 1% 0;
  font-size: 24px;
}

@media (min-width: 488px) {
  .treatmentSection .treatmentSectionHeading {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSectionHeading {
    font-size: 34px;
  }
}

.treatmentSection .treatmentSection_items {
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_items {
    text-align: center;
  }
}

.treatmentSection .treatmentSection_items .treatmentSection_itemsText {
  color: #9bd6d6;
  text-align: center;
  margin: 0 auto;
  word-wrap: break-word;
  word-break: initial;
}

.treatmentSection .treatmentSection_items .treatmentSection_itemsText span.break {
  display: none;
}

@media (min-width: 488px) {
  .treatmentSection .treatmentSection_items .treatmentSection_itemsText span.break {
    display: block;
  }
}

.treatmentSection .treatmentSection_locationSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_locationSection {
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationSectionLeft {
  width: 100%;
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_locationSection .treatmentSection_locationSectionLeft {
    width: 50%;
  }
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationSectionRight {
  width: 100%;
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_locationSection .treatmentSection_locationSectionRight {
    width: 50%;
  }
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem {
  text-align: center;
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .provinceNameHeading {
  margin-top: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 488px) {
  .treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .provinceNameHeading {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .provinceNameHeading {
    font-size: 22px;
  }
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem:first-of-type .provinceNameHeading {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem:first-of-type .provinceNameHeading {
    margin-top: 50px;
  }
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .clinicItem {
  margin-top: 15px;
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .clinicItem .clinicName {
  color: #fff;
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .clinicItem .clinicAddress {
  color: #9bd6d6;
}

.treatmentSection .treatmentSection_locationSection .treatmentSection_locationItem .clinicItem .clinicAddress a {
  color: #9bd6d6;
  text-decoration: none;
}

.LicensePage .enterLicenseSection {
  max-width: 289px;
  margin: 0 auto;
  position: relative;
}

.LicensePage .enterLicenseSection .TLicenseNumber {
  border-radius: 0;
  height: 40px !important;
}

.LicensePage .enterLicenseSection .TLicenseNumber::-webkit-input-placeholder {
  color: #069899;
  text-align: center;
}

.LicensePage .enterLicenseSection .TLicenseNumber:-ms-input-placeholder {
  color: #069899;
  text-align: center;
}

.LicensePage .enterLicenseSection .TLicenseNumber::-ms-input-placeholder {
  color: #069899;
  text-align: center;
}

.LicensePage .enterLicenseSection .TLicenseNumber::placeholder {
  color: #069899;
  text-align: center;
}

.LicensePage .enterLicenseSection .error_Required {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #f93d5c;
}

.LicensePage .btnSection {
  max-width: 289px;
  margin: 0 auto;
  text-align: center;
}

.LicensePage .btnSection .btn-white {
  background: #fff;
  color: #069899;
  border-radius: 5px;
  padding: 10px 25px;
}

.col3 {
  width: 92%;
  margin-left: 4%;
  margin-right: 4%;
}

.col3 p {
  margin-bottom: 0;
}

.col3 .textCallout {
  font-size: 1.65em;
  font-weight: 400;
  color: #49b3b8;
  line-height: 2em;
}

.col3 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.col3 .textNormal strong {
  font-weight: 700;
}

.col3 .textLarge {
  font-family: "Lato", sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  color: #0f3f64;
  line-height: 1.6em;
}
/*# sourceMappingURL=style.css.map */