body {
  font-family: "DM Sans", sans-serif;
}

h1 {
  font-size: 12em;
  font-family: "Damion", cursive;
}

h2 {
  font-size: 8em;
}

h3 {
  font-size: 6em;
}

h4 {
  font-size: 4em;
}

.color-secondary {
  color: #fed056;
}

.bg-darker {
  background: #0B4032;
}

.shakeit {
  animation: shakeit 8s linear infinite;
  perspective: 10px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes shakeit {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-5px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(5px, 0, 0);
  }
}
.btn {
  font-size: 3em;
  background: #07B04C;
  padding: 7px 50px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.05);
}
.btn i {
  padding-left: 5px;
  transition-duration: 300ms;
  font-size: 0.8em;
}
.btn:hover {
  background: #fed056;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.1);
}
.btn:hover i {
  transform: translateX(8px);
}

.container {
  max-width: 1600px;
}

nav .logo-wrapper {
  max-width: 150px;
  padding: 20px 0px;
}

.container .wrap:not(.noSpaces),
.container .wrap.spaceWrap,
.container .wrap .spaceWrap {
  padding: 80px calc(3% + 15px);
  text-align: unset;
}

.panel {
  width: 95%;
  margin: auto;
  left: 2.5%;
}

.slider-1 {
  background-size: cover !important;
  background-position: center !important;
  background: #0B4032;
  text-align: center;
}
.slider-1 .ctas {
  display: flex;
  justify-content: space-around;
}
.slider-1 .ctas .btn:last-child {
  background: #fed056;
}
.slider-1 .logo-white {
  max-width: 200px;
}
.slider-1 h1 {
  padding: 20px 0px 5px 0px;
  font-weight: 200;
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  margin-top: 10px;
}
.slider-1 p {
  padding-bottom: 30px;
}
.slider-1 h3 {
  padding: 0px 0px 20px 0px;
  font-weight: 100;
  font-family: "Damion", cursive;
}
.slider-1 .background {
  width: 70%;
}
.slider-1 .bottom-background {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.slider-1 .right-background {
  width: auto;
  position: absolute;
  right: 0;
  height: 100%;
}
.slider-1 .landing-content {
  background: rgba(11, 64, 50, 0.8);
  max-width: 700px;
  padding: 50px 20px 40px 20px;
  margin-top: 10px;
  border-radius: 20px;
}

.button.actionButton {
  box-shadow: 0px 3px 4px 1px rgba(254, 208, 86, 0.5);
}

.slider-2 .row {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: auto;
}
.slider-2 h3 {
  font-weight: 700;
}
.slider-2 .jumbo {
  text-align: center;
  font-size: 15em;
  color: #07B04C;
}
.slider-2 .jumbo span {
  display: block;
  font-size: 3em;
  padding: 40px 50px;
}
.slider-2 .ul li {
  position: absolute;
  max-width: 300px;
  font-size: 0.6em;
}
.slider-2 .ul li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  left: -30px;
  border-radius: 50%;
  background: #fed056;
  z-index: 5;
}
.slider-2 .ul li:nth-child(1) {
  top: 15%;
  left: 0px;
}
.slider-2 .ul li:nth-child(2) {
  top: 25%;
  left: 40%;
}
.slider-2 .ul li:nth-child(3) {
  top: 15%;
  right: 0%;
}
.slider-2 .ul li:nth-child(4) {
  bottom: 15%;
  left: 0px;
}
.slider-2 .ul li:nth-child(5) {
  bottom: 0%;
  left: 40%;
}
.slider-2 .ul li:nth-child(6) {
  bottom: 15%;
  right: 0%;
}
.slider-2.glance h3 {
  color: #fff;
  opacity: 1;
}
.slider-2.glance .card {
  height: 100%;
  padding: 20px;
  border: none;
  border-radius: 15px;
}
.slider-2.glance .row {
  width: 100%;
}
.slider-2.glance .row img {
  mix-blend-mode: multiply;
}
.slider-2.glance .row .col-md-4 {
  position: relative;
  margin: auto;
}
.slider-2.glance .row .col-md-4:nth-child(1) {
  top: 0%;
}
.slider-2.glance .row .col-md-4:nth-child(2) {
  top: 5%;
}
.slider-2.glance .row .col-md-4:nth-child(3) {
  top: 0%;
}
.slider-2.glance .row .col-md-4:nth-child(4) {
  bottom: 5%;
}
.slider-2.glance .row .col-md-4:nth-child(5) {
  bottom: 0%;
}
.slider-2.glance .row .col-md-4:nth-child(6) {
  bottom: 5%;
}
.slider-2.glance .text {
  font-size: 20px;
}
.slider-2.glance .text li {
  position: relative;
  padding: 10px 0px;
  font-size: 16px;
}
.slider-2.glance .text li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -30px;
  top: 5px;
  content: "\f058";
  font-size: 18px;
  color: #07B04C;
}
@media (min-width: 767px) {
  .slider-2.glance .overview .col-sm-6 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.slider-2.glance .overview .card {
  background: transparent;
}
.slider-2.glance .overview .card img {
  max-width: 100px;
}
.slider-2.glance .overview .card .details {
  padding: 10px 0px 10px 0px;
}
.slider-2.glance .overview .card .details h4 {
  font-size: 18px;
  font-weight: 600;
}
.slider-2.glance .overview .card .details p {
  font-size: 12px;
}
.slider-2 .sdgs {
  display: flex;
  flex-wrap: wrap;
}
.slider-2 .sdgs .card {
  position: relative;
  border-radius: 0px;
  padding: 0px;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}
.slider-2 .the-glance .col-md-3 {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 5px;
}
.slider-2 .the-glance .card {
  background: transparent;
  display: flex;
  align-items: flex-start;
}
.slider-2 .the-glance .card img {
  max-width: 100px;
}
.slider-2 .the-glance .card .details {
  padding: 10px 0px 10px 0px;
}
.slider-2 .the-glance .card .details h4 {
  font-size: 18px;
  font-weight: 600;
}
.slider-2 .the-glance .card .details p {
  font-size: 12px;
}

.slider-3 h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #07B04C;
}
.slider-3 .card {
  background: transparent;
  border: none;
  margin: auto;
}
.slider-3 .card .card-img {
  border-bottom: 5px solid #07B04C;
  border-radius: 20px;
}
.slider-3 .content {
  background: rgba(11, 64, 50, 0.8);
}
.slider-3 .speech {
  position: relative;
  max-width: 900px;
  background: #fff;
  border-radius: 30px;
  line-height: 2;
  padding: 45px;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
  color: #0B4032;
}
.slider-3 .speech:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  border-top: 40px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(330deg);
}
.slider-3 .speech:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #000;
  font-size: 20px;
  opacity: 0.3;
}
.slider-3 .col-md-7 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider-3 .card-title h3 {
  font-size: 7em;
  font-family: "Damion", cursive;
}
.slider-3 .card-title h4 {
  padding: 5px 0px 20px 0px;
  opacity: 0.5;
}
.slider-3.director .card-title {
  text-align: right;
}
.slider-3.director .speech:after {
  left: auto;
  right: -50px;
  transform: rotate(170deg);
}

