
.plyr input[type=range]:focus,
.plyr:focus {
  outline: 0;
}

.plyr .plyr__video-embed iframe,
.plyr__tooltip {
  pointer-events: none;
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}

.plyr {
  position: relative;
  max-width: 100%;
  min-width: 200px;
  font-family: Avenir, 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
  direction: ltr;
}

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

.plyr a,
.plyr button,
.plyr input,
.plyr label {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.plyr audio,
.plyr video {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: inherit;
}

.plyr input[type=range] {
  display: block;
  height: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  background: 0 0;
}

.plyr input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  background: 0 0;
  border: 0;
  border-radius: 4px;
  -webkit-user-select: none;
  user-select: none;
}

.plyr input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -4px;
  position: relative;
  height: 16px;
  width: 16px;
  background: #f9cc84;
  border: 2px solid transparent;
  border-radius: 100%;
  transition: background .2s ease, border .2s ease, transform .2s ease;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.plyr input[type=range]::-moz-range-track {
  height: 8px;
  background: 0 0;
  border: 0;
  border-radius: 4px;
  -moz-user-select: none;
  user-select: none;
}

.plyr input[type=range]::-moz-range-thumb {
  position: relative;
  height: 16px;
  width: 16px;
  background: #f9cc84;
  border: 2px solid transparent;
  border-radius: 100%;
  transition: background .2s ease, border .2s ease, transform .2s ease;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.plyr input[type=range]::-ms-track {
  height: 8px;
  background: 0 0;
  border: 0;
  color: transparent;
}

.plyr input[type=range]::-ms-fill-upper {
  height: 8px;
  background: 0 0;
  border: 0;
  border-radius: 4px;
  -ms-user-select: none;
  user-select: none;
}

.plyr input[type=range]::-ms-fill-lower {
  height: 8px;
  border: 0;
  border-radius: 4px;
  -ms-user-select: none;
  user-select: none;
  background: #f9cc84;
}

.plyr input[type=range]::-ms-thumb {
  position: relative;
  height: 16px;
  width: 16px;
  background: #f9cc84;
  border: 2px solid transparent;
  border-radius: 100%;
  transition: background .2s ease, border .2s ease, transform .2s ease;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  margin-top: 0;
}

.plyr input[type=range]::-ms-tooltip {
  display: none;
}

.plyr input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr input[type=range].tab-focus:focus {
  outline-offset: 3px;
}

.plyr--video input[type=range].tab-focus:focus {
  outline: rgba(255, 255, 255, 0.5) dotted 1px;
}

.plyr--audio input[type=range].tab-focus:focus {
  outline: rgba(86, 93, 100, 0.5) dotted 1px;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute !important;
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
}

.plyr__video-wrapper {
  position: relative;
  background: #000;
  border-radius: inherit;
}

.plyr__video-embed {
  padding-bottom: 56.25%;
  height: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}

.plyr__video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.plyr__video-embed>div {
  position: relative;
  padding-bottom: 200%;
  transform: translateY(-35.95%);
}

.plyr video::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(-40px);
  transition: transform .3s ease;
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
}

.plyr__captions span {
  border-radius: 2px;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 150%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 768px) {
  .plyr__captions {
    font-size: 24px;
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr--hide-controls .plyr__captions {
  transform: translateY(-15px);
}

@media (min-width: 1024px) {
  .plyr--fullscreen-active .plyr__captions {
    font-size: 32px;
  }
}

.plyr::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.plyr__controls .plyr__progress,
.plyr__controls .plyr__time,
.plyr__controls>button {
  margin-left: 5px;
}

.plyr__controls .plyr__progress:first-child,
.plyr__controls .plyr__time:first-child,
.plyr__controls>button:first-child {
  margin-left: 0;
}

.plyr__controls .plyr__volume {
  margin-left: 5px;
}

.plyr__controls [data-plyr=pause] {
  margin-left: 0;
}

.plyr__controls button {
  position: relative;
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: visible;
  vertical-align: middle;
  padding: 7px;
  border: 0;
  background: 0 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, opacity .3s ease;
  color: inherit;
}

.plyr__controls button svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.plyr__controls button:focus {
  outline: 0;
}

.plyr__controls .icon--captions-on,
.plyr__controls .icon--exit-fullscreen,
.plyr__controls .icon--muted {
  display: none;
}

@media (min-width: 480px) {
  .plyr__controls .plyr__progress,
  .plyr__controls .plyr__time,
  .plyr__controls>button {
    margin-left: 10px;
  }
}

.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
}

.plyr--video .plyr__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 50px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  color: #fff;
  transition: opacity .3s ease;
}

.plyr--video .plyr__controls button.tab-focus:focus,
.plyr--video .plyr__controls button:hover {
  background: #f9cc84;
  color: #fff;
}

.plyr--audio .plyr__controls {
  padding: 10px;
  border-radius: inherit;
  background: #fff;
  border: 1px solid #dbe3e8;
  color: #565D64;
}

.plyr--audio .plyr__controls button.tab-focus:focus,
.plyr--audio .plyr__controls button:hover,
.plyr__play-large {
  background: #f9cc84;
  color: #fff;
}

.plyr__play-large {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  border: 4px solid currentColor;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  transition: all .3s ease;
}

.plyr__play-large svg {
  position: relative;
  left: 2px;
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.plyr__play-large:focus {
  outline: rgba(255, 255, 255, 0.5) dotted 1px;
}

.plyr .plyr__play-large {
  display: inline-block;
}

.plyr--audio .plyr__play-large,
.plyr--playing .plyr__controls [data-plyr=play],
.plyr__controls [data-plyr=pause] {
  display: none;
}

.plyr--playing .plyr__play-large {
  opacity: 0;
  visibility: hidden;
}

.plyr--playing .plyr__controls [data-plyr=pause] {
  display: inline-block;
}

.plyr--captions-active .plyr__controls .icon--captions-on,
.plyr--fullscreen-active .icon--exit-fullscreen,
.plyr--muted .plyr__controls .icon--muted {
  display: block;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr--captions-active .plyr__controls .icon--captions-on+svg,
.plyr--fullscreen-active .icon--exit-fullscreen+svg,
.plyr--muted .plyr__controls .icon--muted+svg {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__tooltip {
  position: absolute;
  z-index: 2;
  bottom: 100%;
  margin-bottom: 10px;
  padding: 5px 7.5px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform .2s .1s ease, opacity .2s .1s ease;
}

.plyr__tooltip::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.7);
  border-left: 4px solid transparent;
  z-index: 2;
}

.plyr button.tab-focus:focus .plyr__tooltip,
.plyr button:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr button:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls button:first-child .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls button:first-child .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls button:last-child .plyr__tooltip {
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls button:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls button:first-child .plyr__tooltip--visible,
.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:first-child:hover .plyr__tooltip,
.plyr__controls button:last-child .plyr__tooltip--visible,
.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,
.plyr__controls button:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr__progress {
  position: relative;
  display: none;
  -ms-flex: 1;
  flex: 1;
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
}

.plyr__progress input[type=range]::-moz-range-track {
  background: 0 0;
}

.plyr__progress input[type=range]::-ms-fill-upper {
  background: 0 0;
}

.plyr__progress .plyr__tooltip {
  left: 0;
}

.plyr .plyr__progress {
  display: inline-block;
}

.plyr__progress--buffer,
.plyr__progress--played,
.plyr__volume--display {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin: -1px 0 0;
  padding: 0;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 100px;
}

.plyr__progress--buffer::-webkit-progress-bar,
.plyr__progress--played::-webkit-progress-bar,
.plyr__volume--display::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress--buffer::-webkit-progress-value,
.plyr__progress--played::-webkit-progress-value,
.plyr__volume--display::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 8px;
}

.plyr__progress--buffer::-moz-progress-bar,
.plyr__progress--played::-moz-progress-bar,
.plyr__volume--display::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 8px;
}

.plyr__progress--buffer::-ms-fill,
.plyr__progress--played::-ms-fill,
.plyr__volume--display::-ms-fill {
  border-radius: 100px;
}

.plyr__progress--played,
.plyr__volume--display {
  z-index: 1;
  color: #f9cc84;
  background: 0 0;
  transition: none;
}

.plyr__progress--played::-webkit-progress-value,
.plyr__volume--display::-webkit-progress-value {
  min-width: 8px;
  max-width: 99%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: none;
}

.plyr__progress--played::-moz-progress-bar,
.plyr__volume--display::-moz-progress-bar {
  min-width: 8px;
  max-width: 99%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: none;
}

.plyr__progress--played::-ms-fill,
.plyr__volume--display::-ms-fill {
  display: none;
}

.plyr__progress--buffer::-webkit-progress-value {
  transition: width .2s ease;
}

.plyr__progress--buffer::-moz-progress-bar {
  transition: width .2s ease;
}

.plyr__progress--buffer::-ms-fill {
  transition: width .2s ease;
}

.plyr--video .plyr__progress--buffer,
.plyr--video .plyr__volume--display {
  background: white;
}

.plyr--video .plyr__progress--buffer {
  color: rgba(249, 204, 132, 0.25);
}

.plyr--audio .plyr__progress--buffer,
.plyr--audio .plyr__volume--display {
  background: rgba(198, 214, 219, 0.66);
}

.plyr--audio .plyr__progress--buffer {
  color: rgba(198, 214, 219, 0.66);
}

