header {
  border-bottom: 1px solid #dddddd;
}
header .search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
header .search-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #154c39;
  width: 100%;
  height: 100px;
  z-index: -1;
}
header .search-wrapper form#search-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
header .search-wrapper input {
  background: #fff;
  border: 0px;
  padding: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
header input#tbSearch {
  padding: 0.7rem 0 0.7rem 0.7rem;
  border: none;
  z-index: 2;
}
@media only screen and (max-width: 800px) {
  header input#tbSearch {
    width: 0;
    padding: 0;
  }
  header input#tbSearch.on {
    width: 10rem;
    padding: 0.7rem 0 0.7rem 0.7rem;
  }
}
header input.searchbtn {
  font-size: 0em;
  cursor: pointer;
  width: 40px;
  height: 41px;
  background-image: url(/images/svg/Search-new.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 800px) {
  header .sub-nav-wrapper {
    display: none;
  }
}
header .nav-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 4rem;
  }
  header .nav-wrapper .logo {
    left: 1.5rem;
    /*top: 1.11rem;*/
  }
  header .nav-wrapper .logo a {
    background-position: 0 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    /*height: 75px;
                    width: 114px;*/
  }
}
header .nav-wrapper #🍔 {
  display: none;
}
header .nav-wrapper #🍔:checked ~ label[for="🍔"] span {
  background-color: transparent;
}
header .nav-wrapper #🍔:checked ~ label[for="🍔"] span::before,
header .nav-wrapper #🍔:checked ~ label[for="🍔"] span::after {
  margin-top: 0;
  -webkit-transition-delay: 0, 0.2s;
          transition-delay: 0, 0.2s;
}
header .nav-wrapper #🍔:checked ~ label[for="🍔"] span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .nav-wrapper #🍔:checked ~ label[for="🍔"] span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .nav-wrapper #🍔:checked ~ nav {
  background-color: white;
  width: 100%;
}
header .nav-wrapper #🍔:checked ~ nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .nav-wrapper label[for="🍔"] {
  display: none;
  font-size: 2rem;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper label[for="🍔"] {
    display: block;
    cursor: pointer;
    height: 1.5rem;
    width: 1.5rem;
    margin-top: 1rem;
  }
  header .nav-wrapper label[for="🍔"] span {
    display: block;
    width: 1.5rem;
    height: 0.25rem;
    background-color: black;
    position: relative;
  }
  header .nav-wrapper label[for="🍔"] span::before,
  header .nav-wrapper label[for="🍔"] span::after {
    content: "";
    display: block;
    position: absolute;
    width: 1.5rem;
    height: 0.25rem;
    background-color: black;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
  }
  header .nav-wrapper label[for="🍔"] span::after {
    margin-top: -0.5rem;
  }
  header .nav-wrapper label[for="🍔"] span::before {
    margin-top: 0.5rem;
  }
}
header .nav-wrapper input.nav-toggle {
  display: none;
}
header .nav-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
header .nav-wrapper nav {
  padding: 0.5em 0 0rem 2rem;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav {
    position: absolute;
    top: 100%;
    z-index: 2;
    left: 0;
    padding: 1rem;
  }
}
header .nav-wrapper nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
  }
  header .nav-wrapper nav > ul label {
    position: absolute;
    right: 2rem;
    margin-top: -2px;
    width: 20px;
    height: 20px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    cursor: pointer;
  }
  header .nav-wrapper nav > ul input:checked ~ label {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .nav-wrapper nav > ul label::before,
  header .nav-wrapper nav > ul label::after {
    content: "";
    background-color: black;
    position: absolute;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  header .nav-wrapper nav > ul label::before {
    content: "";
    width: 2px;
    height: 20px;
    margin: 0 9px;
  }
  header .nav-wrapper nav > ul label::after {
    content: "";
    width: 20px;
    height: 2px;
    margin: 9px 0;
  }
}
header .nav-wrapper nav > ul > li {
  padding: 1rem 2rem 2rem 2rem;
}
@media (min-width: 801px) and (max-width: 950px) {
  header .nav-wrapper nav > ul > li {
    padding: 1rem 1rem 2rem 1rem;
  }
}
@media only screen and (min-width: 801px) {
  header .nav-wrapper nav > ul > li:last-child {
    padding: 1rem 0 2rem 2rem;
  }
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav > ul > li {
    padding: 0.8rem 1rem 0.5rem 1rem;
  }
}
header .nav-wrapper nav > ul > li > a {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
header .nav-wrapper nav > ul > li > a:last-child:after {
  display: none;
}
header .nav-wrapper nav > ul > li > a:after {
  bottom: 1px;
  content: "\f502";
  font-family: Genericons;
  font-size: 0.55em;
  position: absolute;
  right: -16px;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav > ul > li > a:after {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 801px) {
  header .nav-wrapper nav > ul > li:hover a {
    color: #14aa00;
  }
}
header .nav-wrapper nav > ul > li:hover input:checked ~ .sub-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  border-top: none;
  width: 100%;
}
@media only screen and (min-width: 801px) {
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 57rem;
    background-color: white;
    z-index: 2;
    padding: 1rem 1rem 2rem 1rem;
    border-top: 1px solid #ddd;
    -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.16);
            box-shadow: 0 4px 13px rgba(0, 0, 0, 0.16);
  }
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20rem;
          flex: 0 0 20rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info {
    display: none;
  }
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info .h1-dropdown-title {
  color: #129800;
  padding: 1rem 0 1rem 0;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info p {
  color: #000000;
  font-size: 14px;
  line-height: 22px;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info .img-wrapper {
  position: relative;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info .img-wrapper img {
  width: 100%;
  height: auto;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav-info .img-wrapper .arrow {
  position: absolute;
  background-image: url("/images/svg/Read more icon 1.svg");
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0.7rem;
  width: 48px;
  height: 48px;
  right: 0.7rem;
}
@media only screen and (min-width: 801px) {
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav {
    -ms-flex-preferred-size: 28rem;
        flex-basis: 28rem;
    padding: 3.4rem 0 0 0;
  }
}
@media only screen and (max-width: 800px) {
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav {
    padding: 1.4rem 0 0 0;
  }
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav label {
  position: absolute;
  right: 2rem;
  width: 20px;
  margin-top: -2px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  cursor: pointer;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav input:checked ~ label {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav label::before,
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav label::after {
  content: "";
  background-color: black;
  position: absolute;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav label::before {
  content: "";
  width: 2px;
  height: 20px;
  margin: 0 9px;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav label::after {
  content: "";
  width: 20px;
  height: 2px;
  margin: 9px 0;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav li + li {
  margin-top: 1rem;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav li a {
  color: black;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav li a:focus,
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper .sub-nav li a:hover {
  color: #14aa00;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper ul.sub-sub-nav {
  padding-left: 1rem;
  /*max-height: 0;
                            overflow: hidden;
                            transition: max-height 0.5s;*/
  display: none;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper ul.sub-sub-nav li {
  margin-top: 1rem;
}
header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper input:checked ~ ul.sub-sub-nav {
  /*max-height: 22rem;*/
  display: block;
}
header .logo {
  position: absolute;
  margin-top: -4.15rem;
}
header .logo a {
  background-image: url(/images/svg/Melrose-new-logo-melrose.svg);
  background-position: 0 0px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  height: 99px;
  width: 158px;
}
header .logo img {
  display: none;
}
@media only screen and (min-width: 801px) {
  header .sub-nav-wrapper {
    display: none;
  }
}
header nav li a,
header .menu li a,
header .footerLinks li a {
  color: #6c6f71;
  text-decoration: none;
}
header nav li a:hover,
header .left-side-menu li a:hover,
header .left-side-menu li.selected > a,
header footer li a:hover,
header nav li.selected > a,
header .menu li.selected > a,
header .selected {
  color: #14aa00;
}
header ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
header ::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
header :-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
header :-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (min-width: 801px) {
  header .not-active {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .has-children .sub-nav-wrapper {
    display: none;
  }
  .has-children.selected:hover .sub-nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  span.arrow-nav {
    position: absolute;
    right: -30px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #6c6f71;
    z-index: 9999;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  span.arrow-nav.toggle {
    -webkit-transform: scaleX(-1) scaleY(-1) rotate(0deg);
            transform: scaleX(-1) scaleY(-1) rotate(0deg);
  }
  header .nav-wrapper nav > ul > li > a::after {
    display: none;
  }
  header .nav-wrapper nav > ul > li a:last-child .arrow-nav {
    display: none;
  }
  header .nav-wrapper nav > ul > li {
    padding: 1rem 2rem 2rem 1rem;
  }
  header .nav-wrapper nav > ul > li:hover .sub-nav-wrapper {
    display: none;
  }
}
footer {
  position: relative;
  background-color: #eee;
  padding: 1rem 0 2rem;
}
footer input {
  display: none;
}
footer label {
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: block;
  width: 0.25rem;
  height: 1.75rem;
  padding-bottom: 0.25rem;
  background-color: #a9abab;
  cursor: pointer;
}
footer label::before,
footer label::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  display: block;
  width: 1rem;
  height: 0.25rem;
  background-color: #a9abab;
}
footer label::before {
  right: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
footer label::after {
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
footer input:not(:checked) {
  margin-bottom: 2rem;
}
footer input:checked ~ label {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
footer .footer-content {
  display: none;
  max-width: 1140px;
  margin: 3rem auto 0;
  padding: 0 0.5rem;
  padding: 0 20px;
}
footer .footer-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
footer .footer-content .footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #a9abab;
}
footer .footer-content .footer-icons li a {
  margin: 0 2rem;
}
footer .footer-content .footer-icons li a::before {
  font-size: 2rem;
}
footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}
footer .footer-content .footer-links > li {
  min-width: 180px;
}
@media only screen and (max-width: 567px) {
  footer .footer-content .footer-links > li {
    min-width: 100%;
  }
}
footer .footer-content .footer-links > li > a {
  display: block;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.125rem;
}
@media only screen and (max-width: 767px) {
  footer .footer-content .footer-links > li > a {
    margin-top: 1rem;
  }
}
footer .footer-content .footer-links .footer-links-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-content .footer-links .footer-links-sub li + li {
  margin-top: 0.5rem;
}
footer .footer-content a {
  text-decoration: none;
}
footer input:checked ~ .footer-content {
  display: block;
}
footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  footer .footer-bottom {
    padding: 1rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom {
    margin-top: 3rem;
  }
}
footer .footer-bottom .copyright p {
  margin: -7px;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .copyright {
    line-height: 1.5rem;
  }
}
footer .footer-bottom .footer-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .footer-extra {
    margin-top: 1rem;
  }
}
footer .footer-bottom .footer-extra li + li {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #6c6f70;
}
@media only screen and (max-width: 767px) {
  footer .footer-bottom .footer-extra li + li {
    margin-left: 0.3rem;
    padding-left: 0.3rem;
    margin-bottom: 0.6rem;
  }
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: helvetica, arial, serif;
  /* TODO */
  overflow-y: scroll;
  /* TODO */
}
html *,
html *::before,
html *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
body {
  color: #6c6f70;
  width: 100%;
}
h1,
h2,
h3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}
h1 {
  color: #1b5642;
  font-size: 1.429em;
  padding: 0 0 1.31951em 0;
  font-weight: bold;
}
h2 {
  color: #1b5642;
  font-size: 1.1em;
  padding: 0 0 1.1em 0;
}
.dkgreen {
  color: #1b5642;
}
.ltgreen {
  color: #00ab00;
}
h3 {
  padding: 0 0 1em 0;
}
h1 span,
h2 span,
h3 span {
  font-weight: 400;
}
a {
  color: #6c6f70;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover,
a:focus {
  color: #14aa00;
  text-decoration: none;
}
.sub-heading {
  color: #154c39;
  font-size: 30px;
  border-bottom: solid 1px #dddddd;
  margin: 0 0 1em 0;
  padding: 0.2em 0;
}
p {
  line-height: 1.4;
  margin-bottom: 1em;
}
span {
  line-height: 1.4;
}
ol {
  list-style-type: decimal;
}
ol > li {
  margin-left: 25px;
}
.border-bottom {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
ul.bullet li {
  background: url(/images/bullet.png) no-repeat 0 5px;
  margin-bottom: 1em;
  padding-left: 14px;
  background-size: 6px 7px;
}
ul.bullet ul li {
  background: url(/images/dash.png) no-repeat 0 5px;
  margin-bottom: 1em;
  padding-left: 14px;
  background-size: 9px 10px;
}
.v-grid-col ul ul,
article > ul ul,
.content > ul ul,
ul.bullet ul {
  margin-left: 25px;
}
article > ul.enclosed li,
.content > ul.enclosed li {
  padding-left: 0;
  background: none;
}
.small {
  font-size: 0.7em;
}
sup {
  font-size: 0.6em;
  vertical-align: super;
}
article table,
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
article table th,
table th {
  font-weight: bold;
}
article table th[align="right"],
.content table th[align="right"],
article table td[align="right"],
.content table td[align="right"] {
  text-align: right;
}
article table th[align="center"],
.content table th[align="center"],
article table td[align="center"],
.content table td[align="center"] {
  text-align: center;
}
.pdf {
  background: url(/images/pdf.png) right center no-repeat;
  display: inline-block;
  height: 21px;
  overflow: hidden;
  padding-top: 21px;
  width: 20px;
}
.ical {
  background: url("/images/svg/Financialcalendar.svg") center no-repeat;
  height: 2rem;
  overflow: hidden;
  width: 3rem;
  padding-top: 38px;
}
.external {
  background: url(/images/external.png) left center no-repeat;
  padding-left: 20px;
}
h1.content-page-h1 {
  font-size: 34px;
  font-weight: bold;
  line-height: 44px;
  position: relative;
  color: #fff;
  padding: 1.45rem 5rem 1.45rem 1.5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#5fa17c), to(#88bea0));
  background: linear-gradient(0deg, #5fa17c 0%, #88bea0 100%);
}
h1.content-page-h1:after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url("/images/Melrose-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  width: 92px;
  bottom: 0;
  height: 59px;
}
@media only screen and (max-width: 767px) {
  h1.content-page-h1 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.15em;
    padding: 1.45rem 2.5rem 1.45rem 1.5rem;
  }
  h1.content-page-h1:after {
    width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  input.search.input {
    width: 60%;
  }
}
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1140px;
  margin: 2rem auto 0 auto;
  padding: 0 20px;
}
/* ARTICLE LIST */
.results .resultList {
  padding-left: 0;
}
.results .resultList li {
  border-bottom: 1px solid #d4d4d4;
  display: block;
  margin-bottom: 1em;
  padding: 1rem 0;
  width: 100%;
  background: none;
}
.results .resultList span.title,
.results .resultList a {
  color: #1b5642;
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.results .resultList a.img,
.results .resultList .extraTitle,
.results .resultList .title {
  margin-bottom: 1em;
}
.results .resultList a:hover {
  text-decoration: underline;
}
.results .resultList a[href="#"]:hover {
  text-decoration: none;
}
.resultList .date,
article .date {
  display: block;
  font-weight: 700;
  width: 80%;
}
.resultList .pdf,
article .pdf,
.resultList .ical,
article .ical {
  display: block;
  float: right;
  margin-right: 3%;
  width: 3rem;
}
.resultList .article {
  display: block;
  width: 100%;
}
.resultList .extraTitle,
.resultList .extraP {
  display: block;
}
/* ENCLOSED */
.enclosed {
  background-color: #f5f5f5;
  border: 1px solid #eaeaea;
  margin-right: 0.75%;
  padding: 1em 2%;
  margin-bottom: 2em;
}
.enclosed h4 {
  margin-bottom: 0.75em;
}
.enclosed li {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.enclosed li:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.enclosed li span {
  display: block;
}
.enclosed span.adr,
.enclosed span.reg,
.enclosed span.registered {
  margin-bottom: 1em;
}
/* BREADCRUMB */
.breadcrumb {
  width: 100%;
  max-width: 1140px;
  padding: 0 0 29px 0;
  margin: -10px auto 0 auto;
}
.breadcrumb ul {
  margin: 0;
  padding-left: 0;
}
.breadcrumb li {
  font-size: 0.75em;
  display: inline-block;
}
.breadcrumb li a {
  color: #bbb;
  margin: 0 0 0 5px;
  text-decoration: none;
}
.breadcrumb li.current-item {
  color: #129800;
}
.breadcrumb li.item-bread:after {
  content: ">";
  padding-left: 0.5em;
  color: #bbb;
}
/* GOVERNANCE */
.gov-top {
  margin-top: 3em;
}
.gov-top h3 {
  text-align: center;
  margin-top: -3em;
}
.gov-top ul {
  background: none;
  margin: 1em 0;
  text-align: center;
  padding-left: 0;
  list-style: none;
}
.gov-top ul li {
  background: none;
  margin: 0 0 0.5em;
  font-weight: bold;
}
.gov-top ul li span {
  font-weight: normal;
}
.gov-bottom {
  margin-top: 5em;
  margin-bottom: 5em;
  position: relative;
}
@media (max-width: 35em) {
  .gov-bottom {
    margin-top: 0;
  }
}
.gov-bottom:after {
  border-left: 1px solid #6f6f6f;
  border-right: 1px solid #6f6f6f;
  border-bottom: none;
  content: "";
  display: block;
  height: 6em;
  margin-top: -6em;
  margin-left: 0;
  position: absolute;
  width: 0;
  left: 50%;
}
@media (max-width: 35em) {
  .gov-bottom:after {
    visibility: hidden;
  }
}
.gov-bottom:before {
  border: 2px solid #6f6f6f;
  border-bottom: none;
  content: "";
  display: block;
  height: 3em;
  margin-top: -3em;
  margin-left: 17%;
  position: absolute;
  width: 66%;
  left: 0;
}
@media (max-width: 35em) {
  .gov-bottom:before {
    visibility: hidden;
  }
}
.gov-bottom .grey {
  position: relative;
}
.gov-bottom .grey ul {
  padding-left: 0;
  list-style: none;
}
.gov-bottom h3 {
  text-align: center;
  /*position: absolute;
        bottom: -3em;
        left: 0;
        width: 100%;

        @media (max-width:35em) {
            position: static;
        }*/
}
.gov-bottom ul {
  background: none;
  text-align: center;
}
.gov-bottom ul li {
  background: none;
  margin: 0 0 0.5em;
  font-weight: bold;
}
.gov-bottom ul li span {
  font-weight: normal;
}
/* GROUP */
/*.group {
  min-height: 20em;
  margin-bottom: 1em;
}

.group .info {
  margin-top: 0;
}

.group .logos {
  background: #f5f5f5;
  display: inline-block;
  padding: 1em 3% 1em;
  text-align: center;
  width: 33.5%;
  min-height: 300px;
}

.group .logos img {
  margin-bottom: 0.5em;
  width: 100%;
}

.group h3 {
  padding-top: 1em;
}

.group h3 a {
  color: @green-dark2;
  text-decoration: none;
}*/
/*MENU*/
.left-side-menu {
  width: 25%;
}
.left-side-menu.hide {
  display: none;
}
@media only screen and (max-width: 800px) {
  .left-side-menu {
    display: none;
  }
}
.left-side-menu > ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}
.left-side-menu > ul > li {
  padding: 14px 6% 14px 0;
  margin: 0;
}
.left-side-menu > ul > li:first-child {
  padding: 0 6% 14px 0;
}
.left-side-menu > ul > li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
}
.left-side-menu ul .subNav {
  margin: 0;
  list-style-type: none;
  padding-left: 1rem;
}
.left-side-menu ul .subNav li + li {
  margin-top: 0.5rem;
}
.left-side-menu ul .subNav li a {
  font-weight: 500;
  font-size: 0.95rem;
}
.left-side-menu ul .subNav li:first-child {
  padding-top: 0.5rem;
}
ul.tertiary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1.5rem -0.5rem;
  padding: 0;
  padding-bottom: 2rem;
  border-bottom: 2px solid #129800;
  list-style: none;
}
ul.tertiary li {
  width: 33.33%;
  border: 0.5rem solid transparent;
}
@media all and (max-width: 64rem) {
  ul.tertiary li {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media all and (max-width: 33rem) {
  ul.tertiary li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
ul.tertiary li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f4f4f4;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding-left: 68px;
  padding-right: 0.5rem;
  height: 60px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
ul.tertiary li a:before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url("/images/Anchored Icon.png");
  background-size: cover;
  width: 60px;
  top: 0;
  height: 60px;
}
.search-wrap {
  padding: 1rem 0;
}
.search-wrap #search-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-wrap .search-btn {
  border: 1px solid #bfbfbf;
  padding: 0.7rem 0 0.7rem 0.7rem;
  outline: none;
}
.search-wrap .submit-btn {
  font-size: 0em;
  cursor: pointer;
  width: 40px;
  height: 43px;
  background-image: url(/images/svg/Search-new.svg);
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  border-left: none;
}
.search-wrap input {
  background: #fff;
  padding: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
/*sitemap*/
#sitemap li {
  width: 100%;
  float: left;
  background: none;
  margin: 0 0 10px 0;
  padding: 0;
}
#sitemap li a {
  font-weight: bold;
  font-size: 1.2em;
  display: inline-block;
  margin: 0 0 5px 0;
  color: #1b5642;
  text-decoration: none;
}
#sitemap li a:hover {
  color: #14aa00;
}
#sitemap li li {
  width: 100%;
  float: left;
  background: none;
  margin: 0 0 5px 0;
}
#sitemap li li a {
  font-weight: normal;
  font-size: 1em;
  margin: 0;
  color: #6c6f70;
}
#sitemap li li li {
  width: 100%;
  float: left;
  background: none;
  padding: 0 0 0 25px;
  margin: 5px 0 0 0;
}
/* 10.HELPER CLASSES
------------------------------------------------*/
.hidden {
  display: none;
}
.visuallyHidden {
  left: -9999px;
  position: absolute;
}
.emailupdates.enclosed {
  margin-bottom: 2rem;
  margin-right: 0;
  padding: 0.75em 2%;
}
.emailupdates.enclosed a {
  text-decoration: none;
}
.emailupdates.enclosed .genericon {
  font-size: 2em;
  text-decoration: none;
  display: inline-block;
  width: 30px;
  height: 18px;
  line-height: 20px;
}
/*Search*/
.search-results-container .search-results-info {
  border-bottom: 1px solid #bfbfbf;
  margin: 1em 0;
  padding-bottom: 2em;
}
.search-results-container .pagination ul {
  margin: 3em 0;
  padding: 0;
}
.search-results-container .pagination ul li {
  margin: 0 0.25em 0;
  display: inline-block;
}
.search-results-container .pagination ul li a {
  text-decoration: none;
}
.search-results-container .pagination ul li span {
  font-weight: bold;
}
.search-results-container .results article {
  padding: 1.5rem 0 0 0;
  border-bottom: 1px solid #bfbfbf;
}
.search-results-container .results article a {
  display: block;
  text-decoration: none;
}
.search-results-container .results article a:hover {
  color: #6c6f70;
}
.search-results-container .results article a:hover h3 {
  text-decoration: underline;
}
.search-results-container .results article h3 {
  color: #1b5642;
  display: block;
  font-weight: 700;
  width: auto;
}
.search-results-container .results article p {
  margin: 0;
  padding: 0 0 1.5rem 0;
}
.table-overflow-wrapper {
  overflow-x: auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .table-overflow-wrapper {
    background: -webkit-gradient(linear, left top, right top, from(rgba(224, 224, 224, 0.25)), color-stop(10%, transparent), color-stop(90%, transparent), to(rgba(224, 224, 224, 0.25)));
    background: linear-gradient(to right, rgba(224, 224, 224, 0.25), transparent 10%, transparent 90%, rgba(224, 224, 224, 0.25));
  }
  .table-overflow-wrapper table {
    min-width: 600px;
  }
  .table-overflow-wrapper:hover::before {
    opacity: 0;
  }
  .table-overflow-wrapper::before {
    content: "< >";
    background: rgba(224, 224, 224, 0.25);
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    width: 5rem;
    border-radius: 50%;
    font-size: 2rem;
    position: absolute;
    top: 20%;
    left: calc(50% - 1em);
    -webkit-transition: opacity linear 250ms;
    transition: opacity linear 250ms;
    z-index: 1;
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
            box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
}
.line-bottom-left::after {
  content: "";
  position: absolute;
  background-color: #95C11F;
  height: 3px;
  width: 40px;
  margin-left: 0;
  left: 0;
  bottom: -12px;
}
.intro-p {
  font-size: 22px;
  color: #000;
}
/* FONT ICON
------------------------*/
@font-face {
  font-family: 'Genericons';
  src: url('/fonts/genericons-regular-webfont.eot');
}
@font-face {
  font-family: 'Genericons';
  src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), url('/fonts/genericons-regular-webfont.ttf') format('truetype'), url('/fonts/genericons-regular-webfont.svg#genericonsregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
/**
 * All Genericons.
 */
[class*="genericon"],
.linkHero:before,
.facts .button:before {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1;
  font-family: 'Genericons';
  text-decoration: inherit;
  font-weight: normal;
  font-style: normal;
  vertical-align: top;
}
/* IE7 */
[class*="genericon"] {
  *overflow: auto;
  *zoom: 1;
  *display: inline;
}
/* Social icons */
.genericon-github:before {
  content: '\f200';
}
.genericon-dribbble:before {
  content: '\f201';
}
.genericon-twitter:before {
  content: '\f202';
}
.genericon-facebook:before {
  content: '\f203';
}
.genericon-facebook-alt:before {
  content: '\f204';
}
.genericon-wordpress:before {
  content: '\f205';
}
.genericon-googleplus:before {
  content: '\f206';
}
.genericon-linkedin:before {
  content: '\f207';
}
.genericon-linkedin-alt:before {
  content: '\f208';
}
.genericon-pinterest:before {
  content: '\f209';
}
.genericon-pinterest-alt:before {
  content: '\f210';
}
.genericon-flickr:before {
  content: '\f211';
}
.genericon-vimeo:before {
  content: '\f212';
}
.genericon-youtube:before {
  content: '\f213';
}
.genericon-tumblr:before {
  content: '\f214';
}
.genericon-instagram:before {
  content: '\f215';
}
.genericon-codepen:before {
  content: '\f216';
}
.genericon-feed:before {
  content: '\f413';
}
.genericon-mail:before {
  content: '\f410';
}
/* Other icons */
.genericon-video:before {
  content: '\f104';
}
.genericon-search:before {
  content: '\f400';
}
.genericon-next:before {
  content: '\f429';
}
.genericon-previous:before {
  content: '\f430';
}
.genericon-expand:before {
  content: '\f431';
}
.genericon-collapse:before {
  content: '\f432';
}
.genericon-dropdown:before {
  content: '\f433';
}
.genericon-dropdown-left:before {
  content: '\f434';
}
.genericon-close:before {
  content: '\f406';
}
/* Generic shapes */
.genericon-uparrow:before {
  content: '\f500';
}
.genericon-rightarrow:before {
  content: '\f501';
}
.genericon-downarrow:before {
  content: '\f502';
}
.genericon-leftarrow:before {
  content: '\f503';
}
article table th,
.content table th,
article table td,
.content table td {
  border-bottom: 1px solid #e2e2e2;
  padding: 5px;
  text-align: left;
}
article table th p,
.content table th p,
article table td p,
.content table td p {
  margin: 0;
}
article table thead td,
.content table thead td,
article table thead th,
.content table thead th {
  font-weight: bold;
  border-bottom: 2px solid #14aa00;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
.content {
  width: 75%;
}
@media only screen and (max-width: 800px) {
  .content {
    width: 100%;
  }
}
.content.full-width {
  width: 100%;
}
.accordion + .accordion {
  margin-top: 0.5rem;
}
.accordion .accordion-label {
  position: relative;
  display: block;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  font-size: 1.5rem;
  min-height: 4rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#003b27), to(#004b36));
  background: linear-gradient(#003b27, #004b36);
  color: #fff;
  cursor: pointer;
}
.accordion .accordion-label::before,
.accordion .accordion-label::after {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.accordion .accordion-label::before {
  content: "";
  background-color: white;
  width: 24px;
  height: 2px;
  margin: 11px 0;
}
.accordion .accordion-label::after {
  content: "";
  background-color: white;
  height: 24px;
  width: 2px;
  margin: 0 11px;
  -webkit-transition: height 0.5s, margin 0.5s;
  transition: height 0.5s, margin 0.5s;
}
.accordion .accordion-input:checked ~ .accordion-label::after {
  height: 2px;
  margin: 11px;
}
.accordion .accordion-content {
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}
.accordion .accordion-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 0 solid #004b36;
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  -webkit-transition: border-top-width 0.5s;
  transition: border-top-width 0.5s;
}
.accordion .accordion-input:checked ~ .accordion-content {
  max-height: 100rem;
}
.accordion .accordion-input:checked ~ .accordion-content::before {
  border-top-width: 1rem;
}
.accordion.turquoise .accordion-label {
  background: -webkit-gradient(linear, left top, left bottom, from(#1f9d9d), to(#008080));
  background: linear-gradient(#1f9d9d 0%, #008080 100%);
}
.accordion.turquoise .accordion-content::before {
  border-top-color: #008080;
}
img {
  display: block;
  max-width: 100%;
}
/*intro content*/
.content > img {
  margin: 1rem 0 2rem;
  max-width: 100%;
}
.v-grid-row .v-grid-col .csr-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8rem;
  margin-top: 2rem;
}
.v-grid-row .v-grid-col .csr-info .csr-info-short {
  width: 33.33%;
  padding-right: 0.5rem;
  font-size: 22px;
  line-height: 34px;
}
.v-grid-row .v-grid-col .csr-info .csr-info-long {
  width: 66.66%;
  padding-left: 0.5rem;
}
.v-grid-row .v-grid-col .csr-info .csr-info-long p:first-child {
  margin-top: 0;
}
.v-grid-row .v-grid-col .csr-info .csr-info-long p:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 699px) {
  .v-grid-row .v-grid-col .csr-info .csr-info-short {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .v-grid-row .v-grid-col .csr-info .csr-info-long {
    width: 100%;
    padding-left: 0;
  }
}
/*content form accordion*/
.acc-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .acc-content-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.acc-content-wrapper .left-content {
  width: 71% !important;
  padding-right: 2rem;
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .acc-content-wrapper .left-content {
    width: 100% !important;
    padding-bottom: 2rem;
  }
}
.acc-content-wrapper .left-content p {
  margin: 0;
}
.acc-content-wrapper .right-element {
  width: 33.3333% !important;
  border: solid 1px #DDDDDD;
  padding: 0;
  position: relative;
  min-height: 184px;
  max-height: 230px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .acc-content-wrapper .right-element {
    width: 100% !important;
  }
}
.acc-content-wrapper .right-element .img-wrap img {
  margin: auto;
}
.acc-content-wrapper .right-element .img-wrap:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.acc-content-wrapper .right-element a {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  text-decoration: none;
  color: #000;
  background-image: url(/images/svg/external-link.svg);
  background-size: 1rem;
  background-position: left center;
  background-repeat: no-repeat;
}
.value-creation-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.5rem -0.5rem;
  list-style: none;
  padding: 0;
}
.value-creation-main li.value-creation-item {
  border: solid 0.5rem transparent;
  width: 33.3333%;
  min-height: 200px;
}
.value-creation-main li.value-creation-item .module-element {
  border: solid 1px #DDDDDD;
  padding: 10px 30px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .value-creation-main li.value-creation-item {
    width: 48.2%;
    margin: 0 20px 20px 0;
  }
  .value-creation-main li.value-creation-item:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .value-creation-main li.value-creation-item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.value-creation-main li.value-creation-item .title {
  position: relative;
  min-height: 40px;
  margin-bottom: 1em;
  font-size: 1em;
  font-weight: 600;
}
.value-creation-main li.value-creation-item .title::after {
  content: "";
  position: absolute;
  background-color: #88c300;
  height: 3px;
  width: 46px;
  margin-left: 0;
  left: 0;
  bottom: -20px;
}
.value-creation-main li.value-creation-item .percentage {
  display: block;
  font-size: 3em;
  margin-top: 1.2em;
  font-weight: 700;
  color: #9b9b9b;
}
/*corporate accordion*/
.v-grid-row .v-grid-col .csr-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5rem;
}
.v-grid-row .v-grid-col .csr-container .csr {
  position: relative;
  width: calc(100% / 3);
  border: 0.5rem solid transparent;
}
.v-grid-row .v-grid-col .csr-container .csr input {
  display: none;
}
.v-grid-row .v-grid-col .csr-container .csr label {
  cursor: pointer;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-label {
  position: relative;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-top: 0.25rem solid #95c11f;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 28px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background-image: linear-gradient(0deg, #fff 0%, #fff 100%);
  xtransition: background-image 0.5s, border-top-width 0.5s, padding-top 0.5s;
  font-weight: bold;
  padding: 0.5rem;
  height: 8rem;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-label::after {
  content: "";
  background-image: url('/images/svg/logo-gray.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(100% + 1rem + 1px);
  left: 50%;
  width: 49px;
  height: 31px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-toggle:checked ~ .csr-label {
  color: white;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154c39));
  background-image: linear-gradient(0deg, #063927 0%, #154c39 100%);
  border-color: transparent;
  padding-top: 0.75rem;
  border-top-width: 0;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-toggle:checked ~ .csr-label::after {
  opacity: 1;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-close {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-toggle:checked ~ .csr-close {
  display: block;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  /*transition: max-height 1s, padding 1s, border-top-width 1s;*/
  -webkit-transition: none;
  transition: none;
  width: calc(300% + 2rem);
  background-color: #f4f4f4;
  padding: 0 2rem;
  border-top: 0 solid white;
}
@media only screen and (max-width: 425px) {
  .v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-body img {
    width: 100% !important;
    padding: 0 0 1rem 0 !important;
  }
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-body hr {
  clear: both;
  padding: 1rem;
  border: 0;
  border-bottom: 1px solid #ccc;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-body li {
  margin: 0 0 1rem 0;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info {
  /*display: flex;
                justify-content: space-between;
                align-items: flex-start;*/
  margin-bottom: 2rem;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info::after {
  content: "";
  clear: both;
  display: table;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img h3 {
  width: 50%;
  float: left;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img .img-wrapper {
  width: 50%;
  float: left;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img .img-wrapper img {
  max-width: 100%;
  padding-right: 1rem;
}
@media only screen and (max-width: 567px) {
  .v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img h3,
  .v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img .img-wrapper {
    width: 100%;
  }
  .v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img h3 img,
  .v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info.with-img .img-wrapper img {
    padding-right: 0;
    padding-bottom: 1rem;
  }
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info h3 {
  color: #0a3e2c;
  line-height: 1.8rem;
}
.v-grid-row .v-grid-col .csr-container .csr .csr-content .csr-content-info h1 {
  width: calc(50% - 1rem);
}
.v-grid-row .v-grid-col .csr-container .csr .csr-toggle:checked ~ .csr-content {
  max-height: none;
  padding: 2rem;
  margin-bottom: 3rem;
  border-top: 3rem solid white;
  z-index: 1;
  /*transition: max-height 1s, padding 1s, border-top-width 1s;*/
}
@media all and (min-width: 1010px) {
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(3n + 2) .csr-content {
    left: calc(-100% - 1rem);
  }
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(3n) .csr-content {
    left: calc(-200% - 2rem);
  }
}
@media all and (max-width: 1009px) {
  .v-grid-row .v-grid-col .csr-container .csr {
    width: 50%;
  }
  .v-grid-row .v-grid-col .csr-container .csr .csr-content {
    width: calc(200% + 1rem);
  }
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(2n + 1) .csr-content {
    left: 0;
  }
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(2n) .csr-content {
    left: calc(-100% - 1rem);
  }
}
@media only screen and (max-width: 767px) {
  .v-grid-row .v-grid-col .csr-container .csr {
    width: 100%;
  }
  .v-grid-row .v-grid-col .csr-container .csr .csr-content {
    width: 100%;
  }
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(2n + 1) .csr-content {
    left: 0;
  }
  .v-grid-row .v-grid-col .csr-container .csr:nth-of-type(2n) .csr-content {
    left: 0;
  }
}
/*General Tout*/
/* content modules */
.section-modules {
  margin: 2rem 0 3rem 0;
  position: relative;
  width: 100%;
}
.section-modules.tall {
  margin: 4rem 0 3rem 0;
}
.section-modules.tall .module-item:nth-child(5) .module-item-cont {
  min-height: 570px;
}
@media only screen and (max-width: 767px) {
  .section-modules.tall .module-item:nth-child(5) .module-item-cont {
    min-height: 640px;
  }
}
.module-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -1rem -1rem;
}
.tout-content-page .module-small {
  width: 33.3%;
  /*@media only screen and (min-width: 1025px) {
            .item {
                h4 {
                    width: 94%;
                }
           
                .overlay {
                    top: 180px;
                }
            }
        }*/
}
@media only screen and (max-width: 1024px) {
  .tout-content-page .module-small {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .tout-content-page .module-small {
    width: 100%;
  }
}
.module-small {
  border: solid 1rem transparent;
  width: 25%;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  height: auto;
  /*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
        width: 50%;
    }*/
}
@media only screen and (max-width: 992px) {
  .module-small {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .module-small {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .module-small {
    width: 100%;
  }
}
@media only screen and (max-width: 567px) {
  .module-small {
    width: 100%;
  }
}
.module-medium {
  border: solid 1rem transparent;
  width: 50%;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
@media only screen and (max-width: 992px) {
  .module-medium {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .module-medium {
    width: 100%;
  }
}
.item {
  /**/
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 100%;
  /*&.static{
        min-height: 250px;
    }
    &.stretch{
        height:100%;
    }*/
  /*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
        min-height: 300px;
    }*/
}
.item img {
  width: 100%;
}
.item.static {
  min-height: 150px;
}
@media only screen and (max-width: 767px) {
  .item.static {
    min-height: 250px;
  }
}
.item a,
.item u {
  color: inherit;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.item a:hover {
  color: #14aa00;
}
.item ul.cc {
  padding-left: 0;
  list-style: none;
}
.item.white-bg {
  color: #000;
  border: solid 1px #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.item.white-bg .heading {
  width: 100%;
  border-bottom: solid 1px #ddd;
}
.item.white-bg .heading.shareprice {
  background: url("/images/svg/Financialcalendar.svg") 20px 50% no-repeat;
  padding: 2.1rem 0 0 5rem;
  margin: 0;
  font-size: 1.7rem;
  color: #154c39;
  font-weight: bold;
}
.item.white-bg .price-big {
  margin: 0;
  font-size: 1.7rem;
  color: #154c39;
  font-weight: bold;
}
.item.white-bg .price-small {
  color: #95c11f;
  font-size: 1.2rem;
  display: block;
}
.item.white-bg div {
  width: 50%;
  border-right: solid 1px #ddd;
  padding: 20px;
  position: relative;
}
.item.white-bg div:last-child {
  border: none;
}
.item h4 {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  position: relative;
}
.item .overlay {
  position: absolute;
  top: calc(100% - 4rem);
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75rem 1rem 1rem 1rem;
  cursor: pointer;
  /*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
            top: 250px;
        }*/
}
.item .overlay h4 {
  padding: 0 35px 0 0;
  height: 40px;
  display: table-cell;
  vertical-align: middle;
  position: static;
}
.item .overlay h4 .read-more-cta {
  top: 0.8rem;
  right: 0.8rem;
  bottom: auto;
}
.item:hover .overlay {
  top: 0;
}
.item .overlay-green {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(#2f836b), to(#154c39));
  background: linear-gradient(180deg, #2f836b 0%, #154c39 100%);
  padding: 1rem;
}
.item .overlay-green .read-more-cta {
  position: absolute;
  bottom: 0.8em;
  right: 0.8rem;
  text-indent: -9999px;
  background: url("../images/svg/Read more icon 1.svg") 0 0 no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
}
.module-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -4rem -1rem 0 -1rem;
}
.module-item {
  border: solid 1rem transparent;
  width: 50%;
  /*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
            width: 100%;
        }*/
}
@media only screen and (max-width: 992px) {
  .module-item {
    width: 100%;
  }
}
.module-item .module-item-cont {
  min-height: 540px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .module-item .module-item-cont {
    min-height: 400px;
  }
}
.module-item .module-item-cont .read-more-cta {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  text-indent: -9999px;
  background: url("../images/svg/Read more icon 1.svg") 0 0 no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
}
.green-wrapper {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: auto;
  min-height: 20rem;
  width: 70%;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: rgba(21, 76, 57, 0.9);
  padding: 1.5rem;
  color: #fff;
  font-size: 0.95rem;
  max-height: calc(100% - 2rem);
  /*overflow-y: auto;*/
}
.green-wrapper .inner {
  max-height: 32.6rem;
  overflow: auto;
  padding-bottom: 50px;
}
.green-wrapper .inner p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .green-wrapper {
    width: 95%;
    padding: 1rem;
    font-size: 0.9rem;
  }
}
.read-more-cta {
  position: absolute;
  bottom: -0.55em;
  right: -0.6rem;
  text-indent: -9999px;
  background: url("../images/svg/Read more icon 1.svg") 0 0 no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
}
.view-more-cta {
  position: absolute;
  bottom: 1rem;
  right: 0;
  left: 0;
  background: url("../images/svg/Read more icon 1.svg") 100% 50% no-repeat;
  width: 100%;
  height: 40px;
  background-size: contain;
  display: block;
  line-height: 0.1rem;
  text-decoration: none;
  padding: 1rem;
}
.img-item {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.latest-news {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
  width: 100%;
  border: solid 1rem transparent;
}
@media only screen and (max-width: 767px) {
  .latest-news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.latest-news .all-news {
  width: 34%;
  height: 120px;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .latest-news .all-news {
    width: 100%;
    border-left: 1px solid #dddddd;
    margin-top: 4rem;
  }
}
.latest-news .all-news .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.latest-news .all-news .wrapper a.news-link-a {
  color: #1b5642;
  text-decoration: none;
}
.latest-news .all-news .wrapper a.arrow {
  position: absolute;
  background-image: url("/images/svg/Read more icon 1.svg");
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0.5rem;
  width: 48px;
  height: 48px;
  right: 0.5rem;
  opacity: 1;
}
.latest-news .all-news .wrapper p {
  padding: 0 0 0.7rem 1.9rem;
}
.latest-news .all-news .wrapper p a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 26px;
}
.latest-news .all-news .wrapper p a:hover {
  color: #14aa00;
}
.latest-news .flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background-color: #eeeeee;
  border-radius: 0;
  cursor: pointer;
  opacity: 1;
}
.latest-news .flickity-page-dots {
  bottom: -41px;
  margin: 0 0px 0 26%;
}
@media only screen and (max-width: 767px) {
  .latest-news .flickity-page-dots {
    margin: 0;
  }
}
.latest-news .flickity-page-dots .dot.is-selected {
  background-color: #95c11f;
}
.latest-news .carousel {
  height: 120px;
  border: 1px solid #dddddd;
  width: 66%;
}
@media only screen and (max-width: 767px) {
  .latest-news .carousel {
    width: 100%;
  }
}
.latest-news .carousel .flickity-prev-next-button {
  display: none;
}
.latest-news .carousel .carousel-cell {
  width: 100%;
}
.latest-news .carousel .carousel-cell .wrapper {
  padding: 2rem 0;
}
.latest-news .carousel .carousel-cell .wrapper .img-wrapper {
  max-width: 148px;
  width: 40%;
  margin: 0 auto 0 0;
  float: left;
  padding-left: 37px;
}
@media all and (-ms-high-contrast: none) {
  .presentations .year-list :last-of-type.year-button {
    visibility: visible!important;
  }
  .presentations .year-list :last-of-type.year-button::after {
    visibility: hidden!important;
  }
  .year,
  .history-timeline,
  .timeline-intro,
  .year-date,
  .timeline-event,
  .month-date,
  body.strategy .inner,
  body.strategy .right-block,
  body.director .people {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .person {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .people .person .person-label .person-title {
    min-height: 8rem;
  }
  .person:nth-child(2) .person-content {
    left: calc(-100% - 2rem);
  }
  .person:nth-child(3) .person-content {
    left: calc(-200% - 4rem);
  }
  .person:nth-child(4) .person-content {
    left: calc(-300% - 6rem);
  }
  .person:nth-child(6) .person-content {
    left: calc(-100% - 2rem);
  }
  .person:nth-child(7) .person-content {
    left: calc(-200% - 4rem);
  }
  .person:nth-child(8) .person-content {
    left: calc(-300% - 6rem);
  }
}
/* gridness */
.v-grid-wrapper {
  clear: both;
}
.v-grid-row {
  margin: 0;
  width: 100%;
}
.v-grid-row .v-grid-row-constrain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.v-grid-row .v-grid-row-constrain.no-padd {
  margin: 1rem 0;
}
.v-grid-row .v-grid-row-constrain.no-padd h2 {
  margin: 0;
  padding: 0;
}
.v-grid-row .v-grid-row-constrain.no-padd .v-grid-col {
  margin: 0rem 0;
}
.v-grid-row .v-grid-row-constrain:after {
  clear: both;
  content: '';
  display: block;
}
.v-grid-row .v-grid-col {
  padding: 0;
  margin: 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.v-grid-row .v-grid-col div {
  width: 100%;
}
.v-grid-row .v-grid-col-12 {
  width: 100%;
}
@media only screen and (max-width: 35em) {
  .v-grid-row .v-grid-col-12 {
    min-width: 100%;
  }
}
.v-grid-row .v-grid-col-6 {
  width: 50%;
}
@media only screen and (max-width: 35em) {
  .v-grid-row .v-grid-col-6 {
    min-width: 100%;
  }
}
.v-grid-row .v-grid-col-4 {
  width: 33.3333%;
}
@media only screen and (max-width: 35em) {
  .v-grid-row .v-grid-col-4 {
    min-width: 100%;
  }
}
.discaimercontainer .discaimerpanel {
  display: none;
  margin-bottom: 2em;
}
.discaimercontainer .discaimerpanel.show {
  display: block;
}
.discaimercontainer .discaimerpanel select {
  display: inline-block;
  padding: 0.25em 1em;
  height: 30px;
  margin: 0 1em 0 0;
}
.discaimercontainer .discaimerpanel button {
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #5fa17c;
  background: #88bea0;
  color: #fff;
  padding: 0.25em 1em;
  height: 30px;
  -webkit-transition: background 250ms ease-in-out;
  transition: background 250ms ease-in-out;
  margin: 0 1em 0 0;
  text-transform: uppercase;
}
.discaimercontainer .discaimerpanel button:hover {
  background: #5fa17c;
}
.qalist .accordion-label {
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
}
.qalist .qa-wrapper {
  padding: 2rem 0;
}
.qalist .image-wrapper {
  width: 30%;
  padding-right: 2rem;
}
.qalist .image-wrapper img {
  width: 266px;
  height: 111px;
}
@media only screen and (max-width: 767px) {
  .qalist .image-wrapper img {
    height: auto;
  }
}
.qalist .text-wrapper {
  width: 70%;
}
.qalist .text-wrapper p {
  margin: 0;
  text-align: left;
}
@media only screen and (min-device-width: 281px) and (max-device-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
}
.history-timeline-navigation {
  list-style: none;
  padding: 0 3rem;
}
.history-timeline-navigation li {
  color: #063927;
  font-weight: bold;
  padding: 0.5rem;
}
.history-timeline-navigation li.is-nav-selected {
  color: white;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154c39));
  background: linear-gradient(0deg, #063927 0%, #154c39 100%);
}
.history-timeline-navigation li + li {
  margin-left: 1rem;
}
.history-timeline-wrapper {
  margin: 0 0 3rem 0;
}
.history-timeline-wrapper .flickity-viewport {
  width: 100%;
}
.history-timeline-wrapper .flickity-prev-next-button {
  top: auto;
  bottom: 100%;
  background: none;
  height: 34px;
  width: 3rem;
}
.history-timeline-wrapper .flickity-prev-next-button:hover {
  background: none;
}
.history-timeline-wrapper .flickity-prev-next-button.previous {
  left: 0;
}
.history-timeline-wrapper .flickity-prev-next-button.next {
  right: 0;
}
.history-timeline-wrapper .flickity-prev-next-button .flickity-button-icon {
  fill: #063927;
}
.history-timeline-wrapper .history-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  .history-timeline-wrapper .history-timeline {
    /* For landscape layouts only */
    /*overflow: hidden;*/
    max-width: 100%;
  }
}
@media only screen and (min-device-width: 281px) and (max-device-width: 768px) {
  .history-timeline-wrapper .history-timeline {
    /*overflow: hidden;*/
    max-width: 100%;
  }
}
.history-timeline-wrapper .history-timeline .year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*xwidth: 200%;*/
}
.history-timeline-wrapper .history-timeline .year .timeline-intro {
  background-color: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
  min-width: 200px;
}
.history-timeline-wrapper .history-timeline .year .timeline-intro .year-date {
  color: #063927;
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  max-width: 8rem;
  width: 8rem;
  height: 8rem;
  border: 0.25rem solid #063927;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history-timeline-wrapper .history-timeline .year .timeline-event {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
  min-width: 400px;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154c39));
  background: linear-gradient(0deg, #063927 0%, #154c39 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 2rem;
}
.history-timeline-wrapper .history-timeline .year .timeline-event + .timeline-event {
  padding-left: 0;
  margin-left: -1px;
}
.history-timeline-wrapper .history-timeline .year .timeline-event .month-date {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  max-width: 8rem;
  width: 8rem;
  height: 8rem;
  border: 0.25rem solid white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history-timeline-wrapper .history-timeline .year .timeline-event .month-description {
  width: 170px;
  color: #fff;
  margin-left: 1rem;
}
.history-timeline-wrapper .history-timeline .year .timeline-event .month-description a {
  color: inherit;
  text-decoration: none;
}
ul.site-index-tabs {
  border-bottom: 1px solid #d4d4d4;
  margin: 2rem 0;
  padding: 0 0 0.25em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ul.site-index-tabs li {
  display: inline-block;
  line-height: 1.8;
  width: 5%;
  text-align: center;
}
ul.site-index-tabs li.disabled {
  opacity: 0.5;
  cursor: default;
}
ul.site-index-tabs li a {
  display: inline-block;
  text-decoration: none;
}
ul.site-index {
  padding-left: 0;
}
ul.site-index li {
  margin-bottom: 2em;
  list-style-type: none;
}
ul.site-index li ul {
  padding-left: 0;
}
ul.site-index li ul li {
  margin-bottom: 0.5em;
}
ul.site-index li a {
  text-decoration: none;
}
ul.site-index li .crumb {
  color: rgba(108, 111, 112, 0.5);
  float: right;
}
@media only screen and (max-width: 767px) {
  ul.site-index li .crumb {
    float: none;
    display: block;
    font-size: 0.9rem;
  }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  body.director html,
  body.director body {
    overflow-x: hidden;
    max-width: 100%;
  }
  body.director .person:nth-child(2) .person-content {
    left: calc(-100% - 2rem);
  }
  body.director .person:nth-child(3) .person-content {
    left: calc(-200% - 4rem);
  }
  body.director .person:nth-child(4) .person-content {
    left: calc(-300% - 6rem);
  }
  body.director .person:nth-child(6) .person-content {
    left: calc(-100% - 2rem);
  }
  body.director .person:nth-child(7) .person-content {
    left: calc(-200% - 4rem);
  }
  body.director .person:nth-child(8) .person-content {
    left: calc(-300% - 6rem);
  }
  body.director .person-content {
    -webkit-transition: none !important;
    transition: none !important;
    overflow: auto !important;
    -webkit-column-count: 1 !important;
            column-count: 1 !important;
    /*min-height: 40rem!important;*/
  }
  body.director .person-toggle:checked ~ .person-content {
    max-height: 100% !important;
  }
}
body.director .main .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.director .people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -1rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
body.director .people .person {
  width: calc(100% / 4);
  max-width: calc(100% / 4);
  border: 1rem solid transparent;
  position: relative;
}
body.director .people .person input {
  display: none;
}
body.director .people .person label {
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
body.director .people .person .person-label {
  position: relative;
}
body.director .people .person .person-label::after {
  content: "";
  background-image: url(/images/logo-mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 49px;
  height: 31px;
  position: absolute;
  top: calc(100% + 1rem + 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
body.director .people .person .person-label img {
  display: block;
  width: 100%;
  background-color: grey;
  border-bottom: none;
  -o-object-fit: cover;
     object-fit: cover;
}
body.director .people .person .person-label .person-title {
  padding: 1rem;
  border: 1px solid #ddd;
  border-top: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background: linear-gradient(0deg, #fff 0%, #fff 100%);
  -webkit-transition: background 1s, border-color 1s;
  transition: background 1s, border-color 1s;
  position: relative;
}
body.director .people .person .person-label h1 {
  font-size: 18px;
  line-height: 1.3em;
  margin: 0 0 0.5rem 0;
  font-weight: normal;
  padding: 0;
  color: #5d5d5d;
  -webkit-transition: color 1s;
  transition: color 1s;
}
body.director .people .person .person-label h2 {
  font-size: 13px;
  line-height: 1.5em;
  margin: 0;
  font-weight: normal;
  padding: 0;
  color: black;
  -webkit-transition: color 1s;
  transition: color 1s;
}
body.director .people .person .person-toggle:checked ~ .person-label .person-title {
  color: white;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154c39));
  background: linear-gradient(0deg, #063927 0%, #154c39 100%);
  border-color: transparent;
}
body.director .people .person .person-toggle:checked ~ .person-label h1,
body.director .people .person .person-toggle:checked ~ .person-label h2 {
  color: white;
}
body.director .people .person .person-toggle:checked ~ .person-label::after {
  opacity: 1;
}
body.director .people .person .person-toggle:checked ~ .person-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
body.director .people .person .person-toggle:checked ~ .person-content {
  /*max-height: 90rem;*/
  display: block;
  padding: 2rem;
  margin-bottom: 1rem;
  border-top: 3rem solid white;
  z-index: 1;
}
body.director .people .person .person-close {
  display: none;
}
body.director .people .person .person-content {
  position: relative;
  display: none;
  /*overflow: hidden;
                max-height: 0;
                transition: max-height 1s, padding 1s, border-top-width 1s;*/
  width: calc(400% + 6rem);
  -webkit-column-count: 2;
          column-count: 2;
  color: #6c6f70;
  background-color: #f4f4f4;
  padding: 0 2rem;
  border-top: 0 solid white;
}
body.director .people .person .person-content > :first-child {
  margin-top: 0;
}
body.director .people .person .person-content h3 {
  font-size: 16px;
}
body.director .people .person .person-content a {
  color: inherit;
  text-decoration: inherit;
}
@media all and (min-width: 881px) {
  body.director .people .person .person-label .person-title {
    min-height: 8rem;
  }
  body.director .person:nth-child(4n + 2) .person-content {
    left: calc(-100% - 2rem);
  }
  body.director .person:nth-child(4n + 3) .person-content {
    left: calc(-200% - 4rem);
  }
  body.director .person:nth-child(4n) .person-content {
    left: calc(-300% - 6rem);
  }
}
@media all and (max-width: 55rem) {
  body.director .people .person {
    width: 50%;
    max-width: 50%;
  }
  body.director .people .person .person-content {
    width: calc(200% + 1rem);
    -webkit-column-count: 1;
            column-count: 1;
  }
  body.director .person:nth-child(3n + 2) .person-content {
    left: 0;
  }
  body.director .person:nth-child(3n) .person-content {
    left: 0;
  }
  body.director .person:nth-child(2n) .person-content {
    left: calc(-100% - 2rem);
  }
}
@media all and (max-width: 30rem) {
  body.director .people .person {
    width: 100%;
    max-width: 100%;
  }
  body.director .people .person .person-content {
    width: 100%;
  }
  body.director .person:nth-child(2n) .person-content {
    left: 0;
  }
}
body.image-gallery .imageList {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem -1rem 3rem -1rem;
}
body.image-gallery ul.imageList li {
  width: 33.3%;
  list-style: none;
  border: 1rem solid transparent;
}
body.image-gallery ul.imageList li img {
  width: 100%;
}
body.image-gallery ul.imageList li .gallery-wrap-desc {
  padding: 1rem;
  border: 1px solid #ddd;
  border-top: none;
  min-height: 130px;
  position: relative;
}
body.image-gallery ul.imageList li .gallery-wrap-desc h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  font-weight: normal;
  padding: 0;
  color: #5d5d5d;
}
body.image-gallery ul.imageList li .gallery-wrap-desc .download {
  color: #1b5642;
  display: block;
  font-weight: 700;
  padding: 0 0 0 2rem;
  background-image: url(/images/svg/download.svg);
  background-repeat: no-repeat;
  background-position: left center;
  text-decoration: none;
  position: absolute;
  font-size: 0.9em;
  bottom: 1rem;
}
body.image-gallery ul.imageList li .gallery-wrap-desc .download:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 992px) {
  body.image-gallery ul.imageList li {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  body.image-gallery ul.imageList li {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.track-record .qa {
    position: relative;
    cursor: pointer;
    -webkit-transition: background-color 0.4s, opacity 0.4s;
    transition: background-color 0.4s, opacity 0.4s;
    margin-bottom: 0.5rem;
  }
  body.track-record .qa-toggle.toggled::before,
  body.track-record .qa-toggle.toggled::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  body.track-record .qa-toggle {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2rem;
    right: 3rem;
  }
  body.track-record .qa-toggle::after,
  body.track-record .qa-toggle::before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  body.track-record .qa-toggle::before {
    content: "";
    width: 2px;
    height: 20px;
    margin: 0 9px;
  }
  body.track-record .qa-toggle::after {
    content: "";
    width: 20px;
    height: 2px;
    margin: 9px 0;
  }
}
body.track-record .inner h2 {
  padding: 1.1em 0 1.1em 0;
}
body.track-record .value-col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  body.track-record .value-col-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
body.track-record .value-col {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  body.track-record .value-col {
    width: 100%;
    margin-bottom: 2rem;
  }
}
body.track-record .value-col ul {
  padding-left: 0;
}
body.track-record .value-col ul li {
  border-bottom: 1px solid black;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.track-record .value-col ul li .value {
  width: 70%;
}
body.track-record .value-col ul li .cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 30%;
}
body.track-record .value-col-right {
  width: 68%;
}
@media only screen and (max-width: 767px) {
  body.track-record .value-col-right {
    width: 100%;
  }
}
body.track-record .value-col-right .pie-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 767px) {
  body.track-record .value-col-right .pie-chart {
    padding: 0;
  }
}
body.track-record .value-col-right .pie-chart ul {
  display: none;
}
@media only screen and (min-width: 768px) {
  body.track-record ul.tabs {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
    width: 100%;
  }
}
body.track-record ul.tabs li {
  margin: 0;
  cursor: pointer;
  background-image: none;
  font-size: 1.475rem;
  padding: 1em 1.7em 1em 0.7em;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: calc(100% / 3);
  background-color: #5d5d5d;
  border: 4px solid #dddddd;
}
body.track-record ul.tabs li:last-child::after {
  display: none;
}
body.track-record ul.tabs li::after {
  right: calc(3rem - (21.891px / 2));
}
body.track-record ul.tabs li:before {
  display: none;
}
body.track-record ul.tabs li h2 {
  color: #fff;
  padding: 0;
  font-size: 14px;
}
body.track-record ul.tabs li.active {
  background-color: #fff;
  border-bottom: none;
}
body.track-record ul.tabs li.active h2 {
  color: #000;
}
body.track-record .tab_drawer_heading {
  display: none;
}
@media screen and (max-width: 767px) {
  body.track-record .tabs {
    display: none;
  }
  body.track-record .tab_drawer_heading {
    color: #ffffff;
    border-top: 1px solid #333;
    margin: 1rem 0 0 0;
    padding: 2rem 3rem;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: lightblue;
    line-height: 30px;
    text-transform: uppercase;
    background-color: #5d5d5d;
  }
  body.track-record .tab_drawer_heading span {
    text-transform: capitalize;
    font-size: 16px;
  }
  body.track-record .tab_drawer_heading.toggled:nth-of-type(1) {
    margin: 1rem 0 0 0;
  }
  body.track-record .tab_drawer_heading.toggled:nth-of-type(2) {
    margin: 1rem 0 0 0;
  }
  body.track-record .tab_drawer_heading.toggled:nth-of-type(3) {
    margin: 1rem 0 0 0;
  }
}
body.track-record .tab_content {
  display: none;
}
body.track-record .tab_container {
  border-top: none;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}
body.track-record .section-with-overlay-wrapper {
  position: relative;
}
body.track-record .section-with-overlay-wrapper p {
  background-color: #fff;
  position: absolute;
  z-index: 1;
  margin: 2rem 2rem 0 2rem;
  padding: 1.5rem;
  color: #000;
}
@media only screen and (max-width: 767px) {
  body.track-record .section-with-overlay-wrapper p {
    margin: 1rem 1rem 0 1rem;
    padding: 0.5rem;
  }
}
body.track-record .section-with-overlay {
  /*display: flex;*/
  position: relative;
  margin-bottom: 3rem;
  background-size: cover;
  float: left;
  width: 100%;
}
body.track-record .section-with-overlay p {
  position: static;
  margin: 2rem 2rem 0 2rem;
}
@media only screen and (max-width: 767px) {
  body.track-record .section-with-overlay p {
    margin: 1rem;
  }
}
body.track-record .section-with-overlay img {
  margin: 2rem 10%;
  max-width: 80%;
}
@media only screen and (max-width: 767px) {
  body.track-record .section-with-overlay img {
    margin: 1rem 2%;
    max-width: 96%;
  }
}
body.track-record .section-with-slider {
  width: 100%;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  body.track-record .section-with-slider {
    width: 100%;
    margin-bottom: 3rem;
  }
}
body.track-record .section-with-slider .carousel-cell {
  width: 100%;
  min-height: 575px;
  padding: 1rem;
  margin-right: 0;
  background: #000;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  body.track-record .section-with-slider .carousel-cell {
    min-height: 235px;
  }
}
body.track-record .section-with-slider .carousel-cell:nth-child(2n+1) {
  background-image: url('/images/margins-and-returns-bg-image.jpg');
}
body.track-record .section-with-slider .carousel-cell:nth-child(2n+2) {
  background-image: url('/images/margin-and-returns-pound-coin_grey-753x501.jpg');
}
body.track-record .section-with-slider .carousel-cell img {
  margin: 1rem auto;
}
body.track-record .carousel .flickity-prev-next-button {
  top: 22px;
  height: 72px;
  width: 72px;
  border-radius: 0;
}
body.track-record .carousel .flickity-button-icon {
  fill: white;
  display: none;
}
body.track-record .carousel .flickity-button {
  position: absolute;
  background: #95c11f;
  border: none;
  color: white;
}
@media (max-width: 1200px) {
  body.track-record .carousel .flickity-button {
    position: relative;
  }
}
body.track-record .carousel .flickity-prev-next-button.next {
  right: 0;
  background-image: url("/images/svg/Read more icon 1.svg");
  background-repeat: no-repeat;
  background-position: center;
  top: 36px;
}
@media (max-width: 1200px) {
  body.track-record .carousel .flickity-prev-next-button.next {
    right: 0;
  }
}
body.track-record .carousel .flickity-prev-next-button.previous {
  margin-top: 3.3rem;
  right: 0;
  left: 100%;
  margin-left: -72px;
  background-image: url("/images/svg/Read more icon 1.svg");
  -webkit-transform: scaleX(-1) scaleY(-1) rotate(0deg);
          transform: scaleX(-1) scaleY(-1) rotate(0deg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  body.track-record .carousel .flickity-prev-next-button.previous {
    right: 0;
    margin-left: 0;
    left: 0;
    margin-top: 0;
    top: 0;
  }
}
body.track-record .arrow-main-wrapper {
  margin: 0 0 3rem 0;
}
body.track-record .arrow-main-wrapper p {
  color: #000;
}
body.track-record .arrow-main-wrapper h3.h3-intro {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
body.track-record .arrow-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  width: calc(100% - 3.71rem);
  border-bottom: 4px solid #D8D8D8;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  body.track-record .arrow-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
body.track-record .arrow-section .arrow-section-wrapper {
  width: calc((100% - 2rem) / 3);
  height: 10.5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154c39));
  background: linear-gradient(0deg, #063927 0%, #154c39 100%);
  position: relative;
  padding-top: 1rem;
  padding-left: 3rem;
}
@media only screen and (max-width: 767px) {
  body.track-record .arrow-section .arrow-section-wrapper {
    width: calc(100% - 7.4246212rem);
  }
}
body.track-record .arrow-section .arrow-section-wrapper:nth-child(2) {
  background: -webkit-gradient(linear, left bottom, left top, from(#129800), to(#14aa00));
  background: linear-gradient(0deg, #129800 0%, #14aa00 100%);
}
body.track-record .arrow-section .arrow-section-wrapper:nth-child(2)::before {
  background: linear-gradient(-135deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #129800 -100%, #14aa00 100%);
}
body.track-record .arrow-section .arrow-section-wrapper:nth-child(2)::after {
  background: linear-gradient(-45deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #129800 0%, #14aa00 200%);
}
body.track-record .arrow-section .arrow-section-wrapper:nth-child(2) p::before {
  background: linear-gradient(-45deg, #129800 0%, #14aa00 100%);
}
body.track-record .arrow-section .arrow-section-wrapper:last-child {
  background: -webkit-gradient(linear, left bottom, left top, from(#5fa17c), to(#88bea0));
  background: linear-gradient(0deg, #5fa17c 0%, #88bea0 100%);
}
body.track-record .arrow-section .arrow-section-wrapper:last-child::before {
  background: linear-gradient(-135deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #5fa17c -100%, #88bea0 100%);
}
body.track-record .arrow-section .arrow-section-wrapper:last-child::after {
  background: linear-gradient(-45deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #5fa17c 0%, #88bea0 200%);
}
body.track-record .arrow-section .arrow-section-wrapper:last-child p::before {
  background: linear-gradient(-45deg, #5fa17c 0%, #88bea0 100%);
}
body.track-record .arrow-section .arrow-section-wrapper::before,
body.track-record .arrow-section .arrow-section-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5.25rem;
  height: 5.25rem;
  background: linear-gradient(-135deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #063927 -100%, #154c39 100%);
}
body.track-record .arrow-section .arrow-section-wrapper::after {
  top: 5.25rem;
  background: linear-gradient(-45deg, transparent 50%, #fff calc(50% + 1px)), linear-gradient(0deg, #063927 0%, #154c39 200%);
}
body.track-record .arrow-section .arrow-section-wrapper p {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 2rem 0 0 6rem;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  body.track-record .arrow-section .arrow-section-wrapper p {
    padding: 0 0 0 6rem;
  }
}
body.track-record .arrow-section .arrow-section-wrapper p::before {
  content: "";
  width: 7.4246212rem;
  height: 7.4246212rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: linear-gradient(-45deg, #063927 0%, #154c39 100%);
  position: absolute;
  top: calc((8.5rem - 7.4246212rem) / 2);
  left: calc(100% - (7.4246212rem / 2));
  z-index: -1;
}
body.track-record div.img-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  body.track-record div.img-chart {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
body.track-record div.img-chart div.wrapper {
  width: calc((100% - 2rem)/2);
  min-height: 700px;
  padding: 2rem;
}
body.track-record div.img-chart div.wrapper h3 {
  text-align: center;
  padding: 0rem 0 4rem 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
}
body.track-record div.img-chart div.wrapper ol li {
  color: black;
  line-height: 1.6rem;
  position: relative;
}
body.track-record div.img-chart div.wrapper ul {
  padding-top: 2rem;
}
body.track-record div.img-chart div.wrapper ul li {
  color: black;
  list-style: none;
  line-height: 1.6rem;
  position: relative;
}
body.track-record div.img-chart div.wrapper ul li.green:before {
  background-color: #88C300;
}
body.track-record div.img-chart div.wrapper ul li.darkgreen:before {
  background-color: #009B00;
}
body.track-record div.img-chart div.wrapper ul li.white:before {
  background-color: #fff;
}
body.track-record div.img-chart div.wrapper ul li:before {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 6px;
}
@media only screen and (max-width: 767px) {
  body.track-record div.img-chart div.wrapper {
    width: 100%;
  }
}
body.track-record div.img-chart div.wrapper:first-child {
  background-color: #ffffff;
  border: 1px solid #ddd;
}
body.track-record div.img-chart div.wrapper:nth-child(2) {
  background-color: #ddd;
}
@media only screen and (max-width: 767px) {
  body.track-record div.img-chart div.wrapper:nth-child(2) {
    width: 100%;
  }
}
body.track-record div.img-chart .wrap {
  position: relative;
  width: 100%;
  text-align: center;
}
body.track-record div.img-chart .wrap img {
  display: inline-block;
}
body.home-page .left-side-menu {
  display: none;
}
body.home-page .content {
  width: 100%;
}
body.home-page a.arrow {
  position: absolute;
  background-image: url('/images/svg/Read more icon 1.svg');
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0.5rem;
  width: 48px;
  height: 48px;
  right: 0.5rem;
  opacity: 1;
}
body.home-page .home-page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
body.home-page .home-page-wrapper h1.home-page {
  height: 80px;
  color: white;
  padding: 1.3rem;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 29px;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154C39));
  background: linear-gradient(0deg, #063927 0%, #154C39 100%);
}
body.home-page .home-page-wrapper .left-box {
  width: calc((100% - 2rem)/2);
  height: 540px;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper .left-box {
    margin-bottom: 2rem;
    width: 100%;
  }
}
body.home-page .home-page-wrapper .left-box .inner-wrapper {
  min-height: 240px;
  padding-bottom: 66px;
  position: absolute;
  bottom: 5px;
  margin: 0 0.7rem 0 0.7rem;
  opacity: 0.9;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154C39));
  background: linear-gradient(0deg, #063927 0%, #154C39 100%);
}
body.home-page .home-page-wrapper .left-box .inner-wrapper p {
  color: #fff;
  padding: 26px 20px;
  margin: 0;
}
body.home-page .home-page-wrapper .left-box .inner-wrapper .set-arrows {
  height: 4rem;
  margin: 0 20px;
  width: calc(100% - 40px);
  background-image: url('/images/svg/Buy-Improve-Sell.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
body.home-page .home-page-wrapper .left-box .inner-wrapper a.arrow {
  position: absolute;
  background-image: url('/images/svg/Read more icon 1.svg');
  background-repeat: no-repeat;
  background-position: center;
  bottom: 9px;
  width: 48px;
  height: 48px;
  right: 9px;
}
body.home-page .home-page-wrapper .right-box {
  width: calc((100% - 2rem)/2);
  height: 540px;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper .right-box {
    width: 100%;
  }
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right {
  height: 460px;
  position: relative;
  background-color: grey;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 0;
  pointer-events: none;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:hover {
  background-size: cover;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box {
  pointer-events: all;
  background: -webkit-gradient(linear, left bottom, left top, from(#063927), to(#154C39));
  background: linear-gradient(0deg, #063927 0%, #154C39 100%);
  width: calc(50% - 0.75rem);
  height: calc(80px - 0.25rem);
  z-index: 1;
  padding: 0.5rem 4rem 0.5rem 0.5rem;
  opacity: 0.9;
  display: table;
  table-layout: fixed;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box a.arrow {
  bottom: 0.88rem;
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box a.arrow {
    width: 30px;
    height: 30px;
  }
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box h2 {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  padding: 0;
  width: 100%;
  font-size: 1.05em;
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box h2 {
    font-size: 0.8em;
    vertical-align: top;
  }
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box:hover {
  color: #1b5642;
  background: white;
  opacity: 1;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper .set-box:hover h2 {
  color: inherit;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(1) {
  background-size: cover;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(1) .set-box {
  position: absolute;
  top: 13.4rem;
  left: 0.5rem;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(2) .set-box {
  position: absolute;
  top: 13.4rem;
  right: 0.5rem;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(3) .set-box {
  position: absolute;
  bottom: 5.5rem;
  left: 0.5rem;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(4) .set-box {
  position: absolute;
  bottom: 5.5rem;
  right: 0.5rem;
}
body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(5) .set-box {
  position: absolute;
  bottom: 0.29rem;
  right: 0.5rem;
  width: calc(100% - 0.99rem);
}
@media only screen and (max-width: 767px) {
  body.home-page .home-page-wrapper .right-box .inner-wrapper-right .box-wrapper:nth-child(5) .set-box h2 {
    vertical-align: middle;
  }
}
body.home-page .tout-content-page {
  display: none;
}
body.landing-page {
  /* header banner */
}
body.landing-page .breadcrumb,
body.landing-page .left-side-menu {
  display: none;
}
body.landing-page .content {
  width: 100%;
}
body.landing-page .headbanner {
  width: 100%;
  background-size: cover;
  min-height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  body.landing-page .headbanner {
    min-height: 300px;
  }
}
body.landing-page .headbanner .headbanner-content {
  background-color: #fff;
  padding: 3rem;
  margin: 3rem;
  width: 45%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  body.landing-page .headbanner .headbanner-content {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  body.landing-page .headbanner .headbanner-content {
    width: 100%;
    padding: 1rem;
    margin: 1rem;
  }
}
body.landing-page .headbanner .title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
}
body.landing-page .headbanner .title::after {
  content: "";
  position: absolute;
  background-color: #88c300;
  height: 3px;
  width: 46px;
  margin-left: 0;
  left: 0;
  bottom: 10px;
}
body.landing-page .headbanner .sub-title-primary {
  font-size: 1.2rem;
}
body.landing-page .headbanner .sub-title-secondary {
  font-size: 0.9rem;
  color: #000;
}
body.landing-page .tout-content-page {
  display: none;
}
body.strategy .overview-wrapper {
  border: none;
  margin-bottom: 2rem;
}
body.strategy .business-sec {
  margin-bottom: 3rem;
}
body.strategy .business-sec .business-m {
  margin-bottom: 3rem;
}
body.strategy .overview-content .sub-title {
  font-size: 1.5em;
  margin-top: 1.5em;
  font-weight: normal;
}
body.strategy .overview-content.business-model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.strategy .overview-content.turquoise .sub-title {
  font-size: 1.4em;
  margin-top: 1em;
  font-weight: 600;
  color: #000;
}
body.strategy .overview-content.dotted {
  border: dotted 1px #95c11f;
  margin: 2rem 0;
  padding: 1.5rem;
}
body.strategy .overview-content .business-model-cont {
  padding: 1.5rem 3%;
  padding-top: 0.2rem;
  background-color: #f4f4f4;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
body.strategy .overview-content .business-model-cont-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44%;
          flex: 0 0 44%;
  background-color: #f4f4f4;
}
body.strategy .overview-content img {
  margin: 0 auto;
  height: auto;
  /*object-fit: cover;*/
  /*@media @phone {
                height: auto;
                width: 100%;
            }*/
}
@media all and (max-width: 40rem) {
  body.strategy .overview-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*img {
                height: 20rem;
            }*/
  }
  body.strategy .overview-content .business-model-cont {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
body.strategy .overview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.5rem -0.5rem;
  list-style: none;
  padding: 0;
}
body.strategy .overview-list.with-img {
  margin: 0;
}
body.strategy .overview-list.with-img .module-element {
  border: none;
}
body.strategy .overview-list li {
  border: solid 0.5rem transparent;
  width: 33.3333%;
  min-height: 200px;
}
body.strategy .overview-list li .module-element {
  border: solid 1px #DDDDDD;
  padding: 1.5rem 1.5rem 6rem 1.5rem;
  width: 100%;
  height: 100%;
  position: relative;
}
body.strategy .overview-list li .module-element .title {
  position: relative;
  min-height: 40px;
  margin: 0 0 1em;
  font-size: 1em;
  font-weight: 600;
}
body.strategy .overview-list li .module-element .title::after {
  content: "";
  position: absolute;
  background-color: #88c300;
  height: 3px;
  width: 46px;
  margin-left: 0;
  left: 0;
  bottom: -20px;
}
body.strategy .overview-list li .module-element .percentage {
  display: block;
  font-size: 3em;
  margin-top: 1.2em;
  font-weight: 700;
  color: #9b9b9b;
  position: absolute;
  bottom: 0.5rem;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  body.strategy .overview-list li {
    width: 48.2%;
    margin: 0 20px 20px 0;
  }
  body.strategy .overview-list li:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  body.strategy .overview-list li {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
body.strategy .overview-list.with-img {
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 350px;
}
body.strategy .overview-list.with-img .module-element {
  height: 70%;
}
body.strategy .overview-list.with-img .module-element li {
  border: none;
  padding-top: 50px;
}
body.strategy .overview-list.with-img .module-element .percentage {
  color: #fff;
}
body.strategy .strategy-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.5rem -0.5rem;
  list-style: none;
  padding: 0;
}
body.strategy .strategy-item {
  border: solid 0.5rem transparent;
  width: 33.33%;
  min-height: 200px;
}
@media only screen and (max-width: 767px) {
  body.strategy .strategy-item {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  body.strategy .strategy-item .strategy-title {
    width: 100%;
    margin: 0 auto 3rem;
  }
}
body.strategy .strategy-item ul {
  padding: 0.5rem;
  margin-top: 1.5rem;
}
body.strategy .strategy-item ul li {
  margin: 0 0 0.5rem 1rem;
  line-height: 1.5em;
}
body.strategy .strategy-title {
  color: #fff;
  text-align: center;
  padding: 1rem 1rem 2rem 1rem;
  font-size: 1.6em;
  position: relative;
  /*margin-bottom: 3rem;*/
  /*&::after {
            content: "";
            position: absolute;
            width: 53%;
            height: 0;
            background-color: #78be20;
            padding-bottom: 21%;
            z-index: -1;
            transform-origin: 0 0;
            transform: rotate(-12.2deg) skewX(64.7deg);
            top: 100%;
            left: 0;
        }*/
}
body.strategy .strategy-title::after {
  content: "";
  position: absolute;
  background-image: url('/images/svg/BIS-Mask.svg');
  width: 102%;
  height: 2rem;
  z-index: 1;
  bottom: -1%;
  left: -1%;
  background-image: url(/images/svg/BIS-Mask.svg);
  background-size: 100% 100%;
}
body.strategy .strategy-title.title-buy {
  background: -webkit-gradient(linear, left top, left bottom, from(#76bf9d), to(#50a980));
  background: linear-gradient(#76bf9d, #50a980);
  background-size: contain;
  /*&::after {
                background-color: #50a980;
            }*/
}
body.strategy .strategy-title.title-improve {
  background: -webkit-gradient(linear, left top, left bottom, from(#009e9c), to(#008483));
  background: linear-gradient(#009e9c, #008483);
  background-size: contain;
  /*&::after {
                background-color: #008483;
            }*/
}
body.strategy .strategy-title.title-sell {
  background: -webkit-gradient(linear, left top, left bottom, from(#003b27), to(#004b36));
  background: linear-gradient(#003b27, #004b36);
  background-size: contain;
  /*&::after {
                background-color: #004b36;
            }*/
}
body.strategy .m-approach-wrapper {
  overflow: hidden;
  margin-bottom: 3rem;
}
body.strategy .m-approach-wrapper .heading {
  background: -webkit-gradient(linear, left top, left bottom, from(#1f9d9d), to(#008080));
  background: linear-gradient(180deg, #1f9d9d 0%, #008080 100%);
  color: #fff;
  text-align: center;
  font-size: 1.7em;
  padding: 0.8em 0;
}
body.strategy .m-approach-content {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5rem 0.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.strategy .m-approach-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0.5rem;
  }
}
body.strategy .m-approach-content .panel {
  width: 50%;
  background-color: #fff;
  margin: 2rem;
  padding: 2rem;
  border: solid 0.5rem transparent;
}
body.strategy .m-approach-content .panel:last-child {
  padding: 0;
  border: none;
  margin-left: 0;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  body.strategy .m-approach-content .panel {
    width: 100%;
    margin: 0;
  }
  body.strategy .m-approach-content .panel:last-child {
    margin-top: 0.5rem;
  }
}
body.strategy .circle-cont {
  text-align: center;
  color: #fff;
}
body.strategy .circle-cont span {
  font-weight: 600;
  display: block;
  font-size: 1.5rem;
  text-align: center;
}
body.strategy .circle-outer {
  width: 251px;
  height: 252px;
  position: relative;
  background-repeat: no-repeat;
  margin: auto;
  background-position: center;
  background-image: url(/images/svg/Investments-into-businesses.svg);
}
body.strategy .circle-inner {
  background-color: #009b00;
  width: 200px;
  height: 200px;
  border-radius: 160px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-top: 1.5rem;
}
body.strategy .circle-inner span,
body.strategy .circle-inner p {
  width: 50%;
  margin: 1rem auto;
}
body.strategy .value-creation {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url(/images/value-creation-model.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-bottom: 50%;
}
body.strategy .value-creation .value-creation-item {
  width: 30%;
  position: absolute;
}
body.strategy .value-creation .value-creation-item:nth-of-type(1) {
  top: 0.5rem;
  left: 0;
}
body.strategy .value-creation .value-creation-item:nth-of-type(2) {
  top: 0.5rem;
  right: 0;
}
body.strategy .value-creation .value-creation-item:nth-of-type(3) {
  bottom: 0.5rem;
  left: 0;
}
body.strategy .value-creation .value-creation-item:nth-of-type(4) {
  bottom: 0.5rem;
  right: 0;
}
body.strategy .value-creation .value-creation-item .title {
  font-weight: 600;
  color: #009b00;
}
body.strategy .value-creation .value-creation-item p {
  color: #6f6c70;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media all and (max-width: 55rem) {
  body.strategy .value-creation {
    padding: 0.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-image: none;
    margin-top: -0.5rem;
  }
  body.strategy .value-creation .value-creation-item {
    position: static;
    width: calc(50% - 0.5rem);
    margin-top: 0.5rem;
  }
}
@media all and (max-width: 33rem) {
  body.strategy .value-creation .value-creation-item {
    width: 100%;
  }
}
body.strategy .carousel {
  color: #fff;
}
body.strategy .carousel .number {
  width: 70px;
  margin: 3rem auto;
}
body.strategy .carousel .number > span {
  border-radius: 50px;
  border: solid 1px #fff;
  width: 70px;
  height: 70px;
  display: table-cell;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 2rem;
  margin: 0 auto 0;
}
body.strategy .carousel p {
  margin: 3rem auto 0;
  font-size: 1.3rem;
  width: 70%;
  text-align: center;
}
body.strategy .carousel-cell {
  width: 100%;
  height: 355px;
  background: rgba(0, 128, 128, 0.8);
  counter-increment: gallery-cell;
}
body.strategy .flickity-prev-next-button {
  border-radius: 0;
  background-color: #88c300;
  top: 90%;
}
body.strategy .flickity-prev-next-button.previous {
  background: url("../images/svg/Read%20more%20icon%201.svg") 0 0 no-repeat;
  background-position: 0 0;
  background-size: cover;
  top: 84%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
body.strategy .flickity-prev-next-button.next {
  background: url("../images/svg/Read%20more%20icon%201.svg") 0 0 no-repeat;
}
body.strategy .flickity-prev-next-button svg {
  display: none;
}
body.strategy .flickity-button {
  color: #fff !important;
}
body.strategy .flickity-button-icon {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  body.strategy .qa {
    position: relative;
    cursor: pointer;
    -webkit-transition: background-color 0.4s, opacity 0.4s;
    transition: background-color 0.4s, opacity 0.4s;
    margin-bottom: 0.5rem;
  }
  body.strategy h3 .qa-toggle.toggled::before,
  body.strategy h3 .qa-toggle.toggled::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  body.strategy .qa-toggle {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2rem;
    right: 3rem;
  }
  body.strategy .qa-toggle::after,
  body.strategy .qa-toggle::before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  body.strategy .qa-toggle::before {
    content: "";
    width: 2px;
    height: 20px;
    margin: 0 9px;
  }
  body.strategy .qa-toggle::after {
    content: "";
    width: 20px;
    height: 2px;
    margin: 9px 0;
  }
}
body.strategy .inner h2 {
  padding: 1.1em 0 1.1em 0;
}
body.strategy .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2rem;
}
@media only screen and (max-width: 767px) {
  body.strategy .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
body.strategy .value-col-container {
  width: 40%;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  body.strategy .value-col-container {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2rem;
  }
}
body.strategy .value-col-container p {
  margin: 0;
}
body.strategy div.right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 0;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  body.strategy div.right-block {
    width: 100%;
  }
}
body.strategy div.right-block img {
  width: 100%;
}
body.strategy div.right-block .table {
  margin-top: 2rem;
  width: 100%;
}
body.strategy div.right-block .table table strong,
body.strategy div.right-block .table table span {
  color: #000;
}
body.strategy .value-col {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  body.strategy .value-col {
    width: 100%;
    margin-bottom: 2rem;
  }
}
body.strategy .value-col ul li {
  border-bottom: 1px solid black;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.strategy .value-col ul li .value {
  width: 70%;
}
body.strategy .value-col ul li .cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 30%;
}
body.strategy .value-col-right {
  width: 68%;
}
@media only screen and (max-width: 767px) {
  body.strategy .value-col-right {
    width: 100%;
  }
}
body.strategy .value-col-right .pie-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 767px) {
  body.strategy .value-col-right .pie-chart {
    padding: 0;
  }
}
body.strategy .value-col-right .pie-chart ul {
  display: none;
}
@media only screen and (min-width: 768px) {
  body.strategy ul.tabs {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
    width: 100%;
  }
}
body.strategy ul.tabs li {
  margin: 0;
  cursor: pointer;
  background-image: none;
  font-size: 1.475rem;
  padding: 1em 1.7em 1em 0.7em;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: calc(100% / 3);
  background-color: #5D5D5D;
  border: 4px solid #DDDDDD;
}
body.strategy ul.tabs li:last-child::after {
  display: none;
}
body.strategy ul.tabs li::after {
  right: calc(3rem - (21.891px / 2));
}
body.strategy ul.tabs li:before {
  display: none;
}
body.strategy ul.tabs li h2 {
  color: #fff;
  padding: 0;
  font-size: 14px;
}
body.strategy ul.tabs li.active {
  background-color: #fff;
  border-bottom: none;
}
body.strategy ul.tabs li.active h2 {
  color: #000;
}
body.strategy .tab_drawer_heading {
  display: none;
}
@media screen and (max-width: 767px) {
  body.strategy .tabs {
    display: none;
  }
  body.strategy .tab_drawer_heading {
    color: #ffffff;
    border-top: 1px solid #333;
    margin: 1rem 0 0 0;
    padding: 2rem 3rem;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: lightblue;
    line-height: 30px;
    text-transform: uppercase;
    background-color: #5D5D5D;
  }
  body.strategy .tab_drawer_heading span {
    text-transform: capitalize;
    font-size: 16px;
  }
  body.strategy .tab_drawer_heading.toggled:nth-of-type(1) {
    margin: 1rem 0 0 0;
  }
  body.strategy .tab_drawer_heading.toggled:nth-of-type(2) {
    margin: 1rem 0 0 0;
  }
  body.strategy .tab_drawer_heading.toggled:nth-of-type(3) {
    margin: 1rem 0 0 0;
  }
}
body.strategy .tab_content {
  display: none;
}
body.strategy .tab_container {
  border-top: none;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}
body.strategy .pie-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 767px) {
  body.strategy .pie-chart {
    padding: 0;
  }
}
body.strategy .pie-chart ul {
  display: none;
}
.presentations .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.presentations .results {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.presentations .results .resultList {
  padding-left: 0;
}
.presentations .results .resultList li {
  display: block;
  border: 1px solid #ddd;
  margin-bottom: 0;
  padding: 2rem;
}
.presentations .results .resultList li.first-element {
  position: relative;
}
.presentations .results .resultList li.first-element .logo-gray {
  position: absolute;
  bottom: 0;
  background-image: url(/images/svg/logo-gray.svg);
  width: 98px;
  height: 62px;
  left: 50%;
  margin-left: -50px;
}
.presentations .results .resultList li.first-element .shape {
  position: absolute;
  bottom: 0;
  background-image: url(/images/svg/shape.svg);
  width: 213px;
  height: 166px;
  right: 0;
  z-index: -1;
}
.presentations .results .resultList li.first-element a.extrenal-file {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}
.presentations .results .resultList li.first-element a.extrenal-file:before {
  content: "";
  position: absolute;
  background-image: url(/images/svg/external-link.svg);
  height: 26px;
  width: 1.5rem;
  left: 0rem;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList li.first-element a.extrenal-file:before {
    left: 0;
  }
}
.presentations .results .resultList li:first-of-type {
  margin-bottom: 3rem;
  -webkit-box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}
.presentations .results .resultList li:first-of-type .result-wrapper {
  height: calc(240px - 2rem);
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList li:first-of-type .result-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
}
.presentations .results .resultList li:first-of-type .result-wrapper a.file-first {
  display: block;
  position: relative;
  padding-left: 2rem;
}
.presentations .results .resultList li:first-of-type .result-wrapper a.file-first:before {
  content: "";
  position: absolute;
  background-image: url(/images/svg/download.svg);
  height: 26px;
  width: 1.5rem;
  left: 0;
  background-repeat: no-repeat;
}
.presentations .results .resultList li:first-of-type .result-wrapper div:first-child {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList li:first-of-type .result-wrapper div:first-child {
    width: 100%;
  }
}
.presentations .results .resultList li:first-of-type .result-wrapper div:nth-child(2) {
  display: none;
}
.presentations .results .resultList li:first-of-type .result-wrapper div:nth-child(3) {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList li:first-of-type .result-wrapper div:nth-child(3) {
    width: 100%;
  }
}
.presentations .results .resultList li:first-of-type .date-result {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 23px;
  font-weight: normal;
  color: black;
}
.presentations .results .resultList li:first-of-type .title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  color: #154c39;
}
.presentations .results .resultList li:not(:first-of-type) + li {
  border-top: none;
}
.presentations .results .resultList .result-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(161px - 2rem);
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .result-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
  }
}
.presentations .results .resultList .result-wrapper div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.presentations .results .resultList .result-wrapper div a.file-first {
  display: none;
}
.presentations .results .resultList .result-wrapper div:first-child {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .result-wrapper div:first-child {
    width: 100%;
  }
}
.presentations .results .resultList .result-wrapper div:nth-child(2) {
  width: 20%;
  margin-top: 2.9rem;
  /*a.extrenal-file {
                            width: 100%;
                            margin-top: 2rem;
                            display: flex !important;
                            justify-content: flex-end;
                            position: relative;

                            @media @phone {
                                justify-content: flex-start;
                                padding-left: 3rem;
                            }

                            &:before {
                                content: "";
                                position: absolute;
                                background-image: url(/images/svg/external-link.svg);
                                height: 26px;
                                width: 1.5rem;
                                left: 2rem;
                                background-repeat: no-repeat;
                                bottom: 0;

                                @media @phone {
                                    left: 0;
                                }
                            }
                        }*/
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .result-wrapper div:nth-child(2) {
    width: 100%;
  }
}
.presentations .results .resultList .result-wrapper div:nth-child(3) {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .result-wrapper div:nth-child(3) {
    width: 100%;
    margin-top: 2rem;
  }
}
.presentations .results .resultList .result-wrapper a.img {
  text-align: center;
}
.presentations .results .resultList .result-wrapper img {
  display: inline-block;
}
.presentations .results .resultList .result-wrapper .date-result {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 23px;
  font-weight: normal;
  color: black;
}
.presentations .results .resultList .extrenal-file {
  margin-top: 0.5rem;
  padding: 0 0 0 2rem;
  background-image: url(/images/svg/external-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .extrenal-file {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 3rem;
  }
}
.presentations .results .resultList .file {
  margin-top: 0.5rem;
  padding: 0 0 0 2rem;
  background-image: url(/images/svg/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
@media only screen and (max-width: 767px) {
  .presentations .results .resultList .file {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 3rem;
  }
}
.presentations ul.tabs-release {
  margin: 0;
  margin-top: 2rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .presentations ul.tabs-release.announcements {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 2rem;
  }
}
.presentations ul.tabs-release.announcements li {
  width: 100%;
  line-height: 0.8rem;
  padding: 0.5rem;
  width: calc(100% / 7);
}
.presentations ul.tabs-release.announcements li a {
  position: relative;
}
.presentations ul.tabs-release.announcements li.selected {
  background-color: #fff;
  border-bottom: none;
}
.presentations ul.tabs-release.announcements li.selected a {
  color: #000;
}
.presentations ul.tabs-release li {
  margin: 0;
  background-image: none;
  font-size: 1.475rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: calc(100% / 3);
  background-color: #5d5d5d;
  border: 4px solid #dddddd;
  min-width: 110px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.presentations ul.tabs-release li.selected {
  background-color: #fff;
  border-bottom: none;
}
.presentations ul.tabs-release li.selected a {
  color: #000;
}
.presentations ul.tabs-release li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  width: 100%;
  height: 100%;
  display: inline-block;
  line-height: 1rem;
}
.presentations .year-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  padding: 2rem 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .presentations .year-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 2rem;
  }
}
.presentations .year-list .year-button {
  -ms-flex-preferred-size: calc(100% / 6);
      flex-basis: calc(100% / 6);
  border: none;
  background-color: transparent;
  color: #000;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  outline: none;
  /*&:last-of-type {
                position: relative;
                visibility: hidden;

                &::after {
                    content: "Archive";
                    visibility: visible;
                    left: 0;
                    width: 100%;
                    position: absolute
                }
            }*/
}
.presentations .year-list .year-button.selected {
  color: #14aa00;
}
@media only screen and (max-width: 767px) {
  .presentations .year-list .year-button {
    margin-bottom: 0.5rem;
  }
}
.presentations ul.result-list-announcements {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0rem -1rem 3rem -1rem;
}
.presentations ul.result-list-announcements li {
  width: 33.33%;
  min-height: 250px;
  border: 1px solid #ddd;
  border: 1rem solid transparent;
}
@media only screen and (max-width: 767px) {
  .presentations ul.result-list-announcements li {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .presentations ul.result-list-announcements li {
    width: 100%;
  }
}
.presentations ul.result-list-announcements li .announcements-wrap {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #ddd;
}
.presentations ul.result-list-announcements li .announcements-wrap span.date {
  margin-bottom: 2rem;
  margin-top: 1rem;
  color: #000;
  font-size: 14px;
}
.presentations ul.result-list-announcements li .announcements-wrap .title {
  color: #1b5642;
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}