.slider-4 h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #07B04C;
}
.slider-4 .card {
  background: transparent;
  border: none;
  margin: auto;
}
.slider-4 .card .card-img {
  border-bottom: 5px solid #07B04C;
  border-radius: 20px;
}
.slider-4 .speech {
  position: relative;
  max-width: 900px;
  background: #fff;
  border-radius: 30px;
  line-height: 2;
  padding: 45px;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
  color: #0B4032;
}
.slider-4 .speech:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  border-top: 40px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(330deg);
}
.slider-4 .speech:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #000;
  font-size: 20px;
  opacity: 0.3;
}
.slider-4 .col-md-7 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider-4 .card-title h3 {
  font-size: 7em;
  font-family: "Damion", cursive;
}
.slider-4 .card-title h4 {
  padding: 5px 0px 20px 0px;
  opacity: 0.5;
}
.slider-4.director .card-title {
  text-align: right;
}
.slider-4.director .content {
  background: rgba(11, 64, 50, 0.8);
}
.slider-4.director .speech:after {
  left: auto;
  right: -50px;
  transform: rotate(170deg);
}

.popup h3 {
  font-family: "Damion", cursive;
  color: #07B04C;
}
.popup .card-title {
  padding-top: 20px;
}
.popup .card-title h4 {
  opacity: 0.5;
  font-size: 16px;
  font-family: "Damion", cursive;
}
.popup p {
  padding-bottom: 10px;
}
.popup b, .popup strong {
  font-weight: 700;
}
.popup ul {
  font-size: 20px;
}
.popup ul li {
  position: relative;
  padding: 10px 0px 10px 30px;
  font-size: 16px;
}
.popup ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0px;
  top: 5px;
  content: "\f058";
  font-size: 18px;
  color: #07B04C;
}
.popup span {
  color: #fed056;
}

