/* -------------- COLORS -------------- */
/* ---------------------------- */
/* -------------- FRONT END -------------- */
/* ---------------------------- */
/* -------------- ADMIN -------------- */
/* ---------------------------- */
/* -------------- MIXINS -------------- */
/* ---------------------------- */
/* -------------- MEDIA QUERIES -------------- */
/* ---------------------------- */
/* -------------- SOCIAL ICONS -------------- */
/* -------------- HEADER -------------- */
header#top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
  z-index: 50;
}
header#top .container {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1400px) {
  header#top .container {
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
header#top .navbar {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0;
  transition: all 300ms ease-in-out;
  background-color: transparent !important;
  height: 80px;
  z-index: 50;
}
header#top .navbar .navbar-brand {
  padding: 5px;
  margin: 0;
}
header#top .navbar .navbar-brand img {
  max-width: auto;
  max-height: 60px;
}
header#top .navbar .navbar-toggler {
  padding: 0;
  border: 1px solid #70ad47;
  border-radius: 2px;
  border: none;
  width: 44px;
  height: 40px;
  margin-right: 20px;
}
header#top .navbar .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  height: 2px;
  width: 26px;
  line-height: 1px;
  margin-top: -2px;
  background-color: #70ad47;
  position: relative;
}
header#top .navbar .navbar-toggler .navbar-toggler-icon:before,
header#top .navbar .navbar-toggler .navbar-toggler-icon:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #70ad47;
}
header#top .navbar .navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}
header#top .navbar .navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}
header#top .navbar .navbar-toggler:focus {
  outline: none;
}
header#top .navbar .navbar-toggler:hover {
  background-color: #70ad47;
}
header#top .navbar .navbar-toggler:hover .navbar-toggler-icon,
header#top .navbar .navbar-toggler:hover .navbar-toggler-icon:before,
header#top .navbar .navbar-toggler:hover .navbar-toggler-icon:after {
  background-color: #ffffff;
}
header#top .navbar .navbar-toggler[aria-expanded="true"] {
  border-color: #70ad47;
  background-color: #70ad47;
}
header#top .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon,
header#top .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
header#top .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  background-color: #ffffff;
}
header#top .navbar #navbarMenu {
  justify-content: center;
  width: 300px;
  max-width: 300px;
  position: absolute;
  top: 80px;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
header#top .navbar .navbar-nav {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: transparent !important;
  height: 100%;
  position: relative;
}
header#top .navbar .navbar-nav li {
  list-style: none;
  display: block;
  height: auto;
  padding: 0;
}
header#top .navbar .navbar-nav a.nav-link.dropdown-toggle::after {
  display: none;
}
header#top .navbar .navbar-nav a.nav-link,
header#top .navbar .navbar-nav a.dropdown-item {
  font-size: 1.25rem;
  font-weight: normal;
  color: #55565b;
  text-align: right;
  text-transform: uppercase;
  line-height: 1rem;
  letter-spacing: 0;
  padding: 15px 20px;
  height: 100%;
  width: auto;
}
header#top .navbar .navbar-nav a.nav-link:hover,
header#top .navbar .navbar-nav a.dropdown-item:hover {
  background-color: #70ad47;
  color: #ffffff;
}
header#top .navbar .navbar-nav li.nohover > a.nav-link:hover {
  background-color: transparent;
  color: #55565b;
  cursor: default;
}
header#top .navbar .navbar-nav a.dropdown-item {
  font-weight: 500;
  text-transform: none;
}
header#top .navbar .navbar-nav .dropdown-menu {
  display: block;
  border: none;
  padding: 0;
  background-color: #f3f3f3;
}
header#top .navbar .navbar-nav li.topnav-trade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #55565b;
}
header#top .navbar .navbar-nav li.topnav-trade a.nav-link {
  color: #ffffff;
}
@media screen and (max-height: 950px) {
  header#top .navbar .navbar-nav li {
    padding: 0;
  }
  header#top .navbar .navbar-nav a.nav-link,
  header#top .navbar .navbar-nav a.dropdown-item {
    font-size: 1rem;
    padding: 10px 20px;
  }
  header#top .navbar .navbar-nav li.topnav-trade {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
