@charset "UTF-8";

/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * MAIN
 * ABOUT
 * RESEARCH
 * SHAREHOLDER
 * INVESTOR
 * NEWS
 * CONTACT
 * CAREERS
 * SEARCH
 * NEWSLETTER
 * COOKIE
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  color: #717071;
  font-family: '微軟正黑體', 'Microsoft JhengHei', sans-serif;
  padding-top: 60px;
}

@media (min-width: 992px) {
  body {
    padding-top: 120px;
  }
}

a {
  color: #717071;
  display: inline-block;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

a:hover,
a:focus {
  color: #338e39;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

.container {
  max-width: 100%;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1350px;
    padding: 0;
  }
}

#scrollUp {
  right: 5%;
  bottom: 15%;
  z-index: 1000 !important;
}

#scrollUp img {
  width: 50px;
}

@media (min-width: 992px) {
  #scrollUp img {
    width: 60px;
  }
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header {
  background-color: #ffffff;
}

.header>.container {
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 1536px) {
  .header>.container {
    max-width: 1440px;
    padding: 0;
  }
}

.header-active .navbar {
  height: 60px;
}

@media (min-width: 992px) {
  .header-active .navbar {
    height: 80px;
  }
}

.navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  height: 60px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

@media (min-width: 992px) {
  .navbar {
    height: 120px;
  }
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
}

.navbar-brand img {
  width: 200px;
}

.navbar-brand img.white {
  display: none;
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: auto;
    height: auto;
  }
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 1050;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #474747;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 15px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 33px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 32px;
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

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

.navbar-nav {
  background-color: #ffffff;
  padding: 1rem;
  width: 80%;
  height: calc(100vh - 60px);
  position: fixed;
  top: 60px;
  right: -100%;
  bottom: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-nav.open {
  right: 0;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-nav {
    background-color: transparent;
    padding: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    visibility: visible;
    overflow-y: visible;
  }
}

.navbar-nav .nav-item {
  padding: 0 0.1rem;
}

@media (min-width: 1200px) {
  .navbar-nav .nav-item {
    padding: 0 0.25rem;
  }
}

.navbar-nav .nav-link {
  color: #474747;
  font-size: 0.9375rem;
  font-weight: normal;
  letter-spacing: 0.075rem;
  vertical-align: middle;
  position: relative;
}

.navbar-nav .nav-link img {
  margin-top: -0.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #338e39;
  font-weight: bold;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 1.0625rem;
    letter-spacing: 0.1rem;
    text-align: center;
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    letter-spacing: 0.25rem;
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
}

.navbar-nav .dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  background-color: #338e39;
  padding: 0.75rem;
  min-width: 100%;
  width: 100%;
}

.navbar-nav .dropdown .dropdown-item {
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  padding: 0.25rem 0;
}