.popupContent {
  height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 30px 40px 30px 0px;
}

.popupContent::-webkit-scrollbar {
  width: 1.2em;
  border-radius: 10px;
}

.popupContent::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #fff;
}

.popupContent::-webkit-scrollbar-thumb {
  background-color: #07B04C;
}

nav.sidebar {
  background: #0B4032;
}
nav.sidebar .logo img {
  padding: 20px 0px;
}
nav.sidebar .mainMenu a {
  color: #fff;
}
nav.sidebar .social li a {
  font-size: 20px;
  padding: 0;
  color: #fff;
}

.human-rights .tabs li.selected {
  background: #07B04C;
  color: #fff;
}
.human-rights .col-12 {
  padding-bottom: 50px;
}
.human-rights h1 {
  margin-bottom: 20px;
}
.human-rights h3 {
  color: #07B04C;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.human-rights h3:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #07B04C;
}
.human-rights .btn {
  margin-top: 40px;
}

.product-quality {
  text-align: center;
}
.product-quality h4 {
  width: 90%;
  max-width: 1100px;
  margin-bottom: 30px;
}
.product-quality .tabs {
  display: flex;
  margin-bottom: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.product-quality .tabs li.selected {
  background: #07B04C;
  color: #fff;
}
.product-quality .tabs li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.product-quality .tabcontent {
  margin-bottom: 50px !important;
}
.product-quality .img-wrapper {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  width: 90%;
  overflow: hidden;
  margin: auto;
}
.product-quality .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-quality .main-content {
  width: 100%;
  text-align: left;
}
.product-quality .main-content h3 {
  color: #07B04C;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.product-quality .main-content h3:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #07B04C;
}
.product-quality .main-content .speech {
  position: relative;
  max-width: 900px;
  background: #fff;
  border-radius: 30px;
  line-height: 2;
  padding: 45px;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
  color: #0B4032;
  margin: 20px 0px;
}
.product-quality .main-content .speech:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  border-top: 40px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(342deg);
}
.product-quality .main-content .speech:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #000;
  font-size: 20px;
  opacity: 0.3;
}
.product-quality .main-content ul {
  margin-bottom: 20px;
  width: 90%;
}
.product-quality .main-content ul li {
  font-size: 20px;
  position: relative;
  padding: 10px 5px 10px 30px;
}
.product-quality .main-content ul li span {
  color: #fed056;
  font-weight: 600;
}
.product-quality .main-content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a4";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  opacity: 1;
}
.product-quality .main-content h4 {
  color: #fed056;
  font-size: 25px;
  font-family: "Damion", cursive;
}
.product-quality .main-content h5 {
  color: #fed056;
  font-family: "Damion", cursive;
}

.materiality {
  text-align: center;
}
.materiality h1 {
  color: #07B04C;
}
.materiality h4 {
  width: 90%;
  max-width: 1100px;
  margin-bottom: 30px;
}
.materiality .tabs {
  display: flex;
  margin-bottom: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.materiality .tabs li.selected {
  background: #07B04C;
  color: #fff;
}
.materiality .tabs li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.materiality .tabcontent {
  margin-bottom: 30px !important;
}
.materiality .tabcontent .card.fact {
  background: transparent;
  border: none;
  line-height: 1.2;
  padding-top: 30px;
  position: relative;
}
.materiality .tabcontent .card.fact img {
  position: absolute;
  opacity: 0.1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
}
.materiality .tabcontent .card.fact span {
  color: #fed056;
  font-weight: 600;
  font-size: 120%;
}
.materiality .tabcontent .img-wrapper {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: auto;
}
.materiality .tabcontent .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.materiality .tabcontent .welfare {
  text-align: left;
}
.materiality .tabcontent .main-content .speech {
  position: relative;
  max-width: 900px;
  background: #fff;
  border-radius: 30px;
  line-height: 2;
  padding: 45px;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
  color: #0B4032;
}
.materiality .tabcontent .main-content .speech:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  border-top: 40px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(342deg);
}
.materiality .tabcontent .main-content .speech:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #000;
  font-size: 20px;
  opacity: 0.3;
}
.materiality .tabcontent .main-content ul {
  margin-bottom: 20px;
  max-width: 850px;
}
.materiality .tabcontent .main-content ul li {
  font-size: 20px;
  position: relative;
  padding: 10px 5px 10px 30px;
}
.materiality .tabcontent .main-content ul li span {
  color: #fed056;
  font-weight: 600;
}
.materiality .tabcontent .main-content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a4";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  opacity: 1;
}
.materiality .tabcontent .main-content h3 {
  color: #07B04C;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.materiality .tabcontent .main-content h3:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #07B04C;
}
.materiality .tabcontent .main-content h4 {
  padding-top: 15px;
  text-align: right;
  color: #fed056;
  font-family: "Damion", cursive;
}