.plyr--loading .plyr__progress--buffer {
  animation: plyr-progress 1s linear infinite;
  background-size: 25px 25px;
  background-repeat: repeat-x;
  background-image: linear-gradient(-45deg, rgba(249, 204, 132, 0.15) 25%, transparent 25%, transparent 50%, rgba(249, 204, 132, 0.15) 50%, rgba(249, 204, 132, 0.15) 75%, transparent 75%, transparent);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress--buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress--buffer {
  background-color: rgba(198, 214, 219, 0.66);
}

.plyr__time {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.plyr__time+.plyr__time {
  display: none;
}

@media (min-width: 768px) {
  .plyr__time+.plyr__time {
    display: inline-block;
  }
}

.plyr__time+.plyr__time::before {
  content: '\2044';
  margin-right: 10px;
}

.plyr__volume {
  display: none;
}

.plyr .plyr__volume {
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.plyr .plyr__volume input[type=range] {
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr .plyr__volume {
    display: block;
    max-width: 60px;
  }
}

@media (min-width: 768px) {
  .plyr .plyr__volume {
    max-width: 100px;
  }
}

.plyr--is-ios .plyr__volume,
.plyr--is-ios [data-plyr=mute] {
  display: none !important;
}

.plyr--fullscreen-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 10000000;
  background: #000;
  border-radius: 0 !important;
}

.plyr--fullscreen-active video {
  height: 100%;
}

.plyr--fullscreen-active .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr--fullscreen-active .plyr__video-embed {
  overflow: visible;
}

.plyr--fullscreen-active .plyr__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.uc-module .browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.uc-module .hidden {
  display: none !important;
}

.uc-module .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.uc-module .visuallyhidden.focusable:active,
.uc-module .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.uc-module .invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.uc-module .clearfix:before,
.uc-module .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.uc-module .uc-module .clearfix:after {
  clear: both;
}

.uc-module .no-b-padding {
  padding-bottom: 0px !important;
}

.uc-module .no-margin {
  margin: 0px !important;
}

.uc-module .heading-space3 {
  margin: 0px 0px 30px 0px !important;
}

.uc-module .heading-space {
  margin: 0px 0px 60px 0px !important;
}

.u-right {
  float: right;
}

.u-left {
  float: left;
}

.uc-module .main-nav:before,
.uc-module .contentSec .related-link>ul>li a:after,
.sec-tags .article-tag .article-content .readmore:after {
  font-family: FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.plyr--hide-controls .plyr__controls:hover {
  opacity: 1;
  pointer-events: auto;
}

.uc-module {
  position: relative;
  background: #ffffff;
  font-size: 1.1em;
  overflow: hidden;
}

.uc-module h1,
.uc-module h2,
.uc-module h3,
.uc-module h4,
.uc-module h5,
.uc-module h6,
.uc-module p,
.uc-module span,
.uc-module li,
.uc-module div,
.uc-module a {
  font-family: nespressoLucas, sans-serif !important;
}

.uc-module .com-container,
.uc-module .container-fluid,
.uc-module .container,
.uc-module .container-inner,
.uc-module .container-content {
  width: auto;
}

.uc-module .container-fluid {
  padding: 0px 15px;
  margin: 0px auto;
}

@media (min-width: 768px) {
  .uc-module .container-fluid {
    padding: 0px;
  }
}

.uc-module .container {
  max-width: 996px;
  margin: 0px auto;
  position: relative;
}

@media (min-width: 768px) {
  .uc-module .container-inner {
    padding-left: 170px;
  }
}

.uc-module .container-content {
  max-width: 654px;
  position: relative;
}

.uc-module .container-content .side_block.side-float {
  margin-right: -110px;
}

@media (max-width: 991px) {
  .uc-module .container-content .side_block.side-float {
    margin-right: 0;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .uc-module .container-content .side_block.side-float {
    width: 20em;
  }
}

.uc-module .top-bar {
  background-color: #000;
}

.uc-module .top-bar ul {
  display: none;
}

.uc-module .top-bar .logo a {
  display: block;
  text-align: center;
}

@media (max-width: 767px) {
  .uc-module .top-bar .logo img {
    max-width: 100px;
  }
  .uc-module .top-bar .logo a {
    padding: 10px 0px;
  }
}

.uc-module .top-bar .bck-btn {
  float: left;
}

.uc-module .top-bar .bck-btn a {
  display: block;
  padding: 6px 0px;
}

@media (max-width: 767px) {
  .uc-module .top-bar .bck-btn {
    width: 40px;
  }
}

.uc-module .top-bar .cart-btn {
  float: right;
}

.uc-module .top-bar .cart-btn a {
  display: block;
  padding: 6px 0px;
}

@media (max-width: 767px) {
  .uc-module .top-bar .cart-btn {
    width: 40px;
  }
}

@media (min-width: 768px) {
  .uc-module .top-bar .bck-btn,
  .uc-module .top-bar .cart-btn {
    display: none;
  }
  .uc-module .top-bar .logo a {
    display: inline-block;
    padding: 11px 0px;
  }
  .uc-module .top-bar ul {
    float: right;
    display: block;
    padding: 11px 0px;
  }
  .uc-module .top-bar ul li {
    display: inline-block;
    margin-left: 15px;
  }
}

.uc-module .main-nav {
  background-color: #000;
  min-height: 40px;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  z-index: 999;
  padding: 0;
}

.uc-module .main-nav:before {
  display: inline-block;
  font-size: 1.75em;
  content: "\f107";
  position: absolute;
  right: 15px;
  top: 3px;
  color: #fff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all .3s;
}

@media (min-width: 768px) {
  .uc-module .main-nav {
    padding: 0 15px;
  }
}

.uc-module .main-nav .logo {
  font-size: 1.25em;
  color: #fff;
  font-weight: 600;
  float: left;
  letter-spacing: 0.05em;
}

.uc-module .main-nav .logo a {
  color: #fff;
  display: inline-block;
  padding: 8px 0px 8px 15px;
}

@media (min-width: 768px) {
  .uc-module .main-nav .logo a {
    padding: 16px 0px;
  }
}

.uc-module .main-nav .logo a span {
  font-weight: 300;
}

.uc-module .main-nav .main-links-wrap {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0px;
  background-color: #171717;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .uc-module .main-nav .main-links-wrap {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background-color: transparent;
    float: right;
    padding-top: 0px;
    display: block;
    width: auto;
    height: auto;
  }
}

.uc-module .main-nav .main-links {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.uc-module .main-nav .main-links>li {
  opacity: 0;
  font-size: 1.25em;
  transition: all .3s;
  transition-delay: .2s;
}

.uc-module .main-nav .main-links>li:nth-child(2) {
  transition-delay: .1s;
}

.uc-module .main-nav .main-links>li:nth-child(3) {
  transition-delay: .0s;
}

.uc-module .main-nav .main-links>li a {
  color: #fff;
  text-transform: uppercase;
  display: block;
  opacity: 0.75;
  padding: 20px 15px 20px 15px;
  margin: 0px 0px 0px 0px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.uc-module .main-nav .main-links>li a:before {
  content: '';
  position: absolute;
  bottom: 0px;
  height: 1px;
  width: 30px;
  left: 50%;
  margin-left: -15px;
  background-color: #404040;
}

.uc-module .main-nav .main-links>li a:hover,
.uc-module .main-nav .main-links>li a .active,
.uc-module .main-nav .main-links>li a:focus {
  color: #fff;
  opacity: 1;
}

.uc-module .main-nav .main-links>li:last-child a {
  border-bottom: none;
  margin: 0px;
}

.uc-module .main-nav .main-links>li:last-child a:before {
  display: none;
}

@media (min-width: 768px) {
  .uc-module .main-nav {
    min-height: 54px;
    top: 0;
  }
  .uc-module .main-nav:before {
    display: none;
  }
  .uc-module .main-nav .logo {
    font-size: 1.75em;
  }
  .uc-module .main-nav .logo a {
    padding: 16px 0px;
  }
  .uc-module .main-nav .main-links {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    max-height: none;
    overflow: hidden;
  }
  .uc-module .main-nav .main-links>li {
    opacity: 1;
    display: inline-block;
    margin-left: 15px;
    font-size: 1em;
  }
  .uc-module .main-nav .main-links>li a {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    opacity: 0.75;
    padding: 19px 0px;
    display: inline-block;
    margin: 0px;
    border-bottom: none;
    text-align: left;
    letter-spacing: 0.07em;
  }
  .uc-module .main-nav .main-links>li a:before {
    width: 100%;
    bottom: 12px;
    left: 0px;
    margin-left: 0px;
    background-color: transparent;
  }
  .uc-module .main-nav .main-links>li a:hover,
  .uc-module .main-nav .main-links>li a.active,
  .uc-module .main-nav .main-links>li a:focus {
    color: #fff;
    opacity: 1;
  }
  .uc-module .main-nav .main-links>li a:hover:before,
  .uc-module .main-nav .main-links>li a.active:before,
  .uc-module .main-nav .main-links>li a:focus:before {
    background-color: #fff;
  }
  .uc-module .main-nav .main-links>li:first-child {
    margin-left: 0px;
  }
  .uc-module .main-nav .main-links>li:last-child a:before {
    display: block;
  }
}

.uc-module .bg-cover,
.uc-module .main-banner {
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

.uc-module .v_home {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .uc-module .v_home {
    font-size: 13px;
  }
}

.uc-module .main-banner {
  display: table;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 51.2em;
  padding: 0;
}

.uc-module .main-banner:before {
  /*background-color: rgba(0, 0, 0, 0.5);*/
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
}

.uc-module .main-banner .bg-video {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.uc-module .main-banner .bg-video:before {
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) 50%);
}

.uc-module .main-banner .bg-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .uc-module .main-banner .bg-video {
    display: none;
  }
}

.uc-module .main-banner.vidoe-banner h1 {
  font-size: 2.1875em;
  letter-spacing: 0.15em;
  padding: 30px 0;
}

.uc-module .main-banner.vidoe-banner p {
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .uc-module .main-banner.vidoe-banner h1 {
    font-size: 3.4375em;
    letter-spacing: 0.27em;
    max-width: 996px;
    width: auto;
    margin: 0px auto;
  }
  .uc-module .main-banner.vidoe-banner p {
    letter-spacing: 0.02em;
  }
}

@media (min-width: 768px) {
  .uc-module .main-banner.landing-banner h1 {
    font-size: 3.5em;
    letter-spacing: 0.25em;
  }
}

@media (min-width: 768px) {
  .uc-module .main-banner.landing-banner p {
    width: 50%;
    margin: 30px auto 0px auto;
  }
}

.uc-module .main-banner h1 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 2.1875em;
  margin: 0px;
  line-height: 1.25em;
  letter-spacing: 0.1em;
}

.uc-module .main-banner h1 span {
  font-weight: 300;
}

@media (min-width: 768px) {
  .uc-module .main-banner h1 {
    font-size: 2.8125em;
  }
}

.uc-module .main-banner p {
  font-size: 1.375em;
  line-height: 1.25em;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .uc-module .main-banner p {
    width: 65%;
    max-width: 600px;
    margin: 20px auto 0px auto;
    font-size: 1.6875em;
    line-height: 1.25em;
  }
}

.uc-module .main-banner .video-link {
  display: inline-block;
  font-size: 1.1875em;
  text-transform: uppercase;
  margin-top: 35px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}

.uc-module .main-banner .video-link i {
  font-size: 1.125em;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  width: 33px;
  height: 33px;
  line-height: 34px;
  text-align: center;
  color: #000;
  background-color: #fff;
  border-radius: 100%;
  padding-left: 2px;
}

@media (max-width: 767px) {
  .uc-module .main-banner .video-link i {
    font-size: 0.875em;
  }
}

@media (max-width: 480px) {
  .uc-module .main-banner .video-link {
    margin-top: 25px;
  }
}

.uc-module .main-banner .content-box {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 100;
}

@media (max-width: 991px) {
  .uc-module .main-banner .content-box {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .uc-module .carousel-1 {
    margin-bottom: 4px;
  }
}

.uc-module .carousel-1.slick-slider {
  width: 170%;
}

.uc-module .carousel-1.slick-slider .slick-slide {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.uc-module .carousel-1.slick-slider .slick-list {
  overflow: visible;
}

.uc-module .carousel-1.slick-slider .slick-next {
  position: absolute;
  top: 0;
  right: 50%;
  width: 30px;
  width: 8.8%;
  height: 100%;
  background: #fff;
  outline: none;
  box-shadow: none;
  border: none;
  text-indent: -999px;
  overflow: hidden;
  color: transparent;
  opacity: 0.5;
  padding: 0;
}

.uc-module .carousel-1.slick-slider .slick-prev {
  display: none !important;
}

.uc-module .carousel-1.slick-slider.is-two {
  width: 100%;
  padding-left: 15vw;
}

.uc-module .carousel-1.slick-slider.is-two .slick-next {
  width: 15vw;
  right: auto;
  left: 0;
}

.uc-module .cat-links {
  display: none;
}

@media (min-width: 768px) {
  .uc-module .cat-links {
    display: table;
    width: 100%;
    background-color: #000;
  }
  .uc-module .cat-links a {
    display: table;
    position: relative;
    width: 90%;
    height: 100%;
    color: #fff;
    padding: .75em 1em 0;
    text-decoration: none !important;
  }
  .uc-module .cat-links a:hover .img-box:before {
    opacity: .5;
  }
  .uc-module .cat-links .img-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
  }
  .uc-module .cat-links .img-box:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .25s;
    opacity: 1;
  }
  .uc-module .cat-links .content-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
  }
  .uc-module .cat-links .content-box h3 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0px;
    font-size: 1.7em;
  }
  .uc-module .cat-links .content-box h3 small {
    display: block;
    margin-top: 15px;
    font-size: 0.6em;
    position: relative;
    font-weight: 400;
    color: #ffffff;
  }
  .uc-module .cat-links .content-box h3 small:after {
    font-family: FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f105";
    display: inline-block;
    margin-left: 20px;
    font-size: 20px;
    vertical-align: sub;
  }
  .uc-module .cat-links .inner {
    width: 33.33%;
    height: 200px;
    float: left;
  }
}

.uc-module .box-txt {
  margin: 0px;
  position: relative;
  height: 345px;
  height: 107.8vw;
  background-color: #000;
}

.uc-module .box-txt a {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
}

.uc-module .box-txt a:before {
  background: rgba(255, 255, 255, 0);
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
  /* opacity: 0.3; */
  transition: all .3s;
}

.uc-module .box-txt a:hover {
  /* .img-box{
					-webkit-filter: brightness(1.25);
				    filter: brightness(1.25);
				    -webkit-transform: translate(-50%,-50%) scale(1.025);
				    transform: translate(-50%,-50%) scale(1.025);
				} */
}

.uc-module .box-txt a:hover:before {
  background: rgba(255, 255, 255, 0.2);
}

.uc-module .box-txt .img-box {
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.uc-module .box-txt.btn-txt-box h3 {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.15em;
  margin: 0px;
}

.uc-module .box-txt.btn-txt-box a .table-cell {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.uc-module .box-txt.btn-txt-box a:hover .caption .table-cell {
  height: 14vw;
}

.uc-module .box-txt.btn-txt-box .caption {
  text-align: center;
  font-weight: 200;
  font-size: 1.75em;
  text-transform: capitalize;
  letter-spacing: 0.07em;
}

.uc-module .box-txt.btn-txt-box .caption .table-cell {
  height: 12.8vw;
}

@media (max-width: 767px) {
  .uc-module .box-txt.btn-txt-box .caption .table-cell {
    height: auto;
  }
}

.uc-module .box-txt.btn-txt-box .cart-btn {
  display: inline-block;
  margin-top: 15px;
}

.uc-module .box-txt .caption {
  position: absolute;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.28em;
  z-index: 100;
}

.uc-module .box-txt .caption span,
.uc-module .box-txt .caption small {
  font-weight: 200;
  font-size: inherit;
}

.uc-module .box-txt a .caption .table-cell {
  width: 92%;
}

@media (min-width: 768px) {
  .uc-module .box-txt {
    position: absolute;
  }
  .uc-module .box-txt a:hover .caption .table-cell {
    height: 6vw;
  }
  .uc-module .box-txt a .caption {
    padding: 0px 15px;
  }
  .uc-module .box-txt a .caption .table-cell {
    display: table;
    transition: .5s;
    height: 5.15vw;
  }
  .uc-module .box-txt a .caption .table-cell .v-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 0;
  }
}

@media (min-width: 768px) {
  .uc-module .col-1-row-2-right {
    padding-top: 40%;
    position: relative;
  }
  .uc-module .col-1-row-2-right .box-1 {
    width: 50%;
    height: 100%;
    top: 0px;
    left: 0px;
  }
  .uc-module .col-1-row-2-right .box-2 {
    width: 50%;
    height: 50%;
    right: 0px;
    top: 0px;
  }
  .uc-module .col-1-row-2-right .box-3 {
    width: 50%;
    height: 50%;
    right: 0px;
    bottom: 0px;
  }
}

@media (min-width: 768px) {
  .uc-module .col-1-row-2-left {
    padding-top: 40%;
    position: relative;
  }
  .uc-module .col-1-row-2-left .box-1 {
    width: 50%;
    height: 100%;
    top: 0px;
    right: 0px;
  }
  .uc-module .col-1-row-2-left .box-2 {
    width: 50%;
    height: 50%;
    left: 0px;
    top: 0px;
  }
  .uc-module .col-1-row-2-left .box-3 {
    width: 50%;
    height: 50%;
    left: 0px;
    bottom: 0px;
  }
}

@media (min-width: 768px) {
  .uc-module .col-5-small {
    padding-top: 25%;
    position: relative;
  }
  .uc-module .col-5-small .box-txt {
    height: 100%;
    top: 0px;
    width: 20%;
  }
  .uc-module .col-5-small .box-1 {
    left: 0%;
  }
  .uc-module .col-5-small .box-2 {
    left: 20%;
  }
  .uc-module .col-5-small .box-3 {
    left: 40%;
  }
  .uc-module .col-5-small .box-4 {
    left: 60%;
  }
  .uc-module .col-5-small .box-5 {
    left: 80%;
  }
}

@media (min-width: 768px) {
  .uc-module .col-3-mid {
    padding-top: 32%;
    position: relative;
  }
  .uc-module .col-3-mid .box-txt {
    height: 100%;
    top: 0px;
    width: 33.33%;
  }
  .uc-module .col-3-mid .box-1 {
    left: 0%;
  }
  .uc-module .col-3-mid .box-2 {
    left: 33.33%;
  }
  .uc-module .col-3-mid .box-3 {
    left: 66.66%;
  }
}

@media (min-width: 768px) {
  .uc-module .col-3-mid.other-links {
    padding-top: 34%;
  }
  .uc-module .col-3-mid.other-links .box-txt {
    text-align: center;
  }
}

.uc-module .video-thumb {
  display: block;
  margin: 20px auto;
  max-width: 700px;
  background: #000 no-repeat center center/cover;
  cursor: pointer;
  position: relative;
}

@media (max-width: 768px) {
  .uc-module .video-thumb {
    margin: 40px auto;
  }
}

.uc-module .video-thumb:after {
  content: '';
  display: block;
  padding-top: 56.31%;
  background: rgba(0, 0, 0, 0.5);
}

.uc-module .video-thumb:before {
  content: "\f144";
  display: block;
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 6.25em;
  line-height: 1em;
  color: #fff;
}

.uc-module .video-thumb:hover:after {
  background: rgba(0, 0, 0, 0.1);
}

.uc-module .video-thumb span {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.875em;
  font-weight: 100;
  line-height: 1.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .uc-module .col-2-mid {
    padding-top: 28%;
    position: relative;
  }
  .uc-module .col-2-mid .box-txt {
    height: 100%;
    top: 0px;
    width: 50%;
  }
  .uc-module .col-2-mid .box-1 {
    left: 0%;
  }
  .uc-module .col-2-mid .box-2 {
    right: 0%;
  }
}

@media (min-width: 768px) {
  .uc-module .col-2-mid2 {
    padding-top: 34%;
    position: relative;
  }
  .uc-module .col-2-mid2 .box-txt {
    height: 100%;
    top: 0px;
    width: 50%;
  }
  .uc-module .col-2-mid2 .box-1 {
    left: 0%;
  }
  .uc-module .col-2-mid2 .box-2 {
    right: 0%;
  }
}

.uc-module .fullsize-img {
  margin: 10px 0 0px 0;
}

.uc-module .fullsize-img>div {
  position: relative;
  height: 45vw;
  clear: both;
}

.uc-module .fullsize-img .v_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.uc-module .fullsize-img .v_visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.uc-module .fullsize-img figcaption {
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 1.5em;
  margin-top: 1em;
  margin-left: 15px;
  padding-right: 20px;
}

.uc-module .fullsize-img figcaption p {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: .07143em;
  font-weight: 300;
  color: #a2a2a2;
}

.uc-module .fullsize-img figcaption:before {
  content: "";
  height: 95%;
  width: .4em;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .uc-module .fullsize-img figcaption {
    width: 50%;
    margin-left: calc((100% - 43.71429em)/2);
  }
}

.uc-module .fullsize-img.b-spac {
  margin-bottom: 30px;
}

.uc-module .fullsize-img.t-spac {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .uc-module .fullsize-img.t-b-spac {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .uc-module .fullsize-img.b-spac {
    margin-bottom: 60px;
  }
  .uc-module .fullsize-img.t-spac {
    margin-top: 60px;
  }
}

.uc-module .back-to-top {
  cursor: pointer;
  color: #000;
  font-size: 1.15em;
  padding: 15px 0px 22px 0px;
  text-align: center;
  transition: all .3s;
}

.uc-module .back-to-top i {
  font-size: 2em;
  transition: all .3s;
  position: relative;
  top: 0px;
  color: #7f7f7f;
}

.uc-module .back-to-top>span {
  display: inline-block;
}

.uc-module .back-to-top>span>span {
  display: block;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.1em;
  transition: all .3s;
}

.uc-module .back-to-top>span:hover i,
.uc-module .back-to-top>span:hover span {
  color: #986f38;
}

.uc-module .back-to-top>span:hover i {
  top: -5px;
}

.uc-module .social-list {
  text-align: center;
  margin: 25px 0px 5px 0px;
}

@media (min-width: 768px) {
  .uc-module .social-list {
    position: absolute;
    top: 55px;
    left: -5px;
    width: 80px;
    margin: 0px;
  }
  .uc-module .social-list a {
    display: block;
    margin: 0px 5px 12px 5px;
  }
}

@media (min-width: 991px) {
  .uc-module .social-list {
    position: absolute;
    top: 55px;
    left: -20px;
    width: 80px;
    margin: 0px;
  }
  .uc-module .social-list a {
    display: block;
    margin: 0px 5px 12px 5px;
  }
}

@media (min-width: 1280px) {
  .uc-module .social-list {
    position: absolute;
    top: 55px;
    left: -54px;
    width: 80px;
    margin: 0px;
  }
  .uc-module .social-list a {
    display: block;
    margin: 0px 5px 12px 5px;
  }
}

.uc-module .social-list a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  margin: 0px 15px 0px 15px;
}

@media (max-width: 767px) {
  .uc-module .social-list a {
    margin: 0px 10px 0px 10px;
  }
}

.uc-module .social-list a i {
  font-size: 2.1875em;
}

@media (max-width: 767px) {
  .uc-module .social-list a i {
    font-size: 2.1em;
  }
}

.uc-module .social-list a.en-icn i {
  font-size: 2em;
}

@media (max-width: 767px) {
  .uc-module .social-list a.en-icn {
    font-size: 1em;
  }
}

.uc-module .social-list a.en-icn:hover {
  color: #986f38;
}

.uc-module .social-list a.fb-icn:hover {
  color: #3b5998;
}

.uc-module .social-list a.tw-icn:hover {
  color: #00aced;
}

.uc-module .social-list a.pt-icn:hover {
  color: #C92228;
}

.uc-module .social-list a.gp-icn i {
  font-size: 1.625em;
}

.uc-module .social-list a.gp-icn:hover {
  color: #d34836;
}

.uc-module .social-list a.wa-icn:hover {
  color: #25d366;
}

.uc-module .contentSec {
  padding: 30px 0px 30px 0px;
  position: relative;
}

@media (min-width: 768px) {
  .uc-module .contentSec {
    padding: 50px 230px 50px 80px;
  }
  .uc-module .contentSec h2 {
    width: 95%;
  }
  .uc-module .contentSec .related-link>ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    position: absolute;
    top: 0px;
    right: -220px;
    width: 200px;
  }
}

@media (min-width: 991px) {
  .uc-module .contentSec {
    padding: 50px 220px 50px 40px;
  }
  .uc-module .contentSec h2 {
    width: 95%;
  }
  .uc-module .contentSec .related-link>ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    position: absolute;
    top: 0px;
    right: -220px;
    width: 200px;
  }
}