@media screen and (max-height: 800px) {
  header#top .navbar .navbar-nav a.nav-link,
  header#top .navbar .navbar-nav a.dropdown-item {
    padding: 7px 20px;
  }
}
@media screen and (min-width: 501px) {
  header#top .navbar #navbarMenu {
    width: 500px;
    max-width: 500px;
  }
  header#top .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  header#top .navbar .navbar-nav li.nav-item a.nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #70ad47;
    text-align: left;
  }
  header#top .navbar .navbar-nav li.nav-item a.nav-link:hover {
    background-color: #70ad47;
    color: #ffffff;
  }
  header#top .navbar .navbar-nav li.nav-item a.dropdown-item {
    text-align: left;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #b0b0b0;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown > a {
    width: 180px;
    flex-shrink: 0;
    position: relative;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown > a:hover {
    background-color: transparent;
    color: #70ad47;
    cursor: default;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown > a:before,
  header#top .navbar .navbar-nav li.nav-item.dropdown > a:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #b0b0b0;
    border-right: 1px solid #b0b0b0;
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    top: 18px;
    right: 30px;
    transform: rotate(45deg);
    margin: 0;
    vertical-align: top;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown > a:after {
    right: 23px;
  }
  header#top .navbar .navbar-nav li.nav-item.dropdown > .dropdown-menu {
    width: 80%;
    margin-top: 0;
    background-color: transparent;
  }
  header#top .navbar .navbar-nav li.nav-item {
    width: 100%;
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social {
    width: 40px;
    height: 40px;
    margin: 5px 0 5px 20px;
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social a.nav-link {
    font-size: 0;
    background-color: #b0b0b0;
    border-radius: 100%;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social a.nav-link:hover {
    background-color: #70ad47;
    color: #ffffff;
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social.facebook a.nav-link {
    background-image: url(../images/contact-facebook.png);
    background-size: 36%;
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social.linkedin a.nav-link {
    background-image: url(../images/contact-linkedin.png);
  }
  header#top .navbar .navbar-nav li.nav-item.nav-social.twitter a.nav-link {
    background-image: url(../images/contact-twitter.png);
  }
}
@media screen and (max-width: 500px) {
  header#top .navbar #navbarMenu {
    width: 100%;
    max-width: 100%;
  }
}
/* ---------------------------- */
/* -------------- FOOTER -------------- */
#pagefooter {
  background-color: #55565b;
  padding: 20px 0;
  position: relative;
}
#pagefooter .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7vw;
  position: relative;
}
#pagefooter .container:before {
  content: '';
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.6;
}
#pagefooter a {
  color: #ffffff;
}
#pagefooter .footer-col-1 a img {
  max-height: 42px;
}
#pagefooter .footer-col-2 ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
#pagefooter .footer-col-2 ul li {
  list-style: none;
  padding: 6px 0;
  padding-top: 10px;
}
#pagefooter .footer-col-2 ul li a {
  font-size: 110%;
  text-transform: uppercase;
}
#pagefooter .footer-col-2 ul li > ul {
  display: block;
  padding-top: 40px;
}
#pagefooter .footer-col-2 ul li > ul li {
  padding: 6px 0;
}
#pagefooter .footer-col-2 ul li > ul a {
  font-size: 90%;
  text-transform: none;
}
#pagefooter .footer-col-3 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 5px;
}
#pagefooter .footer-col-3 a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}
#pagefooter .footer-col-3 a.linkedin {
  background-image: url(../images/social-linkedin.png);
}
#pagefooter .footer-col-3 a.facebook {
  background-image: url(../images/social-facebook.png);
}
#pagefooter .footer-col-3 a.twitter {
  background-image: url(../images/social-twitter.png);
}
#pagefooter .footer-col-3 a.email {
  background-image: url(../images/social-email.png);
}
#pagefooter .footer-col-3 a.instagram {
  background-image: url(../images/social-instagram.png);
}
#pagefooter .footer-col-3 a.youtube {
  background-image: url(../images/social-youtube.png);
}
#pagefooter .footer-col-3 a:hover {
  background-color: #70ad47;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  #pagefooter .container {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  #pagefooter .container:before {
    display: none;
  }
  #pagefooter .footer-col-1 {
    order: 1;
  }
  #pagefooter .footer-col-2 {
    order: 3;
    width: 100%;
  }
  #pagefooter .footer-col-3 {
    order: 2;
  }
  #pagefooter .footer-col-2 ul li {
    padding-top: 6px;
  }
  #pagefooter .footer-col-2 ul li > ul {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 600px) {
  #pagefooter .container {
    column-gap: 40px;
    row-gap: 20px;
  }
  #pagefooter .footer-col-2 {
    order: 2;
  }
  #pagefooter .footer-col-3 {
    order: 3;
  }
  #pagefooter .footer-col-2 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #pagefooter .footer-col-2 ul li {
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
  #pagefooter .footer-col-2 ul li > ul {
    padding-top: 0;
  }
}
#backtotop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #55565b;
  opacity: 0.6;
  z-index: 100;
}
#backtotop:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #ffffff;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 18px;
  left: 14px;
  transform: rotate(-45deg);
}
#backtotop:hover {
  background-color: #70ad47;
  opacity: 1;
  text-decoration: none;
}
/* ---------------------------- */
/* -------------- COMMON -------------- */
.page-title h1 {
  text-align: center;
}
.testimonials {
  position: relative;
}
.testimonials .container {
  max-width: 900px;
}
.testimonials .item {
  display: flex;
}
.testimonials .left {
  width: 50%;
  padding-right: 20px;
}
.testimonials .right {
  width: 50%;
  background-color: #f3f3f3;
  padding: 60px 20px 20px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.testimonials .right:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  left: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: contain;
  background-image: url(../images/quote.png);
}
.testimonials .photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 100%;
  border: 1px solid #b0b0b0;
}
.testimonials .source {
  padding-top: 20px;
  text-transform: uppercase;
}
.testimonials .source span {
  display: block;
}
.testimonials .source span:first-child {
  font-size: 1.25rem;
  font-weight: bold;
  color: #70ad47;
}
.testimonials .unslider-nav {
  padding-right: 20px;
}
.testimonials .unslider-nav ol {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .unslider-nav ol li {
  font-size: 0;
  text-indent: -4000px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #c2c2c2;
  margin: 10px 5px 0 5px;
}
.testimonials .unslider-nav ol li:hover {
  background-color: #70ad47;
  cursor: pointer;
}
.testimonials .unslider-nav ol li.unslider-active {
  background-color: #70ad47;
}
.testimonials .unslider-nav ol li:only-child {
  display: none;
}
@media only screen and (max-width: 600px) {
  .testimonials .left {
    display: none;
  }
  .testimonials .right {
    width: 100%;
  }
  .testimonials .unslider-nav {
    padding-right: 0;
  }
}
/* ---------------------------- */
/* -------------- HOMEPAGE -------------- */
#hp-why {
  padding: 40px 0;
}
#hp-why h2 {
  padding-top: 0;
}
#hp-why .text {
  text-align: center;
}
#hp-projects {
  padding: 0 0 40px 0;
}
#hp-projects .top {
  border: 1px solid #b0b0b0;
  padding: 20px 20px 24px 20px;
}
#hp-projects h2 {
  padding-top: 0;
  padding-bottom: 10px;
}
#hp-projects .tagline {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}
#hp-projects .grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  position: relative;
}
@media only screen and (max-width: 500px) {
  #hp-projects .grid {
    gap: 10px;
  }
}
#hp-projects .grid a {
  display: block;
  width: 32%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#hp-projects .grid a h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translatex(-50%) translatey(-50%);
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
  z-index: 6;
}
#hp-projects .grid a:before {
  content: '';
  display: block;
  padding-top: 66%;
  position: relative;
  z-index: 4;
}
#hp-projects .grid a:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  z-index: 2;
  background-color: #4a4a52;
  opacity: 0.6;
  z-index: 4;
  transition: all 300ms ease-in-out;
}
#hp-projects .grid a:hover:after {
  background-color: #70ad47;
  opacity: 0.8;
}
@media screen and (max-width: 1100px) {
  #hp-projects .grid a {
    width: 31.5%;
  }
}
@media only screen and (max-width: 991px) {
  #hp-projects .grid a h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 800px) {
  #hp-projects .grid a {
    width: 30.6%;
  }
  #hp-projects .grid a h3 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #hp-projects .grid a {
    width: 47%;
  }
  #hp-projects .grid a h3 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 500px) {
  #hp-projects .grid a h3 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 400px) {
  #hp-projects .grid a h3 {
    font-size: 0.9rem;
  }
}
#hp-about {
  padding: 0 0 40px 0;
}
#hp-about .inner {
  display: flex;
  align-items: stretch;
}
#hp-about .inner .left {
  width: 40%;
  max-width: 500px;
  background-color: #4a4a52;
  padding: 25px 30px;
}
#hp-about .inner .left h2 {
  font-size: 1.5rem;
  text-align: left;
  letter-spacing: 1px;
  padding-top: 0;
}
#hp-about .inner .left .text {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 150%;
  opacity: 0.8;
}
#hp-about .inner .right {
  width: 80%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
  padding: 20px;
}
#hp-about .inner .right .cta a {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  background-color: #70ad47;
  border: 1px solid #70ad47;
  line-height: 20px;
  padding: 6px 12px;
}
#hp-about .inner .right .cta a:hover {
  background-color: #4a4a52;
  border-color: #4a4a52;
  text-decoration: none;
}
#hp-about .inner .right .cta a.btn-white {
  color: #70ad47;
  border-color: #ffffff;
  background-color: #ffffff;
}
#hp-about .inner .right .cta a.btn-white:hover {
  color: #ffffff;
  background-color: #70ad47;
  border-color: #70ad47;
}
@media only screen and (max-width: 991px) {
  #hp-about .inner .left {
    width: 50%;
    max-width: 50%;
  }
  #hp-about .inner .right {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #hp-about .inner {
    flex-wrap: wrap;
  }
  #hp-about .inner .left {
    width: 100%;
    max-width: 100%;
  }
  #hp-about .inner .right {
    width: 100%;
    height: 400px;
  }
}
/* ---------------------------- */
/* -------------- SINGLE PROJECT -------------- */
.page-project-single .page-title h1 {
  font-size: 1.75rem;
  text-align: left;
  text-transform: none;
}
.project-top .container {
  padding: 0;
}
.project-content {
  padding: 40px 0;
}
.project-content .container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 40px;
}
.project-content .left {
  width: 30%;
  min-width: 300px;
}
.project-content .main {
  width: 90%;
}
@media only screen and (max-width: 600px) {
  .project-content .container {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .project-content .left {
    width: 100%;
    order: 2;
  }
  .project-content .main {
    width: 100%;
    order: 1;
  }
}
.project-content ul.properties {
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  padding: 20px;
}
.project-content ul.properties li {
  list-style: none;
}
.project-content ul.properties li {
  padding: 5px 0;
}
.project-content ul.properties li span {
  opacity: 0.8;
}
.project-content ul.social {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 10px;
  padding-top: 10px;
}
.project-content ul.social li {
  list-style: none;
}
.project-content ul.social li a {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #55565b;
}
.project-content .main h2 {
  font-size: 1.125rem;
  color: #55565b;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 0 10px 0;
}
.project-content ul.prev_next {
  margin: 0;
  padding: 0;
  height: 24px;
  margin-top: 15px;
  padding: 0 15px;
  border-top: 1px solid #b0b0b0;
}
.project-content ul.prev_next li {
  list-style: none;
}
.project-content ul.prev_next li {
  padding: 5px 0 0 0;
}
.project-content ul.prev_next li:first-child {
  float: left;
}
.project-content ul.prev_next li:last-child {
  float: right;
}
/* ---------------------------- */
/* -------------- PROJECTS -------------- */
.page-projects .page-title,
.page-project-category .page-title {
  background-color: #f3f3f3;
}
#projects-categories {
  margin: 20px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
#projects-categories li {
  list-style: none;
  padding: 5px;
}
#projects-categories li a {
  display: block;
  padding: 4px 16px 1px 16px;
  color: #55565b;
  text-transform: uppercase;
}
#projects-categories li a:hover {
  color: #70ad47;
  text-decoration: none;
}
#projects-categories li a.active {
  font-weight: bold;
  color: #55565b;
  border-bottom: 2px solid #b0b0b0;
}
#projects-categories li a.active:hover {
  color: #55565b;
  cursor: default;
}
@media only screen and (max-width: 767px) {
  #projects-categories li {
    padding: 0;
  }
}
#projects-grid-wrapper {
  padding: 10px 5px 20px 5px;
}
#projects-grid-wrapper .container {
  padding: 0;
}
#projects-grid {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
#projects-grid .item {
  width: 33.33%;
  padding: 15px;
}
#projects-grid .item a {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 75%;
}
#projects-grid .item a footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 10px 12px;
}
#projects-grid .item a footer:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  z-index: 6;
  transition: all 300ms ease-in-out;
}
#projects-grid .item a footer h2 {
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
  line-height: 110%;
  padding: 0 0 4px 0;
  position: relative;
  z-index: 10;
}
#projects-grid .item a footer p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 110%;
  padding: 0;
  position: relative;
  opacity: 0.6;
  z-index: 10;
}
#projects-grid .item a footer p span {
  display: inline-block;
}
#projects-grid .item a footer p span:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #ffffff;
}
#projects-grid .item a:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #70ad47;
  opacity: 0.3;
  z-index: 4;
  transition: all 300ms ease-in-out;
}
#projects-grid .item a:hover {
  box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
}
#projects-grid .item a:hover:before {
  height: 100%;
}
#projects-grid .item a:hover footer:after {
  background-color: #70ad47;
  opacity: 1;
}
@media only screen and (max-width: 1240px) {
  #projects-grid .item {
    width: 50%;
  }
  #projects-grid .item a {
    padding-bottom: 50%;
  }
}
@media only screen and (max-width: 991px) {
  #projects-grid .item {
    padding: 10px;
  }
  #projects-grid .item a {
    padding-bottom: 66.66%;
  }
}
@media only screen and (max-width: 600px) {
  #projects-grid .item {
    width: 100%;
  }
  #projects-grid .item a {
    padding-bottom: 50%;
  }
}
@media only screen and (max-width: 500px) {
  #projects-grid .item a {
    padding-bottom: 66.66%;
  }
}
/* ---------------------------- */
/* -------------- ABOUT -------------- */
#about-top {
  font-size: 1.125rem;
  text-align: center;
  line-height: 160%;
}
#about-expertise {
  padding-top: 40px;
}
#about-expertise .banner {
  display: flex;
  align-items: stretch;
}
#about-expertise .banner .photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80%;
}
#about-expertise .banner .text {
  width: 400px;
  flex-shrink: 0;
  background-color: #4a4a52;
  padding: 0 30px;
  color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  min-height: 500px;
}
#about-expertise .banner .text .item h2 {
  font-size: 1.5rem;
  text-align: left;
  padding: 0 0 5px 0;
}
#about-expertise .banner .text .item p {
  font-size: 1.125rem;
  line-height: 160%;
}
@media only screen and (max-width: 991px) {
  #about-expertise .banner .text,
  #about-expertise .banner .photo {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #about-expertise .banner .text {
    width: 50%;
    min-height: 400px;
  }
  #about-expertise .banner .text .item h2 {
    font-size: 1.25rem;
  }
  #about-expertise .banner .text .item p {
    font-size: 1rem;
    line-height: 140%;
  }
}
@media only screen and (max-width: 600px) {
  #about-expertise .banner {
    flex-wrap: wrap;
  }
  #about-expertise .banner .text,
  #about-expertise .banner .photo {
    width: 100%;
    min-height: 0;
  }
  #about-expertise .banner .photo {
    height: 300px;
  }
  #about-expertise .banner .text .item {
    padding: 30px 0;
  }
  #about-expertise .banner .text .item:last-child {
    padding-top: 0;
  }
}
#about-expertise .data {
  background-color: #f3f3f3;
  padding: 40px 30px;
}
#about-expertise .data h2 {
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.5rem;
  padding: 0;
  position: relative;
}
#about-expertise .data h2 span {
  display: inline-block;
  background-color: #f3f3f3;
  line-height: 1.5rem;
  padding-right: 10px;
  position: relative;
  z-index: 4;
}
#about-expertise .data h2:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 3px;
  background-color: #b0b0b0;
  z-index: 2;
}
#about-expertise .data ul {
  margin: 15px 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto auto auto auto;
  column-gap: 20px;
}
#about-expertise .data ul li {
  padding: 6px 0;
  margin-left: 25px;
}
@media only screen and (max-width: 991px) {
  #about-expertise .data ul {
    grid-template-columns: auto auto;
  }
}
@media only screen and (max-width: 500px) {
  #about-expertise .data ul {
    grid-template-columns: auto;
  }
}
#about-timeline {
  padding: 40px 0;
}
#about-timeline h2 {
  padding-top: 0;
  padding-bottom: 20px;
}
#about-timeline #timeline-carousel {
  padding: 0 40px;
}
#about-timeline .item {
  padding: 0 20px;
}
#about-timeline .item .photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#about-timeline .item .photo:before {
  content: '';
  display: block;
  padding-top: 50%;
}
#about-timeline .item p.date {
  position: relative;
  font-size: 1.75rem;
  font-weight: bold;
  color: #70ad47;
  letter-spacing: 2px;
  line-height: 30px;
  padding: 0;
  margin-top: 16px;
}
#about-timeline .item p.date span {
  display: inline-block;
  background-color: #ffffff;
  padding-right: 10px;
  position: relative;
  z-index: 4;
}
#about-timeline .item p.date:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #b0b0b0;
  z-index: 2;
}
#about-timeline .item h3 {
  font-size: 1.125rem;
  color: #55565b;
  text-transform: uppercase;
  padding: 16px 0 12px 0;
}
#about-timeline .item .text p:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 600px) {
  #about-timeline .container {
    padding: 0;
  }
  #about-timeline .item {
    padding: 0 5px;
  }
  #about-timeline .item .text {
    max-height: 180px;
    -webkit-line-clamp: 8;
  }
}
#about-timeline .slick-prev,
#about-timeline .slick-next {
  width: 30px;
  height: 30px;
  background-color: #b0b0b0;
}
#about-timeline .slick-prev:before,
#about-timeline .slick-next:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
  opacity: 1;
}
#about-timeline .slick-prev.slick-disabled,
#about-timeline .slick-next.slick-disabled {
  opacity: 0.4;
  cursor: default;
}
#about-timeline .slick-prev:not(.slick-disabled):hover,
#about-timeline .slick-next:not(.slick-disabled):hover {
  background-color: #70ad47;
}
#about-timeline .slick-prev {
  left: 0;
}
#about-timeline .slick-prev:before {
  transform: rotate(-135deg);
  left: 12px;
}
#about-timeline .slick-next {
  right: 0;
}
#about-timeline .slick-next:before {
  left: 7px;
}
/* ---------------------------- */
/* -------------- CULTURE -------------- */
#culture-top {
  font-size: 1.125rem;
  text-align: center;
  line-height: 160%;
}
.page-culture .testimonials {
  padding: 40px 0 20px 0;
}
#culture-boxes {
  padding: 40px 0;
}
#culture-boxes .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
#culture-boxes .container .item {
  padding-top: 66%;
  position: relative;
}
#culture-boxes .container .item .inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 100%;
  text-align: center;
  padding: 10px;
}
#culture-boxes .container .item .inner strong {
  font-size: 1.75rem;
  text-transform: uppercase;
}
#culture-boxes .container .item[data-type="photo"] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#culture-boxes .container .item[data-type="text"] {
  background-color: #f3f3f3;
}
@media only screen and (max-width: 1240px) {
  #culture-boxes .container .item {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #culture-boxes .container .item .inner strong {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  #culture-boxes .container {
    grid-template-columns: 1fr 1fr;
  }
}
#culture-charities {
  padding-top: 20px;
}
#culture-charities .container {
  padding: 30px 0 20px 0;
  border: 1px solid #b0b0b0;
}
#culture-charities h2 {
  padding: 0 0 30px;
}
#culture-charities .logos .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#culture-charities .logos img {
  max-height: 90%;
}
#culture-join {
  padding: 40px 0;
}
#culture-join .container {
  padding: 0;
}
#culture-join .join {
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#culture-join .inner {
  position: absolute;
  top: 0;
  left: 15%;
  bottom: 0;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#culture-join .inner:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: 2;
}
#culture-join .inner h2 {
  text-align: left;
  padding: 0;
  position: relative;
  z-index: 4;
}
#culture-join .inner h2 span {
  font-size: 75%;
  color: #55565b;
  text-transform: none;
  display: block;
}
#culture-join .inner .cta {
  padding-top: 20px;
  position: relative;
  z-index: 4;
}
#culture-join .inner .cta a {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  background-color: #70ad47;
  border: 1px solid #70ad47;
  line-height: 20px;
  padding: 6px 12px;
  background-color: #4a4a52;
  border-color: #4a4a52;
}
#culture-join .inner .cta a:hover {
  background-color: #4a4a52;
  border-color: #4a4a52;
  text-decoration: none;
}
#culture-join .inner .cta a.btn-white {
  color: #70ad47;
  border-color: #ffffff;
  background-color: #ffffff;
}
#culture-join .inner .cta a.btn-white:hover {
  color: #ffffff;
  background-color: #70ad47;
  border-color: #70ad47;
}
#culture-join .inner .cta a:hover {
  color: #ffffff;
  background-color: #70ad47;
  border-color: #70ad47;
}
@media only screen and (max-width: 991px) {
  #culture-join .inner {
    left: 10%;
  }
}
@media only screen and (max-width: 767px) {
  #culture-join .join {
    height: 300px;
  }
  #culture-join .inner {
    left: 0;
    padding: 20px;
  }
}
/* ---------------------------- */
/* -------------- CONTACT -------------- */
#contact-top .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}
#contact-top .box {
  width: 33%;
}
#contact-top .box img {
  height: 60px;
}
#contact-top .box h2 {
  font-size: 1.5rem;
  color: #55565b;
  padding: 16px 0 8px 0;
}
#contact-top .box p {
  padding: 0;
}
#contact-top .box p span {
  display: block;
}
@media only screen and (max-width: 991px) {
  #contact-top .box p {
    font-size: 90%;
  }
}
@media screen and (max-width: 700px) {
  #contact-top .container {
    flex-wrap: wrap;
    row-gap: 40px;
  }
  #contact-top .box {
    width: 100%;
  }
  #contact-top .box p {
    font-size: 100%;
  }
}
#contact-form {
  background-color: #f3f3f3;
  margin-top: 50px;
  padding: 30px 0;
}
#contact-form textarea {
  height: 360px;
}
/* ---------------------------- */
/* -------------- SAFETY -------------- */
#safety-top .banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#safety-top .banner:before {
  content: '';
  display: block;
  padding-top: 50%;
}
#safety-top .banner h1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  color: #ffffff;
  padding: 0;
  z-index: 4;
}
#safety-top .title {
  border: 1px solid #b0b0b0;
  padding: 30px 20px;
  margin-top: 40px;
}
#safety-top .title h2 {
  text-align: left;
  padding: 0 0 10px 0;
}
#safety-top .title p {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}
#safety-faq {
  padding: 40px 0;
}
#safety-faq .container {
  border-bottom: 1px solid #b0b0b0;
}
#safety-faq .item {
  border-top: 1px solid #b0b0b0;
  padding-left: 10px;
  padding-right: 10px;
}
#safety-faq .item h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #55565b;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  padding: 20px 20px 18px 0;
  position: relative;
  transition: all 100ms ease-in-out;
}
#safety-faq .item h2 i {
  display: block;
  position: absolute;
  top: 46%;
  right: 6px;
  width: 16px;
  height: 16px;
  transform: translatey(-50%);
}
#safety-faq .item h2 i:before,
#safety-faq .item h2 i:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #b0b0b0;
}
#safety-faq .item h2 i:after {
  transform: rotate(90deg);
}
#safety-faq .item h2:hover {
  color: #70ad47;
  cursor: pointer;
}
#safety-faq .item h2:hover i:before,
#safety-faq .item h2:hover i:after {
  background-color: #70ad47;
}
#safety-faq .item .data {
  height: 0;
  overflow: hidden;
  opacity: 0.6;
  transition: all 100ms ease-in-out;
}
#safety-faq .item .data p {
  padding-top: 0;
}
#safety-faq .item.active {
  padding-bottom: 12px;
}
#safety-faq .item.active h2 i:after {
  display: none;
}
/* ---------------------------- */
/* -------------- TESTIMONIALS -------------- */
.page-testimonials .page-title {
  padding-bottom: 40px;
}
.page-testimonials .page-title h1 {
  padding-bottom: 0;
}
.page-testimonials .page-title p {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-testimonials .testimonials {
  padding-bottom: 40px;
}
/* ---------------------------- */
/* -------------- LEADERSHIP -------------- */
#leadership-top {
  text-align: center;
}
#leadership-people {
  padding-top: 10px;
}
#leadership-people .container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
#leadership-people .person {
  width: 33.33%;
  padding: 20px;
}
#leadership-people .person a.photo {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid #70ad47;
  position: relative;
}
#leadership-people .person a.photo:before {
  content: '';
  display: block;
  padding-top: 75%;
}
#leadership-people .person a.photo:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #70ad47;
  opacity: 0.4;
  z-index: 2;
  transition: all 300ms ease-in-out;
}
#leadership-people .person a.photo:hover:after {
  height: 100%;
}
#leadership-people .person header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 10px 0 0 0;
}
#leadership-people .person h2 {
  font-size: 1.125rem;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}
