@import url(bootstrap.min.css);
@import url(font-awesome.css);
/*Viewport---------------------------------------------------------*/
@-webkit-viewport {
  width: device-width; }
@-moz-viewport {
  width: device-width; }
@-ms-viewport {
  width: device-width; }
@-o-viewport {
  width: device-width; }
@viewport {
  width: device-width; }
/*START Helper Classes------------------------------------------*/
.alignleft {
  float: left;
  margin: 0 15px 15px 0; }

.alignright {
  float: right;
  margin: 0 0 15px 15px; }

.aligncenter {
  display: block;
  margin: 0 auto; }

.m-bottom {
  margin-bottom: 25px; }

.m-top {
  margin-top: 25px; }

.m-left {
  margin-left: 25px; }

.m-right {
  margin-right: 25px; }

.img-wrap {
  position: relative;
  overflow: hidden;
  z-index: 3;
  height: 250px;
  width: 100%;
  background: #ccc; }
  .img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 150%;
    min-width: 100%;
    z-index: 1; }

div.printfriendly {
  position: absolute;
  right: 0;
  top: -33px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  div.printfriendly {
    top: -55px; } }
@media only screen and (max-width: 480px) {
  div.printfriendly {
    top: -55px; } }
/*END Helper Classes-------------------------------------*/
/*START Buttons------------------------------------------*/
a.btn-1 {
  font-family: "Proxima Nova", sans-serif;
  background: #0057c7;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 100%;
  min-width: 180px;
  padding: 15px 5px;
  text-align: center;
  text-decoration: none !important;
  text-transform: capitalize; }
  a.btn-1:hover, a.btn-1:focus, a.btn-1:active {
    background: #00662e;
    text-decoration: none;
    color: #fff !important; }
a.btn-2 {
  font-family: "Proxima Nova", sans-serif;
  color: #2e323a !important;
  display: inline-block;
  font-size: 15px;
  border: 1px solid #ffffff;
  font-weight: 900;
  margin: 0 auto;
  max-width: 100%;
  min-width: 145px;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: 0.4s !important;
  background: white;
  background: -moz-linear-gradient(top, white 0%, #f6f6f6 47%, gainsboro 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(47%, #f6f6f6), color-stop(100%, gainsboro));
  background: -webkit-linear-gradient(top, white 0%, #f6f6f6 47%, gainsboro 100%);
  background: -o-linear-gradient(top, white 0%, #f6f6f6 47%, gainsboro 100%);
  background: -ms-linear-gradient(top, white 0%, #f6f6f6 47%, gainsboro 100%);
  background: linear-gradient(to bottom, white 0%, #f6f6f6 47%, gainsboro 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dcdcdc', GradientType=0 ); }
  a.btn-2:hover, a.btn-2:focus, a.btn-2:active {
    text-decoration: none;
    color: #fff !important; }
a.btn-3 {
  font-family: "Proxima Nova", sans-serif;
  background: #0057c7;
  border-radius: 4px;
  color: #fff !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  margin: 20px auto 0;
  max-width: 100%;
  min-width: 120px;
  padding: 8px 5px;
  text-align: center;
  text-decoration: none !important;
  text-transform: capitalize; }
  a.btn-3:hover, a.btn-3:focus, a.btn-3:active {
    background: #00662e;
    text-decoration: none;
    color: #fff !important; }
a.btn-plus {
  position: relative;
  color: #fff;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 3px solid #fff;
  background: #ffce1b;
  margin-left: 0;
  transition: 0.4s;
  -webkit-box-shadow: 0px 4px 0px 0px gainsboro;
  -moz-box-shadow: 0px 4px 0px 0px gainsboro;
  box-shadow: 0px 4px 0px 0px gainsboro;
  display: block;
  text-align: center;
  vertical-align: middle;
  padding: 9px; }
  a.btn-plus:hover {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    background: #727272; }

/*END Buttons-------------------------------------*/
/*START header------------------------------------------*/
body.fixed {
  padding-top: 136px;
  /* Chrome, Safari, Opera */
  /* Standard syntax */ }
  body.fixed header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
    -webkit-animation: hanimation 0.5s forwards ease-out;
    /* Chrome, Safari, Opera */
    animation: hanimation 0.5s forwards ease-out; }
    body.fixed header.header .top-social {
      display: none;
      transition: 0.4s; }
    body.fixed header.header section.navigation {
      padding: 0px; }
    body.fixed header.header #navigation ul li ul {
      margin: 0; }
@-webkit-keyframes hanimation {
  0% {
    top: -100%; }
  100% {
    top: 0px; } }
@keyframes hanimation {
  0% {
    top: -100%; }
  100% {
    top: 0px; } }
header.header {
  background: white;
  position: relative;
  width: 100%;
  z-index: 999; }
  header.header .textwidget {
    display: inline-block; }

.top-social {
  text-align: right;
  padding-top: 0px;
  background: #0057c7;
  font-size: 0px;
  position: relative; }

.space {
  height: 30px;
  border-bottom: 1px solid #cdc; }

.top-text {
  padding: 10px 20px 0 0px;
  float: left; }
  .top-text p {
    font-size: 12px;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 8px; }

.nl {
  display: inline-block;
  line-height: 1.2em;
  margin: 0px;
  vertical-align: middle;
  border-left: 1px solid rgba(255, 255, 255, 0.1); }
  .nl a {
    color: #ffffff;
    display: block;
    font-size: 13px;
    height: 36px;
    line-height: 1.2em;
    margin: 0;
    position: relative;
    transition: 0.4s;
    vertical-align: middle;
    width: 86px;
    padding: 11px;
    font-family: "Proxima Nova", sans-serif; }
    .nl a:hover {
      text-decoration: none;
      color: #ffce1b; }

ul.social {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  float: right;
  font-size: 0;
  margin-left: 10px;
  margin: 0;
  padding: 0;
  vertical-align: middle; }
  ul.social li {
    display: inline-block;
    line-height: 1.2em;
    margin: 0px;
    vertical-align: middle; }
    ul.social li a {
      color: #ffffff;
      display: block;
      font-size: 20px;
      height: 36px;
      line-height: 1.2em;
      margin: 0;
      position: relative;
      transition: 0.4s;
      vertical-align: middle;
      width: 30px; }
      ul.social li a i {
        font-size: 13px;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        position: absolute;
        top: 50%; }
      ul.social li a:hover {
        color: #ffce1b; }
        ul.social li a:hover::before {
          color: #adaaaa; }
      ul.social li a::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin: 0;
        width: 1px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1); }

.nav-right {
  width: 64%;
  float: right; }

/*END header-------------------------------------*/
/*START Main Navigation------------------------------------------*/
.navbar.navbar-default {
  background: transparent;
  margin-bottom: 0;
  border: none;
  padding-top: 10px; }

.navbar-brand {
  float: left;
  width: 36%;
  position: relative;
  height: 60px; }
  .navbar-brand img {
    position: absolute;
    top: 45%;
    left: 49%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 110%; }

#navigation {
  padding-right: 0px;
  padding-left: 0px;
  font-size: 1.286rem; }
  #navigation .login {
    position: absolute;
    width: 125px; }
    #navigation .login a {
      font-family: 'Lato', sans-serif;
      background: #b11618;
      border-radius: none;
      color: #fff;
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      margin: 0 auto;
      max-width: 100%;
      min-width: 135px;
      padding: 6px 5px;
      text-align: center;
      text-decoration: none !important;
      text-transform: capitalize; }
      #navigation .login a:hover, #navigation .login a:focus, #navigation .login a:active {
        background: #770305;
        text-decoration: none;
        color: #fff !important; }
  #navigation ul {
    padding: 0px 0 0px 0;
    text-align: right;
    width: calc(100% - 126px);
    font-size: 0;
    float: right; }
    #navigation ul li, #navigation ul li.open {
      display: inline-block;
      float: none;
      vertical-align: middle; }
      #navigation ul li:last-child a::after, #navigation ul li.open:last-child a::after {
        content: none; }
      #navigation ul li:last-child ul, #navigation ul li.open:last-child ul {
        right: 0;
        left: unset;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0); }
        #navigation ul li:last-child ul li a, #navigation ul li.open:last-child ul li a {
          border-radius: 0; }
        #navigation ul li:last-child ul li ul, #navigation ul li.open:last-child ul li ul {
          right: auto;
          left: -100%; }
        #navigation ul li:last-child ul li:last-child ul, #navigation ul li.open:last-child ul li:last-child ul {
          right: auto;
          left: -100%; }
      #navigation ul li.active a, #navigation ul li.open.active a {
        background: #00662e;
        color: #fff;
        font-weight: 900; }
        #navigation ul li.active a::after, #navigation ul li.open.active a::after {
          content: none; }
      #navigation ul li.active ul li::after, #navigation ul li.open.active ul li::after {
        content: none; }
      #navigation ul li.active ul li a, #navigation ul li.open.active ul li a {
        background: #00662e;
        font-size: 1.143rem;
        color: #fff;
        border-radius: 0px;
        margin-top: 0;
        font-weight: 500; }
        #navigation ul li.active ul li a:hover, #navigation ul li.active ul li a:focus, #navigation ul li.active ul li a:active, #navigation ul li.open.active ul li a:hover, #navigation ul li.open.active ul li a:focus, #navigation ul li.open.active ul li a:active {
          background: #ffce1b;
          color: #fff; }
        #navigation ul li.active ul li a::before, #navigation ul li.active ul li a::after, #navigation ul li.open.active ul li a::before, #navigation ul li.open.active ul li a::after {
          content: none !important; }
      #navigation ul li.active ul li:last-child ul, #navigation ul li.open.active ul li:last-child ul {
        left: 100%;
        top: 0px;
        right: auto; }
      #navigation ul li a, #navigation ul li.open a {
        font-family: "Proxima Nova", sans-serif;
        background: transparent;
        border-radius: 0;
        color: #2e323a;
        display: block;
        font-size: 14px;
        font-weight: 500;
        min-width: 92px;
        padding: 15px 5px 25px;
        position: relative;
        position: relative;
        text-align: center;
        text-transform: none;
        transition: 0.4s;
        white-space: normal; }
        #navigation ul li a:hover, #navigation ul li a:focus, #navigation ul li a:active, #navigation ul li.open a:hover, #navigation ul li.open a:focus, #navigation ul li.open a:active {
          color: #fff;
          background: #00662e; }
        #navigation ul li a::after, #navigation ul li.open a::after {
          content: "";
          background: #2e323a;
          height: 11px;
          width: 1px;
          position: absolute;
          right: 0;
          top: 20px;
          display: inline-block; }
      #navigation ul li ul, #navigation ul li.open ul {
        text-align: left;
        min-height: 0;
        border: none;
        padding: 0;
        background: #00662e; }
        #navigation ul li ul li, #navigation ul li.open ul li {
          display: block; }
          #navigation ul li ul li::after, #navigation ul li.open ul li::after {
            content: none; }
          #navigation ul li ul li a, #navigation ul li.open ul li a {
            border-top: 1px solid rgba(225, 225, 225, 0.8);
            padding: 10px 15px;
            font-size: 1.143rem;
            color: #fff;
            margin-top: 0;
            border-radius: 0; }
            #navigation ul li ul li a::before, #navigation ul li ul li a::after, #navigation ul li.open ul li a::before, #navigation ul li.open ul li a::after {
              content: none; }
            #navigation ul li ul li a:hover, #navigation ul li ul li a:focus, #navigation ul li ul li a:active, #navigation ul li.open ul li a:hover, #navigation ul li.open ul li a:focus, #navigation ul li.open ul li a:active {
              background: #ffce1b;
              color: #fff;
              margin-top: 0;
              border-radius: 0; }
            #navigation ul li ul li a::after, #navigation ul li.open ul li a::after {
              content: none !important; }
          #navigation ul li ul li:first-child a, #navigation ul li.open ul li:first-child a {
            border-top: none;
            border-radius: 0; }
            #navigation ul li ul li:first-child a::after, #navigation ul li.open ul li:first-child a::after {
              content: ""; }
          #navigation ul li ul li:last-child a, #navigation ul li.open ul li:last-child a {
            border-radius: 0; }
            #navigation ul li ul li:last-child a::after, #navigation ul li.open ul li:last-child a::after {
              content: none; }
          #navigation ul li ul li:last-child ul, #navigation ul li.open ul li:last-child ul {
            left: 100%;
            top: 0px;
            right: auto; }