.community-initiatives {
  text-align: center;
}
.community-initiatives .content {
  background: rgba(0, 0, 0, 0.8);
}
.community-initiatives h1 {
  color: #07B04C;
}
.community-initiatives h4 {
  width: 90%;
  max-width: 1100px;
  margin-bottom: 30px;
}
.community-initiatives .tabs {
  display: flex;
  margin-bottom: 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.community-initiatives .tabs li.selected {
  background: #07B04C;
  color: #fff;
}
.community-initiatives .tabs li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.community-initiatives .tabcontent {
  margin-bottom: 30px !important;
}
.community-initiatives .tabcontent .card.fact {
  background: transparent;
  border: none;
  line-height: 1.2;
  padding-top: 30px;
  position: relative;
}
.community-initiatives .tabcontent .card.fact img {
  position: absolute;
  opacity: 0.1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -35%);
}
.community-initiatives .tabcontent .card.fact span {
  color: #fed056;
  font-weight: 600;
  font-size: 120%;
}
.community-initiatives .tabcontent .img-wrapper {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: auto;
}
.community-initiatives .tabcontent .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.community-initiatives .tabcontent .welfare {
  text-align: left;
}
.community-initiatives .tabcontent .main-content .speech {
  position: relative;
  max-width: 900px;
  background: #fff;
  border-radius: 30px;
  line-height: 2;
  padding: 45px;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
  color: #0B4032;
}
.community-initiatives .tabcontent .main-content .speech:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  border-top: 40px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
  border-right: 20px solid transparent;
  transform: rotate(342deg);
}
.community-initiatives .tabcontent .main-content .speech:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #000;
  font-size: 20px;
  opacity: 0.3;
}
.community-initiatives .tabcontent .main-content ul {
  margin-bottom: 20px;
  max-width: 850px;
}
.community-initiatives .tabcontent .main-content ul li {
  font-size: 20px;
  position: relative;
  padding: 10px 5px 10px 30px;
}
.community-initiatives .tabcontent .main-content ul li span {
  color: #fed056;
  font-weight: 600;
}
.community-initiatives .tabcontent .main-content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a4";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  opacity: 1;
}
.community-initiatives .tabcontent .main-content h3 {
  color: #07B04C;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.community-initiatives .tabcontent .main-content h3:after {
  position: absolute;
  content: "";
  width: 300px;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #07B04C;
}
.community-initiatives .tabcontent .main-content h4 {
  padding-top: 15px;
  text-align: right;
  color: #fed056;
  font-family: "Damion", cursive;
}

.downloads .row {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80%;
  margin: auto;
}
.downloads h3 {
  font-weight: 700;
}
.downloads .jumbo {
  text-align: left;
  font-size: 6em;
  color: #07B04C;
}
.downloads .jumbo span {
  display: block;
  font-size: 3em;
  padding: 40px 0px;
}
.downloads ul li {
  font-size: 0.6em;
  padding: 20px;
}
.downloads ul li a {
  font-size: 6em;
  color: #fff;
}
.downloads ul li:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f019";
  left: -30px;
  z-index: 5;
  font-size: 5.5em;
  color: #fed056;
}
.downloads ul li:nth-child(1) {
  top: 15%;
  left: 0px;
}
.downloads ul li:nth-child(2) {
  top: 25%;
  left: 40%;
}
.downloads ul li:nth-child(3) {
  top: 15%;
  right: 0%;
}
.downloads ul li:nth-child(4) {
  bottom: 15%;
  left: 0px;
}
.downloads ul li:nth-child(5) {
  bottom: 0%;
  left: 40%;
}
.downloads ul li:nth-child(6) {
  bottom: 15%;
  right: 0%;
}

.sections.desktop .left a:hover {
  opacity: 1 !important;
  color: #fed056 !important;
}

