/*--------------------------------------------------------------
Jeet
--------------------------------------------------------------*/
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
/*--------------------------------------------------------------
CSS Reset
--------------------------------------------------------------*/
@import url("//hello.myfonts.net/count/2fa228");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  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; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

/*--------------------------------------------------------------
Varables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
@font-face {
  font-family: 'Rosarian';
  src: url("../type/Rosarian.eot");
  src: url("../type/Rosarian.eot?#iefix") format("embedded-opentype"), url("../type/Rosarian.woff") format("woff"), url("../type/Rosarian.ttf") format("truetype"), url("../type/Rosarian.svg#Rosarian") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Korolev Medium Italic';
  src: url("../type/Korolev-MediumItalic.eot");
  src: url("../type/Korolev-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../type/Korolev-MediumItalic.woff") format("woff"), url("../type/Korolev-MediumItalic.ttf") format("truetype"), url("../type/Korolev-MediumItalic.svg#Korolev-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Korolev Light';
  src: url("../type/Korolev-Light.eot");
  src: url("../type/Korolev-Light.eot?#iefix") format("embedded-opentype"), url("../type/Korolev-Light.woff") format("woff"), url("../type/Korolev-Light.ttf") format("truetype"), url("../type/Korolev-Light.svg#Korolev-Light") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Korolev Medium';
  src: url("../type/Korolev-Medium.eot");
  src: url("../type/Korolev-Medium.eot?#iefix") format("embedded-opentype"), url("../type/Korolev-Medium.woff") format("woff"), url("../type/Korolev-Medium.ttf") format("truetype"), url("../type/Korolev-Medium.svg#Korolev-Medium") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Korolev Thin';
  src: url("../type/Korolev-Thin.eot");
  src: url("../type/Korolev-Thin.eot?#iefix") format("embedded-opentype"), url("../type/Korolev-Thin.woff") format("woff"), url("../type/Korolev-Thin.ttf") format("truetype"), url("../type/Korolev-Thin.svg#Korolev-Thin") format("svg");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'blanchcaps';
  src: url("../type/blanch_caps-webfont.eot");
  src: url("../type/blanch_caps-webfont.eot?#iefix") format("embedded-opentype"), url("../type/blanch_caps-webfont.woff2") format("woff2"), url("../type/blanch_caps-webfont.woff") format("woff"), url("../type/blanch_caps-webfont.ttf") format("truetype"), url("../type/blanch_caps-webfont.svg#blanchcaps") format("svg");
  font-weight: normal;
  font-style: normal; }

em {
  font-family: 'Korolev Medium';
  font-weight: 500;
  font-style: italic;
  color: #E05624; }

h1 {
  text-align: center;
  line-height: 88px;
  font-size: 50px;
  font-family: 'Rosarian'; }
  @media only screen and (max-width: 500px) {
    h1 {
      font-size: 45px; } }
  @media only screen and (max-width: 400px) {
    h1 {
      display: none; } }

h2 {
  font-family: 'Rosarian';
  font-size: 42px;
  line-height: 46px;
  padding-bottom: 15px;
  padding-left: 4px;
  margin-top: 10px;
  margin-bottom: 10px; }
  h2 em {
    font-size: 29px; }
    @media only screen and (max-width: 500px) {
      h2 em {
        font-size: 24px; } }
  h2.alternate {
    text-transform: uppercase;
    color: #3CA2A2;
    font-family: 'Korolev Medium';
    font-weight: 500;
    font-style: italic;
    font-size: 28px;
    padding-bottom: 0;
    margin-bottom: 1px;
    margin-top: 0;
    line-height: 30px; }
    section#what h2.alternate,
    section#symptoms h2.alternate,
    section#diagnosis h2.alternate {
      color: #225A6D; }
    section#causes h2.alternate,
    section#treatment h2.alternate,
    section#today h2.alternate {
      color: #3CA2A2; }
  @media only screen and (max-width: 500px) {
    h2 {
      font-size: 36px;
      line-height: 36px; } }

h3 {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 7px;
  clear: both;
  font-family: 'blanchcaps';
  line-height: 22px; }

ul li {
  list-style-type: disc;
  margin-left: 15px; }

a {
  color: #225A6D;
  text-decoration: none;
  font-family: 'Korolev Medium'; }

p {
  margin-bottom: 10px; }

/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
.widthMain {
  width: 80%;
  max-width: 1100px;
  margin: 100px auto 0; }

.containSkewedDivs {
  width: 100%;
  position: relative;
  overflow: hidden; }

.skew {
  margin: 0 -50px;
  display: block;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(2.7deg);
  -moz-transform: rotate(2.7deg);
  -o-transform: rotate(2.7deg);
  -ms-transform: rotate(2.7deg);
  transform: rotate(2.7deg); }
  .skew .widthMainUnskew {
    width: 80%;
    margin: 0 auto;
    -webkit-transform: rotate(-2.7deg);
    -moz-transform: rotate(-2.7deg);
    -o-transform: rotate(-2.7deg);
    -ms-transform: rotate(-2.7deg);
    transform: rotate(-2.7deg);
    padding-left: 50px;
    padding-right: 50px; }
    @media only screen and (max-width: 500px) {
      .skew .widthMainUnskew {
        padding-left: 20px;
        padding-right: 20px; } }

section#intro {
  padding-top: 100px;
  padding-bottom: 120px;
  margin-top: 100px;
  background-image: url("../assets/images/liverwithoutcirrhosis.jpg");
  background-size: cover; }
  section#intro iframe {
    margin: 0 auto;
    display: block;
    border: 6px solid #225A6D; }

div.row {
  clear: both;
  margin-bottom: 15px;
  overflow: hidden; }
  div.row.noMarginBottom {
    margin-bottom: 0; }
  div.row div.oneHalf {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%; }
    div.row div.oneHalf:before, div.row div.oneHalf:after {
      content: '';
      display: table; }
    div.row div.oneHalf:after {
      clear: both; }
    div.row div.oneHalf:last-child {
      margin-right: 0%; }
    div.row div.oneHalf:last-child {
      margin-right: 0; }
    @media only screen and (max-width: 960px) {
      div.row div.oneHalf {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 100%;
        margin-left: 0%;
        margin-right: 3%;
        margin-top: 10px; }
        div.row div.oneHalf:before, div.row div.oneHalf:after {
          content: '';
          display: table; }
        div.row div.oneHalf:after {
          clear: both; }
        div.row div.oneHalf:nth-of-type(4n) {
          margin-right: 3%;
          float: left; }
        div.row div.oneHalf:nth-of-type(4n + 1) {
          clear: none; }
        div.row div.oneHalf:last-child {
          margin-right: 0%; } }
  div.row div.oneQuarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.5%;
    margin-left: 0%;
    margin-right: 2%; }
    div.row div.oneQuarter:before, div.row div.oneQuarter:after {
      content: '';
      display: table; }
    div.row div.oneQuarter:after {
      clear: both; }
    div.row div.oneQuarter:last-child {
      margin-right: 0%; }
    div.row div.oneQuarter:nth-child(4n+0) {
      margin-right: 0; }
    div.row div.oneQuarter:last-child {
      margin-right: 0; }
    div.row div.oneQuarter.hiddenDiv {
      display: none; }
    div.row div.oneQuarter.paddingTop {
      padding-top: 28px; }
    @media only screen and (max-width: 960px) {
      div.row div.oneQuarter {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
        margin-bottom: 10px; }
        div.row div.oneQuarter:before, div.row div.oneQuarter:after {
          content: '';
          display: table; }
        div.row div.oneQuarter:after {
          clear: both; }
        div.row div.oneQuarter:nth-of-type(4n) {
          margin-right: 0%;
          float: right; }
        div.row div.oneQuarter:nth-of-type(4n + 1) {
          clear: both; }
        div.row div.oneQuarter:nth-child(2n+0) {
          margin-right: 0; } }
    @media only screen and (max-width: 500px) {
      div.row div.oneQuarter {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 100%;
        margin-left: 0%;
        margin-right: 3%; }
        div.row div.oneQuarter:before, div.row div.oneQuarter:after {
          content: '';
          display: table; }
        div.row div.oneQuarter:after {
          clear: both; }
        div.row div.oneQuarter:nth-of-type(4n) {
          margin-right: 0%;
          float: right; }
        div.row div.oneQuarter:nth-of-type(4n + 1) {
          clear: both; } }
    @media only screen and (max-width: 768px) {
      div.row div.oneQuarter:first-child {
        margin-top: 0; } }

/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
/*------------
Global
--------------*/
/*--------------------------------------------------------------
Global
--------------------------------------------------------------*/
body {
  font-family: 'Korolev Light', sans-serif;
  line-height: 1.2;
  color: #2D2D29; }

img,
iframe {
  border: 3px solid #3CA2A2; }

.noOutline {
  border: none; }

@media only screen and (max-width: 960px) {
  iframe {
    width: 100%; } }

@media only screen and (max-width: 768px) {
  iframe {
    height: 300px; } }

@media only screen and (max-width: 500px) {
  iframe {
    height: 250px; } }

@media only screen and (max-width: 400px) {
  iframe {
    height: 200px; } }

div#whiteBackground {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all .7s;
  position: fixed;
  z-index: 1000;
  pointer-events: none; }
  div#whiteBackground.fadeInBG {
    opacity: 1; }