@media (min-width: 1280px) {
  .uc-module .contentSec {
    padding: 50px 170px 50px 0;
  }
  .uc-module .contentSec h2 {
    width: 95%;
  }
  .uc-module .contentSec .related-link>ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    position: absolute;
    top: 0px;
    right: -265px;
    width: 225px;
  }
}

.uc-module .contentSec .related-link {
  padding-bottom: 15px;
  padding-top: 15px;
}

@media (max-width: 767px) {
  .uc-module .contentSec .related-link {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}

.uc-module .contentSec .related-link strong em {
  font-style: normal;
  font-weight: normal;
}

.uc-module .contentSec .related-link>ul {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .uc-module .contentSec .related-link>ul {
    margin-left: 0;
  }
}

.uc-module .contentSec .related-link>ul>li {
  font-size: 1.0625em;
  line-height: 18px;
  border-top: 6px solid #cccccc;
  padding-top: 15px;
  margin-top: 15px;
  letter-spacing: 0.03em;
}

.uc-module .contentSec .related-link>ul>li a {
  color: #717171;
  position: relative;
  display: inline-block;
}

.uc-module .contentSec .related-link>ul>li a:hover,
.uc-module .contentSec .related-link>ul>li a.active {
  color: #986f38;
}

.uc-module .contentSec .related-link>ul>li a:hover:after,
.uc-module .contentSec .related-link>ul>li a.active:after {
  color: #986f38;
}

.uc-module .contentSec .related-link>ul>li a:after {
  content: "\f105";
  display: inline-block;
  margin-left: 8px;
  font-size: 1.125em;
  vertical-align: bottom;
}

.uc-module .contentSec .related-link>ul>li:first-child {
  color: #747474;
  border-top: none;
  padding-top: 0px;
  margin-top: 0px;
  font-weight: 600;
  font-size: 1.25em;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.uc-module h5 {
  color: #a2a2a2;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 300;
  font-size: 1.95em;
  text-align: center;
  margin-bottom: 10px;
  padding: 30px 20px;
}

@media (max-width: 767px) {
  .uc-module h5 {
    font-size: 1.5em;
  }
}

.uc-module h6 {
  color: #a2a2a2;
  font-size: 2.1875em;
  letter-spacing: 0.03em;
  line-height: 38px;
  font-weight: 200;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .uc-module h6 {
    font-size: 1.375em;
    line-height: 1.6em;
  }
}

.uc-module h6 a {
  font-weight: 500;
}

.uc-module h6 small {
  display: block;
  font-size: .75em;
  font-weight: 300;
  display: block;
}

.uc-module h6 small:before {
  content: "\2014 ";
  margin-right: 5px;
}

.uc-module h6 strong {
  font-weight: 500;
}

.uc-module h6.t-b-spac {
  margin-top: 30px;
  margin-bottom: 30px;
}

.uc-module h6.b-spac {
  margin-bottom: 30px;
}

.uc-module h6.t-spac {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .uc-module h6 {
    font-size: 2.625em;
    letter-spacing: 0.03em;
    line-height: 52px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .uc-module h6.t-b-spac {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .uc-module h6.b-spac {
    margin-bottom: 60px;
  }
  .uc-module h6.t-spac {
    margin-top: 60px;
  }
}

@media (min-width: 991px) {
  .uc-module h6 {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.uc-module .floatImage {
  margin: 0 0 1.5em 0;
  display: block;
  position: relative;
}

.uc-module .floatImage img {
  width: 100%;
  height: auto;
  display: block;
}

.uc-module .floatImage figcaption {
  color: rgba(0, 0, 0, 0.5);
  padding-left: 1.5em;
  margin-top: .75em;
  position: relative;
}

.uc-module .floatImage figcaption:before {
  content: "";
  height: 95%;
  width: .4em;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
}

.uc-module .floatImage figcaption p {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: .07143em;
  font-weight: 300;
  color: #a2a2a2;
}

@media (min-width: 768px) {
  .uc-module .floatImage {
    float: right;
    width: calc(50% - 1.5em/2);
    height: auto;
    overflow: hidden;
    margin: 0 0 1.5em 1.5em;
  }
  .uc-module .floatImage .v_visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

.uc-module .float-img-box {
  margin: 30px 0px 0px 0px;
}

.uc-module .float-img-box>p {
  font-size: 2.41429em;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 200;
  margin: 0 0 0 0;
  letter-spacing: 0.05em;
}

.uc-module .logobg>div {
  margin: 0 auto;
}

.uc-module .logobg .v_bg {
  background-size: contain;
}

@media (min-width: 768px) {
  .uc-module .logobg>div {
    height: 24vw;
  }
}

.uc-module .tag-sec {
  padding: 15px 0px;
  text-align: center;
  margin-bottom: 20px;
  clear: both;
}

.uc-module .tag-sec a {
  display: inline-block;
  border: 1px solid #8f8f8f;
  color: #868686;
  padding: 12px 15px;
  margin: 0px 5px 8px 5px;
  font-weight: 200;
  font-size: 1.14em;
  letter-spacing: 0.07em;
  text-decoration: none !important;
}

.uc-module .tag-sec a:hover {
  background-color: #b07d3a;
  border-color: #b07d3a;
  color: #fff;
}

.uc-module .product_side_box {
  position: relative;
  background: grey;
  overflow: hidden;
  margin: 0 0 1.5em 0px;
  height: 380px;
}

.uc-module .product_side_box.box-txt.btn-txt-box .caption .table-cell {
  height: auto;
}

@media (min-width: 768px) {
  .uc-module .product_side_box {
    float: right;
    width: calc(50% - -9.5em/2);
    height: 32.8vw;
    margin: 0 0 1.5em 1.5em;
  }
  .uc-module .product_side_box.box-txt.btn-txt-box .caption .table-cell {
    height: 10vw;
  }
}

.uc-module .side_block {
  position: relative;
  padding-left: 1.875em;
  margin-left: 20px;
  margin-bottom: 20px;
  font-style: italic;
  margin-top: 20px;
  color: #a2a2a2;
}

.uc-module .side_block.L-txt p {
  font-size: 1.875em;
  line-height: 30px;
  font-weight: 200;
  font-style: normal;
}

.uc-module .side_block.heading-space2 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.uc-module .side_block:before {
  content: "";
  height: 100%;
  width: .4em;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
}

.uc-module .side_block strong {
  font-weight: 400;
  font-size: 1.3125em;
  color: #a2a2a2;
  letter-spacing: 0.07em;
  font-style: italic;
  display: block;
}

.uc-module .side_block small {
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: .14286em;
  display: block;
  margin: .25em 0 .5em;
}

.uc-module .side_block p {
  font-size: 1.0625em;
  line-height: 20px;
  color: #a2a2a2;
}

.uc-module .side_block p a {
  font-weight: 500;
}

@media (min-width: 768px) {
  .uc-module .side_block {
    width: 21.42857em;
    top: 3px;
    margin-bottom: 2.25em;
    font-style: italic;
    margin: 25px 0px;
  }
  .uc-module .side_block.side-float {
    float: right;
    clear: both;
    padding-left: 1.875em;
    margin-left: 2.25em;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .uc-module .side_block.heading-space2 {
    margin-bottom: 60px;
    margin-top: 0px;
  }
}

.uc-module .gif-sec {
  background: #f1f1f1;
  clear: both;
}

.uc-module .gif-sec .side_block {
  width: 100%;
}

.uc-module .gif-sec:nth-child(2n) {
  background: #f9f9f9;
}

.uc-module .gif-sec .v_sectionRestrict {
  position: relative;
}

.uc-module .gif-sec .v_table {
  position: relative;
  width: auto;
  padding: 1.5em 15px;
  margin: 0;
}

.uc-module .gif-sec .v_bg {
  height: 250px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.uc-module .gif-sec .v_cell {
  color: #000;
  position: relative;
  margin-top: .75em;
}

.uc-module .gif-sec h3 {
  color: #000 !important;
  font-size: 1.6em;
  font-weight: 500;
  margin: 1em 0 .5em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.uc-module .gif-sec h3 span:first-of-type:after {
  content: ".";
}

.uc-module .gif-sec p {
  margin-bottom: 1.33333em;
  font-size: 1.28571em !important;
  line-height: 1.44444;
  letter-spacing: 0.09em;
  font-weight: 300;
  color: #000 !important;
}

.uc-module .gif-sec.v_farmer dt,
.uc-module .gif-sec.v_farmer dd {
  display: inline;
}

.uc-module .gif-sec.v_farmer dt {
  font-size: 1.28571em;
  line-height: 1.33333;
  letter-spacing: .16667em;
  font-weight: 800;
  text-transform: uppercase;
}

.uc-module .gif-sec.v_farmer dt:before {
  content: "";
  display: block;
  margin-bottom: 1em;
}

.uc-module .gif-sec.v_farmer dt:after {
  content: ": ";
}

.uc-module .gif-sec.v_farmer dd {
  font-size: 1.28571em;
  line-height: 1.44444;
  letter-spacing: .05556em;
  font-weight: 300;
  margin-left: 0px;
}

.uc-module .gif-sec.v_farmer dd strong {
  font-weight: 400;
}

@media (min-width: 768px) {
  .uc-module .gif-sec h3 {
    font-size: 1.7em;
    letter-spacing: 0.22em;
  }
  .uc-module .gif-sec .v_cell {
    display: table-cell;
    padding-left: 2em;
  }
  .uc-module .gif-sec .v_bg {
    width: 34.57143em;
    display: table-cell;
    padding-left: 1em;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .uc-module .gif-sec .v_table {
    display: table;
    height: 35.57143em;
    padding: 1.5em 0;
  }
  .uc-module .gif-sec .v_sectionRestrict {
    width: 90%;
    margin: 0 auto;
    display: table;
    height: 100%;
    position: relative;
  }
}

@media (min-width: 991px) {
  .uc-module .gif-sec h3 {
    font-size: 1.7em;
    letter-spacing: 0.22em;
  }
  .uc-module .gif-sec .v_cell {
    display: table-cell;
    padding-left: 2em;
  }
  .uc-module .gif-sec .v_bg {
    width: 34.57143em;
    display: table-cell;
    padding-left: 1em;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .uc-module .gif-sec .v_table {
    display: table;
    height: 35.57143em;
    padding: 1.5em 0;
  }
  .uc-module .gif-sec .v_sectionRestrict {
    width: 71.14286em;
    margin: 0 auto;
    display: table;
    height: 100%;
    position: relative;
  }
}

.uc-module .infography {
  position: relative;
  color: #fff;
  margin-bottom: 1.5em;
  text-align: center;
}

.uc-module .infography .v_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.uc-module .infography .v_section {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 0px;
}

.uc-module .infography .v_section .v_bg {
  width: 17em;
  height: 9em;
  position: static;
  background-size: contain;
  margin: 0 auto;
  margin-bottom: 2em;
}

.uc-module .infography .v_sectionDouble .v_sectionContent {
  padding: 0;
  width: 100%;
}

.uc-module .infography .v_sectionRestrict {
  position: relative;
  padding: 0;
}

.uc-module .infography h3,
.uc-module .infography h4 {
  color: #a7c996;
  font-weight: 800;
  margin-bottom: .5em;
}

.uc-module .infography h3 {
  font-size: 2.5em;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 40px;
}

.uc-module .infography .v_sectionFull,
.uc-module .infography .v_sectionFull p {
  text-align: center;
}

.uc-module .infography p:last-of-type {
  margin-bottom: 0;
}

.uc-module .infography h3+p {
  font-size: 1.95em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 38px;
}

.uc-module .infography h3+p strong {
  font-weight: 400;
}

.uc-module .infography h4 {
  letter-spacing: .07143em;
  font-size: 2.57143em;
  line-height: 1.33333;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .uc-module .infography h4 {
    font-size: 1.5em;
  }
}

.uc-module .infography p {
  font-size: 1.71429em;
  font-weight: 300;
  letter-spacing: 0.07em;
}

@media (max-width: 767px) {
  .uc-module .infography p {
    font-size: 1.4em;
    line-height: 1.4em;
  }
}

.uc-module .infography p a {
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
  color: #a7c996;
}

.uc-module .infography p a:hover {
  color: #fff;
}

.uc-module .infography .v_sectionContent {
  padding: 4.08163em 20px;
}

.uc-module .infography .v_cell:first-child {
  padding: 4.7619em 15px 4.7619em 15px;
  border-top: 0px solid rgba(255, 255, 255, 0.5);
}

.uc-module .infography .v_cell:first-child .v_bg {
  width: 18em;
  height: 15em;
}

.uc-module .infography .v_cell:last-child {
  padding: 4.7619em 15px 4.7619em 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.uc-module .infography .v_cell:last-child .v_bg {
  width: 18.57143em;
}

.uc-module .infography .v_small {
  font-size: 1.28571em;
  text-align: center;
  font-weight: 400;
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

.uc-module .infography.v_powerOfTrees .v_sectionContent {
  padding: 4.08163em 15px;
}

.uc-module .infography.v_powerOfTrees ul {
  list-style: none;
  -moz-column-count: 1;
  -webkit-column-count: 2;
  column-count: 1;
}

.uc-module .infography.v_powerOfTrees ul li {
  font-size: 1.5em;
  font-weight: 300;
  display: inline-block;
  margin-bottom: 1em;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5em;
  letter-spacing: 0.08em;
  text-align: left;
}

.uc-module .infography.v_powerOfTrees ul li:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.95em;
  line-height: 0;
  position: absolute;
  top: 15px;
  left: 3px;
  -webkit-transform: scaleX(1.7);
  transform: scaleX(1.7);
  color: #a7c996;
}

.uc-module .infography.v_powerOfTrees p {
  letter-spacing: 0.05em;
}

.uc-module .infography.v_powerOfTrees p strong {
  font-weight: 500;
}

.uc-module .infography.v_powerOfTrees h4 {
  font-size: 2.5em;
}

.uc-module .infography.v_powerOfTrees .h4 {
  color: #a7c996;
  letter-spacing: .07143em;
  font-weight: 800;
  margin-bottom: .5em;
  font-size: 2.57143em;
  line-height: 1.33333;
  text-transform: uppercase;
  margin: 0 0 1em;
}

@media (min-width: 768px) {
  .uc-module .infography {
    text-align: left;
  }
  .uc-module .infography .v_sectionRestrict {
    width: auto;
  }
  .uc-module .infography h3+p {
    width: 80%;
    margin: 0 auto;
    font-size: 2.14286em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.07em;
    line-height: 45px;
  }
  .uc-module .infography .v_sectionDouble .v_sectionContent {
    display: table;
  }
  .uc-module .infography .v_sectionRestrict {
    width: 90%;
    margin: 0 auto;
    display: table;
    height: 100%;
  }
  .uc-module .infography h3 {
    font-size: 3.14286em;
    letter-spacing: .17857em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 55px;
  }
  .uc-module .infography h4 {
    font-size: 2.1em;
  }
  .uc-module .infography .v_section {
    padding: 0px;
  }
  .uc-module .infography .v_sectionContent {
    display: table;
    width: 100%;
    vertical-align: middle;
  }
  .uc-module .infography .v_cell {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
  }
  .uc-module .infography .v_cell:first-child {
    padding: 4.7619em 4.7619em 4.7619em 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .uc-module .infography .v_cell:first-child .v_bg {
    width: 27.14286em;
    height: 24.28571em;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .uc-module .infography .v_cell:first-child .v_bg {
    width: 23em;
  }
}

@media (min-width: 768px) {
  .uc-module .infography .v_cell:last-child {
    padding: 4.7619em 0 4.7619em 4.7619em;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .uc-module .infography .v_cell:last-child .v_bg {
    margin: 0 0 3em;
    width: 18.57143em;
    height: 14.28571em;
  }
  .uc-module .infography.v_powerOfTrees p,
  .uc-module .infography.v_powerOfTrees h4 {
    text-align: left;
  }
  .uc-module .infography.v_powerOfTrees p {
    letter-spacing: 0.05em;
  }
  .uc-module .infography.v_powerOfTrees p strong {
    font-weight: 500;
  }
  .uc-module .infography.v_powerOfTrees h4 {
    font-size: 2.5em;
  }
  .uc-module .infography.v_powerOfTrees .v_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull {
    display: table;
    width: 100%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_bg {
    width: 37.5%;
    margin-left: 55%;
    height: auto;
    background-size: contain;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_bg {
    width: 25%;
    margin-left: 12.5%;
    background-size: contain;
    margin-bottom: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_sectionContent {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    height: 25vw;
    padding: 4.08163em 0;
    padding-right: 50%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_sectionContent {
    padding-left: 50%;
    padding-right: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_first .v_sectionContent h3,
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent h4 {
    text-align: center;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent .h4 {
    margin-left: .75em;
    margin-bottom: 5px;
  }
  .uc-module .infography.v_powerOfTrees ul {
    list-style: none;
    -moz-column-count: 2;
    -moz-column-gap: 4em;
    -webkit-column-count: 2;
    -webkit-column-gap: 4em;
    column-count: 2;
    column-gap: 4em;
  }
  .uc-module .infography.v_powerOfTrees ul li {
    font-size: 1.5em;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 1em;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5em;
    letter-spacing: 0.08em;
  }
  .uc-module .infography.v_powerOfTrees ul li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.95em;
    line-height: 0;
    position: absolute;
    top: 15px;
    left: 3px;
    -webkit-transform: scaleX(1.7);
    transform: scaleX(1.7);
    color: #a7c996;
  }
}

@media (min-width: 991px) {
  .uc-module .infography {
    text-align: left;
  }
  .uc-module .infography .v_sectionRestrict {
    width: auto;
  }
  .uc-module .infography h3+p {
    width: 80%;
    margin: 0 auto;
    font-size: 2.14286em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.07em;
    line-height: 45px;
  }
  .uc-module .infography .v_sectionDouble .v_sectionContent {
    display: table;
  }
  .uc-module .infography .v_sectionRestrict {
    width: 71.14286em;
    margin: 0 auto;
    display: table;
    height: 100%;
  }
  .uc-module .infography h3 {
    font-size: 3.14286em;
    letter-spacing: .17857em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 55px;
  }
  .uc-module .infography h4 {
    font-size: 2.1em;
  }
  .uc-module .infography .v_section {
    padding: 0px;
  }
  .uc-module .infography .v_sectionContent {
    display: table;
    width: 100%;
    vertical-align: middle;
  }
  .uc-module .infography .v_cell {
    display: table-cell;
    vertical-align: middle;
  }
  .uc-module .infography .v_cell:first-child {
    padding: 4.7619em 4.7619em 4.7619em 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .uc-module .infography .v_cell:first-child .v_bg {
    width: 27.14286em;
    height: 24.28571em;
  }
  .uc-module .infography .v_cell:last-child {
    padding: 4.7619em 0 4.7619em 4.7619em;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .uc-module .infography .v_cell:last-child .v_bg {
    margin: 0 0 3em;
    width: 18.57143em;
    height: 14.28571em;
  }
  .uc-module .infography.v_powerOfTrees p,
  .uc-module .infography.v_powerOfTrees h4 {
    text-align: left;
  }
  .uc-module .infography.v_powerOfTrees p {
    letter-spacing: 0.05em;
  }
  .uc-module .infography.v_powerOfTrees p strong {
    font-weight: 500;
  }
  .uc-module .infography.v_powerOfTrees h4 {
    font-size: 2.5em;
  }
  .uc-module .infography.v_powerOfTrees .v_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull {
    display: table;
    width: 100%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_bg {
    width: 37.5%;
    margin-left: 55%;
    height: auto;
    background-size: contain;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_bg {
    width: 25%;
    margin-left: 12.5%;
    background-size: contain;
    margin-bottom: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_sectionContent {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    height: 25vw;
    padding: 4.08163em 0;
    padding-right: 50%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_sectionContent {
    padding-left: 50%;
    padding-right: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_first .v_sectionContent h3,
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent h4 {
    text-align: center;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent .h4 {
    margin-left: .75em;
    margin-bottom: 5px;
  }
  .uc-module .infography.v_powerOfTrees ul {
    list-style: none;
    -moz-column-count: 2;
    -moz-column-gap: 4em;
    -webkit-column-count: 2;
    -webkit-column-gap: 4em;
    column-count: 2;
    column-gap: 4em;
  }
  .uc-module .infography.v_powerOfTrees ul li {
    font-size: 1.5em;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 1em;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5em;
    letter-spacing: 0.08em;
  }
  .uc-module .infography.v_powerOfTrees ul li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.95em;
    line-height: 0;
    position: absolute;
    top: 15px;
    left: 3px;
    -webkit-transform: scaleX(1.7);
    transform: scaleX(1.7);
    color: #a7c996;
  }
}

.uc-module .logo-container {
  margin: 2em auto;
  padding-top: 4em;
  border-top: 1px solid #666;
}

.uc-module .logo-container h4 {
  font-size: 1.28571em;
  line-height: 1.33333;
  letter-spacing: .16667em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 1em;
  margin-bottom: .5em;
}

.uc-module .logo-container p {
  font-size: 1.28571em !important;
  line-height: 1.44444;
  letter-spacing: .05556em;
  font-weight: 300;
  color: #000 !important;
}

.uc-module .logo-container p strong {
  font-weight: 400;
}

.uc-module .logo-container a {
  color: #986f38;
}

.uc-module .logo-container .v_logoImg {
  position: static;
  width: 100%;
  height: 20vw;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  transition: .25s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  margin-bottom: 30px;
}

.uc-module .logo-container.v_rainforestalliance .v_logoImg,
.uc-module .logo-container.v_purprojet .v_logoImg {
  height: 20vw;
}

.uc-module .logo-container.v_technoserve .v_logoImg,
.uc-module .logo-container.v_fairlaborassociation .v_logoImg,
.uc-module .logo-container.v_fairtradeinternational .v_logoImg,
.uc-module .logo-container.v_fairtradeusa .v_logoImg,
.uc-module .logo-container.v_cafedecolombia .v_logoImg {
  height: 30vw;
}

.uc-module .logo-container .v_logoCell a:hover .v_logoImg {
  opacity: .75;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.uc-module .logo-container .v_partnerCell {
  padding: 0px 15px;
}

@media (min-width: 768px) {
  .uc-module .logo-container {
    margin: 4em auto;
    width: 46.71429em;
    display: table;
  }
  .uc-module .logo-container .v_partnerCell {
    padding: 0px;
  }
  .uc-module .logo-container>div {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
  }
  .uc-module .logo-container>div:last-child {
    padding-left: 2em;
    width: 75%;
    vertical-align: top;
    display: table-cell;
  }
  .uc-module .logo-container .v_logoImg {
    height: 10vw;
    margin-bottom: 0px;
  }
  .uc-module .logo-container.v_rainforestalliance .v_logoImg,
  .uc-module .logo-container.v_purprojet .v_logoImg,
  .uc-module .logo-container.v_technoserve .v_logoImg,
  .uc-module .logo-container.v_fairlaborassociation .v_logoImg,
  .uc-module .logo-container.v_fairtradeinternational .v_logoImg,
  .uc-module .logo-container.v_fairtradeusa .v_logoImg,
  .uc-module .logo-container.v_cafedecolombia .v_logoImg {
    height: 10vw;
  }
}

.uc-module .logoList {
  border-top: 1px solid #666;
  padding-top: 30px;
}

.uc-module .logoList .v_logoCell {
  display: inline-block;
  width: 32.33%;
}

.uc-module .logoList .v_logoCell .v_logoImg {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  position: static;
  width: 100%;
  height: 10vw;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  transition: .25s;
}

@media (min-width: 768px) {
  .uc-module .logoList {
    padding-top: 60px;
    max-width: 71.14286em;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  .uc-module .logoList .v_logoCell {
    width: 15.66%;
  }
}

.uc-module .listicle_item {
  position: relative;
}

.uc-module .listicle_item a {
  font-weight: 500;
  color: #fff;
}

.uc-module .listicle_item .v_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.uc-module .listicle_item .v_bg:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.uc-module .listicle_item figure {
  position: relative;
  margin: 0 auto;
  padding: 4em 15px;
}

.uc-module .listicle_item figure figcaption {
  position: relative;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  margin-top: .75em;
}

.uc-module .listicle_item figure figcaption span {
  font-size: 5.5em;
  font-weight: 600;
  display: inline-block;
  margin-right: .1em;
  margin-top: -0.25em;
}

.uc-module .listicle_item figure figcaption h3 {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: .5em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.uc-module .listicle_item figure figcaption p {
  font-size: 1.22857em;
  line-height: 1.23333;
  letter-spacing: .08em;
  font-weight: 200;
}

.uc-module .listicle_item figure figcaption p strong {
  font-weight: 400;
}

.uc-module .listicle_item figure figcaption p h3 {
  font-size: 2em;
  font-weight: 500;
}

.uc-module .listicle_item .v_table {
  display: table;
  width: 100%;
}

.uc-module .listicle_item .v_cell {
  display: table-cell;
  vertical-align: top;
}

@media (min-width: 768px) {
  .uc-module .listicle_item figure {
    padding: 4em 0;
    height: 35vw;
    display: table;
    width: 46.71429em;
  }
  .uc-module .listicle_item figure figcaption {
    padding-left: 1.5em;
  }
  .uc-module .listicle_item figure figcaption span {
    font-size: 10em;
    margin-top: -.11em;
  }
  .uc-module .listicle_item figure figcaption p {
    font-size: 1.42857em;
    line-height: 1.33333;
    letter-spacing: .08333em;
  }
  .uc-module .listicle_item figure figcaption h3 {
    font-size: 2em;
    letter-spacing: 0.2em;
  }
}

.uc-module .footer-wrap {
  background-color: #000;
  padding: 20px 15px 60px 15px;
}

.uc-module .footer-wrap .copy-right-txt {
  color: #888;
  font-size: 1em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.uc-module .footer-wrap .footer-links {
  text-align: center;
}

.uc-module .footer-wrap .footer-links ul li {
  display: inline-block;
  border-left: 1px solid #333333;
  padding-left: 8px;
  margin-left: 6px;
  line-height: 1em;
}

.uc-module .footer-wrap .footer-links ul li:first-child {
  border-left: none;
  padding-left: 0px;
  margin-left: 0px;
}

.uc-module .footer-wrap .footer-links ul li a {
  text-decoration: underline;
  color: #fff;
}

.uc-module .footer-wrap .footer-links ul li a:hover {
  text-decoration: none;
}

.uc-module .footer-wrap .footer-links ul li.go-top {
  font-size: 0.8125em;
  font-weight: 400;
}

.uc-module .footer-wrap .footer-links ul li.go-top a {
  color: #888;
  text-decoration: none;
}

.uc-module .footer-wrap .footer-links ul li.go-top a i {
  color: #888;
}

.uc-module .footer-wrap .footer-link2 {
  margin-top: 10px;
  padding-bottom: 10px;
}

.uc-module .footer-wrap .footer-link2 ul {
  text-align: center;
}

.uc-module .footer-wrap .footer-link2 ul li {
  display: inline-block;
  border-left: 1px solid #333333;
  padding-left: 8px;
  margin-left: 6px;
  font-size: 0.8125em;
  line-height: 0.875em;
}

.uc-module .footer-wrap .footer-link2 ul li:first-child {
  border-left: none;
  padding-left: 0px;
  margin-left: 0px;
}

.uc-module .footer-wrap .footer-link2 ul li a {
  color: #888;
}

.uc-module .footer-wrap .footer-social-icn {
  margin-top: 10px;
}

.uc-module .footer-wrap .footer-social-icn ul {
  text-align: center;
}

.uc-module .footer-wrap .footer-social-icn ul li {
  display: inline-block;
  border-left: 1px solid #333333;
  padding-left: 8px;
  margin-left: 6px;
  font-size: 0.8125em;
  line-height: 0.875em;
}

.uc-module .footer-wrap .footer-social-icn ul li:first-child {
  border-left: none;
  padding-left: 0px;
  margin-left: 0px;
}

.uc-module .footer-wrap .footer-social-icn ul li a {
  color: #888;
}

@media (min-width: 768px) {
  .uc-module .footer-wrap .copy-right-txt {
    width: auto;
    float: left;
    margin-top: 0px;
  }
  .uc-module .footer-wrap .footer-links {
    float: right;
  }
}

.uc-module .uc-popup {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 999;
}

.uc-module .uc-popup .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
}

.uc-module .uc-popup .popup-item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 90%;
  width: 90%;
  max-width: 500px;
  transition: all .3s;
  opacity: 0;
  margin-top: -10px;
}

.uc-module .uc-popup .popup-item .wrap {
  padding: 20px;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 90vh;
}

.uc-module .uc-popup .popup-item .btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: block;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 32px;
  z-index: 10;
  transition: all .3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.uc-module .uc-popup .popup-item .btn-close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.uc-module .uc-popup .popup-item.popup--full {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.uc-module .uc-popup .popup-item.popup--full .wrap,
.uc-module .uc-popup .popup-item.popup--full .plyr,
.uc-module .uc-popup .popup-item.popup--full .plyr__video-embed {
  height: 100%;
  padding: 0;
}

.uc-module .uc-popup .popup-item.popup--full .wrap {
  padding: 0;
  overflow: hidden;
  max-height: none;
}

.uc-module .uc-popup .popup-item.popup--full .btn-close {
  background: #000;
  color: #fff;
  top: 5px;
  right: 5px;
}

.uc-module .uc-popup .popup-item.active {
  opacity: 1;
  margin-top: 0;
  transition-delay: .2s;
}

.uc-module .plyr--video .plyr__controls button {
  padding: 0;
  margin-right: 5px;
  width: 15px;
  height: 15px;
}

.uc-module .plyr--video .plyr__controls button:hover {
  background: transparent;
  color: transparent;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="play"] svg {
  display: none;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="play"]:before {
  content: '';
  display: block;
  border-left: 15px solid #f9cc84;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="pause"] svg {
  display: none;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="pause"]:before,
.uc-module .plyr--video .plyr__controls button[data-plyr="pause"]:after {
  content: '';
  display: inline-block;
  height: 15px;
  width: 3px;
  background: #f9cc84;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="pause"]:before {
  margin-right: 3px;
}

.uc-module .plyr--video .plyr__controls button[data-plyr="mute"] {
  color: #fff;
}

.uc-module .plyr__controls {
  padding: 40px 10%;
}

.uc-module .carousel-2 {
  margin: 40px auto;
  position: relative;
  background: #26211f;
}

.uc-module .carousel-2 .item {
  position: relative;
  outline: none;
  margin: 0;
}

.uc-module .carousel-2 .img {
  display: block;
  background: #fff no-repeat center center / cover;
}

.uc-module .carousel-2 .img:after {
  content: '';
  display: block;
  padding-top: 65%;
}

.uc-module .carousel-2 .txt-box {
  display: block;
  font-size: 16px;
  margin: 0 0 0 auto;
  padding: 20px 20px 80px 20px;
  width: 100%;
}

.uc-module .carousel-2 .slick-dots {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 0;
  padding: 20px 50px;
  text-align: center;
}

.uc-module .carousel-2 .slick-dots [type="button"] {
  text-indent: -999px;
  color: transparent;
  font-size: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0;
  transition: all .3s;
  outline: none;
}

.uc-module .carousel-2 .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.uc-module .carousel-2 .slick-dots li:hover [type="button"],
.uc-module .carousel-2 .slick-dots li.slick-active [type="button"] {
  background: white;
}

.uc-module .carousel-2 .slick-arrow {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0;
  text-indent: -999px;
  color: transparent;
  padding: 8px 20px;
}

.uc-module .carousel-2 .slick-arrow:after {
  content: '';
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.uc-module .carousel-2 .slick-prev {
  left: 0;
}

.uc-module .carousel-2 .slick-next {
  right: 15px;
}

.uc-module .carousel-2 .slick-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .uc-module .carousel-2 .img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
  }
  .uc-module .carousel-2 .img:after {
    display: none;
  }
  .uc-module .carousel-2 .txt-box {
    width: 50%;
  }
  .uc-module .carousel-2 .slick-dots {
    width: 50%;
  }
  .uc-module .carousel-2 .slick-prev {
    left: auto;
    right: 50%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@media (min-width: 992px) {
  .uc-module .carousel-2 .img {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .uc-module .carousel-2 .txt-box {
    width: 30%;
  }
  .uc-module .carousel-2 .slick-dots {
    width: 30%;
  }
  .uc-module .carousel-2 .slick-prev {
    left: auto;
    right: 30%;
  }
}

.sec-tags {
  padding: 7.14286em 0;
  color: #000;
}

.sec-tags h2 {
  line-height: 1.33333;
  letter-spacing: .25em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.28571em !important;
  color: #000 !important;
  text-align: left;
  padding-bottom: 1em;
  margin-bottom: 0;
  border-bottom: 1px solid #000;
}

.sec-tags .article-tag {
  position: relative;
  padding: 2em 0;
  display: table;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.sec-tags .article-tag:last-of-type {
  border: 0;
}

.sec-tags .article-tag figure {
  margin: 0;
  display: table-cell;
  vertical-align: top;
}

.sec-tags .article-tag figure .tag-thumb {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 21.42857em;
  height: 14.28571em;
}

.sec-tags .article-tag .article-content {
  display: table-cell;
  vertical-align: top;
  padding-left: 1em;
  width: 100%;
  position: relative;
}

.sec-tags .article-tag .article-content h3 {
  font-size: 1.71429em;
  line-height: 1.33333;
  letter-spacing: .16667em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 1em;
  color: #000;
}

.sec-tags .article-tag .article-content h3 em {
  font-weight: 400;
  font-style: normal;
}

.sec-tags .article-tag .article-content .tag_txt p {
  margin-bottom: 1.33333em;
  font-size: 1.28571em;
  line-height: 1.44444;
  letter-spacing: .05556em;
  font-weight: 300;
  color: #000;
}

.sec-tags .article-tag .article-content .tag_txt p strong {
  font-weight: 500;
}

.sec-tags .article-tag .article-content .readmore {
  font-weight: 500;
  font-size: 1.28571em;
  text-transform: uppercase;
  color: #986f38;
  padding-right: 1.5em;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.sec-tags .article-tag .article-content .readmore:after {
  content: "\f105";
  font-size: 1.1em;
  right: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.popup-is-active {
  overflow: hidden;
}

.popup-is-active .uc-popup {
  height: 100%;
}

.popup-is-active .overlay {
  opacity: 1;
  transition-delay: .3s;
}

.uc-menu-open,
.uc-menu-open body {
  overflow: hidden;
}

.uc-menu-open .uc-module .main-nav .main-links {
  overflow-y: auto;
}

.uc-menu-open .uc-module .main-nav .main-links>li {
  opacity: 1;
  transition-delay: .3s;
}

.uc-menu-open .uc-module .main-nav .main-links>li:nth-child(2) {
  transition-delay: .4s;
}

.uc-menu-open .uc-module .main-nav .main-links>li:nth-child(3) {
  transition-delay: .5s;
}

.uc-menu-open .uc-module .main-nav:before {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.uc-module [data-tooltip] {
  position: relative;
  border-bottom: 1px dotted #986f38;
}

.uc-module [data-tooltip]:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  display: block;
  width: 320px;
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: #f2e9dd;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.5em;
  padding: 15px;
  text-align: center;
  transition: all .3s .1s;
}

.uc-module [data-tooltip]:before {
  content: "";
  border-style: solid;
  border-width: 6px 8px 0;
  border-color: #f2e9dd transparent transparent;
  position: absolute;
  bottom: 100%;
  right: 50%;
  -webkit-transform: translate(50%, 100%) scale(0);
  -moz-transform: translate(50%, 100%) scale(0);
  -ms-transform: translate(50%, 100%) scale(0);
  -o-transform: translate(50%, 100%) scale(0);
  transform: translate(50%, 100%) scale(0);
  margin-bottom: 15px;
  transition: all .3s;
}

.uc-module [data-tooltip]:hover:before {
  -webkit-transform: translate(50%, 100%) scale(1);
  -moz-transform: translate(50%, 100%) scale(1);
  -ms-transform: translate(50%, 100%) scale(1);
  -o-transform: translate(50%, 100%) scale(1);
  transform: translate(50%, 100%) scale(1);
  margin-bottom: 5px;
  transition-delay: .1s;
}

.uc-module [data-tooltip]:hover:after {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  transition-delay: .0s;
}

@media (max-width: 767px) {
  .uc-module [data-tooltip]:before {
    display: none;
  }
  .uc-module [data-tooltip]:after {
    position: fixed;
    top: 50%;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
    border: 1px solid #fff;
    transition-delay: 0s;
    z-index: 999;
  }
  .uc-module [data-tooltip]:hover:after {
    transition-delay: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 767px) {
  .uc-module .mobile-category {
    position: relative;
    overflow: hidden;
  }
}

.uc-module .mobile-category .mobile-category-title {
  display: none;
}

@media (max-width: 767px) {
  .uc-module .mobile-category .mobile-category-title {
    display: block;
    position: absolute;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 998;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .uc-module .mobile-category .mobile-category-title h3 {
    margin: 0;
    font-size: 20px;
  }
  .uc-module .mobile-category .mobile-category-title a {
    color: #FFF;
    font-size: 14px;
  }
}

.uc-module,
.uc-module * {
  letter-spacing: 0 !important;
}

.uc-module h6 {
  text-align: right;
  letter-spacing: 0;
}

.uc-module h5 {
  letter-spacing: 0;
}

.uc-module .cat-links .content-box h3 {
  letter-spacing: 0;
}

.uc-module .cat-links .content-box h3 small:after {
  content: "\f104";
  margin-left: 0px;
  margin-right: 10px;
}

.uc-module .container-content .side_block.side-float {
  margin-left: -110px;
  margin-right: 0;
}

.uc-module .main-banner h1 {
  letter-spacing: 0;
}

.uc-module .main-banner .video-link i {
  margin-left: 10px;
  float: none;
}

.uc-module .main-banner.landing-banner h1 {
  letter-spacing: 0;
}

.uc-module .main-banner.vidoe-banner h1 {
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .uc-module .top-bar .logo {
    float: right;
  }
}

.uc-module .top-bar ul {
  float: left;
}

.uc-module .top-bar .cart-btn {
  float: left;
}

.uc-module .top-bar .bck-btn {
  float: right;
}

.uc-module .top-bar .bck-btn .btn-1 {
  display: none;
}

.uc-module .top-bar .bck-btn .btn-2 {
  display: block;
}

.uc-module .main-nav:before {
  right: auto;
  left: 15px;
}

.uc-module .main-nav .logo {
  float: right;
}

@media (min-width: 768px) {
  .uc-module .main-nav .main-links-wrap {
    float: left;
  }
  .uc-module .main-nav .main-links-wrap>ul>li {
    float: right;
    margin-left: 0px;
    margin-right: 15px;
  }
  .uc-module .main-nav .main-links-wrap>ul>li:first-child {
    margin-right: 0px;
  }
}

.uc-module .box-txt a {
  text-align: right;
}

.uc-module .box-txt .caption {
  letter-spacing: 0;
}

.uc-module .box-txt.btn-txt-box h3 {
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .uc-module .col-1-row-2-right .box-1 {
    right: 0px;
    left: auto;
  }
  .uc-module .col-1-row-2-right .box-2 {
    left: 0px;
    right: auto;
  }
  .uc-module .col-1-row-2-right .box-3 {
    right: auto;
    left: 0px;
  }
}

@media (min-width: 768px) {
  .uc-module .col-1-row-2-left .box-1 {
    right: auto;
    left: 0px;
  }
  .uc-module .col-1-row-2-left .box-2 {
    right: 0px;
    left: auto;
  }
  .uc-module .col-1-row-2-left .box-3 {
    right: 0px;
    left: auto;
  }
}

.uc-module .col-5-small .box-txt a {
  text-align: center;
}

@media (min-width: 768px) {
  .uc-module .col-5-small .box-txt {
    left: auto;
  }
  .uc-module .col-5-small .box-1 {
    right: 0%;
  }
  .uc-module .col-5-small .box-2 {
    right: 20%;
  }
  .uc-module .col-5-small .box-3 {
    right: 40%;
  }
  .uc-module .col-5-small .box-4 {
    right: 60%;
  }
  .uc-module .col-5-small .box-5 {
    right: 80%;
  }
}

@media (min-width: 768px) {
  .uc-module .col-3-mid .box-txt {
    left: auto;
  }
  .uc-module .col-3-mid .box-1 {
    right: 0%;
  }
  .uc-module .col-3-mid .box-2 {
    right: 33.33%;
  }
  .uc-module .col-3-mid .box-3 {
    right: 66.66%;
  }
}

@media (min-width: 768px) {
  .uc-module .col-2-mid .box-1 {
    left: auto;
    right: 0px;
  }
  .uc-module .col-2-mid .box-2 {
    right: auto;
    left: 0px;
  }
}

@media (min-width: 768px) {
  .uc-module .col-2-mid2 .box-1 {
    left: auto;
    right: 0px;
  }
  .uc-module .col-2-mid2 .box-2 {
    right: auto;
    left: 0px;
  }
}

.uc-module .contentSec p {
  color: #000 !important;
  font-size: 1.3125em !important;
  font-weight: 200;
  margin: 0 0 0 0;
  line-height: 1.5em;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .uc-module .contentSec p {
    line-height: 1.6em;
  }
}

.uc-module .contentSec p+p {
  margin-top: 20px;
}

@media (min-width: 768) {
  .uc-module .contentSec p+p {
    margin-top: 30px;
  }
}

.uc-module .contentSec p strong,
.uc-module .contentSec p .bd-txt {
  color: #000;
  font-size: inherit;
  font-weight: 500;
}

.uc-module .contentSec p .bd-txt {
  font-size: 0.95em;
}

.uc-module .contentSec p a {
  color: #986f38;
  font-weight: 400;
}

.uc-module .contentSec p a:hover {
  text-decoration: underline;
}

.uc-module .contentSec h2 {
  color: #000 !important;
  font-size: 1.625em !important;
  line-height: 30px;
  position: relative;
  text-align: center;
  font-weight: 500 !important;
  margin: 0px auto 80px auto !important;
  text-transform: none !important;
}

@media (max-width: 767px) {
  .uc-module .contentSec h2 {
    font-size: 1.375em;
    line-height: 1.5em;
  }
}

.uc-module .contentSec h2:before {
  content: '';
  position: absolute;
  width: 110px;
  background-color: #000;
  height: 5px;
  bottom: -37px;
  left: 50%;
  margin-left: -55px;
}

.uc-module .contentSec .related-link {
  padding-bottom: 20px;
  padding-top: 20px;
  margin-right: 20px;
}

.uc-module .contentSec .related-link>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uc-module .contentSec .related-link>ul>li {
  font-size: 1.0625em;
  line-height: 18px;
  border-top: 6px solid #cccccc;
  padding-top: 15px;
  margin-top: 15px;
  letter-spacing: 0.03em;
}

.uc-module .contentSec .related-link>ul>li a {
  color: #717171;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.uc-module .contentSec .related-link>ul>li a:hover,
.uc-module .contentSec .related-link>ul>li a.active {
  color: #986f38;
}

.uc-module .contentSec .related-link>ul>li a:hover:after,
.uc-module .contentSec .related-link>ul>li a.active:after {
  color: #986f38;
}

.uc-module .contentSec .related-link>ul>li a:after {
  content: "\f104";
  margin-right: 8px;
  margin-left: 0px;
}

.uc-module .contentSec .related-link>ul>li:first-child {
  color: #747474;
  border-top: none;
  padding-top: 0px;
  margin-top: 0px;
  font-weight: 600;
  font-size: 1.25em;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.uc-module .footer-wrap {
  background-color: #000;
  padding: 20px 15px 60px 15px;
}

.uc-module .footer-wrap .copy-right-txt {
  color: #888;
  font-size: 1em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.uc-module .footer-wrap .footer-links ul li {
  border-left: 0px;
  padding-left: 0px;
  margin-left: 0px;
  border-right: 1px solid #333333;
  padding-right: 8px;
  margin-right: 6px;
}

.uc-module .footer-wrap .footer-links ul li:first-child {
  border-left: none;
  border-right: none;
  padding-left: 0px;
  margin-left: 0px;
}

.uc-module .footer-wrap .footer-link2 ul li {
  border-left: 0px;
  padding-left: 0px;
  margin-left: 0px;
  border-right: 1px solid #333333;
  padding-right: 8px;
  margin-right: 6px;
}

.uc-module .footer-wrap .footer-link2 ul li:first-child {
  border-right: 0px;
  border-left: none;
  padding-left: 0px;
  margin-left: 0px;
}

.uc-module .footer-wrap .footer-link2 ul li a {
  color: #888;
}

.uc-module .footer-wrap .footer-social-icn ul li {
  border-left: 0px;
  padding-left: 0px;
  margin-left: 0px;
  border-right: 1px solid #333333;
  padding-right: 8px;
  margin-right: 6px;
}

.uc-module .footer-wrap .footer-social-icn ul li:first-child {
  border-left: none;
  border-right: none;
  padding-left: 0px;
  margin-left: 0px;
}

@media (min-width: 768px) {
  .uc-module .footer-wrap .copy-right-txt {
    float: right;
    width: auto;
  }
  .uc-module .footer-wrap .footer-links {
    float: left;
  }
}

.uc-module .infography h3 {
  letter-spacing: 0;
}

.uc-module .infography.v_powerOfTrees ul li {
  text-align: right;
  padding-left: 0;
  padding-right: 1.5em;
}

.uc-module .infography.v_powerOfTrees ul li:before {
  content: "\f104";
  left: auto;
  right: 3px;
}

@media (min-width: 768px) {
  .uc-module .infography p {
    text-align: right;
  }
  .uc-module .infography .v_sectionDouble .v_sectionContent h4 {
    text-align: right;
  }
  .uc-module .infography .v_cell:first-child {
    padding: 4.7619em 0 4.7619em 4.7619em;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    border-top: none;
  }
  .uc-module .infography .v_cell:last-child {
    padding: 4.7619em 4.7619em 4.7619em 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    border-top: none;
  }
  .uc-module .infography.v_powerOfTrees p {
    letter-spacing: 0.05em;
    text-align: right;
  }
  .uc-module .infography.v_powerOfTrees p strong {
    font-weight: 500;
  }
  .uc-module .infography.v_powerOfTrees h4 {
    font-size: 2.5em;
    text-align: right;
  }
  .uc-module .infography.v_powerOfTrees .v_bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull {
    display: table;
    width: 100%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_bg {
    margin-right: 55%;
    margin-left: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_bg {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull .v_sectionContent {
    padding: 4.08163em 0;
    padding-right: 0;
    padding-left: 50%;
  }
  .uc-module .infography.v_powerOfTrees .v_sectionFull+.v_sectionFull .v_sectionContent {
    padding-right: 50%;
    padding-left: 0;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_first .v_sectionContent h3,
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent h4 {
    text-align: center;
  }
  .uc-module .infography.v_powerOfTrees .v_section.v_last .v_sectionContent .h4 {
    margin-left: .75em;
    margin-bottom: 5px;
  }
  .uc-module .infography.v_powerOfTrees ul li {
    padding-left: 0;
    padding-right: 1.5em;
  }
  .uc-module .infography.v_powerOfTrees ul li:before {
    content: "\f104";
    left: auto;
    right: 3px;
  }
}

.uc-module .side_block {
  padding-right: 1.875em;
  margin-right: 20px;
  padding-left: 0;
  margin-left: 0;
}

.uc-module .side_block:before {
  left: auto;
  right: 0px;
}

@media (min-width: 768px) {
  .uc-module .side_block.side-float {
    float: left;
    padding-right: 1.875em;
    margin-right: 2.25em;
    padding-left: 0;
    margin-left: 0;
  }
  .uc-module .side_block.heading-space2 {
    margin-bottom: 60px;
    margin-top: 0px;
  }
}

.uc-module .gif-sec h3,
.uc-module .gif-sec p {
  letter-spacing: 0;
}

.uc-module .gif-sec.v_farmer dd {
  margin-right: 0px;
}

@media (min-width: 768px) {
  .uc-module .gif-sec .v_cell {
    padding-right: 2em;
  }
}

.uc-module .listicle_item figure figcaption h3 {
  letter-spacing: 0;
}

.uc-module .listicle_item figure figcaption span {
  margin-left: .1em;
}

.uc-module .fullsize-img figcaption {
  padding-left: 20px;
  margin-top: 1em;
  margin-left: 0;
  padding-right: 1.5em;
}

.uc-module .fullsize-img figcaption:before {
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  .uc-module .fullsize-img figcaption {
    margin-right: calc((100% - 43.71429em)/2);
    margin-left: 0;
  }
}

.uc-module .floatImage figcaption {
  padding-right: 1.5em;
  padding-left: 0;
}

.uc-module .floatImage figcaption:before {
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  .uc-module .product_side_box {
    float: left;
    margin: 0 1.5em 1.5em 0;
  }
}

@media (min-width: 768px) {
  .uc-module .logo-container>div:last-child {
    padding-right: 2em;
    padding-left: 0;
  }
}

.uc-module .sec-tags h2 {
  text-align: right;
  letter-spacing: 0;
}

.uc-module .sec-tags .article-tag .article-content {
  padding-left: 0;
  padding-right: 1em;
}

.uc-module .sec-tags .article-tag .article-content .tag_txt p {
  letter-spacing: 0;
}

.uc-module .sec-tags .article-tag .article-content h3 {
  letter-spacing: 0;
}

.uc-module .sec-tags .article-tag .article-content .readmore {
  padding-left: 1.5em;
  padding-right: 0;
}

.uc-module .sec-tags .article-tag .article-content .readmore:after {
  left: 8px;
  right: auto;
  content: "\f104";
}

.uc-module .back-to-top>span>span {
  letter-spacing: 0;
}

.uc-module .carousel-2 {
  direction: ltr;
}