#leadership-people .person .contact {
  display: flex;
  column-gap: 10px;
}
#leadership-people .person .contact a {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #70ad47;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 70%;
}
#leadership-people .person .contact a.email {
  background-image: url(../images/contact-email.png);
}
#leadership-people .person .contact a.linkedin {
  background-image: url(../images/contact-linkedin.png);
}
#leadership-people .person .contact a.twitter {
  background-image: url(../images/contact-twitter.png);
}
#leadership-people .person .contact a.facebook {
  background-image: url(../images/contact-facebook.png);
  background-size: 40%;
}
#leadership-people .person .contact a.instagram {
  background-image: url(../images/contact-instagram.png);
}
#leadership-people .person .contact a.phone {
  background-image: url(../images/contact-phone.png);
}
#leadership-people .person .contact a:hover {
  background-color: #55565b;
}
#leadership-people .person > p {
  padding: 2px 0 0 0;
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  #leadership-people .person {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #leadership-people .person {
    padding: 15px;
  }
  #leadership-people .person h2 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #leadership-people .person .contact {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  #leadership-people .person {
    width: 100%;
    padding: 10px 5px;
  }
}
#leadership-bottom {
  padding: 30px 0 40px 0;
  text-align: center;
}
#leadership-bottom img {
  border: 1px solid #70ad47;
}
/* ---------------------------- */
/* -------------- SINGLE PERSON -------------- */
.page-people-single .page-title {
  padding: 30px 0 10px 0;
}
.page-people-single .page-title .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-people-single .page-title h1 {
  font-size: 2rem;
  padding: 0;
}
.page-people-single .page-title .back {
  width: 100px;
  display: flex;
  justify-content: flex-end;
}
.page-people-single .page-title .back a {
  display: inline-block;
  width: auto;
  background-color: #ffffff;
  border: 1px solid #70ad47;
  font-size: 1rem;
  font-weight: bold;
  color: #70ad47;
  text-transform: uppercase;
  line-height: 100%;
  padding: 7px 20px 8px 20px;
}
.page-people-single .page-title .back a:hover {
  background-color: #70ad47;
  color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 600px) {
  .page-people-single .page-title .back {
    width: auto;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .page-people-single .page-title h1 {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .page-people-single .page-title .back {
    width: auto;
  }
  .page-people-single .page-title .back a {
    padding: 3px 8px 4px 8px;
  }
}
.person-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 30px;
  padding-bottom: 40px;
}
.person-wrapper .person-side {
  width: 40%;
  max-width: 500px;
  min-width: 150px;
}
.person-wrapper .person-main {
  width: 60%;
  flex-grow: 2;
}
.person-wrapper .contact {
  display: flex;
  column-gap: 10px;
  padding-top: 20px;
}
.person-wrapper .contact a {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #70ad47;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 70%;
}
.person-wrapper .contact a.email {
  background-image: url(../images/contact-email.png);
}
.person-wrapper .contact a.linkedin {
  background-image: url(../images/contact-linkedin.png);
}
.person-wrapper .contact a.twitter {
  background-image: url(../images/contact-twitter.png);
}
.person-wrapper .contact a.facebook {
  background-image: url(../images/contact-facebook.png);
  background-size: 40%;
}
.person-wrapper .contact a.instagram {
  background-image: url(../images/contact-instagram.png);
}
.person-wrapper .contact a.phone {
  background-image: url(../images/contact-phone.png);
}
.person-wrapper .contact a:hover {
  background-color: #55565b;
}
@media only screen and (max-width: 600px) {
  .person-wrapper {
    column-gap: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .person-wrapper {
    column-gap: 0;
    row-gap: 10px;
    flex-wrap: wrap;
  }
  .person-wrapper .person-side {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .person-wrapper .person-side img {
    max-width: 400px;
    margin-top: 0;
  }
  .person-wrapper .person-main {
    width: 100%;
  }
}
.person-side img {
  width: 100%;
  height: auto;
  border: 1px solid #b0b0b0;
  margin-top: 10px;
}
/* ---------------------------- */
/* -------------- NEWS -------------- */
.page-news .page-title,
.page-post-category .page-title {
  background-color: #f3f3f3;
}
#posts-categories {
  margin: 20px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
#posts-categories li {
  list-style: none;
  padding: 5px;
}
#posts-categories li a {
  display: block;
  padding: 4px 16px 1px 16px;
  color: #55565b;
  text-transform: uppercase;
}
#posts-categories li a:hover {
  color: #70ad47;
  text-decoration: none;
}
#posts-categories li a.active {
  font-weight: bold;
  color: #55565b;
  border-bottom: 2px solid #b0b0b0;
}
#posts-categories li a.active:hover {
  color: #55565b;
  cursor: default;
}
@media only screen and (max-width: 767px) {
  #posts-categories li {
    padding: 0;
  }
}
#posts-grid-wrapper {
  padding: 10px 5px 20px 5px;
}
@media only screen and (max-width: 991px) {
  #posts-grid-wrapper .container {
    padding: 0;
  }
}
#posts-grid {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
#posts-grid .item {
  width: 33.33%;
  padding: 15px;
}
#posts-grid .item a {
  display: block;
  height: 100%;
  border: 1px solid #b0b0b0;
  position: relative;
}
#posts-grid .item a .photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#posts-grid .item a .photo:before {
  content: '';
  display: block;
  padding-top: 50%;
}
#posts-grid .item a .photo:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  z-index: 2;
  background-color: #70ad47;
  opacity: 0;
  z-index: 6;
  transition: all 300ms ease-in-out;
}
#posts-grid .item a h2 {
  font-size: 1.125rem;
  color: #55565b;
  text-align: left;
  letter-spacing: 0;
  padding: 18px 14px 10px 14px;
}
#posts-grid .item a p.excerpt {
  color: #55565b;
  padding: 0 14px 14px 14px;
}
#posts-grid .item a p.excerpt i {
  font-style: normal;
  color: #70ad47;
}
#posts-grid .item a:hover {
  text-decoration: none;
}
#posts-grid .item a:hover .photo:after {
  opacity: 0.5;
}
#posts-grid .item a:hover p.excerpt {
  color: #70ad47;
}
@media only screen and (max-width: 1240px) {
  #posts-grid .item {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  #posts-grid .item {
    padding: 10px;
  }
}
@media only screen and (max-width: 600px) {
  #posts-grid .item {
    width: 100%;
  }
}
/* ---------------------------- */
/* -------------- SINGLE POST -------------- */
.page-news-single .page-title {
  padding-bottom: 20px;
}
.page-news-single .page-title h1 {
  font-size: 2rem;
  color: #55565b;
  text-align: left;
  text-transform: none;
  letter-spacing: 1px;
  padding-bottom: 5px;
}
.page-news-single .page-title .data {
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
  padding-right: 5px;
}
#news-single-content .image {
  padding-bottom: 20px;
}
#news-single-content .image img {
  width: 100%;
}
#news-single-content .content p:first-child {
  padding-top: 0;
}
#news-single-share ul {
  margin: 0;
  padding: 10px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 10px;
}
#news-single-share ul li {
  list-style: none;
  padding: 0;
}
#news-single-share ul li a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #70ad47;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 54%;
}
#news-single-share ul li a.linkedin {
  background-image: url(../images/contact-linkedin.png);
}
#news-single-share ul li a.facebook {
  background-image: url(../images/contact-facebook.png);
  background-size: 34%;
}
#news-single-share ul li a.twitter {
  background-image: url(../images/contact-twitter.png);
}
#news-single-share ul li a:hover {
  background-color: #55565b;
}
#news-single-ctas {
  margin-top: 20px;
  border-top: 1px solid #b0b0b0;
}
#news-single-ctas .ctas {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  text-transform: uppercase;
  position: relative;
}
#news-single-ctas .ctas span {
  opacity: 0.4;
}
#news-single-ctas .ctas a {
  opacity: 1;
}
#news-single-ctas .ctas .prev_next {
  position: relative;
}
#news-single-ctas .ctas .prev_next:before {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: inline-block;
  height: 9px;
  width: 9px;
  position: absolute;
  top: 7px;
  transform: rotate(-45deg);
  vertical-align: top;
}
#news-single-ctas .ctas .prev_next.prev {
  padding-left: 16px;
}
#news-single-ctas .ctas .prev_next.prev:before {
  left: 2px;
  transform: rotate(-135deg);
}
#news-single-ctas .ctas .prev_next.next {
  padding-right: 16px;
}
#news-single-ctas .ctas .prev_next.next:before {
  left: auto;
  right: 2px;
  transform: rotate(45deg);
}
/* ---------------------------- */
/* -------------- PAGE -------------- */
#careers-top {
  padding: 0 0 25px 0;
}
#careers-top img {
  width: 100%;
}
#careers-top h1 {
  font-size: 2rem;
  letter-spacing: 0;
  padding: 25px 0 10px 0;
}
#careers-top .content {
  text-align: center;
}
#careers-jobs {
  background-color: #f3f3f3;
  padding: 40px 0;
}
#careers-jobs .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
#careers-jobs a {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 140%;
  padding: 20px 10px 20px 10px;
  background-color: #ffffff;
  border-left: 6px solid #70ad47;
  color: #55565b;
  transition: all 300ms ease-in-out;
}
#careers-jobs a span {
  display: block;
  width: 100%;
}
#careers-jobs a span:first-child {
  font-weight: bold;
}
#careers-jobs a span:last-child {
  font-size: 90%;
}
#careers-jobs a:hover {
  text-decoration: none;
  background-color: #70ad47;
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  #careers-jobs {
    padding: 20px 0;
  }
  #careers-jobs .container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #careers-jobs .container {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------- */
