/**************************************************/
/*** LAYOUT & STRUCTURE ***************************/
/**************************************************/

#banner-holder {
  height: 395px;
}
@media screen and (max-width: 602px) {
  #banner-image {
    margin-top: 146px;
  }
  #banner-holder {
    height: 590px !important;
  }
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.page-wrap {
  min-height: 100%;
  padding-bottom: 50px;
  margin-bottom: -440px;
  /* equal to footer height */
}

.site-footer,
.page-wrap:after {
  height: 440px;
}

.page-wrap:after {
  content: "";
  display: block;
}

.container {
  max-width: 1140px;
}

.header {
  background: url('../images/header-bg.png') repeat-y;
  background-size: auto;
  background-size: cover;
}

article {
  padding: 30px 0px;
}

.scrollup {
  text-align: center;
  display: block;
  padding: 11px 10px 20px;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 1000;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
}

/**************************************************/
/*** TYPE STYLING *********************************/
/**************************************************/

* {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
}

#footer-menu li {
  list-style-type: none;
}

li,
p,
ol {
  font: 13px;
  color: #333;
}

a {
  color: #2490b3;
}

a:hover {
  color: #337990;
  text-decoration: underline;
}

h2,
.tabContent h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  margin: 13px 0;
}

h3,
h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin: 30px 0 10px;
}

article ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

article li {
  margin-bottom: 10px;
}


/**************************************************/
/*** TABLE STYLING ********************************/
/**************************************************/

article table {
  border: solid 1px #2490b3;
  margin-top: 25px;
  margin-bottom: 25px;
  width: 100%;
}

article table th,
article table td {
  border: solid 1px #2490b3;
}

article table th {
  background: #2490b3;
  color: white;
  padding: 10px 20px;
}

article table th * {
  margin: 0;
}

article table td {
  padding: 12px 20px 5px;
  font-size: 13px;
}

article table th p {
  margin: 0;
}

/**************************************************/
/*** MENU STYLING *********************************/
/**************************************************/

.side nav ul {
  margin-top: 30px;
  padding: 0;
}

.side nav ul li {
  display: block;
}

.side nav ul li:last-child,
.side nav ul {
  margin-bottom: 15px;
}

.side nav ul li a,
.slicknav_nav li a {
  display: block;
  padding: 0px 0px 12px;
  color: #2490b3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: none;
}

.side nav ul li a {
  position: relative;
  left: 0;
  -webkit-transition: left 0.5s, background 0.5s;
  transition: left 0.5s, background 0.5s;
}

.side nav ul li a:hover,
.slicknav_nav li a:hover {
  text-decoration: underline;
  color: #337990;
  cursor: pointer;
}

/**************************************************/
/*** MOBILE-MENU SPECIFIC STYLING *****************/
/**************************************************/

#mobile-menu {
  padding: 0;
  display: none;
  background: none;
  position: absolute;
  right: 40px;
  top: 15px;
  color: #fff;
  font-size: 22px;
  text-align: right;
  width: 70px;
  cursor: pointer;
  z-index: 500;
}

.slicknav_menu {
  color: white;
  text-align: left;
  width: 340px;
  position: absolute;
  right: -25px;
  background: #337990;
}

.slicknav_menu a {
  color: white;
}

.slicknav_nav {
  padding: 10px;
  margin-bottom: 0;
}

.slicknav_nav li {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.slicknav_nav li:last-child {
  margin-bottom: 0;
}

.slicknav_nav li a {
  padding: 10px 15px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  color: #FFF;
}

/**************************************************/
/*** HERO BANNER **********************************/
/**************************************************/

.hero {
  text-align: center;
  border-bottom: solid 1px #ececec;
  padding-top: 40px;
  padding-bottom: 30px;
  width: 100%;
  float: left;
}

.hero h1 {
  font-family: times new roman, sans-serif;
  color: #FFFFFF;
  text-shadow: 0 0 10px #000;
  font-size: 26px;
  font-weight: 400;
  padding-bottom: 20px;
}


/**************************************************/
/*** TAB CONTROL **********************************/
/**************************************************/

.tabControl {
  margin-bottom: 25px;
}

.tabControl > div {
  background: #2490b3;
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: #FFF;
}

.tabControl > div:hover {
  cursor: pointer;
}

.tabControl > div.selected {
  background: #337990 !important;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.popup {
  background: white;
}

.popup h1 {
  color: #2490b3;
  font-size: 28px;
}

.featherlight-content {
  border-radius: 8px;
}

.featherlight .featherlight-close-icon {
  font-size: 18px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-weight: bold;
}

/**************************************************/
/*** MEDIA QUERIES ********************************/
/**************************************************/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {}

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {

  /* custom breakpoint */


}

@media only screen and (max-width: 992px) {}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {


  .page-wrap {
      padding-bottom: 0;
      margin-bottom: 0;
      /* equal to footer height */
      padding-bottom: 10px;
  }

  .site-footer {
      height: auto;
  }

  .page-wrap:after {
      height: 0;
  }

  .banner-tel {
      display: none;
  }

  ul.nav {
      width: auto;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  #mobile-menu {
      display: block;
  }

  .header-nav {
      height: 52px;
  }

  .side {
      border-right: none;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {}