.navbar-nav .dropdown .dropdown-item:hover,
.navbar-nav .dropdown .dropdown-item:focus,
.navbar-nav .dropdown .dropdown-item.active {
  background-color: transparent;
  font-weight: bold;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  padding: 0;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  letter-spacing: 0.075rem;
  padding: 0.125rem 0;
  padding-left: 1.125rem;
  position: relative;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-menu .dropdown-item::before {
  content: '';
  border-radius: 100%;
  background-color: #ffffff;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.3rem;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown .dropdown-toggle::after {
    display: none;
  }

  .navbar-nav .dropdown .dropdown-menu {
    min-width: 135px;
    width: 150px;
    margin-top: 1.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .navbar-nav .dropdown .dropdown-item {
    font-size: 1.0625rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-nav .nav-lang .dropdown-menu {
    margin-left: 0.25rem;
    min-width: 50px;
    width: 50px;
  }

  .navbar-nav .nav-lang .dropdown-item {
    text-align: center;
  }

  .navbar-nav .nav-lang.nav-item,
  .navbar-nav .nav-lang .nav-link {
    padding-right: 0 !important;
  }
}

.navbar .nav-search .dropdown-toggle {
  padding: 0.5rem 0;
  margin-top: 0.25rem;
}

.navbar .nav-search .dropdown-toggle::after {
  display: none;
}

.navbar .nav-search .dropdown-toggle .white {
  display: none;
}

.navbar .nav-search .dropdown-menu {
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  margin-top: 0 !important;
  min-width: 100%;
  width: 100%;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
  padding: 0.25rem 0;
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
}

.navbar .nav-search .form-inline {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar .nav-search .form-control {
  border-radius: 0;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9375rem;
  font-weight: 300;
  width: 94%;
  height: 25px;
  padding: 0 1rem;
  position: relative;
}

.navbar .nav-search .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar .nav-search .form-control::-webkit-input-placeholder {
  color: #aaaaaa;
  letter-spacing: 0.1rem;
}

.navbar .nav-search .form-control::-moz-placeholder {
  color: #aaaaaa;
  letter-spacing: 0.1rem;
}

.navbar .nav-search .form-control:-ms-input-placeholder {
  color: #aaaaaa;
  letter-spacing: 0.1rem;
}

.navbar .nav-search .form-control::-ms-input-placeholder {
  color: #aaaaaa;
  letter-spacing: 0.1rem;
}

.navbar .nav-search .form-control::placeholder {
  color: #aaaaaa;
  letter-spacing: 0.1rem;
}

.navbar .nav-search .form-control::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background-image: url(../images/close.svg);
  position: relative;
  height: 15px;
  width: 15px;
  cursor: pointer;
}

.navbar .nav-search .btn {
  width: auto;
  padding: 0 1rem;
}

.navbar .nav-search .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 576px) {
  .navbar .nav-search .dropdown-toggle {
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 992px) {
  .navbar .nav-search .dropdown-toggle {
    margin-top: 0;
  }

  .navbar .nav-search .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 330px;
    width: 330px;
    position: absolute;
    left: auto;
    right: -40px;
  }

  .navbar .nav-search .form-control {
    font-size: 1.0625rem;
    width: 82%;
  }

  .navbar .nav-search .form-control::-webkit-input-placeholder {
    letter-spacing: 0.125rem;
  }

  .navbar .nav-search .form-control::-moz-placeholder {
    letter-spacing: 0.125rem;
  }

  .navbar .nav-search .form-control:-ms-input-placeholder {
    letter-spacing: 0.125rem;
  }

  .navbar .nav-search .form-control::-ms-input-placeholder {
    letter-spacing: 0.125rem;
  }

  .navbar .nav-search .form-control::placeholder {
    letter-spacing: 0.125rem;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  background-position: center center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  height: 200px;
}

@media (min-width: 992px) {
  .banner {
    padding: 6rem 0;
    height: 380px;
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #313c4c;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer a {
  color: #ffffff;
}

.footer a:hover,
.footer a:focus {
  color: #e19f1e;
}

.footer>.container {
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 1536px) {
  .footer>.container {
    max-width: 1440px;
    padding: 0;
  }
}

.footer>.container>.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .footer>.container>.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.footer>.container>.row+.row {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 992px) {
  .footer>.container>.row+.row {
    margin-top: 4rem;
  }
}

.footer-info .nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-info .nav li {
  font-size: 0.9375rem;
  text-align: left;
  letter-spacing: 0.025rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer-info .nav li:last-child {
  margin-bottom: 0;
}

.footer-info .nav li span {
  white-space: nowrap;
  margin-right: 1rem;
}

.footer-info .nav li a {
  font-size: 0.9375rem;
}

@media (min-width: 992px) {
  .footer-info .nav {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-info .nav li span {
    margin-right: 3.5rem;
  }
}

.footer-nav {
  position: relative;
  margin: 1rem 0;
}

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

.footer-nav .nav:last-child {
  margin-bottom: 0;
}

.footer-nav .nav li {
  text-align: center;
  width: 100%;
}

.footer-nav .nav li a {
  font-size: 0.9375rem;
  letter-spacing: 0.2rem;
}

@media (min-width: 576px) {
  .footer-nav .nav {
    margin-bottom: 0.5rem;
  }

  .footer-nav .nav li {
    width: 120px;
  }
}

@media (min-width: 992px) {
  .footer-nav {
    margin: 0;
    padding-left: 3.5rem !important;
  }

  .footer-nav .nav {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 1.25rem;
  }

  .footer-nav .nav li {
    text-align: left;
  }

  .footer-nav .nav li a {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1200px) {
  .footer-nav .nav li {
    width: 135px;
  }

  .footer-nav .nav li a {
    font-size: 1.125rem;
  }
}

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

@media (min-width: 992px) {
  .footer-logo {
    text-align: right;
  }
}

.footer-copy {
  color: #91a1a5;
  font-size: 0.8125rem;
  text-align: center;
}

.footer-copy a {
  color: #91a1a5;
  margin-right: 0.5rem;
}

@media (min-width: 992px) {
  .footer-copy {
    text-align: left;
  }
}

.footer-share {
  margin-bottom: 1rem;
}

.footer-share .nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-share .nav li {
  margin-left: 0.75rem;
}

.footer-share .nav li:first-child {
  margin-left: 0;
}

.footer-share .nav li a {
  color: #91a1a5;
  font-size: 1.75rem;
}

.footer-share .nav li a:hover,
.footer-share .nav li a:focus {
  color: #e19f1e;
}

@media (min-width: 992px) {
  .footer-share {
    margin-bottom: 0;
  }

  .footer-share .nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* PAGE-HEADER */
.page-header h1,
.page-header h2 {
  color: #338e39;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
  margin-left: -0.25rem;
}

.page-header h1 span,
.page-header h2 span {
  display: block;
  color: #5cb131;
  font-size: 1.125rem;
  font-family: "DINAlternate-Bold";
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
}

@media (min-width: 992px) {

  .page-header h1,
  .page-header h2 {
    font-size: 4.125rem;
    margin-bottom: 3rem;
  }

  .page-header h1 span,
  .page-header h2 span {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
  }
}

/* BREADCRUMB */
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb .breadcrumb-item {
  font-size: 0.9375rem;
  letter-spacing: normal;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding-left: 0;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  padding: 0 0.25rem;
}

@media (min-width: 992px) {
  .breadcrumb .breadcrumb-item {
    font-size: 1.0625rem;
    letter-spacing: 0.05rem;
  }

  .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 1rem;
  }
}

/* SIDEBAR */
.sidebar {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.sidebar h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

.sidebar h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

.sidebar p {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}

.sidebar .nav {
  display: none;
}

.sidebar .nav li a {
  display: block;
  background-image: url(../images/plus-green.svg);
  background-position: 95% center;
  background-repeat: no-repeat;
  background-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #338e39;
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 2rem 0.75rem 0;
}

.sidebar .nav li a:hover,
.sidebar .nav li a:focus,
.sidebar .nav li a.active {
  background-image: url(../images/plus.svg);
  background-color: #e19f1e;
  color: #ffffff;
  padding: 0.75rem 2rem 0.75rem 1rem;
}

@media (min-width: 992px) {
  .sidebar {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .sidebar h2 {
    font-size: 2.25rem;
    letter-spacing: 0.35rem;
    margin-bottom: 1.5rem;
  }

  .sidebar h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }

  .sidebar p {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .sidebar .nav {
    display: block;
  }
}

@media (min-width: 1536px) {
  .sidebar {
    padding-right: 3.75rem;
  }
}

/* CONTENT */
.content {
  padding-left: 15px;
}

@media (min-width: 1536px) {
  .content {
    padding-left: 3.75rem;
  }
}

/* ACCORDION */
.accordion .btn {
  border-radius: 0;
  border-bottom: 3px solid #338e39;
  display: block;
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2rem;
  width: 100%;
  height: auto;
  padding: 0.5rem 3rem 0.5rem 0;
  position: relative;
}

.accordion .btn::before {
  display: none;
}

.accordion .btn::after {
  content: '\f0d7';
  color: #338e39;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.accordion .btn.collapsed {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.accordion .btn.collapsed::after {
  color: #000000;
}

@media (min-width: 992px) {
  .accordion .btn {
    font-size: 1.5625rem;
    line-height: 2.5rem;
    padding: 1rem 3rem 1rem 1rem;
  }

  .accordion .btn::after {
    right: 1.5rem;
  }
}

.accordion .card {
  border-radius: 0;
  border: none;
}

.accordion .card-header {
  border-radius: 0;
  border-bottom: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.accordion .card-body {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
}

@media (min-width: 992px) {
  .accordion .card-body {
    padding: 2rem 1.25rem;
  }
}

/* TABLE */
.table thead th {
  border: none;
  background-color: #e19f1e;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
  padding: 1rem 1.5rem;
}

.table tbody tr:nth-child(odd) td {
  background-color: #fef9f3;
}

.table tbody tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.table tbody td {
  border-top: none;
  color: #717071;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.025rem;
  padding: 1.75rem 1.5rem;
}

.table tbody td:first-child {
  color: #000000;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

@media (min-width: 992px) {
  .table tbody td {
    font-size: 1.125rem;
    line-height: 2rem;
  }

  .table tbody td:first-child {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .table thead {
    display: none;
  }

  .table tr {
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .table tbody td {
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-top: 50px;
    position: relative;
  }

  .table tbody td::before {
    content: attr(data-content);
    background-color: #e19f1e;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}

/* FORM */
.form .form-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.25rem;
  margin-bottom: 1.5rem;
}

.form .col-form-label {
  color: #515151;
  font-weight: bold;
}

.form .col-form-label span {
  color: #338e39;
}

.form .form-control {
  border-radius: 0;
  border: none;
}

.form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form .form-check-inline {
  margin-bottom: 0.75rem;
  margin-right: 2rem;
}

.form .form-interest {
  border-color: #338e39;
  padding-bottom: 3rem;
}

.form .form-interest .form-check {
  width: 100%;
}

.form .form-interest .form-check:first-child {
  width: 100%;
}

@media (min-width: 576px) {
  .form .form-interest .form-check {
    width: auto;
  }
}

.form input[type="checkbox"] {
  -webkit-appearance: none;
  background-image: url(../images/checkbox.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.form input[type="checkbox"]:checked {
  background-image: url(../images/checkbox-checked.svg);
}

.form .btn-wrap {
  border-bottom: none;
  text-align: center;
}

@media (min-width: 768px) {
  .form .btn-wrap {
    text-align: right;
  }
}

.form .btn.green.fill {
  font-size: 1.125rem;
  font-weight: normal;
  text-align: center;
  padding-left: 0;
  margin-top: 1.5rem;
}

.form .btn.green.fill::before {
  display: none;
}

@media (min-width: 576px) {
  .form .btn.green.fill {
    width: 200px;
  }
}

@media (min-width: 768px) {
  .form .btn.green.fill {
    margin-top: 0;
  }
}

.form .code {
  padding-right: 140px;
}

.form .code img {
  position: absolute;
  top: 0;
  right: 0;
}

/* BUTTON */
.btn {
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.05rem;
  line-height: 45px;
  width: 180px;
  height: 45px;
  padding: 0;
  padding-left: 4rem;
  position: relative;
}

.btn::before {
  content: '';
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1.25rem;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.btn:hover,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 992px) {
  .btn {
    font-size: 0.9375rem;
    line-height: 50px;
    width: 220px;
    height: 50px;
    padding-left: 4.75rem;
  }

  .btn::before {
    background-size: 25px;
    width: 25px;
    height: 25px;
  }
}

.btn.white {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

.btn.white::before {
  background-image: url(../images/plus.svg);
}

.btn.white:hover,
.btn.white:focus {
  background-color: #ffffff;
  color: #338e39;
}

.btn.white:hover::before,
.btn.white:focus::before {
  background-image: url(../images/plus-green.svg);
}

.btn.green {
  border: 1px solid #338e39;
  background-color: transparent;
  color: #338e39;
}

.btn.green::before {
  background-image: url(../images/plus-green.svg);
}

.btn.green:hover,
.btn.green:focus {
  border: 1px solid #338e39;
  background-color: #338e39;
  color: #ffffff;
}

.btn.green:hover::before,
.btn.green:focus::before {
  background-image: url(../images/plus.svg);
}

.btn.green.fill {
  border: 1px solid #338e39;
  background-color: #338e39;
  color: #ffffff;
}

.btn.green.fill::before {
  background-image: url(../images/plus.svg);
}

.btn.green.fill:hover,
.btn.green.fill:focus {
  border: 1px solid #338e39;
  background-color: transparent;
  color: #338e39;
}

.btn.green.fill:hover::before,
.btn.green.fill:focus::before {
  background-image: url(../images/plus-green.svg);
}

.btn.green.fill-secondary {
  border: 1px solid #338e39;
  background-color: #338e39;
  color: #ffffff;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.25rem;
  padding-left: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn.green.fill-secondary::before {
  display: none;
}

.btn.green.fill-secondary span {
  background-image: url(../images/back.svg);
  background-size: 15px;
  width: 15px;
  height: 15px;
}

.btn.green.fill-secondary:hover,
.btn.green.fill-secondary:focus {
  border: 1px solid #338e39;
  background-color: transparent;
  color: #338e39;
}

.btn.green.fill-secondary:hover span,
.btn.green.fill-secondary:focus span {
  background-image: url(../images/back-green.svg);
}

@media (min-width: 992px) {
  .btn.green.fill-secondary {
    font-size: 1.125rem;
  }

  .btn.green.fill-secondary span {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
}

.btn.orange {
  border: 1px solid #e19f1e;
  background-color: transparent;
  color: #e19f1e;
}

.btn.orange::before {
  background-image: url(../images/plus-orange.svg);
}

.btn.orange:hover,
.btn.orange:focus {
  border: 1px solid #e19f1e;
  background-color: #e19f1e;
  color: #ffffff;
}

.btn.orange:hover::before,
.btn.orange:focus::before {
  background-image: url(../images/plus.svg);
}

.btn.orange.fill {
  border: 1px solid #e19f1e;
  background-color: #e19f1e;
  color: #ffffff;
}

.btn.orange.fill::before {
  background-image: url(../images/plus.svg);
}

.btn.orange.fill:hover,
.btn.orange.fill:focus {
  border: 1px solid #e19f1e;
  background-color: transparent;
  color: #e19f1e;
}

.btn.orange.fill:hover::before,
.btn.orange.fill:focus::before {
  background-image: url(../images/plus-orange.svg);
}

.btn.orange.fill-secondary {
  border: 1px solid #e19f1e;
  background-color: #e19f1e;
  color: #ffffff;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.25rem;
  padding-left: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn.orange.fill-secondary::before {
  display: none;
}

.btn.orange.fill-secondary span {
  background-image: url(../images/back.svg);
  background-size: 15px;
  width: 15px;
  height: 15px;
}

.btn.orange.fill-secondary:hover,
.btn.orange.fill-secondary:focus {
  border: 1px solid #e19f1e;
  background-color: transparent;
  color: #e19f1e;
}

.btn.orange.fill-secondary:hover span,
.btn.orange.fill-secondary:focus span {
  background-image: url(../images/back-orange.svg);
}

@media (min-width: 992px) {
  .btn.orange.fill-secondary {
    font-size: 1.125rem;
  }

  .btn.orange.fill-secondary span {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
}

.btn.btn-s {
  font-size: 0.8125rem;
  line-height: 45px;
  width: 180px;
  height: 45px;
  padding-left: 4rem;
}

.btn.btn-s::before {
  background-size: 20px;
  width: 20px;
  height: 20px;
}

/* PICTURE */
.pic a {
  background-color: #338e39;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pic a::before {
  content: '';
  width: 150px;
  height: 20px;
  background: url(../images/more.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a img {
  width: 100%;
  opacity: 1;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a:hover img,
.pic a:focus img {
  opacity: 0.15;
}

.pic a:hover::before,
.pic a:focus::before {
  opacity: 1;
}

/* PAGINATION */
.pagination-wrap {
  margin-top: 3rem;
}

.pagination .page-link {
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: #717071;
  text-align: center;
  line-height: 35px;
  width: 45px;
  height: 35px;
  padding: 0;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  background-color: #e19f1e;
  color: #ffffff;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-left: none;
  border-radius: 0;
  background-image: url(../images/arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:first-child .page-link:focus,
.pagination .page-item:last-child .page-link:hover,
.pagination .page-item:last-child .page-link:focus {
  background-color: transparent;
  background-image: url(../images/arrow-active.svg);
}

.pagination .page-item:last-child .page-link {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about-profile {
  background: url(../images/about-profile-bg.jpg) left top no-repeat;
  min-height: 1000px;
}

.about-profile>section {
  padding: 3rem 0 0;
}

@media (min-width: 992px) {
  .about-profile>section {
    padding: 6rem 0 0;
  }
}

.about-profile-item>.container {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .about-profile-item>.container {
    max-width: 1030px;
  }
}

.about-profile-item .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -0.75rem;
}

.about-profile-item .row>div {
  padding: 0 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .about-profile-item .row>div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 29%;
    -ms-flex: 0 0 29%;
    flex: 0 0 29%;
    max-width: 29%;
  }
}

.about-profile-item .row:nth-child(2)>div:nth-child(1) .text {
  background-color: rgba(51, 142, 57, 0.95);
}

.about-profile-item .row:nth-child(2)>div:nth-child(2) .text {
  background-color: rgba(150, 188, 81, 0.95);
}

.about-profile-item .row:nth-child(2)>div:nth-child(3) .text {
  background-color: rgba(224, 147, 62, 0.95);
}

.about-profile-item .row:last-child>div:nth-child(1) .text {
  background-color: rgba(33, 75, 104, 0.95);
}

@media (min-width: 992px) {
  .about-profile-item .row:last-child>div:nth-child(1) {
    margin-left: 8rem;
  }
}

.about-profile-item .row:last-child>div:nth-child(2) .text {
  background-color: rgba(51, 142, 57, 0.95);
}

.about-profile-item .row:last-child>div:nth-child(3) .text {
  background-color: rgba(150, 188, 81, 0.95);
}

.about-profile-item h2 {
  color: #338e39;
  font-family: "DINAlternate-Bold";
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .about-profile-item h2 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}

.about-profile-item .text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}

.about-profile-item .text h3 {
  font-family: "DINAlternate-Bold";
  font-size: 3.125rem;
  margin-bottom: 2rem;
}

.about-profile-item .text h3 sub {
  font-size: 1.25rem;
}

.about-profile-item .text p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .about-profile-item .text {
    height: 260px;
  }
}

.about-profile-text>.container {
  max-width: 100%;
}

@media (min-width: 1536px) {
  .about-profile-text>.container {
    max-width: 1440px;
  }
}

.about-profile-text>.container>.row {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.about-profile-text .txt {
  padding: 2rem 1rem !important;
}

.about-profile-text .txt h2 {
  color: #338e39;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

.about-profile-text .txt h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 1rem;
  letter-spacing: 0.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-profile-text .txt p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.about-profile-text .txt p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-profile-text .txt {
    padding: 3rem !important;
  }

  .about-profile-text .txt h2 {
    font-size: 2.5rem;
  }

  .about-profile-text .txt p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1536px) {
  .about-profile-text .txt {
    padding: 5.5rem 7.5rem !important;
  }
}

.about-profile-text .pic {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
}

.about-profile-history h2 {
  color: #338e39;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

.about-profile-history h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 1rem;
  letter-spacing: 0.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-profile-history p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.about-profile-history p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-profile-history h2 {
    font-size: 2.5rem;
  }

  .about-profile-history p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.about-profile-history .item {
  padding-bottom: 1rem;
  position: relative;
}

.about-profile-history .item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  width: 1px;
  height: auto;
  position: absolute;
  left: 45px;
  top: 0;
  bottom: 0;
}

.about-profile-history .item:last-child {
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .about-profile-history .item:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.about-profile-history .date {
  margin-bottom: 1.3rem;
}

.about-profile-history .date span {
  background-color: #999999;
  border-radius: 100%;
  color: #ffffff;
  font-family: "DINAlternate-Bold";
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 90px;
  width: 90px;
  height: 90px;
  position: relative;
}

.about-profile-history .date span::before {
  content: '';
  border-radius: 100%;
  border: 1px solid #ffffff;
  width: 85px;
  height: 85px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .about-profile-history .date {
    text-align: center;
  }

  .about-profile-history .date span {
    font-size: 2.125rem;
    line-height: 125px;
    width: 125px;
    height: 125px;
  }

  .about-profile-history .date span::before {
    width: 110px;
    height: 110px;
  }
}

.about-profile-history .text {
  padding-left: 43px;
}

.about-profile-history .text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.about-profile-history .text ul li {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.about-profile-history .text ul li:last-child {
  margin-bottom: 0;
}

.about-profile-history .text ul li::before {
  content: '';
  border-radius: 100%;
  background-color: #338e39;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (min-width: 992px) {
  .about-profile-history .text {
    padding-left: 0;
  }

  .about-profile-history .text ul li {
    font-size: 1.1875rem;
    line-height: 2rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-profile-history .text ul li::before {
    width: 10px;
    height: 10px;
    top: 10.5px;
    left: -4.75px;
  }
}

.about-profile-history .item-primary {
  margin-top: 3rem;
}

.about-profile-history .item-primary .date span {
  background-color: #338e39;
}

@media (min-width: 992px) {
  .about-profile-history .item-secondary ul li {
    text-align: right;
    padding-left: 0;
    padding-right: 1.5rem;
  }

  .about-profile-history .item-secondary ul li::before {
    left: auto;
    right: -5px;
  }
}

.about-partners {
  background-color: #f7f7f7;
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .about-partners {
    padding-top: 5rem;
  }
}

.about-partners-view {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.about-partners-view p {
  font-size: 1rem;
  letter-spacing: 0.075rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .about-partners-view {
    padding: 3rem;
  }

  .about-partners-view p {
    font-size: 1.1875rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1536px) {
  .about-partners-view {
    padding: 6.5rem;
  }
}

.about-partners-item {
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.about-partners-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  width: auto;
  height: 1px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
}

@media (min-width: 768px) {
  .about-partners-item {
    padding-bottom: 2.5rem;
    margin-bottom: 4rem;
  }
}

.about-partners-pic {
  margin-bottom: 1rem;
}

.about-partners-pic img {
  border: 1px solid #d0d0d0;
}

@media (min-width: 768px) {
  .about-partners-pic {
    margin-bottom: 0;
  }
}

.about-partners-txt h2 {
  color: #338e39;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.about-partners-txt h3 {
  color: #3a3a3a;
  font-size: 1rem;
}

.about-partners-txt p {
  font-size: 0.9375rem;
  letter-spacing: normal;
  text-align: left;
}

@media (min-width: 992px) {
  .about-partners-txt h2 {
    font-size: 2rem;
  }

  .about-partners-txt h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .about-partners-txt p {
    font-size: 1rem;
    line-height: 1.9rem;
  }
}

.about-partners-link {
  text-align: center;
  display: none;
}

.about-partners-link a {
  border-radius: 100%;
  border: 1px solid #338e39;
  background-color: #ffffff;
  color: #338e39;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.1rem;
  width: 130px;
  height: 130px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-partners-link a span {
  background-image: url(../images/plus-green.svg);
  background-size: 18px;
  width: 18px;
  height: 18px;
  margin-bottom: 0.5rem;
}

.about-partners-link a:hover,
.about-partners-link a:focus {
  background-color: #338e39;
  color: #ffffff;
}

.about-partners-link a:hover span,
.about-partners-link a:focus span {
  background-image: url(../images/plus.svg);
}

@media (min-width: 992px) {
  .about-partners-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-team {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .about-team {
    padding: 5rem 0;
  }
}

.about-team .modal-dialog {
  max-width: 95%;
}

@media (min-width: 1440px) {
  .about-team .modal-dialog {
    max-width: 1350px;
  }
}

.about-team .modal-content {
  border-radius: 0;
}

.about-team .modal-header {
  border-bottom: none;
  padding: 0;
}

.about-team .modal-header .close {
  opacity: 1;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: 2;
  outline: 0;
  text-shadow: none;
}

.about-team .modal-header .close img {
  width: 30px;
}

.about-team .modal-header .close:hover,
.about-team .modal-header .close:focus {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .about-team .modal-header .close {
    top: 0;
  }

  .about-team .modal-header .close img {
    width: auto;
  }
}

.about-team .modal-body {
  padding: 3rem 1rem;
}

@media (min-width: 992px) {
  .about-team .modal-body {
    padding: 3rem;
  }
}

@media (min-width: 1536px) {
  .about-team .modal-body {
    padding: 7rem;
  }
}

.about-team .modal-body .pic {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-team .modal-body .pic {
    margin-bottom: 0;
  }
}

@media (min-width: 1536px) {
  .about-team .modal-body .pic {
    padding-right: 4rem;
  }
}

.about-team .modal-body .text h3 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.about-team .modal-body .text h3 span {
  display: block;
  color: #338e39;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.125rem;
  margin-top: 0.25rem;
}

.about-team .modal-body .text p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

@media (min-width: 576px) {
  .about-team .modal-body .text h3 span {
    display: inline-block;
    margin-left: 0.5rem;
  }
}

@media (min-width: 992px) {
  .about-team .modal-body .text h3 {
    font-size: 1.875rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .about-team .modal-body .text h3 span {
    font-size: 1.1875rem;
  }

  .about-team .modal-body .text p {
    font-size: 1.0625rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

.about-team-list {
  margin: 0 -1rem;
}

@media (min-width: 992px) {
  .about-team-list {
    margin: 0 -1.5rem;
  }
}

.about-team-item {
  padding: 0 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .about-team-item {
    padding: 0 1.5rem;
  }
}

.about-team-pic {
  margin-bottom: 1.25rem;
}

.about-team-pic img {
  border: 1px solid #a0a0a0;
}

.about-team-txt h2 {
  color: #000000;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.about-team-txt h3 {
  color: #338e39;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
}

@media (min-width: 992px) {
  .about-team-txt h2 {
    font-size: 1.875rem;
  }

  .about-team-txt h3 {
    font-size: 1.1875rem;
  }
}

.about-corporate {
  text-align: center;
  padding: 3rem 0;
}

.about-corporate p {
  font-size: 0.9375rem;
  text-align: right;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .about-corporate {
    padding: 4.5rem 0;
  }

  .about-corporate p {
    font-size: 1rem;
  }
}

/*------------------------------------*\
    RESEARCH
\*------------------------------------*/
.research-list {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .research-list {
    padding: 5.25rem 0;
  }
}

.research-list-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 3rem -1rem 0;
}

@media (min-width: 1536px) {
  .research-list-group {
    margin: 3rem -1.75rem 0;
  }
}

.research-list-item {
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.research-list-item:nth-child(1) .research-list-txt {
  background-color: rgba(51, 140, 57, 0.9);
}

.research-list-item:nth-child(2) .research-list-txt {
  background-color: rgba(211, 144, 26, 0.9);
}

.research-list-item:nth-child(3) .research-list-txt {
  background-color: rgba(53, 53, 53, 0.9);
}

@media (min-width: 1536px) {
  .research-list-item {
    padding: 0 1.75rem;
  }
}

.research-list-txt {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.research-list-txt h3 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
  height: 30px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.research-list-txt p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
  height: 70px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (min-width: 992px) {
  .research-list-txt {
    padding: 1.5rem 2rem;
  }

  .research-list-txt h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    height: 45px;
  }

  .research-list-txt p {
    font-size: 1.0625rem;
    line-height: 1.8rem;
    margin-bottom: 2.25rem;
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .research-list-txt {
    padding: 3rem;
  }
}

@media (min-width: 1536px) {
  .research-list-txt {
    left: 1.75rem;
    right: 1.75rem;
    padding: 5rem 3rem;
  }
}

.research-text {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .research-text {
    background-position: center right;
    padding: 8rem 0;
  }
}

.research-vaccine {
  padding: 3rem 0;
  position: relative;
}

.research-vaccine>.container {
  max-width: 100%;
}

@media (min-width: 992px) {
  .research-vaccine {
    padding: 6.5rem 0;
  }
}

.research-vaccine .swiper-button-next,
.research-vaccine .swiper-button-prev {
  background-image: url(../images/research-vaccine-arrow.png);
  background-size: 145px;
  width: 145px;
  height: 145px;
  display: none;
}

.research-vaccine .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.research-vaccine .swiper-pagination {
  bottom: 0;
}

.research-vaccine .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #c9c9c9;
  width: 50px;
  height: 3px;
  margin: 0 !important;
  opacity: 1;
}

.research-vaccine .swiper-pagination-bullet-active {
  background-color: #338e39;
}

@media (min-width: 1536px) {

  .research-vaccine .swiper-button-next,
  .research-vaccine .swiper-button-prev {
    display: block;
    margin-top: -105px;
  }

  .research-vaccine .swiper-button-prev {
    left: 160px;
  }

  .research-vaccine .swiper-button-next {
    right: 160px;
  }
}

.research-vaccine .research-list-item {
  padding: 0;
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.research-vaccine .research-list-item::before {
  content: '';
  background: -webkit-linear-gradient(top, rgba(51, 143, 57, 0.6) 36%, #338f39 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(36%, rgba(51, 143, 57, 0.6)), to(#338f39));
  background: -o-linear-gradient(top, rgba(51, 143, 57, 0.6) 36%, #338f39 100%);
  background: linear-gradient(to bottom, rgba(51, 143, 57, 0.6) 36%, #338f39 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99338f39', endColorstr='#338f39', GradientType=0);
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.research-vaccine .research-list-item:hover::before,
.research-vaccine .research-list-item:focus::before {
  opacity: 1;
}

.research-vaccine .research-list-item span {
  color: #ffffff;
  font-family: "DINAlternate-Bold";
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  position: absolute;
  top: 2rem;
  left: 1rem;
  z-index: 3;
}

@media (min-width: 768px) {
  .research-vaccine .research-list-item span {
    top: 4rem;
    left: 1rem;
  }
}

@media (min-width: 1536px) {
  .research-vaccine .research-list-item {
    max-width: 410px;
  }

  .research-vaccine .research-list-item span {
    left: 3rem;
  }
}

.research-vaccine .research-list-txt {
  background-color: transparent !important;
  padding: 2rem 1rem;
  left: 0;
  right: 0;
  top: auto;
  z-index: 3;
}

.research-vaccine .research-list-txt h3 {
  letter-spacing: 0.05rem;
}

.research-vaccine .research-list-txt p {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .research-vaccine .research-list-txt {
    padding: 4rem 1rem;
  }

  .research-vaccine .research-list-txt h3 {
    font-size: 2rem;
  }

  .research-vaccine .research-list-txt p {
    margin-bottom: 2.25rem;
  }
}

@media (min-width: 1536px) {
  .research-vaccine .research-list-txt {
    padding: 3.5rem 3rem;
  }
}

.research.research-view {
  background-color: #f7f7f7;
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .research.research-view {
    padding-top: 5rem;
  }
}

.research-view h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 0.75rem;
}

.research-view h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

.research-view h2:target:before {
  display: block;
  content: "";
  height: 180px;
  margin: -180px 0 0;
}

.research-view h3 {
  color: #231815;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.research-view img {
  margin-bottom: 1rem;
}

.research-view p {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  line-height: 1.5rem;
}

.research-view ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.research-view ul li {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  line-height: 1.5rem;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.research-view ul li:last-child {
  margin-bottom: 0;
}

.research-view ul li::before {
  content: '';
  border-radius: 100%;
  background-color: #338e39;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

.research-view ul li b,
.research-view ul li strong {
  display: block;
  color: #338e39;
  margin-right: 1rem;
  white-space: nowrap;
}

.research-view ul li span {
  color: #338e39;
  text-decoration: underline;
}

.research-view ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  counter-reset: num;
}

.research-view ol li {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.research-view ol li:last-child {
  margin-bottom: 0;
}

.research-view ol li::before {
  content: counter(num, decimal) ".";
  counter-increment: num;
  color: #338e39;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.research-view hr {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

@media (min-width: 576px) {
  .research-view ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .research-view ul li b,
  .research-view ul li strong {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .research-view h2 {
    font-size: 2.125rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
  }

  .research-view h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }

  .research-view h2:target:before {
    height: 200px;
    margin: -200px 0 0;
  }

  .research-view h3 {
    font-size: 1.5rem;
  }

  .research-view p {
    font-size: 1.0625rem;
    letter-spacing: 0.12rem;
    line-height: 2rem;
  }

  .research-view ul li {
    font-size: 1.1875rem;
    line-height: 2rem;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .research-view ul li::before {
    width: 8px;
    height: 8px;
    top: 10.5px;
  }

  .research-view ol li {
    font-size: 1.1875rem;
    line-height: 2rem;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .research-view hr {
    margin: 4.25rem 0;
  }
}

.research-view .advantage p {
  letter-spacing: normal;
  margin-top: 0.75rem;
}

.research-view .information {
  margin-top: 3.75rem;
}

.research-view .information a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 50px;
  width: 100%;
  height: 50px;
}

.research-view .information a:first-of-type {
  cursor: text;
  background-color: #338e39;
  color: #ffffff;
}

.research-view .information a.download {
  background-color: #f7f7f7;
  color: #231815;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.research-view .information a.download::before {
  content: '';
  background-image: url(../images/download.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 0.75rem;
}

.research-view .information a.download:hover,
.research-view .information a.download:focus {
  background-color: #338e39;
  color: #ffffff;
}

.research-view .information a.download:hover::before,
.research-view .information a.download:focus::before {
  background-image: url(../images/download-white.svg);
}

.research-view .information .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.research-view .information .row {
  padding-top: 3rem;
  position: relative;
}

.research-view .information .row::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  width: auto;
  height: 2px;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
}

@media (min-width: 576px) {
  .research-view .information a {
    width: 220px;
  }

  .research-view .information .link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.research-view .schedule h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.research-view .schedule p {
  margin-bottom: 2.25rem;
}

.research-view .schedule span {
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.125rem;
  line-height: 50px;
  width: 100%;
  height: 50px;
}

.research-view .schedule span:nth-child(1) {
  background-color: #e7f2e7;
  color: #62b071;
}

.research-view .schedule span:nth-child(2) {
  background-color: #b0e2b0;
}

.research-view .schedule span:nth-child(3) {
  background-color: #83c683;
}

.research-view .schedule span:nth-child(4) {
  background-color: #62b071;
}

.research-view .schedule span:nth-child(5) {
  background-color: #338d39;
}

.research-view .schedule span.not {
  background-color: #f0f0f0;
  color: #b5b5b5;
}

.research-view .schedule .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
  .research-view .schedule span {
    width: 220px;
  }

  .research-view .schedule .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.research-view .literature {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.research-view .literature h3 {
  color: #000000;
  font-size: 1.0625rem;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.5rem;
  margin-bottom: 0.75rem;
}

.research-view .literature p {
  font-size: 1.0625rem;
  letter-spacing: normal;
  margin-bottom: 1rem;
}

.research-view .literature b {
  color: rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin: 0 1rem;
}

.research-view .literature .row>div {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .research-view .literature {
    margin-bottom: 4.25rem;
  }

  .research-view .literature h3 {
    font-size: 1.25rem;
    letter-spacing: 0.06rem;
    line-height: 2rem;
    margin-bottom: 1.25rem;
  }

  .research-view .literature p {
    font-size: 1.25rem;
    letter-spacing: 0.075rem;
    margin-bottom: 2rem;
  }

  .research-view .literature .row>div {
    margin-bottom: 4rem;
  }
}

.research-view .description p {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .research-view .description p {
    margin-bottom: 1.25rem;
  }
}

.research-view-content {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .research-view-content {
    padding: 3rem 2rem;
  }
}

@media (min-width: 992px) {
  .research-view-content {
    padding: 3rem;
  }
}

@media (min-width: 1536px) {
  .research-view-content {
    padding: 8.5rem 6.5rem 5.5rem;
  }
}

/*------------------------------------*\
    SHAREHOLDER
\*------------------------------------*/
.shareholder-wrap {
  background-color: #f7f7f7;
  position: relative;
}

.shareholder-wrap::before {
  content: '';
  background-color: #f7f7f7;
  width: 285px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -285px;
}

.shareholder-wrap .row {
  margin: 0 -1rem;
}

.shareholder-wrap .row>div {
  padding: 0 2rem;
}

.shareholder-wrap .row>div:last-child {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .shareholder-wrap .row>div:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0;
  }
}

@media (min-width: 1536px) {
  .shareholder-wrap .row {
    margin: 0 -3.5rem;
  }

  .shareholder-wrap .row>div {
    padding: 0 3.5rem;
  }

  .shareholder-wrap .row>div:first-child {
    padding-left: 8.5rem;
  }
}

.shareholder-content .nav li {
  margin-bottom: 0.75rem;
}

.shareholder-content .nav li:last-child {
  margin-bottom: 0;
}

.shareholder-content .nav li a {
  color: #333333;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding-left: 2rem;
  position: relative;
}

.shareholder-content .nav li a::before {
  content: '';
  background-image: url(../images/download-orange.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.shareholder-content .nav li a:hover,
.shareholder-content .nav li a:focus {
  color: #338e39;
}

.shareholder-content .nav li a:hover::before,
.shareholder-content .nav li a:focus::before {
  background-image: url(../images/download-green.svg);
}

@media (min-width: 992px) {
  .shareholder-content .nav li {
    margin-bottom: 1.5rem;
  }

  .shareholder-content .nav li a {
    font-size: 1.125rem;
  }
}

/*------------------------------------*\
    INVESTOR
\*------------------------------------*/
.investor {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .investor {
    padding: 6rem 0;
  }
}

.investor .container {
  position: relative;
}

.investor .container::before {
  content: '';
  background-color: #f7f7f7;
  width: 285px;
  height: auto;
  position: absolute;
  top: -6rem;
  bottom: -6rem;
  left: -285px;
  display: none;
}

@media (min-width: 992px) {
  .investor .container::before {
    display: block;
  }
}

.investor .container>.row {
  position: relative;
}

.investor .container>.row::before {
  content: '';
  background-color: #f7f7f7;
  width: 25%;
  height: auto;
  position: absolute;
  top: -6rem;
  bottom: -6rem;
  left: 0;
  right: 0;
  display: none;
}

@media (min-width: 992px) {
  .investor .container>.row::before {
    display: block;
  }
}

.investor .container-fluid {
  padding: 0;
}

.investor .sidebar {
  background-color: #f7f7f7;
  position: relative;
}

.investor .sidebar::before {
  content: '';
  background-color: #f7f7f7;
  width: auto;
  height: 3rem;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  display: block;
}

@media (min-width: 992px) {
  .investor .sidebar::before {
    display: none;
  }
}

.investor .page-title h2 {
  color: #338e39;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .investor .page-title h2 {
    font-size: 1.5625rem;
    padding-left: 1rem;
  }
}

.investor .page-title-secondary {
  border-bottom: 1px solid #338e39;
}

.investor .page-title-secondary h2 {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .investor .page-title-secondary h2 {
    margin-bottom: 1.5rem;
  }
}

.investor-wrap {
  padding: 0;
}

.investor-wrap .container::before {
  display: none;
}

.investor-wrap .container>.row::before {
  display: none;
}

.investor-list>.container>.row>div {
  padding: 3rem 0;
}

.investor-list>.container>.row>div:first-child {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .investor-list>.container>.row>div {
    padding: 6rem 0;
  }
}

@media (min-width: 1536px) {
  .investor-list>.container>.row>div:first-child {
    padding-right: 8.5rem;
  }
}

.investor-list h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

.investor-list h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .investor-list h2 {
    font-size: 2.25rem;
    letter-spacing: 0.35rem;
    margin-bottom: 2.25rem;
  }

  .investor-list h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

.investor-list p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

@media (min-width: 992px) {
  .investor-list p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

.investor-list .shareholder-content .nav li {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .investor-list .shareholder-content .nav li {
    margin-bottom: 2rem;
  }
}

.investor-list .shareholder-content>div:first-child .nav li a:before {
  background-image: url(../images/download-green.svg);
}

.investor-list .shareholder-content>div:first-child .nav li a:hover,
.investor-list .shareholder-content>div:first-child .nav li a:focus {
  color: #e19f1e;
}

.investor-list .shareholder-content>div:first-child .nav li a:hover:before,
.investor-list .shareholder-content>div:first-child .nav li a:focus:before {
  background-image: url(../images/download-orange.svg);
}

.investor-list .shareholder-content>div:last-child h2 {
  color: #e19f1e;
}

.investor-pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
}

@media (min-width: 992px) {
  .investor-pic {
    min-height: 470px;
  }
}

.investor-txt {
  padding: 2rem 1rem !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.investor-txt h2 {
  color: #338e39;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.investor-txt h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

.investor-txt p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
  min-height: 100px;
}

@media (min-width: 992px) {
  .investor-txt {
    padding: 0 !important;
  }

  .investor-txt h2 {
    font-size: 2.25rem;
    letter-spacing: 0.3rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }

  .investor-txt h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }

  .investor-txt p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 3rem;
    min-height: 130px;
  }
}

.investor-txt-content {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .investor-txt-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1536px) {
  .investor-txt-content {
    width: 675px;
    padding-left: 5rem;
    padding-right: 0;
  }
}

.investor-stakeholders-wrap {
  padding: 0;
}

.investor-stakeholders-wrap .sidebar {
  background-color: #ffffff;
}

@media (min-width: 1536px) {
  .investor-stakeholders-wrap .sidebar {
    padding-right: 1rem;
  }
}

.investor-stakeholders-info {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .investor-stakeholders-info {
    padding: 6rem 0;
  }
}

.investor-stakeholders-contact {
  background-color: #f7f7f7;
  padding: 3rem 0 1rem;
}

@media (min-width: 992px) {
  .investor-stakeholders-contact {
    padding: 6rem 0 4rem;
  }
}

.investor-stakeholders-contact .container>.row>div {
  margin-bottom: 2rem;
}

.investor-stakeholders-contact h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

.investor-stakeholders-contact h3 {
  color: #231815;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.investor-stakeholders-contact h3 span {
  color: #717071;
  font-size: 1rem;
  font-weight: normal;
  display: block;
  margin-bottom: 0.5rem;
}

.investor-stakeholders-contact .nav li {
  color: #231815;
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
}

.investor-stakeholders-contact .nav li span {
  display: block;
  color: #5cb131;
  letter-spacing: 0.075rem;
  width: 100%;
}

.investor-stakeholders-contact .nav li a {
  color: #231815;
  text-decoration: underline;
}

.investor-stakeholders-contact .nav li a:hover,
.investor-stakeholders-contact .nav li a:focus {
  color: #338e39;
}

@media (min-width: 576px) {
  .investor-stakeholders-contact .nav li span {
    display: inline-block;
    width: 100px;
  }
}

@media (min-width: 992px) {
  .investor-stakeholders-contact h2 {
    font-size: 2.125rem;
    letter-spacing: 0.125rem;
    margin-bottom: 2.25rem;
  }

  .investor-stakeholders-contact h3 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }

  .investor-stakeholders-contact h3 span {
    font-size: 1.125rem;
  }

  .investor-stakeholders-contact .nav li {
    font-size: 1.1875rem;
  }
}

@media (min-width: 768px) {
  .investor-governance .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 1536px) {
  .investor-governance .investor-txt-content {
    margin-right: 0;
    margin-left: auto;
    padding-left: 0;
    padding-right: 5rem;
  }
}

.investor-menu .nav li {
  width: 100%;
  position: relative;
}

.investor-menu .nav li+li::before {
  content: '';
  background-color: #338e39;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: none;
}

.investor-menu .nav li a {
  display: block;
  border-bottom: 1px solid #338e39;
  background-color: #f7f7f7;
  color: #231815;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 0.5rem;
}

.investor-menu .nav li a:hover,
.investor-menu .nav li a:focus,
.investor-menu .nav li a.active {
  background-color: #338e39;
  color: #ffffff;
}

@media (min-width: 992px) {
  .investor-menu .nav li a {
    font-size: 1.25rem;
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 768px) {
  .investor-menu .nav li {
    width: 33.33%;
  }

  .investor-menu .nav li+li::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .investor-menu .nav li+li::before {
    height: 30px;
  }

  .investor-menu .nav li a {
    font-size: 1.25rem;
    padding: 1.25rem 1rem;
  }
}

.investor-content {
  padding: 1rem 0 0;
}

@media (min-width: 992px) {
  .investor-content {
    padding: 2.5rem 1rem 0;
  }
}

.investor-content .board-item {
  margin-bottom: 1rem;
}

.investor-content .board-item:last-child {
  margin-bottom: 0;
}

.investor-content .board-tit {
  background-color: #f7f7f7;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.investor-content .board-tit h3 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 0;
}

.investor-content .board-tit h3 span {
  color: #338e39;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.investor-content .board-tit p {
  width: 100%;
  font-size: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .investor-content .board-tit {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .investor-content .board-tit p {
    width: auto;
  }
}

@media (min-width: 992px) {
  .investor-content .board-tit {
    padding: 1rem 3rem;
  }

  .investor-content .board-tit h3 {
    font-size: 1.5rem;
  }

  .investor-content .board-tit h3 span {
    font-size: 1.125rem;
    margin-left: 1.5rem;
    margin-right: 3rem;
  }

  .investor-content .board-tit p {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }
}

@media (min-width: 1440px) {
  .investor-content .board-tit {
    padding: 1.25rem 5rem;
  }
}

.investor-content .board-txt {
  padding: 1rem;
}

.investor-content .board-txt h4 {
  color: #338e39;
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.75rem;
}

.investor-content .board-txt ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.investor-content .board-txt ul li {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
  position: relative;
  width: 100%;
}

.investor-content .board-txt ul li:last-child {
  margin-bottom: 0;
}

.investor-content .board-txt ul li::before {
  content: '';
  border-radius: 100%;
  background-color: #338e39;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (min-width: 992px) {
  .investor-content .board-txt {
    padding: 1rem 3rem;
  }

  .investor-content .board-txt h4 {
    font-size: 1.125rem;
  }

  .investor-content .board-txt ul li {
    font-size: 1.1875rem;
    line-height: 2rem;
    padding-left: 1.5rem;
  }

  .investor-content .board-txt ul li::before {
    width: 8px;
    height: 8px;
    top: 10.5px;
  }
}

@media (min-width: 1440px) {
  .investor-content .board-txt {
    padding: 1.25rem 1rem 1.25rem 5rem;
  }

  .investor-content .board-txt ul li {
    width: 50%;
    padding-right: 0.75rem;
  }
}

.investor-content .text p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.investor-content .text ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  counter-reset: num;
}

.investor-content .text ol li {
  font-size: 0.9375rem;
  letter-spacing: 0.075rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.investor-content .text ol li:last-child {
  margin-bottom: 0;
}

.investor-content .text ol li::before {
  content: counter(num, decimal) ".";
  counter-increment: num;
  color: #338e39;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .investor-content .text p {
    padding: 0 1rem;
    font-size: 1.125rem;
    line-height: 2rem;
  }

  .investor-content .text ol li {
    font-size: 1.125rem;
    line-height: 2rem;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
}

.investor-content.table-wrap {
  padding: 2rem 0 0;
}

@media (min-width: 992px) {
  .investor-content.table-wrap {
    padding: 2.5rem 1rem 0;
  }
}

.investor-content .download a {
  color: #333333;
  font-size: 1rem;
  letter-spacing: 0.035rem;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.investor-content .download a::before {
  content: '';
  background-image: url(../images/download-green.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.investor-content .download a:hover,
.investor-content .download a:focus {
  color: #338e39;
  font-weight: bold;
}

@media (min-width: 992px) {
  .investor-content .download a {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .investor-content .download a::before {
    top: 5px;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.news {
  background-color: #f7f7f7;
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .news {
    padding: 6rem 0;
  }
}

.news h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

.news h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .news h2 {
    font-size: 2.25rem;
    letter-spacing: 0.35rem;
    margin-bottom: 1.5rem;
  }

  .news h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}

.news.news-list-group-wrap {
  padding-top: 3rem;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .news.news-list-group-wrap {
    padding-top: 6rem;
  }
}

.news .news-list-wrap {
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .news .news-list-wrap {
    padding-bottom: 6rem;
  }
}

.news .news-list-wrap>.container>.row {
  margin: 0 -1rem;
}

.news .news-list-wrap>.container>.row>div {
  padding: 0 1rem;
}

.news .news-list-wrap>.container>.row>div+div {
  margin-top: 3rem;
}

@media (min-width: 1200px) {
  .news .news-list-wrap>.container>.row>div+div {
    margin-top: 0;
  }
}

@media (min-width: 1536px) {
  .news .news-list-wrap>.container>.row {
    margin: 0 -3rem;
  }

  .news .news-list-wrap>.container>.row>div {
    padding: 0 3rem;
  }
}

.news-list-group {
  margin-bottom: 2rem;
}

.news-list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.news-list-item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.news-list-item:hover .news-list-text,
.news-list-item:focus .news-list-text {
  color: #338e39;
}

.news-list-item:hover .news-list-link,
.news-list-item:focus .news-list-link {
  color: #338e39;
}

.news-list-item:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
  .news-list-item {
    padding: 1rem 0;
  }
}

.news-list-date {
  font-family: "DINAlternate-Bold";
  color: #338e39;
  font-size: 1rem;
  letter-spacing: 0.075rem;
}

.news-list-date span {
  background-color: #338e39;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 35px;
  width: 95px;
  height: 35px;
  margin-right: 1rem;
}

.news-list-date span.orange {
  background-color: #e19f1e;
}

@media (min-width: 992px) {
  .news-list-date {
    font-size: 1.125rem;
  }

  .news-list-date span {
    font-size: 1rem;
  }
}

.news-list-text {
  color: #333333;
  font-size: 1.0625rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0.5rem 0;
}

@media (min-width: 992px) {
  .news-list-text {
    font-size: 1.125rem;
    padding-left: 0.25rem !important;
    margin: 0;
  }
}

.news-list-link {
  background-image: url(../images/news-arrow.svg);
  background-position: 75px center;
  background-repeat: no-repeat;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.075rem;
  padding-right: 0 !important;
}

@media (min-width: 768px) {
  .news-list-link {
    background-position: right center;
    text-align: right;
    padding-right: 1.5rem !important;
  }
}

.news-list-secondary {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.news-list-secondary h2 {
  color: #e19f1e;
}

.news-list-secondary .news-list-date {
  color: #e19f1e;
}

.news-list-secondary .news-list-item:hover .news-list-text,
.news-list-secondary .news-list-item:focus .news-list-text {
  color: #e19f1e;
}

.news-list-secondary .news-list-item:hover .news-list-link,
.news-list-secondary .news-list-item:focus .news-list-link {
  color: #e19f1e;
}

.news-list-secondary .news-list-link {
  background-image: url(../images/news-arrow-orange.svg);
}

.news-media {
  background-color: #ffffff;
  padding: 3rem 0;
}

.news-media h2 {
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .news-media {
    padding: 5rem 0;
  }

  .news-media h2 {
    margin-bottom: 3rem;
  }
}

.news-media-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.news-media-item h3 {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 1.25rem;
  height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 992px) {
  .news-media-item h3 {
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
    line-height: 2rem;
    height: 65px;
  }
}

.news-wrap .form-control {
  background: url(../images/select.svg) no-repeat right 1.25rem center;
  border-radius: 0;
  color: #666666;
  width: 100%;
  height: 45px;
}

@media (min-width: 576px) {
  .news-wrap .form-control {
    width: 305px;
  }
}

.news-wrap .news-list-item {
  margin-top: 0.25rem;
}

.news-wrap .news-list-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-wrap .news-list-text {
  font-weight: bold;
  padding-left: 0 !important;
  margin-top: 0.25rem;
}

@media (min-width: 992px) {
  .news-wrap .news-list-text {
    font-size: 1.25rem;
  }
}

.news.news-view-wrap {
  padding-top: 3rem;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .news.news-view-wrap {
    padding-top: 5rem;
  }
}

.news-view {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.news-view h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #333333;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.news-view h2 span {
  color: #338e39;
  font-size: 1rem;
}

.news-view .text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.news-view .text p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.news-view .download {
  margin-bottom: 1rem;
}

.news-view .download a {
  border: 1px solid #231815;
  background-color: #f7f7f7;
  color: #231815;
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: normal;
  line-height: 40px;
  width: 80px;
  height: 40px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-view .download a+a {
  margin-left: 0.25rem;
}

.news-view .download a::before {
  content: '';
  background-image: url(../images/download.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 0.75rem;
  display: none;
}

.news-view .download a:hover,
.news-view .download a:focus {
  border-color: #338e39;
  background-color: #338e39;
  color: #ffffff;
}

.news-view .download a:hover::before,
.news-view .download a:focus::before {
  background-image: url(../images/download-white.svg);
}

@media (min-width: 576px) {
  .news-view .download {
    margin-bottom: 2rem;
  }

  .news-view .download a {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    width: 130px;
  }

  .news-view .download a+a {
    margin-left: 0.5rem;
  }

  .news-view .download a::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .news-view {
    padding: 3rem;
  }

  .news-view h2 {
    font-size: 1.875rem;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
  }

  .news-view h2 span {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }

  .news-view .text {
    padding-bottom: 5rem;
    margin-bottom: 3rem;
  }

  .news-view .text p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }

  .news-view .download a {
    font-size: 1.125rem;
    line-height: 50px;
    width: 220px;
    height: 50px;
  }

  .news-view .download a+a {
    margin-left: 2rem;
  }
}

@media (min-width: 1536px) {
  .news-view {
    padding: 6.5rem 6.5rem 4rem;
  }
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact {
  background-color: #f7f7f7;
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .contact {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }
}

.contact-item {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.contact-item:nth-child(even) {
  background-color: #f7f7f7;
}

@media (min-width: 992px) {
  .contact-item {
    padding: 3rem;
  }

  .contact-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 1536px) {
  .contact-item {
    padding: 5.5rem 6.75rem 2.5rem;
  }

  .contact-item:nth-child(even) .contact-txt {
    padding-left: 4rem !important;
  }
}

.contact-txt h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.contact-txt p {
  color: #231815;
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}

.contact-txt p span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.025rem;
  line-height: 1.25rem;
}

.contact-txt .nav {
  margin-bottom: 0.5rem;
}

.contact-txt .nav li {
  color: #231815;
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-txt .nav li span {
  color: #5cb131;
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-txt .nav li span::before {
  content: '';
  background-position: left center;
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  display: inline-block;
}

.contact-txt .nav li a {
  color: #231815;
  text-decoration: underline;
}

.contact-txt .nav li a:hover,
.contact-txt .nav li a:focus {
  color: #e19f1e;
}

.contact-txt .nav li.tel span::before {
  background-image: url(../images/tel.svg);
}

.contact-txt .nav li.fax span::before {
  background-image: url(../images/fax.svg);
}

.contact-txt .nav li.email span::before {
  background-image: url(../images/email.svg);
}

.contact-txt .btn.orange.fill-secondary {
  border-radius: 25px;
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 40px;
  height: 40px;
}

.contact-txt .btn.orange.fill-secondary span {
  background-size: 15px;
  width: 15px;
  height: 15px;
  margin-left: 0.25rem;
}

@media (min-width: 576px) {
  .contact-txt .nav li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contact-txt .nav li span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .contact-txt .nav li span::before {
    background-size: 20px;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
  }
}

@media (min-width: 992px) {
  .contact-txt h2 {
    font-size: 2.125rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
  }

  .contact-txt p {
    font-size: 1.1875rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
  }

  .contact-txt p span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.5rem;
  }

  .contact-txt .nav {
    margin-bottom: 2rem;
  }

  .contact-txt .nav li {
    font-size: 1.1875rem;
    line-height: 2rem;
  }

  .contact-txt .nav li span {
    width: 130px;
  }
}

.contact-pic {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .contact-pic {
    margin-top: 0;
  }
}

.contact-safety {
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .contact-safety {
    top: -490px;
    margin-bottom: -490px;
  }
}

@media (min-width: 1536px) {
  .contact-safety {
    top: -540px;
    margin-bottom: -540px;
  }
}

.contact-safety-banner {
  height: 200px;
}

@media (min-width: 992px) {
  .contact-safety-banner {
    height: 880px;
  }
}

.contact-safety-content {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 0.5rem;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .contact-safety-content {
    padding: 1.5rem;
    padding-bottom: 0;
  }
}

.contact-safety-text {
  border: 1px solid #338e39;
  border-bottom: none;
  text-align: center;
  padding: 2rem 1rem;
}

.contact-safety-text p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.contact-safety-text p b {
  color: #338e39;
  font-weight: normal;
}

.contact-safety-text p span {
  font-size: 0.8125rem;
}

.contact-safety-text p:last-child {
  margin-bottom: 0;
}

.contact-safety-text p:last-child span {
  font-size: 0.875rem;
}

.contact-safety-text .btn.green.fill-secondary {
  border-radius: 25px;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}

.contact-safety-text .btn.green.fill-secondary span {
  margin-left: 0.5rem;
}

@media (min-width: 992px) {
  .contact-safety-text {
    padding: 3rem;
  }

  .contact-safety-text p {
    font-size: 1.1875rem;
    line-height: 2rem;
    margin-bottom: 2.25rem;
  }

  .contact-safety-text p span {
    font-size: 1rem;
  }

  .contact-safety-text p:last-child span {
    font-size: 1.0625rem;
  }

  .contact-safety-text .btn.green.fill-secondary {
    font-size: 1.1875rem;
    line-height: 50px;
    width: 275px;
    height: 50px;
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1536px) {
  .contact-safety-text {
    padding: 5rem 5rem 4rem;
  }
}

/*------------------------------------*\
    CAREERS
\*------------------------------------*/
.careers>section {
  background-color: #f7f7f7;
}

.careers .container-fluid {
  padding: 0;
}

.careers-pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
}

@media (min-width: 992px) {
  .careers-pic {
    min-height: 470px;
  }
}

.careers-txt {
  padding: 2rem 1rem !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.careers-txt h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.careers-txt h2 span {
  color: #999999;
  font-family: "DINAlternate-Bold";
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.5rem;
}

.careers-txt h3 {
  color: #3a3a3a;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
}

.careers-txt p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
  min-height: 100px;
}

.careers-txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.careers-txt ul li {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  padding-left: 0.75rem;
  position: relative;
}

.careers-txt ul li::before {
  content: '';
  border-radius: 100%;
  background-color: #338e39;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

.careers-txt ul+a {
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .careers-txt {
    padding: 0 !important;
  }

  .careers-txt h2 {
    font-size: 2.125rem;
    letter-spacing: 0.175rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }

  .careers-txt h2 span {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }

  .careers-txt h3 {
    font-size: 1.3125rem;
    margin-bottom: 1rem;
  }

  .careers-txt p {
    font-size: 1.1875rem;
    line-height: 2rem;
    margin-bottom: 3rem;
    min-height: 130px;
  }

  .careers-txt ul li {
    font-size: 1.125rem;
    line-height: 2rem;
    padding-left: 1.25rem;
  }

  .careers-txt ul li::before {
    width: 8px;
    height: 8px;
    top: 12px;
  }

  .careers-txt ul+a {
    margin-top: 3rem;
  }
}

.careers-txt-content {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .careers-txt-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1536px) {
  .careers-txt-content {
    width: 675px;
    padding-left: 5rem;
    padding-right: 0;
  }
}

.careers-system .careers-txt-content {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .careers-system .careers-pic {
    min-height: 780px;
  }
}

@media (min-width: 1200px) {
  .careers-system .careers-txt-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.careers-join {
  background-color: #ffffff !important;
}

@media (min-width: 768px) {
  .careers-join .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 1536px) {
  .careers-join .careers-txt-content {
    margin-right: 0;
    margin-left: auto;
    padding-left: 0;
    padding-right: 5rem;
  }
}

.careers.careers-view-wrap {
  background-color: #f7f7f7;
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .careers.careers-view-wrap {
    padding-top: 5rem;
  }
}

.careers-view {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.careers-view h2 {
  color: #338e39;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

.careers-view h2 span {
  color: #338e39;
  font-size: 1rem;
}

.careers-view .text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.careers-view .text h4 {
  color: #338e39;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}

.careers-view .text p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.careers-view .text img {
  margin-bottom: 3rem;
}

.careers-view .text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.careers-view .text ul li {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.careers-view .text ul li:last-child {
  margin-bottom: 0;
}

.careers-view .text ul li::before {
  content: '';
  border-radius: 100%;
  background-color: #338e39;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

.careers-view .text ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  counter-reset: num;
}

.careers-view .text ol li {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.careers-view .text ol li:last-child {
  margin-bottom: 0;
}

.careers-view .text ol li::before {
  content: counter(num, decimal) ".";
  counter-increment: num;
  color: #338e39;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .careers-view {
    padding: 3rem;
  }

  .careers-view h2 {
    font-size: 2.125rem;
    letter-spacing: 0.175rem;
    margin-bottom: 3rem;
  }

  .careers-view h2 span {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }

  .careers-view .text {
    padding-bottom: 2rem;
    margin-bottom: 0;
  }

  .careers-view .text h4 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .careers-view .text p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }

  .careers-view .text ul li {
    font-size: 1.125rem;
    line-height: 2rem;
    padding-left: 1.25rem;
  }

  .careers-view .text ul li::before {
    width: 8px;
    height: 8px;
    top: 10.5px;
  }

  .careers-view .text ol {
    margin-bottom: 2rem;
  }

  .careers-view .text ol li {
    font-size: 1.125rem;
    line-height: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 1536px) {
  .careers-view {
    padding: 6.5rem;
  }
}

/*------------------------------------*\
    SEARCH
\*------------------------------------*/
.search {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  .search {
    padding: 5.5rem 0;
  }
}

.search h2 {
  color: #338e39;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .search h2 {
    font-size: 2.125rem;
    margin-bottom: 4rem;
  }
}

.search-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.search-item h3 {
  color: #231815;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.075rem;
  margin-bottom: 1rem;
}

.search-item span {
  color: #338e39;
  font-size: 0.9375rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
}

.search-item p {
  font-size: 0.9375rem;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}

.search-item:hover h3,
.search-item:focus h3 {
  color: #338e39;
}

@media (min-width: 992px) {
  .search-item h3 {
    font-size: 1.5rem;
  }

  .search-item span {
    font-size: 1.0625rem;
  }

  .search-item p {
    font-size: 1.0625rem;
    line-height: 1.8rem;
  }
}

.gsc-search-button-v2 {
  border-color: #338e39 !important;
  background-color: #338e39 !important;
  padding: 10px 27px !important;
}

.gsc-search-button-v2:hover,
.gsc-search-button-v2:focus {
  border-color: #e19f1e !important;
  background-color: #e19f1e !important;
  outline: none !important;
}



/*------------------------------------*\
    NEWSLETTER
\*------------------------------------*/
.newsletter p {
  margin-bottom: 2rem;
}

.newsletter .form {
  width: 100%;
}

@media (min-width: 768px) {
  .newsletter .form {
    width: 720px;
    margin: 0 auto;
  }
}

/*------------------------------------*\
    COOKIE
\*------------------------------------*/
.hideobj {
  display: none;
}

#tarteaucitronAlertBig {
  -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1) !important;
}

#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
  position: relative;
  width: 100%;
  padding: 0 30px;
}

@media (min-width: 1440px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
    margin: 0 auto;
    width: 1400px;
    padding: 0 30px;
  }
}

#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronDisclaimerAlert {
  display: block;
  width: 100%;
  padding-bottom: 50px;
  padding-right: 0;
  font-size: 15px;
}

@media (min-width: 992px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronDisclaimerAlert {
    padding-bottom: 0;
    padding-right: 130px;
    font-size: 16px;
  }
}

#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronPersonalize {
  background: transparent;
  border-radius: 25px;
  border: 1px solid #338e39;
  color: #338e39;
  text-align: center;
  line-height: 35px;
  width: 120px;
  height: 35px;
  padding-left: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  cursor: pointer;
}

#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronPersonalize:hover,
#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronPersonalize:focus {
  background: #338e39;
  color: #ffffff;
}

@media (min-width: 992px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronPersonalize {
    top: 0;
    bottom: auto;
    right: 30px;
  }
}