﻿.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.flex-direction-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-direction-row-reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-direction-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-direction-column-reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap; }

.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start; }

.justify-content-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end; }

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }

.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.justify-content-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around; }

.align-items-flex-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.align-items-flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end; }

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.align-items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline; }

.align-items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch; }

.align-self-flex-start {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.align-self-flex-end {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }

.align-self-center {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.align-self-baseline {
  -webkit-align-self: baseline;
  -moz-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline; }

.align-self-stretch {
  -webkit-align-self: stretch;
  -moz-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch; }

.align-content-flex-start {
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start; }

.align-content-flex-end {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end; }

.align-content-center {
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center; }

.align-content-space-between {
  -webkit-align-content: space-between;
  -moz-align-content: space-between;
  -ms-flex-line-pack: space-between;
  align-content: space-between; }

.align-content-space-around {
  -webkit-align-content: space-around;
  -moz-align-content: space-around;
  -ms-flex-line-pack: space-around;
  align-content: space-around; }

.align-content-stretch {
  -webkit-align-content: stretch;
  -moz-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch; }

/*----------intial declartaion of css----------*/
* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /* list-style:none;*/
  box-sizing: border-box; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

.video-player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom:30px;
  }

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

audio:not([controls]) {
  display: none;
  height: 0; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none; }

button, input, select, textarea {
  margin: 0;
  vertical-align: baseline; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button, html input[type="button"], input[type="reset"], input[type="submit"], textarea {
  -webkit-appearance: none;
  border-radius: 0; }

/* remember to define focus styles! */
:focus {
  outline: 0; }

ol, ul {
  /*list-style: none;*/ }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal; }

a {
  text-decoration: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: ""; }

blockquote, q {
  quotes: "" ""; }

table {
  border: 0 none;
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

img {
  -ms-interpolation-mode: bicubic; }

img {
  border: 0 none;
  max-width: 100%; }

img.download {
  width: 20px;
  height: auto; }

a {
  outline: none;
  cursor: pointer; }

/* End hide from IE Mac */
.none {
  display: none; }

/* End Clearfix */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

.clear {
  clear: both; }

img {
  max-width: 100%; }

/* For modern browsers */
.cf:before, .cf:after {
  content: "";
  display: table; }

.cf:after {
  clear: both; }

section, footer, header {
  clear: both; }

/* For IE 6/7 (trigger hasLayout) */
html {
  font-size: 10px; }

a {
  color: #9c9989;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Bariol'; }

a:hover {
  color: #1c1c1c; }

a.download {
  font-size: 18px;
  color: #80b541;
  font-family: 'Bariol';
  font-weight: 600;
  text-decoration: underline !important;
  padding-left: 10px;
  line-height: 28px; }

a.download:hover {
  color: #1c1c1c; }

p {
  font-size: 16px;
  line-height: 1.29;
  padding-bottom: 25px;
  color: #1c1c1c;
  font-weight: 400;
  font-family: 'Bariol'; }

h1 {
  font-size: 40px;
  color: #507826;
  line-height: 1;
  font-family: 'Bariol';
  font-weight: 600; }

h2 {
  font-size: 40px;
  color: #80b541;
  line-height: 1;
  font-family: 'Bariol';
  font-weight: 600; }

h3 {
  font-size: 35px;
  color: #80b541;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h4 {
  font-size: 30px;
  color: #80b541;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h5 {
  font-size: 25px;
  color: #1a7a78;
  line-height: 1;
  font-weight: 700;
  font-family: 'Bariol'; }

h6 {
  font-size: 16px;
  color: #80b541;
  font-weight: 700;
  line-height: 1;
  font-family: 'Bariol';
  margin-bottom: 16px; }

/* For Accessibility */
h2.homepage-pension-scheme {
  font-size: 30px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h3.homepage-categories {
  font-size: 25px;
  color: #1a7a78;
  line-height: 1;
  font-weight: 700;
  font-family: 'Bariol'; }

h2.contact-title {
  font-size: 30px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h3.contact-blocks {
  font-size: 25px;
  color: #1a7a78;
  line-height: 1;
  font-weight: 700;
  font-family: 'Bariol'; }

h2.contriubtions-title {
  font-size: 30px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h3.contributions-subheading {
  font-size: 16px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  font-family: 'Bariol';
  margin-bottom: 16px; }

h2.existing-members-title {
  font-size: 30px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h3.existing-members-subheading {
  font-size: 16px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  font-family: 'Bariol';
  margin-bottom: 16px; }

h2.good-practice-title {
  font-size: 30px;
  color: #1a7a78;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h1.login-title {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h2.my-pension-title {
  font-size: 30px;
  width: 450px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  font-family: 'Bariol'; }

h3.my-pension-categories {
  font-size: 25px;
  color: #1a7a78;
  line-height: 1;
  font-weight: 700;
  font-family: 'Bariol'; }

a, button, .btn {
  outline: none !important;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  text-decoration: none !important; }

input {
  -webkit-appearance: none;
  border-radius: 0px; }

body {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  font-family: 'Bariol'; }

ul, li {
  list-style-type: none; }

::-webkit-input-placeholder {
  opacity: 1;
  color: inherit; }

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: inherit; }

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: inherit; }

:-ms-input-placeholder {
  opacity: 1;
  color: inherit; }

/*common end*/
.wrapper {
  overflow: hidden; }

/*header start here*/
.logo-cover {
  width: 160px;
  display: inline-block; }

.logo-cover a:focus {
  border:1px solid #ff0000; }
 
.header-main {
  padding: 30px 0 0; }

.head-msg span {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Bariol';
  line-height: 1.2;
  margin-bottom: 12px;
  display: inline-block; }

.head-msg p {
  max-width: 472px;
  margin: 0 auto; }

.head-msg {
  display: inline-block;
  width: calc(100% - 270px);
  text-align: center;
  margin: 0 auto;
  padding: 0 54px 0 0; }

.head-msg a:link,
.head-msg a:visited {
  color:#000000;
  text-decoration:underline !important;
  font-size: 18px;
  font-weight: 700; } 

.head-msg a:active,
.head-msg a:hover {
  text-decoration: none; }

.head-msg a:focus {
  border:1px solid #ff0000; }

.lpgs-logo {
  display: inline-block;
  max-width: 94px;
  vertical-align: top;
  margin-top: 13px;
  margin-left: 12px; }

.menu-icon {
  display: none;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  line-height: 33px;
  font-size: 22px;
  padding: 10px 0; }

.menu-icon .menu-box {
  width: 34px;
  height: 38px;
  margin-right: 20px;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 18px; }

.menu-icon .menu-box span {
  width: 100%;
  height: 4px;
  margin-bottom: 4px;
  background: #404041;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s; }

.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(4px);
  -webkit-transform: rotate(45deg) translateY(5px) translateX(4px); }

/*
.menu-icon.hover:not(.active) span:nth-child(1) {
    transform: rotate(90deg) translateX(8px);
    -webkit-transform: rotate(90deg) translateX(8px);
}
*/
.menu-icon.active span:nth-child(2) {
  opacity: 0; }

.menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(6px);
  -webkit-transform: rotate(-45deg) translateY(-8px) translateX(6px); }

/*
.menu-icon.hover:not(.active) span:nth-child(3) {
    transform: rotate(-90deg) translateX(6px);
    -webkit-transform: rotate(-90deg)  translateX(6px);
}
*/
.enumenu_ul .caret {
  color: #fff;
  margin-left: 7px; }

.enumenu_ul {
  padding: 0;
  list-style: none;
  margin-left: -15px; }

.enumenu_ul > li {
  display: inline-block;
  float: left;
  vertical-align: top;
  position: relative;
  margin: 0 0 0 0; }

.enumenu_ul > li.big-menu {
  position: inherit; }

.enumenu_ul li a {
  font-size: 18px;
  color: #fff;
  padding: 13px 15px;
  display: inline-block; }

.enumenu_ul li a:focus {
  border:1px solid #ff0000; }

.enumenu_ul > li:hover > a, .enumenu_ul > li.active > a {
  background: #80b541 none repeat scroll 0 0;
  color: #404041; }

.enumenu_ul > li ul {
  display: none; }

.enumenu_ul ul li {
  width: 100%;
  margin: 0;
  list-style: none;
  position: relative; }

.enumenu_ul.desk ul {
  top: 100%;
  z-index: 999;
  list-style: none;
  left: 0;
  background: #ffffff;
  position: absolute;
  min-width: 270px;
  border: 2px solid #80b541;
  padding: 14px 0; }

/*Sub menu styles*/
.menu.submenu-ul-level1 li a {
  background: rgba(31, 26, 107, 0.8);
  color: #fff;
  padding-left: 90px; }

.enumenu_ul.desk li:hover > ul {
  display: block;
  opacity: 1; }

.enumenu_ul.desk .sb-menu .sb-menu {
  left: 100%;
  top: 0; }

.enumenu_ul.desk ul li a {
  padding: 12px 19px 13px;
  display: block;
  color: #404041;
  font-size: 16px;
  text-align: left;
  white-space: nowrap; }

.enumenu_ul.desk ul li:hover > a {
  background: #edf3e8; }

.header-btm {
  background: #404041;
  float: left;
  width: 100%;
  margin-top: 2px; }
  @media (min-width: 1025px) {
    .header-btm {
      background: -moz-linear-gradient(left, #404041 50%, #1b7977 53%);
      background: -webkit-linear-gradient(left, #404041 50%, #1b7977 53%);
      background: linear-gradient(to right, #404041 50%, #1b7977 53%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404041', endColorstr='#1b7977',GradientType=1 ); } }
  @media (min-width: 1025px) {
    .header-btm .container {
      position: relative;
      background: #404041;
      background: -moz-linear-gradient(left, #404041 75%, #1b7977 25%);
      background: -webkit-linear-gradient(left, #404041 75%, #1b7977 25%);
      background: linear-gradient(to right, #404041 75%, #1b7977 25%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404041', endColorstr='#1b7977',GradientType=1 ); } }

.cover-menu {
  vertical-align: middle; }

.enumenu_ul.desk ul.mega-menu .cover-box-menu a:hover {
  background: #edf3e8; }

.enumenu_ul.desk ul.mega-menu {
  position: absolute;
  top: inherit;
  left: 0;
  right: 0;
  padding: 26px 0; }

.enumenu_ul.desk ul.mega-menu a {
  white-space: inherit;
  text-align: center;
  padding: 30px 48px 35px;
  height: 100%; }

.mega-menu .info-cover-box {
  max-width: 1170px;
  margin: 0 auto;
  position: inherit; }

.mega-menu .info-cover-box.sub-open {
  max-width: 100%; }

.mega-menu .cover-info {
  margin-bottom: 0; }

.toggle-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: -28px;
  left: -2px;
  right: -2px;
  padding: 26px 0px;
  border: 2px solid #80b541; }

.cover-box-menu {
  width: 33.33%;
  float: left;
  border-left: 2px solid rgba(27, 128, 126, 0.12); }

.enumenu_ul.desk ul.mega-menu .cover-box-menu a {
  text-align: left;
  padding: 12px 19px 13px; }

.enumenu_ul.desk ul.mega-menu .cover-box-menu .span-title a {
  padding: 0 19px;
  font-size: 18px;
  font-weight: 700;
  color: #1b807e;
  background: transparent; }

.span-title {
  margin-bottom: 12px; }

.cover-submenu {
  max-width: 1140px;
  margin: 0 auto; }

.mobile-only {
  display: none; }

/*header end here*/
/*header end here*/
/*footer start here*/
.footer-wrap {
  background: #404041;
  padding: 52px 0;
  overflow: hidden; }

.footer-img {
  margin-bottom: 22px; }

.foot-logo {
  max-width: 160px;
  display: inline-block;
  margin-right: 8.3%; }

.foot-logo p, 
.foot-logo a:link,
.foot-logo a:visited {
  color: #ababab;
  font-size: 16px;
  font-weight: 400; }

.foot-logo a:hover {
  color: #80b541; }

.cont-det span {
  color: #fff;
  font-size: 18px;
  display: block;
  font-weight: 400;
  margin-bottom: 4px; }

.get-touch {
  display: inline-block;
  vertical-align: top; }

.cont-det a {
  color: #fff;
  font-weight: normal; }

.call-us {
  margin-bottom: 13px; }

.cont-det {
  display: inline-block; }

.address-cover {
  display: inline-block;
  margin-left: 39px;
  vertical-align: top; }

.address-cover span {
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 6px; }

.address-cover a {
  color: #fff;
  font-size: 18px;
  line-height: 1.3; }

.total-detail a:hover {
  color: #80b541; }

.total-detail a:focus {
  border:1px solid #ff0000; }

.client-comm {
  display: inline-block;
  vertical-align: top;
  max-width: 350px;
  float:right; }

.client-comm p {
  font-size: 25px;
  color: #fff;
  line-height: 1.15;
  padding-bottom: 18px; }

.client-comm span {
  color: #81bb44;
  font-size: 16px; }

.client-comm h4 {
  margin-bottom: 15px; }

.copy-rights p {
  color: #ababab;
}

.footer-menu {
  width: 100%;
  float: left;
  margin-top: 30px;
  border-top: 1px solid #ababab;
  padding-top: 29px; }

.footer-menu li {
  display: inline-block;
  margin: 0 12px 0 0;
  padding: 0 13px 0 0;
  position: relative; }

.footer-menu li:after {
  position: absolute;
  content: '';
  background: #ababab;
  top: 2px;
  height: 16px;
  width: 1px;
  right: 0; }

.footer-menu li:last-child:after {
  display: none; }

.footer-menu a:link,
.footer-menu a:visited {
  font-size: 16px;
  color: #ababab;
  font-weight: 400; }

.footer-menu a:hover {
  font-size: 16px;
  color: #80b541;
  font-weight: 400; }

.footer-menu a:focus {
  border:1px solid #ff0000; }

/*footer end here*/
/*banner start here*/
.banner-wrap {
  position: relative;
  background: #edf3e8;
  overflow: hidden; }

.banner-img {
  background-position: center center;
  left: 0;
  top: -50%;
  bottom: -50%;
  right: 44.5%;
  background-size: cover;
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
  position: absolute; }

.cont-banner {
  max-width: 35%;
  float: right;
  padding: 72px 0 68px; }

.cont-banner span {
  font-size: 35px;
  color: #568028;
  margin-bottom: 1px;
  display: inline-block; }

/*banner end here*/
/*information section start here*/
.title-section {
  text-align: center; }

.title-section h2 { 
  color: #1b807e; 
  margin-bottom: 34px; 
  font-weight: 700; 
  font-size: 30px; 
  line-height: 1; }

.info-wrap {
  padding: 30px 0 20px;
  overflow: hidden; }

.cover-info {
  float: left;
  width: 33.33%;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px; }

.info-box {
  border: 1px solid #e8e8e8;
  display: inline-block;
  border-radius: 5px;
  background: #ffffff;
  padding: 30px 40px 35px;
  height: 100%;
  width: 100%; }

.info-box:focus {
  border:1px solid #ff0000;
}

.img-info {
  height: 60px;
  width: 60px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  line-height: 60px;
  background: #80b541;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 17px;
  transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s; }

.info-cover-box {
  margin: 0 -15px; }

.cover-info p {
  font-size: 18px;
  padding-bottom: 0;
  line-height: 1.25; }

.cover-info h3 { 
  color: #1a7a78; 
  line-height: 1; 
  font-weight: 700; 
  font-size: 25px; 
  margin-bottom: 12px; }

.img-info img {
  margin-top: 12px;
  display: inline-block; }

.info-box:hover {
  background: #edf3e8; }

.info-box:hover .img-info {
  background: #239c96; }

/*information section end here*/
/*latest start here*/
.cont-latest {
  max-width: 33.33%;
  /* position: relative; */
  padding: 47px 0 30px; }

.cont-latest:before {
  position: absolute;
  content: '';
  background: rgba(27, 128, 126, 0.9);
  top: -150%;
  bottom: -150%;
  left: -200%;
  right: 62%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%; }

.latest-wrap {
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  padding-bottom: 16px;
  position: relative; }

.cont-lat {
  position: relative; }

.common-page .cont-lat h2 {
  width:180px; }

.cont-lat h2 { 
    font-size: 30px; 
    font-weight: 700; 
    color: #fff; 
    background-color: #1b807e;
    margin-bottom: 20px; 
    line-height: 1.2; }

.cont-lat h4 { 
    color: #fff;
    width:250px;
    background-color: #1b807e; }

.cont-lat p {
  color: #fff;
  background-color: #1b807e;
  font-size: 18px;
  max-width: 220px;
  padding-bottom: 16px; }

.inner-page .link-dtl {
  max-width: 814px; }

.info-cover-box {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.info-box p > span {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  color: #757575; }

.news-box .cover-info a {
  padding: 26px 35px 24px; }

/*latest end here*/
/*contact-page style start here*/
.common-page-link {
  margin: 0;
  width: 100%;
  text-align: left;
  background: #edf3e8;
  padding: 18px 0 15px;
  margin-bottom: 30px; }

.common-page-link h2 {
  color: #568028; }

.common-page-link li {
  list-style: none;
  float: left;
  width: auto;
  padding: 0px 10px;
  position: relative; }

.common-page-link ul {
  margin: 5px 0; }

.common-page-link li:after {
  content: ":";
  position: absolute;
  left: -1px;
  top: 2px;
  font-size: 16px;
  color: #507826;
  font-family: 'Bariol';
  font-weight: bold; }

.common-page-link li:first-child {
  padding-left: 0; }

.common-page-link li:first-child:after {
  display: none; }

.common-page-link li a, .common-page-link li span {
  font-size: 16px;
  color: #507826;
  font-family: 'Bariol';
  font-weight: normal;
  display: inline-block;
  line-height: 1.4; }

.common-page-link li a:hover {
  color: #000; }

.common-page-link li a:focus {
  border:1px solid #ff0000; }

.contact-detail {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 32px; }

.usefull-link {
  width: 34.2%;
  float: left;
  padding: 127px 0; }

.usefull-link:after {
  z-index: -1;
  position: absolute;
  content: '';
  background: rgba(27, 128, 126, 0.9);
  top: -94%;
  bottom: -94%;
  left: -200%;
  right: 62%;
  border-top-right-radius: 55%;
  border-bottom-right-radius: 55%; }

.usefull-link h5 {
  color: #fff;
  font-size: 25px;
  font-family: 'Bariol';
  font-weight: bold;
  margin-bottom: 24px; }

.link-dtl a, .btn {
  width: 100%;
  padding: 11px 9px 11px 12px;
  background: #fff;
  border-radius: 4px;
  color: #404041;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 18px; }

.link-dtl a:focus {
  border:1px solid #ff0000;
}

.link-dtl a i, .btn i {
  color: #1b807e;
  text-align: right;
  float: right; }

.link-dtl a:hover, .btn:hover {
  background: #80b541; }

.link-dtl {
  max-width: 260px; }

.get-in-touch {
  width: 100%;
  float: left;
  text-align: left;
  padding: 17px 0; }

.get-in-touch .get-touch {
  width: 100%;
  display: block; }

.get-in-touch p {
  font-size: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d7edec;
  margin-bottom: 26px; }

.get-in-touch h4 {
  color: #1a7f7e;
  margin-bottom: 21px; }

.get-in-touch .cont-det span {
  color: #404041;
  font-size: 18px;
  margin-bottom: 2px; }

.get-in-touch .cont-det a {
  color: #1b807e;
  font-size: 18px; }

.get-in-touch .address-cover span {
  color: #404041;
  font-size: 18px;
  margin-bottom: 4px; }

.get-in-touch .address-cover a {
  color: #1b807e;
  font-size: 18px;
  font-weight: 700; }

.get-in-touch .cont-det {
  display: block; }

.get-in-touch .address-cover, .mail-us {
  display: block;
  margin: 0; }

.contact-page .info-wrap {
  margin-top: -71px;
  padding: 0; }

.get-in-touch .total-detail {
  padding: 0 1px; }

.get-in-touch .call-us {
  margin-bottom: 6px; }

.contact-cover .info-box {
  padding: 24px 48px 17px; }

.contact-cover .img-info {
  margin-bottom: 20px; }

.inner-page .footer-wrap {
  margin-top: 28px; }

.contact-page .left-section .round-cont {
  margin: 127px 0px;
  padding: 0 0 0; }

.get-in-touch .cont-det a:hover {
  color: #80b541; }

.get-in-touch .address-cover a:hover {
  color: #80b541; }

.cont-banner {
  position: relative; }

.cont-banner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url("/site-elements/images/symbol.png");
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1; }


/*Updated contact page */
.contact-page-left-column {
  float: left;
  width: 10%;
  margin-right: 20px;
}
.contact-page-right-column {
  float: left;
  width: 83%; }
.contact-page-call-us span,
.contact-page-mail-us span {
  color: #404041;
  font-size: 18px;
  margin-bottom: 2px; }

.contact-page-call-us a,
.contact-page-mail-us a {
  color: #1b807e;
  font-size: 18px; }

.contact-page-address-cover span {
  color: #404041;
  font-size: 18px;
  margin-bottom: 4px; }

.contact-page-address-cover a {
  color: #1b807e;
  font-size: 18px;
  font-weight: 700; }

.contact-page-cont-det {
  display: block; }

.contact-page-address-cover, 
.contact-page-mail-us,
.contact-page-call-us {
  display: block;
  clear:left;
  margin:15px 0;
  float:left;
  width:100%; }

.contact-page-call-us i,
.contact-page-mail-us i,
.contact-page-address-cover i {
  font-size: 32px;
  color: #1b807e;
  margin-bottom:15px;}

/*contact-page style end here*/
/*my-pension style end here*/
.my-pension .cont-latest {
  max-width: 60%; }

.my-pension .cont-lat p {
  max-width: 500px; }

.my-pension .cont-latest:before {
  right: 48%; }

.my-pension .common-page-link {
  margin-bottom: 0; }

.my-pension .footer-wrap {
  margin-top: 0; }

/*my-pension style end here*/
/*my-pension-2 style start here*/
.my-pension-v2 .info-cover-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.my-pension-v2 .info-box:hover {
  background: #fff; }

.my-pension-v2 .info-box {
  padding: 30px 30px 22px;
  height: 100%;
  width: 100%; }

.my-pension-v2 .info-box p {
  padding: 0 6%; }

.info-box h5 a {
  font-size: 25px;
  color: #1a7a78;
  line-height: 1;
  font-weight: 700;
  font-family: 'Bariol'; }

.info-box h5 a:hover {
  color: #000; }

.info-box ul {
  width: 100%;
  text-align: left;
  display: inline-block;
  border-top: 1px solid #edf3e8;
  padding-top: 20px;
  margin-top: 35px; }

.info-box ul li {
  list-style: none;
  width: 100%;
  text-align: left; }

.info-box ul li a {
  line-height: 1;
  padding: 13px 22px;
  display: inline-block;
  width: 100%; }

.info-box ul li a:hover {
  background: #edf3e9;
  color: #9c9989; }

/*my-pension-2 style end here*/
/*existing members start here*/
.cover-drop > a {
  width: 100%;
  padding: 11px 9px 11px 10px;
  background: #fff;
  border-radius: 4px;
  color: #404041;
  display: inline-block;
  line-height: 1; }

.cover-drop > a:focus {
  border:1px solid #ff0000; }

.cover-drop span i {
  font-size: 18px; }

.download-list {
  padding-top: 15px; }

.download-item {
  padding-bottom: 15px; }

p.download-description {
  padding-top:10px;
  padding-bottom:10px;
  font-size: 18px; }

.listing-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 16px; }

.left-section .round-cont h5 {
  margin-bottom: 24px;
  color: #fff; }

.left-section {
  float: left;
  width: 30%;
  padding-right: 48px; }

.left-section h2.section-heading { 
  font-size: 25px; 
  color: #1a7a78; 
  line-height: 1; 
  font-weight: 700; }

.acc-detail {
  display: none; }

span.acc-title {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 40px;
  vertical-align: middle;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  color: #1b807e;
  -moz-transition: all 0.5s ease-in-out 0s; }

.cover-drop {
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 20px; }

span.acc-title.acc-minus {
  transform: rotate(90deg);
  color: #80b541; }

.acc-detail a {
  font-size: 18px;
  color: #6d6d6d;
  padding: 11px 46px 11px;
  width: 100%;
  display: inline-block; }

.acc-detail a:hover {
  background: #edf3e8; }

.acc-detail a:focus {
  border:1px solid #ff0000; }

.acc-detail li.active a {
  background: #edf3e8; }

.acc-detail ul {
  margin-bottom: 4px; }

.cover-drop > a.acc-open {
  background: #edf3e8;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.round-cont {
  position: relative; }

.round-cont:after {
  position: absolute;
  content: '';
  background: url("/site-elements/images/bg-box.png") no-repeat;
  left: -100%;
  right: -39px;
  background-position: right center;
  z-index: -1;
  height: 577px;
  transform: translateY(-50%);
  top: 50%; }

.round-cont:before {
  position: absolute;
  content: '';
  right: 100%;
  left: -1000%;
  bottom: 0;
  height: 577px;
  transform: translateY(-50%);
  top: 50%;
  background: #1b807e;
  z-index: -1; }

.left-section .round-cont {
  margin: 224px 0;
  padding: 2px 55px 0 0; }

.round-cont p {
  font-size: 16px;
  max-width: 100%; }

.btn-green {
  width: auto;
  padding: 10px 10px 11px 11px;
  border: 1px solid #e8e8e8; }

.btn-green i {
  margin-left: 10px; }

.btn-green:focus {
  border:1px solid #ff0000; }

.right-section {
  float: left;
  width: 63%;
  padding: 0 0 0 47px;
  margin-top: 3px; }

.right-section h2, 
.results-container h2,
.cont-right-box h3,
.results-container h3 { 
  margin-bottom: 22px; 
  line-height: 1; 
  font-weight: 700; 
  font-size: 25px; 
  color: #1b807e }

.right-section h3, 
.cont-right-box h3,
.results-container h3 { 
  margin-bottom: 18px; 
  line-height: 1; 
  font-weight: 700; 
  font-size: 18px; 
  color: #1b807e }

.right-section > p,
.results-container p {
  font-size: 18px;
  line-height: 1.25;
  padding-bottom: 25px; }

.right-section ul,
.results-container ul,
.right-section ol,
.results-container ol { 
  margin-bottom: 10px; 
  margin-left: 45px; }

.right-section ul li,
.results-container ul li { 
  list-style-type: square; 
  font-size: 18px; 
  line-height: 1.29; 
  color: #1c1c1c; 
  font-weight: 400; 
  padding-bottom: 15px; }

.right-section ol li,
.results-container ol li { 
  list-style-type: decimal;
  font-size: 18px; 
  line-height: 1.29; 
  color: #1c1c1c; 
  font-weight: 400; 
  padding-bottom: 15px; }

.right-section a:link, 
.right-section a:visited { 
  color: #1b807e; 
  text-decoration: underline !important; 
  font-weight: bold; }

.right-section a:not([href*='derbyshire.local']):not([href*='derbyshirepensionfund.org.uk']):not([href*='pensions-preview']):not([href*='perimeter.dcc']):not([href*='cookiepedia']):not([href*='mailto']):not([title^='Call us']):not([href^='#']):not([href^='/']):not([class^='cta-button']):not([class^='CookieSettingsButton']):not([id*='Anchor']):after {  
    content: url("/site-elements/images/external-link-icon.png");
    margin: 0 5px; } 

.right-section a:hover { 
  color: #1b807e; 
  text-decoration: none !important; 
  font-weight: bold; }

.right-section a:focus {
  border:1px solid #ff0000; }

.right-section blockquote {
  padding-left:20px;
  margin-bottom:20px;
  border-left:4px solid #e8e8e8; }
  
.right-section blockquote p {
  font-size: 18px;
  line-height: 1.25;
  padding-bottom: 25px;
  font-style:italic; }

.results-container a:link, 
.results-container a:visited {
  color: #1b807e;
  font-size: 22px; 
  text-decoration: underline !important; 
  font-weight: bold;
  line-height: 28px; }
  
.results-container a:hover { 
  color: #1b807e; 
  font-size: 22px; 
  text-decoration: none !important; 
  font-weight: bold;
  line-height: 28px; }

.cont-right-box {
  border-top: 1px solid #d7edec;
  /*margin-top: 25px;*/
  padding-top: 29px; }

.cont-right-box > p {
  padding-bottom: 24px; }

.cont-right-box .btn {
  font-size: 16px;
  padding: 11px 15px 11px 10px;
  margin-bottom: 3px; }

.cont-right-box .btn-green i {
  margin-left: 15px; }

.common-page .info-wrap {
  margin-top: 50px; }

/*existing members end here*/
/*Contributions start here*/
.downloads {
  margin-bottom: 30px; }

.small-txt {
  margin-top: 22px; }

.small-txt p {
  padding-bottom: 15px; }

.inner-detail .cont-right-box {
  margin-top: 11px; }

.inner-detail .cont-right-box > p {
  padding-bottom: 15px; }

.inner-detail .left-section .round-cont {
  margin: 71px 0; }

.inner-detail .round-cont:after {
  transform: none;
  top: -49px; }

.inner-detail .round-cont:before {
  top: -49px;
  transform: none; }

.inner-detail .info-wrap {
  margin-top: -93px; }

.inner-detail .right-section {
  margin-bottom: 100px; }

/*Contributions end here*/
/*Good practice start here*/
.right-section figure {
  width: 100%;
  margin: -49px 0 30px 0; }

.right-section figure img {
  width: 100%; }

.dropdown-cover {
  margin-top: 30px; }

.footer-menu p {
  font-size: 16px;
  color: #ababab;
  font-weight: 400;
  padding-bottom: 0;
  font-family: 'Bariol', sans-serif; }

.footer-menu a {
  color: #ababab;
}

/*Good practice end here*/
/*log-in start here*/
.login-page .cont-latest {
  padding: 100px 0 80px; }

.cont-latest:before {
  background: rgba(27, 128, 126, 1.0); }

.login {
  width: 256px;
  text-align: left; }

.sys_cms-form-page {
  width:100%; }

.login ul,
.sys_cms-form-page ul {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-left: 0px; }

.login ul li {
  list-style: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; }

.sys_cms-form-page ul li {
  list-style: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 0px; }

.login ul li label {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  text-transform: capitalize;
  line-height: 1.4;
  display: block;
  text-align: left;
  margin-bottom: 5px; }

.sys_fieldlabel,
.sys_legend {
  color: #1c1c1c;
  font-size: 18px !important;
  font-weight: normal !important;
  font-family: 'Bariol', sans-serif !important;
  line-height: 1.4;
  display: block;
  text-align: left;
  margin-bottom: 5px; }

.login ul li:last-child,
.sys_cms-form-page ul li:last-child {
  margin-bottom: 0; }

.sys_sectionbreak-text {
  margin-top:20px;
  margin-bottom: 20px; }

.sys_sectionbreak p {
  padding-bottom:0px; }

.login ul li input {
  width: 100%;
  background: #fff;
  height: 40px;
  padding: 5px 10px;
  color: #757575;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: none; }

.sys_fieldcontent input[type=text],
.sys_fieldcontent input[type=email],
.sys_fieldcontent input[type=tel],
.sys_fieldcontent input[type=number],
.sys_fieldcontent textarea,
.sys_fieldcontent select {
  width: 100%;
  background: #e5e5e5;
  height: 40px;
  padding: 5px 10px;
  color: #1c1c1c;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: none; }

.sys_fieldcontent input[type=text]:focus,
.sys_fieldcontent input[type=text]:focus,
.sys_fieldcontent input[type=email]:focus,
.sys_fieldcontent input[type=tel]:focus,
.sys_fieldcontent input[type=number]:focus,
.sys_fieldcontent textarea:focus,
.sys_fieldcontent select:focus {
  border:1px solid #ff0000; }

.sys_fieldcontent textarea {
   height:200px; }
  
.sys_fieldcontent input[type=checkbox] {
  position: relative;
  margin-right:20px;
  -webkit-appearance: checkbox;
  cursor: pointer; }

.sys_fieldcontent input[type=checkbox]:focus {
  outline:1px solid #ff0000; }

.sys_pagebreak button {
  padding: 10px 15px;
  margin-right: 15px;
  border: none;
  background: #1b807e;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer; }

button.submit-button,
.sys_form-submit {
  padding: 10px 15px;
  border: none;
  background: #1b807e;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer; }

button.submit-button:hover,
.sys_form-submit:hover {
  background: #80b541; }

.sys_form-submit:focus {
  border:1px solid #ff0000; }

button.submit-button i,
.sys_form-submit i {
  font-size: 14px;
  margin-left: 5px; }

.sys_cms-form-validationsummary {
  display: none; }

.sys_cms-form-item label.sys_cms-form-error {
    float: left;
    color: #b94a48;
    margin: 5px 0px 15px 0px;
    background-color: #f2dede;
    border: 1px solid #eed3d7;
    border-radius: 4px;
    padding: 7px 12px 5px 34px;
    font-family: 'Bariol', sans-serif;
    background-image:url(/site-elements/images/warning-triangle.jpg);
    background-repeat:no-repeat;
    background-position:9px 50%;
    font-weight:bold; }

.sys_cms-form-item.sys_multiline label.sys_cms-form-error {
  margin-left: 0;
  width: 593px; }

.sys_cms-form-item input.sys_cms-form-error,
.sys_cms-form-item select.sys_cms-form-error,
.sys_cms-form-item textarea.sys_cms-form-error {
  border-color: #B00404;
  border-width: 2px; }

.password-forgot {
  width: 100%;
  text-align: left;
  margin: 10px 0 30px 0; }

.password-forgot a {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  position: relative; }

.password-forgot a:after {
  content: "";
  border-bottom: 1px solid #54a09e;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0; }

.password-forgot a:hover {
  color: #80b541; }

.successmsg {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  display: none; }

.error {
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  font-size: 16px;
  color: #f30606;
  margin-top: 5px; }

/*log-in end here*/

/*forms*/

.form {
  width: 100%;
  text-align: left;
  margin-bottom:20px; }

.form .form-field {
  list-style: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; }

.form .form-field label {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  line-height: 1.4;
  display: block;
  text-align: left;
  margin-bottom: 5px; }

.sys_required {
  color:#000000;
  margin-left:5px; }

.form p {
  font-size: 18px; }

.form .form-field input,
.form .form-field select {
  width: 100%;
  background: #e5e5e5;
  height: 40px;
  padding: 5px 10px;
  color: #1c1c1c;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: none; }

input.submit-button {
  height: 30px;
  padding: 5px 10px;
  border: none;
  background: #80b541;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Bariol', sans-serif;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer; }

.sys_sectionbreak-text p {
  font-size: 18px;
  margin-bottom: 18px; }

#sectiondescription_28-74226 {
  margin-bottom: 0px; }

/*forms end here*/

.hover-menu:after {
  position: absolute;
  content: '';
  top: 178px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99; }

.cover-drop.active .acc-detail {
  display: block; }

.acc-open .acc-minus + .acc-open {
  display: block; }

.row {
  padding-bottom: 28px;
  border-bottom: 1px solid #d7edec;
  margin: 25px 15px;
  font-size: 18px; }

.row .summary span {
  color: #1a7a78;
  font-weight: bold;
}

  @media (min-width: 767px) {
    .row {
      margin: 25px 0; } }

  .row:last-of-type {
    border: 0; }

.row .title h2 { 
  margin-bottom: 22px; 
  line-height: 0; }

.row .title h2 a { 
  font-size: 22px; 
  color: #1a7a78; 
  font-weight: 700; 
  line-height: 1; }
.row .title img.download {
  margin-right: 10px;
}

  .row .lower {
    width: 100%;
    position: relative; }

    @media (min-width: 767px) {
      .row .lower {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: wrap;
        -moz-flex-direction: wrap;
        -ms-flex-direction: wrap;
        flex-direction: row; } }
    .row .lower > * {
      line-height: 28px; }

      @media (min-width: 767px) {
        .row .lower > * {
          display: inline-flex; } }

    .row .lower .summary {
      width: 100%;
      padding-top: 15px; }

      @media (min-width: 767px) {
        .row .lower .summary {
          /*max-width: calc(100% - 200px);*/
          max-width: 100%;
          padding-right: 30px;
          padding-top: 15px } }

    .row .lower .link {
      width: 40%;
      position: relative;
      margin-top: 30px; }

      @media (min-width: 767px) {
        .row .lower .link {
          margin-top: 0; } }

      .row .lower .link a {
        background-color: #80b541;
        width: 100%;
        line-height: 50px;
        color: white;
        font-size: 20px;
        text-align: center;
        height: 50px;
        display: block; }

        @media (min-width: 767px) {
          .row .lower .link a {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) perspective(1px); } }

        .row .lower .link a:hover {
          background-color: #587d2d; }

      @media (min-width: 767px) {
        .row .lower .link {
          width: 150px; } }

.search-cover {
  display: inline-block;
  vertical-align: middle;
  height: 72px;
  width: 100%;
  background: #1a7a78; }

  @media (min-width: 1025px) {
    .search-cover {
      height: 46px;
      width: auto; } }

  .search-cover .sys_search-query-control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative; }

    .search-cover .sys_search-query-control .sys_search-label { display:none; }
    .search-cover .sys_search-query-control input {
      background: transparent;
      color: #fff;
      font-size: 18px;
      font-family: 'Bariol', sans-serif;
      font-weight: 400;
      transition: ease width 0.5s; }

      .search-cover .sys_search-query-control input:first-of-type {
        padding: 0 15px;
        width: calc(100% - 50px); }

      .search-cover .sys_search-query-control input:focus {
        border:1px solid #ff0000;
      }

      .search-cover .sys_search-query-control input[type="submit"] {
        padding: 0 20px;
        cursor: pointer;
        background-image: url("/site-elements/images/search-filter-icon.png");
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: center;
        text-indent: -5000px;
        overflow: hidden;        
        width: 72px;
        height: 72px; }

        .search-cover .sys_search-query-control input[type="submit"]:hover {
          background-color: #176d6c; }

        @media (min-width: 1025px) {
          .search-cover .sys_search-query-control input[type="submit"] {
            width: 50px;
            height: 46px; } }
table {
  border-collapse: collapse;
  margin-bottom: 25px;
}
table, td, th {
  font-weight: 400;
  font-family: 'Bariol';
  font-size: 18px;
  border: 1px solid #ccc;
  padding: 1.125rem;
  text-align: left;
}
td p {
  font-size: 18px;
  color:#000000;
}
table caption {
  padding-bottom:15px;
}
@media (max-width: 767px) {
    table, td, th {
    word-break: break-all;
  }
}

.Pagination {
  padding-top: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 40px;
  float: right;
}
.Pagination .PageNumbers {
  float: right;
}
.Pagination .PageNumbers a:link,
.Pagination .PageNumbers a:visited {
  padding: 8px 15px;
  color: #ffffff;
  background: #1b7977;
  display: inline-block;
  margin-bottom: 5px;
  text-decoration:none !important;
  font-weight: normal;
}
.Pagination .PageNumbers a:hover {
  color: #1b7977;
  background: #1b7977;
  padding: 8px 15px;
  text-decoration:none !important;
  font-weight: normal;
}
.Pagination .PageNumbers .PageLinkDisabled {
    font-size: 18px;
    font-weight: normal;
    padding-left: 10px;
    padding-right: 10px;
}
.Pagination .PageNumbers span.PageLink {
  width: auto;
  background: none;
  float: none;
}
.Pagination .PageLinkSelected a:link,
.Pagination .PageLinkSelected a:hover,
.Pagination .PageLinkSelected a:visited {
  padding: 8px 15px;
  width: auto;
  color:#ffffff;
  background:#404041;
  font-weight:normal;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 5px;
}

a.skip-to-content {
  left:-999px;
  position:absolute;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  z-index:-999;
}
a.skip-to-content:focus, 
a.skip-to-content:active {
  color: #ffffff;
  background-color:#404041;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow:auto;
  margin: 10px 35%;
  padding:10px;
  text-align:center;
  font-size:18px;
  font-weight: 400;
  font-family: 'Bariol';
  z-index:999;
}
a.cta-button:link,
a.cta-button:visited {
  padding: 10px 15px;
  border: none;
  background: #1b807e;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.65;
  font-family: 'Bariol', sans-serif;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
}
a.cta-button:hover {
  background: #80b541;
}
a.cta-button:focus {
  border: 1px solid #ff0000;
}
.ui-datepicker-calendar {
  background-color:#e5e5e5;
}
.ui-datepicker-header {
  padding: 10px;
  background-color:#e5e5e5;
}
.ui-datepicker-title {
  font-size: 18px;
  padding: 10px 0px;
}
.ui-datepicker-next {
  float: right;
}
.ui-datepicker a {
  color: #1c1c1c;
}
.sys_instructions {
  background-color:#edf3e8;
  padding:20px;
  color:#507826;
  border-radius:4px;
}

a.CookieSettingsButton.ot-sdk-show-settings{
  padding: 10px 15px;
  border: none;
  background: #1b807e;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.65;
  font-family: 'Bariol', sans-serif;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
}

a.CookieSettingsButton.ot-sdk-show-settings:hover{
  background: #80b541;
}