/* -------------- PAGE -------------- */
body.page-job-single .page-title {
  padding-bottom: 20px;
  position: relative;
}
body.page-job-single .page-title .container {
  position: relative;
}
body.page-job-single .page-title h1 {
  font-size: 2rem;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 5px;
  padding-right: 30px;
}
body.page-job-single .page-title .data {
  font-size: 1.125rem;
  opacity: 0.6;
}
body.page-job-single .page-title .back {
  position: absolute;
  top: 34px;
  right: 15px;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
}
body.page-job-single .page-title .back:before,
body.page-job-single .page-title .back:after {
  content: '';
  display: inline-block;
  border-top: 1px solid #70ad47;
  border-right: 1px solid #70ad47;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) translateY(-50%) rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
}
body.page-job-single .page-title .back:after {
  margin-left: 6px;
}
body.page-job-single .page-title .back:hover {
  background-color: #70ad47;
  text-decoration: none;
}
body.page-job-single .page-title .back:hover:before,
body.page-job-single .page-title .back:hover:after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  body.page-job-single .page-title h1 {
    font-size: 1.75rem;
  }
  body.page-job-single .page-title .data {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 500px) {
  body.page-job-single .page-title h1 {
    font-size: 1.25rem;
  }
}
#job-wrapper {
  padding-bottom: 40px;
}
#job-wrapper .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  #job-wrapper .container {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #job-wrapper .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* ---------------------------- */
/* -------------- PAGE -------------- */
/* ---------------------------- */
/* -------------- PAGE -------------- */
/* ---------------------------- */
