* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-overflow-scrolling: touch;
}

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

html, body {
  width: 100%;
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 62.5%;
  height: 100%;
}

@media (max-width: 767px) {
  html {
    font-size: 55%;
  }
}

body {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "arimoregular", Helvetica;
  line-height: 1.2;
  color: #372e2c;
  background: #ffffff;
}

@media (max-width: 991px) {
  #wpadminbar {
    margin-top: -46px;
  }
}

/* Fonts */
@font-face {
  font-family: 'arimobold';
  src: url("../fonts/arimo-bold-webfont.woff2") format("woff2"), url("../fonts/arimo-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'arimoregular';
  src: url("../fonts/arimo-regular-webfont.woff2") format("woff2"), url("../fonts/arimo-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Helpers */
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* Containers */
.container {
  position: relative;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.full-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.col {
  position: relative;
  display: inline-block;
}

.col.col-2 {
  width: 48%;
}

@media (max-width: 991px) {
  .col.col-2 {
    width: 100%;
    margin-top: 30px;
  }
}

.col.col-3 {
  width: 31%;
}

@media (max-width: 991px) {
  .col.col-3 {
    width: 100%;
    margin-top: 30px;
  }
}

.col.col-4 {
  width: 23%;
}

@media (max-width: 991px) {
  .col.col-4 {
    width: 100%;
    margin-top: 30px;
  }
}

.col.col-3-4 {
  width: 73%;
}

@media (max-width: 991px) {
  .col.col-3-4 {
    width: 100%;
    margin-top: 30px;
  }
}

.col.col-2-3 {
  width: 62%;
}

@media (max-width: 991px) {
  .col.col-2-3 {
    width: 100%;
    margin-top: 30px;
  }
}

#wrap {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Buttons */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  text-transform: uppercase;
  font-family: "arimobold", Helvetica;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn.btn-primary {
  background-color: #db6015;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #eba900;
}

.btn.btn-primary:disabled {
  background-color: #db601570;
}

.btn.btn-secondary {
  background-color: #eba900;
  color: #ffffff;
}

.btn.btn-secondary:hover {
  background-color: #db6015;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Text */
h1, h2, h3, h4, h5, h6 {
  font-family: "arimobold", Helvetica;
  line-height: 1.2;
}

h1 {
  font-size: 5.8rem;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 4rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2.8rem;
}

@media (max-width: 991px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  line-height: 1.5;
}

a {
  color: #eba900;
  text-decoration: none;
}

a:hover {
  color: #db6015;
}

header {
  padding: 30px 0;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
}

header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}

header > .container .logo {
  display: inherit;
}

header > .container .logo svg {
  width: 170px;
  max-width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  header > .container .logo svg {
    width: 120px;
  }
}

header > .container nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > .container nav ul {
  list-style-type: none;
}

header > .container nav ul li {
  white-space: nowrap;
}

header > .container nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #372e2c;
  line-height: 2.1;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 18px;
  font-size: 1.8rem;
}

header > .container nav > ul {
  margin-right: 15px;
}

header > .container nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}

header > .container nav > ul > li a {
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

header > .container nav > ul > li a:hover, header > .container nav > ul > li a.active {
  color: #eba900;
  border-bottom: 3px solid #eba900;
  text-decoration: none;
}

@media (max-width: 991px) {
  header > .container nav > ul > li a:hover, header > .container nav > ul > li a.active {
    color: #372e2c;
    border-bottom: 3px solid transparent;
  }
}

header > .container nav > ul > li.current_page_item a {
  color: #eba900;
  border-bottom: 3px solid #eba900;
  text-decoration: none;
}

@media (max-width: 991px) {
  header > .container nav > ul > li.current_page_item a {
    border-bottom: 3px solid transparent;
  }
}

header > .container nav > ul > li .sub-menu {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 35px;
  padding: 10px;
  padding-top: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header > .container nav > ul > li .sub-menu li {
  display: block;
  padding: 10px 0 5px 0;
  text-decoration: underline;
  border-top: 1px solid #eba900;
  white-space: nowrap;
}

header > .container nav > ul > li .sub-menu li a {
  line-height: 1;
  border: 0;
  color: #372e2c;
}

header > .container nav > ul > li .sub-menu li a span {
  font-size: 12px;
  line-height: 1;
  color: #372e2c;
}

header > .container nav > ul > li .sub-menu li a:hover, header > .container nav > ul > li .sub-menu li a.active, header > .container nav > ul > li .sub-menu li a:focus {
  color: #eba900;
  border: 0;
}

header > .container nav .social {
  margin-left: 30px;
}

header > .container nav .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

header > .container nav .social a:not(:first-child) {
  margin-left: 5px;
}

header > .container nav .social a svg {
  width: 20px;
  max-width: 100%;
  height: auto;
}

header > .container nav .social a svg:hover path {
  fill: #db6015;
}

@media (max-width: 991px) {
  header > .container nav {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 99;
    width: 100%;
    padding: 0 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  header > .container nav.open {
    visibility: visible;
    opacity: 1;
  }
  header > .container nav ul {
    width: 100%;
    margin-right: 0;
    background-color: #ffffff;
    text-align: right;
    padding: 0 10px;
  }
  header > .container nav ul li {
    display: block;
    padding: 0;
  }
  header > .container nav ul li.menu-item-has-children > a:before {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("../img/icons/down-arrow.svg");
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -20px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  header > .container nav ul li.menu-item-has-children > a.open:before {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  header > .container nav ul li .sub-menu {
    padding: 0;
    position: relative;
    display: none;
    top: 0;
  }
  header > .container nav > ul > li:not(:last-child) {
    border-bottom: 1px solid #eba900;
  }
  header > .container nav .btn {
    display: none;
  }
  header > .container nav .social {
    display: none;
  }
}

header > .container .mobile-controls {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header > .container .mobile-controls .btn {
  display: none;
}

@media (max-width: 991px) {
  header > .container .mobile-controls .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

header > .container .mobile-controls .burger {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #eba900;
  cursor: pointer;
  display: none;
  margin-left: 15px;
}

@media (max-width: 991px) {
  header > .container .mobile-controls .burger {
    display: block;
  }
}

header > .container .mobile-controls .burger span {
  position: absolute;
  left: 9px;
  top: 20px;
  background-color: #ffffff;
  width: 23px;
  height: 1px;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header > .container .mobile-controls .burger span:first-child {
  top: 10px;
}

header > .container .mobile-controls .burger span:last-child {
  top: 30px;
}

header > .container .mobile-controls .burger.open span:first-child {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

header > .container .mobile-controls .burger.open span:last-child {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

header > .container .mobile-controls .burger.open span:nth-child(2) {
  opacity: 0;
}

@media (max-width: 991px) {
  header > .container .mobile-controls .burger {
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  header > .container .mobile-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
  }
}

footer {
  color: #ffffff;
}

footer .footer {
  padding: 50px 0;
  background-color: #372e2c;
}

footer .footer > .container:last-child {
  margin-top: 40px;
}

@media (max-width: 991px) {
  footer .footer > .container:last-child {
    margin-top: 0;
  }
}

footer .footer .logo svg {
  width: 170px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  footer .footer .logo svg {
    width: 150px;
  }
}

footer .footer .title {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "arimobold", Helvetica;
  margin-bottom: 20px;
}

footer .footer ul {
  list-style-type: none;
}

footer .footer ul li a {
  color: #ffffff;
  text-decoration: none;
}

footer .footer .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

footer .footer .social a:not(:first-child) {
  margin-left: 5px;
}

footer .footer .social a svg {
  width: 30px;
  max-width: 100%;
  height: auto;
}

footer .legal-footer {
  text-align: center;
  background-color: #eba900;
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

footer .legal-footer a {
  color: #ffffff;
  text-decoration: underline;
}

main {
  position: relative;
  padding-top: 70px;
}

@media (min-width: 992px) {
  main {
    padding-top: 100px;
  }
}

/* Components */
.large-banner {
  width: 100%;
}

.large-banner .banner {
  min-height: 500px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  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;
}

@media (max-width: 991px) {
  .large-banner .banner {
    min-height: 460px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10%;
  }
}

.large-banner .banner .text {
  position: relative;
  padding: 20px;
  width: 70%;
  color: #ffffff;
}

.large-banner .banner .text .box-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.large-banner .banner .text h1, .large-banner .banner .text p {
  position: relative;
}

.large-banner .banner .text p {
  font-size: 2.4rem;
}

@media (max-width: 991px) {
  .large-banner .banner .text p {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .large-banner .banner .text {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}

.large-banner .divide {
  position: relative;
  width: 100%;
  height: 44px;
  background-color: #eba900;
  margin-bottom: 50px;
}

.large-banner .divide .arrow-section {
  width: 80px;
  height: 44px;
  background-color: #eba900;
  position: absolute;
  bottom: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.large-banner .divide .arrow-section svg, .large-banner .divide .arrow-section img {
  width: 40px;
  max-width: 100%;
  height: auto;
}

.text-left-image-right {
  width: 100%;
  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;
  background-color: #eba900;
  padding: 50px 0;
}

.text-left-image-right .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-left-image-right h1, .text-left-image-right h2, .text-left-image-right h3, .text-left-image-right h4, .text-left-image-right h5, .text-left-image-right h6 {
  margin-bottom: 20px;
}

.text-left-image-right .text {
  margin-top: 20px;
  color: #ffffff;
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "arimobold", Helvetica;
}

@media (max-width: 991px) {
  .text-left-image-right .text {
    font-size: 22px;
    font-size: 2.2rem;
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .text-left-image-right {
    padding: 20px 0;
  }
}
.picture-text-row {
  width: 100%;
  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 0;
}

.picture-text-row .container {
	background-color: #f0f0f1;
	padding: 5px 5px 5px 5px;
}

.picture-text-row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.picture-text-row h1, .picture-text-row h2, .picture-text-row h3, .picture-text-row h4, .picture-text-row h5, .picture-text-row h6 {
  margin-bottom: 20px;
}

.picture-text-row .image-row {
	max-width: 340px;
    height: auto;
    background-color: #fff;
    padding: 10px;
	max-height: 210px;
}

.picture-text-row .text {
  margin-top: 0px;
  color: #372e2c;
  font-size: 2rem;
  font-family: "arimo", Helvetica;
}

@media (max-width: 991px) {
  .picture-text-row .text {
    font-size: 22px;
    font-size: 2.2rem;
    margin-top: 0px;
	text-align: center;
	margin: auto;
    max-width: max-content;
  }
}

@media (max-width: 991px) {
  .picture-text-row {
    padding: 0px 0;
  }
}

@media (max-width: 991px) {
	.picture-text-row .image-row {
	max-width: 340px;
    height: auto;
    background-color: #fff;
    padding: 10px;
	margin: auto;
	max-height: 210px;
	}
}


.cta-footer {
  padding: 65px 0;
  background-color: #eba900;
  color: #ffffff;
}

.cta-footer h2 {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  color: #372e2c;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cta-footer h2 {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 0;
  }
}

.cta-footer .title {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: "arimobold", Helvetica;
  line-height: 1;
}

@media (max-width: 991px) {
  .cta-footer .title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 0;
  }
}

.cta-footer .text {
  margin: 20px 0;
}

.cta-footer .text p {
  line-height: 1.2;
}

.cta-footer .btn {
  margin-top: 10px;
}

.cta-footer .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

.cta-footer .social a:not(:first-child) {
  margin-left: 5px;
}

.cta-footer .social a svg {
  width: 30px;
  max-width: 100%;
  height: auto;
}

.large-text-block {
  padding: 60px 0;
}

.large-text-block .text {
  width: 780px;
  margin: 0 auto;
  max-width: 100%;
}

.large-text-block .text p {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "arimobold", Helvetica;
}

@media (max-width: 991px) {
  .large-text-block .text p {
    font-size: 20px;
    font-size: 2rem;
  }
}

.cta-banner {
  position: relative;
  width: 100%;
  background-color: #db6015;
  color: #ffffff;
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner .background {
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 200px;
  height: 200px;
  max-width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .cta-banner .background {
    width: 100%;
    position: static;
    width: 125px;
    height: 125px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.cta-banner .text {
  max-width: 100%;
  width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner .text .title {
  font-size: 4.8rem;
  font-family: "arimobold", Helvetica;
}

@media (max-width: 991px) {
  .cta-banner .text .title {
    font-size: 2.8rem;
  }
}

.cta-banner .text .subtitle {
  font-size: 1.8rem;
}

@media (max-width: 991px) {
  .cta-banner .text .subtitle {
    font-size: 1.6rem;
  }
}

.cta-banner .btn {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 991px) {
  .cta-banner .btn {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .cta-banner {
    padding: 35px 0;
  }
}

.work-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.work-list h2 {
  margin-bottom: 40px;
  text-align: center;
}

.work-list .work-item {
  display: inline-block;
  position: relative;
  width: 49%;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.work-list .work-item.wide {
  width: 100%;
}

.work-list .work-item .overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #ffffff;
  padding: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.work-list .work-item .overlay .title {
  font-family: "arimobold", Helvetica;
  font-size: 4.8rem;
}

@media (max-width: 991px) {
  .work-list .work-item .overlay .title {
    font-size: 3.2rem;
  }
}

.work-list .work-item .overlay .excerpt {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .work-list .work-item .overlay .excerpt {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.work-list .work-item .overlay .btn {
  padding: 10px 20px;
}

@media (max-width: 991px) {
  .work-list .work-item .overlay {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .work-list .work-item {
    width: 100%;
    height: 245px;
    margin-bottom: 5px;
  }
}

.team-list {
  width: 100%;
  padding: 60px 0;
}

.team-list > .container:first-child {
  text-align: center;
}

.team-list > .container:first-child h2 {
  margin-bottom: 20px;
}

.team-list > .container:first-child p {
  font-size: 2.8rem;
  font-family: "arimobold", Helvetica;
  color: #eba900;
  margin: 0 auto;
  width: 780px;
  max-width: 100%;
  line-height: 1.14;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .team-list > .container:first-child p {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.team-list > .container:last-child:after {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  max-width: 370px;
}

.team-list .team-item {
  margin-bottom: 40px;
}

.team-list .team-item .avatar {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 100%;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  background: #eba900;
  background: -webkit-gradient(linear, left top, right top, from(#eba900), to(#db6015));
  background: linear-gradient(90deg, #eba900 0%, #db6015 100%);
  padding: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-list .team-item .avatar .inner {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #ffffff;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  padding: 2px;
  overflow: hidden;
  border-radius: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-list .team-item .avatar .inner img {
  max-width: 100%;
  height: auto;
  border-radius: 100%;
}

@media (max-width: 991px) {
  .team-list .team-item .avatar .inner {
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}

.team-list .team-item .avatar:hover {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.team-list .team-item .avatar:hover .inner {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 991px) {
  .team-list .team-item .avatar {
    width: 85px;
    height: 85px;
  }
}

.team-list .team-item .profile-meta {
  margin-top: 15px;
}

.team-list .team-item .profile-meta .name {
  font-family: "arimobold", Helvetica;
  font-size: 2rem;
}

.team-list .team-item .profile-meta .title {
  font-size: 2rem;
  min-height: 48px;
}

.team-list .team-item .bio-expandable {
  position: relative;
  margin-top: 30px;
}

.team-list .team-item .bio-expandable .bio-expander {
  font-size: 2rem;
  cursor: pointer;
}

.team-list .team-item .bio-expandable .bio-expander span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-color: #372e2c;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team-list .team-item .bio-expandable .bio-expander span svg {
  width: 8px;
}

.team-list .team-item .bio-expandable .bio-expander span svg:last-child {
  display: none;
  width: 75%;
}

@media (max-width: 991px) {
  .team-list .team-item .bio-expandable .bio-expander {
    display: none;
  }
}

.team-list .team-item .bio-expandable.open .bio-expander span svg:first-child {
  display: none;
}

.team-list .team-item .bio-expandable.open .bio-expander span svg:last-child {
  display: inline-block;
}

.team-list .team-item .bio-expandable .dropdown {
  position: relative;
  left: -5%;
  width: 110%;
  background-color: #ffffff;
  z-index: 5;
  padding: 10px 5% 0 5%;
}

.team-list .team-item .bio-expandable .dropdown.open {
  position: absolute;
  top: 30px;
  z-index: 10;
}

@media (max-width: 991px) {
  .team-list .team-item .bio-expandable .dropdown.open {
    top: 0;
  }
}

.team-list .team-item .bio-expandable .dropdown .bio {
  display: none;
}

.team-list .team-item .bio-expandable .dropdown .bio.open {
  display: block;
}

@media (max-width: 991px) {
  .team-list .team-item .bio-expandable .dropdown .bio {
    display: block;
  }
}

.team-list .team-item .bio-expandable .dropdown .social {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  margin-bottom: 10px;
  min-height: 20px;
  line-height: 0;
}

.team-list .team-item .bio-expandable .dropdown .social:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eba900;
}

.team-list .team-item .bio-expandable .dropdown .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

.team-list .team-item .bio-expandable .dropdown .social a:not(:first-child) {
  margin-left: 5px;
}

.team-list .team-item .bio-expandable .dropdown .social a svg {
  width: 20px;
  max-width: 100%;
  height: auto;
}

.team-list .team-item .bio-expandable .dropdown .social a svg:hover path {
  fill: #db6015;
}

@media (max-width: 991px) {
  .team-list .team-item .bio-expandable .dropdown {
    display: none;
  }
  .team-list .team-item .bio-expandable .dropdown.open {
    display: block;
  }
}

@media (max-width: 991px) {
  .team-list .team-item .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .team-list .team-item .profile .profile-meta {
    margin: 0;
    margin-left: 10px;
    width: 70%;
  }
}

@media (max-width: 991px) {
  .team-list .team-item {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .team-list .col {
    margin-top: 0;
  }
}

.logo-slider {
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .logo-slider > .container {
    padding: 0 45px;
  }
}

.logo-slider h2 {
  margin-bottom: 30px;
}

.logo-slider .slider-cont {
  position: relative;
  padding: 50px 0;
}

.logo-slider .slider-cont .nav-button {
  position: absolute;
  top: 0;
  border-right: 3px solid #eba900;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.logo-slider .slider-cont .nav-button .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #eba900;
  width: 45px;
  height: 90px;
  cursor: pointer;
  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;
}

.logo-slider .slider-cont .nav-button .arrow svg {
  width: 45px;
}

@media (max-width: 991px) {
  .logo-slider .slider-cont .nav-button .arrow {
    width: 30px;
    height: 60px;
  }
  .logo-slider .slider-cont .nav-button .arrow svg {
    width: 30px;
  }
}

.logo-slider .slider-cont .nav-button.back {
  left: -10px;
}

.logo-slider .slider-cont .nav-button.back .arrow {
  right: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.logo-slider .slider-cont .nav-button.back .arrow svg {
  margin-right: -5px;
}

.logo-slider .slider-cont .nav-button.forward {
  right: -10px;
}

.logo-slider .slider-cont .nav-button.forward .arrow {
  left: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.logo-slider .slider-cont .nav-button.forward .arrow svg {
  margin-left: -5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.logo-slider .slider-cont .slider .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 5px;
}

.logo-slider .slider-cont .slider .slide .col {
  margin: 10px 0;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo-slider .slider-cont .slider .slide .col img {
  display: inline-block;
}

@media (max-width: 991px) {
  .logo-slider .slider-cont .slider .slide .col {
    width: 48%;
  }
}

.logo-slider .slider-cont .slider .slide.less-than-8::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

@media (max-width: 991px) {
  .logo-slider .slider-cont {
    padding: 25px 0;
  }
}

@media (max-width: 991px) {
  .logo-slider {
    padding: 25px 0;
  }
}

.text-small-image {
  width: 100%;
  padding: 25px 0;
}

.text-small-image .col:last-child {
  text-align: center;
}

.text-only {
  width: 100%;
  padding: 25px 0;
}

.text-only p {
  padding-bottom: 1.2rem;
}

.text-only h3 {
    padding-bottom: 1.5rem;
    padding-top: 2.5rem;
}

.text-only ul {
	padding-left: 2.5em;
    padding-bottom: 20px;
}

.orange {
	background-color: #eba900;
	color: black;
}

.dorange {
	background-color: #db6015;
	color: white;
}

.dorange a{
	color: white;
}

.apply-button {
    padding: 12px 24px;
	border: 0 none;
    border-radius: 8px;
    background: #db6115;
    font-family: "arimobold", Helvetica;
	text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}
.apply-button:hover,
.apply-button:focus {
	border: 0 none;
    background: #eba900;
    color: #ffffff;
    text-decoration: none;
}
.radio-tnc{
    width: auto !important;;
}

.tnc-label label{
	width: 100% !important;
}

.four-column-features {
  width: 100%;
  padding: 25px 0;
}

.four-column-features .col:first-child .feature {
  background-color: #eba900;
}

.four-column-features .col:nth-child(2) .feature {
  background-color: #db6015;
}

.four-column-features .col:nth-child(3) .feature {
  background-color: #372e2c;
}

.four-column-features .col:last-child .feature {
  background-color: #00833e;
}

.four-column-features .feature {
  border-radius: 100%;
  text-align: center;
  color: #ffffff;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 215px;
  padding: 20px;
}

.four-column-features .feature .pre-text {
  font-size: 1.6rem;
  font-family: "arimobold", Helvetica;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .four-column-features .feature .pre-text {
    font-size: 1.2rem;
  }
}

.four-column-features .feature .main-text {
  font-size: 5rem;
  font-family: "arimobold", Helvetica;
}

@media (max-width: 991px) {
  .four-column-features .feature .main-text {
    font-size: 3rem;
  }
}

.four-column-features .feature .end-text {
  font-size: 1.6rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .four-column-features .feature .end-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .four-column-features .col-4 {
    width: 48%;
  }
}

.impact-section {
  background-color: #eba900;
  padding: 50px 0;
}

.impact-section > .container:first-child {
  text-align: center;
}

.impact-section > .container:first-child p {
  font-size: 2.4rem;
  font-family: "arimobold", Helvetica;
  color: #ffffff;
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .impact-section > .container:first-child p {
    font-size: 1.8rem;
  }
}

.impact-section .impact-item {
  margin-top: 30px;
}

.impact-section .impact-item .feature-section {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

.impact-section .impact-item .feature-section .title {
  background-color: rgba(55, 46, 44, 0.75);
  padding: 15px;
  color: #ffffff;
  font-size: 2.2rem;
  font-family: "arimobold", Helvetica;
  text-align: center;
}

.impact-section .impact-item .text-section {
  font-size: 1.6rem;
  width: 100%;
  padding: 15px;
  background-color: #db6015;
  color: #ffffff;
  min-height: 125px;
  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;
}

@media (max-width: 991px) {
  .impact-section .impact-item {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .impact-section {
    padding: 35px 0;
  }
}

.gallery-section {
  padding: 50px 0;
}

.gallery-section > .container:first-child {
  text-align: center;
}

.gallery-section > .container:first-child p {
  font-size: 2.4rem;
  font-family: "arimobold", Helvetica;
  color: #ffffff;
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .gallery-section > .container:first-child p {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .gallery-section .col.col-3 {
    width: 31%;
  }
}

@media (max-width: 767px) {
  .gallery-section .col.col-3 {
    width: 100%;
  }
}

.gallery-section .gallery-item {
  margin-top: 30px;
}

.gallery-section .gallery-item img, .gallery-section .gallery-item video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .gallery-section .gallery-item {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 35px 0;
  }
}

.title-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding: 125px 0;
}

@media (max-width: 991px) {
  .title-section {
    padding: 90px 0;
  }
}

.contact-section {
  width: 100%;
  padding: 90px 0;
}

.contact-section .title {
  font-size: 2.8rem;
  font-family: "arimobold", Helvetica;
  margin-bottom: 30px;
}

.contact-section .title.yellow {
  color: #eba900;
}

.contact-section .email {
  margin-top: 20px;
}

.contact-section form {
  margin-top: 40px;
}

.contact-section form .wpcf7-response-output {
  padding: 10px;
  margin: 0;
}

.contact-section form br {
  display: none;
}

.contact-section form label {
  display: inline-block;
  width: 20%;
}

.info-form{
	font-style: italic;
    font-size: 1.5rem;
    color: grey;
    margin-top: -10px !important;
}

@media (max-width: 991px) {
  .contact-section form label {
    width: 40%;
  }
}

.contact-section form .wpcf7-form-control-wrap {
  display: block;
  width: 80%;
}

@media (max-width: 991px) {
  .contact-section form .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.contact-section form .intro-line {
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-section form .input-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section form input, .contact-section form textarea {
  border: 1px solid #eba900;
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  resize: none;
}

.contact-section form span.wpcf7-list-item {
  width: 100%;
  margin: 0;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section form input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin-right: 10px;
}

.contact-section form input[type="radio"]:checked {
  background: #eba900;
}

.contact-section form input[type="submit"] {
  border: 1px solid transparent;
  width: auto;
  cursor: pointer;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 30px 0;
  }
}

.subscribe-form {
  margin-top: 20px;
  background: transparent !important;
}

.subscribe-form form {
  padding: 0 !important;
}

.subscribe-form form input[type="text"], .subscribe-form form input[type="email"] {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: 0 !important;
  width: 100% !important;
  padding: 15px 10px !important;
  font-size: 1.6rem !important;
}

.subscribe-form form input[type="submit"] {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  padding: 10px !important;
  text-transform: uppercase !important;
  font-family: "arimobold", Helvetica !important;
  text-decoration: none !important;
  -webkit-transition: all .3s !important;
  transition: all .3s !important;
  background-color: #db6015 !important;
  color: #ffffff !important;
  width: auto !important;
  height: auto !important;
}

.subscribe-form form input[type="submit"]:hover {
  background-color: #eba900 !important;
}

.subscribe-form form .content__gdprLegal p {
  margin-bottom: 20px;
}

.subscribe-form form .gdprRequired {
  margin-top: 20px;
}

.subscribe-form form a {
  color: white;
  text-decoration: underline;
}

.subscribe-form form a:hover {
  color: white;
}

.project-summary {
  padding: 65px 0;
  background-color: #ffffff;
}

.project-summary .project-summary-inner {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-summary .project-summary-inner .logo {
  width: 30%;
  text-align: center;
}

@media (max-width: 991px) {
  .project-summary .project-summary-inner .logo img {
    width: 180px;
  }
}

@media (max-width: 991px) {
  .project-summary .project-summary-inner .logo {
    width: 100%;
    margin-bottom: 40px;
  }
}

.project-summary .project-summary-inner .content {
  width: 65%;
  padding: 10px 30px;
  font-size: 3.2rem;
  font-family: "arimobold", Helvetica;
}

.project-summary .project-summary-inner .content .url span {
  color: #eba900;
}

.project-summary .project-summary-inner .content .url a {
  color: #372e2c;
}

.project-summary .project-summary-inner .content span {
  display: block;
}

.project-summary .project-summary-inner .content .social {
  margin-top: 30px;
}

.project-summary .project-summary-inner .content .social span {
  color: #db6015;
}

.project-summary .project-summary-inner .content .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

.project-summary .project-summary-inner .content .social a svg {
  width: 30px;
  height: 30px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .project-summary .project-summary-inner .content .social a svg {
    width: 20px;
    height: 20px;
  }
}

.project-summary .project-summary-inner .content .social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .project-summary .project-summary-inner .content {
    width: 100%;
    padding: 0;
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .project-summary .project-summary-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 991px) {
  .project-summary {
    padding: 40px 0;
  }
}

.testimonial-section {
  padding: 45px 0;
}

.testimonial-section svg {
  width: 55px;
  margin: 0 auto;
}

.testimonial-section .col {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.testimonial-section .slider {
  position: relative;
  margin: 0 auto;
  width: 350px;
  max-width: 100%;
}

.testimonial-section .slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-section .slider .arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 130px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/icons/testimonial-arrow.svg");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.testimonial-section .slider .arrow.slick-prev {
  left: -60px;
}

@media (max-width: 991px) {
  .testimonial-section .slider .arrow.slick-prev {
    left: -50px;
  }
}

.testimonial-section .slider .arrow.slick-next {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  right: -60px;
}

@media (max-width: 991px) {
  .testimonial-section .slider .arrow.slick-next {
    right: -50px;
  }
}

@media (max-width: 991px) {
  .testimonial-section .slider .arrow {
    width: 30px;
    height: 95px;
  }
}

.testimonial-section .slider .slide {
  text-align: center;
  display: inherit !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonial-section .slider .slide .text {
  font-family: "arimobold", Helvetica;
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial-section .slider .slide .source {
  font-size: 1.4rem;
  color: #db6015;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .testimonial-section .slider {
    width: 250px;
  }
}

.cta-within-content {
  padding: 60px 0;
}

.cta-within-content > .container:not(:last-child) {
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .cta-within-content > .container:not(:last-child) {
    padding: 25px 30px;
    margin-bottom: 0;
  }
}

.cta-within-content .round-circle {
  height: 215px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-family: "arimobold", Helvetica;
  font-size: 4.8rem;
}

.cta-within-content .round-circle.orange {
  background-color: #db6015;
}

.cta-within-content .round-circle.yellow {
  background-color: #eba900;
}

.cta-within-content .round-circle.green {
  background-color: #00833e;
}

@media (max-width: 767px) {
  .cta-within-content .round-circle {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}

.cta-within-content .social a {
  text-decoration: none;
  display: inline-block;
  font-size: 0;
}

.cta-within-content .social a:not(:first-child) {
  margin-left: 5px;
}

.cta-within-content .social a svg {
  width: 30px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .cta-within-content {
    padding: 35px 0;
  }
}

.accountability-section {
  width: 100%;
  padding: 50px 0;
}

.accountability-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.accountability-section h3 {
  margin-bottom: 30px;
  font-family: "arimobold", Helvetica;
  font-size: 2.8rem;
  color: #eba900;
}

.accountability-section img {
  margin-bottom: 20px;
}

.accountability-section p {
  line-height: 1.4;
}

.accountability-section .doc {
  margin-top: 15px;
}

.accountability-section .doc a {
  color: #372e2c;
}

.accountability-section .doc a span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-color: #372e2c;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
}

.accountability-section .doc a span svg {
  width: 8px;
}

.donation-section {
   margin-bottom: 40px;
}
/*# sourceMappingURL=app.css.map */


/* Woocommerce */

.woocommerce .columns-3  {
	padding: 50px 30px;
}

.woocommerce .columns-4  {
	padding: 50px 30px;
}

.product {
	padding: 50px 30px;
}


@media (min-width: 992px) {
.woocommerce .columns-3  {
	width: 1000px;
	margin: auto;
}

.woocommerce .columns-4  {
	width: 1000px;
	margin: auto;
}

.product {
	width: 1000px;
	margin: auto;
}
}

.product h2 {
    font-size: 2.5rem;
    padding-bottom: 30px;
}

.suggested-price {
	padding: 10px 0;
}

.input-text {
	border: 1px #ccc solid;
    padding: 5px;
    margin: 6px 0 0 0;
	border-radius: 3px;
	font-weight: normal;
}

.woocommerce-Tabs-panel--description p{
	padding-bottom: 16px;
}

.cartcontents {
	visibility: hidden;
    width: 0;
}