/*
  Table of Content
==================================================

  01. Normalize
  02. Reset
  03. Layout
  04. Plugin
  05. Header
  06. Footer
  07. Nav
  08. Subnav
  09. Toolbar
  10. Intro
  11. Training
  12. Research
  13. Community
  14. News
  15. Subpage
  16. Sidebar
  17. Editor
  18. Accordion
  19. Service
  20. Application
  21. Gallery
  22. Testimonial
  23. Bio
  24. Contact

  */

/**
--------------------------------------------------
  Normalize
--------------------------------------------------
**/


html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/**
--------------------------------------------------
  Reset
--------------------------------------------------
**/
html {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  color: #373737;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
}

img,
svg {
  vertical-align: top;
}

svg {
  fill: currentColor;
  -webkit-transition: fill 0.25s ease-out;
  transition: fill 0.25s ease-out;
}

a,
button,
input,
textarea {
  outline: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: background-color, border-color, color;
  transition-property: background-color, border-color, color;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  vertical-align: top;
}

button {
  cursor: pointer;
}

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

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

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

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

input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input {
  line-height: normal;
}

textarea {
  resize: none;
}

/**
--------------------------------------------------
  Layout
--------------------------------------------------
**/
.wrapper {
  min-width: 320px;
}

.container {
  position: relative;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* mobile */
@media (max-width: 767px) {
  .wrapper {
    padding-top: 55px;
  }
  .main {
    padding: 30px 0;
  }
  .hidden-mobile {
    display: none !important;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .wrapper {
    padding-top: 90px;
  }
  .main {
    padding: 50px 0;
  }
  .container {
    max-width: 1024px;
  }
  .hidden-tablet {
    display: none !important;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .main {
    padding: 80px 0;
  }
  .container {
    max-width: 1280px;
  }
  .hidden-desktop {
    display: none !important;
  }
}

/**
--------------------------------------------------
  Plugin
--------------------------------------------------
**/
.backstretch {
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.backstretch img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.mfp-bg,
.mfp-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
}

.mfp-wrap {
  z-index: 1043;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.mfp-container::before {
  display: inline-block;
  height: 100%;
  pointer-events: none;
  content: "";
  vertical-align: middle;
}

.mfp-align-top .mfp-container::before {
  display: none;
}

.mfp-content {
  position: relative;
  z-index: 1045;
  display: inline-block;
  margin: 0 auto;
  vertical-align: middle;
  text-align: left;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-hide {
  display: none !important;
}

.mfp-fade .mfp-popup {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.mfp-fade.mfp-ready .mfp-popup {
  opacity: 1;
}

.mfp-fade.mfp-removing .mfp-popup {
  opacity: 0;
}

.mfp-fade.mfp-bg {
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.mfp-fade.mfp-ready.mfp-bg {
  opacity: 0.3;
}

.mfp-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

.owl-carousel {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.owl-stage {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.owl-stage:after {
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}

.owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.owl-wrapper,
.owl-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-nav.disabled,
.owl-dots.disabled {
  display: none;
}

.owl-prev,
.owl-next,
.owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded,
.owl-carousel.owl-loading {
  display: block;
}

.owl-carousel.owl-loading,
.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor:         grab;
}

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/**
--------------------------------------------------
  Header
--------------------------------------------------
**/
.header {
  z-index: 15;
  background-color: #AFCC8A;
}
.header-logo {
  line-height: 1;
}
.header-logo a {
  color: #fff;
}
.header-menu {
  position: absolute;
  right: 0;
}
.header-menu span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.header-menu a {
  display: none;
  line-height: 1;
}
.header-menu a.i1 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.header-menu a.i1.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu a.i2 {
  color: #3c572d;
}
.header-menu a.i2.active {
  display: block;
}
.header-nav,
.header-link {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}
.header-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 18px;
}
.header-nav ul,
.header-nav li {
  float: left;
}
.header-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
}
.header-nav a:hover,
.header-nav a.active {
  color: #3c572d;
}
.header-nav svg {
  width: 13px;
  height: 8px;
  margin-left: 10px;
}
.header-link {
  font-size: 14px;
}
.header-link ul,
.header-link li {
  float: left;
}
.header-link a {
  display: block;
  padding: 7px 15px;
}
.header-social {
  padding: 0 15px;
}
.header-social a {
  float: left;
  margin-left: 15px;
}
.header-social a:first-child {
  margin-left: 0;
}
.header-social svg {
  width: 28px;
  height: 28px;
}
.header-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 45px;
  background-color: #f9f9f9;
}
.header-toolbar a {
  color: #AFCC8A;
}
.header-toolbar a:hover {
  color: #3c572d;
}

/* mobile - tablet */
@media (max-width: 1279px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .header-logo.active a {
    color: #3c572d;
  }
}

/* mobile */
@media (max-width: 767px) {
  .header {
    padding: 15px;
  }
  .header-logo svg {
    width: 117px;
    height: 25px;
  }
  .header-menu {
    top: 0;
  }
  .header-menu span {
    font-size: 8px;
  }
  .header-menu a.i1 svg {
    width: 30px;
    height: 25px;
  }
  .header-menu a.i2 svg {
    width: 25px;
    height: 25px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .header {
    padding: 25px 30px;
  }
  .header-logo svg {
    width: 188px;
    height: 40px;
  }
  .header-menu {
    top: 5px;
  }
  .header-menu span {
    font-size: 10px;
  }
  .header-menu a.i1 svg {
    width: 36px;
    height: 30px;
  }
  .header-menu a.i2 svg {
    width: 30px;
    height: 30px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .header {
    position: relative;
  }
  .header::after {
    position: absolute;
    top: 0;
    right: 0;
    width: calc((100vw - 1280px) / 2);
    height: 58px;
    pointer-events: none;
    content: "";
    background-color: #f9f9f9;
  }
  .header-logo {
    padding: 55px 60px;
  }
  .header-logo svg {
    width: 280px;
    height: 60px;
  }
}

/**
--------------------------------------------------
  Footer
--------------------------------------------------
**/
.footer {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #2d2c2b;
}
.footer-icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer-icon a {
  display: block;
  background-color: #2d2c2b;
  color: #AFCC8A;
}
.footer-icon a:hover {
  color: #fff;
}
.footer-info {
  color: rgba(254, 254, 254, 0.6);
}
.footer-copyright {
  text-transform: uppercase;
  color: rgba(170, 203, 134, 0.6);
}
.footer-copyright em,
.footer-copyright span {
  display: block;
}
.footer-copyright em {
  font-style: normal;
}
.footer-copyright span {
  position: relative;
  top: -1px;
  margin: 0 10px;
}
.footer-copyright a {
  color: currentColor;
}
.footer-copyright a:hover {
  color: #aacb86;
}

/* mobile - tablet */
@media (max-width: 1279px) {
  .footer {
    padding: 40px 20px 30px;
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-icon {
    top: -55px;
  }
  .footer-icon a {
    padding: 10px;
  }
  .footer-icon svg {
    width: 24px;
    height: 15px;
  }
  .footer-copyright {
    margin-top: 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .footer-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .footer {
    padding: 65px 55px 55px;
    font-size: 14px;
    line-height: 1.5;
  }
  .footer-icon {
    top: -85px;
  }
  .footer-icon a {
    padding: 15px;
  }
  .footer-icon svg {
    width: 32px;
    height: 20px;
  }
  .footer-copyright {
    margin-top: 20px;
  }
}

/**
--------------------------------------------------
  Nav
--------------------------------------------------
**/
.nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #abc98a;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: opacity, visibility, -webkit-transform;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-link {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.nav-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: currentColor;
}
.nav-link a:hover,
.nav-link a.active {
  color: #3c572d;
}
.nav-link li > a svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.nav-link li > ul {
  display: none;
}
.nav-link li.active > a {
  color: #3c572d;
}
.nav-link li.active > a svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav-link li.active > ul {
  display: block;
}
.nav-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.nav-social a {
  display: block;
  color: #fff;
}
.nav-social a:hover {
  color: #3c572d;
}

/* mobile */
@media (max-width: 767px) {
  .nav {
    top: 55px;
    font-size: 19px;
  }
  .nav-link {
    padding-top: 10px;
  }
  .nav-link a {
    padding: 8px 15px;
  }
  .nav-link svg {
    width: 14px;
    height: 9px;
    margin-left: 15px;
  }
  .nav-link li ul {
    padding: 0 0 5px 15px;
  }
  .nav-social {
    padding: 10px 15px 25px;
  }
  .nav-social a {
    margin-right: 20px;
  }
  .nav-social svg {
    width: 28px;
    height: 28px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .nav {
    top: 90px;
    font-size: 25px;
  }
  .nav-link {
    padding-top: 25px;
  }
  .nav-link a {
    padding: 8px 30px;
  }
  .nav-link svg {
    width: 19px;
    height: 12px;
    margin-left: 20px;
  }
  .nav-link li ul {
    padding: 0 0 15px 30px;
  }
  .nav-social {
    padding: 20px 30px 35px;
  }
  .nav-social a {
    margin-right: 25px;
  }
  .nav-social svg {
    width: 38px;
    height: 38px;
  }
}

/**
--------------------------------------------------
  Subnav
--------------------------------------------------
**/
.subnav {
  position: absolute;
  top: 170px;
  right: 0;
  left: 0;
  z-index: 10;
  background-color: #abc98a;
  -webkit-box-shadow: 0 30px 25px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 30px 25px 5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.subnav.active {
  opacity: 1;
  visibility: visible;
}
.subnav-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 40px 55px 70px;
}
.subnav-grid--item.i1 {
  width: 480px;
  min-height: 260px;
  margin-right: 50px;
  padding-right: 40px;
  border-right: rgba(255, 255, 255, 0.2) solid 4px;
}
.subnav-grid--item.i2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.subnav-title,
.subnav-list {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}
.subnav-title {
  font-size: 26px;
  color: #3c572d;
}
.subnav-list {
  font-size: 18px;
}
.subnav-list a {
  display: block;
  padding: 10px 0;
  color: #fff;
}
.subnav-list a:hover {
  color: #3c572d;
}
.subnav-summary {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  color: #3c572d;
}

/**
--------------------------------------------------
  Toolbar
--------------------------------------------------
**/
.toolbar {
  background-color: #aacb86;
}
.toolbar-link {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  color: #3c572d;
}
.toolbar-link a,
.toolbar-link span {
  display: block;
}
.toolbar-link a {
  color: currentColor;
}
.toolbar-link a:hover {
  color: #fff;
}
.toolbar-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.toolbar-social a {
  color: #532f1b;
}
.toolbar-social a:hover {
  color: #373737;
}

/* mobile */
@media (max-width: 767px) {
  .toolbar {
    padding: 30px 0 40px;
  }
  .toolbar-link {
    font-size: 16px;
    border-top: rgba(255, 255, 255, 0.1) solid 2px;
  }
  .toolbar-link li {
    border-bottom: rgba(255, 255, 255, 0.1) solid 2px;
  }
  .toolbar-link a,
  .toolbar-link span {
    padding: 10px 20px;
  }
  .toolbar-social a {
    padding: 0;
    margin-right: 15px;
  }
  .toolbar-social svg {
    width: 28px;
    height: 28px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .toolbar-link {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .toolbar-image {
    position: relative;
    z-index: 2;
    margin: 0 auto;
  }
  .toolbar-image img {
    width: 100%;
    height: auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .toolbar-link {
    padding: 0 60px;
    font-size: 12px;
  }
  .toolbar-link a,
  .toolbar-link span {
    padding: 6px 0;
  }
  .toolbar-social a {
    padding: 0;
    margin-left: 10px;
  }
  .toolbar-social svg {
    width: 22px;
    height: 22px;
  }
  .toolbar-image {
    width: 210px;
    padding: 30px 0 50px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .toolbar-link {
    padding: 0 90px;
    font-size: 18px;
  }
  .toolbar-link a,
  .toolbar-link span {
    padding: 10px 0;
  }
  .toolbar-social a {
    padding: 0;
    margin-left: 15px;
  }
  .toolbar-social svg {
    width: 28px;
    height: 28px;
  }
  .toolbar-image {
    width: 346px;
    padding: 50px 0 70px;
  }
}

/**
--------------------------------------------------
  Intro
--------------------------------------------------
**/
.intro-image img {
  max-width: 100%;
  height: auto;
}

.intro-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  color: #000;
}

.intro-summary {
  margin-top: 20px;
  color: rgba(55, 55, 55, 0.85);
}

.intro-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 25px;
}
.intro-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #7aa848;
}
.intro-button a:hover {
  color: #3c572d;
}
.intro-button span {
  display: block;
}
.intro-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}

.intro-icon {
  margin-top: 25px;
}
.intro-icon a {
  display: inline-block;
  padding: 10px;
  line-height: 0;
  color: #7aa848;
}
.intro-icon a:hover {
  color: #3c572d;
}
.intro-icon svg {
  width: 16px;
  height: 10px;
}

/* mobile */
@media (max-width: 767px) {
  .intro-container {
    padding: 30px 15px;
    text-align: center;
    border-bottom: #e8e8e8 solid 3px;
  }
  .intro-banner {
    margin-bottom: 20px;
  }
  .intro-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .intro-summary {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .intro-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .intro-grid--item.i1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-right: 50px;
  }
  .intro-grid--item.i2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .intro-container {
    padding: 50px 30px;
  }
  .intro-title {
    font-size: 32px;
    line-height: 1.125;
  }
  .intro-summary {
    font-size: 16px;
    line-height: 1.5;
  }
  .intro-button a {
    padding: 10px 0;
    font-size: 12px;
  }
  .intro-button a + a {
    margin-left: 30px;
  }
  .intro-button svg {
    width: 12px;
    height: 8px;
  }
  .intro-grid--item.i2 {
    width: 200px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .intro-container {
    padding: 30px 60px 80px;
  }
  .intro-banner {
    margin-bottom: 20px;
  }
  .intro-title {
    font-size: 50px;
    line-height: 1.12;
  }
  .intro-summary {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
  }
  .intro-button a {
    padding: 10px 0;
    font-size: 16px;
  }
  .intro-button a + a {
    margin-left: 45px;
  }
  .intro-button svg {
    width: 16px;
    height: 10px;
  }
  .intro-grid--item.i2 {
    width: 390px;
  }
}

/**
--------------------------------------------------
  Training
--------------------------------------------------
**/
.training-category {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5em;
  line-height: 1;
  text-transform: uppercase;
  color: #a7a7a7;
}

.training-summary {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: #7aa848;
}

.training-image {
  text-align: center;
}
.training-image img {
  max-width: 75%;
  height: auto;
}

.training-item {
  position: relative;
  margin-top: 35px;
  background-color: #f9f9f9;
}
.training-item:first-child {
  margin-top: 0;
}
.training-item--title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.125em;
  line-height: 1;
  text-transform: uppercase;
  color: #343434;
}
.training-item--summary {
  font-style: italic;
  color: rgba(55, 55, 55, 0.85);
}
.training-item--button {
  position: absolute;
  bottom: -10px;
  right: -10px;
}
.training-item--button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.training-item--button a:hover {
  background-color: #3c572d;
}
.training-item--button span {
  display: block;
}
.training-item--button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}

/* mobile */
@media (max-width: 767px) {
  .training-grid {
    padding: 40px 15px 50px;
  }
  .training-grid--item.i1 {
    text-align: center;
  }
  .training-grid--item.i2 {
    margin-top: 40px;
    padding-right: 10px;
  }
  .training-category {
    font-size: 12px;
  }
  .training-summary {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4;
  }
  .training-item {
    padding: 25px 25px 40px;
  }
  .training-item--title {
    font-size: 16px;
  }
  .training-item--summary {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
  }
  .training-item--button a {
    padding: 12px 20px;
    font-size: 10px;
  }
  .training-item--button svg {
    width: 6px;
    height: 10px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .training-grid {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .training-grid::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    pointer-events: none;
    content: "";
    background-color: transparent;
    -webkit-box-shadow: 13px 6px 48px 11px rgba(0, 0, 0, 0.05);
    box-shadow: 13px 6px 48px 11px rgba(0, 0, 0, 0.05);
  }
  .training-grid--item.i1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .training-grid--item.i2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .training-item::after {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    content: "";
    border-color: transparent;
    border-style: solid;
    border-left-color: #fff;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .training-grid {
    padding: 40px 40px 60px 30px;
  }
  .training-grid::after {
    right: 100px;
  }
  .training-grid--item.i1 {
    margin-right: 30px;
  }
  .training-grid--item.i2 {
    width: 340px;
  }
  .training-category {
    font-size: 12px;
    padding-top: 25px;
  }
  .training-summary {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .training-image {
    margin-top: 45px;
  }
  .training-item {
    padding: 25px 25px 30px;
  }
  .training-item::after {
    top: 21px;
    border-width: 10px 0 10px 10px;
  }
  .training-item--title {
    font-size: 16px;
  }
  .training-item--summary {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.2;
  }
  .training-item--button a {
    padding: 12px 20px;
    font-size: 10px;
  }
  .training-item--button svg {
    width: 6px;
    height: 10px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .training-grid {
    padding: 70px 100px 70px 60px;
  }
  .training-grid::after {
    right: 180px;
  }
  .training-grid--item.i1 {
    margin-right: 70px;
  }
  .training-grid--item.i2 {
    width: 530px;
  }
  .training-category {
    font-size: 16px;
    padding-top: 45px;
  }
  .training-summary {
    margin-top: 30px;
    font-size: 26px;
    line-height: 36px;
  }
  .training-image {
    margin-top: 25px;
  }
  .training-item {
    margin-top: 35px;
    padding: 40px 35px 55px;
  }
  .training-item::after {
    top: 35px;
    border-width: 15px 0 15px 15px;
  }
  .training-item--title {
    font-size: 20px;
  }
  .training-item--summary {
    margin-top: 15px;
    font-size: 18px;
    line-height: 22px;
  }
  .training-item--button a {
    padding: 12px 25px;
    font-size: 12px;
  }
  .training-item--button svg {
    width: 8px;
    height: 12px;
  }
}

/**
--------------------------------------------------
  Research
--------------------------------------------------
**/
.research-category,
.research-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}

.research-category {
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  color: #a7a7a7;
}

.research-title {
  color: #000;
}

.research-summary {
  margin-top: 20px;
  color: rgba(55, 55, 55, 0.75);
}
.research-summary a {
  color: #AFCC8A;
}
.research-summary a:hover {
  color: #3c572d;
}

.research-button a {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.research-button a:hover {
  background-color: #3c572d;
}

.research-button span {
  display: block;
}

.research-slider {
  position: relative;
  z-index: 1;
}

.research-nav {
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: #f9f9f9;
}
.research-nav button {
  float: left;
  line-height: 1;
  background-color: rgba(227, 227, 227, 0.8);
  border: 0;
  color: #fff;
}
.research-nav button:hover {
  background-color: rgba(192, 192, 192, 0.8);
}
.research-nav button + button {
  margin-left: 1px;
}

/* mobile */
@media (max-width: 767px) {
  .research-container {
    margin-top: 40px;
    padding: 40px 0;
    background-color: #f9f9f9;
  }
  .research-slider {
    padding: 40px 0;
    background-color: #f9f9f9;
  }
  .research-item {
    padding: 0 15px;
  }
  .research-image {
    height: 185px;
    margin-bottom: 20px;
  }
  .research-category {
    margin-bottom: 30px;
    font-size: 12px;
    text-align: center;
  }
  .research-title {
    font-size: 20px;
    line-height: 1.25;
  }
  .research-summary {
    font-size: 15px;
    line-height: 1.4;
  }
  .research-button {
    margin-top: 25px;
  }
  .research-button a {
    display: block;
    padding: 15px 30px;
    font-size: 12px;
    text-align: center;
  }
  .research-button svg {
    display: none;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .research-item {
    position: relative;
    background-color: #f9f9f9;
  }
  .research-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .research-title {
    line-height: 1.125;
  }
  .research-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .research-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.25;
  }
  .research-button svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .research-container {
    margin-top: 50px;
    padding: 0 30px;
  }
  .research-slider {
    padding: 0 30px;
  }
  .research-item {
    min-height: 245px;
    padding: 30px 20px 20px 270px;
  }
  .research-image {
    width: 230px;
  }
  .research-category {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .research-title {
    font-size: 24px;
  }
  .research-summary {
    font-size: 15px;
    line-height: 1.4;
  }
  .research-button {
    margin-top: 20px;
  }
  .research-button a {
    padding: 12px 20px;
    font-size: 10px;
  }
  .research-button svg {
    width: 8px;
    height: 12px;
  }
  .research-nav {
    right: 30px;
  }
  .research-nav button {
    width: 28px;
    height: 28px;
  }
  .research-nav svg {
    width: 10px;
    height: 16px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .research-container {
    margin-top: 80px;
    padding: 0 60px;
  }
  .research-slider {
    padding: 0 60px;
  }
  .research-item {
    min-height: 355px;
    padding: 45px 30px 30px 410px;
  }
  .research-image {
    width: 355px;
  }
  .research-category {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .research-title {
    font-size: 32px;
  }
  .research-summary {
    font-size: 18px;
    line-height: 26px;
  }
  .research-button {
    margin-top: 30px;
  }
  .research-button a {
    padding: 15px 30px;
    font-size: 12px;
  }
  .research-button svg {
    width: 9px;
    height: 14px;
  }
  .research-nav {
    right: 60px;
  }
  .research-nav button {
    padding: 10px 15px;
  }
  .research-nav svg {
    width: 15px;
    height: 24px;
  }
}

/**
--------------------------------------------------
  Community
--------------------------------------------------
**/
.community-header {
  text-align: center;
}

.community-category,
.community-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}

.community-category {
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  color: #a7a7a7;
}

.community-title {
  color: #000;
}

.community-summary {
  margin: 20px auto 0;
  color: rgba(55, 55, 55, 0.85);
}

.community-image a {
  display: block;
  overflow: hidden;
  border: #fff solid 5px;
  border-radius: 50%;
}
.community-image a:hover {
  border-color: #aacb86;
}

.community-image img {
  width: 100%;
  height: auto;
}

.community-location {
  position: relative;
  background-color: #f9f9f9;
}
.community-location span{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #AFCC8A;
  border-radius: 50%;
  color: #fff;
}
.community-location a:hover {
  background-color: #AFCC8A;
  cursor: default;
}

/* mobile */
@media (max-width: 767px) {
  .community {
    padding: 40px 15px;
  }
  .community-category {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .community-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .community-summary {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.4;
  }
  .community-image {
    max-width: 360px;
    margin: 40px auto 0;
    padding: 0 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .community-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
  }
  .community-title {
    line-height: 1;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .community {
    padding: 50px 0;
  }
  .community-category {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .community-title {
    font-size: 28px;
  }
  .community-summary {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.4;
  }
  .community-image {
    width: 295px;
  }
  .community-location {
    width: 6px;
    height: 235px;
    margin: 0 45px;
  }
  .community-location span {
    padding: 10px;
  }
  .community-location svg {
    width: 40px;
    height: 40px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .community {
    padding: 90px 0;
  }
  .community-category {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .community-title {
    font-size: 36px;
  }
  .community-summary {
    max-width: 720px;
    font-size: 18px;
    line-height: 26px;
  }
  .community-image {
    width: 495px;
  }
  .community-location {
    width: 10px;
    height: 405px;
    margin: 0 75px;
  }
  .community-location span {
    padding: 15px;
  }
  .community-location svg {
    width: 68px;
    height: 68px;
  }
}

/**
--------------------------------------------------
  News
--------------------------------------------------
**/
.news {
  background-color: #f9f9f9;
}
.news-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #a7a7a7;
}
.news-prev,
.news-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
  background-color: transparent;
  border: 0;
  color: #AFCC8A;
}
.news-prev:hover,
.news-next:hover {
  color: #3c572d;
}
.news-slider {
  background-color: #fff;
}
.news-item--link {
  position: relative;
  display: block;
  background-color: #f9f9f9;
  color: #AFCC8A;
}
.news-item--link:hover {
  background-color: #e8e8e8;
  color: #3c572d;
}
.news-item--icon {
  color: #AFCC8A;
}
.news-item--title {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2a2a2a;
}
.news-item--button {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}
.news-item--button span {
  display: block;
}
.news-item--button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}

/* mobile */
@media (max-width: 767px) {
  .news {
    padding-bottom: 30px;
  }
  .news-header {
    padding: 30px 0;
  }
  .news-title {
    font-size: 12px;
  }
  .news-prev svg,
  .news-next svg {
    width: 15px;
    height: 24px;
  }
  .news-prev {
    left: 15px;
  }
  .news-next {
    right: 15px;
  }
  .news-item {
    padding: 10px 15px;
  }
  .news-item--link {
    min-height: 280px;
    padding: 40px 30px 80px;
  }
  .news-item--icon {
    margin-bottom: 25px;
  }
  .news-item--title {
    font-size: 20px;
    line-height: 1.25;
  }
  .news-item--button {
    right: 30px;
    bottom: 40px;
    left: 30px;
    font-size: 14px;
  }
  .news-item--button svg {
    width: 8px;
    height: 12px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .news {
    padding-bottom: 30px;
  }
  .news-header {
    padding: 35px 0;
  }
  .news-title {
    font-size: 12px;
  }
  .news-prev svg,
  .news-next svg {
    width: 15px;
    height: 24px;
  }
  .news-prev {
    left: 30px;
  }
  .news-next {
    right: 30px;
  }
  .news-item {
    width: 220px;
    padding: 10px 5px;
  }
  .news-item--link {
    min-height: 200px;
    padding: 30px 20px 60px;
  }
  .news-item--icon {
    margin-bottom: 15px;
  }
  .news-item--title {
    font-size: 15px;
    line-height: 1.4;
  }
  .news-item--button {
    right: 20px;
    bottom: 30px;
    left: 20px;
    font-size: 12px;
  }
  .news-item--button svg {
    width: 6px;
    height: 10px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .news {
    padding-bottom: 40px;
  }
  .news-header {
    padding: 50px 0;
  }
  .news-title {
    font-size: 16px;
  }
  .news-prev svg,
  .news-next svg {
    width: 20px;
    height: 32px;
  }
  .news-prev {
    left: 60px;
  }
  .news-next {
    right: 60px;
  }
  .news-item {
    width: 350px;
    padding: 20px 10px;
  }
  .news-item--link {
    min-height: 280px;
    padding: 40px 30px 80px;
  }
  .news-item--icon {
    margin-bottom: 25px;
  }
  .news-item--title {
    font-size: 20px;
    line-height: 1.25;
  }
  .news-item--button {
    right: 30px;
    bottom: 40px;
    left: 30px;
    font-size: 16px;
  }
  .news-item--button svg {
    width: 9px;
    height: 14px;
  }
}

/**
--------------------------------------------------
  Subpage
--------------------------------------------------
**/
.subpage-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.subpage-title.i2 em {
  font-style: normal;
  font-weight: 500;
  color: #AFCC8A;
}
.subpage-title.i3 em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-weight: 500;
}

/* mobile */
@media (max-width: 767px) {
  .subpage-header {
    padding: 0 15px 25px;
    text-align: center;
    border-bottom: #AFCC8A solid 2px;
  }
  .subpage-title {
    font-size: 20px;
    line-height: 1.25;
  }
  .subpage-title.i3 em {
    font-size: 16px;
    line-height: 1.25;
  }
  .subpage-grid {
    margin-top: 25px;
    padding: 0 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .subpage-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .subpage-header::after {
    position: absolute;
    left: 0;
    z-index: 1;
    height: 3px;
    pointer-events: none;
    content: "";
    background-color: #AFCC8A;
  }
  .subpage-title {
    position: relative;
    z-index: 2;
    line-height: 1;
    background-color: #fff;
    color: #000;
  }
  .subpage-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .subpage-grid--item.i1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .subpage-grid--item.i2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .subpage-container {
    padding: 0 30px;
  }
  .subpage-header::after {
    top: 14px;
    right: -30px;
  }
  .subpage-title.i1,
  .subpage-title.i2 {
    font-size: 30px;
  }
  .subpage-title.i1 {
    padding-right: 30px;
  }
  .subpage-title.i2 {
    padding-right: 60px;
  }
  .subpage-title.i3 {
    padding-right: 20px;
    font-size: 22px;
  }
  .subpage-title.i3 em {
    font-size: 18px;
  }
  .subpage-grid {
    margin-top: 30px;
  }
  .subpage-grid--item.i1 {
    margin-right: 30px;
  }
  .subpage-grid--item.i2 {
    width: 180px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .subpage-container {
    padding: 0 110px;
  }
  .subpage-header::after {
    top: 16px;
    right: -110px;
  }
  .subpage-title.i1,
  .subpage-title.i2 {
    font-size: 36px;
  }
  .subpage-title.i1 {
    padding-right: 40px;
  }
  .subpage-title.i2 {
    padding-right: 80px;
  }
  .subpage-title.i3 {
    padding-right: 20px;
    font-size: 28px;
  }
  .subpage-title.i3 em {
    font-size: 24px;
  }
  .subpage-grid {
    margin-top: 60px;
  }
  .subpage-grid--item.i1 {
    margin-right: 50px;
  }
  .subpage-grid--item.i2 {
    width: 280px;
  }
}

/**
--------------------------------------------------
  Sidebar
--------------------------------------------------
**/
.sidebar-bio {
  text-align: center;
}
.sidebar-bio--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.sidebar-bio--body li {
  margin-top: 5px;
}
.sidebar-bio--body a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  background-color: #f9f9f9;
  color: #536d4d;
}
.sidebar-bio--body a:hover {
  background-color: #536d4d;
  color: #fff;
}

.sidebar-graphic img,
.sidebar-picture img {
  width: 100%;
  height: auto;
}

.sidebar-identification {
  text-align: center;
}
.sidebar-identification--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.sidebar-identification--body a,
.sidebar-identification--body span {
  display: block;
}
.sidebar-identification--body a {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  background-color: #fff;
  color: #536d4d;
}
.sidebar-identification--body a:hover {
  background-color: #536d4d;
  color: #fff;
}
.sidebar-identification--body img {
  width: 100%;
  height: auto;
}

/* mobile */
@media (max-width: 767px) {
  .sidebar-identification {
    margin-top: 40px;
  }
  .sidebar-identification--title {
    height: 60px;
    font-size: 16px;
  }
  .sidebar-identification--body li {
    margin-top: 20px;
  }
  .sidebar-identification--body a {
    -webkit-box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .sidebar-identification--body span {
    padding: 15px 25px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .sidebar-bio--title {
    height: 60px;
    font-size: 12px;
  }
  .sidebar-bio--body a {
    height: 50px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .sidebar-picture {
    margin-right: -30px;
    padding-top: 20px;
    padding-bottom: 60px;
    border-right: #AFCC8A solid 15px;
  }
  .sidebar-identification--title {
    height: 60px;
    font-size: 12px;
  }
  .sidebar-identification--body li {
    margin-top: 15px;
  }
  .sidebar-identification--body a {
    font-size: 12px;
    -webkit-box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.1);
  }
  .sidebar-identification--body span {
    padding: 10px 15px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .sidebar-bio--title {
    height: 90px;
    font-size: 18px;
  }
  .sidebar-bio--body a {
    height: 80px;
    padding: 10px 25px;
  }
  .sidebar-graphic {
    margin-right: -25px;
  }
  .sidebar-picture {
    margin-right: -50px;
    padding-top: 40px;
    padding-bottom: 80px;
    border-right: #AFCC8A solid 25px;
  }
  .sidebar-identification--title {
    height: 90px;
    font-size: 18px;
  }
  .sidebar-identification--body li {
    margin-top: 25px;
  }
  .sidebar-identification--body a {
    -webkit-box-shadow: -5px 15px 25px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 15px 25px rgba(0, 0, 0, 0.1);
  }
  .sidebar-identification--body span {
    padding: 15px 25px;
  }
}

/**
--------------------------------------------------
  Editor
--------------------------------------------------
**/
.editor-content,
.editor-button,
.editor-table {
  color: #4a4a4a;
}

.editor-content h2:first-child,
.editor-content h3:first-child,
.editor-content h4:first-child,
.editor-content hr:first-child,
.editor-content p:first-child,
.editor-content ul:first-child,
.editor-content ol:first-child {
  margin-top: 0;
}

.editor-content h2 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5em;
  font-weight: 800;
  color: #000;
}

.editor-content h3,
.editor-content h4 {
  font-size: 1.35em;
}

.editor-content hr {
  height: 2px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #e3e3e3;
}

.editor-content ul {
  list-style: disc;
}

.editor-content ol {
  list-style: decimal;
}

.editor-content li:last-child ul,
.editor-content li:last-child ol {
  padding-bottom: 0;
}

.editor-content li ul {
  list-style: circle;
}

.editor-content li + li {
  margin-top: 5px;
}

.editor-content a {
  color: #AFCC8A;
}
.editor-content a:hover {
  color: #3c572d;
}

.editor-button {
  margin-top: 30px;
}
.editor-button a {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.editor-button a:hover {
  background-color: #3c572d;
}
.editor-button span {
  display: block;
}

.editor-table th,
.editor-table td {
  padding: 15px;
  border: #e3e3e3 solid 1px;
}

.editor-table th {
  font-weight: 700;
  text-align: left;
  background-color: #f9f9f9;
}

.editor-table a {
  color: #AFCC8A;
}
.editor-table a:hover {
  color: #3c572d;
}

.editor-figure {
  text-align: center;
}
.editor-figure img {
  max-width: 100%;
  height: auto;
}

/* mobile */
@media (max-width: 767px) {
  .editor-content,
  .editor-button,
  .editor-table {
    font-size: 15px;
    line-height: 1.4;
  }
  .editor-content h2,
  .editor-content h3,
  .editor-content h4 {
    margin-top: 30px;
  }
  .editor-content hr {
    margin-top: 30px;
  }
  .editor-content p,
  .editor-content ul,
  .editor-content ol {
    margin-top: 20px;
  }
  .editor-content ul,
  .editor-content ol {
    margin-left: 20px;
  }
  .editor-content li ul,
  .editor-content li ol {
    margin-top: 5px;
    padding-bottom: 5px;
  }
  .editor-button ul {
    margin-top: 20px;
  }
  .editor-button li + li {
    margin-top: 10px;
  }
  .editor-button a {
    display: block;
    padding: 15px 20px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
  }
  .editor-button svg {
    display: none;
  }
  .editor-table,
  .editor-figure {
    margin-top: 30px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .editor-button ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .editor-button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.25;
  }
  .editor-button svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .editor-content,
  .editor-button,
  .editor-table {
    font-size: 16px;
    line-height: 1.5;
  }
  .editor-content h2,
  .editor-content h3,
  .editor-content h4 {
    margin-top: 30px;
  }
  .editor-content hr {
    margin-top: 40px;
  }
  .editor-content p,
  .editor-content ul,
  .editor-content ol {
    margin-top: 20px;
  }
  .editor-content ul,
  .editor-content ol {
    margin-left: 20px;
  }
  .editor-content li ul,
  .editor-content li ol {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .editor-button ul {
    margin-top: 20px;
  }
  .editor-button li + li {
    margin-top: 10px;
  }
  .editor-button a {
    padding: 15px 20px;
    font-size: 10px;
  }
  .editor-button svg {
    width: 8px;
    height: 12px;
  }
  .editor-table,
  .editor-figure {
    margin-top: 40px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .editor-content,
  .editor-button,
  .editor-table {
    font-size: 20px;
    line-height: 1.5;
  }
  .editor-content h2,
  .editor-content h3,
  .editor-content h4 {
    margin-top: 40px;
  }
  .editor-content hr {
    margin-top: 50px;
  }
  .editor-content p,
  .editor-content ul,
  .editor-content ol {
    margin-top: 30px;
  }
  .editor-content ul,
  .editor-content ol {
    margin-left: 30px;
  }
  .editor-content li ul,
  .editor-content li ol {
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .editor-button ul {
    margin-top: 30px;
  }
  .editor-button li + li {
    margin-top: 15px;
  }
  .editor-button a {
    padding: 15px 30px;
    font-size: 12px;
  }
  .editor-button svg {
    width: 9px;
    height: 14px;
  }
  .editor-table,
  .editor-figure {
    margin-top: 50px;
  }
}

/**
--------------------------------------------------
  Accordion
--------------------------------------------------
**/
.accordion-item--header {
  position: relative;
  background-color: #f9f9f9;
  color: #3c572d;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease-out;
  transition: background-color 0.35s ease-out;
}
.accordion-item--header:hover {
  background-color: #e8e8e8;
}
.accordion-item--header::before,
.accordion-item--header::after {
  position: absolute;
  pointer-events: none;
  content: "";
  background-color: currentColor;
}
.accordion-item--header::after {
  opacity: 1;
}

.accordion-item--title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.accordion-item--body {
  display: none;
}

.accordion-item.active .accordion-item--header {
  background-color: #AFCC8A;
}
.accordion-item.active .accordion-item--header::after {
  opacity: 0;
}

.accordion-item.active .accordion-item--body {
  display: block;
}

/* mobile */
@media (max-width: 767px) {
  .accordion {
    margin-top: 40px;
  }
  .accordion-item--header {
    padding: 20px 55px 20px 15px;
  }
  .accordion-item--header::before {
    top: 28px;
    right: 20px;
    width: 16px;
    height: 4px;
  }
  .accordion-item--header::after {
    top: 22px;
    right: 26px;
    width: 4px;
    height: 16px;
  }
  .accordion-item--title {
    font-size: 16px;
    line-height: 1.25;
  }
  .accordion-item--body {
    padding: 15px 0 0;
  }
  .accordion-item + .accordion-item {
    margin-top: 10px;
  }
  .accordion-item.active + .accordion-item {
    margin-top: 30px;
  }
}

/* tablet - desktop */
/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .accordion {
    margin-top: 50px;
  }
  .accordion-item--header {
    padding: 20px 100px 20px 25px;
  }
  .accordion-item--header::before {
    top: 28px;
    right: 20px;
    width: 16px;
    height: 4px;
  }
  .accordion-item--header::after {
    top: 22px;
    right: 26px;
    width: 4px;
    height: 16px;
  }
  .accordion-item--title {
    font-size: 16px;
    line-height: 1.25;
  }
  .accordion-item--body {
    padding: 20px 0 0;
  }
  .accordion-item + .accordion-item {
    margin-top: 10px;
  }
  .accordion-item.active + .accordion-item {
    margin-top: 35px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .accordion {
    margin-top: 80px;
  }
  .accordion-item--header {
    padding: 25px 100px 25px 40px;
  }
  .accordion-item--header::before {
    top: 37px;
    right: 25px;
    width: 24px;
    height: 6px;
  }
  .accordion-item--header::after {
    top: 28px;
    right: 34px;
    width: 6px;
    height: 24px;
  }
  .accordion-item--title {
    font-size: 20px;
    line-height: 1.5;
  }
  .accordion-item--body {
    padding: 30px 40px 0;
  }
  .accordion-item + .accordion-item {
    margin-top: 15px;
  }
  .accordion-item.active + .accordion-item {
    margin-top: 45px;
  }
}

/**
--------------------------------------------------
  Service
--------------------------------------------------
**/
.service {
  border-top: #e3e3e3 solid 2px;
}
.service-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: #000;
}
.service-item {
  background-color: #f0f0f0;
  border-radius: 20px;
}
.service-name {
  font-weight: 700;
  line-height: 1.25;
  color: rgba(60, 87, 45, 0.85);
}
.service-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.service-button a:hover {
  background-color: #3c572d;
}
.service-button span {
  display: block;
}
.service-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}
.service-info {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}
.service-info li + li {
  border-top: rgba(60, 87, 45, 0.1) solid 2px;
}
.service-info a {
  color: rgba(60, 87, 45, 0.85);
}
.service-info a:hover {
  color: #3c572d;
}

/* mobile */
@media (max-width: 767px) {
  .service {
    margin-top: 40px;
    padding-top: 30px;
  }
  .service-title {
    font-size: 20px;
  }
  .service-body {
    margin-top: 25px;
  }
  .service-item {
    padding: 30px;
  }
  .service-item + .service-item {
    margin-top: 25px;
  }
  .service-name {
    font-size: 16px;
  }
  .service-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
  }
  .service-button a {
    padding: 12px 20px;
    font-size: 10px;
  }
  .service-button svg {
    width: 8px;
    height: 12px;
  }
  .service-info {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4;
  }
  .service-info li + li {
    margin-top: 5px;
    padding-top: 5px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .service-item {
    position: relative;
  }
  .service-button {
    position: absolute;
  }
  .service-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .service-grid--item.i1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .service-grid--item.i2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .service {
    margin-top: 50px;
    padding-top: 30px;
  }
  .service-title {
    font-size: 24px;
  }
  .service-body {
    margin-top: 30px;
  }
  .service-item {
    min-height: 180px;
    padding: 30px;
  }
  .service-item + .service-item {
    margin-top: 25px;
  }
  .service-name {
    font-size: 20px;
  }
  .service-button {
    bottom: 30px;
    left: 30px;
  }
  .service-button a {
    padding: 12px 20px;
    font-size: 10px;
  }
  .service-button svg {
    width: 8px;
    height: 12px;
  }
  .service-info {
    font-size: 15px;
    line-height: 1.4;
  }
  .service-info li + li {
    margin-top: 5px;
    padding-top: 5px;
  }
  .service-grid--item.i1 {
    margin-right: 30px;
    padding-bottom: 50px;
  }
  .service-grid--item.i2 {
    width: 200px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .service {
    margin-top: 80px;
    padding-top: 50px;
  }
  .service-title {
    font-size: 32px;
  }
  .service-body {
    margin-top: 40px;
  }
  .service-item {
    min-height: 240px;
    padding: 40px;
  }
  .service-item + .service-item {
    margin-top: 35px;
  }
  .service-name {
    font-size: 24px;
  }
  .service-button {
    bottom: 40px;
    left: 40px;
  }
  .service-button a {
    padding: 15px 25px;
    font-size: 12px;
  }
  .service-button svg {
    width: 8px;
    height: 12px;
  }
  .service-info {
    font-size: 20px;
    line-height: 1.25;
  }
  .service-info li + li {
    margin-top: 10px;
    padding-top: 10px;
  }
  .service-grid--item.i1 {
    margin-right: 50px;
    padding-bottom: 60px;
  }
  .service-grid--item.i2 {
    width: 280px;
  }
}

/**
--------------------------------------------------
  Application
--------------------------------------------------
**/
.application-grid {
  border-top: #e3e3e3 solid 2px;
}

.application-image img {
  width: 100%;
  height: auto;
}

.application-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: #000;
}

.application-summary {
  color: rgba(55, 55, 55, 0.85);
}

.application-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff;
}
.application-button a:hover {
  background-color: #3c572d;
}

.application-button span {
  display: block;
}

.application-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}

/* mobile */
@media (max-width: 767px) {
  .application {
    margin-top: 40px;
  }
  .application-grid {
    padding: 25px 15px 0;
  }
  .application-title {
    font-size: 20px;
  }
  .application-image {
    margin-top: 20px;
  }
  .application-summary {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4;
  }
  .application-button {
    margin-top: 30px;
  }
  .application-button a {
    padding: 20px 25px;
    font-size: 14px;
  }
  .application-button svg {
    width: 8px;
    height: 12px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .application-grid {
    position: relative;
  }
  .application-image {
    position: absolute;
    right: 0;
  }
  .application-title {
    line-height: 1.25;
  }
  .application-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .application {
    margin-top: 50px;
  }
  .application-container {
    padding: 0 30px;
  }
  .application-grid {
    min-height: 180px;
    padding-top: 30px;
    padding-right: 170px;
  }
  .application-image {
    top: 60px;
    width: 110px;
  }
  .application-title {
    font-size: 24px;
  }
  .application-summary {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .application-button {
    margin-top: 30px;
  }
  .application-button a {
    padding: 15px 20px;
    font-size: 10px;
  }
  .application-button svg {
    width: 8px;
    height: 12px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .application {
    margin-top: 80px;
  }
  .application-container {
    padding: 0 110px;
  }
  .application-grid {
    min-height: 250px;
    padding-top: 50px;
    padding-right: 260px;
  }
  .application-image {
    top: 80px;
    width: 170px;
  }
  .application-title {
    font-size: 32px;
  }
  .application-summary {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.5;
  }
  .application-button {
    margin-top: 35px;
  }
  .application-button a {
    padding: 15px 30px;
    font-size: 14px;
  }
  .application-button svg {
    width: 10px;
    height: 16px;
  }
}

/**
--------------------------------------------------
  Gallery
--------------------------------------------------
**/
/* mobile */
@media (max-width: 767px) {
  .gallery {
    margin-top: 40px;
  }
  .gallery-image.i1 {
    height: 430px;
  }
  .gallery-image.i2 {
    height: 200px;
  }
  .gallery-image + .gallery-image,
  .gallery-grid + .gallery-grid,
  .gallery-grid--item + .gallery-grid--item {
    margin-top: 20px;
  }
  .gallery-grid {
    padding: 0 15px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .gallery-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .gallery-grid--item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .gallery-grid.i1 .gallery-grid--item {
    width: 50%;
  }
  .gallery-grid.i2 .gallery-grid--item {
    width: 100%;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .gallery {
    margin-top: 50px;
  }
  .gallery-image.i1 {
    height: 430px;
  }
  .gallery-image.i2 {
    height: 200px;
  }
  .gallery-image + .gallery-image {
    margin-top: 30px;
  }
  .gallery-grid {
    padding: 0 15px;
  }
  .gallery-grid--item {
    padding: 0 15px;
  }
  .gallery-grid + .gallery-grid {
    margin-top: 30px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .gallery {
    margin-top: 80px;
  }
  .gallery-image.i1 {
    height: 680px;
  }
  .gallery-image.i2 {
    height: 320px;
  }
  .gallery-image + .gallery-image {
    margin-top: 40px;
  }
  .gallery-grid {
    padding: 0 40px;
  }
  .gallery-grid--item {
    padding: 0 20px;
  }
  .gallery-grid + .gallery-grid {
    margin-top: 40px;
  }
}

/**
--------------------------------------------------
  Testimonial
--------------------------------------------------
**/
.testimonial-category {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  color: #a7a7a7;
}

.testimonial-content p {
  font-family: "Raleway", sans-serif;
  font-style: italic;
  font-weight: 500;
  color: #000;
}

.testimonial-content footer {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #797979;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
}

.testimonial-nav {
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: #f9f9f9;
}
.testimonial-nav button {
  float: left;
  line-height: 1;
  background-color: rgba(227, 227, 227, 0.8);
  border: 0;
  color: #fff;
}
.testimonial-nav button:hover {
  background-color: rgba(192, 192, 192, 0.8);
}
.testimonial-nav button + button {
  margin-left: 1px;
}

/* mobile */
@media (max-width: 767px) {
  .testimonial {
    margin-top: 40px;
  }
  .testimonial-slider {
    padding: 40px 0;
    background-color: #f9f9f9;
  }
  .testimonial-item {
    padding: 0 15px;
  }
  .testimonial-image {
    height: 185px;
    margin-bottom: 20px;
  }
  .testimonial-category {
    margin-bottom: 30px;
    font-size: 12px;
    text-align: center;
  }
  .testimonial-content p {
    font-size: 20px;
    line-height: 1.25;
  }
  .testimonial-content footer {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.25;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .testimonial-item {
    position: relative;
    background-color: #f9f9f9;
  }
  .testimonial-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .testimonial {
    margin-top: 50px;
  }
  .testimonial-slider {
    padding: 0 30px;
  }
  .testimonial-item {
    min-height: 245px;
    padding: 30px 20px 20px 270px;
  }
  .testimonial-image {
    width: 230px;
  }
  .testimonial-category {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .testimonial-content p {
    font-size: 20px;
    line-height: 1.5;
  }
  .testimonial-content footer {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.25;
  }
  .testimonial-nav {
    right: 30px;
  }
  .testimonial-nav button {
    width: 28px;
    height: 28px;
  }
  .testimonial-nav svg {
    width: 10px;
    height: 16px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .testimonial {
    margin-top: 80px;
  }
  .testimonial-slider {
    padding: 0 60px;
  }
  .testimonial-item {
    min-height: 450px;
    padding: 45px 30px 30px 410px;
  }
  .testimonial-image {
    width: 355px;
  }
  .testimonial-category {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .testimonial-content p {
    font-size: 32px;
    line-height: 1.3125;
  }
  .testimonial-content footer {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.25;
  }
  .testimonial-nav {
    right: 60px;
  }
  .testimonial-nav button {
    padding: 10px 15px;
  }
  .testimonial-nav svg {
    width: 15px;
    height: 24px;
  }
}

/**
--------------------------------------------------
  Bio
--------------------------------------------------
**/
.bio-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.bio-title span {
  display: block;
  background-color: #AFCC8A;
  color: #fff;
}

.bio-image img {
  width: 100%;
  height: auto;
}

.bio-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3c572d;
}

.bio-info {
  color: #4a4a4a;
}

.bio-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 30px;
}
.bio-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.25;
  text-transform: uppercase;
  background-color: #f9f9f9;
  color: #3c572d;
}
.bio-button a:hover {
  background-color: #3c572d;
  color: #fff;
}
.bio-button span {
  display: block;
}
.bio-button svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 15px;
}

/* mobile */
@media (max-width: 767px) {
  .bio {
    margin-top: 40px;
  }
  .bio-title {
    font-size: 18px;
    line-height: 1;
  }
  .bio-title span {
    padding: 15px;
  }
  .bio-grid {
    padding: 30px 15px;
    border-bottom: #f9f9f9 solid 2px;
  }
  .bio-image {
    position: relative;
    margin-bottom: 20px;
  }
  .bio-image::after {
    position: absolute;
    top: 20px;
    right: -15px;
    left: 160px;
    height: 3px;
    pointer-events: none;
    content: "";
    background-color: #AFCC8A;
  }
  .bio-image img {
    width: 160px;
  }
  .bio-name {
    font-size: 20px;
    line-height: 1.25;
  }
  .bio-info {
    font-size: 15px;
    line-height: 1.4;
  }
  .bio-button a {
    padding: 15px 20px;
    font-size: 10px;
  }
  .bio-button svg {
    width: 8px;
    height: 12px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .bio-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.25;
  }
  .bio-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: #f9f9f9 solid 3px;
  }
  .bio-grid--item.i1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .bio-grid--item.i2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .bio-name {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .bio-name::after {
    position: absolute;
    left: 0;
    z-index: 1;
    height: 3px;
    pointer-events: none;
    content: "";
    background-color: #AFCC8A;
  }
  .bio-name span {
    position: relative;
    z-index: 2;
    display: block;
    background-color: #fff;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .bio {
    margin-top: 50px;
  }
  .bio-title {
    font-size: 20px;
  }
  .bio-title span {
    padding: 10px 25px 10px 30px;
  }
  .bio-body {
    padding-right: 30px;
    padding-left: 30px;
  }
  .bio-grid {
    padding: 40px 0;
  }
  .bio-grid--item.i1 {
    width: 160px;
  }
  .bio-grid--item.i2 {
    margin-right: 100px;
  }
  .bio-name {
    font-size: 24px;
    line-height: 1.25;
  }
  .bio-name::after {
    top: 20px;
    right: -100px;
  }
  .bio-name span {
    padding: 8px 25px 8px 0;
  }
  .bio-info {
    font-size: 16px;
    line-height: 1.5;
  }
  .bio-button a {
    padding: 15px 20px;
    font-size: 10px;
  }
  .bio-button svg {
    width: 8px;
    height: 12px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .bio {
    margin-top: 80px;
  }
  .bio-title {
    font-size: 24px;
  }
  .bio-title span {
    padding: 13px 35px 13px 110px;
  }
  .bio-body {
    padding-right: 150px;
    padding-left: 110px;
  }
  .bio-grid {
    padding: 60px 0;
  }
  .bio-grid--item.i1 {
    width: 200px;
  }
  .bio-grid--item.i2 {
    margin-right: 50px;
  }
  .bio-name {
    font-size: 32px;
    line-height: 1.125;
  }
  .bio-name::after {
    top: 25px;
    right: -50px;
  }
  .bio-name span {
    padding: 8px 25px 8px 0;
  }
  .bio-info {
    font-size: 20px;
    line-height: 1.5;
  }
  .bio-button a {
    padding: 15px 30px;
    font-size: 12px;
  }
  .bio-button svg {
    width: 9px;
    height: 14px;
  }
}

/**
--------------------------------------------------
  Contact
--------------------------------------------------
**/
.contact-form--info {
  color: #4a4a4a;
}
.contact-form--info a {
  color: #AFCC8A;
}
.contact-form--info a:hover {
  color: #3c572d;
}

.contact-form--input input,
.contact-form--input textarea {
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  background-color: #fff;
  border: #cfcfcf solid 2px;
  color: #373737;
}
.contact-form--input input::-webkit-input-placeholder,
.contact-form--input textarea::-webkit-input-placeholder {
  color: #577F43;
}
.contact-form--input input::-moz-placeholder,
.contact-form--input textarea::-moz-placeholder {
  color: #577F43;
}
.contact-form--input input:-ms-input-placeholder,
.contact-form--input textarea:-ms-input-placeholder {
  color: #577F43;
}
.contact-form--input input::-ms-input-placeholder,
.contact-form--input textarea::-ms-input-placeholder {
  color: #577F43;
}
.contact-form--input input::placeholder,
.contact-form--input textarea::placeholder {
  color: #577F43;
}
.contact-form--input input:focus,
.contact-form--input textarea:focus {
  border-color: #373737;
}
.contact-form--input input:first-child,
.contact-form--input textarea:first-child {
  margin-top: 0;
}

.contact-form--button input {
  min-width: 200px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 0;
  background-color: #AFCC8A;
  color: #fff;
  cursor: pointer;
}
.contact-form--button input:hover {
  background-color: #3c572d;
}

.contact-link {
  text-align: center;
  text-transform: uppercase;
}
.contact-link--title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: #AFCC8A;
  color: #fff;
}
.contact-link--body li {
  margin-top: 5px;
}
.contact-link--body a {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  background-color: #f9f9f9;
  color: #536d4d;
}
.contact-link--body a:hover {
  background-color: #536d4d;
  color: #fff;
}

/* mobile */
@media (max-width: 767px) {
  .contact-form--info {
    font-size: 15px;
    line-height: 1.4;
  }
  .contact-form--input,
  .contact-form--button {
    margin-top: 30px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 10px;
    font-size: 15px;
    border-radius: 10px;
  }
  .contact-form--input input {
    height: 40px;
    padding: 5px 15px;
  }
  .contact-form--input textarea {
    height: 180px;
    padding: 10px 15px;
  }
  .contact-form--button {
    text-align: center;
  }
  .contact-form--button input {
    height: 40px;
    padding: 10px 20px;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .contact-link--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-link--body a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .contact-form--info {
    font-size: 16px;
    line-height: 1.5;
  }
  .contact-form--input,
  .contact-form--button {
    margin-top: 30px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 15px;
    font-size: 20px;
    border-radius: 15px;
  }
  .contact-form--input input {
    height: 60px;
    padding: 10px 20px;
  }
  .contact-form--input textarea {
    height: 260px;
    padding: 15px 20px;
  }
  .contact-form--button input {
    height: 50px;
    padding: 10px 20px;
  }
  .contact-link--title {
    height: 60px;
    font-size: 12px;
  }
  .contact-link--body a {
    height: 50px;
    padding: 5px 10px;
    font-size: 12px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .contact-form--info {
    font-size: 20px;
    line-height: 1.5;
  }
  .contact-form--input,
  .contact-form--button {
    margin-top: 50px;
  }
  .contact-form--input input,
  .contact-form--input textarea {
    margin-top: 20px;
    font-size: 24px;
    border-radius: 20px;
  }
  .contact-form--input input {
    height: 80px;
    padding: 10px 25px;
  }
  .contact-form--input textarea {
    height: 380px;
    padding: 20px 25px;
  }
  .contact-form--button input {
    height: 60px;
    padding: 10px 25px;
  }
  .contact-link--title {
    height: 90px;
    font-size: 18px;
  }
  .contact-link--body a {
    height: 80px;
    padding: 10px 25px;
  }
}

/**
--------------------------------------------------
  Button
--------------------------------------------------
**/
.button {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-color: #AFCC8A;
  color: #fff !important;
}
.button:hover {
  background-color: #3c572d;
}
.button span {
  display: block;
}

/* mobile */
@media (max-width: 767px) {
  .button {
    display: block;
    padding: 15px 20px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
  }
  .button svg {
    display: none;
  }
}

/* tablet - desktop */
@media (min-width: 768px) {
  .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.25;
  }
  .button svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) {
  .button {
    padding: 15px 20px;
    font-size: 10px;
  }
  .button svg {
    width: 8px;
    height: 12px;
  }
}

/* desktop */
@media (min-width: 1280px) {
  .button {
    padding: 15px 30px;
    font-size: 12px;
  }
  .button svg {
    width: 9px;
    height: 14px;
  }
}

/*TWEAKS HOMEPAGE*/
.research-nav button {
  color: #737373;
}
.subnav-list a {
  color: #3c572d;
}
.subnav-list a:hover {
  color: #fff;
}

.community-category, .training-category {
  color: #757575;
}

.news-title {
  color: #737373;
}


.training-category, .research-category, .community-category, .news-title {
  letter-spacing: 0.35em;
}

.training-image img {
  max-width: 50%;
  height: auto;
}

.header-nav {
  font-size: 16.5px;
}

.toolbar-social a {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.toolbar-social a:hover {
  color: white;
}


.training-image img {
  max-width: 50%;
  height: auto;
}

.research-summary {
  font-style: italic;
}
.training-category, .research-category, .community-category, .news-title {
  letter-spacing: 0.35em;
}

.footer {
  font-weight: 500;
}

.news-item--title {
  font-weight: 500;
}


@media (max-width: 1279px) {
  .footer {
    padding: 40px 20px 30px;
    font-size: 12px;
    line-height: 1.4;
  }

}
@media (max-width: 1279px) and (min-width: 950px) {
  .training-grid--item.i2 {
    width: 450px;
  }
  .training-summary, .training-grid--item .i1 {
    margin-top: 20px;
    font-size: 21px;
    line-height: 29px;
  }
  .training-item--summary {
    margin-top: 10px;
    font-size: 14px;
    line-height: 17px;
    padding-bottom: 20px;
  }
  .community-image {
    width: 375px;
  }
  .community-summary {
    max-width: 750px;
    font-size: 15px;
    line-height: 21px;
  }
  .research-title {
    font-size: 25px;
  }


}


@media (max-width: 1279px) and (min-width: 885px) {
  .intro-image.rightside img {
    max-width: 100%;
    height: auto;
    min-width: 300px; 
  } 
  .intro-grid--item.i1 {

    margin-right: 5px;
  }
  .intro-title {
    font-size: 38px;
    line-height: 42px;
  }
  .intro-summary {
    margin-top: 15px;
    font-size: 16px;
    line-height: 22px;
    margin-right: 15px; 
  }
  .intro-body {
    margin-right: 15px;
  }
  .intro-banner {
    margin-bottom: 20px;
  }
  .intro-banner img {
    max-width: 55%;
  }
  .toolbar-link {
    font-size: 14px;
  }
  .toolbar-link a, .toolbar-link span {
    padding: 8px 0;
  }
  .training-grid {
    padding-bottom: 85px;
  }
}
@media (max-width: 884px) and (min-width: 768px) {

  .intro-banner img {
    max-width: 30%;
  }
  .training-item--title {
    font-size: 14px;
  }
  .training-item--summary {
    font-size: 13px;
    line-height: 17px;
  }
}

@media (max-width: 767px) {
  .training-summary {
    margin-top: 20px;
    font-size: 16px;
    line-height: 21px;
  }
  .training-item--title {
    font-size: 15px;
  }
  .community-summary {
    max-width: 420px;
    font-size: 14px;
    line-height: 19px;
  }
}

@media (min-width: 1280px) {

  .training-grid {
    padding-bottom: 95px;
  }
  .training-item--summary {
    font-size: 16px; 
  }
  .intro-image.rightside img {
    max-width: 100%;
    height: auto;
    min-width: 400px; 
  } 

}

/*EXTRA - SUBPAGE*/
.editor-content a {
  font-weight: 700;
  letter-spacing: .25px;
}

.editor-content ul, .editor-content ol {
  margin-top: 40px;
}

.accordion .editor-content h3 {
  font-size: 23px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: -14px;
}


.accordion {
  margin-top: 45px;
}
.header-nav {
  font-size: 16.5px;
}

.editor-content p a {
  font-weight: 700;
}
.toolbar-social a {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.toolbar-social a:hover {
  color: white;
}
.footer {
  font-weight: 500;
}
.application-button a:hover {
  background-color: #3c572d;
  color: white;
}
@media (min-width: 1280px) {
  .subpage-grid {
    margin-top: 40px;
  }
  .editor-content ul, .editor-content ol {
    margin-left:50px;
    margin-top: 20px;
    margin-bottom:30px;
  }
  .editor-content li ul, .editor-content li ol {
    margin-bottom: 0;
  }
  .editor-table, .editor-figure {
    margin-top: 30px;
  }
  .editor-content hr {
    margin-top: 40px;
  }
}
@media (max-width: 1279px) {
  .footer {
    padding: 40px 20px 30px;
    font-size: 12px;
    line-height: 1.4;
  }

}

/*VECTOR BIOLOGY TWEAKS*/
@media (max-width: 767px) {


  .gallery-image.i2 {
    height: 100%;
  }

  .testimonial-content p {
    padding: 0 25px;
  }

  .testimonial-content footer {
    padding-left: 25px;
  }
}

/*ABOUT TWEAKS*/
.bio-info a {
  font-weight: 700;
  text-decoration: underline;
  color: #577F43;
}

.bio-info a:hover {
  color: #3C5729;
}
.bio-info hr {
  opacity: .25;
}


@media (min-width: 1280px) {
  .bio-title.location span {
    padding-left:50px; 
    padding-right:50px; 


  }
  .editor-content strong span {
    font-size: 24px;
    line-height: 1.5;
  }

  .bio-info {
    font-size: 19px;
    line-height: 1.3;
  }
  .bio-info p {
    margin-top: 5px;
  }

  .editor-content img {
    max-width: 100%;
    height: auto;
    margin-top:40px;
  }

  .bio-info p {
    margin-top: 5px;
  }
  .bio-title.location span {
    margin-left:-49px;
    margin-top:45px;
    margin-bottom: -25px;
    font-size: 17px;
    display: block;
    background-color: #f9f9f9;
    color: #AFCC8A;
  }
}

@media (max-width: 1279px) and (min-width: 768px) {
  .bio-title.location span {
    margin-left:-26px;
    margin-top:40px;
    margin-bottom: -10px;
    font-size: 17px;
    display: block;
    background-color: #f9f9f9;
    color: #AFCC8A;
  }
  .editor-content ul, .editor-content ol {
    margin-left:40px;
    margin-top: 20px;
    margin-bottom:30px;
  }

}

@media (max-width: 767px) {
  .bio-title.location span {
    margin-top:30px;
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
    background-color: #f9f9f9;
    color: #AFCC8A;
    text-align: center;
  }
  .editor-content ul, .editor-content ol {
    margin-left:30px;
    margin-top: 20px;
    margin-bottom:30px;
  }

}

.editor-content h3 {
  font-size: 23px;
  line-height: 1.5;
  margin-top: 20px;
}


.accordion {
  margin-top: 45px;
}
.header-nav {
  font-size: 16.5px;
}

.editor-content p a {
  font-weight: 700;
}
.toolbar-social a {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.toolbar-social a:hover {
  color: white;
}
.footer {
  font-weight: 500;
}
.application-button a:hover {
  background-color: #3c572d;
  color: white;
}
@media (min-width: 1280px) {
  .subpage-grid {
    margin-top: 40px;
  }
  .editor-content ul, .editor-content ol {
    margin-left:50px;
    margin-top: 20px;
    margin-bottom:30px;
  }
  .editor-content li ul, .editor-content li ol {
    margin-bottom: 0;
  }
  .editor-table, .editor-figure {
    margin-top: 30px;
  }
  .editor-content hr {
    margin-top: 40px;
  }
}
@media (max-width: 1279px) {
  .footer {
    padding: 40px 20px 30px;
    font-size: 12px;
    line-height: 1.4;
  }

}
.service .editor-content {
  margin-top:25px;
}
.editor-content img {
  width: 100%;
  height: auto;
  margin-top:25px;
  margin-bottom: 15px;
}
.video{
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px; height: 0; overflow: hidden;
}
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
iframe {
  width: 100%;
  height: auto;
  margin-top: 25px;
}
.editor-content li:last-child ul, .editor-content li:last-child ol {
  margin-top: 10px;
}
a.button {
  margin-top:18px;
}
p a.button:first-child {
  margin-top:0;
}

@media (max-width: 767px) {
  a.button {
    margin-top:0;
  }

}
.subpage-title.i3 em.name {
  font-style: italic;
}

.sidebar-picture p {
  width: 100%;
  text-align: right;
  color: #888888;
  font-size: .9em;
  padding: 15px;
  font-style: italic;
  letter-spacing: .25px;
}

@media (max-width: 767px) {
  .sidebar-graphic img, .sidebar-picture img {
    margin-top:35px;
  }
}
.editor-content a {
  overflow-wrap: break-word;
}
.editor-content li ul, .editor-content li ol {
  padding-top: 15px;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .research-image {
    height: auto;
    margin-bottom: 20px;
  }
}

a.button {
  margin-top: 25px;
  padding: 15px 25px;
  font-size: 14px;
  letter-spacing: 1.25px;
}

@media (min-width: 1100px) {
  .subpage-title.i3 {
    margin-right: 125px;
  }
}
.accordion-item--title strong {
  color: #a3c380;
}

.accordion-item.active .accordion-item--title strong {
  color: #fff;
}

.subpage-title.i3 em {
  line-height: 28px;
}

.accordion-item--title em {
  font-weight: 800;
}

/*ONLINE PROGRAMS TWEAKS*/
h4 strong {
  color: #3c572d;
}
span.webinar em {
  color: #808080;
  font-family: roboto;
  font-weight: bold;
  margin-top: 0;
  padding-top: 0;
  font-size: 18px;
  letter-spacing: .75px;
  line-height: 14px;
}
@media (max-width: 1279px) {
  span.webinar em {
    color: #808080;
    font-family: roboto;
    font-weight: bold;
    margin-top: 0;
    padding-top: 0;
    font-size: 15px;
    letter-spacing: .75px;
    line-height: 14px;
    opacity: .84;
  }
}

/* DARK GREEN STYLES*/
/*Light Green #AFCC8A
Dark Green #3c572d
Dark Green Hover #577F43*/

.header {
  background-color: #3c572d;
}
.header-toolbar a {
  color: #3c572d;
}
.header-toolbar a:hover {
 color: #577F43;
}

.training-item--button a {
  background-color: #3c572d;
}
.training-item--button a:hover {
  background-color: #AFCC8A;
  color: #3c572d;
}
.research-button a {
  background-color: #3c572d;
}
.research-button a:hover {
  background-color: #AFCC8A;
  color: #3c572d;
}
.news-item--link {
  color: #3c572d;
}
.header-nav a:hover {
  color: #7aa848;
}

.subnav {
  background-color: #AFCC8A;
}
.toolbar {
  background-color: #AFCC8A;
}

.intro-button a {
 color: #3c572d;
}
.intro-button a:hover {
  color: #577F43;
} 

.training-summary {
  color: #577F43;
}
.sidebar-bio--title {
  background-color: #3c572d;
}
.editor-content a {
  color: #577F43;
}
.bio-title span {
  background-color: #3c572d;
}
.bio-title.location span {
  color: #3c572d;
}
.sidebar-identification--title {
  background-color: #3c572d;
}
.application-button a {

  background-color: #3c572d;
}
.application-button a:hover {

  background-color: #AFCC8A;
  color: #3c572d;
}
.service-button a {
  background-color: #3c572d;
}
.service-button a:hover {
  background-color: #AFCC8A;
  color: #3c572d;
}
.subpage-title.i2 em {
  color: #577F43;
}
.button {
  background-color: #3c572d;
}
.button:hover {
  background-color: #AFCC8A;
  color: #3c572d !important;
}

.research-summary a {
  color: #3c572d;
}
.research-summary a:hover {
  color:  #577F43;
}

.header-menu a.i2 {
  color: #fff;
}

@media (max-width: 1279px) {
  .header-logo.active a {
    color: #fff;
  }
}

.nav{
 background-color: #3f5a2f;
}

.nav-link a:hover, .nav-social a:hover, .nav-link li.active > a  {
  color: #7aa848;
}

.editor-content p a {
  text-decoration: underline;
}


/*CONTACT TWEAKS*/

.contact-link--title {
  background-color: #3c572d;
}
.community-summary
.contact-form--info a, .community-summary a {
  color: #3c572d;
  text-decoration: underline;
  font-weight: bold;
}
.contact-form--info a:hover, .community-summary a:hover {
  color:  #577F43;
}

.contact-form--button input {
    background-color: #3c572d;


}
.contact-form--button input:hover {
    background-color: #AFCC8A;
  color: #3c572d;

}
.contact-link--title {
    background-color: #AFCC8A;
}

.editor-content h2 {
  font-size: 1.3em;
}

.editor-content a {
    text-decoration: underline;
}

.editor-content a.button {
  text-decoration: none;
}

.editor-content li a {
    text-decoration: none;
}

.hide {
  display: none;
}

.editor-content li:last-child ul, .editor-content li:last-child ol {
     margin-top: 0; 
}

.contact-link--title {
    background-color: #3c572d;
}