.dropdown-menu {
  display: block;
  border-radius: 0;
  padding: 0px;
  position: absolute;
  display: none;
  box-shadow: none;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%; }
  .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0px;
    display: none;
    -webkit-transform: translate(0%, 0);
    -moz-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    transform: translate(0%, 0); }

.dropdown-btn {
  display: none; }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .space {
    height: 0px;
    border-bottom: 1px solid #cdc; }

  .navbar-brand {
    width: 26%; }

  .navbar-brand img {
    top: 45%;
    left: 49%;
    max-width: 108%; }

  .nav-right {
    width: 75%;
    float: right; }

  #navigation .login {
    position: relative;
    width: 90px;
    float: left; }

  #navigation .login a {
    min-width: 92px; }

  #navigation ul {
    padding: 0px 0 0px 0;
    text-align: right;
    width: calc(100% - 90px);
    font-size: 0;
    float: right; }

  #navigation ul li a, #navigation ul li.open a {
    min-width: 90px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .space {
    height: 0px;
    border-bottom: 1px solid #cdc; }

  .navbar-brand {
    width: 26%; }

  .navbar-brand img {
    top: 45%;
    left: 49%;
    max-width: 108%; }

  .nav-right {
    width: 75%;
    float: right; }

  #navigation .login {
    position: relative;
    width: 90px;
    float: left; }

  #navigation .login a {
    min-width: 94px; }

  #navigation ul {
    padding: 0px 0 0px 0;
    text-align: right;
    width: calc(100% - 90px);
    font-size: 0;
    float: right; }

  #navigation ul li a, #navigation ul li.open a {
    min-width: 65px;
    font-size: 12px; } }
@media only screen and (max-width: 767px) {
  header.header {
    position: relative; }

  #navigation {
    height: 300px;
    overflow-x: scroll; }

  header.fixed #navigation {
    height: 355px;
    overflow-x: scroll; }

  .navbar-brand {
    width: 220px;
    height: 75px; }

  .navbar-brand img {
    left: 55%; }

  header.header.fixed .navbar-brand {
    height: 50px; }

  .nav-right {
    width: 100%;
    float: none;
    height: 60px; }

  .navbar-brand {
    height: 55px; }

  .navbar.navbar-default .container {
    padding: 0; }

  .navbar-default .navbar-toggle {
    border-radius: 0px;
    border-color: #0057c7;
    background: #fff;
    margin-top: 15px; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:active {
      background: #0057c7;
      border-color: #0057c7; }
      .navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar, .navbar-default .navbar-toggle:active .icon-bar {
        background: #fff; }
    .navbar-default .navbar-toggle .icon-bar {
      background: #0057c7; }

  .navbar-nav {
    margin: 0; }

  #navigation ul {
    text-align: center;
    padding: 0px;
    margin-top: 0;
    width: 100%; }

  #navigation ul li {
    display: block;
    border-bottom: 1px solid #0057c7;
    background: #ffffff;
    color: #727272; }

  #navigation ul li:last-child a {
    margin-left: 0; }

  .dropdown-btn {
    display: none; }

  #navigation ul li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    left: auto;
    display: block;
    background: transparent;
    border: 1px solid #0057c7;
    margin-top: -45px;
    padding: 15px;
    background: white;
    color: #015bae; }
    #navigation ul li.menu-item-has-children .dropdown-btn:hover, #navigation ul li.menu-item-has-children .dropdown-btn:focus, #navigation ul li.menu-item-has-children .dropdown-btn:active {
      background: #0057c7;
      color: #fff; }

  #navigation ul li ul {
    max-height: unset;
    background: #0057c7;
    text-align: center;
    margin-top: 0; }
    #navigation ul li ul li {
      border-bottom: 1px solid #0057c7; }
      #navigation ul li ul li ul {
        background: #01459e; }

  .navbar-collapse {
    overflow-y: none; }

  #navigation ul > li.menu-item-has-children > .dropdown-menu .dropdown-btn {
    display: none; }
  #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    left: auto;
    margin-top: -34px;
    display: block;
    background: #fff none repeat scroll 0% 0%;
    border: 1px solid #0057c7;
    color: #0057c7;
    padding: 10px;
    background: white;
    color: #015bae; }
    #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-btn:hover, #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-btn:focus, #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-btn:active {
      background: #0057c7;
      color: #fff; }
  #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-menu .dropdown-btn {
    display: none; }
  #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-menu li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    left: auto;
    margin-top: -36px;
    display: block;
    background: #fff none repeat scroll 0% 0%;
    border: 1px solid #0057c7;
    color: #0057c7;
    padding: 6px 13px 6px 12px; }
    #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-menu li.menu-item-has-children .dropdown-btn:hover, #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-menu li.menu-item-has-children .dropdown-btn:focus, #navigation ul > li.menu-item-has-children > .dropdown-menu li.menu-item-has-children .dropdown-menu li.menu-item-has-children .dropdown-btn:active {
      background: #0057c7;
      color: #fff; }

  .dropdown-menu .dropdown-menu {
    left: 0;
    top: unset; }

  #navigation ul li::after, #navigation ul li.open::after {
    content: none; }

  #navigation ul li a, #navigation ul li.open a {
    padding: 17px 15px;
    margin-top: 0; }

  #navigation ul li ul li a {
    color: #727272; }

  #navigation ul li ul li ul li a {
    color: #fff; }

  #navigation ul li ul li ul li {
    background-color: #0057c7 !important;
    color: #fff !important; }
    #navigation ul li ul li ul li:hover {
      background-color: #fff !important; }

  header.header.fixed #navigation ul li a, header.header.fixed #navigation ul li.open a {
    padding: 15px 56px; }

  .navbar-collapse.in {
    overflow-y: unset; }

  .navbar-brand img {
    top: 65%;
    left: 50%;
    max-width: 100%; }

  .navbar.navbar-default {
    padding-top: 0px; }

  .space {
    display: none; }

  .navbar-brand {
    height: 50px; }

  #navigation .login a {
    display: block;
    padding: 17px 5px; }

  #navigation .login {
    position: relative;
    width: 100%; } }
@media only screen and (max-width: 480px) {
  .navbar-brand img {
    left: 50%; }

  header.header.fixed .navbar-brand {
    width: 222px;
    height: 50px; }

  #navigation ul li a, #navigation ul li.open a {
    padding-left: 25px;
    padding-right: 25px; }

  ul.social {
    width: 61%;
    right: 0;
    margin: 0 auto !important;
    border: none;
    text-align: center; }

  .nl {
    border-left: 0px solid rgba(255, 255, 255, 0.1); }

  .top-social {
    text-align: center; }

  ul.social li a {
    margin: 0 auto !important; }

  ul.social li a::before {
    content: none; }

  ul.social li a i {
    font-size: 20px; }

  .top-text {
    padding-top: 20px;
    float: none;
    text-align: center; } }
@media only screen and (max-width: 320px) {
  header.header.fixed .navbar-brand {
    width: 200px; } }
/*END Main Navigation-------------------------------------*/
/*STRART Search Widget------------------------------------------*/
div.search {
  font-family: "Proxima Nova", sans-serif;
  border-left: 1px solid rgba(226, 226, 226, 0.4);
  display: inline-block;
  float: right;
  height: 36px;
  margin-right: 57px;
  padding-top: 0px;
  position: relative;
  width: 140px; }
  div.search .screen-reader-text {
    display: none; }
  div.search #searchform {
    opacity: 1;
    transition: 0.4s;
    visibility: visible;
    width: 140px; }
  div.search .fa-search {
    background: #0057c7;
    border-left: 1px solid rgba(125, 125, 125, 0.8);
    border-right: 1px solid rgba(125, 125, 125, 0.8);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    height: 36px;
    left: auto;
    padding-right: 10px;
    padding-top: 8px;
    position: absolute;
    right: -36px;
    text-decoration: none;
    top: 0px;
    width: 35px;
    z-index: 58; }
    div.search .fa-search.s-hover {
      text-decoration: none;
      color: #ffce1b;
      border-color: #727272;
      background: #727272;
      color: #fff; }
  div.search .fa-times {
    color: #ffce1b;
    cursor: pointer;
    display: none;
    font-size: 14px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.3s; }
    div.search .fa-times:hover {
      display: none;
      text-decoration: none;
      opacity: 1; }
  div.search #searchsubmit {
    background: transparent !important;
    border-radius: 0;
    border: none;
    color: #fff;
    font-size: 12px;
    height: 36px;
    padding: 0;
    position: absolute;
    right: -36px;
    text-indent: -9999px;
    text-transform: uppercase;
    transition: 0.4s;
    vertical-align: middle;
    width: 35px;
    z-index: 11; }
    div.search #searchsubmit:hover {
      background: transparent;
      color: transparent; }
  div.search #s {
    background: rgba(78, 78, 78, 0.4);
    border-right: none;
    border: none;
    box-sizing: border-box;
    color: #8d8d8d;
    font-size: 12px;
    height: 35px;
    margin: 0 !important;
    padding: 0 0 0 4px;
    vertical-align: middle;
    width: 100%; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search #searchform {
    width: 140px; }

  .search #s {
    width: 105px; } }
@media only screen and (max-width: 767px) {
  .search .fa-search {
    padding-left: 0px; } }
@media only screen and (max-width: 480px) {
  .top-social .search {
    border-left: none !important;
    float: none !important;
    width: 85% !important; }

  .search #s {
    padding: 0px 0px 0px 15px !important; }

  .search #searchform {
    width: 100% !important; }

  .search #s {
    width: 90% !important; }

  .search .fa-search {
    margin-right: 12px;
    margin-left: 0 !important; }

  div.search #searchsubmit {
    right: -24px; } }