#imagelightbox {
  cursor: pointer;
  position: fixed;
  z-index: 10000;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */
  box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */ }

#imagelightbox-loading,
#imagelightbox-loading div {
  border-radius: 50%; }

#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */ }

#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #fff;
  -webkit-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite; }

#imagelightbox-overlay {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1); }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75); } }

@keyframes imagelightbox-loading {
  from {
    opacity: .5;
    transform: scale(0.75); }
  50% {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: .5;
    transform: scale(0.75); } }

/*------------
Colors
--------------*/
/*--------------------------------------------------------------
Colors
--------------------------------------------------------------*/
div.headingWhat,
div.headingSymptoms,
div.headingTreatment {
  height: 80px;
  background: #225A6D; }
  div.headingWhat h1,
  div.headingSymptoms h1,
  div.headingTreatment h1 {
    color: #DFEBE5; }

div.headingCauses,
div.headingDiagnosis,
div.headingToday {
  background: #3CA2A2;
  height: 80px; }
  div.headingCauses h1,
  div.headingDiagnosis h1,
  div.headingToday h1 {
    color: #fff; }

section#whatSection,
section#symptomsSection,
section#treatmentSection {
  background: #DFEBE5;
  overflow: hidden;
  padding: 75px 0 75px 0; }
  section#whatSection h3,
  section#symptomsSection h3,
  section#treatmentSection h3 {
    color: #3CA2A2; }

section#causesSection,
section#diagnosisSection,
section#todaySection {
  background: #fff;
  overflow: hidden;
  padding: 75px 0 75px 0; }
  section#causesSection h3,
  section#diagnosisSection h3,
  section#todaySection h3 {
    color: #92C7A3; }

/*------------
Header
--------------*/
/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
div.fillHeader {
  background: #225A6D;
  height: 100px;
  z-index: 999;
  margin-top: -100px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

header {
  background: #225A6D;
  height: 120px;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0px 27px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #3CA2A2;
  transition: all .5s; }
  header h1 {
    position: absolute;
    margin-left: -9999em; }
  header div#menuButton {
    display: none;
    position: absolute;
    cursor: pointer; }
    @media only screen and (max-width: 960px) {
      header div#menuButton.modifyHamburger {
        width: 20px;
        height: 16px;
        top: 94px;
        margin-left: -17px; } }
    @media only screen and (max-width: 768px) {
      header div#menuButton.modifyHamburger {
        top: 102px;
        margin-left: -17px; } }
    @media only screen and (max-width: 960px) {
      header div#menuButton {
        background: url("../assets/graphics/hamburger.svg") no-repeat;
        width: 35px;
        height: 29px;
        z-index: 9999;
        display: block;
        margin: 0 auto;
        top: 108px;
        left: 50%;
        margin-left: -32px;
        transition: all .5s; } }
    @media only screen and (max-width: 768px) {
      header div#menuButton {
        top: 112px; } }
  header div#logo {
    width: 150px;
    padding: 32px 15px 15px 15px;
    background: none;
    float: left;
    height: 160px;
    left: 50%;
    position: absolute;
    margin-top: -30px;
    margin-left: -75px; }
    header div#logo div.containSVG {
      width: 95px;
      margin: 7px auto 0;
      transition: all .5s; }
      header div#logo div.containSVG.shrinkLiver {
        width: 50px;
        margin-top: 5px; }
        @media only screen and (max-width: 960px) {
          header div#logo div.containSVG.shrinkLiver {
            margin-top: 1px; } }
      @media only screen and (max-width: 768px) {
        header div#logo div.containSVG {
          margin-top: 2px; } }
    header div#logo:hover {
      cursor: pointer; }
    @media only screen and (max-width: 960px) {
      header div#logo {
        margin-top: -24px; } }
    @media only screen and (max-width: 768px) {
      header div#logo {
        margin-top: -15px; } }
  header.accommodateMenu {
    height: 138px; }
    @media only screen and (max-width: 768px) {
      header.accommodateMenu {
        height: 152px; } }
  header.skew {
    margin-top: -16px; }
  @media only screen and (max-width: 960px) {
    header {
      height: 125px; } }