ul.arrow {
  margin-bottom: 20px;
  max-width: 100%;
}
ul.arrow li {
  font-size: 20px;
  position: relative;
  padding: 10px 5px 10px 30px;
}
ul.arrow li span {
  color: #fed056;
  font-weight: 600;
}
ul.arrow li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a4";
  position: absolute;
  left: 0px;
  top: 12px;
  color: #fff;
  font-size: 16px;
  opacity: 1;
}

@keyframes sticky {
  0% {
    transform: translate(0%, 0%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-100%, -100%) scale(0);
    opacity: 0;
    display: none;
  }
}
@media only screen and (max-width: 1400px) {
  h1 {
    font-size: 8em;
  }
  nav.sidebar .logo img {
    padding: 10px 0px;
    max-width: 180px;
  }
  .sidebar .mainMenu li {
    font-size: 16px;
    line-height: 2;
  }
  .sidebar .social {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .slider-glance img {
    max-width: 900px;
    margin: auto;
  }
  p,
  .p,
  blockquote {
    font-size: 16px;
  }
  h3 {
    font-size: 4.5em;
  }
  .slider-4 .card {
    max-width: 720px;
  }
  .slider-4 .card .card-title h3 {
    font-size: 5em;
  }
  .slider-4 .card .card-title h4 {
    font-size: 3em;
  }
  .slider-4 .speech {
    padding: 40px;
  }
  .container .wrap:not(.noSpaces),
  .container .wrap.spaceWrap,
  .container .wrap .spaceWrap {
    padding: 65px calc(3% + 15px);
    text-align: unset;
  }
  .product-quality h4 {
    width: 100%;
    margin-bottom: 15px;
    font-size: 3.5em;
  }
  .community-initiatives h4 {
    width: 100%;
    margin-bottom: 15px;
    font-size: 3.5em;
  }
  .slider-3.certifications .card {
    padding: 10px;
    border-radius: 4px;
    max-width: 150px;
  }
  .downloads ul li {
    font-size: 0.5em;
    padding: 10px;
  }
  .downloads .jumbo span {
    font-size: 2.5em;
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 600px) {
  .slider-1 .background {
    width: 100%;
  }
  .panel .compact {
    display: none;
  }
  nav .logo-wrapper {
    max-width: 100px;
  }
  nav .logo-wrapper.fixed {
    animation: sticky 2s;
    opacity: 0;
  }
  .slider-glance .wrap {
    padding: 50px 0px !important;
  }
  .slider-glance img {
    max-width: 100%;
  }
  .slider-glance .container {
    height: auto !important;
    padding: 100px 0px;
  }
  .slider-2 .background {
    width: 100%;
  }
  .slider-3 ul.margin-top-10 {
    margin-top: 20px !important;
  }
  .slider-3 ul li {
    position: unset;
    max-width: auto;
    padding: 20px 0px;
  }
  .slider-3 .jumbo {
    font-size: 5em;
    padding-top: 20px;
    text-align: left;
  }
  .slider-3 .jumbo span {
    display: block;
    font-size: 2em;
    padding: 20px 0px;
  }
  .slider-4 .wrap {
    padding: 50px 0px !important;
  }
  .slider-4 .speech {
    display: none;
  }
  .slider-4 .card-img {
    max-width: 75%;
    margin: auto;
    margin-bottom: 30px;
  }
  .slider-4 .card-title {
    text-align: center !important;
  }
  #director .reversed {
    flex-direction: column-reverse;
  }
  h1 {
    font-size: 5em;
  }
  p,
  .p,
  blockquote {
    font-size: 14px;
  }
  .human-rights .tabs {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .human-rights .tabs li {
    padding: 9px 20px;
    font-size: 10px;
  }
  .human-rights h3 {
    font-size: 20px;
  }
  .product-quality .tabs {
    display: block;
    max-width: 100%;
  }
  .product-quality .tabs li {
    padding: 9px 20px;
    font-size: 10px;
  }
  .product-quality .btn {
    font-size: 2.2em;
    padding: 7px 20px;
  }
  .product-quality .main-content h3 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product-quality .main-content ul li {
    font-size: 16px;
    padding: 7px 5px 7px 30px;
  }
  .product-quality .tabcontent {
    margin-bottom: 30px !important;
  }
  .product-quality h4 {
    font-size: 2.5em;
    line-height: 1.5;
  }
  .community-initiatives h1 {
    font-size: 30px;
    line-height: 1;
  }
  .community-initiatives .tabs {
    display: block;
    max-width: 100%;
  }
  .community-initiatives .tabs li {
    padding: 9px 20px;
    font-size: 10px;
  }
  .community-initiatives .btn {
    font-size: 2.2em;
    padding: 7px 20px;
  }
  .community-initiatives .tabcontent {
    margin-bottom: 30px !important;
  }
  .community-initiatives .tabcontent .main-content h3 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .community-initiatives .tabcontent .main-content h4 {
    text-align: center;
  }
  .community-initiatives .tabcontent .main-content ul li {
    font-size: 16px;
    padding: 7px 5px 7px 30px;
  }
  .community-initiatives .tabcontent .main-content .speech {
    padding: 25px;
  }
  .community-initiatives .tabcontent .main-content .speech:after {
    display: none;
  }
  .community-initiatives .tabcontent .main-content .speech:before {
    left: 10px;
    top: 4px;
    font-size: 14px;
  }
  .community-initiatives h4 {
    font-size: 2.5em;
    line-height: 1.5;
  }
  .downloads .margin-top-10 {
    margin-top: 20px !important;
  }
  .downloads .jumbo {
    font-size: 8em;
  }
  .downloads .jumbo span {
    font-size: 1.5em;
    padding: 20px 0px;
  }
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.songa {
  position: absolute;
  right: 3%;
  top: 48%;
  z-index: 999;
  font-size: 5em;
  opacity: 1 !important;
}
.songa:hover {
  opacity: 0.8 !important;
}

.rudi {
  position: absolute;
  left: 3%;
  top: 48%;
  z-index: 999;
  font-size: 5em;
  transition-duration: 300ms;
  opacity: 1 !important;
}
.rudi:hover {
  opacity: 0.8 !important;
}

.firstSlide .rudi {
  display: none;
}

.lastSlide .songa {
  display: none;
}

.slider-6 .content {
  background: rgba(11, 64, 50, 0.8);
}

@media (max-width: 767px) {
  .slider-1 .ctas {
    display: block;
  }
  .slider-1 .ctas .btn {
    width: 100%;
    margin: 5px;
  }
  .slider-1 h1 {
    font-size: 40px;
  }
  .slider-1 h3 {
    font-size: 3.5em;
  }
  .overview .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px 5px;
  }
  .slider-2.glance .card {
    height: 100%;
    padding: 0px;
    border: none;
    border-radius: 15px;
  }
  .slider-2.glance .overview .card img {
    max-width: 70px;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    mix-blend-mode: normal;
  }
  .slider-2.glance .overview .card .details h4 {
    font-size: 14px;
    font-weight: 600;
  }
  .slider-2.glance .overview .card .details p {
    font-size: 10px;
  }
  .slider-2.glance .text li {
    font-size: 12px;
  }
  .slider-2.glance .text li {
    position: relative;
    padding: 10px 0px;
    font-size: 14px;
  }
  .slider-3 .speech {
    display: none;
  }
  .speech {
    margin: 20px 0px;
    padding: 30px !important;
  }
  .speech:after {
    display: none;
  }
  .speech:before {
    left: 10px !important;
    top: 5px !important;
    font-size: 15px !important;
  }
  .container .wrap:not(.noSpaces), .container .wrap.spaceWrap, .container .wrap .spaceWrap {
    padding: 50px calc(3% + 10px);
  }
  .slider-3 .card-title {
    text-align: center;
    margin: 15px 0px;
  }
  .slider-3 h1 {
    margin-bottom: 20px;
  }
  .slider-3 .card-title h3 {
    font-size: 5em;
  }
  h4 {
    font-size: 3em;
  }
  ul.arrow li {
    font-size: 14px;
  }
  .songa, .rudi {
    display: none;
  }
  .product-quality .main-content ul li {
    font-size: 14px;
  }
  .product-quality .img-wrapper {
    padding-bottom: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .materiality .tabcontent .img-wrapper {
    padding-bottom: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  h1 {
    font-size: 7em;
  }
  .materiality .tabcontent .main-content ul li {
    font-size: 14px;
  }
  .tabs {
    display: block !important;
  }
  .tabs li {
    font-size: 10px;
    padding: 10px 0px;
  }
  .community-initiatives .tabcontent .img-wrapper {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100% !important;
  }
  .community-initiatives h4 {
    font-size: 3em;
  }
  .slider-8 .main-content .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .slider-8 ul {
    margin-top: 20px;
  }
}/*# sourceMappingURL=styles.css.map */