/*END Search Widget------------------------------------------*/
/*START Google Translate Dropdown-List------------------------------------------*/
.translate {
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
  margin: 0 20px; }
  .translate h3 {
    display: none; }
  .translate .skiptranslate {
    font-size: 0;
    line-height: 0; }
    .translate .skiptranslate .goog-te-combo {
      font-size: 14px;
      line-height: 1em;
      color: #727272;
      margin-top: -7px; }
    .translate .skiptranslate span {
      display: none; }
  .translate ul {
    padding: 0; }
    .translate ul li {
      display: inline-block; }
      .translate ul li a::before {
        content: none; }
  .translate #flags {
    display: none; }

/*END Google Translate Dropdown-List------------------------------------------*/
/*START Translate Fixed Bottom----------------------------------------*/
#glt-translate-trigger {
  background: #0057c7;
  background: -webkit-linear-gradient(#0057c7, rgba(0, 87, 199, 0.2));
  background: -o-linear-gradient(#0057c7, rgba(0, 87, 199, 0.2));
  background: -moz-linear-gradient(#0057c7, rgba(0, 87, 199, 0.2));
  background: linear-gradient(#0057c7, rgba(0, 87, 199, 0.2));
  font-family: lato-l;
  font-size: 1rem; }

/*END Translate Fixed Bottom----------------------------------------*/
/*START Font Resizer------------------------------------------*/
.font-resizer {
  display: inline-block;
  vertical-align: middle;
  text-align: center; }
  .font-resizer.active p {
    background: #0057c7; }
  .font-resizer.active #controls {
    height: 80px; }
  .font-resizer p {
    width: 40px;
    height: 40px;
    background: transparent;
    transition: 0.4s;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    margin: 0; }
    .font-resizer p span {
      font-size: 22px; }
  .font-resizer #controls {
    vertical-align: middle;
    position: absolute;
    overflow: hidden;
    height: 0;
    background: #0057c7;
    width: 40px;
    z-index: 10;
    transition: 0.4s;
    margin-top: 5px; }
    .font-resizer #controls p {
      display: inline-block;
      vertical-align: middle;
      height: 25px; }
  .font-resizer #large, .font-resizer #small {
    background: #0057c7;
    color: #fff;
    width: 40px;
    display: block;
    position: relative;
    font-size: 22px;
    height: 40px;
    padding: 5px 0;
    z-index: 10;
    text-align: center; }
    .font-resizer #large:hover, .font-resizer #small:hover {
      background: #01459e;
      text-decoration: none; }
    .font-resizer #large i, .font-resizer #small i {
      font-size: 10px;
      position: absolute; }

/*END Font Resizer------------------------------------------*/
/*START Slider--------------------------------------------------*/
.slider-widget {
  position: relative;
  overflow: hidden; }
  .slider-widget .slider-a:after {
    content: none;
    display: block;
    height: 100%;
    width: 1920px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );
    /* IE6-9 */ }
  .slider-widget .slider-a .slotholder::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../images/slider-shadow.png") repeat-x;
    background-size: auto 100%;
    z-index: 0; }
  .slider-widget .caption-a {
    text-align: left;
    z-index: 3; }
    .slider-widget .caption-a h2 {
      color: #fff;
      font-size: 55px;
      font-family: "Proxima Nova", sans-serif;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1em;
      text-transform: uppercase;
      margin-top: 0px; }
    .slider-widget .caption-a h3 {
      font-size: 55px;
      color: #fff;
      font-family: "Proxima Nova", sans-serif;
      font-weight: 700;
      margin-bottom: 0px; }
    .slider-widget .caption-a p {
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2em;
      margin-bottom: 30px;
      width: 70%; }

@media only screen and (max-width: 767px) {
  .slider-widget .caption-a h2 {
    font-size: 2rem !important;
    line-height: 2rem !important; }

  .slider-widget .caption-a p {
    font-size: 1.3rem !important;
    line-height: 1.8rem !important; }

  .slider-widget .caption-a a.btn-1 {
    margin-top: 10px !important;
    min-width: 155px !important;
    font-size: 15px !important; } }
@media only screen and (max-width: 480px) {
  .slider-widget .caption-a h2 {
    font-size: 1.6rem !important;
    line-height: 1.5rem !important; }

  .slider-widget .caption-a p {
    font-size: 1rem !important;
    line-height: 1rem !important; }

  .slider-widget .caption-a a.btn-1 {
    margin-top: 10px !important;
    min-width: 155px !important;
    font-size: 15px !important; } }
/*END Slider--------------------------------------------------*/
/*START Events--------------------------------------------------*/
.news-widget {
  font-family: "Proxima Nova", sans-serif;
  background: #f4f7f9;
  padding: 150px 0 50px;
  position: relative; }
  .news-widget .img-wrap {
    height: 155px; }
    .news-widget .img-wrap img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
    .news-widget .img-wrap a {
      position: absolute;
      z-index: 3;
      top: -25px;
      left: -25px;
      color: #FFF !important;
      font-size: 2rem;
      line-height: 1em;
      transition: 0.4s; }
  .news-widget .info {
    background: #fff;
    border-top: none;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    padding: 30px 15px;
    position: relative;
    text-align: center;
    text-align: left;
    z-index: 4;
    -webkit-box-shadow: 0px 2px 11px 1px #c9cccd;
    -moz-box-shadow: 0px 2px 11px 1px #c9cccd;
    box-shadow: 0px 2px 11px 1px #c9cccd; }
    .news-widget .info h3 {
      font-weight: 600;
      text-transform: none;
      font-size: 17px;
      color: #2e323a;
      margin: 1em 0 0 0; }
    .news-widget .info p {
      font-size: 12px;
      margin-bottom: 20px;
      line-height: 1.8em;
      font-weight: 400; }
    .news-widget .info time {
      display: block;
      color: #0057c7;
      font-size: 13px;
      font-weight: 600; }
      .news-widget .info time::after {
        content: "";
        background: #e1e1e1;
        height: 1px;
        widows: 100%;
        display: block;
        margin: 10px 0 20px; }
      .news-widget .info time span {
        color: #666d7a; }
    .news-widget .info a.big-plus {
      position: absolute;
      top: -40px;
      left: 50%;
      border-radius: 50%;
      height: 75px;
      width: 75px;
      border: 3px solid #fff;
      background: #ffce1b;
      margin-left: -38px;
      transition: 0.4s;
      -webkit-box-shadow: 0px 4px 0px 0px gainsboro;
      -moz-box-shadow: 0px 4px 0px 0px gainsboro;
      box-shadow: 0px 4px 0px 0px gainsboro; }
      .news-widget .info a.big-plus:hover {
        -webkit-transform: scale(0.9, 0.9);
        -moz-transform: scale(0.9, 0.9);
        -ms-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        background: #727272; }
    .news-widget .info a {
      color: #0057c7;
      font-weight: 600; }
      .news-widget .info a:hover {
        color: #727272;
        text-decoration: none; }
  .news-widget #news-slider .item {
    text-align: center;
    font-size: 0; }
  .news-widget #news-slider .col-ib-3 {
    width: 25%;
    display: inline-block;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    vertical-align: top; }
  .news-widget #news-slider .carousel-inner > .item {
    width: 98%;
    margin: 0 auto; }
  .news-widget #news-slider .carousel-control {
    opacity: 1;
    width: 20px;
    background: transparent !important;
    margin: 0px -50px; }
  .news-widget #news-slider .fa {
    width: 43px;
    height: 43px;
    font-size: 25px;
    margin-top: -50px;
    opacity: 0.4;
    padding: 9px 14px;
    color: #fff;
    border-radius: 50%;
    background: #d3d6d8; }
  .news-widget #news-slider .carousel-indicators {
    display: none;
    bottom: 0px; }
    .news-widget #news-slider .carousel-indicators li {
      border: none;
      background: #fff;
      margin-left: 3px;
      margin-right: 3px; }
      .news-widget #news-slider .carousel-indicators li.active {
        background: #0057c7; }

/*END Events------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .news-widget #news-slider .col-ib-3 {
    width: 50%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .carousel {
    width: 60%;
    margin: 0 auto; }

  .news-widget #news-slider .col-ib-3 {
    width: 50%; } }
@media only screen and (max-width: 767px) {
  .carousel {
    width: 60%;
    margin: 0 auto; }

  .news-widget #news-slider .col-ib-3 {
    width: 100%; } }
@media only screen and (max-width: 480px) {
  .carousel {
    width: 75%;
    margin: 0 auto; }

  .news-widget #news-slider .col-ib-3 {
    width: 100%; } }
/*START Calendar------------------------------------------*/
.tribe-mini-calendar-event {
  border: none; }

.tribe-events-adv-list-widget .type-tribe_events, .tribe-mini-calendar-list-wrapper .type-tribe_events {
  margin: 0px 5%;
  padding: 0px;
  width: 90%; }

