/*--------------------------------------------------------------
INITS
----------------------------------------------------------------*/
.f {
  display: block;
  clear: both; }

.inner {
  /*background-color: #f9f9f9;*/
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  overflow: auto; }

.section {
  padding: 40px 0; }

@media screen and (max-width: 1100px) {
  .inner {
    padding: 0 20px; } }
/*--------------------------------------------------------------
# SASS VARS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## SASS MIXINS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  font-family: 'Open Sans', sans-serif;
  /*font-family: 'Lato', sans-serif;*/
  color: #373739;
  font-size: 16px;
  font-weight: 100; }

h1, h2, h3, h4, h5 {
  font-weight: 400;
  /*font-family: 'Lato', sans-serif;*/ }

a, a:visited {
  color: #0077cc; }

.ln-centered {
  text-align: center; }

/*--------------------------------------------------------------
ELEMENTS
----------------------------------------------------------------*/
.box-hover {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.35);
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out; }
  .box-hover:hover {
    -webkit-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.25); }

.ln-btn, input[value="Submit"] {
  display: inline-block;
  background-color: #ed1c24;
  padding: 7px 30px;
  clear: both;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  /*letter-spacing: 1px;*/
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out; }
  .ln-btn:hover, input[value="Submit"]:hover {
    background-color: #a81117;
    color: #ffffff; }

.ln-btn:hover, .ln-btn:focus, .ln-btn:active {
  color: #ffffff; }

/*--------------------------
POLAROIDS
----------------------------*/
ul.polaroids {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px; }
  ul.polaroids a {
    width: 31%;
    text-decoration: none;
    color: inherit; }
    ul.polaroids a li.polaroid {
      background-color: #ffffff;
      height: 100%;
      -webkit-transition: all 0.25s ease-out;
      -moz-transition: all 0.25s ease-out;
      -ms-transition: all 0.25s ease-out;
      -o-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out;
      text-align: center;
      /*display: inline;*/ }
      ul.polaroids a li.polaroid .polaroid-img-wrap {
        background-position: center;
        background-size: cover;
        display: block;
        clear: both;
        border-bottom: 3px solid #ed1c24; }
        ul.polaroids a li.polaroid .polaroid-img-wrap img {
          width: 100%;
          height: auto;
          display: block; }
      ul.polaroids a li.polaroid .polaroid-content-wrap {
        display: block;
        width: 100%;
        clear: both;
        padding: 5px 15px 20px;
        font-size: 14px; }
        ul.polaroids a li.polaroid .polaroid-content-wrap h3 {
          font-size: 20px;
          font-weight: 400;
          font-family: 'Lato', sans-serif;
          margin-bottom: 0px;
          color: #2a8dd7; }
        ul.polaroids a li.polaroid .polaroid-content-wrap p {
          margin-top: 5px;
          font-size: 13px; }

@media screen and (max-width: 550px) {
  ul.polaroids {
    display: block;
    padding: 0px; }
    ul.polaroids a {
      width: 100%;
      max-width: 350px;
      display: block;
      text-decoration: none;
      color: inherit;
      margin-bottom: 20px;
      margin: 0 auto 20px; }
      ul.polaroids a li.polaroid {
        background-color: #ffffff;
        height: 100%;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
        text-align: center;
        /*display: inline;*/ }
        ul.polaroids a li.polaroid .polaroid-img-wrap {
          background-position: center;
          background-size: cover;
          display: block;
          clear: both;
          border-bottom: 3px solid #ed1c24; }
          ul.polaroids a li.polaroid .polaroid-img-wrap img {
            width: 100%;
            height: auto;
            display: block; }
        ul.polaroids a li.polaroid .polaroid-content-wrap {
          display: block;
          width: 100%;
          clear: both;
          padding: 5px 15px 20px;
          font-size: 14px; }
          ul.polaroids a li.polaroid .polaroid-content-wrap h3 {
            font-size: 20px;
            font-weight: 400;
            font-family: 'Lato', sans-serif;
            margin-bottom: 0px; }
          ul.polaroids a li.polaroid .polaroid-content-wrap p {
            margin-top: 5px; } }
/*--------------------------
INFO BLOCKS
----------------------------*/
ul.info-blocks {
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 20px;
  display: flex;
  flex-wrap: wrap; }
  ul.info-blocks li.info-block {
    text-align: center;
    background-color: #f0f1f1;
    width: 45%;
    margin: 15px;
    padding: 20px 40px; }
    ul.info-blocks li.info-block .fa {
      font-size: 50px;
      margin-top: 20px; }

/*--------------------------
FIFTY FIFTY
----------------------------*/
.fiftyfifty ul.ff-list {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .fiftyfifty ul.ff-list li.ff-item {
    padding: 40px 0;
    /*background-color: green;*/ }
    .fiftyfifty ul.ff-list li.ff-item .inner {
      /*display: flex;
      justify-content: space-between;*/ }
      .fiftyfifty ul.ff-list li.ff-item .inner .ff-img {
        display: block;
        /*background-color: red;*/
        width: 25%;
        float: left; }
        .fiftyfifty ul.ff-list li.ff-item .inner .ff-img img {
          display: block;
          width: 100%;
          height: auto; }
      .fiftyfifty ul.ff-list li.ff-item .inner .ff-content {
        display: block;
        /*background-color: yellow;*/
        width: 75%;
        padding-left: 40px;
        float: right; }
        .fiftyfifty ul.ff-list li.ff-item .inner .ff-content h2 {
          font-size: 44px;
          font-family: "Lato", "Open Sans", sans-serif !important;
          margin: 0; }
  .fiftyfifty ul.ff-list li.ff-item:nth-child(odd) {
    background-color: #ebf0f1; }
    .fiftyfifty ul.ff-list li.ff-item:nth-child(odd) .inner .ff-img {
      float: right; }
    .fiftyfifty ul.ff-list li.ff-item:nth-child(odd) .inner .ff-content {
      display: block;
      /*background-color: yellow;*/
      /*width: 75%;*/
      padding-left: 0;
      padding-right: 40px;
      float: left; }

/*--------------------------------------------------------------
SLIDERS
----------------------------------------------------------------*/
/*SLIDER*/
.slider-wrap .bxslider li {
  font-family: 'Lato', sans-serif;
  height: 60vh;
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center; }
  .slider-wrap .bxslider li .content-wrap {
    position: absolute;
    bottom: 50px;
    text-align: left;
    width: 100%;
    color: #ffffff; }
    .slider-wrap .bxslider li .content-wrap .inner {
      max-width: 1024px; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-title {
        font-weight: 400;
        font-size: 46px;
        letter-spacing: 1px; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-content {
        background-color: #ed1c24;
        background-color: rgba(237, 28, 36, 0.95);
        background: rgba(237, 28, 36, 0.95);
        color: #ffffff;
        padding: 30px 40px 40px 40px;
        font-size: 35px;
        font-weight: 400;
        max-width: 425px; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-title {
          margin: 0;
          padding: 0;
          font-size: 42px;
          font-weight: 400; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy {
          line-height: 1.25em;
          font-weight: 300;
          font-size: 18px; }
          .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy p {
            margin: 0;
            padding: 0; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-button {
        font-size: 16px;
        /*border-radius: 30px;*/
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 7px 25px 8px;
        text-decoration: none;
        font-weight: 400;
        margin-top: 30px;
        display: inline-block;
        -webkit-transition: all 0.35s ease-out;
        -moz-transition: all 0.35s ease-out;
        -ms-transition: all 0.35s ease-out;
        -o-transition: all 0.35s ease-out;
        transition: all 0.35s ease-out; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-button:hover {
          background-color: #ffffff;
          color: #ed1c24; }
.slider-wrap .bx-wrapper .bx-pager.bx-default-pager a.active {
  /*background-color: $pblue!important;*/ }
.slider-wrap .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background-color: #ffffff; }

@media screen and (max-width: 700px) {
  .slider-wrap .bxslider li {
    height: 30vh;
    min-height: 300px;
    position: relative;
    background-size: cover;
    background-position: center; }
    .slider-wrap .bxslider li .content-wrap {
      bottom: 50px; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-title {
        font-weight: 400;
        font-size: 24px;
        letter-spacing: 1px; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-content {
        padding: 20px 30px 30px 30px; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-title {
          margin: 0;
          padding: 0;
          font-size: 24px;
          line-height: 1.25em;
          font-weight: 400; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy {
          font-size: 16px; }
          .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy p {
            margin: 0;
            padding: 0; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-button {
        font-size: 16px;
        /*border-radius: 30px;*/
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 7px 25px 8px;
        text-decoration: none;
        font-weight: 400;
        margin-top: 30px;
        display: inline-block;
        -webkit-transition: all 0.35s ease-out;
        -moz-transition: all 0.35s ease-out;
        -ms-transition: all 0.35s ease-out;
        -o-transition: all 0.35s ease-out;
        transition: all 0.35s ease-out; }
        .slider-wrap .bxslider li .content-wrap .inner .slide-button:hover {
          background-color: #ffffff;
          color: #ed1c24; }
  .slider-wrap .bx-wrapper .bx-pager.bx-default-pager a.active {
    /*background-color: $pblue!important;*/ }
  .slider-wrap .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background-color: #ffffff; } }
@media screen and (max-width: 550px) {
  .slider-wrap .bxslider li .content-wrap {
    bottom: 50px; }
    .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-title {
      font-size: 20px; }
    .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy {
      font-size: 14px; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-content .slide-copy p {
        margin: 0;
        padding: 0; }
    .slider-wrap .bxslider li .content-wrap .inner .slide-button {
      font-size: 16px;
      /*border-radius: 30px;*/
      border: 2px solid #ffffff;
      color: #ffffff;
      padding: 7px 25px 8px;
      text-decoration: none;
      font-weight: 400;
      margin-top: 30px;
      display: inline-block;
      -webkit-transition: all 0.35s ease-out;
      -moz-transition: all 0.35s ease-out;
      -ms-transition: all 0.35s ease-out;
      -o-transition: all 0.35s ease-out;
      transition: all 0.35s ease-out; }
      .slider-wrap .bxslider li .content-wrap .inner .slide-button:hover {
        background-color: #ffffff;
        color: #ed1c24; }
  .slider-wrap .bx-wrapper .bx-pager.bx-default-pager a.active {
    /*background-color: $pblue!important;*/ }
  .slider-wrap .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background-color: #ffffff; } }
/*--------------------------------------------------------------
SECTIONS
----------------------------------------------------------------*/
/*------------------------------
.site-header
--------------------------------*/
.site-header {
  background-color: #ffffff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0; }
  .site-header .header-dark {
    display: none;
    background-color: #373739;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 0; }
    .site-header .header-dark .dark-left {
      float: left; }
    .site-header .header-dark .dark-right {
      float: right;
      display: block;
      clear: none; }
  .site-header .header-main .main-logo {
    width: 174px;
    padding: 12px 0;
    margin-top: 10px;
    height: auto; }
  .site-header .header-main .header-side {
    display: block;
    float: right;
    padding: 15px 0;
    width: 50%; }
    .site-header .header-main .header-side .widget {
      margin: 0;
      float: right;
      width: 100%; }
      .site-header .header-main .header-side .widget .search-field {
        display: block;
        float: left;
        border-radius: 0;
        border-color: #e5e5e5;
        padding: 10px;
        line-height: 1em;
        font-size: 14px;
        min-width: 75%; }
        .site-header .header-main .header-side .widget .search-field label {
          display: inline; }
      .site-header .header-main .header-side .widget .search-submit {
        background-color: #ed1c24;
        border-radius: 0;
        border: 0;
        color: #ffffff;
        padding: 13px 14px 12px;
        line-height: 1em;
        min-width: 25%;
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        font-weight: 400;
        /*margin-left: -5px;*/
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out; }
        .site-header .header-main .header-side .widget .search-submit:hover {
          background-color: #a81117; }
  .site-header .header-navigation {
    background-color: #ededed;
    border-top: 1px solid #d2d7d6;
    border-bottom: 1px solid #d2d7d6; }
    .site-header .header-navigation .inner {
      overflow: visible; }
    .site-header .header-navigation ul#primary-menu li {
      padding: 15px;
      font-size: 15px;
      font-weight: 600;
      border-left: 1px solid #e1e4e5;
      border-right: 1px solid #e1e4e5; }
      .site-header .header-navigation ul#primary-menu li a {
        color: #373739; }
        .site-header .header-navigation ul#primary-menu li a:hover {
          opacity: 0.5; }
      .site-header .header-navigation ul#primary-menu li:hover {
        background-color: #ffffff;
        border-color: #e5e5e5; }
      .site-header .header-navigation ul#primary-menu li ul.sub-menu {
        background-color: #ffffff;
        border-color: #e5e5e5;
        margin-left: -15px; }

@media screen and (max-width: 700px) {
  .site-header .header-main .main-logo {
    width: 120px;
    padding: 7px 0;
    margin-top: 10px;
    height: auto; }
  .site-header .header-main .header-side {
    display: none; } }
/*------------------------------
.site-content
--------------------------------*/
.site-content {
  padding-top: 110px; }
  .site-content .entry-title {
    font-family: 'Lato', sans-serif;
    font-size: 44px; }
  .site-content .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 44px;
    text-align: center;
    margin-top: 0; }
  .site-content .two-col {
    -webkit-columns: 300px 2;
    -moz-columns: 300px 2;
    columns: 300px 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    vertical-align: top; }
    .site-content .two-col p:first-of-type {
      margin-top: 0; }
    .site-content .two-col p {
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid;
      text-align: justify; }
    .site-content .two-col .col {
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid; }

@media screen and (max-width: 700px) {
  .site-content {
    padding-top: 90px; }
    .site-content .entry-title {
      font-family: 'Lato', sans-serif;
      font-size: 32px;
      line-height: 1.25em; }
    .site-content .section-title {
      font-family: 'Lato', sans-serif;
      font-size: 32px;
      line-height: 1.25em;
      text-align: center;
      margin-top: 0; }
    .site-content .two-col {
      -webkit-columns: 300px 2;
      -moz-columns: 300px 2;
      columns: 300px 2;
      -webkit-column-gap: 50px;
      -moz-column-gap: 50px;
      column-gap: 50px;
      vertical-align: top; }
      .site-content .two-col p:first-of-type {
        margin-top: 0; }
      .site-content .two-col p {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        text-align: justify; }
      .site-content .two-col .col {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid; } }
@media screen and (max-width: 550px) {
  .site-content .entry-title {
    font-size: 24px; }
  .site-content .section-title {
    font-size: 24px; }
  .site-content .two-col {
    -webkit-columns: 300px 2;
    -moz-columns: 300px 2;
    columns: 300px 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    vertical-align: top; }
    .site-content .two-col p:first-of-type {
      margin-top: 0; }
    .site-content .two-col p {
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid;
      text-align: justify; }
    .site-content .two-col .col {
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid; } }
/*------------------------------
.site-footer
--------------------------------*/
.site-footer {
  background-color: #ebf0f1;
  font-size: 14px;
  font-weight: 400; }
  .site-footer .widget {
    margin: 0; }
    .site-footer .widget .widget-title {
      font-weight: bold;
      font-size: 14px;
      margin-top: 0;
      margin-bottom: 10px; }
    .site-footer .widget ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .site-footer .widget ul li a {
        text-decoration: none; }
  .site-footer .footer-connect-bar {
    border-top: 1px solid #d2d7d6;
    border-bottom: 1px solid #d2d7d6;
    background-color: #e1e4e5;
    padding: 15px 0;
    text-align: right;
    font-weight: bold;
    /*border-top: 1px solid #bdbfc1;
    border-bottom: 1px solid #bdbfc1;*/ }
    .site-footer .footer-connect-bar a.social-icon {
      display: inline-block;
      padding: 0 15px;
      margin: 0;
      border-right: 1px solid #c5c5c5; }
      .site-footer .footer-connect-bar a.social-icon img {
        display: inline;
        vertical-align: middle; }
      .site-footer .footer-connect-bar a.social-icon:hover {
        opacity: 0.65;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out; }
  .site-footer .footer-menus-bar {
    background-color: #ebf0f1;
    padding: 40px 0;
    display: flex;
    font-size: 13px; }
    .site-footer .footer-menus-bar .seal-image {
      margin-top: 20px; }
    .site-footer .footer-menus-bar ul {
      line-height: 1.75em; }
    .site-footer .footer-menus-bar section {
      display: inline-block;
      justify-content: space-between;
      width: 24%;
      flex: 1;
      vertical-align: top;
      padding-right: 10px;
      /*display: inline-block;*/ }
    .site-footer .footer-menus-bar .col-1 {
      vertical-align: text-top; }
  .site-footer .footer-dark-bar {
    background-color: #373739;
    padding: 10px 0;
    color: #bdbfc1; }
    .site-footer .footer-dark-bar .footer-logo {
      display: block;
      float: left;
      width: 108px;
      height: auto; }
    .site-footer .footer-dark-bar .privacy {
      float: right;
      font-size: 13px; }
      .site-footer .footer-dark-bar .privacy ul {
        list-style-type: disc;
        /*margin:0;*/
        padding: 0; }
        .site-footer .footer-dark-bar .privacy ul li {
          display: inline-block;
          margin-left: 10px; }
          .site-footer .footer-dark-bar .privacy ul li a {
            color: #ffffff;
            opacity: 0.5; }
            .site-footer .footer-dark-bar .privacy ul li a:hover {
              opacity: 1; }
  .site-footer .footer-relx-bar {
    background-color: #ffffff;
    padding: 10px 0;
    font-size: 10px; }
    .site-footer .footer-relx-bar .relx-logo {
      display: block;
      float: right;
      width: 134px;
      height: auto; }

@media screen and (max-width: 700px) {
  .site-footer .footer-connect-bar {
    border-top: 1px solid #d2d7d6;
    border-bottom: 1px solid #d2d7d6;
    background-color: #e1e4e5;
    padding: 15px 0;
    text-align: right;
    font-weight: bold;
    /*border-top: 1px solid #bdbfc1;
    border-bottom: 1px solid #bdbfc1;*/ }
    .site-footer .footer-connect-bar a.social-icon {
      display: inline-block;
      padding: 0 15px;
      margin: 0;
      border-right: 1px solid #c5c5c5; }
      .site-footer .footer-connect-bar a.social-icon img {
        display: inline;
        vertical-align: middle; }
      .site-footer .footer-connect-bar a.social-icon:hover {
        opacity: 0.65;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out; }
  .site-footer .footer-menus-bar {
    background-color: #ebf0f1;
    padding: 40px 0;
    display: flex;
    font-size: 13px; }
    .site-footer .footer-menus-bar .seal-image {
      margin-top: 20px; }
    .site-footer .footer-menus-bar ul {
      line-height: 1.75em; }
    .site-footer .footer-menus-bar section {
      display: inline-block;
      justify-content: space-between;
      width: 49%;
      margin-bottom: 20px;
      /*display: inline-block;*/ }
  .site-footer .footer-dark-bar {
    background-color: #373739;
    padding: 10px 0;
    color: #bdbfc1; }
    .site-footer .footer-dark-bar .footer-logo {
      display: block;
      float: left;
      width: 108px;
      height: auto; }
    .site-footer .footer-dark-bar .privacy {
      float: right;
      font-size: 13px; }
      .site-footer .footer-dark-bar .privacy ul {
        list-style-type: disc;
        /*margin:0;*/
        padding: 0; }
        .site-footer .footer-dark-bar .privacy ul li {
          display: inline-block;
          margin-left: 10px; }
          .site-footer .footer-dark-bar .privacy ul li a {
            color: #ffffff;
            opacity: 0.5; }
            .site-footer .footer-dark-bar .privacy ul li a:hover {
              opacity: 1; }
  .site-footer .footer-relx-bar {
    background-color: #ffffff;
    padding: 10px 0;
    font-size: 10px; }
    .site-footer .footer-relx-bar .relx-logo {
      display: block;
      float: right;
      width: 134px;
      height: auto; } }
@media screen and (max-width: 550px) {
  .site-footer .footer-connect-bar {
    text-align: center; }
    .site-footer .footer-connect-bar .connect-title {
      display: block; }
    .site-footer .footer-connect-bar a.social-icon {
      padding: 5px;
      border-right: 0; }
  .site-footer .footer-menus-bar section {
    width: 100%;
    text-align: center; }
  .site-footer .footer-dark-bar {
    text-align: center; }
    .site-footer .footer-dark-bar .footer-logo {
      display: block;
      float: none;
      margin: 5px auto 10px;
      width: 108px;
      height: auto; }
    .site-footer .footer-dark-bar .privacy {
      float: none; }
  .site-footer .footer-relx-bar {
    text-align: center; }
    .site-footer .footer-relx-bar .relx-logo {
      display: block;
      float: none;
      margin: 10px auto; } }
/*--------------------------------------------------------------
PAGES
----------------------------------------------------------------*/
.page-feature {
  height: 20vh;
  min-height: 250px;
  position: relative;
  background-size: cover;
  background-position: center; }
  .page-feature .inner {
    /*background-color: orange;*/
    height: 100%;
    position: relative; }
  .page-feature .page-feature-content {
    position: absolute;
    bottom: 30px;
    /*@include valign(absolute);*/
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 400;
    background-color: #ed1c24;
    color: #ffffff;
    width: 100%;
    max-width: 430px;
    padding: 30px; }
    .page-feature .page-feature-content h3 {
      font-size: 28px;
      margin: 0; }
    .page-feature .page-feature-content p {
      padding: 0;
      margin: 0; }

body.single-post .entry-title {
  margin: 0;
  margin-top: 20px; }
body.single-post .full-image {
  width: 100%; }
body.single-post blockquote {
  font-size: 1.5em;
  font-style: italic;
  border-left: 5px solid #ed1c24;
  font-weight: 400;
  padding-left: 30px; }

/*------------------------------
SEARCH RESULTS
--------------------------------*/
body.search-results h2.entry-title {
  font-size: 22px;
  font-weight: bold; }

/*------------------------------
.home
--------------------------------*/
body.page-template-template-homepage .site-content {
  text-align: center; }
  body.page-template-template-homepage .site-content .entry-content {
    max-width: 760px;
    margin: 0 auto; }
body.page-template-template-homepage .section-title {
  text-align: center;
  font-family: 'Lato', sans-serif; }
body.page-template-template-homepage .release-preview {
  background-color: #f0f1f1;
  /*text-align: left;*/
  /*background-color: red;*/ }
  body.page-template-template-homepage .release-preview .inner {
    max-width: 760px; }
  body.page-template-template-homepage .release-preview .section-title {
    /*text-align: left;
    font-size: 44px;
    font-weight: 400;*/ }
  body.page-template-template-homepage .release-preview .release-list {
    list-style-type: none;
    margin: 0;
    margin-bottom: 20px;
    padding: 0; }
    body.page-template-template-homepage .release-preview .release-list .release-item {
      display: flex;
      margin-bottom: 10px; }
      body.page-template-template-homepage .release-preview .release-list .release-item .release-icon {
        width: 100px; }
      body.page-template-template-homepage .release-preview .release-list .release-item .release-info h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0; }
      body.page-template-template-homepage .release-preview .release-list .release-item .release-info p {
        margin: 0 auto 10px auto;
        font-size: 15px; }
body.page-template-template-homepage .left-align-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e4e5;
  position: relative;
  margin-bottom: 15px; }
  body.page-template-template-homepage .left-align-header .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 0; }
  body.page-template-template-homepage .left-align-header .view-all {
    font-family: 'Lato', sans-serif;
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 16px;
    text-decoration: none;
    color: #333333;
    font-weight: 400; }
    body.page-template-template-homepage .left-align-header .view-all:hover {
      color: #2a8dd7; }
body.page-template-template-homepage .industry-news {
  background-color: #f0f1f1;
  text-align: left; }
  body.page-template-template-homepage .industry-news ul.news-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; }
    body.page-template-template-homepage .industry-news ul.news-list li.news-article {
      width: 100%;
      display: block;
      padding: 15px 0;
      /*background-color: red;*/ }
      body.page-template-template-homepage .industry-news ul.news-list li.news-article .article-wrap {
        display: flex; }
        body.page-template-template-homepage .industry-news ul.news-list li.news-article .article-wrap .article-img-wrap {
          width: 200px;
          margin-right: 25px;
          min-width: 180px;
          /*height: 125px;*/
          float: left;
          background-color: #ebf0f1;
          background-position: center;
          background-size: cover; }
        body.page-template-template-homepage .industry-news ul.news-list li.news-article .article-wrap .article-content-wrap {
          float: right;
          width: 75%; }
          body.page-template-template-homepage .industry-news ul.news-list li.news-article .article-wrap .article-content-wrap h3.article-title {
            font-size: 22px;
            font-weight: 500;
            margin-top: 5px;
            margin-bottom: 0;
            font-family: 'Lato', sans-serif; }
          body.page-template-template-homepage .industry-news ul.news-list li.news-article .article-wrap .article-content-wrap p {
            margin-top: 5px;
            margin-bottom: 5px; }
body.page-template-template-homepage .featured-books {
  font-family: "Lato", "Open Sans", sans-serif !important; }
  body.page-template-template-homepage .featured-books ul.book-list {
    list-style-type: none;
    margin: 0;
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between; }
    body.page-template-template-homepage .featured-books ul.book-list li.book-entry {
      /*background-color: red;*/
      width: 32%;
      flex: 1;
      position: relative; }
      body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-img, body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-details {
        float: left;
        text-align: left; }
      body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-img {
        width: 35%; }
      body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-details {
        font-weight: 400;
        width: 65%;
        padding: 10px 20px 10px 10px;
        position: absolute;
        bottom: 10px;
        right: 0; }
        body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-details .book-title {
          font-size: 16px;
          margin: 0; }
        body.page-template-template-homepage .featured-books ul.book-list li.book-entry .book-details .book-price {
          font-size: 20px;
          font-weight: 500;
          margin: 0;
          margin-bottom: 15px; }

/*------------------------------
.Product
--------------------------------*/
body.page-template-template-product .page-feature {
  height: 40vh; }
  body.page-template-template-product .page-feature .page-feature-content {
    /*position: absolute;*/
    /*bottom: 0;*/
    text-align: left; }
    body.page-template-template-product .page-feature .page-feature-content h2 {
      margin: 0;
      font-size: 44px; }
body.page-template-template-product .site-content {
  text-align: center; }
body.page-template-template-product .benefits {
  background-color: #ebf0f1; }
body.page-template-template-product ul.info-blocks li.info-block {
  width: 50%;
  background-color: transparent;
  margin: 0;
  padding: 0 20px; }

/*---------------------------
## LATEST UPDATES
---------------------------*/
.view-min-req {
  display: block;
  width: 300px;
  margin: 0 auto 40px;
  color: #ffffff !important;
  text-align: center; }

.minimum-requirements-wrap {
  /*background-color: #f7f7f7;*/
  max-height: 1250px;
  overflow: hidden;
  text-align: left;
  /*padding: 20px;*/
  -webkit-transition: all 0.45s ease-out;
  -moz-transition: all 0.45s ease-out;
  -ms-transition: all 0.45s ease-out;
  -o-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out; }
  .minimum-requirements-wrap .row {
    background-color: #e5e5e5;
    margin: 0;
    padding: 4px 15px;
    vertical-align: top;
    overflow: auto; }
    .minimum-requirements-wrap .row .left, .minimum-requirements-wrap .row .right {
      display: block;
      float: left;
      /*overflow: auto;*/
      clear: none;
      vertical-align: top; }
      .minimum-requirements-wrap .row .left p, .minimum-requirements-wrap .row .right p {
        margin-bottom: 10px;
        margin-top: 10px; }
    .minimum-requirements-wrap .row .left {
      width: 30%;
      font-weight: 600 !important;
      /*float: left;*/ }
      .minimum-requirements-wrap .row .left p {
        font-weight: 600 !important; }
    .minimum-requirements-wrap .row .right {
      width: 70%;
      /*float: right;*/ }
  .minimum-requirements-wrap .title-row {
    background-color: grey;
    color: #ffffff;
    padding: 10px 15px; }
    .minimum-requirements-wrap .title-row h3 {
      font-size: 18px;
      font-weight: 400;
      margin: 0; }

.minimum-requirements-wrap.hidden {
  max-height: 0;
  -webkit-transition: all 0.01s ease-out;
  -moz-transition: all 0.01s ease-out;
  -ms-transition: all 0.01s ease-out;
  -o-transition: all 0.01s ease-out;
  transition: all 0.01s ease-out; }

.iframe-wrapper {
  background-image: url("../imgs/updates_loader.gif");
  background-repeat: no-repeat;
  background-size: 100% 5px; }

/*---------------------------
## FEATURES
---------------------------*/
.feature-list-wrap .feature-list {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .feature-list-wrap .feature-list .feature-item {
    padding: 30px 30px 50px; }
    .feature-list-wrap .feature-list .feature-item .inner {
      padding: 0; }
      .feature-list-wrap .feature-list .feature-item .inner .feature-info {
        overflow: auto; }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .feature-title {
          display: inline;
          font-weight: 700;
          font-size: 22px;
          color: #111111; }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .feature-image {
          padding-right: 10px;
          float: left;
          /*overflow: auto;*/
          width: 30%;
          max-width: 320px;
          height: auto;
          display: inline;
          position: absolute;
          top: 50%;
          transform: translateY(-50%); }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .details {
          /*padding-left: 31%;*/ }
          .feature-list-wrap .feature-list .feature-item .inner .feature-info .details a {
            font-weight: 400;
            text-decoration: none; }
            .feature-list-wrap .feature-list .feature-item .inner .feature-info .details a:hover {
              text-decoration: underline; }
          .feature-list-wrap .feature-list .feature-item .inner .feature-info .details ul {
            margin: 0;
            padding: 0;
            margin-left: 40px; }
  .feature-list-wrap .feature-list .feature-item:nth-child(odd) {
    background-color: #f0f1f1; }
  .feature-list-wrap .feature-list .feature-item:nth-child(even) {
    /*background-color: red;*/
    /*FLOAT TOGGLE*/ }
    .feature-list-wrap .feature-list .feature-item:nth-child(even) .feature-image {
      padding-right: 0;
      padding-left: 10px;
      /*float: right;*/
      right: 0;
      left: auto; }
    .feature-list-wrap .feature-list .feature-item:nth-child(even) .details {
      /*padding-left: 0!important;*/
      /*padding-right: 31%;*/ }

@media screen and (max-width: 680px) {
  .feature-list-wrap .feature-list .feature-item {
    padding: 0; }
    .feature-list-wrap .feature-list .feature-item .inner {
      padding: 20px; }
      .feature-list-wrap .feature-list .feature-item .inner .feature-info {
        text-align: center; }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .feature-title {
          display: inline;
          font-weight: 700;
          font-size: 22px; }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .feature-image {
          float: none;
          clear: both;
          width: 80%;
          height: auto;
          max-width: 320px;
          position: relative;
          top: 0 !important;
          transform: translateY(0); }
        .feature-list-wrap .feature-list .feature-item .inner .feature-info .details {
          padding-left: 0; }
          .feature-list-wrap .feature-list .feature-item .inner .feature-info .details ul {
            text-align: left; }
  .feature-list-wrap .feature-list .feature-item:nth-child(odd) {
    background-color: #f9f9f9; }
  .feature-list-wrap .feature-list .feature-item:nth-child(even) {
    /*background-color: red;*/
    /*FLOAT TOGGLE*/ }
    .feature-list-wrap .feature-list .feature-item:nth-child(even) .feature-image {
      /*padding-right: 0;*/
      padding-left: 0;
      /*float: right;*/
      right: auto;
      /*left: auto;*/ }
    .feature-list-wrap .feature-list .feature-item:nth-child(even) .details {
      padding-left: 0 !important;
      padding-right: 0 !important; } }
/*---------------------------
## TRAINING SCHEDULE
---------------------------*/
.training-table-wrap .training-table {
  /*background-color: red;*/
  overflow: auto;
  padding: 0;
  margin: 0;
  list-style-type: none; }
  .training-table-wrap .training-table .tttr {
    overflow: auto;
    /*.col-3{
    	width: 33%;
    	font-weight: bold!important;
    }*/ }
    .training-table-wrap .training-table .tttr .tttd {
      /*background-color: #f5f5f5;*/
      padding: 20px;
      float: left;
      text-align: left; }
      .training-table-wrap .training-table .tttr .tttd h2 {
        color: #373739;
        padding: 0;
        margin: 0;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: -10px; }
      .training-table-wrap .training-table .tttr .tttd ul {
        margin: 0;
        padding: 0;
        padding-left: 20px;
        list-style-type: disc; }
        .training-table-wrap .training-table .tttr .tttd ul ul {
          /*margin-left: 15px;*/
          padding-left: 0;
          list-style-type: none; }
    .training-table-wrap .training-table .tttr .bk-tr {
      text-align: left; }
    .training-table-wrap .training-table .tttr .col-1 {
      width: 66%; }
    .training-table-wrap .training-table .tttr .col-2, .training-table-wrap .training-table .tttr .col-3 {
      width: 33%;
      font-weight: bold !important; }
    .training-table-wrap .training-table .tttr .col-4 {
      width: 33%;
      text-align: left; }
      .training-table-wrap .training-table .tttr .col-4 .gc-button {
        margin-top: 0; }
    .training-table-wrap .training-table .tttr .ttdate, .training-table-wrap .training-table .tttr .tttime, .training-table-wrap .training-table .tttr .ttbook {
      padding-top: 50px; }
  .training-table-wrap .training-table .tttr:nth-child(even) {
    background-color: #f5f5f5; }
  .training-table-wrap .training-table .tttr:nth-child(odd) {
    background-color: #f9f9f9; }
  .training-table-wrap .training-table .tttr.header {
    background-color: #373739;
    overflow: auto; }
    .training-table-wrap .training-table .tttr.header .tttd {
      background-color: transparent; }
    .training-table-wrap .training-table .tttr.header h2 {
      font-weight: 700 !important;
      color: #ffffff;
      padding: 0;
      margin: 0;
      text-transform: uppercase;
      font-size: 16px; }

@media screen and (max-width: 600px) {
  .training-table-wrap .training-table .tttr .tttd {
    padding: 0;
    padding-bottom: 20px;
    text-align: center; }
    .training-table-wrap .training-table .tttr .tttd h2 {
      background-color: #373739;
      color: #ffffff;
      padding: 10px;
      font-weight: 400;
      font-size: 16px;
      margin-bottom: 10px; }
    .training-table-wrap .training-table .tttr .tttd p {
      padding-left: 20px;
      padding-right: 20px; }
    .training-table-wrap .training-table .tttr .tttd ul {
      padding-left: 0;
      list-style-type: none; }
  .training-table-wrap .training-table .tttr .col-1 {
    width: 100%;
    padding-bottom: 0; }
  .training-table-wrap .training-table .tttr .col-2, .training-table-wrap .training-table .tttr .col-3 {
    /*width: 50%;*/ }
  .training-table-wrap .training-table .tttr .col-2 {
    /*text-align: right;*/
    width: 100%; }
  .training-table-wrap .training-table .tttr .col-3 {
    /*text-align: left;*/
    /*width: 52%;*/ }
  .training-table-wrap .training-table .tttr .col-4 {
    width: 100%; }
  .training-table-wrap .training-table .tttr.header {
    display: none; } }
/*NINJA FORMS*/
.nf-form-content {
  width: 100%;
  max-width: 650px; }
  .nf-form-content .nf-after-field .nf-error-msg {
    font-size: 12px; }
  .nf-form-content .nf-field-container {
    margin-bottom: 15px; }

/*---------------------------
## TRAINING CALENDAR STYLING
---------------------------*/
.month-splitter {
  display: block;
  clear: both;
  width: 100%;
  /*background-color: red;*/
  /*background-color: #f9f9f9;*/
  overflow: auto;
  margin-bottom: 20px; }

.cal-month-title {
  /*background-color: $purple;*/
  color: #373739;
  /*padding: 15px;*/
  /*text-align: center;*/
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px; }

.cal-week-days .day {
  float: left;
  display: block;
  width: 20%;
  color: #ffffff;
  background-color: #373739;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold; }

.calendar-entries-wrapper {
  background-color: #f9f9f9;
  overflow: auto;
  clear: both; }

.cal-embedded-form {
  max-height: 700px;
  overflow: hidden;
  -webkit-transition: max-height 0.55s ease-out;
  -moz-transition: max-height 0.55s ease-out;
  -ms-transition: max-height 0.55s ease-out;
  -o-transition: max-height 0.55s ease-out;
  transition: max-height 0.55s ease-out; }

.cal-embedded-form.hidden {
  max-height: 0; }

.calendar-month-wrapper {
  overflow: auto; }
  .calendar-month-wrapper .cal-booking-btn {
    cursor: pointer;
    float: right;
    /*margin-top: 0; */ }
  .calendar-month-wrapper .cal-day-entry {
    float: left;
    width: 20%;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    min-height: 260px; }
    .calendar-month-wrapper .cal-day-entry .cal-entry-date {
      background-color: #f4f4f4;
      border-bottom: 1px solid #e5e5e5;
      padding: 10px 15px;
      font-weight: bold;
      font-size: 14px;
      min-height: 42px; }
    .calendar-month-wrapper .cal-day-entry .cal-entry-content {
      padding: 15px; }
      .calendar-month-wrapper .cal-day-entry .cal-entry-content p:nth-child(1) {
        margin-top: 0; }
      .calendar-month-wrapper .cal-day-entry .cal-entry-content p:last-child {
        margin-bottom: 0; }
  .calendar-month-wrapper .cal-day-entry:nth-child(5n+1) {
    /* or 5n+1 */
    border-left: 1px solid #e5e5e5; }

@media screen and (max-width: 920px) {
  .cal-week-days {
    display: none; }

  .calendar-entries-wrapper {
    /*border-top: 3px solid $purple;*/
    /*margin-top: -20px;*/ }

  .calendar-month-wrapper .cal-day-entry {
    float: left;
    clear: both;
    width: 100%;
    min-height: auto;
    border: 0;
    position: relative; }
    .calendar-month-wrapper .cal-day-entry .cal-entry-date {
      background-color: transparent;
      border: 0;
      padding: 15px 15px 0;
      font-size: 13px;
      position: absolute;
      left: 0;
      width: 30px; }
    .calendar-month-wrapper .cal-day-entry .cal-entry-content {
      margin-left: 38px;
      padding: 15px;
      min-height: 45px;
      border-left: 1px solid #e5e5e5; }
      .calendar-month-wrapper .cal-day-entry .cal-entry-content p:nth-child(1) {
        margin-top: 0; }
  .calendar-month-wrapper .cal-day-entry:nth-child(5n+1) {
    /* or 5n+1 */
    border: 0; }
  .calendar-month-wrapper .cal-day-entry:nth-child(even) {
    background-color: #f0f0f0; } }
/*BRANCHES*/
/*---------------------------
## CONTACT US
---------------------------*/
.form-select {
  /*display: none;*/ }

.ho-table, .branch-table {
  margin-top: 20px; }
  .ho-table .ho-col-1, .ho-table .ho-col-2, .ho-table .ho-col-3, .ho-table .branch-col-1, .ho-table .branch-col-2, .ho-table .branch-col-3, .branch-table .ho-col-1, .branch-table .ho-col-2, .branch-table .ho-col-3, .branch-table .branch-col-1, .branch-table .branch-col-2, .branch-table .branch-col-3 {
    display: block;
    width: 32%;
    float: left; }
    .ho-table .ho-col-1 h2, .ho-table .ho-col-2 h2, .ho-table .ho-col-3 h2, .ho-table .branch-col-1 h2, .ho-table .branch-col-2 h2, .ho-table .branch-col-3 h2, .branch-table .ho-col-1 h2, .branch-table .ho-col-2 h2, .branch-table .ho-col-3 h2, .branch-table .branch-col-1 h2, .branch-table .branch-col-2 h2, .branch-table .branch-col-3 h2 {
      color: #373739;
      font-size: 18px;
      font-weight: bold; }

/*HO TABLE*/
@media screen and (max-width: 600px) {
  .ho-table .ho-col-1, .ho-table .ho-col-2 {
    width: 48%;
    margin-right: 2%; }
  .ho-table .ho-col-3 {
    width: 100%; } }
/*BRANCH TABLE*/
@media screen and (max-width: 600px) {
  .branch-table .branch-col-1, .branch-table .branch-col-2, .branch-table .branch-col-3 {
    width: 48%;
    margin-right: 2%; } }
/*---------------------------
## INDENT CONTENT
---------------------------*/
.indent-content {
  padding-top: 50px;
  border-top: 1px solid #e5e5e5; }
  .indent-content .indent_content_list {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .indent-content .indent_content_list li.ind-content-item {
      overflow: auto;
      margin-bottom: 50px; }
      .indent-content .indent_content_list li.ind-content-item .ctitle {
        width: 21%;
        padding-right: 3%;
        display: block;
        float: left;
        text-transform: uppercase;
        color: #111111; }
        .indent-content .indent_content_list li.ind-content-item .ctitle h3 {
          margin-top: 0;
          margin-bottom: 0;
          font-weight: bold;
          font-size: 18px; }
        .indent-content .indent_content_list li.ind-content-item .ctitle .ind-hr {
          width: 50px;
          border: 0;
          border-top: 2px solid;
          float: left; }
      .indent-content .indent_content_list li.ind-content-item .ccontent {
        display: block;
        width: 79%;
        float: right; }
        .indent-content .indent_content_list li.ind-content-item .ccontent p:first-of-type {
          margin-top: 0; }
      .indent-content .indent_content_list li.ind-content-item .about-more {
        margin-top: 0; }
      .indent-content .indent_content_list li.ind-content-item ul {
        list-style-type: disc !important;
        list-style-position: outside;
        margin: 0;
        margin-bottom: 20px;
        margin-left: 40px;
        padding: 0; }
        .indent-content .indent_content_list li.ind-content-item ul li {
          margin-bottom: 5px; }

@media screen and (max-width: 750px) {
  .indent-content .indent_content_list li.ind-content-item {
    margin-bottom: 15px; }
    .indent-content .indent_content_list li.ind-content-item .ctitle {
      width: 100%;
      padding-right: 0;
      display: inline-block;
      float: none;
      /*text-transform: uppercase;*/
      /*color: $purple;*/ }
      .indent-content .indent_content_list li.ind-content-item .ctitle h3 {
        margin-top: 0;
        margin-bottom: 0;
        font-weight: bold;
        font-size: 18px; }
      .indent-content .indent_content_list li.ind-content-item .ctitle .ind-hr {
        display: none; }
    .indent-content .indent_content_list li.ind-content-item .ccontent {
      display: inline-block;
      width: 100%;
      float: none; }
      .indent-content .indent_content_list li.ind-content-item .ccontent p:first-of-type {
        margin-top: 1em; }
    .indent-content .indent_content_list li.ind-content-item ul {
      list-style-type: disc !important;
      /*list-style-position:inside;*/
      /*margin: 0;*/
      /*margin-left: 20px;*/
      padding: 0; }
      .indent-content .indent_content_list li.ind-content-item ul li {
        margin-bottom: 5px; } }

/*# sourceMappingURL=lncorp.css.map */