nav {
  margin-top: 15px;
  position: relative;
  z-index: 999; }
  nav ul li {
    float: left;
    width: 8%;
    margin-right: 5%;
    margin-left: 0;
    list-style-type: none; }
    nav ul li:first-child, nav ul li:nth-child(2), nav ul li:nth-child(3) {
      text-align: left; }
    nav ul li:nth-child(4), nav ul li:nth-child(5), nav ul li:last-child {
      text-align: right; }
    nav ul li:nth-child(3) {
      margin-right: 32%; }
    nav ul li:first-child {
      margin-left: 0; }
      @media only screen and (max-width: 960px) {
        nav ul li:first-child {
          margin-top: 80px; } }
    nav ul li:last-child {
      margin-right: 0; }
    nav ul li a {
      font-family: 'blanchcaps';
      font-size: 19px;
      letter-spacing: 1px;
      display: block;
      text-decoration: none;
      text-transform: uppercase;
      text-align: center;
      color: #DFEBE5; }
      nav ul li a:hover {
        color: #E05624; }
      nav ul li a.keepTrack {
        color: #E05624;
        transition: all .3s; }
      @media only screen and (max-width: 960px) {
        nav ul li a {
          font-size: 24px; } }
    @media only screen and (max-width: 960px) {
      nav ul li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        text-align: left;
        margin-bottom: 10px; } }
  nav.widthMain {
    top: -36px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 960px) {
      nav.widthMain {
        width: 200px;
        padding-top: 50px; } }
  @media only screen and (min-width: 961px) {
    nav {
      display: block !important; } }
  @media only screen and (max-width: 960px) {
    nav {
      margin-top: 100px;
      position: absolute;
      overflow: hidden;
      width: 200px;
      margin-left: -100px;
      left: 50%;
      height: auto;
      background: rgba(34, 92, 111, 0.9);
      z-index: 420;
      border-bottom: 3px solid #3CA2A2;
      border-left: 3px solid #3CA2A2;
      border-right: 3px solid #3CA2A2; } }

/*------------
Footer
--------------*/
/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
div.afterFooter {
  height: 250px;
  clear: both;
  background-image: url("../assets/images/liverwithcirrhosis.jpg");
  background-size: cover; }

footer {
  background: #225A6D;
  height: 80px;
  color: #fff;
  line-height: 80px;
  text-align: center; }