.tribe-mini-calendar-wrapper {
  background: #0057c7;
  color: #fff;
  padding: 0;
  font-family: lato-r;
  border-bottom: 6px solid #01459e; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-past {
    opacity: 1; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-othermonth span.tribe-mini-calendar-no-event {
    color: #727272; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar-nav {
    border: none;
    display: table-caption;
    padding: 0 0 10px 0; }
    .tribe-mini-calendar-wrapper .tribe-mini-calendar-nav td {
      background: transparent;
      border: none; }
    .tribe-mini-calendar-wrapper .tribe-mini-calendar-nav span {
      font-size: 24px; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar th {
    background: #fff;
    border: none;
    font-size: 12px;
    text-transform: capitalize;
    padding: 20px 0px 15px;
    letter-spacing: 2px;
    color: #727272; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar thead {
    background: transparent; }
  .tribe-mini-calendar-wrapper .tribe-events-has-events:hover {
    background: transparent; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-past {
    color: #727272;
    background: transparent; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar td {
    border: none;
    font-size: 13px;
    background: transparent;
    padding-top: 10px; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-othermonth {
    background: transparent; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a {
    position: relative;
    background: #fff;
    width: 35px;
    height: 35px;
    z-index: 1;
    border-radius: 50%;
    padding-top: 12px;
    margin: -8px auto 0;
    color: #727272;
    font-size: 13px; }
    .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a:hover {
      background: transparent; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar-event .list-info h2 {
    text-align: left;
    padding: 0;
    margin: 0; }
  .tribe-mini-calendar-wrapper .tribe-mini-calendar .tribe-events-has-events div[id*="daynum-"] a::before {
    content: none; }

.tribe-mini-calendar-list-wrapper .tribe-mini-calendar-today {
  background: transparent; }

.tribe-mini-calendar td.tribe-events-has-events.tribe-events-present, .tribe-mini-calendar td.tribe-events-has-events.tribe-mini-calendar-today {
  background-color: transparent; }

.tribe-mini-calendar-list-wrapper .tribe-mini-calendar-event .list-date {
  background: #0057c7; }
  .tribe-mini-calendar-list-wrapper .tribe-mini-calendar-event .list-date .list-dayname {
    font-size: 11px;
    letter-spacing: 1px;
    background: #0057c7;
    color: #fff;
    border: solid 1px #727272;
    border-bottom: none; }
  .tribe-mini-calendar-list-wrapper .tribe-mini-calendar-event .list-date .list-daynumber {
    background: #727272;
    color: #0057c7; }
.tribe-mini-calendar-list-wrapper .tribe-mini-calendar-event .list-info .tribe-events-title a {
  color: #fff; }

/*END Calendar------------------------------------------*/
/*START Events--------------------------------------------------*/
.events-widget {
  text-align: left; }
  .events-widget .day, .events-widget .date {
    font-size: 2rem;
    line-height: 1.5em;
    text-transform: uppercase;
    display: block;
    text-align: center;
    height: 60px;
    font-weight: 900; }
  .events-widget .day {
    background: #0057c7;
    color: #fff;
    line-height: 2.2em;
    margin-top: 0px; }
  .events-widget .date {
    margin-bottom: 15px; }
  .events-widget .date, .events-widget .date a {
    font-size: 2.786rem;
    background: #01459e;
    color: #fff;
    cursor: pointer; }
    .events-widget .date:hover, .events-widget .date a:hover {
      background: #01459e;
      text-decoration: none; }
  .events-widget h3 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900; }
  .events-widget time, .events-widget address, .events-widget p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.01em; }
    .events-widget time strong, .events-widget address strong, .events-widget p strong {
      color: #0057c7;
      font-weight: unset; }
  .events-widget time {
    color: #ffce1b;
    font-size: 12px; }
    .events-widget time span {
      color: #fff; }
  .events-widget hr {
    border-color: #d6d6d6;
    margin: 10px 0 10px; }
  .events-widget .col-md-3 {
    padding: 0; }
  .events-widget .box-events {
    color: #fff;
    margin-bottom: 40px; }
    .events-widget .box-events::before, .events-widget .box-events::after {
      content: " ";
      display: table; }
    .events-widget .box-events::after {
      clear: both; }
    .events-widget .box-events .col-md-9 {
      padding-right: 0; }
    .events-widget .box-events a {
      display: block;
      color: white;
      margin: 15px 0 0px; }
      .events-widget .box-events a:hover {
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none; }
  .events-widget .carousel-indicators {
    bottom: -50px; }
    .events-widget .carousel-indicators li {
      border: none;
      background: #fff;
      margin-left: 3px;
      margin-right: 3px; }
      .events-widget .carousel-indicators li.active {
        background: #ffce1b; }

/*END Events------------------------------------------*/
/*START TRIBE EVENTS------------------------------------*/
#tribe-events .tribe-events-event-meta .column, #tribe-events .tribe-events-event-meta .tribe-events-meta-group {
  padding: 0px 0%;
  width: 100%; }
#tribe-events .tribe-events-schedule {
  margin: 0em 0px 1.5em; }
#tribe-events h1 {
  margin-bottom: 0; }
#tribe-events h2 {
  margin-top: 0;
  font-size: 1.786rem; }
#tribe-events .tribe-events-event-image img {
  float: left;
  margin: 0 15px 15px 0; }
#tribe-events a {
  color: #0057c7; }
  #tribe-events a:hover {
    text-decoration: underline; }
#tribe-events dd.tribe-venue {
  text-transform: uppercase; }
#tribe-events .tribe-events-button, #tribe-events #tribe-bar-form .tribe-bar-submit input[type="submit"] {
  background: #00662e;
  transition: 0.4s; }
  #tribe-events .tribe-events-button:hover, #tribe-events #tribe-bar-form .tribe-bar-submit input[type="submit"]:hover {
    background: #a0032f; }
#tribe-events .tribe-events-calendar thead th {
  background: #0057c7;
  border-color: #0057c7; }
#tribe-events .tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"], #tribe-events .tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"] > a {
  background: #696969; }
#tribe-events #tribe-events-content .tribe-events-calendar td.tribe-events-othermonth {
  background: #ebe8e8; }
#tribe-events #tribe-events-content .tribe-events-calendar td {
  background: #ebe8e8; }
#tribe-events .tribe-events-month-event-title a {
  color: #7b7b7b; }
#tribe-events .tribe-events-button, #tribe-events #tribe-events .tribe-events-button:hover, #tribe-events #tribe_events_filters_wrapper input[type="submit"], #tribe-events .tribe-events-button, #tribe-events .tribe-events-button.tribe-active:hover, #tribe-events .tribe-events-button.tribe-inactive, #tribe-events .tribe-events-button:hover, #tribe-events .tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"], #tribe-events .tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"] > a {
  background-color: #e37818; }
#tribe-events #tribe-events-content .tribe-events-calendar td:hover {
  background: #fff !important; }
  #tribe-events #tribe-events-content .tribe-events-calendar td:hover div[id*="tribe-events-daynum-"], #tribe-events #tribe-events-content .tribe-events-calendar td:hover div[id*="tribe-events-daynum-"] a {
    background: #e37818; }
#tribe-events #tribe-events-content .tribe-events-tooltip h4, #tribe-events #tribe_events_filters_wrapper .tribe_events_slider_val, #tribe-events .single-tribe_events a.tribe-events-gcal, #tribe-events .single-tribe_events a.tribe-events-ical {
  color: #ffce1b; }
#tribe-events .tribe-events-sub-nav a {
  color: #727272;
  font-weight: 300; }

.single-tribe_events .tribe-events-event-meta {
  background: transparent;
  border: none; }

.single-tribe_events .tribe-events-venue-map {
  margin: 20px 0 2% 0px;
  width: 100%; }

.tribe-events-single-section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  margin-top: 3px; }

#tribe-bar-form {
  background: #FFF;
  border: 1px solid #e4e4e4; }

#tribe-bar-collapse-toggle {
  background: #FFF; }

.tribe-events-list .tribe-events-event-cost span {
  font-weight: 400;
  color: #fff;
  background: #0057c7;
  border: none;
  padding: 10px 30px; }

.tribe-events-loop h2::after {
  content: none; }

/*END TRIBE EVENTS------------------------------------*/
/*START Sign Up--------------------------------------------------*/
.sign-up-widget {
  background: #265ea7;
  padding: 50px 25px;
  text-align: center; }
  .sign-up-widget .gform_title {
    display: none; }
  .sign-up-widget h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: capitalize; }
    .sign-up-widget h2::before {
      content: "";
      background: #fff;
      display: block;
      height: 5px;
      width: 38px;
      margin: 0 auto !important;
      top: -14px;
      left: 0;
      position: relative; }
  .sign-up-widget p {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400; }
  .sign-up-widget .gform_wrapper {
    width: 50%;
    margin: 35px 25% 0; }
    .sign-up-widget .gform_wrapper .gform_body {
      width: 73%;
      display: inline-block;
      vertical-align: top; }
      .sign-up-widget .gform_wrapper .gform_body ul.gform_fields {
        padding-left: 0; }
        .sign-up-widget .gform_wrapper .gform_body ul.gform_fields li.gfield {
          list-style-type: none;
          padding-right: 0;
          margin-top: 0; }
          .sign-up-widget .gform_wrapper .gform_body ul.gform_fields li.gfield .gfield_label {
            display: none; }
          .sign-up-widget .gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container {
            margin: 0 !important; }
            .sign-up-widget .gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container input {
              background: transparent;
              border-radius: 0px;
              border: 1px solid #a9a9a9;
              font-family: "Proxima Nova", sans-serif;
              height: 55px;
              width: 100%;
              color: #383e48;
              font-weight: 600;
              padding: 0 10px;
              font-size: 13px; }
    .sign-up-widget .gform_wrapper .gform_footer {
      width: 24%;
      display: inline-block;
      text-align: right;
      margin: 0;
      padding: 0;
      margin-left: -4px; }
      .sign-up-widget .gform_wrapper .gform_footer .gform_button {
        background: #00662e;
        height: 55px;
        width: 100%;
        border: none;
        text-align: center;
        color: #fff;
        text-transform: capitalize;
        transition: 0.4s;
        font-size: 15px;
        font-weight: 600; }
        .sign-up-widget .gform_wrapper .gform_footer .gform_button:hover {
          background: #ffce1b;
          color: #fff; }
    .sign-up-widget .gform_wrapper .gfield_description {
      display: none; }
  .sign-up-widget .gform_wrapper.gf_browser_chrome .gform_body {
    width: 74% !important; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sign-up-widget .gform_wrapper {
    width: 70%;
    margin: 50px 15% 0px; } }
@media only screen and (max-width: 767px) {
  .sign-up-widget .gform_wrapper {
    width: 90%;
    margin: 50px 5% 0px; }

  .sign-up-widget .gform_wrapper .gform_body {
    width: 100%; }

  .sign-up-widget .gform_wrapper .gform_footer {
    margin: 5px 0; } }
@media only screen and (max-width: 480px) {
  .sign-up-widget .gform_wrapper .gform_footer {
    width: 100%;
    margin: 0; }

  .sign-up-widget h2 {
    font-size: 26px; } }
/*END Sign Up------------------------------------------*/
/*START Social Widget--------------------------------------------------*/
.social-widget {
  padding: 25px 0px 0; }
  .social-widget .social-title {
    padding: 0;
    text-align: center;
    display: block;
    margin-bottom: 0; }
    .social-widget .social-title li {
      display: inline-block; }
      .social-widget .social-title li a {
        color: #0057c7;
        font-size: 3rem; }
      .social-widget .social-title li:first-child:after {
        content: "|";
        display: inline-block;
        margin: -15px 15px 0;
        vertical-align: middle;
        line-height: 1em;
        color: #0057c7; }
  .social-widget h2 {
    margin-top: 5px !important; }
  .social-widget p {
    text-align: center; }
  .social-widget .bg-social {
    background: #0057c7;
    background: -webkit-linear-gradient(90deg, #0057c7 50%, #f0f1f5 50%);
    background: -o-linear-gradient(90deg, #0057c7 50%, #f0f1f5 50%);
    background: -moz-linear-gradient(90deg, #0057c7 50%, #f0f1f5 50%);
    background: linear-gradient(90deg, #0057c7 50%, #f0f1f5 50%);
    padding: 45px 15px; }
    .social-widget .bg-social h3 {
      display: none; }
    .social-widget .bg-social .twitter-timeline {
      width: 460px !important;
      max-width: 100% !important; }
    .social-widget .bg-social .col-md-6 {
      text-align: center;
      padding: 50px 0; }
    .social-widget .bg-social .fb_iframe_widget {
      max-width: 100% !important;
      max-height: 350px;
      overflow: hidden; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .social-widget .bg-social {
    background: #0057c7;
    background: -webkit-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: -o-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: -moz-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    padding: 45px 15px; } }
@media only screen and (max-width: 767px) {
  .social-widget .bg-social {
    background: #0057c7;
    background: -webkit-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: -o-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: -moz-linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    background: linear-gradient(180deg, #0057c7 50%, #f0f1f5 50%);
    padding: 45px 15px; }
    .social-widget .bg-social .fb_iframe_widget {
      max-width: 100% !important;
      max-height: 350px;
      overflow: hidden;
      overflow-x: scroll; } }
/*END Social Widget------------------------------------------*/
/*START Testimonials--------------------------------------------------*/
.testimonial-widget {
  padding: 25px 0px 100px;
  text-align: center;
  background: transparent;
  max-height: 500px;
  min-height: 500px; }
  .testimonial-widget h2 {
    text-align: center;
    color: #2e323a;
    font-size: 40px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: capitalize; }
    .testimonial-widget h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      margin: 0 auto !important;
      top: -14px;
      left: 0;
      position: relative; }
  .testimonial-widget #carousel-testimonial {
    padding: 0 4%; }
    .testimonial-widget #carousel-testimonial .carousel-inner::before {
      content: "";
      height: 5px;
      width: 85%;
      top: 65px;
      position: absolute;
      display: block;
      left: 50px;
      z-index: 0;
      background: #f0f0f0;
      background: -moz-linear-gradient(top, #f0f0f0 0%, #f3f4f4 54%, white 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, #f0f0f0), color-stop(54%, #f3f4f4), color-stop(100%, white));
      background: -webkit-linear-gradient(top, #f0f0f0 0%, #f3f4f4 54%, white 100%);
      background: -o-linear-gradient(top, #f0f0f0 0%, #f3f4f4 54%, white 100%);
      background: -ms-linear-gradient(top, #f0f0f0 0%, #f3f4f4 54%, white 100%);
      background: linear-gradient(to bottom, #f0f0f0 0%, #f3f4f4 54%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#ffffff', GradientType=0 ); }
    .testimonial-widget #carousel-testimonial .carousel-inner .img-wrap {
      background: #ccc;
      border-radius: 50%;
      border: 3px solid #fff;
      float: none;
      height: 125px;
      margin: 5px auto 10px;
      overflow: hidden;
      width: 125px;
      z-index: 3;
      -webkit-box-shadow: 0px 5px 20px -2px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 0px 5px 20px -2px rgba(0, 0, 0, 0.75);
      box-shadow: 0px 5px 20px -2px rgba(0, 0, 0, 0.75); }
      .testimonial-widget #carousel-testimonial .carousel-inner .img-wrap img {
        position: relative;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-height: 150%;
        min-width: 100%;
        z-index: 3; }
    .testimonial-widget #carousel-testimonial .carousel-inner .quote {
      font-size: 13px;
      color: #fff;
      padding: 0 7%; }
      .testimonial-widget #carousel-testimonial .carousel-inner .quote p {
        margin-bottom: 20px;
        color: #727272;
        font-family: "Proxima Nova", sans-serif; }
      .testimonial-widget #carousel-testimonial .carousel-inner .quote a {
        color: #2e323a;
        font-weight: 700;
        font-family: "Proxima Nova", sans-serif; }
    .testimonial-widget #carousel-testimonial .carousel-indicators {
      bottom: -60px !important; }
      .testimonial-widget #carousel-testimonial .carousel-indicators ol.carousel-indicators {
        position: absolute;
        bottom: 0px; }
      .testimonial-widget #carousel-testimonial .carousel-indicators li {
        background: #fff !important;
        border: none;
        margin: 0; }
      .testimonial-widget #carousel-testimonial .carousel-indicators .active {
        background: #0057c7 !important; }
      .testimonial-widget #carousel-testimonial .carousel-indicators .carousel-inner .item {
        height: 100%;
        width: 100%; }
      .testimonial-widget #carousel-testimonial .carousel-indicators .carousel-inner > .active {
        height: 100% !important; }
      .testimonial-widget #carousel-testimonial .carousel-indicators .carousel-inner {
        height: 100%;
        width: 100%; }

/*END Testimonials------------------------------------------*/
@media only screen and (max-width: 767px) {
  .testimonial-widget #carousel-testimonial {
    padding: 0 10%; }

  .testimonial-widget #carousel-testimonial .carousel-inner::before {
    content: none; } }
/*START Sponsors Widget--------------------------------------------------*/
.sponsor-widget {
  padding: 40px 25px 40px; }
  .sponsor-widget p {
    text-align: center; }
  .sponsor-widget #sponsors-slider .carousel-control {
    width: 20px;
    opacity: 0; }
  .sponsor-widget #sponsors-slider .carousel-indicators {
    display: none; }
  .sponsor-widget #sponsors-slider .img-wrap {
    height: 120px;
    background: transparent;
    margin: 15px 0; }
    .sponsor-widget #sponsors-slider .img-wrap img {
      max-width: 100%;
      min-width: unset; }

/*END Sponsors Widget------------------------------------------*/
/*START footer--------------------------------------------------*/
footer.footer {
  text-align: left;
  position: relative;
  color: #ffffff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#013374+0,014194+8,014194+86,013374+100 */
  background: #013374;
  /* Old browsers */
  background: -moz-linear-gradient(top, #013374 0%, #014194 8%, #014194 86%, #013374 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #013374 0%, #014194 8%, #014194 86%, #013374 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #013374 0%, #014194 8%, #014194 86%, #013374 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#013374', endColorstr='#013374',GradientType=0 );
  /* IE6-9 */ }
  footer.footer .arrow-footer {
    display: block;
    position: absolute;
    right: 8%;
    top: -25px; }
    footer.footer .arrow-footer .arrow-top {
      background: #ffce1b;
      color: #ffffff;
      border-radius: 50%;
      width: 50px;
      height: 50px; }
      footer.footer .arrow-footer .arrow-top img {
        margin: 0px auto;
        display: block;
        padding-top: 10px; }
  footer.footer h3 {
    text-align: left;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 0; }
  footer.footer .top {
    padding: 80px 0; }
    footer.footer .top .left p {
      font-family: "Proxima Nova", sans-serif;
      font-weight: 600;
      font-size: 12px;
      color: #ffffff;
      margin: 0px;
      text-align: left;
      padding-right: 60px; }
    footer.footer .top .left span {
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase; }
    footer.footer .top .left a {
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
      margin-top: 25px;
      position: relative;
      display: block; }
      footer.footer .top .left a:hover {
        text-decoration: none; }
    footer.footer .top .left .img-wrap {
      height: 130px;
      border-radius: 10px;
      margin-top: -10px; }
    footer.footer .top .center-left p {
      font-family: "Proxima Nova", sans-serif;
      font-weight: 600;
      font-size: 12px;
      color: #ffffff;
      margin: 0px;
      text-align: left; }
    footer.footer .top .center-left span {
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: -0.5px; }
    footer.footer .top .center-left a {
      color: #ffffff; }
      footer.footer .top .center-left a:hover {
        text-decoration: none; }
    footer.footer .top .center-right ul {
      font-family: "Proxima Nova", sans-serif;
      font-weight: 600;
      font-size: 12px;
      padding: 0;
      list-style: none;
      text-decoration: none;
      text-align: left; }
      footer.footer .top .center-right ul a {
        font-family: "Proxima Nova", sans-serif;
        font-weight: 600;
        color: #ffffff; }
    footer.footer .top .right ul.social {
      border: none;
      display: block;
      float: none;
      left: -5px;
      margin: 0;
      padding: 0px;
      position: relative; }
      footer.footer .top .right ul.social .fa {
        color: #ffffff; }
        footer.footer .top .right ul.social .fa:hover {
          color: #fff !important; }
      footer.footer .top .right ul.social li {
        margin: 0 !important;
        font-size: 12px; }
        footer.footer .top .right ul.social li a {
          color: #ffffff;
          width: 30px; }
          footer.footer .top .right ul.social li a::before {
            content: none; }
        footer.footer .top .right ul.social li:last-child a::after {
          content: none; }
    footer.footer .top .right .search-footer {
      font-family: "Proxima Nova", sans-serif;
      background: rgba(44, 44, 44, 0.4);
      display: block;
      float: none;
      height: 30px;
      margin-right: -1px;
      padding-top: 0px;
      position: relative;
      width: 127px; }
      footer.footer .top .right .search-footer .screen-reader-text {
        display: none; }
      footer.footer .top .right .search-footer #searchform {
        color: #fff;
        width: 128px;
        opacity: 1;
        transition: 0.4s;
        visibility: visible; }
      footer.footer .top .right .search-footer .fa-search {
        display: none; }
      footer.footer .top .right .search-footer .fa-pencil {
        background: #0057c7;
        color: #ffffff;
        cursor: pointer;
        font-size: 15px;
        height: 30px;
        padding-left: 12px;
        padding-top: 7px;
        position: absolute;
        right: -36px;
        top: -1px;
        width: 35px;
        z-index: 12; }
        footer.footer .top .right .search-footer .fa-pencil.s-hover {
          text-decoration: none;
          border-color: #727272;
          background: #727272;
          color: #fff; }
      footer.footer .top .right .search-footer .fa-times {
        color: #ffce1b;
        cursor: pointer;
        display: none;
        font-size: 14px;
        margin-right: 10px;
        opacity: 0.5;
        transition: 0.3s; }
        footer.footer .top .right .search-footer .fa-times:hover {
          display: none;
          text-decoration: none;
          opacity: 1; }
      footer.footer .top .right .search-footer #searchsubmit {
        background: transparent !important;
        border-radius: 0;
        border: none;
        color: #fff;
        font-size: 12px;
        height: 30px;
        padding: 0;
        position: absolute;
        right: -36px;
        text-indent: -9999px;
        text-transform: uppercase;
        transition: 0.4s;
        vertical-align: middle;
        width: 35px;
        z-index: 11; }
        footer.footer .top .right .search-footer #searchsubmit:hover {
          background: transparent;
          color: transparent; }
      footer.footer .top .right .search-footer #s {
        background: transparent;
        border-right: none;
        border: none;
        box-sizing: border-box;
        color: #ffffff;
        font-size: 12px;
        height: 30px;
        padding: 0 0 0 15px;
        vertical-align: middle;
        width: 100%; }
    footer.footer .top .footer-logo {
      position: relative;
      height: 180px;
      width: unset; }
      footer.footer .top .footer-logo img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto; }
  footer.footer .bottom {
    font-family: 'Lato', sans-serif;
    background-color: #265ea7;
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    max-height: 50px;
    padding: 15px 0px 18px; }
    footer.footer .bottom a {
      color: #ffa400 !important;
      font-weight: 700; }
    footer.footer .bottom .bottom-left {
      float: left; }
      footer.footer .bottom .bottom-left p {
        font-weight: 400; }
    footer.footer .bottom .bottom-right {
      float: right; }
      footer.footer .bottom .bottom-right p {
        color: #ffffff; }
        footer.footer .bottom .bottom-right p a {
          color: #ffa400 !important;
          font-weight: 700; }

@media only screen and (min-width: 1371px) and (max-width: 1440px) {
  footer.footer .arrow-footer {
    right: 25px; } }
@media only screen and (min-width: 1201px) and (max-width: 1370px) {
  footer.footer .arrow-footer {
    right: 25px; } }
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  footer.footer .arrow-footer {
    right: 25px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer.footer .arrow-footer {
    right: 0; }

  .left {
    width: 60%;
    margin: 0 auto 50px;
    text-align: center; }

  footer.footer .top .center-left p {
    text-align: center; }

  .center-left {
    margin-bottom: 50px; }

  footer.footer {
    text-align: center; }

  .center-right {
    margin-bottom: 50px; }

  footer.footer .top .center-right ul {
    text-align: center; }

  footer.footer h3 {
    text-align: center; }

  footer.footer .top .right .search-footer {
    margin: 10px auto 40px;
    width: 216px; }

  footer.footer .top .right .search-footer #searchform {
    width: 217px; }

  footer.footer .top .left .img-wrap {
    height: 230px; } }
@media only screen and (max-width: 767px) {
  footer.footer .arrow-footer {
    right: 0; }

  .left {
    width: 60%;
    margin: 0 auto 50px;
    text-align: center; }

  footer.footer .top .center-left p {
    text-align: center; }

  .center-left {
    margin-bottom: 50px; }

  footer.footer {
    text-align: center; }

  .center-right {
    margin-bottom: 50px; }

  footer.footer .top .center-right ul {
    text-align: center; }

  footer.footer h3 {
    text-align: center; }

  footer.footer .top .right .search-footer {
    margin: 10px auto 40px;
    width: 216px; }

  footer.footer .top .right .search-footer #searchform {
    width: 217px; }

  footer.footer .top .left .img-wrap {
    height: 230px; }

  footer.footer .bottom {
    max-height: 100px; }

  footer.footer .bottom .bottom-left {
    float: none; }

  footer.footer .bottom .bottom-right {
    float: none; } }
/*END footer------------------------------------------*/
/*START Breadcrumbs----------------------------------------*/
ul.breadcrumbs {
  padding-left: 0;
  padding-bottom: 0px;
  text-transform: uppercase; }
  ul.breadcrumbs li {
    display: inline-block;
    margin-right: 10px; }
    ul.breadcrumbs li strong {
      font-weight: unset;
      font-size: 0.9rem;
      margin-bottom: 0;
      font-family: "Proxima Nova", sans-serif;
      color: #557ec1; }
    ul.breadcrumbs li.separator {
      color: transparent;
      font-size: 0px; }
      ul.breadcrumbs li.separator::after {
        content: "\f054";
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        font-size-adjust: none;
        font-stretch: normal;
        font-feature-settings: normal;
        font-language-override: normal;
        font-kerning: auto;
        font-synthesis: weight style;
        font-variant: normal;
        font-size: inherit;
        text-rendering: auto;
        font-size: 0.9rem;
        color: #737373; }
    ul.breadcrumbs li a {
      color: #737373;
      font-size: 0.9rem;
      font-weight: unset;
      text-decoration: none;
      margin-bottom: 0;
      font-family: "Proxima Nova", sans-serif; }
      ul.breadcrumbs li a:hover {
        text-decoration: underline; }
    ul.breadcrumbs li.last-child {
      color: #0057c7; }

/*END Breadcrumbs----------------------------------------*/
/*STRART INTERIOR PAGE------------------------------------------------------------------------------------------*/
/*START Interior Top (BANNER)--------------------------------------------------*/
.interior-top {
  background: #727272;
  min-height: 370px;
  overflow: hidden;
  padding: 100px 15px 50px;
  position: relative;
  text-align: left; }
  .interior-top h1 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0px;
    text-transform: capitalize;
    z-index: 1;
    position: relative;
    font-size: 55px;
    color: #fff; }
  .interior-top h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 55px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 500;
    margin-top: 0;
    line-height: 1em;
    text-transform: uppercase; }
  .interior-top img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    object-fit: cover; }
  .interior-top .post-categories {
    padding: 0; }
    .interior-top .post-categories li {
      display: inline-block; }
      .interior-top .post-categories li a {
        color: #fff;
        text-decoration: none; }

.archive-directory a {
  text-decoration: none !important; }
  .archive-directory a h3 {
    font-size: 20px !important;
    margin: 5px 0 !important; }
.archive-directory .btn-plus {
  position: relative;
  color: #fff;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 3px solid #fff;
  background: #ffce1b;
  margin-left: 0;
  transition: 0.4s;
  -webkit-box-shadow: 0px 4px 0px 0px gainsboro;
  -moz-box-shadow: 0px 4px 0px 0px gainsboro;
  box-shadow: 0px 4px 0px 0px gainsboro;
  display: block;
  text-align: center;
  vertical-align: middle;
  padding: 9px; }
  .archive-directory .btn-plus:hover {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    background: #727272; }
.archive-directory p {
  margin-bottom: 0 !important; }
.archive-directory hr.solid {
  margin: 20px 0 !important; }

/*END Interior Top (BANNER)------------------------------------------*/
.interior {
  color: #727272;
  font-size: 1rem;
  padding: 30px 0 80px;
  font-family: 'Lato', sans-serif; }
  .interior img {
    max-width: 100%;
    height: auto;
    width: auto; }
  .interior h1, .interior h2, .interior h3, .interior h4 {
    color: #3d414c;
    font-family: "Proxima Nova", sans-serif;
    text-transform: none;
    letter-spacing: 0.03em;
    font-weight: 700; }
  .interior h5, .interior h6 {
    color: #3d414c;
    font-family: "Proxima Nova", sans-serif;
    text-transform: none;
    letter-spacing: 0.03em;
    font-weight: 700; }
  .interior h1 {
    font-size: 3.214rem; }
  .interior h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    margin-top: 55px; }
  .interior h3 {
    font-size: 2.143rem; }
  .interior h3.gform_title {
    font-size: 2.143rem !important;
    font-weight: 400 !important; }
  .interior h4 {
    font-size: 1.786rem; }
  .interior h5 {
    font-size: 1.429rem; }
  .interior h6 {
    font-size: 1.214rem; }
  .interior hr {
    margin-top: 40px;
    margin-bottom: 40px;
    border-width: 1px 0px 0px;
    border-style: dashed none none;
    border-color: #bdbdbd -moz-use-text-color -moz-use-text-color; }
  .interior strong {
    color: #2e323a;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5em;
    line-height: 1.8em; }
  .interior p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5em;
    line-height: 1.8em;
    color: #727272;
    letter-spacing: 0.2px;
    font-size: 1rem; }
  .interior blockquote {
    font-family: 'Lato', sans-serif;
    background: #f4f4f4;
    border-left: 8px solid #0057c7;
    color: #2e323a;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.5em;
    margin-bottom: 1.5em;
    margin-left: 50px;
    margin-right: 5%;
    padding: 15px 20px;
    text-align: left;
    width: 90%; }
  .interior small {
    display: block; }
  .interior a {
    color: #557ec1;
    text-decoration: underline;
    transition: 0.3s;
    font-family: "Proxima Nova", sans-serif; }
    .interior a:hover {
      text-decoration: none; }
  .interior ul.list {
    padding: 0px;
    color: #737373; }
    .interior ul.list br {
      display: none; }
    .interior ul.list li {
      padding-left: 20px;
      color: #737373;
      list-style-type: none;
      line-height: 1.8em; }
      .interior ul.list li::before {
        content: "";
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid #01459e;
        position: relative;
        display: inline-block;
        margin-right: 15px; }
      .interior ul.list li a {
        color: #557ec1; }
      .interior ul.list li ul {
        padding: 0; }
        .interior ul.list li ul li {
          padding-left: 35px; }
          .interior ul.list li ul li::before {
            border-left: 4px solid #01459e; }
          .interior ul.list li ul li a {
            color: #557ec1; }
  .interior ul.nav-tabs li a {
    text-decoration: none;
    font-weight: 700;
    padding: 15px 8px; }
  .interior .nav-tabs > li.active > a, .interior .nav-tabs > li.active > a:focus, .interior .nav-tabs > li.active > a:hover {
    background: #0057c7;
    color: #fff; }
  .interior .panel-default > .panel-heading {
    background: #0057c7; }
  .interior .panel-title > .small, .interior .panel-title > .small > a, .interior .panel-title > a, .interior .panel-title > small, .interior .panel-title > small > a {
    text-decoration: none;
    font-weight: 900;
    color: #ffffff;
    display: block;
    text-transform: capitalize; }
  .interior .panel-body {
    padding: 40px; }
    .interior .panel-body p a {
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      color: #727272; }
      .interior .panel-body p a:hover {
        text-decoration: underline;
        color: #557ec1; }
  .interior .table-responsive .table {
    border: 1px solid #d5d5d5;
    border-radius: 5px; }
    .interior .table-responsive .table tr {
      height: 50px;
      text-align: center; }
      .interior .table-responsive .table tr th {
        padding: 20px 0px;
        text-align: center;
        background-color: #265ea7;
        color: #fff; }
        .interior .table-responsive .table tr th:hover {
          background-color: #265ea7;
          background: #01459e; }
      .interior .table-responsive .table tr:nth-child(even) td {
        padding: 15px 0px;
        background: #d5d5d5; }
        .interior .table-responsive .table tr:nth-child(even) td a {
          font-size: 16px;
          text-decoration: none;
          font-weight: 700;
          color: #727272; }
      .interior .table-responsive .table tr:nth-child(odd) td {
        padding: 15px 0px;
        background: #fff; }
        .interior .table-responsive .table tr:nth-child(odd) td a {
          font-size: 16px;
          text-decoration: none;
          font-weight: 700;
          color: #727272; }
  .interior input, .interior textarea, .interior select {
    height: 35px;
    background: transparent;
    border: 1px solid #d5d5d5;
    box-shadow: none; }
  .interior textarea {
    height: 100px;
    resize: none; }
  .interior input[type="checkbox"], .interior input[type="radio"] {
    height: 15px; }
  .interior input[type="submit"] {
    background: #0057c7;
    font-family: "Proxima Nova", sans-serif;
    border-radius: 3px;
    border: none;
    color: #fff;
    display: block;
    height: auto;
    margin-top: 25px;
    padding: 10px 30px;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
    font-weight: 900; }
    .interior input[type="submit"]:hover {
      background: #0057c7;
      text-decoration: none; }
  .interior button {
    background: #00662e;
    font-family: "Proxima Nova", sans-serif;
    color: #fff;
    font-size: 14px;
    padding: 8px 25px;
    border: none;
    text-transform: uppercase;
    font-weight: 900;
    min-height: 20px; }
    .interior button:hover {
      background: #0057c7;
      color: #fff; }
  .interior .ammapDescriptionTitle.amcharts-description-title-div {
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #0057c7; }
  .interior .ammapDescriptionWindow.amcharts-description-div {
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 20px 20px !important; }
  .interior .ammapDescriptionText.amcharts-description-text-div strong {
    display: block;
    margin-bottom: 2px; }
  .interior .amcharts-chart-div * {
    margin-bottom: 0;
    line-height: 1em; }
  .interior .amcharts-chart-div strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px; }

@media only screen and (max-width: 767px) {
  .interior-top {
    padding: 40px 15px 50px;
    min-height: inherit; }

  .interior-top h1 {
    font-size: 30px; }

  .interior blockquote {
    margin-left: 20px; } }
@media only screen and (max-width: 480px) {
  .interior-top {
    padding: 40px 15px 50px;
    min-height: inherit; }

  .interior-top h1 {
    font-size: 25px; }

  .interior blockquote {
    margin-left: 20px; } }
/*END INTERIOR PAGE-------------------------------------------------------------------------------------------*/
.sidebar .inner-nav {
  -webkit-box-shadow: 0px 0px 8px 0px #d0d1d4;
  -moz-box-shadow: 0px 0px 8px 0px #d0d1d4;
  box-shadow: 0px 0px 8px 0px #d0d1d4; }
  .sidebar .inner-nav a {
    text-decoration: none; }
  .sidebar .inner-nav ul {
    margin-bottom: 0;
    padding-left: 0; }
    .sidebar .inner-nav ul li {
      display: none;
      padding-left: 0px; }
      .sidebar .inner-nav ul li a {
        font-size: 1.429rem;
        padding-bottom: 25px;
        display: block;
        text-transform: none;
        color: #2e323a;
        padding-left: 30px;
        font-family: "Proxima Nova", sans-serif;
        font-weight: 600; }
      .sidebar .inner-nav ul li.current-menu-ancestor, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children {
        display: block;
        border: solid 1px #fff;
        background: #f6f6f6;
        padding: 30px 0;
        margin-bottom: 30px; }
        .sidebar .inner-nav ul li.current-menu-ancestor ul li, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li {
          display: block;
          padding-left: 0px; }
          .sidebar .inner-nav ul li.current-menu-ancestor ul li a, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li a, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li a, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li a {
            font-size: 1rem;
            font-style: initial;
            background: transparent;
            padding: 5px 30px;
            display: block;
            text-transform: capitalize;
            font-family: "Proxima Nova", sans-serif;
            font-weight: 600;
            color: #2e323a; }
            .sidebar .inner-nav ul li.current-menu-ancestor ul li a:hover, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li a:hover, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li a:hover, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li a:hover {
              text-decoration: underline; }
          .sidebar .inner-nav ul li.current-menu-ancestor ul li ul li, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li ul li, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li ul li, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li ul li {
            display: none; }
          .sidebar .inner-nav ul li.current-menu-ancestor ul li.current_page_item, .sidebar .inner-nav ul li.current-menu-ancestor ul li.current-menu-item, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current_page_item, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current-menu-item, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current_page_item, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current-menu-item, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current_page_item, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current-menu-item {
            display: block;
            border: none;
            background: transparent;
            padding: 0px;
            margin-bottom: 0px;
            border-bottom: none; }
            .sidebar .inner-nav ul li.current-menu-ancestor ul li.current_page_item a, .sidebar .inner-nav ul li.current-menu-ancestor ul li.current-menu-item a, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current_page_item a, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current-menu-item a, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current_page_item a, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current-menu-item a, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current_page_item a, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current-menu-item a {
              width: 100%;
              background: #0057c7;
              color: #fff;
              font-family: "Proxima Nova", sans-serif;
              font-weight: 600; }
            .sidebar .inner-nav ul li.current-menu-ancestor ul li.current_page_item ul li, .sidebar .inner-nav ul li.current-menu-ancestor ul li.current-menu-item ul li, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current_page_item ul li, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current-menu-item ul li, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current_page_item ul li, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current-menu-item ul li, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current_page_item ul li, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current-menu-item ul li {
              display: block;
              padding-left: 25px; }
              .sidebar .inner-nav ul li.current-menu-ancestor ul li.current_page_item ul li a, .sidebar .inner-nav ul li.current-menu-ancestor ul li.current-menu-item ul li a, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current_page_item ul li a, .sidebar .inner-nav ul li.current-menu-parent.menu-item-has-children ul li.current-menu-item ul li a, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current_page_item ul li a, .sidebar .inner-nav ul li.menu-item-has-children.current-menu-item ul li.current-menu-item ul li a, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current_page_item ul li a, .sidebar .inner-nav ul li.current_page_parent.menu-item-has-children ul li.current-menu-item ul li a {
                background: transparent;
                font-family: "Proxima Nova", sans-serif;
                font-weight: 600;
                color: #2e323a; }
      .sidebar .inner-nav ul li::before {
        content: none; }
      .sidebar .inner-nav ul li.current-menu-ancestor ul li {
        padding: 0 !important;
        margin-bottom: 0 !important;
        border: none !important; }
        .sidebar .inner-nav ul li.current-menu-ancestor ul li ul {
          padding-left: 30px; }

.sidebar-a {
  background: #01459e;
  padding: 40px 10px;
  text-align: center;
  margin-bottom: 50px; }
  .sidebar-a h3 {
    color: #fff;
    font-size: 22px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0;
    text-align: center;
    display: block;
    text-transform: none; }
    .sidebar-a h3::after {
      content: "";
      background: #fff;
      height: 1px;
      width: 80%;
      margin: 17px auto 25px;
      display: block; }
    .sidebar-a h3 i {
      display: block !important;
      color: #fff;
      font-size: 3.5rem !important;
      margin-bottom: 0.2em; }
  .sidebar-a p {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-top: 13px;
    font-weight: 600; }
  .sidebar-a a {
    color: #fff;
    text-decoration: underline; }
    .sidebar-a a:hover {
      text-decoration: none; }

.sidebar-b {
  background: #ffce1b;
  padding: 40px 10px 20px;
  text-align: center; }
  .sidebar-b h3 {
    color: #fff;
    font-size: 22px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0;
    text-align: center;
    display: block;
    text-transform: none; }
    .sidebar-b h3::after {
      content: "";
      background: #fff;
      height: 1px;
      width: 80%;
      margin: 17px auto 25px;
      display: block; }
    .sidebar-b h3 i {
      display: block !important;
      color: #fff;
      font-size: 3.5rem !important;
      margin-bottom: 0.2em; }
  .sidebar-b p {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    margin-top: 13px;
    font-weight: 600; }
  .sidebar-b a {
    color: #fff;
    text-decoration: underline; }
    .sidebar-b a:hover {
      text-decoration: none; }

.sidebar-category {
  display: block;
  border: solid 1px #fff;
  background: #f6f6f6;
  padding: 20px 15px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 8px 0px #d0d1d4;
  -moz-box-shadow: 0px 0px 8px 0px #d0d1d4;
  box-shadow: 0px 0px 8px 0px #d0d1d4; }
  .sidebar-category .directory_category_item {
    list-style: none;
    padding-left: 0; }
    .sidebar-category .directory_category_item a {
      font-size: 1rem;
      font-style: initial;
      background: transparent;
      padding: 5px 30px;
      display: block;
      text-transform: capitalize;
      font-family: "Proxima Nova", sans-serif;
      font-weight: 600;
      color: #2e323a; }
      .sidebar-category .directory_category_item a:hover {
        text-decoration: underline;
        width: 100%;
        background: #0057c7;
        color: #fff;
        font-family: "Proxima Nova", sans-serif;
        font-weight: 600; }
  .sidebar-category ul.list {
    list-style: none; }
    .sidebar-category ul.list li {
      display: block;
      padding-left: 0px; }
      .sidebar-category ul.list li::before {
        margin-right: 0px; }
      .sidebar-category ul.list li a {
        font-family: "Proxima Nova", sans-serif;
        background: transparent;
        color: #2e323a;
        display: inline-block;
        font-size: 1rem;
        font-style: initial;
        font-weight: 600;
        padding: 5px 10px;
        text-transform: capitalize;
        width: 90%; }
        .sidebar-category ul.list li a:hover {
          text-decoration: underline !important; }

.tribe_mini_calendar_widget {
  margin-bottom: 30px; }

/*START Woocommerce------------------------------------*/
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: #ffce1b;
  color: #fff !important;
  max-width: 100%;
  margin: 0 5px 5px 0;
  text-align: center;
  transition: 0.4s;
  padding: 15px 20px;
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: lato-l;
  transition: 0.4s !important;
  text-decoration: none !important; }
  .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce #respond input#submit:active, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button:active, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce button.button:active, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce input.button:active {
    background: #f8b106;
    text-decoration: none;
    color: #fff !important; }

.woocommerce span.onsale {
  background-color: #0057c7; }

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 99px; }

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 99px;
  height: 43px; }

/*END Woocommerce------------------------------------*/
/*START Sidebar Woocommerce------------------------------------*/
.widget_shopping_cart {
  display: block;
  border: solid 1px #dbdbdb;
  background: #fff;
  padding: 5px 30px;
  margin-bottom: 30px;
  border-bottom: 6px solid #0057c7; }

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
  width: 65px; }

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: #ffce1b;
  color: #fff !important;
  max-width: 100%;
  margin: 0 5px 5px 0;
  text-align: center;
  transition: 0.4s;
  padding: 15px 20px;
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: lato-l;
  transition: 0.4s !important;
  text-decoration: none !important; }
  .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce #respond input#submit:active, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button:active, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce button.button:active, .woocommerce input.button:hover, .woocommerce input.button:focus, .woocommerce input.button:active {
    background: #f8b106;
    text-decoration: none;
    color: #fff !important; }

/*END Sidebar Woocommerce------------------------------------*/
/*START Post a Job || Career Opportunities------------------------------------*/
.rp4wp-related-job_listing > ul, ul.job_listings {
  background: #fafafa;
  border: 1px solid #E5E5E5; }

.job_filters .job_types, .job_filters .showing_jobs {
  background: #fff; }

.job_filters {
  background: #fafafa;
  border: 1px solid #E5E5E5;
  border-bottom: none; }

.job_filters .search_jobs input, .job_filters .search_jobs select {
  background: #fff;
  padding: 0 5px; }

.job-manager-application-wrapper .application .application_button, .single_job_listing .application .application_button {
  background: #ffce1b;
  color: #fff !important;
  max-width: 100%;
  margin: 0 5px 5px 0;
  text-align: center;
  transition: 0.4s;
  padding: 0px 20px;
  border: none;
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: lato-l;
  transition: 0.4s !important;
  text-decoration: none !important; }
  .job-manager-application-wrapper .application .application_button:hover, .job-manager-application-wrapper .application .application_button:focus, .job-manager-application-wrapper .application .application_button:active, .single_job_listing .application .application_button:hover, .single_job_listing .application .application_button:focus, .single_job_listing .application .application_button:active {
    background: #f8b106;
    text-decoration: none;
    color: #fff !important; }

/*END Post a Job || Career Opportunities------------------------------------*/
/*START Sigle Page----------------------------------*/
.single .featuredImg img {
  width: 100%;
  height: auto; }

/*END Sigle Page----------------------------------*/
/*START Category Page----------------------------------*/
.img-category {
  float: left;
  margin: 0 15px 15px 0;
  width: 250px;
  height: 215px;
  position: relative;
  overflow: hidden;
  z-index: 3; }
  .img-category img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    max-height: 150%; }
  .img-category a {
    position: absolute;
    padding: 5px 10px;
    color: #fff;
    background: #0057c7;
    bottom: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.4s; }
    .img-category a:hover {
      background: #ffce1b; }

hr.solid {
  border-style: solid; }

/*END Category Page----------------------------------*/
.interior.category a {
  text-decoration: none; }
  .interior.category a:hover {
    text-decoration: underline;
    color: #888888; }

.comment-form-url {
  display: none; }

#commentform label {
  display: block; }

/*END Category Page----------------------------------*/
.pagination .nav-links a {
  display: inline-block;
  min-width: 30px;
  border-radius: 5px;
  color: #fff;
  background: #0057c7;
  transition: 0.4s;
  padding: 8px 5px;
  text-align: center;
  text-decoration: none; }
  .pagination .nav-links a:hover {
    text-decoration: none;
    background: #01459e; }
.pagination .nav-links span {
  color: #0057c7; }
.pagination .nav-links .current {
  display: inline-block;
  min-width: 30px;
  border-radius: 5px;
  color: #fff;
  background: #01459e;
  padding: 8px 5px;
  text-align: center;
  text-decoration: none; }
.pagination .nav-links .next, .pagination .nav-links .prev {
  background: #ffce1b; }
  .pagination .nav-links .next:hover, .pagination .nav-links .prev:hover {
    background: #f8b106; }

/*START Search Page------------------------------------------*/
body.search {
  display: block;
  padding-top: 0px;
  margin-left: 0; }

.search-page h2 a {
  text-decoration: none; }
  .search-page h2 a::after {
    content: "";
    background: #ffce1b;
    height: 5px;
    width: 35px;
    margin: 5px 0px 30px;
    display: block;
    transition: 0.4s; }
  .search-page h2 a:hover::after {
    width: 40%; }

/*END Search Page-----------------------------------*/
/*START Error Page------------------------------------------*/
.fourerror {
  text-align: center; }
  .fourerror .fa-exclamation-circle {
    font-size: 8rem;
    color: #00662e; }
  .fourerror h1 {
    font-size: 10.214rem;
    margin: 0;
    font-family: lato-eb;
    color: #0057c7; }
  .fourerror h2::after {
    content: none; }
  .fourerror p {
    line-height: 2em; }
  .fourerror .search {
    margin: 25px 10%;
    width: 80%; }
    .fourerror .search #searchform {
      visibility: visible;
      opacity: 1;
      transition: all 0.4s ease 0s;
      display: block;
      width: 100%; }
    .fourerror .search #s, .fourerror .search #searchsubmit {
      display: inline-block;
      margin: 0;
      vertical-align: top;
      width: 25%; }
    .fourerror .search #s {
      width: 70%; }
    .fourerror .search #searchsubmit {
      margin-left: -5px; }

.interior .gform_confirmation_wrapper {
  font-size: 25px; }

.footer .gform_wrapper .validation_error {
  color: #FFB3B3;
  border-color: #FFB3B3; }
.footer .gform_wrapper.gform_validation_error .gform_body ul.gform_fields li.gfield .ginput_container input {
  color: #000; }
.footer .gform_confirmation_wrapper {
  display: block;
  width: 100%;
  float: left;
  color: white;
  font-size: 20px;
  margin-top: 25px; }

/*END Error Page------------------------------------------*/
.accordion br {
  display: none; }

h1[id*="accordion-"],
h2[id*="accordion-"],
h3[id*="accordion-"],
h4[id*="accordion-"],
h5[id*="accordion-"],
h6[id*="accordion-"] {
  border: 1px solid #cccccc;
  padding: 10px 10px 10px;
  cursor: pointer;
  background: #efefef;
  margin-bottom: 0; }
  h1[id*="accordion-"]:hover,
  h2[id*="accordion-"]:hover,
  h3[id*="accordion-"]:hover,
  h4[id*="accordion-"]:hover,
  h5[id*="accordion-"]:hover,
  h6[id*="accordion-"]:hover {
    background: #dfdfdf; }

.accordion-content {
  padding-bottom: 10px;
  background: #efefef;
  padding: 10px;
  border: 1px solid #cccccc;
  border-top: none; }

label.gfield_label {
  margin-top: 25px; }

/*START html & body-------------------------------------*/
html, body {
  font-family: "Proxima Nova", sans-serif;
  font-size: 14px;
  color: #727272; }
  html a, body a {
    outline: none !important; }

/*END html & body-------------------------------------*/
.b {
  background: rgba(57, 102, 233, 0.89);
  padding: 30px 0;
  position: relative;
  margin-top: -110px; }
  .b h2 {
    text-align: left;
    color: #fff;
    font-size: 36px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: none;
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle; }
  .b p {
    text-align: left;
    color: #727272;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    margin-bottom: 30px; }
  .b a {
    float: right;
    background: #ffce1b;
    font-size: 16px;
    vertical-align: middle;
    height: 50px; }
  .b .img-wrap {
    border-radius: 4px;
    height: 325px;
    min-width: 390px;
    background: transparent;
    margin: 0 auto; }
    .b .img-wrap img {
      max-height: 100%;
      min-width: auto; }

.c {
  background: url("../images/bg-c.jpg") no-repeat;
  padding: 50px 0 40px;
  background-size: cover; }
  .c .left {
    padding-right: 83px; }
    .c .left .img-wrap {
      height: 325px;
      border-radius: 10px;
      margin-top: -90px;
      border: 2px solid #dbdbdb;
      box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2); }
      .c .left .img-wrap img {
        width: auto;
        height: 100%; }
  .c h2 {
    text-align: left;
    color: #2e323a;
    font-size: 40px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px; }
    .c h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      margin: 0 0 !important;
      top: -14px;
      left: 0;
      position: relative; }
  .c span {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2e323a;
    display: block; }
  .c p {
    text-align: left;
    color: #2e323a;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    margin-bottom: 30px; }
  .c a {
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 180px;
    float: left; }

.d {
  background: url("../images/bg-d.jpg") no-repeat;
  background-position: left top;
  background-size: cover !important;
  background-attachment: fixed;
  padding: 80px 25px 80px;
  height: auto; }
  .d h2 {
    text-align: left;
    color: #fff;
    font-size: 33px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px; }
    .d h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      margin: 0 0 !important;
      top: -14px;
      left: 0;
      position: relative; }
    .d h2::after {
      content: "";
      background: #959595;
      display: block;
      height: 131px;
      width: 1px;
      margin: 0 0 !important;
      top: 0px;
      right: 0;
      position: absolute; }

.e {
  position: relative;
  overflow-x: hidden; }
  .e h2 {
    font-family: "Proxima Nova", sans-serif;
    color: #2e323a;
    font-size: 40px;
    font-weight: 700;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    top: -95px;
    width: 250px; }
    .e h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      top: -14px;
      left: 8px;
      position: absolute; }
  .e p {
    text-align: left;
    color: #727272;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    margin-bottom: 30px; }

.f {
  background: url("../images/bg-f.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  color: #727272; }
  .f h2 {
    text-align: center;
    color: #2e323a;
    font-size: 36px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: none;
    display: inline-block;
    margin: 0 auto;
    vertical-align: middle;
    margin-bottom: 45px; }
    .f h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      top: -14px;
      left: -69px;
      position: relative; }
  .f p {
    text-align: center;
    color: #2e323a;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 20%; }

.g {
  background: #ffce1b;
  padding: 50px 0; }
  .g .img-wrap {
    height: 277px;
    min-width: 390px;
    margin: 0 auto;
    border-radius: 4px; }
  .g h2 {
    text-align: left;
    color: #fff;
    font-size: 40px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 700;
    text-transform: capitalize; }
    .g h2::before {
      content: "";
      background: #0057c7;
      display: block;
      height: 5px;
      width: 38px;
      top: -14px;
      left: 0;
      position: relative; }
  .g h3 {
    text-align: left;
    color: #fff;
    font-size: 24px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 600;
    margin-top: 0;
    text-transform: capitalize; }
  .g p {
    text-align: left;
    color: #fff;
    font-size: 15px;
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    margin-bottom: 30px; }

/*END FrontPage-------------------------------------------*/
#navigation .login a.log-in {
  display: block; }
#navigation .login a.log-out {
  display: none; }

body.logged-in #navigation .login a.log-in {
  display: none; }
body.logged-in #navigation .login a.log-out {
  display: block; }

.page-id-5230 #pmpro_pricing_fields {
  display: none; }

.page-id-5231 #nav-below {
  display: none; }
.page-id-5231 .addtoany_share_save_container:last-child {
  display: none; }

.archive-directory .img-wrap {
  height: auto;
  padding-bottom: 100%;
  background: transparent; }
  .archive-directory .img-wrap img {
    max-width: 100%;
    max-height: 100%;
    min-width: inherit; }

/* Media queries----------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .b h2 {
    font-size: 34px;
    padding: 7px 0; }

  .b a {
    float: right;
    background: #ffce1b;
    font-size: 16px;
    vertical-align: middle;
    height: 50px;
    min-width: 150px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .b h2 {
    font-size: 34px;
    padding: 7px 0; }

  .b a {
    float: right;
    background: #ffce1b;
    font-size: 16px;
    vertical-align: middle;
    height: 50px;
    min-width: 150px; }

  .c .left {
    padding: 0 15px; }

  .c .left .img-wrap {
    margin-top: 0px; }

  .c .left .img-wrap img {
    width: 100%;
    height: auto; }

  .c .right {
    margin: 50px 0 0;
    text-align: center; }

  .c h2 {
    text-align: center; }

  .c p {
    text-align: center; }

  .c h2::before {
    margin: 0 auto !important; }

  .c a {
    float: none; }

  .c .left .img-wrap img {
    width: auto;
    height: 100%; }

  .d {
    padding: 75px 0 90px; }

  .d .left {
    margin-bottom: 50px; }

  .d h2 {
    text-align: center; }

  .d h2::before {
    margin: 0 auto !important; }

  .d h2::after {
    display: none; }

  .events-widget {
    text-align: center; }

  .e h2 {
    text-align: center; }

  .e h2::before {
    margin: 0 auto !important; } }
@media only screen and (max-width: 767px) {
  .b h2 {
    font-size: 34px;
    padding: 7px 0; }

  .b a {
    float: right;
    background: #ffce1b;
    font-size: 16px;
    vertical-align: middle;
    height: 50px;
    min-width: 150px; }

  .c .left {
    padding: 0 15px; }

  .c .left .img-wrap {
    margin-top: 0px; }

  .c .left .img-wrap img {
    width: 100%;
    height: auto; }

  .c .right {
    margin: 50px 0 0;
    text-align: center; }

  .c h2 {
    text-align: center; }

  .c p {
    text-align: center; }

  .c h2::before {
    margin: 0 auto !important; }

  .c a {
    float: none; }

  .d {
    padding: 75px 0 90px; }

  .d .left {
    margin-bottom: 50px; }

  .d h2 {
    text-align: center; }

  .d h2::before {
    margin: 0 auto !important; }

  .d h2::after {
    display: none; }

  .events-widget {
    text-align: center; }

  .e h2 {
    text-align: center; }

  .e h2::before {
    margin: 0 auto !important; } }
@media only screen and (max-width: 480px) {
  .left {
    width: 100%; }

  .b a {
    float: none; }

  .b {
    text-align: center; }

  .b h2 {
    font-size: 29px;
    padding: 20px 0; }

  .c .left .img-wrap img {
    width: auto;
    height: 100%; } }

/*# sourceMappingURL=style.css.map */
