@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,800%7CNoto+Sans:400,700);
@import url(https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400);
@import url(http://web.unep.org/youngchampions/sites/unep.org.youngchampions/themes/youngchampions/css/easy-responsive-tabs.css?q=sd);
@charset "UTF-8";
/* Version - 3.7.2 */
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*-----------------------------------------*/
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

 /*--------------------------------------------*/
/*
  StyleSheet For Responsive Bootstrap Carousel 4
  Author: szthemes
  Item Name: Responsive Bootstrap Carousel 4
  Author URI: http://codecanyon.net/user/szthemes
  Description: Different Types of Bootstrap Carousel 4

								Content List
  -----------------------------------------------------------------------------------
	NAME ----------------------------------------LINE NUMBER--------------------- #
	FULL WIDTH CAROUSEL -------------------------31------------------------------ 01
	RESPONSIVE ----------------------------------182----------------------------- 02	
	COLORS --------------------------------------263----------------------------- 03	
	[ Note: Line Numbers Are According To Notepad++ ]
  ------------------------------------------------------------------
							Fonts Styles
  ------------------------------------------------------------------
	  'Raleway', sans-serif ---------------------------------- 01
	            FontAwesome ---------------------------------- 02
  ------------------------------------------------------------------
							Color Codes
  ------------------------------------------------------------------
	NAME    ------------------------RGB-------------------------- #
	#ffffff -------------------rgb(255, 255, 255)---------------- 01
	#000000 -------------------rgb(0, 0, 0)---------------------- 02
	#00abf1 -------------------rgb(249, 191, 54)----------------- 03 Replace Only This Color To Change Whole Color Scheme
	#282828 -------------------rgb(40, 40, 40)------------------- 04 
*/
/*------------------------------------------------------*/
/* FULL WIDTH CAROUSEL
/*------------------------------------------------------*/
.full_width_carousel_wrapper {
  overflow: hidden;
  max-height: 650px;
  position: relative;
}

.full_width_carousel_wrapper > .carousel-inner > .carousel-item > img,
.full_width_carousel_wrapper > .carousel-inner > .carousel-item > a > img {
  opacity: 0.6;
  margin: auto;
  width: 100% !important;
}

/*---------- LEFT/RIGHT CONTROL ----------*/
.full_width_carousel_control_left,
.full_width_carousel_control_right {
  top: 50%;
  z-index: 2;
  opacity: 0;
  width: 55px;
  height: 55px;
  border: none;
  text-align: center;
  border-radius: 100%;
  transition: all ease-in-out 0.3s;
}

.full_width_carousel_wrapper:hover .full_width_carousel_control_left,
.full_width_carousel_wrapper:hover .full_width_carousel_control_right {
  opacity: 0.7;
}

.full_width_carousel_control_icons {
  line-height: 50px;
  font-size: 34px !important;
}

.full_width_carousel_control_left {
  left: 1% !important;
}

.full_width_carousel_control_right {
  right: 1% !important;
}

/*---------- CAPTION ----------*/
.full_width_carousel_caption {
  left: 10%;
  z-index: 1;
  width: 35%;
  bottom: 30%;
  text-shadow: none;
  text-align: center;
  padding: 20px 20px 20px 20px;
  font-family: "Raleway", sans-serif;
}

.full_width_carousel_caption_right {
  left: 56%;
}

.full_width_carousel_caption_center {
  left: 15%;
  width: 70%;
}

.full_width_carousel_caption h2 {
  font-size: 30px;
  margin: 0px 0px 15px 0px;
  animation-delay: 1s;
  animation-timing-function: cubic-bezier(0.65, 1.95, 0.03, 0.32);
}

.full_width_carousel_caption h1 {
  font-size: 45px;
  font-weight: 800;
  margin: 0px 0px 40px 0px;
  text-transform: capitalize;
  animation-delay: 1.5s;
  animation-timing-function: cubic-bezier(0.65, 1.95, 0.03, 0.32);
}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {
  outline: 0;
  width: auto;
  height: 44px;
  border: none;
  margin: 0 10px;
  padding: 0 23px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-shadow: none;
  line-height: 44px;
  position: relative;
  font-style: normal;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none !important;
  font-family: "Raleway", sans-serif;
  border-radius: 4px;
  box-sizing: initial !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: color 0.3s ease-in-out 0s;
  animation-delay: 2s;
  animation-timing-function: cubic-bezier(0.65, 1.95, 0.03, 0.32);
}

.full_width_carousel_button_colored:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 4px;
  transform: scaleY(1);
  transform-origin: 50%;
  transition: transform 0.3s ease-in-out 0s;
}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {
  box-shadow: none;
  outline: none !important;
}

.full_width_carousel_button_colored:hover:before,
.full_width_carousel_button_colored:focus:before,
.full_width_carousel_button_colored:active:before {
  transform: scaleY(0);
}

/*------------------------------------------------------*/
/* RESPONSIVE
/*------------------------------------------------------*/
/*---------- MEDIA 480px ----------*/
@media only screen and (max-width: 480px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .full_width_carousel_control_left,
  .full_width_carousel_control_right {
    display: none;
  }
  /*---------- CAPTION ----------*/
  .full_width_carousel_caption {
    top: 20%;
    left: 0;
    width: 100%;
    bottom: auto;
    padding: 0;
  }
  .full_width_carousel_caption h2 {
    font-size: 20px;
    margin: 0px 0px 10px 0px;
  }
  .full_width_carousel_caption h1 {
    font-size: 25px;
    margin: 0px 0px 10px 0px;
  }
  .full_width_carousel_button_colored,
  .full_width_carousel_button_colored:visited {
    margin: 0 0;
    height: 34px;
    padding: 0 13px;
    line-height: 34px;
  }
}
/*---------- MEDIA 481px - 600px ----------*/
@media (min-width: 481px) and (max-width: 600px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .full_width_carousel_control_left,
  .full_width_carousel_control_right {
    top: 40%;
  }
  /*---------- CAPTION ----------*/
  .full_width_carousel_caption {
    left: 0;
    top: 5%;
    width: 100%;
    bottom: auto;
  }
}
/*---------- MEDIA 601px - 767px ----------*/
@media (min-width: 601px) and (max-width: 767px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .full_width_carousel_control_left,
  .full_width_carousel_control_right {
    top: 40%;
  }
  /*---------- CAPTION ----------*/
  .full_width_carousel_caption {
    left: 0;
    top: 20%;
    width: 100%;
    bottom: auto;
  }
}
/*---------- MEDIA 768px - 991px ----------*/
@media (min-width: 768px) and (max-width: 991px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .full_width_carousel_control_left,
  .full_width_carousel_control_right {
    top: 40%;
  }
  /*---------- CAPTION ----------*/
  .full_width_carousel_caption {
    top: 15%;
    bottom: auto;
  }
}
/*---------- MEDIA 992px - 1250px ----------*/
@media (min-width: 992px) and (max-width: 1250px) {
  /*---------- LEFT/RIGHT CONTROL ----------*/
  .full_width_carousel_control_left,
  .full_width_carousel_control_right {
    top: 40%;
  }
  /*---------- CAPTION ----------*/
  .full_width_carousel_caption {
    top: 25%;
    bottom: auto;
  }
}
/*------------------------------------------------------*/
/* COLORS (ORANGE)
/*------------------------------------------------------*/
.full_width_carousel_wrapper {
  background: #000000;
}

/*---------- LEFT/RIGHT CONTROL ----------*/
.full_width_carousel_control_left,
.full_width_carousel_control_left:hover,
.full_width_carousel_control_left:active,
.full_width_carousel_control_left:focus,
.full_width_carousel_control_right,
.full_width_carousel_control_right:hover,
.full_width_carousel_control_right:active,
.full_width_carousel_control_right:focus {
  color: #ffffff;
  background: #00abf1 !important;
}

/*---------- CAPTION ----------*/
.full_width_carousel_caption h2,
.full_width_carousel_caption h1 {
  color: #ffffff;
}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {
  color: #ffffff;
}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {
  color: #ffffff !important;
}

.full_width_carousel_button_colored,
.full_width_carousel_button_colored:visited {
  background: #8b5d3a;
}

.full_width_carousel_button_colored:hover,
.full_width_carousel_button_colored:active,
.full_width_carousel_button_colored:focus {
  background: #000000 !important;
}

.full_width_carousel_button_colored:before {
  background: #00abf1;
}

/*------------------------------------------------------*/
/* SLIDING TIMING FUNCTIONS
/*------------------------------------------------------*/
/*---------- ps_ease ----------*/
.ps_ease .carousel-item {
  transition-timing-function: ease;
}

/*---------- ps_easeInOut ----------*/
.ps_easeInOut .carousel-item {
  transition-timing-function: ease-in-out;
}

/*---------- ps_speedy ----------*/
.ps_speedy .carousel-item {
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
}

/*---------- ps_slowSpeedy ----------*/
.ps_slowSpeedy .carousel-item {
  transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
}

/*---------- ps_easeOutInCubic ----------*/
.ps_easeOutInCubic .carousel-item {
  transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

/*---------- ps_swing ----------*/
.ps_swing .carousel-item {
  transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
}

/*---------- ps_easeOutCubic ----------*/
.ps_easeOutCubic .carousel-item {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*---------- ps_easeInOutCubic ----------*/
.ps_easeInOutCubic .carousel-item {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*---------- ps_easeOutCirc ----------*/
.ps_easeOutCirc .carousel-item {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*---------- ps_easeOutExpo ----------*/
.ps_easeOutExpo .carousel-item {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/*---------- ps_easeInQuad ----------*/
.ps_easeInQuad .carousel-item {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/*---------- ps_easeOutQuad ----------*/
.ps_easeOutQuad .carousel-item {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*---------- ps_easeInOutQuad ----------*/
.ps_easeInOutQuad .carousel-item {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/*---------- ps_easeOutQuart ----------*/
.ps_easeOutQuart .carousel-item {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*---------- ps_easeInOutQuart ----------*/
.ps_easeInOutQuart .carousel-item {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

/*---------- ps_easeOutQuint ----------*/
.ps_easeOutQuint .carousel-item {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

/*---------- ps_easeInSine ----------*/
.ps_easeInSine .carousel-item {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

/*---------- ps_easeOutSine ----------*/
.ps_easeOutSine .carousel-item {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

/*---------- ps_easeInOutSine ----------*/
.ps_easeInOutSine .carousel-item {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*---------- END ----------*/
body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
}

* {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
}

h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

h6 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: rgb(101, 101, 101);
}

::-moz-placeholder {
  color: rgb(101, 101, 101);
}

:-ms-input-placeholder {
  color: rgb(101, 101, 101);
}

:-moz-placeholder {
  color: rgb(101, 101, 101);
}

/*
p {
  font-size: 17px;
  line-height: 22px;
}*/
.yc_wrapper {
  background-color: white;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.yc_wrapper .yc_body_wrapper {
  margin: 0;
  padding: 0;
  clear: both;
}

/* Add This */
.horiz_sharing {
  position: absolute;
  right: 0;
  z-index: 1;
}
.horiz_sharing a {
  margin: 0 0 5px !important;
  background-color: rgb(76, 159, 56) !important;
}
.horiz_sharing .at-icon-wrapper {
  background-color: none !important;
}

a .at-icon-wrapper {
  background-color: rgb(76, 159, 56) !important;
}
/* Add This */
.mobile_facets {
  display: none;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
  }
  h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
  h6 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 45px;
    line-height: 48px;
    font-weight: 700;
  }
  p {
    font-size: 15px;
    line-height: 20px;
  }
  .desktop_facets {
    display: none;
  }
  .mobile_facets {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
    line-height: 40px;
    font-weight: 700;
  }
}
/* Header Styles */
/*
===================
*/
.yc_header_wrapper {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header {
  position: relative;
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header .utilityNav {
  margin: 0;
  padding: 0;
  background-color: #4e5253;
  color: white;
}

.yc_header_wrapper .yc_header .utilityNav_content {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 10px;
  overflow: hidden;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial {
  float: right;
  margin: 0 35px 0 10px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li {
  display: inline-block;
  margin: 0 10px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li a {
  display: block;
  color: white;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li:last-child a {
  margin: 0;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal {
  float: left;
  margin-left: 35px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li {
  display: inline;
  padding: 0 12px 0 0;
  border-right: 1px solid white;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: white;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li:last-child {
  border-right: none;
  padding: 0 0 0 9px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage {
  overflow: hidden;
  text-align: center;
  width: 360px;
  margin: 0 auto;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li {
  display: inline;
  padding-left: 5px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li a {
  font-size: 12px;
  color: white;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li:after {
  content: "|";
  margin-left: 7px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li:last-child {
  border-right: none;
  padding-right: 0;
}

.yc_header_wrapper .yc_header .utilityNav_content .navLanguage ul li:last-child:after {
  content: "";
  margin-left: 0;
}

.yc_header_wrapper .yc_header .primaryNav {
  margin: 0;
  padding: 0;
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
}

.yc_header_wrapper .yc_header .primaryNav_content {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.yc_header_wrapper .yc_header .primaryNav_content .branding {
  float: left;
  margin: 0 20px 0 35px;
}

.yc_header_wrapper .yc_header .primaryNav_content .branding img {
  display: block;
  max-width: 300px;
  max-height: 80px;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav {
  overflow: hidden;
  text-align: right;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 68px;
  vertical-align: top;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a {
  display: block;
  font-size: 22px;
  margin-right: 40px;
  color: #656565;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a:hover {
  color: #575aab;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search {
  float: right;
  height: 68px;
  position: relative;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 20px;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=submit] {
  display: none;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=search], .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=text] {
  width: 100px;
  font-size: 18px;
  font-style: italic;
  font-weight: 100;
  padding: 5px;
  color: #656565;
  transition: all 0.3s ease 0.1s;
  border: none;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=search]:focus, .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=text]:focus {
  outline: none;
  width: 180px;
  transition: all 0.3s ease 0.1s;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search:before {
  content: "\f002";
  font-family: "FontAwesome";
  font-weight: 100;
  float: left;
  margin-right: 0.2em;
  font-size: 22px;
  color: #4e5253;
  line-height: 68px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yc_header_wrapper .yc_header .primaryNav_content .branding {
    margin: 0 10px 0 35px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .branding img {
    max-width: 140px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav {
    text-align: center;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a {
    font-size: 22px;
    margin-right: 20px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=search] {
    font-size: 17px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form:focus {
    width: 50px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search:before {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_header_wrapper .yc_header .utilityNav_content .navSocial {
    margin: 0 10px 0 10px;
  }
  .yc_header_wrapper .yc_header .utilityNav_content .navGlobal {
    margin-left: 10px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .branding {
    margin: 0 10px 0 10px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .branding img {
    max-width: 120px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav {
    text-align: center;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a {
    font-size: 17px;
    margin-right: 15px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form input[type=search] {
    font-size: 17px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search form:focus {
    width: 50px;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search:before {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .yc_header_wrapper .yc_header {
    display: none;
  }
}
.yc_header_wrapper .yc_header_mobile {
  display: none;
  position: relative;
}

.yc_header_wrapper .yc_header_mobile .utilityNav {
  margin: 0;
  padding: 0;
  background-color: #4e5253;
  color: white;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul li {
  display: inline-block;
  margin: 0;
  width: 20%;
  text-align: center;
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul li a {
  display: block;
  color: white;
  padding: 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_header_wrapper .yc_header_mobile .utilityNav_content .navSocial ul li:last-child a {
  margin: 0;
  border-right: none;
}

.yc_header_wrapper .yc_header_mobile .primaryNav {
  margin: 0;
  padding: 0;
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.2);
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content {
  position: relative;
  padding: 0;
  min-height: 56px;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .branding {
  max-width: 150px;
  padding: 10px;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .branding img {
  display: block;
  width: 100%;
  height: auto;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav {
  position: relative;
  float: right;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul li {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 16px 20px;
  font-size: 30px;
  color: #0084b4;
  transition: all 200ms ease;
  cursor: pointer;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul li:hover {
  background-color: #f0f0f0;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul li.close-btn {
  padding: 16px 21px;
  background-color: #f0f0f0;
}

.yc_header_wrapper .yc_header_mobile .primaryNav_content .mainNav ul li.hidden {
  display: none;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #4e5253;
  display: none;
  height: 0;
  transition: all 1s ease;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content {
  position: relative;
  padding: 20px 40px;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav ul {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav ul li {
  margin: 5px 0;
  display: block;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav ul li a {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  padding: 10px 20px;
  transition: all 200ms ease;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .mobileNav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .globalNav {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  padding: 40px 0;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .globalNav ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu_content .globalNav ul li {
  list-style: none;
}

.yc_header_wrapper .yc_header_mobile .mobile_search {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: #034569;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.4);
  display: none;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content {
  position: relative;
  padding: 20px 30px;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content .search-close {
  font-size: 24px;
  color: white;
  float: right;
  margin-bottom: 20px;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content form {
  margin: 0;
  padding: 0;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content form input[type=text] {
  display: block;
  width: 100%;
  font-size: 20px;
  padding: 5px;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content form input[type=submit] {
  display: block;
  border-collapse: collapse;
  border: 1px solid white;
  font-size: 17px;
  padding: 10px 20px;
  max-width: 200px;
  margin: 10px auto;
  background: none;
  color: white;
}

.yc_header_wrapper .yc_header_mobile .mobile_search_content form input[type=submit]:hover {
  background: white;
  color: black;
}

@media screen and (max-width: 767px) {
  .yc_header_wrapper .yc_header_mobile {
    display: block;
    min-height: 95px;
  }
}
/* Footer Styles */
/*
===================
*/
.yc_footer_wrapper {
  margin: 0;
  padding: 0;
  background-color: #4e5253;
  color: white;
  clear: both;
}

.yc_footer_wrapper .yc_footer {
  position: relative;
  margin: 0;
  padding: 0;
}

.yc_footer_wrapper .yc_footer_content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  overflow: hidden;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left {
  position: relative;
  max-width: 69%;
  width: 69%;
  min-height: 230px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_branding {
  max-width: 177px;
  float: left;
  margin: 20px 60px 0 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_branding img {
  display: block;
  width: 100%;
  height: auto;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links {
  overflow: hidden;
  padding-right: 10px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav {
  margin-top: 40px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul {
  margin: 0;
  padding: 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li {
  list-style: none;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li {
  display: inline-block;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a {
  font-size: 22px;
  color: white;
  display: block;
  margin-right: 35px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li:last-child a {
  margin-right: 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info {
  float: left;
  margin-right: 10px;
  width: 60%;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul {
  margin: 0;
  padding: 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li {
  list-style: none;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li {
  display: inline;
  padding: 0 12px 0 0;
  border-right: 1px solid white;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: white;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li:last-child {
  border-right: none;
  padding: 0 0 0 9px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social {
  overflow: hidden;
  width: 40%;
  text-align: right;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul {
  margin: 0;
  padding: 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
  list-style: none;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
  display: inline-block;
  margin-right: 10px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a {
  color: white;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li:last-child {
  margin-right: 0;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right {
  max-width: 30%;
  width: 30%;
  border-left: 1px solid #d7d7d7;
  font-size: 14px;
  padding-left: 30px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right p {
  font-size: 14px;
  line-height: 20px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors {
  margin-top: 30px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item {
  display: inline-block;
  width: 65%;
}
.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item svg {
  height: auto;
  width: auto;
  max-width: 230px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:last-child img {
  height: auto;
  width: 80%;
}

.yc_footer_wrapper .yc_footer_content .utilityFooter p {
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.yc_footer_wrapper .yc_footer_content .utilityFooter p a {
  display: inline-block;
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.4);
}

.yc_footer_wrapper .yc_footer_content .utilityFooter p a:before {
  content: "|";
  padding-right: 10px;
  cursor: text;
  color: rgba(255, 255, 255, 0.6);
}

.yc_footer_wrapper .yc_footer_content .utilityFooter p a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li a {
    font-size: 17px;
    margin-right: 30px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts {
    margin: 10px 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info {
    float: none;
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social {
    margin-top: 20px;
    text-align: left;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_footer_wrapper .yc_footer .primaryFooter_left {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
    min-height: 240px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_branding {
    max-width: 167px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li a {
    font-size: 17px;
    margin-right: 22px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info {
    float: none;
    margin-right: 0;
    padding-bottom: 20px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
    list-style: none;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
    display: inline-block;
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a {
    color: white;
    font-size: 22px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li:last-child {
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right {
    position: relative;
    max-width: 100%;
    border-left: 0px solid #d7d7d7;
    padding-left: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors .yc_sponsor_logo {
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item {
    margin-right: 10px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:last-child {
    float: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .yc_footer_wrapper .yc_footer primaryFooter {
    display: flex;
    justify-content: space-between;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left {
    max-width: none;
    width: 49%;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_branding {
    max-width: none;
    float: none;
    margin-right: 0;
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_branding img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    margin: 0 auto;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links {
    overflow: hidden;
    height: auto !important;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul {
    margin: 10px 0 0 0;
    padding: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li {
    list-style: none;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li {
    display: inline-block;
    width: 48%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li a {
    font-size: 15px;
    color: white;
    display: inline-block;
    margin-right: 0;
    padding: 5px;
    display: block;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footerNav ul li:last-child a {
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts {
    margin-top: 0;
    display: block;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info {
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul {
    margin: 0;
    padding: 0;
    text-align: center;
    border-bottom: 0px solid rgba(255, 255, 255, 0.3);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li {
    list-style: none;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li {
    display: block;
    padding: 0 0;
    border-right: none;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li a {
    display: block;
    margin: 0;
    padding: 0;
    color: white;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_contact_info ul li:last-child {
    border-right: none;
    padding: 0 0 0 9px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 0px solid rgba(255, 255, 255, 0.3);
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
    list-style: none;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li {
    display: inline-block;
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a {
    color: white;
    font-size: 22px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left .footer_links .footer_contacts .footer_social ul li:last-child {
    margin-right: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right {
    position: relative;
    width: 49%;
    max-width: none;
    border-left: none;
    font-size: 14px;
    padding-left: 0;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right p {
    font-size: 14px;
    line-height: 20px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors {
    margin-top: 30px;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors .yc_sponsor_logo {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item {
    display: inline-block;
    margin-right: 10px;
    width: 80%;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:last-child {
    margin-right: 5px;
    float: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) and (max-width: 481px) {
  .yc_footer_wrapper .yc_footer .primaryFooter_right {
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_right .yc_sponsor_logo_item:last-child img {
    height: auto;
    width: 100%;
    opacity: 1;
  }
  .yc_footer_wrapper .yc_footer .primaryFooter_left {
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer .yc_footer_wrapper .yc_footer_content .primaryFooter {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .yc_footer_wrapper .yc_footer .utilityFooter {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 30px;
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p {
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p span {
    display: block;
    margin-top: 10px;
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p a:first-child:before {
    content: "";
    margin: 0;
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p a {
    display: inline;
    margin: 0 10px 0 0;
    color: rgba(255, 255, 255, 0.6);
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p a:before {
    content: "|";
    margin: 0 10px 0 0;
    cursor: text;
    color: rgba(255, 255, 255, 0.6);
  }
  .yc_footer_wrapper .yc_footer .utilityFooter p a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
}
/* Scss Document */
.w1240 {
  width: 98%;
  max-width: 1240px;
  margin: 0 auto;
}

.w1240 a, .expert_contacts a {
  color: #0084b4;
}

.w1240 a:hover {
  opacity: 0.85;
}

.expert_contacts a:hover {
  opacity: 0.85;
}

.btn {
  padding: 15px 20px;
  display: inline-block;
}

.btn-db {
  padding: 15px 60px;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .btn {
    padding: 5px 8px;
  }
  .btn-db {
    padding: 10px;
  }
}
.btn-white {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #575aab;
  text-transform: uppercase;
  background: #fff;
}

.btn-white:hover {
  background: #ebebeb;
  transition: all 0.3s ease;
}

.btn-white:active {
  background: #bfbfbf;
}

@media only screen and (max-width: 480px) {
  .btn-white {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .btn-white {
    font-size: 14px;
    line-height: 18px;
  }
}
.yg_ln_slider {
  margin: 0;
  padding: 0;
  background-position: 50% center, 50% center;
  background-size: cover;
  position: relative;
}
.yg_ln_slider_image {
  overflow: hidden;
  height: 525px;
  margin: 0;
  padding: 0;
}
.yg_ln_slider_image img {
  width: 100%;
  display: block;
}
.yg_ln_slider_image:before {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.yg_ln_slider_text {
  position: absolute;
  width: 86.1111111111%;
  max-width: 1240px;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(0%, -45%);
  -ms-transform: translate(0%, -45%); /* IE 9 */
  -webkit-transform: translate(0%, -45%);
  color: #fff;
  padding: 1.6129%;
  z-index: 50;
  text-align: center;
}
.yg_ln_slider_text h1 {
  margin-top: 0;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}
.yg_ln_slider_text p {
  font-size: 32px;
  line-height: 38px;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}
@media only screen and (max-width: 480px) {
  .yg_ln_slider_image {
    height: 250px;
  }
  .yg_ln_slider_text {
    width: 70%;
    text-align: center;
  }
  .yg_ln_slider_text h1 {
    font-size: 22px;
    line-height: 28px;
  }
  .yg_ln_slider_text p {
    font-size: 14px;
    line-height: 18px;
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_slider_image {
    height: 350px;
  }
  .yg_ln_slider_text {
    width: 70%;
  }
  .yg_ln_slider_text h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .yg_ln_slider_text p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_slider_image {
    height: 400px;
  }
  .yg_ln_slider_text {
    width: 87%;
  }
  .yg_ln_slider_text h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_slider_image {
    height: 420px;
  }
  .yg_ln_slider_text {
    width: 100%;
  }
}

.yg_ln_about {
  margin: 0;
  padding: 0;
}

.yg_ln_about_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding-top: 2.8611%;
  overflow: hidden;
}

.yg_ln_about_text {
  float: left;
  width: 64.1129%;
  margin: 0 2.4193% 0 0;
  padding: 0 1.6129% 0 0;
}

.yg_ln_about_text a {
  color: #0084b4;
}

.yg_ln_about_text a:after {
  content: "›";
  margin-left: 5px;
  font-weight: 700;
}

.yg_ln_about_text a:hover {
  color: #0084b4;
  opacity: 0.8;
}

.yg_ln_about_text h3 {
  margin-top: 0;
}

.yg_ln_about_videobox {
  overflow: hidden;
}

.yg_ln_about_video {
  height: 0;
  padding-bottom: 2%;
  position: relative;
  overflow: hidden;
  min-height: 270px;
}

.yg_ln_about_video .content {
  min-height: 300px;
}

.yg_ln_about_video img {
  max-width: 100%;
  display: block;
  width: auto;
  min-width: 50%;
}

.yg_ln_about_video iframe, .yg_ln_about_video embed, .yg_ln_about_video object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yg_ln_about_image {
  float: right;
  overflow: hidden;
}

.yg_ln_about_image img {
  width: auto;
  max-width: 100%;
  display: block;
}

@media only screen and (max-width: 480px) {
  .yg_ln_about_text {
    float: none !important;
    width: auto !important;
    margin-right: 0 !important;
    padding: 0 0 5% 0 !important;
  }
  .yg_ln_about_text h3 {
    font-size: 26px;
    line-height: 30px;
    margin-top: 10px;
  }
  .yg_ln_about_text p {
    font-size: 17px;
  }
  .yg_ln_about_video {
    padding-bottom: 6%;
    float: none;
    min-height: 200px;
  }
  .yg_ln_about_video img {
    height: auto;
  }
  .yg_ln_about_image {
    float: none;
  }
  .yg_ln_about_image img {
    width: 100%;
    height: auto !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_about_text {
    float: none !important;
    width: auto !important;
    margin-right: 0 !important;
    padding: 0 0 5% 0 !important;
  }
  .yg_ln_about_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_about_text p {
    font-size: 17px;
  }
  .yg_ln_about_video {
    padding-bottom: 6%;
    float: none;
    text-align: center;
  }
  .yg_ln_about_video img {
    height: auto;
    display: inline-block;
  }
  .yg_ln_about_image {
    float: none;
    text-align: center;
  }
  .yg_ln_about_image img {
    width: auto;
    max-width: 100%;
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_about_video {
    padding-bottom: 6%;
    float: none;
  }
}
.yg_ln_news {
  margin: 0;
  padding: 0;
}
.yg_ln_news_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 0;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .yg_ln_news h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_news h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

.yg_ln_news_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yg_ln_news_resource_item {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
}
.yg_ln_news_resource_item:nth-child(1) {
  margin-bottom: 60px;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
  width: 57.258%;
  float: left;
  max-height: 397px;
  min-height: 397px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text {
  overflow: hidden;
  padding: 2.4193% 4.0323%;
  color: #fff;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text_meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text a {
  color: #fff;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text a:hover {
  color: #fff;
  opacity: 0.8;
}
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text h3 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}
.yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
  width: 49%;
  max-width: 600px;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 60px;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_image, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_image {
  width: 100%;
  max-height: 335px;
  min-height: 335px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_image img, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text {
  overflow: hidden;
  color: #656565;
  padding: 3.3333% 0;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text_meta, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text_meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #656565;
  text-transform: uppercase;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text h3, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text h3 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text a, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text a {
  color: #00abf1;
}
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text a:hover, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text a:hover {
  color: #0084b4;
  opacity: 0.8;
}
.yg_ln_news_resource_item:nth-child(3) {
  margin-right: 0;
}
.yg_ln_news_resource_item:nth-child(n+4) {
  margin: 0;
  padding: 0;
  width: 31.7%;
  max-width: 393px;
  padding: 0;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text {
  overflow: hidden;
  color: #656565;
  padding: 3.3333% 0;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text_meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #656565;
  text-transform: uppercase;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text a {
  color: #00abf1;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text a:hover {
  color: #0084b4;
  opacity: 0.8;
}
.yg_ln_news_resource_item:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 480px) {
  .yg_ln_news_resource_item:nth-child(1) {
    margin-bottom: 30px;
  }
  .yg_ln_news_resource_item:nth-child(1) h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
    float: none;
    width: auto;
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
    width: auto;
    padding-bottom: 30px;
    margin: 0;
  }
  .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_image, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_image {
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text h3, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource_item:nth-child(n+4) {
    float: none;
    width: auto;
    margin: 0;
    padding-bottom: 30px;
  }
  .yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text h3 {
    font-size: 20px;
    line-height: 32px;
    margin-top: 10px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(1) {
    margin-bottom: 30px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(1) h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(1) .yg_ln_news_resource_image {
    float: none;
    width: auto;
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(1) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(2), .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(3) {
    width: auto;
    padding-bottom: 30px;
    margin: 0;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(2) .yg_ln_news_resource_image, .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(3) .yg_ln_news_resource_image {
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(2) .yg_ln_news_resource_text h3, .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(3) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(n+4) {
    float: none;
    width: auto;
    margin: 0;
    padding-bottom: 30px;
  }
  .yg_ln_news_resource .yg-ln-news-resource-item:nth-child(n+4) .yg_ln_news_resource_text h3 {
    font-size: 20px;
    line-height: 32px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_news_resource_item:nth-child(1) {
    margin-bottom: 30px;
  }
  .yg_ln_news_resource_item:nth-child(1) h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
    float: none;
    width: auto;
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
    width: 100%;
    padding-bottom: 30px;
    margin: 0;
  }
  .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_image, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_image {
    max-height: 220px;
    min-height: 220px;
  }
  .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text h3, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_ln_news_resource_item:nth-child(n+4) {
    float: none;
    width: 100%;
    margin: 0;
    max-width: none !important;
    padding-bottom: 30px;
  }
  .yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text h3 {
    font-size: 20px;
    line-height: 32px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_news_resource_item:nth-child(1) {
    margin-bottom: 50px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
    float: none;
    width: auto;
  }
  .yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
    margin: 0 2% 0 0;
    padding-bottom: 50px;
  }
  .yg_ln_news_resource_item:nth-child(3) {
    margin-right: 0;
  }
  .yg_ln_news_resource_item:nth-child(n+4) {
    max-width: none !important;
    width: 31.7%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
    margin: 0 2% 0 0;
  }
  .yg_ln_news_resource_item:nth-child(3) {
    margin-right: 0;
  }
  .yg_ln_news_resource_item:nth-child(n+4) {
    max-width: none !important;
    width: 31.7%;
  }
}

.yg_ln_news_loadmore {
  text-align: center;
  padding: 2em 1em 0 1em;
  /* & a{
     display: inline-block;
     margin: 0;
     padding: 0.7em 1em;
     background-color: rgba(0,171,241, 1.0);
     color: rgba(255,255,255,1.00);

     &:hover{
       background-color:rgba(0, 132, 180,1.00);
       color: rgba(255,255,255,1.00);
     }
   }*/
}

.yg_ln_video {
  margin: 0;
  padding: 0;
}
.yg_ln_video_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8611% 0 0 0;
  overflow: hidden;
}
.yg_ln_video_resource {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  margin-bottom: 4.8611%;
  width: 58%;
  border: 0px solid #ccc;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
}
.yg_ln_video_resource_image {
  width: 56%;
}
.yg_ln_video_resource_image img {
  display: block;
  width: 100%;
  height: auto;
}
.yg_ln_video_resource_text {
  overflow: hidden;
  margin: 0 0 0 17px;
}
.yg_ln_video_resource_text p {
  font-size: 30px;
  line-height: 38px;
  font-weight: 300;
}
.yg_ln_video_loadmore {
  text-align: center;
  padding: 4em 1em 1em 1em;
}
.yg_ln_video_loadmore a {
  display: inline-block;
  margin: 0;
  padding: 0.7em 1em;
  background-color: rgb(0, 171, 241);
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.yg_ln_video_loadmore a:hover {
  background-color: rgb(0, 132, 180);
  color: rgb(255, 255, 255);
}
@media only screen and (max-width: 480px) {
  .yg_ln_video_resource {
    display: block;
    width: auto;
  }
  .yg_ln_video_resource_image {
    width: 40%;
    margin: 0 auto;
  }
  .yg_ln_video_resource_text {
    margin: 0;
  }
  .yg_ln_video_resource_text p {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }
  .yg_ln_video_loadmore {
    padding: 2em 1em 1em 1em;
  }
  .yg_ln_video_loadmore a {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_video_resource {
    width: auto;
  }
  .yg_ln_video_resource_text p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_video_resource {
    width: 80%;
  }
  .yg_ln_video_resource_text p {
    font-size: 26px;
    line-height: 34px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_video_resource {
    width: 60%;
  }
}

.yg_ln_conversations {
  margin: 0;
  padding: 0;
  background-color: #575aab;
}

.yg_ln_conversations_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8611% 0;
  overflow: hidden;
}

.yg_ln_conversations_wrap h2 {
  margin-top: 0;
  color: #fff;
}

.yg_ln_conversations_items {
  float: left;
  width: 31.7%;
  vertical-align: top;
  margin: 0 2.4193% 0 0;
  max-width: 393px;
  padding: 0;
}

.yg_ln_conversations_items img {
  width: 100%;
  display: block;
}

.yg_ln_conversations_items:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 480px) {
  .yg_ln_conversations_wrap h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ln_conversations_items {
    margin: 0 0 8% 0 !important;
    width: 100%;
    max-width: none !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_conversations_wrap h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ln_conversations_items {
    margin: 0 0 8% 0 !important;
    width: 100%;
    max-width: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_conversations_items {
    width: 31.7%;
    margin: 0 1.8% 0 0;
    max-width: none !important;
  }
  .yg_ln_conversations_items img {
    width: 100%;
    display: block;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_conversations_items {
    width: 31.7%;
    margin: 0 1.8% 0 0;
    max-width: none !important;
  }
  .yg_ln_conversations_items img {
    width: 100%;
    display: block;
  }
}
.yg_ln_acknowledgement {
  margin: 0;
  padding: 0;
}

.yg_ln_acknowledgement_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8387% 0;
  overflow: hidden;
}

.yg_ln_acknowledgement_wrap .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.yg_ln_acknowledgement .acknowledgement_item, .yg_ln_acknowledgement .acknowledgement-item {
  overflow: hidden;
  margin: 0 auto;
  width: 33%;
}

.yg_ln_acknowledgement .acknowledgement_item_image, .yg_ln_acknowledgement .acknowledgement-item_image {
  text-align: center;
  margin: 10px 0;
}

.yg_ln_acknowledgement .acknowledgement_item_image img, .yg_ln_acknowledgement .acknowledgement-item_image img {
  width: auto;
  height: auto;
  max-height: 150px;
}

.yg_ln_acknowledgement .acknowledgement_item_text, .yg_ln_acknowledgement .acknowledgement-item_text {
  overflow: hidden;
  padding-left: 3.4562%;
  border-left: 1px solid #d7d7d7;
}

.yg_ln_acknowledgement .acknowledgement_item_text_meta, .yg_ln_acknowledgement .acknowledgement-item_text_meta {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1.152%;
}

@media only screen and (max-width: 480px) {
  .yg_ln_acknowledgement .acknowledgement_item {
    width: auto;
  }
  .yg_ln_acknowledgement .acknowledgement_item_image {
    float: none;
    width: auto;
    border-left: none;
    border-bottom: 1px solid #d7d7d7;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .yg_ln_acknowledgement .acknowledgement_item_text {
    padding-left: 0;
    text-align: center;
    border-left: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_acknowledgement .acknowledgement_item {
    width: auto;
  }
  .yg_ln_acknowledgement .acknowledgement_item_image {
    float: none;
    width: auto;
    border-left: none;
    border-bottom: 1px solid #d7d7d7;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .yg_ln_acknowledgement .acknowledgement_item_text {
    padding-left: 0;
    text-align: center;
    border-left: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_acknowledgement .acknowledgement_item {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_acknowledgement .acknowledgement_item {
    width: 100%;
  }
}
.fb_iframe_widget iframe {
  border-radius: 5px !important;
}

._1drm ._1drn {
  border: none !important;
  border-radius: 5px !important;
}

.btn {
  padding: 15px 20px;
  text-align: center;
}

.btnw {
  padding: 15px 20px;
  text-align: center;
}

.btn-brown {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #8b5d3a;
  text-transform: uppercase;
  background: #fff;
}

.btn-brown:hover {
  background: #ebebeb;
  transition: all 0.3s ease;
}

.btn-brown:active {
  background: #bfbfbf;
}

@media only screen and (max-width: 480px) {
  .btn-brown {
    font-size: 17px;
    line-height: 22px;
  }
}
.btn-blue {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #337ab7;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #337ab7;
}

.btn-blue:hover {
  background: #ebebeb;
  transition: all 0.3s ease;
}

.btn-blue:active {
  background: #bfbfbf;
}

@media only screen and (max-width: 480px) {
  .btn-blue {
    font-size: 17px;
    line-height: 22px;
  }
}
.icon {
  display: block;
  min-height: 22px;
  z-index: 999;
}

.icon-email {
  background-position: 0 40%;
  background-repeat: no-repeat;
  padding: 0 0 10px 28px;
  background-image: url(../img/email_icon.png);
}

.icon-facebook {
  background-position: 0 40%;
  background-repeat: no-repeat;
  padding: 0 0 10px 28px;
  background-image: url(../img/Facebook_icon.png);
}

/* Basic Page Style */
.yg_ab_slider {
  margin: 2% 0;
  padding: 0;
  background-position: 50% center, 50% center;
  background-size: cover;
  position: relative;
}
.yg_ab_slider_image {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 380px;
  /*&:before {
    background-color:rgba(0,0,0,0.2); 
    content: ""; 
    height: 100%; 
    left: 0; 
    position: absolute; 
    top: 0;
    width: 100%; 
    z-index: 1;
  }*/
}
.yg_ab_slider_image img {
  width: 100%;
  display: block;
}
.yg_ab_slider_circle {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
  z-index: 50;
}
.yg_ab_slider_circle_itemright {
  position: absolute;
  right: -13%;
  top: -6%;
  bottom: 0;
  width: 38%;
  height: auto;
}
.yg_ab_slider_circle_itemright img {
  width: 100%;
  display: block;
}
.yg_ab_slider_circle_itemleft {
  position: absolute;
  left: -6%;
  top: -6%;
  bottom: 0;
  width: 38%;
  height: auto;
}
.yg_ab_slider_circle_itemleft img {
  width: 100%;
  display: block;
}
.yg_ab_slider_text {
  display: none;
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  position: absolute;
  width: 86.1111111111%;
  margin: 0 auto;
  top: 58%;
  left: 0;
  right: 0;
  transform: translate(0%, -58%);
  -ms-transform: translate(0%, -58%); /* IE 9 */
  -webkit-transform: translate(0%, -58%);
  color: #fff;
  padding: 1.6129%;
  z-index: 50;
}
.yg_ab_slider_text h1 {
  margin-top: 0;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}
.yg_ab_slider_text p {
  font-size: 30px;
  line-height: 38px;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}
.yg_ab_slider .main_breadcrumb {
  position: absolute;
  top: 1em;
  left: 2.4em;
  z-index: 10;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.yg_ab_slider .main_breadcrumb ol {
  margin: 0;
  padding: 10px 0 30px 0;
  list-style-type: none;
}
.yg_ab_slider .main_breadcrumb ol li {
  display: inline-block;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}
.yg_ab_slider .main_breadcrumb ol li::after {
  content: "/";
  font-size: 14px;
  color: #ffffff;
}
.yg_ab_slider .main_breadcrumb ol li:last-child::after {
  display: none;
}
.yg_ab_slider .main_breadcrumb ol li a {
  color: #ffffff;
}
.yg_ab_slider .main_breadcrumb ol li a:hover {
  color: #ffffff;
  opacity: 0.6;
  text-decoration: underline;
}
@media only screen and (max-width: 480px) {
  .yg_ab_slider_image {
    height: 250px;
  }
  .yg_ab_slider_circle_itemright {
    top: 16%;
    width: 45%;
    right: -15%;
  }
  .yg_ab_slider_circle_itemleft {
    top: 16%;
    width: 45%;
  }
  .yg_ab_slider_text {
    width: 86.11111%;
  }
  .yg_ab_slider_text h1 {
    font-size: 22px;
    line-height: 28px;
  }
  .yg_ab_slider_text p {
    font-size: 14px;
    line-height: 18px;
    display: none;
  }
  .yg_ab_slider .main_breadcrumb {
    left: 0.8em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_slider_image {
    height: 300px;
  }
  .yg_ab_slider_circle_itemright {
    top: 11%;
    width: 33%;
    right: -11%;
  }
  .yg_ab_slider_circle_itemleft {
    top: 11%;
    width: 33%;
  }
  .yg_ab_slider_text {
    width: 87%;
  }
  .yg_ab_slider_text h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .yg_ab_slider_text p {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ab_slider .main_breadcrumb {
    left: 0.8em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_slider_image {
    height: 350px;
  }
  .yg_ab_slider_circle_itemright {
    top: 8%;
    right: -11%;
    width: 33%;
  }
  .yg_ab_slider_circle_itemleft {
    top: 8%;
    width: 33%;
  }
  .yg_ab_slider_text {
    width: 87%;
  }
  .yg_ab_slider_text h1 {
    font-size: 45px;
    line-height: 50px;
  }
  .yg_ab_slider .main_breadcrumb {
    left: 0.8em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_slider_image {
    height: 370px;
  }
  .yg_ab_slider_circle_itemright {
    right: -13%;
  }
  .yg_ab_slider_text {
    width: 87%;
  }
}

.yg_ab_content {
  margin: 0;
  padding: 0;
}
.yg_ab_content_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8611% 0;
  overflow: hidden;
}
.yg_ab_content_body {
  float: left;
  width: 74.5968%;
  margin: 0 2.4193% 0 0;
}
.yg_ab_content_body .content_inline {
  float: left;
  margin: 0 2.1622% 2.1622% 0;
}
.yg_ab_content_body p {
  margin: 0 0 15px 0;
}
.yg_ab_content_body h2 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 14px 0;
}
.yg_ab_content_body h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 30px 0 0 0;
}
.yg_ab_content_body h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 7px 0;
}
.yg_ab_content_body li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
.yg_ab_content_body li a {
  color: #00abf1;
}
.yg_ab_content_body li a:after {
  content: "›";
  margin-left: 5px;
  font-weight: 700;
}
.yg_ab_content_body li a:hover {
  color: #0084b4;
  opacity: 1;
}
.yg_ab_content_body a {
  color: #00abf1;
}
.yg_ab_content_body a:hover {
  color: #0084b4;
  opacity: 0.8;
}
.yg_ab_content_body img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.yg_ab_content_body .activities {
  font-size: 25px;
  margin: 30px 0 20px 0 !important;
  font-weight: 600;
}
.yg_ab_content_body .status_messages {
  color: #0084b4;
  text-align: center;
  padding: 20px;
  background: rgba(201, 216, 67, 0.575);
  display: block;
}
.yg_ab_content_body .status_messages li {
  list-style-type: none;
}
.yg_ab_content_resource {
  overflow: hidden;
}
.yg_ab_content_resource li {
  font-size: 16px;
  line-height: 22px;
}
.yg_ab_content_resource h2 {
  font-size: 28px;
  line-height: 36px;
  color: #8b5d3a;
  text-transform: uppercase;
}
.yg_ab_content .nomination_box {
  background-color: #18b1ef; /**#8b5d3a;**/
  padding: 10.5263%;
  color: #fff;
  clear: both;
}
.yg_ab_content .nomination_box h5 {
  margin: 0 0 7px 0;
}
.yg_ab_content .nomination_box p {
  font-size: 18px;
  line-height: 24px;
}
@media only screen and (max-width: 480px) {
  .yg_ab_content_body {
    float: none;
    width: auto;
    margin: 0;
  }
  .yg_ab_content_body .content_inline {
    float: none;
    display: block;
    text-align: center;
    margin: 0 0 2.1622% 0;
  }
  .yg_ab_content_body h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .yg_ab_content_body h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .yg_ab_content_body h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .yg_ab_content_body p, .yg_ab_content_body li {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ab_content .nomination_box h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .yg_ab_content .nomination_box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_content_body {
    float: none;
    width: auto;
    margin: 0;
  }
  .yg_ab_content_body .content_inline {
    float: none;
    display: block;
    text-align: center;
    margin: 0 0 2.1622% 0;
  }
  .yg_ab_content_body h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .yg_ab_content_body h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_ab_content_body h4 {
    font-size: 20px;
    line-height: 28px;
  }
  .yg_ab_content_body p, .yg_ab_content_body li {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ab_content .nomination_box h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .yg_ab_content .nomination_box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_content_body {
    width: 64.5968%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_content_body {
    width: 64.5968%;
  }
}

.yg_ab_partners {
  margin: 0;
  padding: 0;
}

.yg_ab_partners_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  border-top: 1px solid #e5e5e5;
  padding: 4.8387% 0;
  overflow: hidden;
}

.yg_ab_partners_item {
  overflow: hidden;
  margin-bottom: 3.2258%;
}

.yg_ab_partners_item_image {
  width: 23.3871%;
  height: 160px;
  float: left;
  margin-right: 2.0161%;
  position: relative;
  background-color: #f2f2f2;
}

.yg_ab_partners_item_image .partner_image_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
}

.yg_ab_partners_item_image img {
  width: 100%;
  display: block;
  height: auto;
}

.yg_ab_partners_item_text {
  overflow: hidden;
}

.yg_ab_partners_item_text h5 {
  margin: 0 0 8px 0;
}

@media only screen and (max-width: 480px) {
  .yg_ab_partners h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ab_partners_item {
    margin-bottom: 5%;
  }
  .yg_ab_partners_item_image {
    width: 100%;
    float: none;
    margin: 0 0 3% 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_partners h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ab_partners_item_image {
    width: 34%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_partners_item_image {
    margin-right: 4%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_partners_item_image {
    margin-right: 4%;
  }
}
.yg_ab_explore {
  margin: 0;
  padding: 0;
}

.yg_ab_explore_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  border-top: 1px solid #e5e5e5;
  padding: 4.8387% 0;
  overflow: hidden;
}

.yg_ab_explore_wrap h2 {
  margin-bottom: 0;
}

.yg_ab_explore_item {
  float: left;
  width: 31.7%;
  margin: 1.6129% 2.4194% 0 0;
  max-width: 393px;
  padding: 0;
}

.yg_ab_explore_item_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
}

.yg_ab_explore_item_image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.yg_ab_explore_item_text {
  overflow: hidden;
  color: #656565;
  padding: 5.0891% 0;
}

.yg_ab_explore_item_text_meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #656565;
  text-transform: uppercase;
}

.yg_ab_explore_item_text h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
}

.yg_ab_explore_item_text a {
  color: #0084b4;
}

.yg_ab_explore_item_text a:hover {
  color: #0084b4;
  opacity: 0.8;
}

.yg_ab_explore_item:last-child {
  margin-right: 0;
}

.yg_ab_explore .yg-ab-explore-item {
  float: left;
  width: 31.7%;
  margin: 1.6129% 2.4194% 0 0;
  max-width: 393px;
  padding: 0;
}

.yg_ab_explore .yg-ab-explore-item:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 480px) {
  .yg_ab_explore h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ab_explore_item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
  .yg_ab_explore_item_text h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .yg_ab_explore_item_text_meta {
    font-size: 12px;
    line-height: 16px;
  }
  .yg_ab_explore .yg-ab-explore-item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_explore h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .yg_ab_explore_item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
  .yg_ab_explore_item_text h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .yg_ab_explore_item_text_meta {
    font-size: 12px;
    line-height: 16px;
  }
  .yg_ab_explore .yg-ab-explore-item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_explore_item {
    width: 31.7%;
  }
  .yg_ab_explore .yg-ab-explore-item {
    width: 31.7%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_explore_item {
    width: 31.7%;
  }
  .yg_ab_explore .yg-ab-explore-item {
    width: 31.7%;
  }
}
.yg_bio_content {
  margin: 0;
  padding: 0;
}

.yg_bio_content_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8611% 0;
  overflow: hidden;
}

.yg_bio_content_body {
  overflow: hidden;
}

.yg_bio_content_body .yg_bio_title {
  margin-left: 8.4677%;
  width: 57.4194%;
  float: left;
  padding-bottom: 2.8226%;
  margin-bottom: 3.2258%;
  border-bottom: 1px solid #e5e5e5;
}

.yg_bio_content_body .yg_bio_title h1 {
  margin: 0;
}

.yg_bio_content_body .yg_bio_title h3 {
  margin-bottom: 1.6129%;
}

.yg_bio_content_body .yg_bio_text {
  overflow: hidden;
  width: 65.8871%;
}

.yg_bio_content_body .yg_bio_text h5 {
  margin-top: 0;
  margin-left: 12.8519%;
}

.yg_bio_content_body .yg_bio_text .content_inline {
  float: left;
  margin: 0 2.4479% 2.4479% 0;
}

.yg_bio_content_body .yg_bio_text .content_inline_caption {
  font-size: 14px;
  line-height: 18px;
  color: #656565;
  display: block;
}

.yg_bio_content_body .yg_bio_text p {
  margin-left: 12.8519%;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet {
  overflow: hidden;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet_image {
  width: 24.4798%;
  margin: 0 2.4479% 0 0;
  float: left;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet_image img {
  width: 100%;
  display: block;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet_text {
  overflow: hidden;
  background: rgba(0, 0, 0, 0) url("../img/brown_fact_line.png") no-repeat scroll left top;
  color: #8b5d3a;
  font-size: 30px;
  line-height: 38px;
  padding: 3.6719% 0 1.2239% 0;
  margin: 2.6928% 0;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet_text_author {
  font-size: 20px;
  line-height: 28px;
  color: #666666;
  margin-top: 1.5912%;
}

.yg_bio_content_body .yg_bio_box {
  float: right;
  width: 23.387%;
  margin: 0 7.6613% 0.8064% 2.4194%;
  overflow: hidden;
}

.yg_bio_content_body .yg_bio_box_image {
  width: 100%;
}

.yg_bio_content_body .yg_bio_box_image img {
  display: block;
  width: 100%;
  height: auto;
}

.yg_bio_content_body .yg_bio_box_text {
  background-color: #f2f2f2;
  padding: 12.0689%;
}

.yg_bio_content_body .yg_bio_box_text h5 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
}

.yg_bio_content_body .yg_bio_box_text ul {
  padding-left: 0px;
  margin: 0;
}

.yg_bio_content_body .yg_bio_box_text li {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 2px;
}

.yg_bio_content_body .yg_bio_box_text a {
  color: #0084b4;
}

.yg_bio_content_body .yg_bio_box_text a:hover {
  color: #0084b4;
  opacity: 0.8;
}

@media only screen and (max-width: 480px) {
  .yg_bio_content .yg_bio_title {
    margin-left: 0;
    width: auto;
    float: none;
  }
  .yg_bio_content .yg_bio_title h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .yg_bio_content .yg_bio_title h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_bio_content .yg_bio_box {
    float: none;
    width: auto;
    margin: 10% 0;
  }
  .yg_bio_content .yg_bio_text {
    width: auto;
  }
  .yg_bio_content .yg_bio_text h5, .yg_bio_content .yg_bio_text p {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_text h5 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_bio_content .yg_bio_text p {
    font-size: 17px;
  }
  .yg_bio_content .yg_bio_text .yg_bio_tweet_image {
    width: 34%;
  }
  .yg_bio_content .yg_bio_text .yg_bio_tweet_text {
    font-size: 24px;
    line-height: 32px;
    margin: 5.6928% 0;
    padding: 10% 0 1.2239% 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_bio_content .yg_bio_title {
    margin-left: 0;
    width: auto;
    float: none;
  }
  .yg_bio_content .yg_bio_title h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .yg_bio_content .yg_bio_title h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .yg_bio_content .yg_bio_box {
    float: none;
    width: auto;
    margin: 10% 0;
  }
  .yg_bio_content .yg_bio_text {
    width: auto;
  }
  .yg_bio_content .yg_bio_text h5, .yg_bio_content .yg_bio_text p {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_text h5 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_bio_content .yg_bio_text p {
    font-size: 17px;
  }
  .yg_bio_content .yg_bio_text .yg_bio_tweet_image {
    width: 34%;
  }
  .yg_bio_content .yg_bio_text .yg_bio_tweet_text {
    font-size: 24px;
    line-height: 32px;
    margin: 5.6928% 0;
    padding: 10% 0 1.2239% 0;
  }
  .yg_bio_content .yg_bio_text .content_inline {
    float: none;
    display: block;
    margin: 0 0 2.4479% 0;
  }
  .yg_bio_content .yg_bio_text .content_inline_caption {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_bio_content .yg_bio_title {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_text h5, .yg_bio_content .yg_bio_text p {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_box {
    margin-right: 0;
    width: 31.0484%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_bio_content .yg_bio_title {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_text h5, .yg_bio_content .yg_bio_text p {
    margin-left: 0;
  }
  .yg_bio_content .yg_bio_box {
    margin-right: 0;
    width: 31.0484%;
  }
}
.yg_bio_news {
  margin: 0;
  padding: 0;
}

.yg_bio_news_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  overflow: hidden;
}

.yg_bio_news_wrap h4 {
  margin-top: 0;
}

.yg_bio_news .yg_bio_news_itemwrap {
  padding: 4.8611% 0;
  width: 57.4194%;
  margin-left: 8.4677%;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}

.yg_bio_news_item {
  overflow: hidden;
  margin-bottom: 2.1067%;
}

.yg_bio_news_item a {
  color: #0084b4;
}

.yg_bio_news_item a:after {
  content: "›";
  margin-left: 5px;
  font-weight: 700;
}

.yg_bio_news_item a:hover {
  color: #0084b4;
  opacity: 0.8;
}

.yg_bio_news_item_meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #656565;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.4044%;
}

.yg_bio_news_item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #0084b4;
}

.yg_bio_news_item h3 a:after {
  display: none;
}

@media only screen and (max-width: 480px) {
  .yg_bio_news h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .yg_bio_news .yg_bio_news_itemwrap {
    width: auto;
    margin-left: 0;
  }
  .yg_bio_news_item h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_bio_news_item p {
    font-size: 17px;
  }
  .yg_bio_news_item_meta {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_bio_news h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .yg_bio_news .yg_bio_news_itemwrap {
    width: auto;
    margin-left: 0;
  }
  .yg_bio_news_item h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_bio_news_item p {
    font-size: 17px;
  }
  .yg_bio_news_item_meta {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_bio_news .yg_bio_news_itemwrap {
    margin-left: 0;
    width: 65.8871%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_bio_news .yg_bio_news_itemwrap {
    margin-left: 0;
    width: 65.8871%;
  }
}
.yg_ab_news {
  margin: 0;
  padding: 0;
}

.yg_ab_news_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  overflow: hidden;
}

.yg_ab_news_wrap h4 {
  margin-top: 0;
}

.yg_ab_news .yg_ab_news_itemwrap {
  padding: 4.8611% 0;
  width: 74.5968%;
  margin: 0 2.4194% 0 0;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}

.yg_ab_news_item {
  overflow: hidden;
  margin-bottom: 15px;
}

.yg_ab_news_item a {
  color: #0084b4;
}

.yg_ab_news_item a:after {
  content: "›";
  margin-left: 5px;
  font-weight: 700;
}

.yg_ab_news_item a:hover {
  color: #0084b4;
  opacity: 0.8;
}

.yg_ab_news_item h2 {
  color: #0084b4;
}

.yg_ab_news_item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #0084b4;
}

.yg_ab_news_item h3 a:after {
  display: none;
}

@media only screen and (max-width: 480px) {
  .yg_ab_news .yg_ab_news_itemwrap {
    width: auto;
  }
  .yg_ab_news_item h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_ab_news_item p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_news .yg_ab_news_itemwrap {
    width: auto;
  }
  .yg_ab_news_item h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .yg_ab_news_item p {
    font-size: 17px;
  }
}
.yg-ab-faq-row {
  border-bottom: 1px dotted #f2f2f2;
  margin-bottom: 30px;
}

.yg_ab_content_resource .menu, .yg_ab_content_resource ul {
  padding-left: 0;
}

.yg_ab_content_resource .menu li, .yg_ab_content_resource ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  list-style: none;
}

.yg_ab_content_resource .menu li:first-child, .yg_ab_content_resource ul li:first-child {
  border: none;
}

.yg_ab_content_resource .menu li a, .yg_ab_content_resource ul li a {
  display: block;
  color: #4F4E4E;
  font-size: 20px;
  line-height: 32px;
}

.yg_ab_content_resource .menu li .subnav_menu li, .yg_ab_content_resource ul li .subnav_menu li {
  border: none;
  list-style: none;
}

.yg_ab_content_resource .menu li .subnav_menu li a, .yg_ab_content_resource ul li .subnav_menu li a {
  font-size: 18px;
}

.yg_ab_content_resource .menu li a.active::before, .yg_ab_content_resource .menu li a.is-active::before, .yg_ab_content_resource ul li a.active::before, .yg_ab_content_resource ul li a.is-active::before {
  font-family: fontawesome;
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
}

.yg_ab_content_resource .menu li.bc::before, .yg_ab_content_resource ul li.bc::before {
  font-family: fontawesome;
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
  padding-top: 6px;
  float: left;
}

.yg_ab_content_resource .menu ul li a.is-active::before, .yg_ab_content_resource ul ul li a.is-active::before {
  font-family: fontawesome;
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
}

.yg_ab_content_resource ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  list-style: none;
}

.yg_ab_content_resource ul li:first-child {
  border: none;
}

.yg_ab_content_resource ul li a {
  display: block;
  color: #4F4E4E;
  font-size: 20px;
  line-height: 32px;
}

.yg_ab_content_resource ul li ul li {
  border: none;
  list-style: none;
}

.yg_ab_content_resource ul li ul li a {
  font-size: 18px;
}

.yg_regions_slider .yg_ln_slider_image {
  height: 380px;
}

.yg_regions_wrap .block h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 0;
}

.yg_ol_regions {
  background-color: #fbfbfb;
  border: 1px solid #f3f3f3;
  border-radius: 15px;
}

.yg_ol_regions .view-content {
  overflow: hidden;
  margin: 15px 0;
  padding: 10px;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.yg_ol_regions .yg-ol-regions-item {
  width: 20%;
  overflow: hidden;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_image {
  max-width: 170px;
  max-height: 170px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #2EA7D8;
  border-radius: 50%;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_image img {
  width: unset;
  width: 100%;
  height: auto;
  display: block;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_text {
  text-align: center;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_text h3 {
  font-size: 18px;
  font-weight: 300;
  color: #875a38;
}

.yg_ol_regions .yg_ol_regions_item_readmore {
  text-align: right;
  font-size: 17px;
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .yg_ol_regions .view-content {
    display: block !important;
  }
  .yg_ol_regions .yg-ol-regions-item {
    width: auto !important;
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ol_regions .yg-ol-regions-item {
    width: 30% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ol_regions .yg-ol-regions-item {
    margin: 0 5px;
  }
}
/*.yg_regions .yg-regions-item .yg_regions_item_readmore a {font-size: 17px; margin: 0; padding: 0.7em 1em; background-color: #4c9f38; color: white; }
    .yg_regions .yg-regions-item .yg_regions_item_readmore a:hover {background-color: #3a782a; }*/
.yg-ab-faq-row {
  border-bottom: 1px dotted #f2f2f2;
  margin-bottom: 30px;
}

.yg_rf_slider .yg_ab_slider_image {
  height: 200px;
}

.yg_rf_slider .yg_ab_content_wrap {
  padding: 4.8611% 0 0 0;
}

.yg_regions {
  margin-top: 20px;
}

.yg_regions .view-content {
  overflow: hidden;
}

.yg_regions .yg-regions-item {
  margin: 0 0 30px 0;
  border: 1px solid #f3f3f3;
  background-color: #fbfbfb;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(1) {
  width: 20%;
  text-align: center;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
  margin: 0 15px;
  width: 44%;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(3) {
  width: 32%;
}

.yg_regions .yg-regions-item .yg_regions_item_image {
  max-width: 150px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #2EA7D8;
  border-radius: 50%;
}

.yg_regions .yg-regions-item .yg_regions_item_image img {
  width: 100%;
  height: auto;
  display: block;
}

.yg_regions .yg-regions-item .yg_regions_item_video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.yg_regions .yg-regions-item .yg_regions_item_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yg_regions .yg-regions-item .yg_regions_item_text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #4e4c49;
  margin-bottom: 10px;
}

.yg_regions .yg-regions-item .yg_regions_item_text h5 {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: #875A38;
  font-weight: 500;
}

.yg_regions .yg-regions-item .yg_regions_item_text p {
  min-height: 70px;
}

.yg_regions .yg-regions-item .yg_regions_item_readmore {
  display: block;
  clear: both;
  margin: 0 auto;
  padding-top: 10px;
}

.yg_regions .yg-winners-item {
  margin: 0 0 30px 0;
  border: 1px solid #f3f3f3;
  background-color: #fbfbfb;
  border-radius: 15px;
  padding: 15px !important;
  overflow: hidden;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}

.yg_regions .yg-winners-item .yg_regions_item_image {
  max-width: 150px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #2EA7D8;
  border-radius: 50%;
}

.yg_regions .yg-winners-item .yg_regions_item_image img {
  width: 100%;
  height: auto;
  display: block;
}

.yg_regions .yg-winners-item .yg_regions_item_video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.yg_regions .yg-winners-item .yg_regions_item_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yg_regions .yg-winners-item .yg_regions_item_text {
  padding: 10px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
}

.yg_regions .yg-winners-item .yg_regions_item_text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #4e4c49;
  margin-bottom: 10px;
}

.yg_regions .yg-winners-item .yg_regions_item_text h5 {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: #875A38;
  font-weight: 500;
}

.yg_regions .yg-winners-item .yg_regions_item_text p {
  min-height: 70px;
}

.yg_regions .yg-winners-item .yg_regions_item_readmore {
  display: block;
  clear: both;
  margin: 0 auto;
  padding-top: 10px;
}

.yg_regions .yg-winners-item .yg-regions-itemwrap:first-child {
  width: 20%;
  text-align: center;
  margin-right: 15px;
}

.yg_regions .yg-winners-item .yg-regions-itemwrap:last-child {
  width: 76%;
  position: relative !important;
}

#edit-nominee-form {
  border: none;
  padding: 0;
  max-width: 100%;
  display: inline-block;
  min-width: 0px;
}

#edit-nominee-form .form-submit {
  margin: 0 auto;
  display: block;
  margin-top: 20px;
  height: 50px;
  background: #0084b4;
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
  padding: 1px 25px;
  min-width: 180px;
}

.paragraphs-item-big-idea-summary .content {
  margin-top: 20%;
  position: relative;
}

@media only screen and (max-width: 480px) {
  .yg_regions .view-content {
    display: block !important;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap {
    width: 100% !important;
    margin: 0 !important;
  }
  .yg_regions .yg-regions-item .yg_regions_item_text p {
    min-height: auto !important;
  }
  .yg_regions .yg-winners-item {
    display: block !important;
  }
  .yg_regions .yg-winners-item .yg_regions_item_text {
    position: relative !important;
    transform: none !important;
  }
  .yg_regions .yg-winners-item .yg-regions-itemwrap:first-child {
    width: 100% !important;
  }
  .yg_regions .yg-winners-item .yg-regions-itemwrap:last-child {
    width: 100% !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(1) {
    width: 30%;
    text-align: center;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
    margin: 0 !important;
    width: 65%;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(3) {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
    width: 40%;
  }
}
@media only screen and (min-width: 700px) {
  #block-youngchampions-youngchampions-voting-block {
    border: 1px solid #0084b4;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
  }
}
/* Scss Document */
/*
=================Article Page Styles =========================
*/
.content_container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  border: 0px solid #000;
}
@media screen and (max-width: 479px) {
  .content_container {
    width: 100%;
  }
}

.article_header {
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: 50%, 50%;
}
.article_header .main_breadcrumb {
  position: absolute;
  top: 1em;
  left: 2.4em;
  z-index: 10;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
.article_header .main_breadcrumb ol {
  margin: 0;
  padding: 10px 0 30px 0;
  list-style-type: none;
}
.article_header .main_breadcrumb ol li {
  display: inline-block;
}
.article_header .main_breadcrumb ol li::after {
  content: "/";
  font-size: 14px;
  color: #ffffff;
}
.article_header .main_breadcrumb ol li:last-child::after {
  display: none;
}
.article_header .main_breadcrumb ol li a {
  color: #ffffff;
}
.article_header .main_breadcrumb ol li a:hover {
  color: #ffffff;
  opacity: 0.6;
  text-decoration: underline;
}
.article_header_image {
  position: relative;
  margin: 0;
  padding: 0;
  height: 630px;
}
.article_header_image img {
  display: none;
}
.article_header_image::before {
  content: ""; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#00000000",GradientType=.8 ); /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  width: 100%;
  height: 100%;
}
.article_header_meta {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  color: #fff;
  text-shadow: 4px 7px 4px rgba(0, 0, 0, 0.5);
}
.article_header_meta .article_header_meta_wrap {
  margin-left: 60px;
  width: 70%;
}
.article_header_meta_info {
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
}
.article_header_meta_info span {
  padding: 0;
}
.article_header_meta_info span:after {
  content: "|";
  padding: 0 0.6em;
  color: rgba(254, 252, 252, 0.7);
}
.article_header_meta_info span a {
  color: #fff;
}
.article_header_meta_info span:last-child {
  border-right: none;
}
.article_header_meta_info span:last-child:after {
  content: none;
}
.article_header_meta_title {
  margin: 0;
  padding: 0 0 1em 0;
}
.article_header_meta_title h1 {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .article_header .main_breadcrumb {
    left: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .article_header .article_header_image {
    height: 300px;
  }
  .article_header .article_header_meta {
    bottom: 10%;
  }
  .article_header .article_header_meta .article_header_meta_wrap {
    margin-left: 0;
    width: 90%;
    margin: auto;
  }
  .article_header .article_header_meta_title h1 {
    font-size: 20px;
    line-height: 25px;
  }
  .article_header .main_breadcrumb {
    left: 0.8em;
  }
}
@media screen and (max-width: 479px) {
  .article_header .article_header_image {
    height: 300px;
  }
  .article_header .article_header_meta {
    bottom: 3%;
  }
  .article_header .article_header_meta .article_header_meta_wrap {
    margin-left: 0;
    width: 90%;
    margin: auto;
  }
  .article_header .main_breadcrumb {
    left: 0.8em;
  }
}

.article_content {
  padding: 24px 0;
}
.article_content .document_topics {
  margin-left: 0;
}
.article_content .content_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.article_content .content_wrap:before, .article_content .content_wrap:after {
  content: "";
  display: table;
  clear: both;
}
.article_content .content_wrap .content_main {
  float: left;
  min-width: 300px;
  width: calc(100% - 340px);
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main {
    float: none;
    min-width: none;
    width: 100%;
    margin-right: 0;
  }
}
.article_content .content_wrap .content_main .content_main_container {
  overflow: hidden;
  /*& img 
  {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-left: 60px;
    object-fit: cover;
  }*/
  /*
  & .content_image{
    float: left;
    margin: 1em 1.5em 0 0;
    max-width: 400px;

    & img{
      display: block;
    }

    &_caption{
      display: block;
      color: rgba(101,101,101,1.0);
      font-size: 0.7em;
    }

    &_credit{
      display: block;
      font-style: italic;
      font-size: 0.7em;

      &:before{
        font-family: FontAwesome;
        content: "\f030";
        margin-right:7px;
        font-style: normal;
      }
    }
  }
  */
}
.article_content .content_wrap .content_main .content_main_container p, .article_content .content_wrap .content_main .content_main_container li, .article_content .content_wrap .content_main .content_main_container .document_topics, .article_content .content_wrap .content_main .content_main_container figure {
  margin-left: 60px;
}
.article_content .content_wrap .content_main .content_main_container p a {
  color: rgb(0, 132, 180);
}
.article_content .content_wrap .content_main .content_main_container p a:hover {
  color: rgba(0, 132, 180, 0.7);
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container {
    margin-left: 5%;
    margin-right: 5%;
  }
  .article_content .content_wrap .content_main .content_main_container p, .article_content .content_wrap .content_main .content_main_container li, .article_content .content_wrap .content_main .content_main_container .document_topics, .article_content .content_wrap .content_main .content_main_container figure {
    margin-left: 0;
  }
  .article_content .content_wrap .content_main .content_main_container img {
    margin-left: 0;
  }
}
.article_content .content_wrap .content_main .content_main_container .article_summary {
  background-color: rgba(246, 244, 175, 0.5);
  padding: 0.3em 1em;
}
.article_content .content_wrap .content_main .content_main_container .article_summary p, .article_content .content_wrap .content_main .content_main_container .article_summary li {
  margin: 0;
  font-size: 1em;
}
.article_content .content_wrap .content_main .content_main_container figure {
  padding: 0 0 7px 0;
  margin: 0;
}
.article_content .content_wrap .content_main .content_main_container figure img {
  width: 100%;
  height: auto;
  margin: 0;
}
.article_content .content_wrap .content_main .content_main_container figure figcaption {
  font-size: 0.8em;
  color: rgba(51, 51, 51, 0.7);
}
.article_content .content_wrap .content_main .content_main_container .document_topics li {
  margin-left: 0 !important;
}
.article_content .content_wrap .content_main .content_main_container .quote_content {
  margin-left: 10px !important;
  margin-bottom: 0 !important;
}
.article_content .content_wrap .content_main .content_main_container .quote_content p {
  margin-left: 0 !important;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles {
  max-width: 48%;
  float: left;
  margin-right: 0em;
  margin-bottom: 1em;
  margin-top: 2em;
  margin-left: 50px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles {
    max-width: none;
    float: none;
    margin-left: 0;
    margin-bottom: 2em;
  }
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .fieldTitle {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 10px;
  letter-spacing: 1px;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  margin: 10px 10px 20px 10px;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_left {
  width: 30%;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_left img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right {
  width: 66%;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right_meta {
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right_meta {
    margin-bottom: 2px;
  }
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a {
  font-size: 14px;
  display: block;
  line-height: 16px;
  font-weight: 700;
  color: #000;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a {
    font-size: 13px;
  }
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a:hover {
  color: #0083b3;
}
.article_content .content_wrap .content_main .content_main_container .paragraph--type--related-articles .stub_view {
  display: block;
}
.article_content .content_wrap .content_main .content_main_container table {
  width: 100%;
  background: none;
  border-collapse: collapse;
  margin: 2em 0;
}
.article_content .content_wrap .content_main .content_main_container table tr {
  border-bottom: 1px solid rgb(215, 215, 215);
}
.article_content .content_wrap .content_main .content_main_container table tr td, .article_content .content_wrap .content_main .content_main_container table tr th {
  padding: 1em;
}
.article_content .content_wrap .content_main .content_main_container table tr th {
  background: rgb(0, 131, 179);
  color: rgb(255, 255, 255);
  text-align: left;
}
.article_content .content_wrap .content_main .content_main_container li {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.25em;
  line-height: 1.5em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container li {
    font-size: 16px;
    line-height: 22px;
  }
}
.article_content .content_wrap .content_main .content_main_container .sdg_container {
  margin: 0;
  padding: 0;
  margin-left: 60px;
  display: none;
  /*******/
  /*******/
  /*
  & h3{
    font-weight: 400;
  }

  & .sdg_items{
    overflow: hidden;

    & .sdg_item{
      width: 50%;
      min-width: 300px;
      float: left;
      display: table;
      height: 100%;

      @media screen and (max-width:767px){
        width: 100%;
        min-width: 100px;
        float: none;
        display: block;
        overflow: hidden;
        margin-bottom: 1em;
      }

      &:after{clear: both;}

      &_image{
        float: left;
        margin-right: 1em;
        width: 100px;
        height: 100px;
        position: relative;

        & img{
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
      }

      &_body{
        display: table-cell;
        vertical-align: middle;
        padding: 1em 1em 1em 0;
        overflow: hidden;
        width: 100%;

        & span{
          display: block;
          font-weight: 700;
        }
      }
    }

    & .sdg06{
      & .sdg_item_image{
        background-color: rgba(17,189,227,1.0);
      }

      & span{
        color: rgba(17,189,227,1.0);
      }
    }


    & .sdg12{
      & .sdg_item_image{
        background-color: rgba(191,143,34,1.0);
      }

      & span{
        color: rgba(191,143,34,1.0);
      }
    }
  }*/
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
  margin-left: 0.5em;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item {
  width: 31%;
  margin: 1em 0.8em 1em 0;
  background: #f2f2f2;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container {
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-flow: nowrap;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_image {
  width: 30%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_image img {
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0;
  display: block;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_text {
  width: 70%;
  padding: 1em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_text h3 {
  font-size: 1.1em;
  line-height: 0.8em;
  margin: 0;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_text_description {
  font-size: 0.95em;
  margin-top: 10px;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item_container .contextual_sdg_item_button {
  display: none;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid .contextual_sdg_item:last-child {
  float: left;
}
.article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid:before, .article_content .content_wrap .content_main .content_main_container .sdg_container .ep_sdg_grid:after {
  display: none;
}
.article_content .content_wrap .content_main .content_main_container .media_contact {
  margin: 0;
  padding: 0;
  margin-top: 3em;
  overflow: hidden;
}
.article_content .content_wrap .content_main .content_main_container .media_contact h3 {
  font-weight: 400;
}
.article_content .content_wrap .content_main .content_main_container .media_contact_image {
  float: left;
  margin-right: 1em;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_main .content_main_container .media_contact_image {
    width: 20%;
  }
}
.article_content .content_wrap .content_main .content_main_container .media_contact_image img {
  width: 100%;
  height: auto;
  margin: 0;
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body {
  overflow: hidden;
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body_name {
  font-weight: 700;
  color: rgb(0, 131, 179);
  font-size: 1.375em;
}
@media screen and (max-width: 479px) {
  .article_content .content_wrap .content_main .content_main_container .media_contact_body_name {
    font-size: 1.175em;
  }
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body_title {
  font-size: 1.125em;
}
@media screen and (max-width: 479px) {
  .article_content .content_wrap .content_main .content_main_container .media_contact_body_title {
    font-size: 1em;
  }
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body_info {
  margin-top: 1.5em;
}
@media screen and (max-width: 479px) {
  .article_content .content_wrap .content_main .content_main_container .media_contact_body_info {
    margin-top: 0.5em;
  }
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body_info_phone:before {
  font-family: FontAwesome;
  content: "\f095";
  margin-right: 10px;
  color: rgb(187, 187, 187);
}
.article_content .content_wrap .content_main .content_main_container .media_contact_body_info_email:before {
  font-family: FontAwesome;
  content: "\f0e0";
  margin-right: 10px;
  color: rgb(187, 187, 187);
}
.article_content .content_wrap .content_main p {
  line-height: 1.5em;
  font-weight: 300;
}
.article_content .content_wrap .content_sidebar {
  float: right;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .article_content .content_wrap .content_sidebar {
    float: none;
    width: 100%;
    position: relative;
  }
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight {
  background-color: rgb(75, 159, 55);
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight h5, .article_content .content_wrap .content_sidebar .content_sidebar_highlight h3 {
  margin: 0;
  padding: 0;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight_title {
  margin: 2em;
  margin-bottom: 0;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight_title h3 {
  font-size: 1.6em !important;
  margin: 0 !important;
  line-height: 1em !important;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_new {
  padding: 0 2em 2em 2em;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_new .content_sidebar_highlight_item_links ul li {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: none;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_new .content_sidebar_highlight_item_links ul li a {
  margin: 0 !important;
  font-size: 0.9em !important;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item {
  display: block;
  margin: 2em;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_label h3 {
  font-size: 1.25em;
  font-weight: 300;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_title h5 {
  font-weight: 700;
  font-size: 1.5em;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links {
  overflow: hidden;
  margin-top: 1em;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul {
  margin: 0;
  padding: 0;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li {
  list-style: none;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 28px;
  font-size: 18px;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin: 0 1em;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li a:hover {
  color: rgb(255, 255, 255);
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li:first-child {
  border-left: none;
}
.article_content .content_wrap .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li:first-child a {
  margin: 0 1em 0 0;
}
.article_content .interstitial {
  margin: 0;
  padding: 0;
  margin: 1em 0;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial {
    margin: 2em 0 0.5em 0;
  }
}
.article_content .interstitial .content_main {
  float: none;
  width: 100%;
}
.article_content .interstitial .content_main .content_factbox {
  margin: 0;
  padding: 0;
  min-width: 500px;
  width: calc(100% - 400px);
  height: 100%;
  display: table;
}
.article_content .interstitial .content_main .content_factbox_image {
  float: left;
  margin-right: 1em;
}
.article_content .interstitial .content_main .content_factbox_image img {
  width: 100%;
  height: auto;
}
.article_content .interstitial .content_main .content_factbox_body {
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
.article_content .interstitial .content_main .content_factbox_body .fact_text p {
  color: rgb(1, 114, 76);
  font-size: 1.875em;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
  padding: 0.3em 0;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_factbox_body .fact_text p {
    font-size: 1.475em;
    line-height: 1.2em;
  }
}
.article_content .interstitial .content_main .content_factbox_body .fact_source p {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_factbox {
    min-width: 100px;
    margin: 0 auto;
    width: 90% !important;
  }
}
.article_content .interstitial .content_main .content_quotebox {
  margin: 0;
  padding: 0;
  min-width: 600px;
  width: calc(100% - 300px);
  height: 100%;
  display: table;
}
.article_content .interstitial .content_main .content_quotebox_body {
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
.article_content .interstitial .content_main .content_quotebox_body .fact_text p {
  color: rgb(1, 114, 76);
  font-size: 1.875em;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
  padding: 0.3em 0;
  padding-top: 1em;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_quotebox_body .fact_text p {
    font-size: 1.475em;
    line-height: 1.2em;
  }
}
.article_content .interstitial .content_main .content_quotebox_body .fact_source p {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_quotebox {
    min-width: 100px;
    margin: 0 auto;
    width: 90% !important;
  }
}
.article_content .interstitial .content_main .content_map {
  width: 100%;
  height: 100%;
  display: table;
  background-color: rgb(0, 131, 179);
  padding: 2em;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_map {
    display: block;
    padding: 1em 0 !important;
  }
}
.article_content .interstitial .content_main .content_map_image {
  float: left;
  margin-right: 2em;
  width: 570px;
}
.article_content .interstitial .content_main .content_map_image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_map_image {
    float: none;
    margin-right: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.article_content .interstitial .content_main .content_map_body {
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .article_content .interstitial .content_main .content_map_body {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.article_content .interstitial .content_main .content_map_body .fact_text p {
  color: rgb(255, 255, 255);
  font-size: 1.221em;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
  padding: 0.3em 0;
}
.article_content .interstitial .content_main .content_map_body .fact_source p {
  margin: 0;
  padding: 0;
  margin-top: 1em;
  font-size: 0.9em;
  display: inline-block;
}
.article_content .interstitial .content_main .content_map_body .fact_source p a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.article_content .article_tags {
  border-top: 0.0625rem dotted #dfdfdf;
  margin-left: 60px;
  padding: 0.8em 0.4em;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .article_content .article_tags {
    margin-left: 0;
    margin-bottom: 1em;
    margin-top: 2em;
  }
}
.article_content .article_tags_title {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #767676;
  display: block;
  margin-bottom: 0.1875rem;
}
.article_content .article_tags_topics, .article_content .article_tags_tags {
  padding: 0.2em 0 0 0;
}
.article_content .article_tags_topics ul, .article_content .article_tags_tags ul {
  margin: 0;
  padding: 0;
}
.article_content .article_tags_topics li, .article_content .article_tags_tags li {
  display: inline-block;
  list-style: none;
  margin: -3px 3px !important;
}
.article_content .article_tags_topics li a, .article_content .article_tags_tags li a {
  font-size: 0.8em;
  font-weight: 400;
  line-height: 0;
}
.article_content .article_tags_topics li a:hover, .article_content .article_tags_tags li a:hover {
  text-decoration: underline;
}
.article_content .article_tags_topics li:before, .article_content .article_tags_tags li:before {
  content: "/";
  margin-right: 8px;
  color: rgb(189, 191, 191);
  line-height: 5px !important;
}
.article_content .article_tags_topics li:first-child:before, .article_content .article_tags_tags li:first-child:before {
  content: none;
}
.article_content .article_tags_topics li:first-child a {
  font-weight: 600;
}
.article_content .article_tags_topics a {
  color: #005689;
  font-size: 2.1em;
}
.article_content .article_tags_tags li {
  font-size: 1em !important;
}
.article_content .article_tags_tags a {
  color: #767676;
}

.article_related {
  margin: 2em 0;
}

.article_related .content_container .content_wrap {
  margin: 0 60px;
  border-top: 1px solid rgba(59, 83, 101, 0.15);
}

@media screen and (max-width: 767px) {
  .article_related .content_container .content_wrap {
    margin: 0 5%;
  }
}
.article_related_items {
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}

.article_related_items .article_related_item {
  width: 48%;
  margin-bottom: 1em;
}

@media screen and (max-width: 479px) {
  .article_related_items .article_related_item {
    width: 100%;
  }
}
.article_related_items .article_related_item:after {
  clear: both;
}

.article_related_items .article_related_item .article_related_item_image {
  margin-bottom: 1em;
}

.article_related_items .article_related_item .article_related_item_image img {
  display: block;
  width: 100%;
  height: auto;
}

.article_related_items .article_related_item .article_related_item_body {
  margin: 0;
  padding: 0;
}

.article_related_items .article_related_item .article_related_item_body_tag {
  color: #656565;
  font-size: 0.875em;
  text-transform: uppercase;
}

.article_related_items .article_related_item .article_related_item_body_title {
  font-weight: 700;
  font-size: 1.5em;
}

.article_related_items .article_related_item .article_related_item_body_title a {
  color: #000;
}

.newsletter_signup {
  height: 400px;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .newsletter_signup {
    height: auto;
    padding-bottom: 2em;
  }
}
.newsletter_signup_wrap {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: table;
}

@media screen and (max-width: 767px) {
  .newsletter_signup_wrap {
    display: block;
  }
}
.newsletter_signup_wrap .newsletter_signup_box {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .newsletter_signup_wrap .newsletter_signup_box {
    display: block;
    width: 90%;
    margin: 30px auto 0 auto;
  }
}
.newsletter_signup_wrap .newsletter_signup_box_wrap {
  display: inline-block;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_icon {
  width: 102px;
  float: left;
  margin-right: 2em;
}

@media screen and (max-width: 767px) {
  .newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_icon {
    float: none;
    margin-right: 0;
    margin: 0 auto;
  }
}
.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_icon .signup_icon {
  fill: #01adef;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_icon svg {
  width: 100%;
  height: auto;
  fill: #01adef;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body {
  overflow: hidden;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body {
    text-align: center;
    margin: 1em 0;
  }
}
.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_title {
  margin: 0;
  padding: 0;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_title h3 {
  font-size: 2em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #004159;
  line-height: 1.1em;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form {
  margin: 0;
  padding: 0;
  margin-top: 1em;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form form {
  margin: 0;
  padding: 0;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form form input[type=text] {
  border-collapse: collapse;
  border: none;
  background: #fff;
  font-size: 1.125em;
  padding: 14px;
  width: 320px;
  color: #656565;
}

@media screen and (max-width: 767px) {
  .newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form form input[type=text] {
    text-align: center;
    width: 90%;
    margin-bottom: 1em;
  }
}
.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form form input[type=submit] {
  border-collapse: collapse;
  border: none;
  background: #4b9f37;
  color: #fff;
  font-size: 1.125em;
  padding: 14px;
  text-transform: uppercase;
  margin-left: 0.7em;
}

.newsletter_signup_wrap .newsletter_signup_box_wrap .newsletter_signup_body .newsletter_signup_form form input[type=submit]:hover {
  background: rgba(75, 159, 55, 0.9);
}

.photo_credit {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  background: rgba(51, 51, 51, 0.5);
  padding: 5px;
  color: #fff;
  font-size: 0.7em;
  font-style: italic;
}

.photo_credit a {
  color: #fff;
}

/* Article Sub-Nav Styles */
/*.asn_body {	 

	@media only screen and (max-width: 480px)
	{
		background-color: #FF0 !important;
	} 
	@media only screen and (min-width: 480px) and (max-width: 767px)
	{
		background-color: #0F0 !important;
	}
	@media only screen and (min-width: 768px) and (max-width: 991px)  
	{
		background-color: #F00 !important
	}
	@media only screen and (min-width: 992px) and (max-width: 1200px)  
	{
		background-color:#006 !important
	}
}*/
.asn {
  margin: 0;
  padding: 0;
}

.asn .ep_sdg_grid_item {
  width: 45%;
}

.asn_hero {
  margin: 0;
  padding: 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}

.asn_hero::before {
  content: "";
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 75%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#00000000",GradientType=.8 );
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .asn_hero {
    height: 280px;
    margin-top: 50px;
  }
}
.asn_hero .asn_banner {
  margin: 0;
  padding: 0;
}

.asn_hero .asn_banner img {
  display: none;
}

.asn_hero .asn_pagetitle {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  width: 70%;
}

.asn_hero .asn_pagetitle h1 {
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 4px 7px 4px rgba(0, 0, 0, 0.5);
}

.asn_body {
  overflow: hidden;
}

.asn .asn_content_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  overflow: hidden;
}

.asn .asn_content_wrap .report_body2 {
  overflow: hidden;
}

.asn .asn_content_wrap .report_body2 .content_sidenav {
  float: right;
  margin-left: 2em;
}

@media screen and (max-width: 767px) {
  .asn .asn_content_wrap .report_body2 .content_sidenav {
    float: none;
    margin-left: 0;
  }
}
.asn .asn_content_wrap .report_body2 .content_body {
  overflow: hidden;
}

.asn .asn_content_wrap .report_body2 .content_body p, .asn .asn_content_wrap .report_body2 .content_body h1, .asn .asn_content_wrap .report_body2 .content_body h2, .asn .asn_content_wrap .report_body2 .content_body h3, .asn .asn_content_wrap .report_body2 .content_body h4, .asn .asn_content_wrap .report_body2 .content_body h5, .asn .asn_content_wrap .report_body2 .content_body h6, .asn .asn_content_wrap .report_body2 .content_body iframe, .asn .asn_content_wrap .report_body2 .content_body ul, .asn .asn_content_wrap .report_body2 .content_body ol, .asn .asn_content_wrap .report_body2 .content_body figure, .asn .asn_content_wrap .report_body2 .content_body figcaption {
  margin-left: 108px;
}

@media screen and (max-width: 767px) {
  .asn .asn_content_wrap .report_body2 .content_body p, .asn .asn_content_wrap .report_body2 .content_body h1, .asn .asn_content_wrap .report_body2 .content_body h2, .asn .asn_content_wrap .report_body2 .content_body h3, .asn .asn_content_wrap .report_body2 .content_body h4, .asn .asn_content_wrap .report_body2 .content_body h5, .asn .asn_content_wrap .report_body2 .content_body h6, .asn .asn_content_wrap .report_body2 .content_body iframe, .asn .asn_content_wrap .report_body2 .content_body ul, .asn .asn_content_wrap .report_body2 .content_body ol, .asn .asn_content_wrap .report_body2 .content_body figure, .asn .asn_content_wrap .report_body2 .content_body figcaption {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .asn .asn_content_wrap {
    width: 90%;
    padding-top: 30px;
  }
}
.asn .report_related .report_related_items {
  flex-flow: row wrap;
}

.asn .report_related .report_related_items .report_related_item {
  margin-bottom: 50px;
}

.asn .report_related .report_related_items .report_related_item_meta {
  color: #656565;
  text-transform: uppercase;
  font-size: 17px;
  margin-top: 15px;
  font-weight: 400;
}

.asn .report_related .report_related_items .report_related_item:nth-child(1), .asn .report_related .report_related_items .report_related_item:nth-child(2) {
  max-width: 485px;
  width: 485px;
}

.asn .report_related .report_related_items .report_related_item:nth-child(n+3) {
  max-width: 393px;
  width: 31.7%;
}

.asn .report_related .report_related_items .report_related_item h6 {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

.asn .report_related .report_related_items .report_related_item h6 a {
  color: black;
}

.asn .report_related .report_related_items .report_related_item h6 a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.asn .report_related .report_related_items .report_related_item img {
  width: 100%;
  height: auto;
}

.asn .report_related .report_item_loadmore {
  text-align: center;
  margin: 0 auto;
  padding: 1em;
}

.asn .report_related .report_item_loadmore a {
  display: inline-block;
  margin: 0;
  padding: 0.7em 1em;
  background-color: #4c9f38;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.asn .report_related .report_item_loadmore a:hover {
  background-color: #3a782a;
}

@media screen and (max-width: 767px) {
  .asn .report_related .report_related_items .report_related_item {
    width: 100% !important;
    max-width: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .asn .report_related .report_related_items .report_related_item:nth-child(1), .asn .report_related .report_related_items .report_related_item:nth-child(2) {
    width: 48%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .asn .report_related .report_related_items .report_related_item:nth-child(1), .asn .report_related .report_related_items .report_related_item:nth-child(2) {
    width: 48%;
  }
}
.asn_breadcrumb {
  position: absolute;
  top: 1em;
  left: 35px;
  font-size: 15px;
  /*& a{
  	color: rgba(255,255,255,1.00);
  	font-weight: 700;

  	&:after{
  		content: "/";
  		margin: 0 10px;
  		cursor: text;
  	}

  	&:last-child:after{
  		content: "";
  	}

  	&:hover{
  		color: rgba(255,255,255,0.8);
  	}
  }
  */
}

@media screen and (max-width: 767px) {
  .asn_breadcrumb {
    display: none;
  }
}
.content_sidenav {
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  float: right;
}

@media screen and (max-width: 767px) {
  .content_sidenav {
    position: relative;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
.content_sidenav_title {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 20px;
  color: #868484;
}

.content_sidenav_menu {
  margin: 0;
  padding: 0;
}

.content_sidenav_menu ul {
  margin: 0;
  padding: 0;
}

.content_sidenav_menu ul li, .content_sidenav_menu ul .yg_ab_content_resource ul li {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 0;
}

.content_sidenav_menu ul li:first-child, .content_sidenav_menu ul li .yg_ab_content_resource ul li:first-child, .content_sidenav_menu ul .yg_ab_content_resource ul li:first-child, .content_sidenav_menu ul .yg_ab_content_resource ul li .yg_ab_content_resource ul li:first-child {
  border: none;
}

.content_sidenav_menu ul li a, .content_sidenav_menu ul li .yg_ab_content_resource ul li a, .content_sidenav_menu ul .yg_ab_content_resource ul li a, .content_sidenav_menu ul .yg_ab_content_resource ul li .yg_ab_content_resource ul li a {
  display: block;
  color: #4F4E4E;
  font-size: 20px;
  line-height: 32px;
}

.content_sidenav_menu ul li a:hover, .content_sidenav_menu ul li .yg_ab_content_resource ul li a:hover, .content_sidenav_menu ul .yg_ab_content_resource ul li a:hover, .content_sidenav_menu ul .yg_ab_content_resource ul li .yg_ab_content_resource ul li a:hover {
  opacity: 0.8;
}

.content_sidenav_menu ul li .subnav_menu li, .content_sidenav_menu ul .yg_ab_content_resource ul li .subnav_menu li {
  border: none;
  list-style: none;
}

.content_sidenav_menu ul li .subnav_menu li a, .content_sidenav_menu ul .yg_ab_content_resource ul li .subnav_menu li a {
  font-size: 18px;
}

.content_sidenav_menu ul li .subnav_menu li a:hover, .content_sidenav_menu ul .yg_ab_content_resource ul li .subnav_menu li a:hover {
  opacity: 0.8;
}

.content_sidenav_menu ul li a.is-active, .content_sidenav_menu ul .yg_ab_content_resource ul li a.is-active {
  display: inline;
}

.content_sidenav_menu ul li a.is-active:before, .content_sidenav_menu ul .yg_ab_content_resource ul li a.is-active:before {
  font-family: "FontAwesome";
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
}

.content_sidenav_menu ul li .subnav_menu li.bc a, .content_sidenav_menu ul .yg_ab_content_resource ul li .subnav_menu li.bc a {
  display: inline;
  font-weight: bold;
}

.content_sidenav_menu ul li .subnav_menu li.bc a:before, .content_sidenav_menu ul .yg_ab_content_resource ul li .subnav_menu li.bc a:before {
  font-family: "FontAwesome";
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
}

.content_sidenav_menu ul li.current {
  display: block;
}

.content_sidenav_menu ul li.current:before {
  font-family: "FontAwesome";
  content: "\f04b";
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  color: #0084b4;
}

.content_sidenav_menu ul li.current a {
  display: inline;
}

.content_sidenav_menu ul.subnav {
  margin-left: 20px;
}

.content_sidenav_menu ul.subnav li {
  border: none;
}

.content_sidenav_menu ul li ul {
  margin-left: 20px;
}

.content_sidenav_menu ul li ul li {
  border: none;
  font-size: 18px;
}

.related_pub_info {
  width: 70%;
  margin: 40px 0;
  margin-left: 105px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .related_pub_info {
    margin-left: 0;
  }
}
.related_pub_info h4 {
  font-weight: 600;
}

.related_pub_info_image {
  float: left;
  max-width: 216px;
  margin: 0 30px 0 0;
}

.related_pub_info_image img {
  width: 100%;
  height: auto;
  display: block;
}

.related_pub_info_text {
  overflow: hidden;
}

.related_pub_info_text h4 {
  font-weight: 400;
  margin: 0 0 10px 0;
}

.related_pub_info_text a {
  color: #0084b4;
}

.related_pub_info_text a:hover {
  color: rgba(0, 132, 180, 0.8);
}

.related_pub_info_text .related_pub_info_meta {
  color: #656565;
  font-size: 17px;
  margin-bottom: 20px;
}

.related_pub_info_text a.seemore {
  color: #0084b4;
  font-weight: 400;
}

.related_pub_info_text a.seemore:after {
  content: "›";
  margin-left: 5px;
  font-weight: 400;
}

.related_pub_info_text a.seemore:hover {
  color: rgba(0, 132, 180, 0.8);
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .related_pub_info {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related_pub_info {
    width: 80%;
  }
}
/* Resources Page Styles */
/*
===================
*/
.resources_hero {
  background-color: #0084b4;
}

.resources_hero_content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 0;
  color: #fff;
}

.resources_hero_content h1, .resources_hero_content p {
  margin: 0;
  padding: 0;
  max-width: 920px;
}

.resources_hero_content p {
  font-size: 30px;
  line-height: 38px;
}

.resources_hero_content h1 {
  margin-bottom: 20px;
}

.resources .resources_body_content, .resources .resources_body_content_content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}

.resources .resources_body_content .list_content_columns, .resources .resources_body_content_content .list_content_columns {
  overflow: hidden;
}

.resources .resources_body_content .list_content_columns .list_content_column_left, .resources .resources_body_content_content .list_content_columns .list_content_column_left {
  float: left;
  width: 270px;
  margin-right: 20px;
}

.resources .resources_body_content .list_content_columns .list_content_column_right, .resources .resources_body_content_content .list_content_columns .list_content_column_right {
  overflow: hidden;
  padding: 0 35px;
}

@media screen and (max-width: 767px) {
  .resources .resources_hero_content {
    max-width: 90%;
    padding: 30px 0;
    color: #fff;
  }
  .resources .resources_hero_content h1, .resources .resources_hero_content p {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
  }
  .resources .resources_hero_content p {
    font-size: 18px;
    line-height: 22px;
  }
  .resources .resources_hero_content h1 {
    margin-bottom: 10px;
  }
  .resources .resources_body_content {
    max-width: 90%;
    padding: 30px 0 60px 0;
  }
  .resources .resources_body_content .list_content_columns {
    overflow: hidden;
  }
  .resources .resources_body_content .list_content_columns .list_content_column_left {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .resources .resources_body_content .list_content_columns .list_content_column_right {
    overflow: hidden;
    padding: 0 0;
  }
}
.list_facet_filter_wrap {
  background-color: #f2f2f2;
  padding: 25px;
}

.list_facet_filter_wrap .list_facet_filter_title {
  margin-bottom: 10px;
}

.list_facet_filter_wrap .list_facet_filter_title h3 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.list_facet_filter_wrap .list_facet_filter_body input[type=text], .list_facet_filter_wrap .list_facet_filter_body select {
  width: 100%;
  max-width: 215px;
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  color: #656565;
  line-height: 1.833;
  padding: 10px;
  background-color: #fff;
}

.list_facet_filter_wrap .list_facet_filter_body input[type=text] {
  max-width: 195px;
}

.list_facet_filter_wrap .list_facet_filter_body select option {
  padding: 10px;
}

.list_facet_filter_wrap .list_facet_filter_body input[type=reset] {
  border: none;
  border-collapse: collapse;
  background: none;
  padding: 0;
  font-size: 14px;
  line-height: 2.349;
  color: #0084b4;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .list_facet_filter .list_facet_filter_body input[type=text], .list_facet_filter .list_facet_filter_body select {
    width: 100%;
    max-width: none;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: #656565;
    line-height: 1.833;
    padding: 5px;
    background-color: #fff;
  }
  .list_facet_filter .list_facet_filter_body input[type=text] {
    max-width: calc(100% - 10px);
  }
}
.result_items {
  overflow: hidden;
}

.result_items .result_item {
  overflow: hidden;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.result_items .result_item_meta {
  color: #656565;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.result_items .result_item_meta .date, .result_items .result_item_meta .type {
  margin-right: 10px;
}

.result_items .result_item_meta .type:before {
  content: "|";
  margin-right: 10px;
}

.result_items .result_item_body {
  overflow: hidden;
}

.result_items .result_item_body .result_item_image {
  float: right;
  max-width: 216px;
  border: 1px solid #e2e2e2;
  margin-left: 20px;
}

.result_items .result_item_body .result_item_image img {
  display: block;
  width: 100%;
  height: auto;
}

.result_items .result_item_body .result_item_text {
  overflow: hidden;
}

.result_items .result_item_body .result_item_text h5 {
  margin: 0;
  padding: 0;
}

.result_items .result_item_body .result_item_text a.readmore:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 0.8em;
}

.result_items .result_item_body .result_item_text .result_item_tags a:last-child:after {
  content: " ";
}

.result_items .result_item a {
  color: #0084b4;
}

.result_items .result_item a:hover {
  color: rgba(0, 132, 180, 0.7);
}

@media screen and (max-width: 767px) {
  .result_items .result_item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .result_items .result_item_meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .result_items .result_item_meta .date, .result_items .result_item_meta .type {
    margin-right: 5px;
  }
  .result_items .result_item_body .result_item_image {
    float: none;
    max-width: none;
    width: 99.5%;
    border: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .result_items .result_item_body .result_item_image img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* Video Page Styles*/
.yc_videos {
  margin: 0;
  padding: 0;
}
.yc_videos_slider {
  margin: 0;
  padding: 0;
  background-position: 50% center, 50% center;
  background-size: cover;
  position: relative;
}
.yc_videos_slider_image {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 380px;
  /*&:before {
    background-color:rgba(0,0,0,0.2); //0.4
    content: ""; 
    height: 100%; 
    left: 0; 
    position: absolute; 
    top: 0;
    width: 100%; 
    z-index: 1;
  }*/
}
.yc_videos_slider_image img {
  width: 100%;
  display: block;
}
.yc_videos_embed {
  max-width: 1240px;
  margin: 0 auto;
  width: 86.11111%;
  padding: 2.8611% 0;
  position: relative;
}
.yc_videos_embed_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yc_videos_header {
  max-width: 1240px;
  width: 86.11111%;
  margin: 0 auto;
  padding: 3.8611% 0;
  overflow: hidden;
  position: relative;
}
.yc_videos_header h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0;
  position: relative;
  padding-left: 100px;
}
.yc_videos_header h4::before {
  content: "";
  background: url(../img/header-rossette.svg) no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
}
.yc_videos_header_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yc_videos_resourcewrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yc_videos_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yc_videos_resource_item {
  margin: 0;
  padding: 0;
  width: 31.7%;
  max-width: 393px;
  padding: 0;
  margin-bottom: 15px;
}
.yc_videos_resource_item:hover {
  opacity: 0.8;
  cursor: pointer;
}
.yc_videos_resource_item:hover .yc_videos_resource_item_image {
  opacity: 0.6;
}
.yc_videos_resource_item_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  background-position: 50% center, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
}
.yc_videos_resource_item_image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yc_videos_resource_item_text {
  overflow: hidden;
  color: #4e5253;
  padding: 3.3333% 0;
  margin: 0;
}
.yc_videos_resource_item_text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin: 0;
}
.yc_videos_resource_item_text p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}
.yc_videos_resource_item_text_meta {
  color: #4e5253;
  display: block;
  color: rgba(101, 101, 101, 0.5);
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2%;
}
.yc_videos_resource_item_text_meta span.date {
  margin-right: 5px;
}
.yc_videos_resource_item_text_meta .type:before {
  content: "|";
  margin-right: 5px;
}
.yc_videos_resource_item_text a {
  color: #4e5253;
}
.yc_videos_resource_item_text a:hover {
  color: #4e5253;
  opacity: 0.7;
}
.yc_videos_loadmore {
  text-align: center;
  padding: 2em 1em 0 1em;
}
@media only screen and (max-width: 480px) {
  .yc_videos_slider_image {
    height: 250px;
  }
  .yc_videos_embed {
    max-width: 90%;
    padding: 8% 0;
  }
  .yc_videos_header {
    padding: 13% 0;
    max-width: 90%;
  }
  .yc_videos_header h4 {
    font-size: 22px;
    line-height: 28px;
    padding-left: 80px;
  }
  .yc_videos_header h4::before {
    width: 65px;
    height: 65px;
  }
  .yc_videos_resourcewrap {
    padding: 8% 0;
    width: 90%;
  }
  .yc_videos_resource {
    display: block;
  }
  .yc_videos_resource_item {
    width: auto;
    margin-right: 0;
    max-width: none !important;
    margin-bottom: 15px;
  }
  .yc_videos_resource_item_text h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .yc_videos_resource_item_text p {
    font-size: 15px;
    line-height: 18px;
  }
  .yc_videos_resource_item_text_meta {
    font-size: 12px;
  }
  .yc_videos_loadmore {
    padding: 1em 1em 0 1em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yc_videos_slider_image {
    height: 300px;
  }
  .yc_videos_embed {
    max-width: 90%;
    padding: 4.2% 0;
  }
  .yc_videos_header {
    padding: 7% 0;
    max-width: 90%;
  }
  .yc_videos_header h4 {
    font-size: 24px;
    line-height: 30px;
    padding-left: 90px;
  }
  .yc_videos_header h4::before {
    width: 75px;
    height: 75px;
  }
  .yc_videos_resourcewrap {
    padding: 4.2% 0;
    width: 90%;
  }
  .yc_videos_resource {
    display: block;
  }
  .yc_videos_resource_item {
    width: auto;
    margin-right: 0;
    max-width: none !important;
    margin-bottom: 15px;
  }
  .yc_videos_resource_item_text {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yc_videos_resource_item_text_meta {
    font-size: 0.85em;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_videos_slider_image {
    height: 350px;
  }
  .yc_videos_header {
    padding: 4.8% 0;
  }
  .yc_videos_resource_item {
    width: 48.2%;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yc_videos_slider_image {
    height: 370px;
  }
}

/* News Page Styles */
/*
===================
*/
.yc_news {
  margin: 0;
  padding: 0;
}
.yc_news_slider {
  margin: 0;
  padding: 0;
  background-position: top;
  background-size: cover;
  position: relative;
}
.yc_news_slider_image {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 380px;
  /*&:before {
    background-color:rgba(0,0,0,0.2); //0.4
    content: ""; 
    height: 100%; 
    left: 0; 
    position: absolute; 
    top: 0;
    width: 100%; 
    z-index: 1;
  }*/
}
.yc_news_slider_image img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 480px) {
  .yc_news_slider_image {
    height: 250px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yc_news_slider_image {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_news_slider_image {
    height: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yc_news_slider_image {
    height: 370px;
  }
}
.yc_news_header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.8611% 0;
  overflow: hidden;
  position: relative;
}
.yc_news_header h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0;
  position: relative;
  padding-left: 100px;
}
.yc_news_header h4::before {
  content: "";
  background: url(/static/images/logo-icon.png) no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  background-size: cover;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .yc_news_header {
    padding: 13% 0;
    max-width: 90%;
  }
  .yc_news_header h4 {
    font-size: 22px;
    line-height: 28px;
    padding-left: 80px;
  }
  .yc_news_header h4::before {
    width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yc_news_header {
    padding: 7% 0;
    max-width: 90%;
  }
  .yc_news_header h4 {
    font-size: 24px;
    line-height: 30px;
    padding-left: 90px;
  }
  .yc_news_header h4::before {
    width: 75px;
    height: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_news_header {
    padding: 4.8% 0;
  }
}
.yc_news_header_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yc_news_featured {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #4e5253;
  padding: 65px 0;
}
.yc_news_featured_content {
  padding: 0;
  margin: 0 auto;
}
.yc_news_featured_content_header {
  max-width: 1240px;
  margin: 0 auto;
}
.yc_news_featured_content_header h1 {
  margin: 0;
  padding: 0;
  margin: 0 0 30px 11px;
  color: rgb(255, 255, 255);
}
.yc_news_featured_content_header_filters {
  margin-bottom: 40px;
}
.yc_news_featured_content_header_filters ul {
  margin: 0;
  padding: 0;
}
.yc_news_featured_content_header_filters ul li {
  list-style: none;
}
.yc_news_featured_content_header_filters ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0;
}
.yc_news_featured_content_header_filters ul li a {
  font-size: 22px;
  line-height: 28px;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  display: block;
}
.yc_news_featured_content_header_filters ul li a:hover {
  background: rgb(255, 255, 255);
  color: rgb(0, 132, 180);
}
.yc_news_featured_content_header_filters ul li.active a {
  background: rgb(255, 255, 255);
  color: rgb(0, 132, 180);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
.yc_news_featured_content_body {
  margin: 0 auto;
  padding: 0;
  max-width: 1240px;
}
.yc_news_featured_content_body .yc_news_featured_items {
  overflow: hidden;
}
.yc_news_featured_content_body .yc_news_featured_items .item-list ul li {
  margin: 0;
}
.yc_news_featured_content_body .yc_news_featured_items ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}
.yc_news_featured_content_body .yc_news_featured_items ul li {
  list-style: none;
}
.yc_news_featured_content_body .yc_news_featured_items ul li {
  width: 58.5%;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item {
  position: relative;
  margin: 0;
  padding: 0;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_image {
  position: relative;
  margin: 0;
  padding: 0;
  height: 575px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_image img {
  display: block;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  background-color: #4e5253;
  border: 0px solid rgb(255, 255, 255);
  padding: 1.955% 1.955% 1em;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta {
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.date, .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.type {
  margin-right: 10px;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta .type:before {
  content: "|";
  margin-right: 10px;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text p {
  font-size: 26px;
  line-height: 30px;
  margin: 0;
  padding: 0;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text a {
  color: rgb(255, 255, 255);
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child {
  width: 40%;
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item {
  position: relative;
  margin: 0;
  padding: 0;
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_image {
  width: 100%;
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 60%;
  background-color: #4e5253;
  border: none;
  padding: 20px 20px 0 0;
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_meta, .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_text {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_meta {
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_text p {
  font-size: 26px;
  line-height: 30px;
  margin: 0;
  padding: 0;
}
.yc_news_items {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.yc_news_items_content {
  padding: 70px 0 40px 0;
  max-width: 1240px;
  margin: 0 auto;
}
.yc_news_items_content .yc_news_list {
  overflow: hidden;
}
.yc_news_items_content .yc_news_list .item-list ul li {
  margin: 0;
}
.yc_news_items_content .yc_news_list ul {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}
.yc_news_items_content .yc_news_list ul li {
  list-style: none;
}
.yc_news_items_content .yc_news_list ul li {
  margin-bottom: 15px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1), .yc_news_items_content .yc_news_list ul li:nth-child(2) {
  width: 49%;
  margin-bottom: 60px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item {
  position: relative;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_image, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_image {
  position: relative;
  max-height: 335px;
  min-height: 335px;
  overflow: hidden;
  background-position: 50% top, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_image img, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_image img {
  display: block;
  width: 100%;
  height: 335px;
  -o-object-fit: cover;
     object-fit: cover;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption {
  position: absolute;
  max-width: 60%;
  top: 72%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 3% 3% 3% 0;
  font-size: 26px;
  line-height: 30px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption_text p, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption_text p {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) {
  width: 32%;
  margin-bottom: 15px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item {
  position: relative;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_image {
  position: relative;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  background-position: 50% top, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_image img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption {
  padding: 15px 0;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption_text p {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.video .yc_news_item_icon {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0.8;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact {
  background-color: rgb(139, 93, 58);
  padding: 30px 40px;
  width: 315px;
  color: rgb(255, 255, 255);
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity {
  overflow: hidden;
  margin-bottom: 20px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_image {
  float: left;
  margin-right: 20px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details {
  overflow: hidden;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details span {
  display: block;
  margin-bottom: 5px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .type {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.502);
  font-size: 14px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .name {
  font-weight: 700;
  font-size: 18px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .title {
  font-size: 14px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_contacts {
  overflow: hidden;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_contacts span {
  display: block;
  margin-bottom: 5px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources {
  font-size: 18px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li {
  width: 50%;
  margin-bottom: 10px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li a {
  font-size: 16px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li a:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact a {
  color: rgb(255, 255, 255);
}
.yc_news_items_content .yc_news_list ul li .yc_news_item.contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.yc_news_items_content .yc_news_list p {
  margin: 0;
  padding: 0;
}
.yc_news_items_content .yc_news_list a {
  color: rgb(0, 0, 0);
}
.yc_news_items_content .yc_news_list a:hover {
  color: rgba(0, 0, 0, 0.6);
}
.yc_news_items_content .yc_news_list .yc_news_item_caption_meta {
  color: rgb(101, 101, 101);
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2%;
}
.yc_news_items_content .yc_news_list .yc_news_item_caption_meta span.time, .yc_news_items_content .yc_news_list .yc_news_item_caption_meta span.date {
  margin-right: 5px;
}
.yc_news_items_content .yc_news_list .yc_news_item_caption_meta .type:before {
  content: "|";
  margin-right: 5px;
}
.yc_news_items_content .yc_news_list_showmore {
  display: block;
  margin: 40px 0;
  text-align: center;
}
.yc_news_items_content .yc_news_list_showmore a {
  display: inline-block;
  background-color: rgb(76, 159, 56);
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  padding: 16px 20px;
  font-weight: 700;
}
.yc_news_items_content .yc_news_list_showmore a:hover {
  background-color: rgb(139, 93, 58);
}
@media screen and (max-width: 767px) {
  .yc_news .yc_news_featured {
    padding: 45px 0 20px 0;
  }
  .yc_news .yc_news_featured_content_header {
    max-width: 90%;
  }
  .yc_news .yc_news_featured_content_header h1 {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
  }
  .yc_news .yc_news_featured_content_header_filters {
    display: none;
  }
  .yc_news .yc_news_featured_content_body {
    max-width: 90%;
    margin: 0 auto;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items {
    overflow: hidden;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items .item-list ul li {
    margin: 0;
    margin-bottom: 20px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul {
    margin: 0;
    padding: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li {
    list-style: none;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_image {
    position: relative;
    margin: 0;
    padding: 0;
    max-height: 250px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 10px 0;
    width: 100%;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta, .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text p {
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    padding: 0;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child {
    width: 100%;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_image {
    width: 100%;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 10px 0;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_meta, .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_text {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_meta {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_text p {
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    padding: 0;
  }
  .yc_news .yc_news_items_content {
    padding: 40px 0 20px 0;
    max-width: 90%;
  }
  .yc_news .yc_news_items_content .yc_news_list .item-list ul li {
    margin: 0;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li {
    margin-bottom: 0;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(1), .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(2) {
    margin-bottom: 20px;
    width: 100%;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item, .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item {
    position: relative;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_image, .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_image {
    max-height: 220px;
    min-height: 220px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption, .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption {
    position: relative;
    max-width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption_text p, .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption_text p {
    font-size: 18px;
    line-height: 22px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) {
    max-width: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item {
    position: relative;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_image {
    position: relative;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_image img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption {
    padding: 10px 0;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption_text p {
    font-size: 18px;
    line-height: 22px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.video .yc_news_item_icon {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0.8;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact {
    background-color: rgb(139, 93, 58);
    padding: 30px 40px;
    width: 100%;
    color: rgb(255, 255, 255);
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity {
    overflow: hidden;
    margin-bottom: 20px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_image {
    float: left;
    margin-right: 20px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details {
    overflow: hidden;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details span {
    display: block;
    margin-bottom: 5px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .type {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.502);
    font-size: 14px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .name {
    font-weight: 700;
    font-size: 18px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_identity_details .title {
    font-size: 14px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_contacts {
    overflow: hidden;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_mediacontact_contacts span {
    display: block;
    margin-bottom: 5px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources {
    font-size: 18px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li {
    width: 50%;
    margin-bottom: 10px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li a {
    font-size: 16px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact .yc_news_item_resources ul li a:after {
    font-family: FontAwesome;
    content: "\f105";
    margin-left: 5px;
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact a {
    color: rgb(255, 255, 255);
  }
  .yc_news .yc_news_items_content .yc_news_list ul li .yc_news_item.contact a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .yc_news .yc_news_items_content .yc_news_list .yc_news_item_caption_meta {
    color: rgba(101, 101, 101, 0.5);
    font-size: 12px;
    margin-bottom: 10px;
  }
  .yc_news .yc_news_items_content .yc_news_list_showmore {
    display: block;
    margin: 20px 0;
    text-align: center;
  }
  .yc_news .yc_news_items_content .yc_news_list_showmore a {
    display: inline-block;
    background-color: rgb(76, 159, 56);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    padding: 16px 20px;
    font-weight: 700;
  }
  .yc_news .yc_news_items_content .yc_news_list_showmore a:hover {
    background-color: rgb(139, 93, 58);
  }
}

/* Report and Resource Page Styles */
/*====================================*/
.report {
  margin: 0;
  padding: 0;
}

.report_body_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 30px;
  min-height: 760px;
}

@media screen and (max-width: 767px) {
  .report_body_wrap {
    width: 90%;
    padding-top: 30px;
  }
  .report_body_wrap h4 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
  }
}
.report_header {
  margin-left: 105px;
  margin-bottom: 100px;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .report_header {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .report_header {
    margin-bottom: 30px;
  }
}
.report_header_meta {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.report_header_title h1 {
  margin: 0;
  padding: 0;
  margin: 5px 0;
}

.report_header_author {
  color: #383939;
  margin-top: 20px;
}

.report_header_author span.label {
  font-weight: 700;
}

.report_body {
  margin: 0;
  padding: 0;
  position: relative;
}

.report_body .featured_image {
  margin-left: 105px;
  max-width: 820px;
}

@media screen and (max-width: 767px) {
  .report_body .featured_image {
    margin-left: 0;
  }
}
.report_body .featured_image img {
  width: 100%;
  height: auto;
}

.report_body .resource_image {
  display: inline-block;
  float: left;
  margin-left: 105px;
  margin-right: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .report_body .resource_image {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .report_body .resource_image {
    max-width: 150px;
  }
}
.report_body .resource_image img {
  margin-top: 7px;
  width: 200px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .report_body .resource_image img {
    width: 100%;
    height: auto;
  }
}
.report_body h3, .report_body h5, .report_body p, .report_body ul, .report_body ol, .report_body [data-oembed-url] {
  margin-left: 105px;
  max-width: 818px;
}

@media screen and (max-width: 767px) {
  .report_body h3, .report_body h5, .report_body p, .report_body ul, .report_body ol, .report_body [data-oembed-url] {
    margin-left: 0;
  }
}
.report_body ul, .report_body ol {
  max-width: 770px;
}

.report_body ul ul, .report_body ol ul {
  margin-left: 0;
}

.layout_ar .report_body_wrap .report_body .resource_image {
  float: right;
  margin: 0 0 10px 20px;
}

.layout_ar .report_body_wrap .report_body h3, .layout_ar .report_body_wrap .report_body h5, .layout_ar .report_body_wrap .report_body p, .layout_ar .report_body_wrap .report_body ul, .layout_ar .report_body_wrap .report_body ol, .layout_ar .report_body_wrap .report_body [data-oembed-url] {
  max-width: none;
  padding-left: calc(100% - 900px);
  position: relative;
  z-index: 2;
  text-align: right;
  direction: rtl;
}

.layout_ar .report_body_wrap .content_sidebar {
  right: calc(100% - 393.12px);
  z-index: 7;
}

.layout_ar .report_body_wrap .content_sidebar .content_sidebar_highlight_languages a {
  direction: rtl;
}

.layout_ar .report_body_wrap .content_sidebar .content_sidebar_highlight_languages a::before {
  content: "";
}

.layout_ar .report_body_wrap .content_sidebar .content_sidebar_highlight_languages a::after {
  font-family: "FontAwesome";
  content: "\f1c1";
  margin-left: 7px;
  font-size: 1.4em;
}

.quote_content {
  margin: 40px 0;
  margin-left: 52px;
  color: #01724c;
  padding: 30px 0 0 0;
}

@media screen and (max-width: 767px) {
  .quote_content {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .quote_content {
    margin: 30px 0;
  }
}
.quote_content p {
  margin: 0;
  padding-bottom: 20px;
  max-width: 870px;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .quote_content p {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 300;
  }
}
.interstitial_map_content {
  margin: 40px 0;
  margin-left: 52px;
  background-color: #0084b4;
  color: #fff;
  overflow: hidden;
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .interstitial_map_content {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .interstitial_map_content {
    margin: 30px 0;
    padding: 20px;
  }
}
.interstitial_map_content .interstitial_map_image {
  float: left;
  margin-right: 30px;
  max-width: 570px;
}

@media screen and (max-width: 767px) {
  .interstitial_map_content .interstitial_map_image {
    float: none;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }
}
.interstitial_map_content .interstitial_map_image img {
  display: block;
  width: 100%;
  height: auto;
}

.interstitial_map_content .interstitial_map_text {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.interstitial_map_content .interstitial_map_text p {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: 30px;
  font-size: 19px;
}

@media screen and (max-width: 767px) {
  .interstitial_map_content .interstitial_map_text p {
    font-size: 17px;
    margin-top: 15px;
  }
}
.interstitial_map_content .interstitial_map_text p a {
  color: #fff;
  text-decoration: underline;
}

.content_sidebar {
  width: 288px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4c9f38;
}

@media screen and (max-width: 767px) {
  .content_sidebar {
    position: relative;
    width: 100%;
  }
}
.content_sidebar h3, .content_sidebar h5, .content_sidebar ul, .content_sidebar ol, .content_sidebar p {
  margin: 0;
  padding: 0;
}

.content_sidebar .content_sidebar_highlight {
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.content_sidebar .content_sidebar_highlight h5, .content_sidebar .content_sidebar_highlight h3 {
  margin: 0;
  padding: 0;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item {
  display: block;
  margin: 2em;
}

@media screen and (max-width: 767px) {
  .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item {
    margin: 1.5em;
  }
}
.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_label h3 {
  font-size: 1.25em;
  font-weight: 300;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_title h5 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links {
  overflow: hidden;
  margin-top: 1em;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul {
  margin: 0;
  padding: 0;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li {
  list-style: none;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin: 0 1em;
}

@media screen and (max-width: 767px) {
  .content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li a {
    line-height: 30px;
  }
}
.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li a:hover {
  color: white;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li:first-child {
  border-left: none;
}

.content_sidebar .content_sidebar_highlight .content_sidebar_highlight_item_links ul li:first-child a {
  margin: 0 1em 0 0;
}

.content_sidebar .content_sidebar_highlight_languages {
  background-color: #f2f2f2;
  padding: 35px;
}

.content_sidebar .content_sidebar_highlight_languages a {
  color: #0084b4;
  display: block;
  margin: 10px 0;
}

.content_sidebar .content_sidebar_highlight_languages a:hover {
  opacity: 0.7;
}

.content_sidebar .content_sidebar_highlight_languages a::before {
  font-family: "FontAwesome";
  content: "\f1c1";
  margin-right: 7px;
  font-size: 1.4em;
}

@media screen and (max-width: 767px) {
  .content_sidebar .content_sidebar_highlight_languages {
    padding: 1.5em;
  }
}
.content_sidebar .content_sidebar_highlight_languages li, .content_sidebar .content_sidebar_highlight_languages p {
  font-size: 17px;
}

.content_sidebar .content_sidebar_highlight_languages li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .content_sidebar .content_sidebar_highlight_languages li {
    margin: 10px 0;
  }
}
.content_sidebar .content_sidebar_highlight_languages li a:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 0.8em;
}

.publishing_info {
  margin: 40px 0;
  margin-left: 105px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 820px;
}

@media screen and (max-width: 767px) {
  .publishing_info {
    margin-left: 0;
  }
}
.publishing_info p {
  margin: 0;
  padding: 0;
}

.document_topics {
  margin: 40px 0;
  margin-left: 105px;
  clear: both;
}

@media screen and (max-width: 767px) {
  .document_topics {
    margin-left: 0;
  }
}
.document_topics p {
  margin: 0;
  padding: 0;
}

.document_topics ul {
  margin: 0;
  padding: 0;
}

.document_topics ul li {
  list-style: none;
  display: inline-block;
  margin-bottom: 20px;
}

.document_topics ul li:nth-child(n+2) {
  border-right: 1px solid #959595;
}

.document_topics ul li:last-child {
  border-right: none;
}

.document_topics ul li a {
  font-size: 18px;
  color: #0084b4;
  font-weight: bold;
  line-height: 1.833;
  padding: 12px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .document_topics ul li a {
    font-size: 14px;
    padding: 0.2em 0.3em;
  }
}
.document_topics ul li a:hover {
  color: rgba(6, 76, 101, 0.7);
}

@media screen and (max-width: 767px) {
  .document_topics ul li {
    margin-bottom: 10px;
  }
}
.document_topics ul li.current a {
  border-style: solid;
  border-width: 2px;
  border-color: #0084b4;
  background-color: rgba(0, 132, 180, 0.102);
}

@media screen and (max-width: 767px) {
  .document_topics ul li.current a {
    font-size: 14px;
    padding: 0.2em 0.3em;
  }
}
.document_topics ul li.current a:hover {
  color: #0084b4;
  background-color: rgba(0, 132, 180, 0.302);
}

.sdg_container {
  margin: 40px 0;
  margin-left: 105px;
  max-width: 820px;
}

@media screen and (max-width: 767px) {
  .sdg_container {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sdg_container {
    margin: 20px 0;
  }
}
.sdg_container .sdg_items {
  overflow: hidden;
}

.sdg_container .sdg_items .sdg_item {
  width: 50%;
  min-width: 300px;
  float: left;
  display: table;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .sdg_container .sdg_items .sdg_item {
    width: 100%;
    float: none;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
  }
}
.sdg_container .sdg_items .sdg_item:after {
  clear: both;
}

.sdg_container .sdg_items .sdg_item_image {
  float: left;
  margin-right: 1em;
  width: 100px;
  height: 100px;
  position: relative;
}

.sdg_container .sdg_items .sdg_item_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sdg_container .sdg_items .sdg_item_body {
  display: table-cell;
  vertical-align: middle;
  padding: 1em 1em 1em 0;
  overflow: hidden;
  width: 100%;
}

.sdg_container .sdg_items .sdg_item_body span {
  display: block;
  font-weight: 700;
}

.sdg_container .sdg_items .sdg06 .sdg_item_image {
  background-color: #11bde3;
}

.sdg_container .sdg_items .sdg06 span {
  color: #11bde3;
}

.sdg_container .sdg_items .sdg12 .sdg_item_image {
  background-color: #bf8f22;
}

.sdg_container .sdg_items .sdg12 span {
  color: #bf8f22;
}

.report_related {
  margin: 40px 0;
  margin-left: 105px;
  max-width: 1030px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .report_related {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .report_related {
    margin: 20px 0;
  }
}
.report_related .report_related_items {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .report_related .report_related_items {
    flex-flow: wrap;
    width: 100%;
  }
}
.report_related .report_related_items .report_related_item {
  max-width: 325px;
}

@media screen and (max-width: 767px) {
  .report_related .report_related_items .report_related_item {
    max-width: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .report_related .report_related_items .report_related_item .report_related_item_meta {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 10px;
  }
}
.report_related .report_related_items .report_related_item h6 {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .report_related .report_related_items .report_related_item h6 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0;
  }
}
.report_related .report_related_items .report_related_item img {
  width: 100%;
  height: auto;
}

.inner_image {
  float: left;
  margin: 1em 1.5em 1em 0;
  max-width: 400px;
  overflow: hidden;
}

.inner_image img {
  display: block;
  width: 100%;
  height: auto;
}

.inner_image_caption {
  display: block;
  color: #656565;
  font-size: 0.7em;
}

.inner_image_credit {
  display: block;
  font-style: italic;
  font-size: 0.7em;
}

.inner_image_credit:before {
  font-family: FontAwesome;
  content: "\f030";
  margin-right: 7px;
  font-style: normal;
}

@media only screen and (max-width: 480px) {
  .inner_image {
    float: none !important;
    margin: 1em 0 !important;
    display: block;
  }
}
.cover_image {
  float: left;
  margin: 1em 1.5em 1em 0;
  max-width: 240px;
  overflow: hidden;
}

.cover_image img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 480px) {
  .cover_image {
    float: none !important;
    margin: 1em 0 !important;
    display: block;
  }
}
/* Search Results Page Styles */
/*============================*/
.search {
  margin: 0;
  padding: 0;
}

.search_content_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .search_content_wrap {
    max-width: none;
    width: 90%;
  }
}
.search_header {
  background-color: #0084b4;
  padding: 50px 0;
  border: 1px solid #0084b4;
}

@media screen and (max-width: 767px) {
  .search_header {
    padding: 20px 0;
  }
}
.search_header .header_searchbox {
  float: right;
}

@media screen and (max-width: 767px) {
  .search_header .header_searchbox {
    float: none;
    display: none;
  }
}
.search_header .header_searchbox form {
  margin: 0;
  padding: 0;
}

.search_header .header_searchbox form input[type=text] {
  line-height: 50px;
  padding: 0 5px;
  font-size: 18px;
  font-weight: bold;
}

.search_header .header_searchbox form input[type=submit] {
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-collapse: collapse;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: #4c9f38;
  display: inline-block;
  margin-left: -5px;
  color: white;
}

.search_header .header_searchbox form input[type=submit]:hover {
  background-color: rgba(76, 159, 56, 0.8);
}

.search_header .header_title {
  overflow: hidden;
}

.search_header .header_title h1 {
  color: white;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .search_header .header_title h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
.search_header .header_title p {
  color: white;
}

.search_body {
  margin: 0;
  padding: 30px 0;
}

.search_body .list_content_columns {
  overflow: hidden;
}

.search_body .list_content_columns .list_content_column_left {
  float: left;
  width: 270px;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_left {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.search_body .list_content_columns .list_content_column_right {
  overflow: hidden;
  padding: 0 35px;
}

.search_body .list_content_columns .list_content_column_right .result_items ul li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_right {
    margin-top: 30px;
    padding: 0;
  }
}
.search_body .list_content_columns .list_content_column_right p.result_filter {
  text-align: right;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_right p.result_filter {
    text-align: left;
  }
}
.search_body .list_content_columns .list_content_column_right p.result_filter a {
  font-weight: bold;
}

.list_facet_filter_wrap {
  background-color: #f2f2f2;
  padding: 25px;
}

@media screen and (max-width: 767px) {
  .list_facet_filter_wrap {
    padding: 20px;
  }
}
.list_facet_filter_wrap .list_facet_filter_title {
  margin-bottom: 10px;
}

.list_facet_filter_wrap .list_facet_filter_title h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.list_facet_filter_wrap .list_facet_filter_body input[type=text], .list_facet_filter_wrap .list_facet_filter_body select {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  color: #656565;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .list_facet_filter_wrap .list_facet_filter_body input[type=text], .list_facet_filter_wrap .list_facet_filter_body select {
    font-size: 14px !important;
    line-height: 16px !important;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
}
.list_facet_filter_wrap .list_facet_filter_body input[type=text] {
  max-width: 195px;
  padding: 10px;
}

.list_facet_filter_wrap .list_facet_filter_body label {
  display: block;
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  text-transform: uppercase;
}

.list_facet_filter_wrap .list_facet_filter_body select {
  padding: 0px;
}

.list_facet_filter_wrap .list_facet_filter_body select option {
  padding: 0px;
}

.list_facet_filter_wrap .list_facet_filter_body input[type=submit] {
  border: none;
  border-collapse: collapse;
  background: none;
  padding: 0;
  font-size: 14px;
  line-height: 2.349;
  color: #0084b4;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 20px;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary {
  border-top: 1px dotted rgba(51, 51, 51, 0.5);
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul {
  margin: 0;
  padding: 0;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li {
  list-style: none;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--clear {
  font-size: 1em;
  text-transform: uppercase;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet {
  font-size: 0.8em;
  line-height: 1em;
  display: inline-block;
  margin: 0.2em;
  padding: 0.2em;
  position: relative;
  border: 1px solid rgba(51, 51, 51, 0.3);
  background-color: #0084b4;
  border-radius: 3px;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet a {
  color: #fff;
  margin: 0;
  padding: 0 1.3em 0 0;
  font-weight: 700;
  display: block;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet a::after {
  font-family: "FontAwesome";
  content: "\f00d";
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 1.1em;
  color: #fff;
}

.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet span.js-facet-deactivate {
  display: none;
  text-indent: -150%;
}

.list_facet_filter_wrap .list_facet_filter_home {
  border-top: 1px solid #d7d7d7;
  padding-top: 10px;
  margin-top: 10px;
  text-align: right;
  text-transform: uppercase;
}

.list_facet_filter_wrap .list_facet_filter_home a {
  color: #0084b4;
}

.list_facet_filter_wrap .list_facet_filter_home a:hover {
  color: rgba(0, 132, 180, 0.7);
}

@media screen and (max-width: 767px) {
  .list_facet_filter .list_facet_filter_body input[type=text], .list_facet_filter .list_facet_filter_body select {
    width: 100%;
    max-width: none;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: #656565;
    line-height: 1.833;
    padding: 5px;
    background-color: #fff;
  }
  .list_facet_filter .list_facet_filter_body input[type=text] {
    max-width: calc(100% - 10px);
  }
}
.result_items {
  overflow: hidden;
}

.result_items iframe {
  border: none;
}

@media screen and (max-width: 767px) {
  .result_items {
    margin-top: 30px;
  }
}
.result_items .result_item {
  overflow: hidden;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.result_items .result_item_meta {
  color: #656565;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.result_items .result_item_meta .date, .result_items .result_item_meta .type {
  margin-right: 10px;
}

.result_items .result_item_meta .type:before {
  content: "|";
  margin-right: 10px;
}

.result_items .result_item_body {
  overflow: hidden;
}

.result_items .result_item_body .result_item_image {
  float: right;
  max-width: 200px;
  min-width: 200px;
  min-height: 120px;
  max-height: 120px;
  border: 0px solid #e2e2e2;
  background-position: 50% center, 50% center;
  background-size: cover;
  margin-left: 20px;
}

.result_items .result_item_body .result_item_image img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 480px) {
  .result_items .result_item_body .result_item_image {
    float: none;
    display: block;
    width: 100%;
  }
}
.result_items .result_item_body .result_item_resourceimage {
  float: right;
  max-width: 200px;
  min-width: 200px;
  min-height: 254px;
  max-height: 254px;
  background-position: 50% center, 50% center;
  background-size: cover;
  margin-left: 20px;
}

.result_items .result_item_body .result_item_resourceimage img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 480px) {
  .result_items .result_item_body .result_item_resourceimage {
    float: none;
    display: block;
    width: 100%;
  }
}
.result_items .result_item_body .result_item_text {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .result_items .result_item_body .result_item_text {
    overflow: visible;
  }
}
.result_items .result_item_body .result_item_text h5 {
  margin: 0;
  padding: 0;
}

.result_items .result_item_body .result_item_text p {
  font-size: 17px;
  line-height: 20px;
}

.result_items .result_item_body .result_item_text a.readmore:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 0.8em;
}

.result_items .result_item_body .result_item_text .result_item_tags a {
  font-weight: bold;
}

.result_items .result_item_body .result_item_text .result_item_tags a:after {
  content: ", ";
}

.result_items .result_item_body .result_item_text .result_item_tags a:last-child:after {
  content: " ";
}

.result_items .result_item_body .result_item_text .result_item_tags p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .result_items .result_item_body .result_item_text .result_item_tags p {
    display: none;
  }
}
.result_items .result_item a {
  color: #0084b4;
}

.result_items .result_item a:hover {
  color: rgba(0, 132, 180, 0.7);
}

@media screen and (max-width: 767px) {
  .result_items .result_item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .result_items .result_item_meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .result_items .result_item_meta .date, .result_items .result_item_meta .type {
    margin-right: 5px;
  }
  .result_items .result_item_body .result_item_image {
    display: inline-block;
    float: right;
    max-width: none;
    width: 30%;
    border: none;
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .result_items .result_item_body .result_item_image img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.items_pager {
  margin: 0;
  padding: 0;
  text-align: center;
}
.items_pager .item-list {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list {
    display: block;
  }
}
.items_pager .item-list ul.pager {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager {
    width: 100%;
  }
}
.items_pager .item-list ul.pager li {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li {
    padding: 5px;
  }
}
.items_pager .item-list ul.pager li a {
  display: block;
  padding: 0 5px;
  color: #0084b4;
}
.items_pager .item-list ul.pager li a:hover {
  color: rgba(0, 132, 180, 0.7);
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li a {
    padding: 0 3px;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li.pager-item, .items_pager .item-list ul.pager li.pager-ellipsis {
    display: none;
  }
}
.items_pager .item-list ul.pager li.pager-current {
  color: #fff;
  background-color: rgb(0, 132, 180);
}
.items_pager .item-list ul.pager li.is-active {
  color: #fff;
  background-color: rgb(0, 132, 180);
}
.items_pager .item-list ul.pager li.is-active a {
  color: #fff;
}

.pm_event_banner {
  overflow: hidden;
  margin: 0 0 10px 0;
  padding: 0;
  position: relative;
}

.pm_event_banner p {
  font-size: 17px;
  line-height: 28px;
}

.pm_event_banner .banner_info {
  overflow: auto;
  width: 95%;
  background-color: #0083b3;
  padding-left: 5%;
  position: relative;
}

.pm_event_banner .banner_info .banner_img {
  margin: 0;
  padding: 0;
  float: right;
  width: 50%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.pm_event_banner .banner_info img {
  display: block;
  width: 100%;
  height: auto;
}

.pm_event_banner .title {
  text-transform: uppercase;
  color: #fff;
}

.pm_event_banner .taxonomy {
  text-transform: uppercase;
  color: #fff;
  background: #024256;
  padding: 7px;
  font-size: 14px;
}

.pm_event_banner .site_title {
  color: #fff;
}

.pm_event_banner .site_title h1 {
  margin: 10px 0;
  padding: 0;
  font-size: 40px;
  line-height: 45px;
}

.pm_event_banner .event_date {
  color: #fff;
  font-size: 18px;
}

.pm_event_banner .location {
  color: #fff;
  font-size: 22px;
}

.pm_event_banner .event_details {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
}

.event_page {
  position: relative;
  padding: 0 5% 0 5%;
}

.event_page .event_page_left {
  width: 70%;
  float: left;
  margin-right: 5%;
}

.event_page .event_page_right {
  width: 25%;
  float: right;
  padding-top: 10%;
}

.event_page h5 {
  clear: both;
  margin-bottom: 20px;
}

.event_page .intro {
  font-size: 30px;
  line-height: 40px;
}

.event_page .twitter {
  margin-top: 10px;
}

.event_page .twitter .title {
  color: #4791d8;
}

.content_sidebar_highlight {
  background-color: #4b9f37;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.content_sidebar_highlight img {
  width: 100%;
}

.content_sidebar_highlight h3 {
  margin: 0.5em 0;
}

.content_sidebar_highlight_item {
  display: block;
  margin: 2em;
}

.content_sidebar_highlight_item .btn {
  padding: 10px;
  background: #fff;
  text-transform: uppercase;
  font-weight: bold;
  color: #4b9f37;
  margin: 0 auto;
  text-align: center;
  display: block;
  margin: 20px 0;
}

.content_sidebar_highlight_item .btn:hover {
  background: #4b9f37;
  border-radius: 5px;
  border: 2px solid #fff;
  color: #fff;
}

.content_sidebar_highlight_item .content_sidebar_highlight_item_title {
  font-weight: 100;
}

.content_sidebar_highlight_item ul li {
  list-style: none;
  display: inline-block;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.speakers {
  margin-bottom: 20px;
  overflow: auto;
}

.speakers ul {
  margin-left: 0;
  padding-left: 0 !important;
}

.speakers ul li {
  list-style: none;
  width: 30%;
  padding-right: 3%;
  float: left;
  margin-bottom: 20px;
}

.speakers img {
  float: left;
  width: 45%;
  height: unset;
  padding-right: 10px;
}

.speakers a {
  display: block;
  font-weight: bold;
}

.speakers .speaker_info {
  font-size: 14px;
  font-style: italic;
}

.taxonomy_pack {
  padding-bottom: 40px;
  display: block;
}

.taxonomy_pack a {
  background: #e5f3f6;
  border: 1px solid #0083b3;
  padding: 10px;
  font-weight: bold;
  margin-top: 2em;
  font-size: 18px;
  display: inline-block;
}

.other_events {
  border-top: 1px solid #ccc;
  clear: both;
}

.other_events div {
  background: #f2f2f2;
  width: 30%;
  display: inline-block;
  padding: 10px 0 10px 10px;
  margin-right: 2%;
}

.other_events div:last-child {
  margin-right: 0;
}

.other_events .o_event_info {
  width: 100%;
}

.other_events img {
  float: right;
  padding-left: 10px;
  width: 40%;
}

.other_events .toptitle {
  text-transform: uppercase;
  display: block;
}

.other_events .e_title {
  font-weight: bold;
  padding-top: 10px;
  display: block;
}

.other_events .e_dates {
  padding-top: 10px;
  font-style: italic;
  display: block;
}

.other_events .see_all_e {
  text-align: right;
  display: block;
  padding-top: 10px;
  font-size: 14px;
}

.schedule_list {
  border: 2px solid #4791d8;
  padding: 10px;
  color: #4791d8;
  font-weight: bold;
}

.schedule_wrap {
  overflow: hidden;
}

.schedule_item {
  display: flex;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 10px;
}

.schedule_item_time {
  flex: 0 0 20%;
  border: 0px solid #ccc;
  padding: 10px 15px;
}

.schedule_item_time_info {
  display: block;
  margin-bottom: 4px;
}

.schedule_item_time .schedule_item_place {
  display: block;
}

.schedule_item_description {
  padding: 10px;
  overflow: hidden;
}

.schedule_item_description_wrap {
  margin: 0 0 2% 3%;
  width: 82%;
  float: right;
}

.schedule_item_description .schedule_item_title {
  margin-bottom: 5px;
}

.schedule_item_description .schedule_item_title_text {
  float: right;
  width: 82%;
  margin-left: 3%;
}

.schedule_item_description .schedule_item_title_text_title {
  font-weight: 700;
  display: block;
}

.schedule_item_description .schedule_item_title_text_role {
  font-style: italic;
  display: block;
}

.schedule_item_description .schedule_item_title_image {
  width: 15%;
  overflow: hidden;
}

.schedule_item_description .schedule_item_title_image img {
  width: 100%;
  display: block;
  height: auto;
}

.schedule_item_description .schedule_item_info {
  overflow: hidden;
}

.schedule_item_description .schedule_item_info_desctitle {
  margin-top: 10px;
  display: block;
  font-weight: 700;
}

.schedule_item_description .schedule_item_info_desc {
  display: block;
  padding: 15px 0;
}

.schedule_item_description .schedule_item_info_addthis {
  margin-top: 10px;
  font-size: 14px;
  display: block;
}

.schedule_item_description .schedule_item_info_addthis ul {
  margin: 0;
  padding: 0 5px;
  display: inline-block;
}

.schedule_item_description .schedule_item_info_addthis li {
  display: inline-block;
  border-right: 1px solid #ccc;
  padding: 0 5px;
}

.schedule_item_description .schedule_item_info_addthis li:last-child {
  border-right: 0;
}

.schedule_item.header {
  background-color: #0083B3;
  border-bottom: 0px solid #d7d7d7;
  padding-bottom: 0 !important;
}

.schedule_item.header .schedule_item_time, .schedule_item.header .schedule_item_description {
  padding: 15px;
  font-weight: 600;
  color: #fff;
}

.schedule_item:last-child {
  border-bottom: 0px solid #ccc;
}

@media only screen and (max-width: 480px) {
  .schedule_item {
    display: block;
  }
  .schedule_item:first-child {
    display: none;
  }
}
.schedule table {
  width: 100%;
  background: none;
  border-collapse: collapse;
  margin: 2em 0;
}

.schedule table tr {
  border-bottom: 1px solid #d7d7d7;
}

.schedule table tr:last-child {
  border-bottom: 0 solid #d7d7d7;
}

.schedule table tr th {
  padding: 1em;
  background: #0083b3;
  color: #fff;
  text-align: left;
}

.schedule table td {
  vertical-align: top;
}

.schedule table th:first-child {
  width: 20%;
}

.schedule .info {
  padding-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.schedule .info img {
  float: left;
  width: 15%;
  padding-right: 20px;
}

.schedule .info img:after {
  clear: both;
}

.schedule .info .title_1 {
  font-weight: bold;
  display: block;
}

.schedule .info .role {
  font-style: italic;
  display: block;
}

.schedule .info .role::after {
  clear: both;
}

.schedule .info .title_2 {
  margin-top: 10px;
  display: block;
  font-weight: bold;
}

.schedule .info .cont {
  width: 82%;
  margin-left: 18%;
  display: block;
}

.schedule .info p {
  clear: both;
  margin-top: 10px;
}

.schedule .info .add_this_e {
  margin-top: 10px;
  font-size: 14px;
  margin-left: 18%;
  padding-bottom: 20px;
  display: block;
}

.schedule .info .add_this_e ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.schedule .info .add_this_e ul li:last-child {
  border-right: 0;
}

.schedule .info .add_this_e li {
  display: inline-block;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}

.news {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  overflow: auto;
  font-size: 20px;
}

.news img {
  float: right;
  padding-left: 10px;
  padding-top: 20px;
  width: 25%;
}

.news .news_title {
  font-weight: bold;
  display: block;
}

.news .news_date {
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}

.news:last-child {
  border-bottom: 0;
}

.gwm_ts_footer {
  clear: both;
}

@media screen and (max-width: 767px) {
  .pm_event_banner .banner_info .banner_img,
  .pm_event_banner .banner_info .event_details {
    margin: 0;
    padding: 0;
    float: none;
    width: 100%;
    display: block;
  }
  .rule {
    display: none;
  }
  .speakers img {
    float: left;
    width: 100%;
  }
  .event_page_left,
  .event_page_right {
    width: 100% !important;
    display: block !important;
    float: none;
  }
  .event_page .intro {
    padding-top: 0px !important;
  }
  .pm_event_banner .banner_info {
    width: 100%;
    padding: 0;
  }
  .pm_event_banner .banner_info {
    padding-bottom: 5%;
  }
  .pm_event_banner .banner_info .event_details {
    padding: 5%;
    width: 90%;
  }
  .pm_event_banner .site_title h1 {
    font-size: 36px;
  }
  .speakers ul li {
    width: 45%;
    padding-right: 5%;
  }
  .event_page .event_page_left h6,
  .event_page .event_page_left h5 {
    line-height: 32px;
  }
  .other_events div {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    overflow: auto;
  }
  .schedule td:first-child {
    width: 35%;
  }
  .news img,
  .exhibits img {
    float: none;
    width: 100%;
  }
  .news,
  .exhibits {
    overflow: hidden;
  }
}
@media screen and (max-width: 1007px) {
  .rule {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1006px) {
  .resp-tabs-list li {
    font-size: 18px;
    display: inline-block;
    padding: 13px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1264px) {
  .pm_event_banner .banner_info img {
    width: auto;
    height: 452px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pm_event_banner .site_title h1 {
    font-size: 2.6em;
  }
}
.event_page_left table {
  width: 100%;
  background: none;
  border-collapse: collapse;
  margin: 2em 0;
}

.event_page_left table tr {
  border-bottom: 1px solid #d7d7d7;
}

.event_page_left table tr td, table tr th {
  padding: 1em;
}

.event_page_left table tr th {
  background: #0083b3;
  color: white;
  text-align: left;
}

/* Scss Document */
/*
=================Expert Profile Page Styles =========================
*/
.expert {
  margin: 0;
  padding: 0;
}

.expert .expert_content_wrap {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 580px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap {
    width: 90%;
    min-height: none;
  }
}
.expert .expert_content_wrap .expert_content {
  width: 100%;
  max-width: 1115px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content {
    width: 100%;
  }
}
.expert .expert_content_wrap .expert_content h1, .expert .expert_content_wrap .expert_content h2, .expert .expert_content_wrap .expert_content h3, .expert .expert_content_wrap .expert_content h4, .expert .expert_content_wrap .expert_content h5, .expert .expert_content_wrap .expert_content p, .expert .expert_content_wrap .expert_content .expert_content_latest_item_type {
  padding-left: 50px;
  width: 710px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content h1, .expert .expert_content_wrap .expert_content h2, .expert .expert_content_wrap .expert_content h3, .expert .expert_content_wrap .expert_content h4, .expert .expert_content_wrap .expert_content h5, .expert .expert_content_wrap .expert_content p, .expert .expert_content_wrap .expert_content .expert_content_latest_item_type {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.expert .expert_content_wrap .expert_content h1, .expert .expert_content_wrap .expert_content h2, .expert .expert_content_wrap .expert_content h3, .expert .expert_content_wrap .expert_content h4, .expert .expert_content_wrap .expert_content h5, .expert .expert_content_wrap .expert_content h6 {
  margin: 0;
}

.expert .expert_content_wrap .expert_content ul, .expert .expert_content_wrap .expert_content hr {
  margin-left: 50px;
  width: 710px;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content ul, .expert .expert_content_wrap .expert_content hr {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.expert .expert_content_wrap .expert_content hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.expert .expert_content_wrap .expert_content h2 {
  color: #333333;
  font-size: 28px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.expert .expert_content_wrap .expert_content h4 {
  font-weight: 700;
}

.expert .expert_content_wrap .expert_content p.expert_quote {
  padding-left: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 300;
  margin: 1em 0;
  color: #01724c;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content p.expert_quote {
    font-size: 20px;
    line-height: 26px;
    padding-top: 30px;
  }
}
.expert .expert_content_wrap .expert_content p.expert_quote span {
  font-size: 17px;
  line-height: 22px;
  margin-top: 1em;
  display: block;
}

.expert .expert_content_wrap .expert_content p.expert_quote span:before {
  content: "–";
  margin-right: 5px;
}

.expert .expert_content_wrap .expert_content_bio {
  position: relative;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts {
  position: absolute;
  right: 0;
  top: 0;
  width: 289px;
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_bio .expert_contacts {
    position: relative;
    width: 100%;
  }
}
.expert .expert_content_wrap .expert_content_bio .expert_contacts_image {
  display: block;
  width: 100%;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_image img {
  display: block;
  width: 100%;
  height: auto;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body {
  padding: 30px;
  font-size: 17px;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body p {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  width: auto;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_phone:before, .expert .expert_content_wrap .expert_content_bio .expert_contacts_body_email:before, .expert .expert_content_wrap .expert_content_bio .expert_contacts_body_linkedin:before, .expert .expert_content_wrap .expert_content_bio .expert_contacts_body_twitter:before, .expert .expert_content_wrap .expert_content_bio .expert_contacts_body_facebook:before, .expert .expert_content_wrap .expert_content_bio .expert_contacts_body_instagram:before {
  font-family: FontAwesome;
  margin-right: 20px;
  font-style: normal;
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_phone:before {
  content: "\f095";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_email:before {
  content: "\f0e0";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_email {
  padding: 10px;
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_linkedin:before {
  content: "\f0e1";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_twitter:before {
  content: "\f099";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_facebook:before {
  content: "\f230";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body_instagram:before {
  content: "\f16d";
}

.expert .expert_content_wrap .expert_content_bio .expert_contacts_body a:hover {
  text-decoration: underline;
}

.expert .expert_content_wrap .expert_content_expertise {
  margin: 0;
  padding: 0;
}

.expert .expert_content_wrap .expert_content_expertise ul {
  padding: 0;
}

.expert .expert_content_wrap .expert_content_expertise ul li {
  list-style: none;
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0;
}

.expert .expert_content_wrap .expert_content_expertise ul li a {
  display: block;
  border: 2px solid #0084b4;
  background-color: rgba(0, 132, 180, 0.102);
  padding: 0.5em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_expertise ul li a {
    font-size: 14px;
    padding: 0.2em 0.3em;
  }
}
.expert .expert_content_wrap .expert_content_expertise ul li a:hover {
  background-color: rgba(0, 132, 180, 0.2);
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_latest h4 {
    font-size: 24px;
  }
}
.expert .expert_content_wrap .expert_content_latest_items {
  margin-top: 30px;
}

.expert .expert_content_wrap .expert_content_latest_items .expert_content_latest_item {
  margin: 1.5em 0;
}

.expert .expert_content_wrap .expert_content_latest_items .expert_content_latest_item_type {
  font-size: 14px;
  color: #656565;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_latest_items .expert_content_latest_item_type {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.expert .expert_content_wrap .expert_content_latest p {
  color: #656565;
  margin: 0;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_latest p {
    font-size: 14px;
    margin-top: 10px;
  }
}
.expert .expert_content_wrap .expert_content_latest .readall a:after {
  font-family: FontAwesome;
  content: "\f105";
  padding-left: 5px;
}

.expert .expert_content_wrap .expert_content_latest a:hover {
  opacity: 0.7;
}

.expert .expert_content_wrap .expert_content_staff {
  margin-left: 50px;
  width: 925px;
  margin-top: 60px;
  padding: 60px 0 90px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
    padding: 20px 0 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.expert .expert_content_wrap .expert_content_staff h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff h4 {
    font-size: 24px;
  }
}
.expert .expert_content_wrap .expert_content_staff_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff_wrap {
    flex-flow: wrap;
  }
}
.expert .expert_content_wrap .expert_content_staff_wrap h6 {
  color: #0084b4;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff_wrap h6 {
    font-size: 20px;
  }
}
.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item {
  margin: 0;
  max-width: 290px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item {
    margin-bottom: 30px;
    width: 100%;
  }
  .expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_title {
    text-transform: uppercase;
    margin-top: 5px;
    font-size: 12px;
  }
}
.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts {
    margin-top: 5px;
  }
}
.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_email {
  color: #0084b4;
}

.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_email a:hover {
  text-decoration: underline;
}

.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_phone:before, .expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_email:before {
  font-family: FontAwesome;
  margin-right: 10px;
  font-style: normal;
  color: rgba(51, 51, 51, 0.4);
  font-size: 18px;
  line-height: 20px;
}

.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_phone:before {
  content: "\f095";
}

.expert .expert_content_wrap .expert_content_staff_wrap .expert_content_staff_item .staff_contacts_email:before {
  content: "\f0e0";
}

/* Scss Document */
.event_page .resp-tab-content {
  background-color: #fff;
}

.yg_regions_slider .yg_ln_slider_image {
  height: 380px;
}

.yg_regions_wrap .block h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 0;
}

.yg_ol_regions {
  background-color: #fbfbfb;
  border: 1px solid #f3f3f3;
  border-radius: 15px;
}

.yg_ol_regions .view-content {
  overflow: hidden;
  margin: 15px 0;
  padding: 10px;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.yg_ol_regions .yg-ol-regions-item {
  width: 20%;
  overflow: hidden;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_image {
  max-width: 170px;
  max-height: 170px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #2EA7D8;
  border-radius: 50%;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_image img {
  width: 100%;
  height: auto;
  display: block;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_text {
  text-align: center;
}

.yg_ol_regions .yg-ol-regions-item .yg_ol_regions_item_text h3 {
  font-size: 18px;
  font-weight: 300;
  color: #875a38;
  line-height: 22px;
}

.yg_ol_regions .yg_ol_regions_item_readmore {
  text-align: right;
  font-size: 17px;
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .yg_ol_regions .view-content {
    display: block !important;
  }
  .yg_ol_regions .yg-ol-regions-item {
    width: auto !important;
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ol_regions .yg-ol-regions-item {
    width: 30% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ol_regions .yg-ol-regions-item {
    margin: 0 5px;
  }
}
.yg-ab-faq-row {
  border-bottom: 1px dotted #f2f2f2;
  margin-bottom: 30px;
}

.yg_rf_slider .yg_ab_slider_image {
  height: 200px;
}

.yg_rf_slider .yg_ab_content_wrap {
  padding: 4.8611% 0 0 0;
}

.yg_regions {
  margin-top: 20px;
}

.yg_regions .view-content {
  overflow: hidden;
}

.yg_regions .yg-regions-item {
  margin: 0 0 30px 0;
  border: 1px solid #f3f3f3;
  background-color: #fbfbfb;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(1) {
  width: 20%;
  text-align: center;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
  margin: 0 15px;
  width: 44%;
}

.yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(3) {
  width: 32%;
}

.yg_regions .yg-regions-item .yg_regions_item_image, .yg_regions .yg-winners-item .yg_regions_item_image {
  max-width: 150px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #2EA7D8;
  border-radius: 50%;
}

.yg_regions .yg-regions-item .yg_regions_item_image img, .yg_regions .yg-winners-item .yg_regions_item_image img {
  width: 100%;
  height: auto;
  display: block;
}

.yg_regions .yg-regions-item .yg_regions_item_video, .yg_regions .yg-winners-item .yg_regions_item_video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.yg_regions .yg-regions-item .yg_regions_item_video iframe, .yg_regions .yg-winners-item .yg_regions_item_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yg_regions .yg-regions-item .yg_regions_item_text h3, .yg_regions .yg-winners-item .yg_regions_item_text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #4e4c49;
  margin-bottom: 10px;
}

.yg_regions .yg-regions-item .yg_regions_item_text h5, .yg_regions .yg-winners-item .yg_regions_item_text h5 {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: #875A38;
  font-weight: 500;
}

.yg_regions .yg-regions-item .yg_regions_item_text p, .yg_regions .yg-winners-item .yg_regions_item_text p {
  min-height: 70px;
}

.yg_regions .yg-regions-item .yg_regions_item_readmore, .yg_regions .yg-winners-item .yg_regions_item_readmore {
  display: block;
  clear: both;
  margin: 0 auto;
  padding-top: 10px;
}

/*.yg_regions .yg-regions-item .yg_regions_item_readmore a {font-size: 17px; margin: 0; padding: 0.7em 1em; background-color: #4c9f38; color: white; }
    .yg_regions .yg-regions-item .yg_regions_item_readmore a:hover {background-color: #3a782a; }*/
@media only screen and (max-width: 480px) {
  .yg_regions .view-content {
    display: block !important;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap {
    width: 100% !important;
    margin: 0 !important;
  }
  .yg_regions .yg-regions-item .yg_regions_item_text p {
    min-height: auto !important;
  }
  .yg_regions .yg-winners-item {
    display: block !important;
  }
  .yg_regions .yg-winners-item .yg_regions_item_text {
    position: relative !important;
    transform: none !important;
  }
  .yg_regions .yg-winners-item .yg-regions-itemwrap:first-child, .yg_regions .yg-winners-item .yg-regions-itemwrap:last-child {
    width: 100% !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(1) {
    width: 30%;
    text-align: center;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
    margin: 0 !important;
    width: 65%;
  }
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(3) {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_regions .yg-regions-item .yg-regions-itemwrap:nth-child(2) {
    width: 40%;
  }
}
.yg_regions .yg-winners-item {
  margin: 0 0 30px 0;
  border: 1px solid #f3f3f3;
  background-color: #fbfbfb;
  border-radius: 15px;
  padding: 15px !important;
  overflow: hidden;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}

.yg_regions .yg-winners-item .yg-regions-itemwrap:first-child {
  width: 20%;
  text-align: center;
  margin-right: 15px;
}

.yg_regions .yg-winners-item .yg-regions-itemwrap:last-child {
  width: 76%;
  position: relative !important;
}

.yg_regions .yg-winners-item .yg_regions_item_text {
  padding: 10px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
}

.news-lead-image .yg_ab_slider_image {
  height: 500px;
}

.news-lead-image img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-title {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  top: 58%;
  height: 500px;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.news-title h1 {
  padding: 10px 50px;
  top: 30%;
  position: relative;
}

.news-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5em;
}

/*Voting form*/
#edit-nominee-form {
  border: none;
  padding: 0;
  max-width: 100%;
  display: inline-block;
  min-width: 0px;
}

#edit-nominee-form .form-submit {
  margin: 0 auto;
  display: block;
  margin-top: 20px;
  height: 50px;
  background: #0084b4;
  outline: none;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
  padding: 1px 25px;
  min-width: 180px;
}

@media only screen and (min-width: 700px) {
  #block-youngchampions-youngchampions-voting-block {
    border: 1px solid #0084b4;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
  }
}
.paragraphs-item-big-idea-summary .content {
  margin-top: 20%;
  position: relative;
}

.winners_wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  padding: 4.8611% 0;
  overflow: hidden;
}

.winners_wrapper .winner_item_inner {
  padding: 15px;
}

.winners_wrapper .winner_item {
  display: block;
  width: 50%;
  overflow-x: hidden;
  float: left;
}

.winners_wrapper .winner_item .winner_year {
  color: black;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 2em;
  text-align: center;
}

.winner_item_image img {
  max-width: 100%;
  max-height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

.winner_item .winner_item_title {
  color: black;
  margin-top: 14px;
  font-size: 31px;
}

/*Regional Finalists*/
.regional_finalist_listing .regional_finalist {
  width: 20%;
  float: left;
  overflow-x: hidden;
}

.regional_finalist_image img {
  border-radius: 50%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
}

.regional_finalist_listing {
  min-height: 235px;
  padding-top: 15px;
  background: #fbfbfb;
  padding-left: 20px;
  border: 1px solid #f3f3f3;
  border-radius: 15px;
}

.region_name {
  font-weight: 300;
  font-size: 26px;
  margin-top: 15px;
  margin-bottom: 6px;
}

.margin_bottom_medium {
  margin-bottom: 20px;
}

.bold_this {
  font-weight: bold;
  font-size: 19px;
}

paragraphs-item-captioned-images {
  width: 50%;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  background: #e9ebee;
}

.paragraphs-item-captioned-images img {
  width: 100%;
  height: auto;
}

.field-name-field-t-caption {
  padding: 0 0 10px 20px;
}

.subscribe_section {
  border-top: 1px solid #ccc;
  background: white;
  padding-top: 10px;
  padding-bottom: 15px;
}

.subscribe_section label {
  color: black;
}

.node-type-news-and-resources p img, .node-type-yc-news p img {
  float: left;
  margin-right: 20px;
  width: 100% !important;
  margin-bottom: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

p.image-paragraph {
  width: 50%;
  float: left;
  font-style: italic;
  margin-right: 15px;
  margin-bottom: 5px;
}

.hidden {
  display: none;
}

.field-item iframe {
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 615px;
  height: auto !important;
  position: relative !important;
}

@media only screen and (max-width: 767px) {
  p.image-paragraph {
    width: 100%;
  }
}
.result_items .result_item_body .laureate_item_image {
  float: right;
  width: 220px;
  margin-left: 20px;
}

.result_items .result_item_body .laureate_item_image img {
  border: 1px solid #e2e2e2;
  border-bottom-right-radius: 10%;
}

.result_items {
  overflow: hidden;
}

.result_items .result_item {
  overflow: hidden;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

/*
.result_item .result_item_body {
  display: flex;
}
*/
.result_items .result_item_meta {
  color: #656565;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
}

.result_items .result_item_meta .date, .result_items .result_item_meta .type {
  margin-right: 10px;
}

.result_items .result_item_meta .type:before {
  content: "|";
  margin-right: 10px;
}

.result_items .result_item_body {
  overflow: hidden;
  width: 100%;
}

.result_items .result_item_body .result_item_image {
  float: right;
  max-width: 216px;
  border: 0px solid #e2e2e2;
  margin-left: 20px;
}

.result_items .result_item_body .laureate_item_image {
  float: right;
  width: 220px;
  margin-left: 20px;
}

.laureate_item_image {
  float: right;
  width: 220px;
  margin-left: 20px;
}

.laureate_item_image img {
  display: block;
  width: 100%;
  height: auto;
}

.result_items .result_item_body .laureate_item_image img {
  border: 1px solid #e2e2e2;
  border-bottom-right-radius: 10%;
}

.result_items .result_item_body .result_item_image img, .result_items .result_item_body .laureate_item_image img {
  display: block;
  width: 100%;
  height: auto;
}

.result_items .result_item_body .result_item_text {
  overflow: hidden;
  width: 70%;
}

.result_items .result_item_body .result_item_text h5 {
  margin: 0;
  padding: 0;
}

.result_items .result_item_body .result_item_text a.readmore:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 0.8em;
}

.result_items .result_item_body .result_item_text .result_item_tags a:last-child:after {
  content: " ";
}

.result_items .result_item a {
  color: #0084b4;
}

.result_items .result_item a:hover {
  color: rgba(0, 132, 180, 0.7);
}

@media screen and (max-width: 767px) {
  .result_items .result_item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .result_items .result_item_meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .result_items .result_item_meta .date, .result_items .result_item_meta .type {
    margin-right: 5px;
  }
  .result_items .result_item_body .result_item_image {
    float: none;
    max-width: none;
    width: 99.5%;
    border: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .result_items .result_item_body .result_item_image img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.yg_ab_partners_item_text a,
.yg_ab_partners_item_text a:hover {
  color: #0084b4;
}

.items_pager .item-list, .item-list .pager {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}

.items_pager .item-list ul.pager li.is-active, .item-list .pager li.pager-current {
  color: #fff;
  background-color: #0084b4;
}

.items_pager .item-list ul.pager li.is-active a, .item-list .pager li.pager-current a, .item-list .pager li.pager-current {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .result_item .result_item_body {
    display: block;
  }
  .result_items .result_item_body .result_item_text {
    overflow: hidden;
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter {
    position: relative;
    display: block;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left {
    position: relative;
    max-width: 100%;
    width: 100%;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_branding {
    float: none;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts {
    margin-top: 20px;
    display: block;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li {
    display: block;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    width: 100%;
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social ul li a {
    color: white;
    font-size: 20px;
    padding: 0 10px;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a {
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_branding {
    max-width: 177px;
    margin: 20px auto;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav {
    margin-top: 0px;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right {
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
    padding-left: 0;
    border-left: 0;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li {
    display: block;
    text-align: center;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a {
    margin-right: 0px;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts {
    display: block;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    width: 100%;
    text-align: center;
  }
  .yc_header_wrapper .yc_header .primaryNav_content .branding img, .yc_header_wrapper .yc_header_mobile .primaryNav_content .branding img {
    display: block;
    max-width: auto !important;
    width: auto !important;
    max-height: 70px !important;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_contact_info {
    float: none;
    margin: 40px;
    width: 100%;
  }
}
/* Editorial Style */
.floating_editorial_menu ul.primary_editorial_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(204, 42, 45, 0.9);
  z-index: 100;
  margin: 0;
  padding: 0;
}
.floating_editorial_menu ul.primary_editorial_nav li {
  display: inline-block;
  list-style: none;
  margin: 0 !important;
}
.floating_editorial_menu ul.primary_editorial_nav li:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.floating_editorial_menu ul.primary_editorial_nav li a {
  color: #fff;
  display: block;
  padding: 0.8em 1.5em;
  font-size: 14px;
  text-transform: uppercase;
}
.floating_editorial_menu ul.primary_editorial_nav li a:after {
  display: none;
}
.floating_editorial_menu ul.primary_editorial_nav li a:hover {
  text-decoration: underline;
}

.content_wrap img {
  /* width: 100%;
  height: auto; */
  margin: 10px 0 !important;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .paragraph img {
    width: 100% !important;
  }
  .article_content .content_wrap .content_main .content_main_container p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
figure.align-right, img.align-right {
  max-width: 50%;
  margin: 0em 0 1em 1.5em !important;
}
@media screen and (max-width: 767px) {
  figure.align-right, img.align-right {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

figure.align-left {
  max-width: 50%;
  margin: 0em 1.5em 1em 60px !important;
}
@media screen and (max-width: 767px) {
  figure.align-left {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

img.align-left {
  max-width: 50%;
  margin: 0em 1.5em 1em 0px !important;
}
@media screen and (max-width: 767px) {
  img.align-left {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

@media screen and (max-width: 767px) {
  figure.align-center, img.align-center {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

.photo_credit {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  background: rgba(51, 51, 51, 0.5);
  padding: 5px;
  color: #fff;
  font-size: 0.7em;
  font-style: italic;
}
.photo_credit a {
  color: #fff;
}

/* New Layout design - 28th October 2020 */
/* Homepage Styles */
.yg_ln_revslider {
  margin: 1.1% 0;
  padding: 0;
  background-position: 50% center, 50% center;
  background-size: cover;
  position: relative;
  height: 410px;
}
.yg_ln_revslider_image {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.yg_ln_revslider_image img {
  width: 100%;
  display: block;
}
.yg_ln_revslider_circle {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
}
.yg_ln_revslider_circle_item {
  display: none;
  position: absolute;
  right: 0;
  top: -7%;
  bottom: 0;
  width: 41%;
  height: auto;
}
.yg_ln_revslider_circle_item img {
  width: 100%;
  display: block;
}
.yg_ln_revslider_mobile {
  display: none;
}
@media only screen and (max-width: 480px) {
  .yg_ln_revslider {
    display: none;
    height: 150px;
    /*&_image 
    {
      height: 205px;
    }*/
  }
  .yg_ln_revslider_circle_item {
    top: 0;
    width: 45%;
  }
  .yg_ln_revslider_mobile {
    width: 100%;
    display: block !important;
    height: 170px;
    margin: 1.4% 0 1.1% 0;
    padding: 0;
    background-position: 50% center, 50% center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_revslider {
    height: 205px;
    /*&_image 
    {
      height: 305px;
    }*/
  }
  .yg_ln_revslider_circle_item {
    top: 9%;
    width: 39%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_revslider {
    height: 245px;
    /*&_image 
    {
      height: 405px;
    }*/
  }
  .yg_ln_revslider_circle_item {
    top: 9%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_revslider {
    height: 300px;
    /*&_image 
     {
       height: 405px;
     }*/
  }
}

.yg_ln_revabout {
  margin: 0;
  padding: 0;
}
.yg_ln_revabout_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 1% 0 2.8611% 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
  position: relative;
}
.yg_ln_revabout_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_revabout_text {
  color: #4e5253;
  width: auto;
}
.yg_ln_revabout_text a {
  color: #00abf1;
}
.yg_ln_revabout_text a:hover {
  color: #00abf1;
  opacity: 0.8;
}
.yg_ln_revabout_text p {
  font-size: 18px;
  line-height: 26px;
}
.yg_ln_revabout_text h3, .yg_ln_revabout_text h4 {
  margin-top: 0;
}
.yg_ln_revabout_button {
  padding: 1% 2%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .yg_ln_revabout_wrap {
    display: block;
    padding: 1% 0 8% 0;
  }
  .yg_ln_revabout_text {
    width: auto;
  }
  .yg_ln_revabout_text p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_revabout_wrap {
    display: block;
    padding: 1% 0 8% 0;
  }
  .yg_ln_revabout_text {
    width: auto;
  }
  .yg_ln_revabout_text p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_revabout_text {
    width: 62%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_revabout_text {
    width: 70%;
  }
}

.btn-black {
  background: #000000;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid;
  -o-border-image: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%) 1;
     border-image: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%) 1;
}
.btn-black:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
  color: rgba(78, 82, 83, 0.6);
}
.btn-black:active {
  background: #000000;
  color: #4e5253;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 480px) {
  .btn-black {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .btn-black {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-black {
    font-size: 15px;
    line-height: 20px;
  }
}

.yg_ln_awards {
  margin: 0;
  padding: 0;
}
.yg_ln_awards_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_awards_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_awards_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_awards_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yg_ln_awards_resource_item {
  width: 19%;
  background-color: #232325;
  display: flex;
  flex-direction: column;
  position: relative;
}
.yg_ln_awards_resource_item_image {
  width: 100%;
  max-height: 275px;
  min-height: 275px;
  overflow: hidden;
  background-position: 59% center, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.yg_ln_awards_resource_item_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_awards_resource_item_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_awards_resource_item_image_box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 62%;
  height: 4px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_awards_resource_item:hover .yg_ln_awards_resource_item_image:before, .yg_ln_awards_resource_item:hover .yg_ln_awards_resource_item_text:before {
  opacity: 1;
}
.yg_ln_awards_resource_item:last-child {
  margin: 0;
}
.yg_ln_awards_resource_item_text {
  overflow: hidden;
  padding: 10px;
}
.yg_ln_awards_resource_item_text p {
  font-family: "Cantarell", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}
.yg_ln_awards_resource_item_text p span {
  font-family: "Cantarell", sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  display: block !important;
  opacity: 0.7;
}
.yg_ln_awards_resource_item_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
@media only screen and (max-width: 480px) {
  .yg_ln_awards_wrap {
    padding: 8% 0;
  }
  .yg_ln_awards_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_awards_resource {
    display: block;
  }
  .yg_ln_awards_resource_item {
    width: auto;
    margin-bottom: 30px;
  }
  .yg_ln_awards_resource_item_image {
    max-height: 250px;
    min-height: 250px;
  }
  .yg_ln_awards_resource_item_text p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_awards_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_awards_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_awards_resource {
    display: block;
  }
  .yg_ln_awards_resource_item {
    width: auto;
    margin-bottom: 30px;
  }
  .yg_ln_awards_resource_item_image {
    max-height: 250px;
    min-height: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_awards_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_awards_resource_item {
    width: 32%;
    margin-bottom: 30px;
  }
  .yg_ln_awards_resource_item:nth-child(4), .yg_ln_awards_resource_item:nth-child(5) {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_awards_wrap h4 {
    margin-bottom: 13px;
  }
}

.yg_ln_awards_four {
  margin: 0;
  padding: 0;
}
.yg_ln_awards_four_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_awards_four_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_awards_four_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_awards_four_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yg_ln_awards_four_resource_item {
  width: 24%;
  background-color: #232325;
  display: flex;
  flex-direction: column;
  position: relative;
}
.yg_ln_awards_four_resource_item_image {
  width: 100%;
  max-height: 275px;
  min-height: 275px;
  overflow: hidden;
  background-position: 64% center, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.yg_ln_awards_four_resource_item_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_awards_four_resource_item_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_awards_four_resource_item_image_box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 62%;
  height: 4px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_awards_four_resource_item:hover .yg_ln_awards_four_resource_item_image:before, .yg_ln_awards_four_resource_item:hover .yg_ln_awards_four_resource_item_text:before {
  opacity: 1;
}
.yg_ln_awards_four_resource_item:last-child {
  margin: 0;
}
.yg_ln_awards_four_resource_item_text {
  overflow: hidden;
  padding: 10px;
}
.yg_ln_awards_four_resource_item_text p {
  font-family: "Cantarell", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}
.yg_ln_awards_four_resource_item_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
@media only screen and (max-width: 480px) {
  .yg_ln_awards_four_wrap {
    padding: 8% 0;
  }
  .yg_ln_awards_four_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_awards_four_resource {
    display: block;
  }
  .yg_ln_awards_four_resource_item {
    width: auto;
    margin-bottom: 30px;
  }
  .yg_ln_awards_four_resource_item_image {
    max-height: 250px;
    min-height: 250px;
  }
  .yg_ln_awards_four_resource_item_text p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_awards_four_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_awards_four_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_awards_four_resource {
    display: block;
  }
  .yg_ln_awards_four_resource_item {
    width: auto;
    margin-bottom: 30px;
  }
  .yg_ln_awards_four_resource_item_image {
    max-height: 250px;
    min-height: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_awards_four_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_awards_four_resource_item {
    width: 48%;
    margin-bottom: 30px;
  }
  .yg_ln_awards_four_resource_item:nth-child(4) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_awards_four_wrap h4 {
    margin-bottom: 13px;
  }
}

.yg_ln_actForNature {
  margin: 0;
  padding: 0;
}
.yg_ln_actForNature_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_actForNature_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_actForNature_box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 62%;
  height: 4px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_actForNature_item {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yg_ln_actForNature_item_video {
  width: 58.548%;
  overflow: hidden;
  position: relative;
}
.yg_ln_actForNature_item_video img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_actForNature_item_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yg_ln_actForNature_item_text {
  width: 38%;
  color: #4e5253;
}
.yg_ln_actForNature_item_text h3 {
  font-size: 1.2em;
  line-height: 1.3em;
  font-weight: 700;
  margin-top: 0;
}
.yg_ln_actForNature_item_text p {
  font-size: 0.95em;
  line-height: 1.5em;
}
@media only screen and (max-width: 480px) {
  .yg_ln_actForNature_wrap {
    padding: 8% 0;
  }
  .yg_ln_actForNature_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_actForNature_item {
    display: block;
  }
  .yg_ln_actForNature_item_video {
    width: 100%;
    height: 250px;
  }
  .yg_ln_actForNature_item_text {
    width: auto;
    margin-top: 17px;
  }
  .yg_ln_actForNature_item_text h3 {
    font-size: 1.1em;
  }
  .yg_ln_actForNature_item_text p {
    font-size: 0.85em;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_actForNature_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_actForNature_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_actForNature_item {
    display: block;
  }
  .yg_ln_actForNature_item_video {
    width: 100%;
    height: 300px;
  }
  .yg_ln_actForNature_item_text {
    width: auto;
    margin-top: 17px;
  }
  .yg_ln_actForNature_item_text h3 {
    font-size: 1.1em;
  }
  .yg_ln_actForNature_item_text p {
    font-size: 0.85em;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_actForNature_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_actForNature_item {
    display: block;
  }
  .yg_ln_actForNature_item_video {
    width: 100%;
    height: 350px;
  }
  .yg_ln_actForNature_item_text {
    width: auto;
    margin-top: 17px;
  }
  .yg_ln_actForNature_item_text h3 {
    margin-top: 0;
  }
}
.yg_ln_revnews {
  margin: 0;
  padding: 0;
}
.yg_ln_revnews_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_revnews_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_revnews_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.yg_ln_revnews_resource_item {
  margin: 0;
  padding: 0;
  width: 31.7%;
  max-width: 393px;
  padding: 0;
  margin-bottom: 15px;
}
.yg_ln_revnews_resource_item_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  background-position: 50% top, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
}
.yg_ln_revnews_resource_item_image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yg_ln_revnews_resource_item_text {
  overflow: hidden;
  color: #4e5253;
  padding: 3.3333% 0;
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5em;
  font-weight: 300;
}
.yg_ln_revnews_resource_item_text_meta {
  font-size: 0.95em;
  line-height: 1.5em;
  font-weight: 700;
  color: #4e5253;
  text-transform: uppercase;
  display: block;
}
.yg_ln_revnews_resource_item_text a {
  color: #4e5253;
}
.yg_ln_revnews_resource_item_text a:hover {
  color: #4e5253;
  opacity: 0.7;
}
.yg_ln_revnews_loadmore {
  text-align: center;
  padding: 2em 1em 0 1em;
}
@media only screen and (max-width: 480px) {
  .yg_ln_revnews_wrap {
    padding: 8% 0;
  }
  .yg_ln_revnews_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_revnews_resource {
    display: block;
  }
  .yg_ln_revnews_resource_item {
    width: auto;
    margin-bottom: 15px;
  }
  .yg_ln_revnews_resource_item_text {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_revnews_resource_item_text_meta {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_revnews_loadmore {
    padding: 1em 1em 0 1em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_revnews_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_revnews_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_revnews_resource_item {
    width: 48.2%;
    margin-bottom: 15px;
  }
  .yg_ln_revnews_resource_item_text {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_revnews_resource_item_text_meta {
    font-size: 0.85em;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_revnews_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_revnews_resource_item {
    margin-bottom: 15px;
  }
}
.yg_ln_sponsor {
  margin: 0;
  padding: 0;
}
.yg_ln_sponsor_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8387% 0;
  overflow: hidden;
}
.yg_ln_sponsor_logo {
  display: block;
  margin: 0 auto;
  padding: 10px;
  max-width: 450px;
  z-index: 50;
  position: relative;
}
.yg_ln_sponsor_logo img {
  width: 100%;
  height: auto;
  display: block;
}
.yg_ln_sponsor_text {
  z-index: 50;
  display: block;
  margin: 0 auto;
  padding: 10px;
  color: #ffffff;
  font-size: 39px;
  line-height: 47px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  position: relative;
  text-align: center;
}
.yg_ln_sponsor_loadmore {
  text-align: center;
  padding: 4em 1em 0 1em;
  position: relative;
  z-index: 50;
}
@media only screen and (max-width: 480px) {
  .yg_ln_sponsor_wrap {
    padding: 8% 0;
  }
  .yg_ln_sponsor_text {
    font-size: 24px;
    line-height: 26px;
  }
  .yg_ln_sponsor_loadmore {
    padding: 3em 1em 0 1em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_sponsor_wrap {
    padding: 5% 0;
  }
  .yg_ln_sponsor_text {
    font-size: 33px;
    line-height: 37px;
  }
  .yg_ln_sponsor_loadmore {
    padding: 3em 1em 0 1em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_sponsor_loadmore {
    padding: 3em 1em 0 1em;
  }
}
.parallax {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.actionbackground {
  background-image: url(../img/Mangrove-footer300dpi.jpg);
  min-height: 60vh;
}
.actionbackground:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

/* Basic Page Style */
.yg_ab_revslider {
  margin: 2% 0;
  padding: 0;
  background-position: 50% center, 50% center;
  background-size: cover;
  position: relative;
}
.yg_ab_revslider_image {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 380px;
}
.yg_ab_revslider_image img {
  width: 100%;
  display: block;
}
.yg_ab_revslider_image:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.yg_ab_revslider_circle {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
}
.yg_ab_revslider_circle_itemright {
  position: absolute;
  right: -13%;
  top: -6%;
  bottom: 0;
  width: 38%;
  height: auto;
}
.yg_ab_revslider_circle_itemright img {
  width: 100%;
  display: block;
}
.yg_ab_revslider_circle_itemleft {
  position: absolute;
  left: -6%;
  top: -6%;
  bottom: 0;
  width: 38%;
  height: auto;
}
.yg_ab_revslider_circle_itemleft img {
  width: 100%;
  display: block;
}
.yg_ab_revslider_mobile {
  display: none;
}
@media only screen and (max-width: 480px) {
  .yg_ab_revslider.hide {
    display: none !important;
  }
  .yg_ab_revslider_mobile {
    display: block;
    background-position: 50% center, 50% center;
    background-size: cover;
    position: relative;
  }
  .yg_ab_revslider_mobile_image {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 250px;
    width: 100%;
  }
  .yg_ab_revslider_mobile_image img {
    width: 100%;
    display: block;
  }
  .yg_ab_revslider_image {
    height: 250px;
  }
  .yg_ab_revslider_circle_itemright {
    top: 16%;
    width: 45%;
    right: -15%;
  }
  .yg_ab_revslider_circle_itemleft {
    top: 16%;
    width: 45%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_revslider_image {
    height: 300px;
  }
  .yg_ab_revslider_circle_itemright {
    top: 11%;
    width: 33%;
    right: -11%;
  }
  .yg_ab_revslider_circle_itemleft {
    top: 11%;
    width: 33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_revslider_image {
    height: 350px;
  }
  .yg_ab_revslider_circle_itemright {
    top: 8%;
    right: -11%;
    width: 33%;
  }
  .yg_ab_revslider_circle_itemleft {
    top: 8%;
    width: 33%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_revslider_image {
    height: 370px;
  }
  .yg_ab_revslider_circle_itemright {
    right: -13%;
  }
}

.yg_ln_laureate {
  margin: 0;
  padding: 0;
}
.yg_ln_laureate_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 1% 0 0.8611% 0;
  position: relative;
}
.yg_ln_laureate_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_laureate_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_laureate_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: flex-start;
}
.yg_ln_laureate_resource .threepc-filter {
  width: 28%;
  margin: 0 3% 2% 0;
}
.yg_ln_laureate_resource .threepc-filter:nth-child(3n) {
  margin: 0 0 2% 0;
}
.yg_ln_laureate_resource .threepc-filter .yg_ln_laureate_resource_item_image { /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.yg_ln_laureate_resource .threepc-nofilter {
  width: 28%;
  margin: 0 3% 2% 0;
}
.yg_ln_laureate_resource .threepc-nofilter:nth-child(3n) {
  margin: 0 0 2% 0;
}
.yg_ln_laureate_resource .fifth:nth-child(5) {
  margin: 0 0 2% 0 !important;
}
.yg_ln_laureate_resource .twopc {
  width: 48.5%;
  max-width: 601px;
  margin: 0 3% 2% 0;
}
.yg_ln_laureate_resource .twopc:nth-child(2n) {
  margin: 0 0 2% 0;
}
.yg_ln_laureate_resource_item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 0 auto;
}
.yg_ln_laureate_resource_item_image {
  width: 100%;
  max-height: 415px;
  min-height: 415px;
  overflow: hidden;
  background-position: 50% top, 50% top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: #232325;
}
.yg_ln_laureate_resource_item_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_laureate_resource_item_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_laureate_resource_item:hover .yg_ln_laureate_resource_item_image:before, .yg_ln_laureate_resource_item:hover .yg_ln_laureate_resource_item_text:before {
  opacity: 0.9;
}
.yg_ln_laureate_resource_item:hover .yg_ln_laureate_resource_item_synopsis a {
  opacity: 0.6;
}
.yg_ln_laureate_resource_item_text {
  padding: 10px 20px;
  font-family: "Cantarell", sans-serif;
  font-size: 17px;
  line-height: 22px;
  background-color: #232325;
  color: #fff;
  text-align: center;
  clear: both;
  position: relative;
}
.yg_ln_laureate_resource_item_text_box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 62%;
  height: 4px;
  top: -4px;
  z-index: 70;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_laureate_resource_item_text h4 {
  font-family: "Cantarell", sans-serif;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 3px 0;
}
.yg_ln_laureate_resource_item_text_meta {
  font-family: "Cantarell", sans-serif;
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.yg_ln_laureate_resource_item_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_laureate_resource_item_synopsis {
  padding: 10px 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  overflow: hidden;
  background: rgb(255, 255, 255);
  color: #4e5253;
  position: relative;
}
.yg_ln_laureate_resource_item_synopsis a {
  color: #4e5253;
}
.yg_ln_laureate_resource_item_synopsis a:hover {
  color: #4e5253;
  opacity: 0.6;
}
@media only screen and (max-width: 480px) {
  .yg_ln_laureate_wrap {
    padding: 8% 0;
  }
  .yg_ln_laureate_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_laureate_resource {
    display: block;
  }
  .yg_ln_laureate_resource .threepc-filter, .yg_ln_laureate_resource .threepc-nofilter {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_laureate_resource .threepc-filter:nth-child(3n), .yg_ln_laureate_resource .threepc-nofilter:nth-child(3n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource .twopc {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_laureate_resource .twopc:nth-child(2n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource_item_image {
    max-height: 300px;
    min-height: 300px;
  }
  .yg_ln_laureate_resource_item_text {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_laureate_resource_item_text h4 {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_laureate_resource_item_text_meta {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_laureate_resource_item_synopsis {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_laureate_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_laureate_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_laureate_resource {
    display: block;
  }
  .yg_ln_laureate_resource .threepc-filter, .yg_ln_laureate_resource .threepc-nofilter {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_laureate_resource .threepc-filter:nth-child(3n), .yg_ln_laureate_resource .threepc-nofilter:nth-child(3n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource .twopc {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_laureate_resource .twopc:nth-child(2n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource_item_image {
    max-height: 300px;
    min-height: 300px;
  }
  .yg_ln_laureate_resource_item_text {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_laureate_resource_item_text h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_laureate_resource_item_text_meta {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_laureate_resource_item_synopsis {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_laureate_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_laureate_resource .threepc-filter, .yg_ln_laureate_resource .threepc-nofilter {
    width: 33%;
    margin-bottom: 25px;
  }
  .yg_ln_laureate_resource .threepc-filter:nth-child(2n), .yg_ln_laureate_resource .threepc-nofilter:nth-child(2n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource .threepc-filter:nth-child(3n), .yg_ln_laureate_resource .threepc-nofilter:nth-child(3n) {
    margin: 0 3% 2% 0;
  }
  .yg_ln_laureate_resource .twopc:nth-child(2n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_laureate_resource_item_image {
    max-height: 265px;
    min-height: 265px;
  }
  .yg_ln_laureate_resource_item_text {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_laureate_resource_item_text h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 9px;
  }
  .yg_ln_laureate_resource_item_text_meta {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_laureate_resource_item_synopsis {
    font-size: 15px;
    line-height: 20px;
  }
}

.yg_ln_pastlaureate {
  margin: 0;
  padding: 0;
}
.yg_ln_pastlaureate_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  position: relative;
}
.yg_ln_pastlaureate_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_pastlaureate_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_pastlaureate_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: flex-start;
}
.yg_ln_pastlaureate_resource_item {
  width: 22%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 3% 2% 0;
  flex: 1 0 auto;
}
.yg_ln_pastlaureate_resource_item:nth-child(4) {
  margin: 0 0 2% 0;
}
.yg_ln_pastlaureate_resource_item_image {
  width: 100%;
  max-height: 275px;
  min-height: 275px;
  overflow: hidden;
  background-position: 50% center, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: #232325; /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.yg_ln_pastlaureate_resource_item_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_pastlaureate_resource_item_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_pastlaureate_resource_item:hover .yg_ln_pastlaureate_resource_item_image:before, .yg_ln_pastlaureate_resource_item:hover .yg_ln_pastlaureate_resource_item_text:before {
  opacity: 0.9;
}
.yg_ln_pastlaureate_resource_item:hover .yg_ln_pastlaureate_resource_item_synopsis a {
  opacity: 0.6;
}
.yg_ln_pastlaureate_resource_item_text {
  padding: 10px 20px;
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  line-height: 20px;
  background-color: #232325;
  color: #fff;
  clear: both;
  position: relative;
}
.yg_ln_pastlaureate_resource_item_text_box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 62%;
  height: 4px;
  top: -4px;
  z-index: 70;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_pastlaureate_resource_item_text h4 {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 3px 0;
}
.yg_ln_pastlaureate_resource_item_text_meta {
  font-family: "Cantarell", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.yg_ln_pastlaureate_resource_item_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 1s;
  -webkit-transition: all 1s;
}
.yg_ln_pastlaureate_resource_item_synopsis {
  padding: 10px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  overflow: hidden;
  background: rgb(255, 255, 255);
  color: #4e5253;
  position: relative;
}
.yg_ln_pastlaureate_resource_item_synopsis a {
  color: #4e5253;
}
.yg_ln_pastlaureate_resource_item_synopsis a:hover {
  color: #4e5253;
  opacity: 0.6;
}
.yg_ln_pastlaureate_loadmore {
  text-align: center;
  padding: 1em 1em 0 1em;
  position: relative;
  z-index: 50;
}
@media only screen and (max-width: 480px) {
  .yg_ln_pastlaureate_wrap {
    padding: 8% 0;
  }
  .yg_ln_pastlaureate_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_pastlaureate_resource {
    display: block;
  }
  .yg_ln_pastlaureate_resource_item {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_pastlaureate_resource_item:nth-child(3n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_pastlaureate_resource_item_image {
    max-height: 300px;
    min-height: 300px;
  }
  .yg_ln_pastlaureate_resource_item_text {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_pastlaureate_resource_item_text h4 {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_pastlaureate_resource_item_text_meta {
    font-size: 14px;
    line-height: 18px;
  }
  .yg_ln_pastlaureate_resource_item_synopsis {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_pastlaureate_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_pastlaureate_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_pastlaureate_resource {
    display: block;
  }
  .yg_ln_pastlaureate_resource_item {
    width: auto;
    margin-bottom: 25px;
    margin-right: 0;
  }
  .yg_ln_pastlaureate_resource_item:nth-child(3n) {
    margin: 0 0 2% 0;
  }
  .yg_ln_pastlaureate_resource_item_image {
    max-height: 300px;
    min-height: 300px;
  }
  .yg_ln_pastlaureate_resource_item_text {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_pastlaureate_resource_item_text h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_pastlaureate_resource_item_text_meta {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_pastlaureate_resource_item_synopsis {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_pastlaureate_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_pastlaureate_resource_item {
    width: 33%;
    margin-bottom: 25px;
    margin-bottom: 25px;
  }
  .yg_ln_pastlaureate_resource_item:nth-child(2), .yg_ln_pastlaureate_resource_item:nth-child(4) {
    margin: 0 0 2% 0;
  }
  .yg_ln_pastlaureate_resource_item_image {
    max-height: 265px;
    min-height: 265px;
  }
  .yg_ln_pastlaureate_resource_item_text {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_pastlaureate_resource_item_text h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 9px;
  }
  .yg_ln_pastlaureate_resource_item_text_meta {
    font-size: 15px;
    line-height: 20px;
  }
  .yg_ln_pastlaureate_resource_item_synopsis {
    font-size: 15px;
    line-height: 20px;
  }
}

.yg_ab_effect {
  margin: 0;
  padding: 0;
}
.yg_ab_effect_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8387% 0;
  overflow: hidden;
}
.yg_ab_effect_resource {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: center;
}
.yg_ab_effect_resource_loadmore {
  text-align: center;
  padding: 1em 1em;
  position: relative;
  z-index: 50;
}

.categorybackground {
  background-image: url(../img/brijal-raut-RZQIKeU4J9Y-unsplash_rev.jpg);
  min-height: 20vh;
}
.categorybackground:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.yg_ab_relatednews {
  margin: 0;
  padding: 0;
}
.yg_ab_relatednews_contain {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  border-top: 1px solid #e5e5e5;
  padding: 3.8387% 0;
  overflow: hidden;
}
.yg_ab_relatednews_contain h2 {
  margin: 0 0 1.6129% 0;
}
.yg_ab_relatednews_wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
}
.yg_ab_relatednews_item {
  width: 31.7%;
  margin: 0 1.5% 1% 0;
  max-width: 393px;
  padding: 0;
}
.yg_ab_relatednews_item:nth-child(3n+3) {
  margin-right: 0;
}
.yg_ab_relatednews_item_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
}
.yg_ab_relatednews_item_image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}
.yg_ab_relatednews_item_text {
  overflow: hidden;
  color: #656565;
  padding: 15px 0;
}
.yg_ab_relatednews_item_text h3 {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}
.yg_ab_relatednews_item_text a {
  color: #000000;
}
.yg_ab_relatednews_item_text a:hover {
  color: #000000;
  opacity: 0.6;
}
.yg_ab_relatednews_item_text_meta {
  color: #656565;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2%;
}
.yg_ab_relatednews_item_text_meta span.date, .yg_ab_relatednews_item_text_meta span.type {
  margin-right: 7px;
}
.yg_ab_relatednews_item_text_meta .type:before {
  content: "|";
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .yg_ab_relatednews_item_text_meta {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 480px) {
  .yg_ab_relatednews_item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
  .yg_ab_relatednews_item_text h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .yg_ab_relatednews_item_text_meta {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ab_relatednews_item {
    float: none;
    max-width: none !important;
    width: auto;
    margin-right: 0;
  }
  .yg_ab_relatednews_item_text h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .yg_ab_relatednews_item_text_meta {
    font-size: 12px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ab_relatednews_item {
    width: 49%;
  }
  .yg_ab_relatednews_item:nth-child(3n+3) {
    margin-right: 1.5%;
  }
  .yg_ab_relatednews_item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ab_relatednews_item {
    width: 31.7%;
  }
}

.yg_ln_Callforaction {
  margin: 0;
  padding: 0;
}
.yg_ln_Callforaction_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 4.8387% 0;
  overflow: hidden;
}
.yg_ln_Callforaction_item {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.yg_ln_Callforaction_item_text h3 {
  font-size: 46px;
  line-height: 55px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.yg_ln_Callforaction_item_loadmore {
  text-align: center;
  padding: 3em 1em 0 1em;
  position: relative;
  z-index: 50;
}
@media only screen and (max-width: 480px) {
  .yg_ln_Callforaction_item_text {
    width: auto;
  }
  .yg_ln_Callforaction_item_text h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_Callforaction_item_text {
    width: auto;
  }
  .yg_ln_Callforaction_item_text h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_Callforaction_item_text {
    width: auto;
  }
  .yg_ln_Callforaction_item_text h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

.callforactionbackground {
  min-height: 70vh;
}
.callforactionbackground:after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .callforactionbackground {
    min-height: 55vh !important;
  }
}

.yg_ln_revabout {
  margin: 0;
  padding: 0;
}
.yg_ln_revabout_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_revabout_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0;
  position: relative;
  padding-left: 100px;
  clear: both;
}
.yg_ln_revabout_wrap h4::before {
  content: "";
  background: url(/static/images/logo-icon.png) no-repeat;
  width: 90px;
  height: 90px;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
}
.yg_ln_revabout_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_revabout_item {
  color: #4e5253;
  margin-top: 4%;
}
.yg_ln_revabout_item.m-zero {
  margin-top: 0 !important;
}
.yg_ln_revabout_item h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
}
.yg_ln_revabout_item_text {
  padding-top: 20px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 3%;
       column-gap: 3%;
}
.yg_ln_revabout_item_text a {
  color: #00abf1;
}
.yg_ln_revabout_item_text a:hover {
  color: #00abf1;
  opacity: 0.8;
}
.yg_ln_revabout_item_text p {
  font-size: 18px;
  line-height: 26px;
  margin-top: 0;
}
.yg_ln_revabout_item_text h3, .yg_ln_revabout_item_text h4 {
  margin-top: 0;
}
.yg_ln_revabout_item_text figure {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 0;
  margin-left: 0;
}
.yg_ln_revabout_item_text figure img {
  width: 100%;
  height: auto;
  margin: 0;
}
.yg_ln_revabout_item_text figure figcaption {
  font-size: 10px;
  font-style: italic;
  color: rgba(51, 51, 51, 0.7);
}
@media only screen and (max-width: 480px) {
  .yg_ln_revabout_wrap {
    padding: 8% 0;
  }
  .yg_ln_revabout_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_revabout_wrap h4::before {
    width: 65px;
    height: 65px;
  }
  .yg_ln_revabout_item h5 {
    font-size: 17px;
    line-height: 24px;
  }
  .yg_ln_revabout_item_text {
    -moz-column-count: auto;
         column-count: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .yg_ln_revabout_item_text p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_revabout_wrap {
    padding: 6.2% 0;
  }
  .yg_ln_revabout_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_revabout_wrap h4::before {
    width: 75px;
    height: 75px;
  }
  .yg_ln_revabout_item h5 {
    font-size: 17px;
    line-height: 24px;
  }
  .yg_ln_revabout_item_text {
    -moz-column-count: auto;
         column-count: auto;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .yg_ln_revabout_item_text p {
    font-size: 15px;
    line-height: 20px;
  }
}

.yg_ln_biosection {
  margin: 0;
  padding: 0;
}
.yg_ln_biosection_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
  /*h4 {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 26px; 
    line-height: 34px;
    font-weight: 400;
    text-transform: uppercase;
    color: $darkgrey;
    margin: 0 0 13px 0;
  }*/
}
.yg_ln_biosection_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0;
  position: relative;
  padding-left: 100px;
  clear: both;
}
.yg_ln_biosection_wrap h4::before {
  content: "";
  background: url(../img/header-rossette.svg) no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
}
.yg_ln_biosection_wrap h5 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
.yg_ln_biosection_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_biosection_item {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 0;
  color: #4e5253;
}
.yg_ln_biosection_item_bio {
  width: 33.8%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.yg_ln_biosection_item_bio_image {
  width: 100%;
  max-height: 433px;
  min-height: 433px;
  overflow: hidden;
  background-position: 50% center, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.yg_ln_biosection_item_bio_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_biosection_item_bio_text {
  overflow: hidden;
  padding: 28px 0 0 0;
}
.yg_ln_biosection_item_bio_text blockquote {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: gray;
  font-style: italic;
  margin: 0;
  position: relative;
  text-shadow: 0 1px white;
  z-index: 100;
}
.yg_ln_biosection_item_bio_text blockquote p {
  color: #75808a;
  font-size: 18px;
  line-height: 1.4 !important;
  margin: 0 15px 0 22px;
}
.yg_ln_biosection_item_bio_text blockquote p:before {
  font-family: Georgia, serif;
  content: "“";
  color: #81bedb;
  font-size: 7.5em;
  font-weight: 700;
  opacity: 0.2;
  position: absolute;
  top: -0.4em;
  left: -0.08em;
  text-shadow: none;
  z-index: -300;
}
.yg_ln_biosection_item_video {
  width: 62.2%;
  overflow: hidden;
}
.yg_ln_biosection_item_video_embed {
  width: 100%;
  max-height: 433px;
  min-height: 433px;
  position: relative;
  overflow: hidden;
}
.yg_ln_biosection_item_video_embed img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yg_ln_biosection_item_video_embed iframe, .yg_ln_biosection_item_video_embed embed, .yg_ln_biosection_item_video_embed object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yg_ln_biosection_item_video_text {
  overflow: hidden;
  padding: 28px 0 0 0;
}
.yg_ln_biosection_item_video_text p {
  margin-top: 0;
}
@media only screen and (max-width: 480px) {
  .yg_ln_biosection_wrap {
    padding: 8% 0;
  }
  .yg_ln_biosection_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_biosection_wrap h4::before {
    width: 65px;
    height: 65px;
  }
  .yg_ln_biosection_wrap h5 {
    font-size: 17px;
    line-height: 24px;
  }
  .yg_ln_biosection_item {
    display: block;
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_biosection_item_bio {
    width: auto;
    margin-bottom: 25px;
  }
  .yg_ln_biosection_item_bio_image {
    max-height: 275px;
    min-height: 275px;
  }
  .yg_ln_biosection_item_bio_text {
    padding: 14px 0 0 0;
  }
  .yg_ln_biosection_item_bio_text blockquote p {
    font-size: 15px;
    line-height: 1.4 !important;
  }
  .yg_ln_biosection_item_video {
    width: auto;
  }
  .yg_ln_biosection_item_video_embed {
    min-height: auto;
    max-height: auto;
  }
  .yg_ln_biosection_item_video_text {
    padding: 14px 0 0 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_biosection_wrap {
    padding: 6.2% 0;
  }
  .yg_ln_biosection_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_biosection_wrap h4::before {
    width: 75px;
    height: 75px;
  }
  .yg_ln_biosection_wrap h5 {
    font-size: 17px;
    line-height: 24px;
  }
  .yg_ln_biosection_item {
    display: block;
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_biosection_item_bio {
    width: auto;
    margin-bottom: 25px;
  }
  .yg_ln_biosection_item_bio_image {
    max-height: 275px;
    min-height: 275px;
  }
  .yg_ln_biosection_item_bio_text {
    padding: 14px 0 0 0;
  }
  .yg_ln_biosection_item_bio_text blockquote p {
    font-size: 17px;
    line-height: 1.4 !important;
  }
  .yg_ln_biosection_item_bio_text blockquote p:before {
    top: -0.4em;
  }
  .yg_ln_biosection_item_video {
    width: auto;
  }
  .yg_ln_biosection_item_video_embed {
    min-height: auto;
    max-height: auto;
  }
  .yg_ln_biosection_item_video_text {
    padding: 14px 0 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_biosection_wrap h4 {
    margin-bottom: 13px;
  }
  .yg_ln_biosection_item_bio {
    width: 35.8%;
  }
  .yg_ln_biosection_item_bio_image {
    max-height: 253px;
    min-height: 253px;
  }
  .yg_ln_biosection_item_video {
    width: 60.2%;
  }
  .yg_ln_biosection_item_video_embed {
    max-height: 253px;
    min-height: 253px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yg_ln_biosection_item_bio_image {
    max-height: 353px;
    min-height: 353px;
  }
  .yg_ln_biosection_item_video_embed {
    max-height: 353px;
    min-height: 353px;
  }
}

.yg_ln_midtier {
  margin: 0;
  padding: 0;
}
.yg_ln_midtier_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 1.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_midtier_box {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_midtier_resource {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: center;
  position: relative;
}
.yg_ln_midtier_resource_loadmore {
  text-align: center;
  padding: 1em 1em;
  position: relative;
  z-index: 50;
}
@media only screen and (max-width: 480px) {
  .yg_ln_midtier_wrap {
    padding: 8% 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_midtier_wrap {
    padding: 6.2% 0;
  }
}

.yg_ln_relatedrevnews {
  margin: 0;
  padding: 0;
}
.yg_ln_relatedrevnews_wrap {
  margin: 0 auto;
  width: 86.1111111111%;
  max-width: 1240px;
  padding: 2.8611% 0;
  overflow: hidden;
  position: relative;
}
.yg_ln_relatedrevnews_wrap h4 {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4e5253;
  margin: 0 0 13px 0;
}
.yg_ln_relatedrevnews_box {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}
.yg_ln_relatedrevnews_resource {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: flex-start;
}
.yg_ln_relatedrevnews_resource_item {
  margin: 0;
  padding: 0;
  width: 31.7%;
  max-width: 393px;
  padding: 0;
  margin-right: 2.4%;
  margin-bottom: 15px;
}
.yg_ln_relatedrevnews_resource_item:nth-child(3) {
  margin-right: 0;
}
.yg_ln_relatedrevnews_resource_item_image {
  width: 100%;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  background-position: 50% top, 50% center;
  background-repeat: no-repeat;
  background-size: cover;
}
.yg_ln_relatedrevnews_resource_item_image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yg_ln_relatedrevnews_resource_item_text {
  overflow: hidden;
  color: #4e5253;
  padding: 3.3333% 0;
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5em;
  font-weight: 300;
}
.yg_ln_relatedrevnews_resource_item_text_meta {
  font-size: 0.95em;
  line-height: 1.5em;
  font-weight: 700;
  color: #4e5253;
  text-transform: uppercase;
  display: block;
}
.yg_ln_relatedrevnews_resource_item_text a {
  color: #4e5253;
}
.yg_ln_relatedrevnews_resource_item_text a:hover {
  color: #4e5253;
  opacity: 0.7;
}
.yg_ln_relatedrevnews_loadmore {
  text-align: center;
  padding: 2em 1em 0 1em;
}
@media only screen and (max-width: 480px) {
  .yg_ln_relatedrevnews_wrap {
    padding: 8% 0;
  }
  .yg_ln_relatedrevnews_wrap h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }
  .yg_ln_relatedrevnews_resource {
    display: block;
  }
  .yg_ln_relatedrevnews_resource_item {
    width: auto;
    margin-bottom: 15px;
    margin-right: 0 !important;
    max-width: none !important;
  }
  .yg_ln_relatedrevnews_resource_item_text {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_relatedrevnews_resource_item_text_meta {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_relatedrevnews_loadmore {
    padding: 1em 1em 0 1em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .yg_ln_relatedrevnews_wrap {
    padding: 4.2% 0;
  }
  .yg_ln_relatedrevnews_wrap h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }
  .yg_ln_relatedrevnews_resource_item {
    width: 48.2%;
    margin-bottom: 15px;
    margin-right: 3.4%;
  }
  .yg_ln_relatedrevnews_resource_item:nth-child(3) {
    width: 100%;
    max-width: 660px;
  }
  .yg_ln_relatedrevnews_resource_item:nth-child(2) {
    margin-right: 0;
  }
  .yg_ln_relatedrevnews_resource_item_text {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_relatedrevnews_resource_item_text_meta {
    font-size: 0.85em;
    line-height: 1.4em;
  }
  .yg_ln_relatedrevnews_loadmore {
    padding: 1em 1em 0 1em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yg_ln_relatedrevnews_loadmore {
    padding: 1em 1em 0 1em;
  }
}

/*Subscribe form*/
.mailchimp-signup-subscribe-form {
  font-size: 1.2em;
}

#mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form div.form-item {
  margin: 1em 0;
}

#mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-item label {
  display: block;
  font-size: 14px;
}

.mailchimp-newsletter-mergefields {
  margin: 2em 0;
}
.mailchimp-newsletter-mergefields label {
  font-weight: 800;
}

#mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-item label.option {
  display: inline-block !important;
  font-size: 14px !important;
}

#mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-email .form-email, #mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-textfield .form-text {
  width: 30%;
  padding: 10px 12px;
  font-size: 16px;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 0px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
@media screen and (max-width: 767px) {
  #mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-email .form-email, #mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-textfield .form-text {
    width: 90%;
  }
}

#mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-select .form-select {
  width: 32%;
  padding: 10px 12px;
  font-size: 16px;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 0px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
@media screen and (max-width: 767px) {
  #mailchimp-signup-subscribe-page-sign-up-for-updates-form.mailchimp-signup-subscribe-form .js-form-type-select .form-select {
    width: 95%;
  }
}

.fieldset-legend {
  font-weight: 700 !important;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

div#edit-mailchimp-lists-interest-groups-82dabb39a9.form-checkboxes .form-item {
  margin: 0.5em 0;
}

div#edit-mailchimp-lists-interest-groups-82dabb39a9.form-checkboxes input {
  margin-right: 0.5em;
}

.mailchimp-signup-subscribe-form .form-submit {
  border-radius: 0px;
  font-size: 18px;
  line-height: 1.33333;
  padding: 8px 12px;
  background-color: #00abf1;
  border: 1px solid #00abf1;
  width: 20%;
  color: #ffffff;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .mailchimp-signup-subscribe-form .form-submit {
    width: 100%;
  }
}

.mailchimp-signup-subscribe-form .form-submit:hover {
  opacity: 0.8;
  cursor: pointer;
}

.coerosette {
  background: url(../img/header-rossette.svg) no-repeat;
  width: 100px;
  height: 100px;
  float: left;
  margin: 0 15px 15px 0;
}
@media only screen and (max-width: 480px) {
  .coerosette {
    width: 70px;
    height: 70px;
  }
}

.coeribbon {
  display: block;
  clear: both;
  width: 100%;
  height: 2px;
  margin: 25px 0;
  background: rgb(254, 204, 104);
  background: linear-gradient(90deg, rgb(254, 204, 104) 31%, rgb(207, 166, 99) 56%, rgb(134, 104, 55) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecc68",endColorstr="#866837",GradientType=1);
}

/* Search Results Page Styles */
/*============================*/
.search {
  margin: 0;
  padding: 0;
}
.search_content_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .search_content_wrap {
    max-width: none;
    width: 90%;
  }
}
.search_header {
  background-color: #4e5253;
  padding: 50px 0;
  border: 1px solid #4e5253;
}
@media screen and (max-width: 767px) {
  .search_header {
    padding: 20px 0;
  }
}
.search_header .header_searchbox {
  float: right;
}
@media screen and (max-width: 767px) {
  .search_header .header_searchbox {
    float: none;
    display: none;
  }
}
.search_header .header_searchbox form {
  margin: 0;
  padding: 0;
}
.search_header .header_searchbox form input[type=text] {
  line-height: 50px;
  padding: 0 5px;
  font-size: 18px;
  font-weight: bold;
}
.search_header .header_searchbox form input[type=submit] {
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-collapse: collapse;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: rgb(76, 159, 56);
  display: inline-block;
  margin-left: -5px;
  color: rgb(255, 255, 255);
}
.search_header .header_searchbox form input[type=submit]:hover {
  background-color: rgba(76, 159, 56, 0.8);
}
.search_header .header_title {
  overflow: hidden;
}
.search_header .header_title h1 {
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .search_header .header_title h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
.search_header .header_title p {
  color: rgb(255, 255, 255);
}
.search_body {
  margin: 0;
  padding: 30px 0;
}
.search_body .list_content_columns {
  overflow: hidden;
}
.search_body .list_content_columns .list_content_column_left {
  float: left;
  width: 270px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_left {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.search_body .list_content_columns .list_content_column_right {
  overflow: hidden;
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_right {
    margin-top: 0;
    padding: 0;
  }
}
.search_body .list_content_columns .list_content_column_right p.result_filter {
  text-align: right;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .search_body .list_content_columns .list_content_column_right p.result_filter {
    text-align: left;
  }
}
.search_body .list_content_columns .list_content_column_right p.result_filter a {
  font-weight: bold;
}

.list_facet_filter_wrap {
  background-color: rgb(242, 242, 242);
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .list_facet_filter_wrap {
    padding: 20px;
  }
}
.list_facet_filter_wrap .list_facet_filter_title {
  margin-bottom: 10px;
}
.list_facet_filter_wrap .list_facet_filter_title h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.list_facet_filter_wrap .list_facet_filter_body input[type=text], .list_facet_filter_wrap .list_facet_filter_body select {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  color: rgb(101, 101, 101);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .list_facet_filter_wrap .list_facet_filter_body input[type=text], .list_facet_filter_wrap .list_facet_filter_body select {
    font-size: 14px !important;
    line-height: 16px !important;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
}
.list_facet_filter_wrap .list_facet_filter_body input[type=text] {
  max-width: 195px;
  padding: 10px;
}
.list_facet_filter_wrap .list_facet_filter_body label {
  display: block;
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  text-transform: uppercase;
}
.list_facet_filter_wrap .list_facet_filter_body select {
  padding: 0px;
}
.list_facet_filter_wrap .list_facet_filter_body select option {
  padding: 0px;
}
.list_facet_filter_wrap .list_facet_filter_body input[type=submit] {
  border: none;
  border-collapse: collapse;
  background: none;
  padding: 0;
  font-size: 14px;
  line-height: 2.349;
  color: rgb(0, 132, 180);
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 20px;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary {
  border-top: 1px dotted rgba(51, 51, 51, 0.5);
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul {
  margin: 0;
  padding: 0;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li {
  list-style: none;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--clear {
  font-size: 1em;
  text-transform: uppercase;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet {
  font-size: 0.8em;
  line-height: 1em;
  display: inline-block;
  margin: 0.2em;
  padding: 0.2em;
  position: relative;
  border: 1px solid rgba(51, 51, 51, 0.3);
  background-color: #0084b4;
  border-radius: 3px;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet a {
  color: #fff;
  margin: 0;
  padding: 0 1.3em 0 0;
  font-weight: 700;
  display: block;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet a::after {
  font-family: "FontAwesome";
  content: "\f00d";
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 1.1em;
  color: #fff;
}
.list_facet_filter_wrap .list_facet_filter_body .facets_filter_summary ul li.facet-summary-item--facet span.js-facet-deactivate {
  display: none;
  text-indent: -150%;
}
@media screen and (max-width: 767px) {
  .list_facet_filter .list_facet_filter_body input[type=text], .list_facet_filter .list_facet_filter_body select {
    width: 100%;
    max-width: none;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: rgb(101, 101, 101);
    line-height: 1.833;
    padding: 5px;
    background-color: #fff;
  }
  .list_facet_filter .list_facet_filter_body input[type=text] {
    max-width: calc(100% - 10px);
  }
}

.result_items {
  overflow: hidden;
}
.result_items iframe {
  border: none;
}
@media screen and (max-width: 767px) {
  .result_items {
    margin-top: 30px;
  }
}
.result_items .result_item {
  overflow: hidden;
  border-bottom: 1px solid rgb(215, 215, 215);
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.result_items .result_item_meta {
  color: rgb(101, 101, 101);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.result_items .result_item_meta .date, .result_items .result_item_meta .type {
  margin-right: 10px;
}
.result_items .result_item_meta .type:before {
  content: "|";
  margin-right: 10px;
}
.result_items .result_item_body {
  overflow: hidden;
}
.result_items .result_item_body .result_item_image {
  float: right;
  max-width: 210px;
  min-width: 210px;
  min-height: 200px;
  max-height: 200px;
  border: 0px solid rgb(226, 226, 226);
  background-position: 50% center, 50% center;
  background-size: cover;
  margin-left: 20px;
  overflow: hidden;
}
.result_items .result_item_body .result_item_image img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .result_items .result_item_body .result_item_image {
    float: none;
    display: block !important;
    width: 100% !important;
    max-width: auto !important;
    min-width: auto !important;
    min-height: 270px !important;
  }
}
.result_items .result_item_body .result_item_resourceimage, .result_items .result_item_body .result_item_expertimage {
  float: right;
  max-width: 200px;
  min-width: 200px;
  min-height: 254px;
  max-height: 254px;
  background-position: 50% center, 50% center;
  background-size: cover;
  margin-left: 20px;
}
.result_items .result_item_body .result_item_resourceimage img, .result_items .result_item_body .result_item_expertimage img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .result_items .result_item_body .result_item_resourceimage, .result_items .result_item_body .result_item_expertimage {
    float: none;
    display: block;
    width: 100%;
  }
}
.result_items .result_item_body .result_item_text {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .result_items .result_item_body .result_item_text {
    overflow: visible;
  }
}
.result_items .result_item_body .result_item_text h5 {
  margin: 0;
  padding: 0;
}
.result_items .result_item_body .result_item_text p {
  font-size: 16px;
  line-height: 20px;
}
.result_items .result_item_body .result_item_text .subtitle {
  font-size: 16px;
  line-height: 20px;
  padding-top: 6px;
  color: #656565;
  font-weight: 400;
  font-style: italic;
  display: block;
}
.result_items .result_item_body .result_item_text a.readmore:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 0.8em;
}
.result_items .result_item_body .result_item_text .result_item_tags a {
  font-weight: bold;
}
.result_items .result_item_body .result_item_text .result_item_tags a:after {
  content: ", ";
}
.result_items .result_item_body .result_item_text .result_item_tags a:last-child:after {
  content: " ";
}
.result_items .result_item_body .result_item_text .result_item_tags p {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .result_items .result_item_body .result_item_text .result_item_tags p {
    display: none;
  }
}
.result_items .result_item a {
  color: rgb(0, 171, 241);
}
.result_items .result_item a:hover {
  color: rgb(0, 132, 180);
}
@media screen and (max-width: 767px) {
  .result_items .result_item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .result_items .result_item_meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .result_items .result_item_meta .date, .result_items .result_item_meta .type {
    margin-right: 5px;
  }
  .result_items .result_item_body .result_item_image {
    display: inline-block;
    float: right;
    max-width: none;
    width: 30%;
    border: none;
    margin-left: 10px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .result_items .result_item_body .result_item_image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.items_pager {
  margin: 0;
  padding: 0;
  text-align: center;
}
.items_pager .item-list {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list {
    display: block;
  }
}
.items_pager .item-list ul.pager {
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager {
    width: 100%;
  }
}
.items_pager .item-list ul.pager li {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li {
    padding: 5px;
  }
}
.items_pager .item-list ul.pager li a {
  display: block;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li a {
    padding: 0 3px;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .items_pager .item-list ul.pager li.pager-item, .items_pager .item-list ul.pager li.pager-ellipsis {
    display: none;
  }
}
.items_pager .item-list ul.pager li.pager-current {
  color: #fff;
  background-color: rgb(0, 132, 180);
}
.items_pager .item-list ul.pager li.is-active {
  color: #fff;
  background-color: rgb(0, 132, 180);
}
.items_pager .item-list ul.pager li.is-active a {
  color: #fff;
}

div[data-embed-button=inline_poll] {
  border: 1px solid rgba(51, 51, 51, 0.1);
  margin-left: 60px;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em 2em;
  background-color: rgba(181, 247, 181, 0.1);
  border-radius: 5px;
}
div[data-embed-button=inline_poll] .status_messages {
  text-align: center;
  background-color: #d2eb45;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 1em;
}
div[data-embed-button=inline_poll] .poll {
  margin: 0;
}
div[data-embed-button=inline_poll] .poll .poll-question {
  display: block;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 1em;
}
div[data-embed-button=inline_poll] .poll .poll-choices {
  text-align: center;
  margin: 1em;
}
div[data-embed-button=inline_poll] .poll .poll-choices .form-item {
  margin: 0 0.5em;
}
div[data-embed-button=inline_poll] .poll dl {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
div[data-embed-button=inline_poll] .poll dl .bar .foreground {
  background-color: #3f704d;
}
div[data-embed-button=inline_poll] .poll .poll-actions {
  text-align: center;
}
div[data-embed-button=inline_poll] .button.button--primary {
  padding: 5px 15px;
  border-collapse: collapse !important;
  border-radius: 0px;
  font-size: 14px;
  background: #3f704d;
  color: white;
  border-style: outset;
  border: none;
  width: auto;
  font-weight: bold;
}

* {
  font-family: roboto, helvetica neue, Arial, sans-serif;
}

.mt40 {
  margin-top: 40px;
}

p, .yg_ab_content_body li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.yg_ln_about_text p, .yg_ab_content_body li {
  text-align: justify;
}

/*.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
}*/
/*.yc_header_wrapper .yc_header .utilityNav {
    background-color: #00abf1;
  }*/
.yg_ln_slider_text a, .btn-white {
  color: #00abf1;
  border-radius: 0;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a:hover {
  color: #00abf1;
}

.blue {
  background: #00abf1;
  color: #fff;
}

.yc_header_wrapper .yc_header_mobile .mobile_menu {
  background-color: #4e5253;
}

.yg_ln_news_resource_item:nth-child(1) {
  background-color: #00abf1;
}

/*.yg_ln_news_resource_item:nth-child(1) {
    margin-bottom: 60px;
    background-color: #00abf1;
    @media only screen and (max-width: 480px)
	{
		margin-bottom: 30px;
		& .yg_ln_news_resource_image 
			{
				float: none;
				width: auto;
				max-height: 220px !important;
				min-height: 220px !important;
			}
	}
	@media only screen and (min-width: 480px) and (max-width: 767px)
	{
		margin-bottom: 30px;
		& .yg_ln_news_resource_image 
			{
				float: none;
				width: auto;
				max-height: 220px !important;
				min-height: 220px !important;
			}
	}
	@media only screen and (min-width: 768px) and (max-width: 991px)  
	{
		margin-bottom: 50px;
			& .yg_ln_news_resource_image 
			{
				float: none;
				width: auto;
			}
	}
}
.yg_ln_news_resource_item:nth-child(2), .yg_ln_news_resource_item:nth-child(3) {
	@media only screen and (max-width: 480px)
	{
		width: auto;
		padding-bottom: 30px;
		margin: 0;
		& .yg_ln_news_resource_image 
		{					
			max-height: 220px !important;
			min-height: 220px !important;
		}
	}
	@media only screen and (min-width: 480px) and (max-width: 767px)
	{
		width: 100%;
		padding-bottom: 30px;
		margin: 0;
		& .yg_ln_news_resource_image 
		{					
			max-height: 220px !important;
			min-height: 220px !important;
		}
	}
	@media only screen and (min-width: 768px) and (max-width: 991px)  
	{
		margin: 0 2% 0 0;
		padding-bottom: 50px;
	}
}
.yg_ln_news_resource {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    justify-content: space-between;
}*/
/*
.yc_footer_wrapper {
	background-color:#00abf1 !important;
}
*/
.yb_ab_slider {
  max-width: 1240px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
}

/*------------------------*/
/*
#block-coe-local-tasks {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #f00;
    z-index: 900;
    width: 100%;
}

#block-coe-local-tasks ul {
    display:block;
    }


#block-coe-local-tasks ul li{
    display:inline-block;
    padding:10px;
    }
#block-coe-local-tasks ul li a {
    color:#fff;
}
*/
/*------------------------*/
.dark, .dark2, .dark_banner {
  width: 100%;
  height: 100%;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000", endColorstr="#000000", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  z-index: 0;
}

.video-responsive .dark {
  z-index: 20;
}

.lighten, .lighten2, .lighten_banner {
  width: 100%;
  height: 100%;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000", endColorstr="#000000", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  z-index: 0;
}

/*.yc_header_wrapper .yc_header .utilityNav, .yc_header_wrapper .yc_header_mobile .utilityNav */
.yg_ln_news_resource .yg-ln-news-resource-item:nth-child(1), .yg_ab_content_resource .nomination_box {
  background-color: #00abf1;
}

.yg_ln_slider_text a, .btn-white, .yg_ln_about_text a {
  color: #00abf1;
  background: #fff;
  width: -moz-max-content !important;
  width: max-content !important;
  margin-top: 30px;
  text-shadow: none;
}

.yc_header_wrapper .yc_header .primaryNav_content .mainNav > ul > li > a:hover, .yg_ln_about_text a:hover {
  color: #00abf1;
}

.resources_hero, .yg_ab_slider {
  background-color: #00abf1 !important;
  background-repeat: no-repeat;
}

.yg_ln_slider_image video {
  width: 100%;
  height: unset;
}

.inner-page > .block-content {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  text-align: center;
}
.inner-page > .block-content .headline {
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  filter: drop-shadow(0 2px 10px #000);
  -webkit-filter: drop-shadow(0 2px 10px #000);
}

/*.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_text a {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
}

.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text a, .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text a, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text a {
	color:#000;
	font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    display: block;
}
.yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_text a:hover, .yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text a, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text a:hover {
	color:#333;
}*/
/*----------------------------*/
/* Scss Document */
/* header styles */
.navlangs {
  width: 38%;
  text-align: center;
  display: inline-block;
  position: relative;
}

.dropbtn {
  background-color: transparent;
  color: white;
  font-size: 16px;
  border: none;
  padding: 0px;
  min-width: 100px;
  text-transform: capitalize;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown li {
  list-style: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #4e5253;
  /*min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 100;
}
.dropdown-content ul {
  padding: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #fff;
  padding: 12px 10px;
  text-decoration: none;
  display: block;
  font-size: 15px;
}

/* Change color of dropdown links on hover */
.dropdown-content li a:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.yc_header_wrapper .yc_header .utilityNav_content {
  overflow: visible;
}

.yn_ln_about_text p, .yn_ln_about_text p {
  font-size: 20px;
  line-height: 28px;
}

/* header styles */
/*.gwm_ts_body {	 

	@media only screen and (max-width: 480px)
	{
		background-color: #FF0 !important;
	} 
	@media only screen and (min-width: 480px) and (max-width: 767px)
	{
		background-color: #0F0 !important;
	}
	@media only screen and (min-width: 768px) and (max-width: 991px)  
	{
		background-color: #F00 !important
	}
	@media only screen and (min-width: 992px) and (max-width: 1200px)  
	{
		background-color:#006 !important
	}
}*/
.news_greyarea {
  margin: 0;
  padding: 0;
  background-color: #2b2d2d;
}
.news_greyarea_wrap {
  margin: 0 auto;
  max-width: 1440px;
  padding: 4.1667% 0 1.3889% 0;
  overflow: hidden;
}
.news_greyarea .news_header {
  margin: 0 auto;
  max-width: 1240px;
  color: #ffffff;
}
.news_greyarea .news_header h1 {
  margin-top: 0;
}
.news_greyarea .news_header ul {
  margin: 0;
  padding: 0;
}
.news_greyarea .news_header li {
  list-style-type: none;
  display: inline-block;
  font-size: 22px;
}
.news_greyarea .news_header li a {
  color: #ffffff;
  padding: 14px 18px;
}
.news_greyarea .news_header li a:hover {
  border-radius: 3px;
  font-weight: 600;
  background-color: #4c9f38;
  color: #ffffff;
}
.news_greyarea .news_header li a.current {
  border-radius: 3px;
  font-weight: 600;
  background-color: #4c9f38;
  color: #ffffff;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .news_greyarea .news_header h1, .news_greyarea .news_header ul {
    text-align: center;
  }
  .news_greyarea .news_header li a {
    padding: 10px 18px;
  }
}
@media only screen and (max-width: 480px) {
  .news_greyarea .news_header h1 {
    font-size: 36px;
    line-height: 46px;
    text-align: center;
  }
  .news_greyarea .news_header li {
    display: block;
    border-bottom: 1px solid #808181;
    text-align: center;
    font-size: 20px;
  }
  .news_greyarea .news_header li a {
    color: #ffffff;
    padding: 14px 18px;
  }
  .news_greyarea .news_header li a:hover {
    border-radius: 3px;
    font-weight: 600;
    background-color: #808181;
    color: #ffffff;
  }
  .news_greyarea .news_header li a.current {
    border-radius: 3px;
    font-weight: 600;
    background-color: #808181;
    color: #ffffff;
  }
  .news_greyarea .news_header li a {
    display: block;
  }
}
.news_greyarea .news_featured {
  overflow: hidden;
  margin: 2.7778% 0;
  border: 0px solid #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.news_greyarea .news_featured_item {
  background-position: 50% center, 50% center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.news_greyarea .news_featured_item_image {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 575px;
}
.news_greyarea .news_featured_item_image img {
  display: block;
  width: 100%;
  height: auto;
}
.news_greyarea .news_featured_item_text {
  position: absolute;
  width: 42%;
  color: #ffffff;
  padding: 1.955%;
  border: 4px solid #ffffff;
  left: 4%;
  bottom: 5%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  font-size: 36px;
  line-height: 46px;
}
.news_greyarea .news_featured_item_text a {
  color: #ffffff;
}
.news_greyarea .news_featured_item_text a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.news_greyarea .news_featured_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.news_greyarea .news_featured_item:first-child {
  width: 71.042%;
}
.news_greyarea .news_featured_item:last-child {
  width: 26.181%;
  padding-right: 0 !important;
}
.news_greyarea .news_featured_item:last-child .news_featured_item_text {
  position: absolute;
  width: 65%;
  color: #ffffff;
  padding: 4.7745%;
  border: 4px solid #2b2d2d;
  left: 0;
  bottom: 0;
  background: #2b2d2d;
  z-index: 100;
  font-size: 32px;
  line-height: 40px;
  padding-left: 0;
}
.news_greyarea .news_featured_item:last-child .news_featured_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #808181;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .news_greyarea .news_featured .news_featured_item:first-child .news_featured_item_text {
    width: 65%;
  }
  .news_greyarea .news_featured .news_featured_item:last-child .news_featured_item_text {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .news_greyarea .news_featured .news_featured_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_featured .news_featured_item:first-child .news_featured_item_text {
    width: 65%;
    font-size: 30px;
    line-height: 38px;
  }
  .news_greyarea .news_featured .news_featured_item:last-child .news_featured_item_text {
    width: 80%;
    font-size: 28px;
    line-height: 32px;
  }
  .news_greyarea .news_featured .news_featured_item:last-child .news_featured_item_text_meta {
    font-size: 13px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .news_greyarea .news_featured {
    display: block !important;
    margin: 2.7778% 4%;
  }
  .news_greyarea .news_featured_item:first-child, .news_greyarea .news_featured_item:last-child {
    width: 100% !important;
    padding-right: 0 !important;
    margin-bottom: 20px;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_text, .news_greyarea .news_featured_item:last-child .news_featured_item_text {
    width: 80%;
    font-size: 28px;
    line-height: 32px;
    padding-left: 2.2222% !important;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_text_meta, .news_greyarea .news_featured_item:last-child .news_featured_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_featured_item:first-child {
    padding-bottom: 20px;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_text {
    bottom: 8%;
  }
}
@media only screen and (max-width: 480px) {
  .news_greyarea .news_featured {
    display: block !important;
    margin: 2.7778% 4%;
  }
  .news_greyarea .news_featured_item:first-child, .news_greyarea .news_featured_item:last-child {
    width: auto !important;
    padding-right: 0 !important;
    margin-bottom: 20px;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_image, .news_greyarea .news_featured_item:last-child .news_featured_item_image {
    height: 300px !important;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_text, .news_greyarea .news_featured_item:last-child .news_featured_item_text {
    position: relative !important;
    bottom: 0;
    left: 0;
    width: auto;
    font-size: 28px;
    line-height: 32px;
    padding-left: 2.2222%;
  }
  .news_greyarea .news_featured_item:first-child .news_featured_item_text_meta, .news_greyarea .news_featured_item:last-child .news_featured_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_featured_item:first-child {
    padding-bottom: 20px;
  }
}
.news_greyarea .news_secondtier {
  overflow: hidden;
  margin-bottom: 4.1667%;
}
.news_greyarea .news_secondtier .news_mediacontact {
  float: left;
  width: 23.0556%;
  margin: 0 2.0833% 0 0;
  padding: 2.4306% 2.2222%;
  background: #0084b4;
}
.news_greyarea .news_secondtier .news_mediacontact_wrap {
  overflow: hidden;
}
.news_greyarea .news_secondtier .news_mediacontact_wrap h6 {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 18px;
  color: #a3c8dc;
  text-transform: uppercase;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact {
  border-bottom: 1px solid #49a5c7;
  margin-bottom: 9.0361%;
  overflow: hidden;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact_image {
  float: left;
  width: 30.1205%;
  margin: 0 6.6265% 3% 0;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact_image img {
  width: 100%;
  display: block;
  height: auto;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact_text {
  overflow: hidden;
  color: #ffffff;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact_text h5 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact_text p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact ul {
  padding: 0 0 10px 0;
  display: block;
  color: #ffffff;
  clear: both;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact ul li {
  margin-bottom: 10px;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact ul li i {
  margin-right: 8px;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact ul a {
  color: #ffffff;
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact ul a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.news_greyarea .news_secondtier .news_mediacontact .mediacontact:last-child {
  border-bottom: 0px solid #49a5c7;
  margin-bottom: 0 !important;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources {
  overflow: hidden;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources h5 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources ul {
  padding: 0;
  margin: 0;
  display: block;
  color: #ffffff;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources ul a {
  color: #ffffff;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources ul a:after {
  content: "›";
  margin-left: 5px;
  font-weight: 700;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources ul a:hover {
  color: #ffffff;
  opacity: 0.8;
}
.news_greyarea .news_secondtier .news_mediacontact .mediaresources ul li {
  padding-bottom: 10px;
}
.news_greyarea .news_secondtier .secondnewslist {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.news_greyarea .news_secondtier .secondnewslist_item {
  position: relative;
  padding-right: 2.778%;
  z-index: 0;
}
.news_greyarea .news_secondtier .secondnewslist_item img {
  display: block;
  width: 100%;
  height: auto;
}
.news_greyarea .news_secondtier .secondnewslist_item_text {
  font-size: 32px;
  line-height: 40px;
}
.news_greyarea .news_secondtier .secondnewslist_item_text a {
  color: #ffffff;
}
.news_greyarea .news_secondtier .secondnewslist_item_text a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.news_greyarea .news_secondtier .secondnewslist_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #808181;
  text-transform: uppercase;
  margin-bottom: 4.4118%;
}
.news_greyarea .news_secondtier .secondnewslist_item:first-child {
  width: 33.3951%;
}
.news_greyarea .news_secondtier .secondnewslist_item:first-child img {
  display: none;
  height: auto;
}
.news_greyarea .news_secondtier .secondnewslist_item:first-child .secondnewslist_item_text_meta {
  padding-bottom: 8.8235%;
}
.news_greyarea .news_secondtier .secondnewslist_item:last-child {
  width: 63.8%;
  padding-right: 0 !important;
}
.news_greyarea .news_secondtier .secondnewslist_item:last-child img {
  margin-bottom: 6.5502%;
  height: auto;
}
.news_greyarea .news_secondtier .secondnewslist_item:last-child .secondnewslist_item_text {
  position: absolute;
  width: 65%;
  color: #ffffff;
  padding: 2.62%;
  border: 4px solid #2b2d2d;
  left: 0;
  bottom: -5%;
  background: #2b2d2d;
  z-index: 100;
  padding-left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_image {
    float: none !important;
    margin: 0 auto;
    width: 50%;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_text {
    margin-top: 2%;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_text h5 {
    margin: 0 0 2px !important;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child .secondnewslist_item_text {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_image {
    float: none !important;
    width: auto;
    margin-right: 0 !important;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_text {
    margin-top: 2%;
    word-wrap: break-word;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_text h5 {
    margin: 0 0 2px !important;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact ul {
    word-wrap: break-word;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact ul li {
    font-size: 16px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text {
    font-size: 30px;
    line-height: 38px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:first-child {
    width: 36.3951% !important;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:first-child .secondnewslist_item_text_meta {
    padding-bottom: 13%;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child {
    width: 60.8% !important;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child .secondnewslist_item_text {
    width: 80%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .news_greyarea .news_secondtier .news_mediacontact {
    float: none;
    margin: 0 0 2.0833% 0;
    width: auto;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact {
    float: left;
    width: 45%;
    margin-right: 3%;
    padding-right: 20px;
    border-right: 1px solid #49a5c7;
    border-bottom: 0px solid #49a5c7;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact:last-child {
    margin-right: 0 !important;
    border-right: 0px !important;
    padding-right: 0 !important;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_image {
    max-width: 150px;
    width: auto !important;
  }
  .news_greyarea .news_secondtier .secondnewslist_item {
    width: 92% !important;
    padding: 0 4% 30px 4%;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text {
    font-size: 30px;
    line-height: 38px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:first-child .secondnewslist_item_text_meta {
    padding-bottom: 4%;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child .secondnewslist_item_text {
    width: 80%;
    padding-left: 2.2222% !important;
  }
}
@media only screen and (max-width: 480px) {
  .news_greyarea .news_secondtier .news_mediacontact {
    float: none;
    width: auto;
    margin: 0 0 4% 0;
  }
  .news_greyarea .news_secondtier .news_mediacontact .mediacontact_image {
    max-width: 150px;
    width: auto !important;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text {
    font-size: 30px;
    line-height: 38px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item_text_meta {
    font-size: 13px;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:first-child, .news_greyarea .news_secondtier .secondnewslist_item:last-child {
    width: 92%;
    padding: 0 4% 20px 4%;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child img {
    margin-bottom: 0;
    height: auto;
  }
  .news_greyarea .news_secondtier .secondnewslist_item:last-child .secondnewslist_item_text {
    position: relative;
    bottom: 0;
    width: auto;
    padding-left: 2.2222% !important;
  }
}

.news_whitearea {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.news_whitearea_wrap {
  padding: 4.1667% 0;
  margin: 0 auto;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.news_whitearea_wrap .news_whitearea_item {
  position: relative;
  margin-bottom: 50px;
}
.news_whitearea_wrap .news_whitearea_item_text a {
  color: #000000;
}
.news_whitearea_wrap .news_whitearea_item_text a:hover {
  color: rgb(0, 132, 180);
}
.news_whitearea_wrap .news_whitearea_item img {
  width: 100%;
  display: block;
  height: auto;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(1), .news_whitearea_wrap .news_whitearea_item:nth-child(2) {
  width: 49%;
  max-width: 600px;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(1) img, .news_whitearea_wrap .news_whitearea_item:nth-child(2) img {
  margin-bottom: 15%;
  height: auto;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(1) .news_whitearea_item_text, .news_whitearea_wrap .news_whitearea_item:nth-child(2) .news_whitearea_item_text {
  position: absolute;
  width: 75%;
  color: #ffffff;
  padding: 3%;
  border: 4px solid #ffffff;
  left: 0;
  bottom: -5%;
  background: white;
  z-index: 100;
  font-size: 32px;
  line-height: 40px;
  padding-left: 0;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(1) .news_whitearea_item_text_meta, .news_whitearea_wrap .news_whitearea_item:nth-child(2) .news_whitearea_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #808181;
  text-transform: uppercase;
  margin-bottom: 4.41175%;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(n+3) {
  width: 31.7%;
  max-width: 393px;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text {
  padding: 5.0891% 0;
  font-size: 26px;
  line-height: 34px;
}
.news_whitearea_wrap .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #808181;
  text-transform: uppercase;
  margin-bottom: 4.41175%;
}
.news_whitearea_wrap .news_loadmore {
  text-align: center;
  margin: 0 auto;
  padding: 1em;
  text-transform: uppercase;
  font-weight: 700;
}
.news_whitearea_wrap .news_loadmore a {
  display: inline-block;
  margin: 0;
  padding: 0.7em 1em;
  background-color: rgb(76, 159, 56);
  color: rgb(255, 255, 255);
}
.news_whitearea_wrap .news_loadmore a:hover {
  background-color: rgb(58, 120, 42);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .news_whitearea .news_whitearea_item_text {
    padding-left: 3% !important;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .news_whitearea .news_whitearea_item {
    margin-bottom: 40px;
  }
  .news_whitearea .news_whitearea_item_text {
    padding-left: 3% !important;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) img, .news_whitearea .news_whitearea_item:nth-child(2) img {
    margin-bottom: 0 !important;
    height: auto;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text {
    width: auto;
    position: relative !important;
    bottom: 0 !important;
    font-size: 30px;
    line-height: 38px;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text_meta, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text_meta {
    font-size: 13px;
  }
  .news_whitearea .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text {
    font-size: 24px;
    line-height: 32px;
  }
  .news_whitearea .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text_meta {
    font-size: 13px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .news_whitearea .news_whitearea_item {
    margin-bottom: 40px;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) img, .news_whitearea .news_whitearea_item:nth-child(2) img {
    margin-bottom: 0 !important;
    height: auto;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text {
    width: auto;
    position: relative !important;
    bottom: 0 !important;
    font-size: 30px;
    line-height: 38px;
    padding-left: 3% !important;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text_meta, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text_meta {
    font-size: 13px;
  }
  .news_whitearea .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text {
    width: auto;
    font-size: 24px;
    line-height: 32px;
    padding: 5.0891% 3% !important;
  }
  .news_whitearea .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text_meta {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  .news_whitearea_wrap {
    padding: 4.1667% 4% !important;
  }
  .news_whitearea .news_whitearea_item:nth-child(1), .news_whitearea .news_whitearea_item:nth-child(2), .news_whitearea .news_whitearea_item:nth-child(n+3) {
    width: auto;
    max-width: none;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) img, .news_whitearea .news_whitearea_item:nth-child(2) img, .news_whitearea .news_whitearea_item:nth-child(n+3) img {
    margin-bottom: 0;
    height: auto;
  }
  .news_whitearea .news_whitearea_item:nth-child(1) .news_whitearea_item_text, .news_whitearea .news_whitearea_item:nth-child(2) .news_whitearea_item_text, .news_whitearea .news_whitearea_item:nth-child(n+3) .news_whitearea_item_text {
    position: relative;
    bottom: 0;
    width: auto;
    padding: 3% !important;
  }
}

.news_whitearea_additional {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 1.5s ease-out;
}
.news_whitearea_additional_wrap {
  padding: 0 0 0 0;
  margin: 0 auto;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-flow: wrap;
  box-pack: justify;
  justify-content: space-between;
}
.news_whitearea_additional_wrap .news_whitearea_additional_item {
  position: relative;
  margin-bottom: 50px;
  width: 31.7%;
  max-width: 393px;
}
.news_whitearea_additional_wrap .news_whitearea_additional_item .news_whitearea_item_text {
  padding: 5.0891% 0;
  font-size: 26px;
  line-height: 34px;
}
.news_whitearea_additional_wrap .news_whitearea_additional_item .news_whitearea_item_text .news_whitearea_item_text_meta {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #808181;
  text-transform: uppercase;
  margin-bottom: 4.41175%;
}
.news_whitearea_additional_wrap .news_whitearea_additional_item .news_whitearea_item_text a {
  color: #000000;
}
.news_whitearea_additional_wrap .news_whitearea_additional_item .news_whitearea_item_text a:hover {
  color: rgb(0, 132, 180);
}
.news_whitearea_additional_wrap .news_whitearea_additional_item img {
  width: 100%;
  display: block;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .news_whitearea_additional .news_whitearea_additional_item {
    margin-bottom: 40px;
  }
  .news_whitearea_additional .news_whitearea_additional_item_text {
    padding-left: 3% !important;
  }
  .news_whitearea_additional .news_whitearea_additional_item .news_whitearea_item_text {
    font-size: 24px;
    line-height: 32px;
  }
  .news_whitearea_additional .news_whitearea_additional_item .news_whitearea_item_text_meta {
    font-size: 13px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .news_whitearea_additional .news_whitearea_additional_item {
    margin-bottom: 40px;
  }
  .news_whitearea_additional .news_whitearea_additional_item .news_whitearea_item_text {
    width: auto;
    font-size: 24px;
    line-height: 32px;
    padding: 5.0891% 3% !important;
  }
  .news_whitearea_additional .news_whitearea_additional_item .news_whitearea_item_text_meta {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  .news_whitearea_additional_wrap {
    padding: 0 4% 4.1667% 4%;
  }
  .news_whitearea_additional .news_whitearea_additional_item {
    width: auto;
    max-width: none;
  }
  .news_whitearea_additional .news_whitearea_additional_item img {
    margin-bottom: 0;
    height: auto;
  }
  .news_whitearea_additional .news_whitearea_additional_item .news_whitearea_item_text {
    position: relative;
    bottom: 0;
    width: auto;
    padding: 3% !important;
  }
}

.news_seeall {
  text-align: center;
  margin: 0 0 60px 0;
  padding: 1em;
  text-transform: uppercase;
  font-weight: 700;
}
.news_seeall a {
  display: inline-block;
  margin: 0;
  padding: 0.7em 1em;
  background-color: #4c9f38;
  color: white;
}
.news_seeall a:hover {
  background-color: #3a782a;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li a {
  font-size: 15px;
}

.yc_header_wrapper .yc_header .primaryNav {
  box-shadow: none !important;
}

.yg_ln_about_video iframe, .yg_ln_about_video embed, .yg_ln_about_video object {
  min-height: 300px;
}

.yc_header_wrapper .yc_header .primaryNav_content, .yc_header_wrapper .yc_header .utilityNav_content, .yc_footer_wrapper .yc_footer_content {
  max-width: 1240px;
}

.full_width_carousel_wrapper, .general-content, .inner-page {
  max-width: 1240px;
  margin: 0 auto;
}

.general-content .row {
  margin: 0;
}

.yc_header_wrapper .yc_header .primaryNav_content .branding {
  margin: 0 20px 0 0px;
  width: 25%;
}

.yc_header_wrapper .yc_header .utilityNav_content .navGlobal {
  float: left;
  margin-left: 3px;
}

.yg_ln_about_text {
  width: 56%;
  margin: 0;
  padding-right: 40px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial {
  float: right;
  margin: 0 0px 0 10px;
}

.article_content .content_wrap .content_main p {
  font-size: 18px;
  line-height: 26px;
}

/*
.yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
	width: 56% !important;
}
.yg_ln_news_resource 
{
	&_item 
	{
		&:nth-child(1) 
		{
			& .yg_ln_news_resource_image
			{
				width: 57.2580%;
				float: left;
				max-height: 397px;
				min-height: 397px;
				overflow: hidden;
				background-repeat: no-repeat;
				background-size: cover;

				& img 
				{
					width: 100%;
					display: block;	
					object-fit: cover;							
				}				
			}
		}
		&:nth-child(2), &:nth-child(3) 
		{
			& .yg_ln_news_resource_image
			{
				width: 100%;
				max-height: 335px;
				min-height: 335px;
				overflow: hidden;
				background-repeat: no-repeat;
				background-size: cover;				

				& img
				{
					display: block;
					width: 100%;
					object-fit: cover;
				}
			}
		}
		&:nth-child(3) 
		{					
			margin-right: 0;
		}
		&:nth-child(n+4)
		{
			& .yg_ln_news_resource_image
			{
				width: 100%;
				max-height: 220px;
				min-height: 220px;
				overflow: hidden;
				background-repeat: no-repeat;
				background-size: cover;	
				& img
				{
					display: block;
					width: 100%;
					object-fit: cover;
				}
			}
		}
	}
}
.yg-ln-news-resource {
	overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    justify-content: space-between;
}*/
.yg_ab_content_wrap {
  padding: 2.8611% 0;
}

.weibo_banner {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 500px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: -8%;
  width: 100%;
  overflow: hidden;
  background-image: url(../img/UNDP_Colombia_2019-forest_34.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.weibo_banner .banner_content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  color: #fff;
}
.weibo_banner .banner_content h2 {
  color: #fff;
  font-size: 18px;
}
.weibo_banner .logo {
  width: 250px;
  margin-bottom: 30px;
}
.weibo_banner a {
  padding: 15px;
  background: #00abf1;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}
.weibo_banner a:hover {
  background: #ffffff;
  color: #00abf1;
}

/*.yg_ln_news_loadmore a:hover {
	color: #fff;
	text-decoration:none;
}*/
.laureate_banner {
  background: url("https://www.unenvironment.org/sites/default/files/styles/article_billboard_image/public/events/2019-07/Photo1_revised_0.jpg") top center no-repeat;
  background-size: auto;
  background-size: cover;
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 500px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: -8%;
}
.laureate_banner .banner_content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  color: #fff;
}
.laureate_banner h1, .laureate_banner h2 {
  font-weight: 400;
}
.laureate_banner a {
  padding: 15px;
  background: #00abf1;
  color: #fff;
}
.laureate_banner a:hover {
  background: #ffffff;
  color: #00abf1;
}
.laureate_banner .logo {
  width: 300px;
  margin-bottom: 30px;
}

/*.yg_ln_news_wrap {
    margin-top: 60px;
}*/
.yc_header_wrapper .yc_header .primaryNav_content {
  padding: 20px 0 0 0;
}

/*
.yg_ln_news_loadmore a {
	font-size: 17px;
	//background:#936037;
}
.yg_ln_news_loadmore a:hover {
    background-color: #936037;
}
*/
.yg_ln_news_resource_item:nth-child(2) .yg_ln_news_resource_text, .yg_ln_news_resource_item:nth-child(3) .yg_ln_news_resource_text {
  padding: 3.3333% 0 0 0;
}

/*
.yc_news_featured, .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption {
	background:#2b2d2d;
}

.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption {
	position: absolute;
    width: 60%;
    color: #fff;
    border: none;
    left: 0;
    bottom: 0;
    background: #2b2d2d;
    z-index: 100;
    font-size: 26px;
    line-height: 30px;
	padding: 1.955% 1.955% 1em;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text p, .yc_news_featured_content_body .yc_news_featured_items ul li:last-child .yc_news_featured_item_caption_text p {
    font-size: 26px;
	line-height: 30px;
	color:#fff;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.date, .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.type {
    font-size: 13px;
    line-height: 15px;
    font-weight: 600;
    color: #a19090;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.yc_news_featured_content_body .yc_news_featured_items ul li {
    width: 58%;
}
.yc_news_featured_content_body .yc_news_featured_items ul li:last-child {
    width: 40%;
}
.yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_text a {
	font-size: 26px;
	line-height: 30px;
	font-weight: 400;
}

.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption {
    top:auto;
    bottom: 0;
}
.yc_news_items_content .yc_news_list a {
	text-decoration: none;
	color: #000;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    display: block;
}
.yc_news_items_content .yc_news_list a:hover {
	color: rgba(0,0,0,.6);
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption_text p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
}
.yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption_text p, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption_text p {
    font-size: 26px;
	line-height: 28px;
	font-weight: 400;
}

.yc_news_items_content .yc_news_list ul li:nth-child(1), .yc_news_items_content .yc_news_list ul li:nth-child(2) {
	margin-bottom: 75px;
}
.yc_news_featured_content_header h1 {
	margin-left:20px;
}
.yc_news_items_content .yc_news_list ul li:nth-child(n+3) .yc_news_item_caption {
    padding: 15px 0 0 0;
}

.yc_news_items_content .yc_news_list {
	margin-top:50px;
}
.yc_news_items_content {
	padding: 10px 0 40px;
}
*/
.media_contacts {
  display: flex;
  justify-content: space-between;
  font-family: "Gilroy-Bold";
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1240px;
}

.media_contacts .contact {
  border-radius: 10px;
  width: 32%;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 10px 0;
}

.media_contacts .name {
  font-size: 22px;
  line-height: 22px;
  margin-top: 10px;
}

.media_contacts h1, .media_contacts h2, .media_contacts h3, .media_contacts h4 {
  width: 100%;
  display: block;
}

.media_contacts .title, .media_contacts .region {
  margin: 10px 0;
}

@media print, screen and (max-width: 481px) {
  .media_contacts {
    display: block;
    font-family: "Gilroy-Bold";
    margin-top: 30px;
  }
  .media_contacts .contact {
    border-radius: 10px;
    width: 98%;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px auto;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a {
    padding: 10px 0;
  }
}
/*
	  .yg_ln_slider_image {
		height: 60vh;
		position:relative;
	}
*/
/*	
	.yg_ln_slider_text {
		position: absolute;
		width: 86.1111111111%;
		max-width: 1240px;
		bottom: 0%;
		left: 0;
		right: 0;
		margin: 0 auto;
		/* transform: translate(0%,-45%); 
		-ms-transform: translate(0%,-45%);
		 -webkit-transform: translate(0%,-45%); */
/*		color: #fff;
		padding: 1.6129% 0;
		transform: none;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.yg_ln_slider_text h1 {
		display: none;
	}
*/
.yc_header_wrapper .yc_header .primaryNav_content .branding img {
  display: block;
  max-width: 300px;
  max-height: none;
  width: 100%;
  margin-top: -30px;
  margin-left: -20px;
}

.yg_ln_about_video {
  min-height: 300px !important;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links {
  overflow: hidden;
  padding-right: 10px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.yg_ab_content_body ul li {
  margin-bottom: 10px;
}

.yg_ab_slider_image {
  background-repeat: no-repeat;
}

.yg_ab_slider {
  background-position: 50% center, 50% center;
  background-size: cover;
}

/*
.search_header {
	background-color: #00abf1;
	border: none;
}

.result_items .result_item_body .result_item_text p {
	font-size: 20px;
	line-height: 26px;
}

.result_items .result_item_body .result_item_title {
	margin-bottom: 10px;	
}
.result_items .result_item_body {
	font-size: 20px;
	line-height: 26px;
	font-weight: 300;
}
*/
/*-------------arabic--------------*/
.ar {
  direction: rtl !important;
  text-align: right !important;
}
.ar .yc_header_wrapper .yc_header .utilityNav_content .navSocial,
.ar .yc_header_wrapper .yc_header .primaryNav_content .mainNav .inline-search {
  float: left;
}
.ar .yc_header_wrapper .yc_header .utilityNav_content .navGlobal {
  float: right;
}
.ar .yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li {
  padding: 0 0 0 12px;
  border-right: 0px solid #fff;
  border-left: 1px solid #fff;
}
.ar .yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li:last-child {
  border-left: 0;
  padding: 0 12px 0 0;
}
.ar .yc_header_wrapper .yc_header .primaryNav_content .branding {
  float: right;
  margin: 0 0 0 20px;
}
.ar .yc_header_wrapper .yc_header .primaryNav_content .mainNav {
  text-align: left;
}
.ar .yc_header_wrapper .yc_header .primaryNav_content .branding img {
  margin-right: -20px;
}
.ar .yc_footer_wrapper .yc_footer_content .primaryFooter {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.ar .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.ar .yc_footer_wrapper .yc_footer_content .utilityFooter p a::before {
  content: " ";
}
.ar .yg_ab_content_body, .ar .search_body .list_content_columns .list_content_column_left {
  float: right;
}
.ar .yc_news_featured_content_header h1 {
  margin-right: 20px;
}
.ar .result_items .result_item_body {
  text-align: right;
}

.paragraph--type--related-articles {
  max-width: 48%;
  float: left;
  margin-right: 0em;
  margin-bottom: 1em;
  margin-top: 2em;
  margin-left: 50px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .paragraph--type--related-articles {
    max-width: none;
    float: none;
    margin-left: 0;
    margin-bottom: 2em;
  }
}
.paragraph--type--related-articles .fieldTitle {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 10px;
  letter-spacing: 1px;
}
.paragraph--type--related-articles .stub_view_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 10px 0;
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_left {
  width: 30%;
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_left img {
  display: block;
  width: 100%;
  height: auto;
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_right {
  width: 64%;
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_right_meta {
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .paragraph--type--related-articles .stub_view_wrap .stub_view_right_meta {
    margin-bottom: 2px;
  }
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a {
  font-size: 14px;
  display: block;
  line-height: 16px;
  font-weight: 700;
  color: #000;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a {
    font-size: 13px;
  }
}
.paragraph--type--related-articles .stub_view_wrap .stub_view_right_title a:hover {
  color: #0083b3;
}

.quote_content {
  margin-left: 10px !important;
  margin: 40px 0 40px 52px !important;
  color: #01724c;
  background: url(https://www.unenvironment.org/themes/custom/UNEP_3Spot/img/Brown_Rule.png) 0 0 no-repeat;
  padding: 30px 0 0;
}
.quote_content p {
  margin-left: 0 !important;
  padding-bottom: 20px;
  max-width: 870px;
  font-size: 30px;
}
.quote_content .quote_source {
  display: block;
}
.quote_content .quote_source a {
  color: #00abf1;
  font-size: 16px;
}

.article_content .content_wrap .content_main .content_main_container .quote_content {
  margin-bottom: 40px !important;
}

/*-------------------------*/
.video-responsive {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 70vh;
  overflow: hidden;
}

#over_video {
  position: absolute;
  width: 100%;
  bottom: 5%;
  z-index: 21;
  color: #FFF;
  margin-top: 20%;
  margin: 0 auto;
  max-width: 1240px;
  left: 0;
  right: 0;
}
#over_video p {
  font-size: 32px;
  line-height: 38px;
  text-shadow: 3px 2px 3px rgba(65, 65, 65, 0.5);
}

/*.article_header_meta_title h1 {
		font-size: 32px;
		line-height: 38px;
		text-shadow: 3px 2px 3px rgba(65,65,65,.5);
}*/
/*************************/
.video-responsive {
  background-image: url(https://www.unep.org/themes/custom/coe/img/banner_video_2.jpg);
  background-size: cover;
  background-repeat: none;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footerNav ul li a {
  font-size: 20px;
}

.yc_header_wrapper .yc_header .utilityNav_content .navSocial ul li a {
  font-size: 16px;
}

.subscribe_form {
  min-height: 100px;
  max-height: 300px;
  position: relative;
  margin: 20px 0 0 0;
  background: #eee;
  display: block;
  overflow: hidden;
  background: #00abf1;
  color: #fff;
}
.subscribe_form h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding: 50px 0 30px 0;
  margin-bottom: 0;
}
.subscribe_form .form_wrap {
  width: 100%;
  /*transform: translateY(-50%);*/
  margin: 0 auto 0px auto;
}
.subscribe_form .form_wrap #mce-EMAIL {
  padding: 20px;
  width: 50%;
  border-radius: 0;
  border: none;
}
.subscribe_form #mc-embedded-subscribe {
  padding: 20px;
  background: #fff;
  color: #00abf1;
  border: 0;
  border-left: 1px solid #00abf1;
}
.subscribe_form #mc-embedded-subscribe:hover {
  background: #00abf1;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 19px 20px;
}
.subscribe_form .mc-field-group {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px auto;
}
.subscribe_form .mc-field-group label {
  margin: 0 10px;
}
.subscribe_form .signup_foot_text {
  padding-top: 10px;
  width: 100%;
  font-weight: 300;
  display: block;
  text-align: center;
  padding-bottom: 15px;
  display: none;
}
.subscribe_form #mc_embed_signup {
  background: transparent !important;
}
.subscribe_form #mc_embed_signup #mc_embed_signup_scroll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: column;
}
.subscribe_form #mc_embed_signup #mc_embed_signup_scroll .thank_you {
  display: none;
  text-align: center;
}

/*------------------------------------*/
.canvas,
.video-responsive .video {
  left: 0;
  position: absolute;
  top: 0;
  min-height: 100%;
  background-image: url(https://www.unep.org/themes/custom/coe/img/banner_video_2.jpg);
  background-size: cover;
  background-repeat: none;
  z-index: 5;
  min-width: 100%;
}

.video_playlist {
  max-width: 1240px;
  margin: 30px auto;
  display: block;
  position: relative;
  padding-bottom: 38.25%;
  height: 0;
  overflow: hidden;
}
.video_playlist iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .video_playlist {
    padding-bottom: 56.25%;
  }
}

.article_content img, .article_content iframe {
  width: 100% !important;
  height: auto !important;
  margin-left: 0 !important;
}
.article_content iframe {
  min-height: 400px !important;
}

/*
.items_pager .item-list, .item-list .pager {
	width: 100%;

	& ul {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
}
*/
.centered_content {
  max-width: 1000px;
  width: 90%;
  margin: 40px auto;
}

/*.yg_ab_content ul, .yg_ab_content ul li {
	font-size: 20px;
    line-height: 28px;
	font-weight: 300;
}*/
.blue {
  background: #00abf1;
  color: #fff;
  padding: 25px;
}
.blue .btn-white {
  display: block;
  margin: 0 auto;
}

.yg_ln_about_text h3 {
  margin: 30px 0 10px 0;
}

.yg_ln_about_text h3:first-child {
  margin-top: 0 !important;
}

.yg_ln_about_text a:last-child, .yg_ln_about_text p:last-child {
  margin-bottom: 0 !important;
}

.yg_ln_news_resource_item:nth-child(n+4) {
  width: 31%;
}

.yg_ln_about_wrap {
  padding-top: 60px;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links {
  justify-content: center;
}

/*----------cta--------------*/
.homepage_top_section {
  text-align: center;
  display: block;
  width: 100%;
}
.homepage_top_section .block-tag {
  font-family: Cabin, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1F9DD9;
  letter-spacing: 3px;
  line-height: 21px;
  margin: 25px 0;
  display: block;
  text-transform: uppercase;
}
.homepage_top_section .block-title {
  font-family: "roboto";
  letter-spacing: 1px;
  color: #4e4c4b;
  font-size: 45px;
  line-height: 46px;
  display: block;
  /*--edit when you return the tagline
  margin-bottom: 25px; */
  margin: 30px 0;
}

.homepage_ctas_wrap {
  width: 100%;
}
.homepage_ctas_wrap .homepage_ctas_wrap_inner {
  display: flex;
  justify-content: space-between;
}

.cta_item {
  width: 32%;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  max-height: 300px;
  height: 300px;
}
@media only screen and (max-width: 768px) {
  .cta_item {
    width: 95%;
    margin: 20px auto;
  }
}
.cta_item_content {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  position: relative;
  padding: 70px 50px 30px 50px;
  border: 1px solid #e6e6e6;
  height: 90%;
}
.cta_item_content_body {
  /* position: relative;
           z-index: 2;
  opacity: 0;*/
  position: absolute;
  z-index: 2;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto !important;
  text-align: center;
}
.cta_item_content_body a {
  background-color: transparent;
  border: 1px solid #fff;
  padding: 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}
.cta_item_content_body a:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #00abf1;
}
.cta_item_content_body p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 18px;
  display: block;
}
.cta_item_content_image {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 101%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  opacity: 1;
  z-index: 1;
  border: 1px solid #e6e6e6;
}
.cta_item:hover .cta_item_content_image {
  opacity: 0;
}
.cta_item:hover .cta_item_content_body {
  opacity: 1;
}
.cta_item_title {
  padding: 1em;
  text-transform: uppercase;
  font-family: Cabin, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #00abf1;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta_item.no-hover-effect .cta_item_content_body {
  opacity: 1;
}
.cta_item.no-hover-effect .cta_item_content_image {
  opacity: 0;
}

#steps-blocks .cta_item:nth-child(1):hover .cta_item_content {
  background-color: #EF3849;
}

#steps-blocks .cta_item:nth-child(2):hover .cta_item_content {
  background-color: #29255C;
}

#steps-blocks .cta_item:nth-child(3):hover .cta_item_content {
  background-color: #1F9DD9;
}

#steps-blocks .cta_item:nth-child(1) a:hover {
  color: #EF3849;
}

#steps-blocks .cta_item:nth-child(2) a:hover {
  color: #29255C;
}

#steps-blocks .cta_item:nth-child(3) a:hover {
  color: #1F9DD9;
}

.clp-wrap {
  display: flex;
  justify-content: space-between;
}
.clp-wrap .clp_item {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.clp-wrap .clp_item .clp_item_img {
  width: 100%;
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
  height: 200px;
}
.clp-wrap .clp_item .clp_item_img img {
  min-width: 100%;
  min-height: 100%;
  float: none;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 120%;
}
.clp-wrap .clp_item .title a {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  display: block;
  margin: 10px 0;
  min-height: 120px;
}

.yg_bio_content_body .yg_bio_text .yg_bio_tweet_text {
  overflow: hidden;
  background: transparent url(../img/brown_fact_line.png) no-repeat scroll left top;
  margin-left: 12.8519%;
}

.yg_bio_tweet_text p {
  margin-left: 0 !important;
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:nth-child(2) {
  padding-top: 20px;
  display: none;
}
@media only screen and (max-width: 480px) {
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:nth-child(2) {
    padding-top: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:nth-child(2) {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item:nth-child(2) {
    padding-top: 15px;
  }
}

.yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item img {
  width: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item img {
    width: 80%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo_item img {
    width: 80%;
  }
}

/********************************/
@media only screen and (min-width: 2651px) {
  .canvas,
  .video {
    height: auto !important;
  }
}
@media only screen and (min-width: 2001px) and (max-width: 2650px) {
  .canvas,
  .video {
    height: auto !important;
  }
}
@media only screen and (min-width: 1439px) and (max-width: 2000px) {
  .canvas,
  .video {
    height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .yg_ln_news_resource_item:nth-child(n+4) {
    width: 100%;
    max-width: 600px !important;
  }
}
@media only screen and (min-width: 482px) and (max-width: 650px) {
  .navlangs {
    width: 39%;
    text-align: center;
    display: inline-block;
    position: relative;
  }
  .yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul {
    display: flex;
    flex-direction: column;
  }
  .yc_header_wrapper .yc_header .utilityNav {
    height: 80px;
  }
  .yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li {
    border-right: 0px solid #fff;
  }
  .yc_header_wrapper .yc_header .utilityNav_content .navGlobal ul li:last-child {
    padding: 0;
  }
}
@media only screen and (max-width: 681px) {
  .homepage_ctas_wrap .homepage_ctas_wrap_inner {
    display: block !important;
  }
}
/*------------------------------------*/
@media only screen and (max-width: 1439px) {
  .yc_footer_wrapper .yc_footer_content {
    max-width: 96%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .yc_sponsor_logo .yc_sponsor_logo_item img {
    width: 88% !important;
    margin: 0 auto;
    height: auto !important;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1241px) {
  #over_video {
    left: 5%;
  }
  #over_video p {
    max-width: 80%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1000px) {
  .yg_ln_slider_image, .yg_ln_slider_image video, .homepage_video {
    width: 100% !important;
  }
  .canvas, .video {
    height: 100% !important;
    width: auto !important;
  }
  #over_video {
    left: 5%;
  }
  #over_video p {
    font-size: 26px;
    max-width: 80%;
    line-height: 28px;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
    width: 100% !important;
  }
  .yg_ln_news_resource_item:nth-child(n+4) .yg_ln_news_resource_image {
    min-height: none;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts .footer_social {
    overflow: hidden;
    width: 100%;
  }
}
@media only screen and (max-width: 920px) {
  .yg_ab_content iframe {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .yg_ln_slider_image video {
    width: 200%;
    margin-left: 0%;
  }
  .yc_footer_wrapper .yc_footer_content .primaryFooter_right .yc_sponsors .yc_sponsor_logo {
    align-items: center;
  }
  .yg_ln_news_resource_item:nth-child(1) .yg_ln_news_resource_image {
    width: 100% !important;
  }
  .yg_ln_news_resource_item:nth-child(n+4) {
    max-width: 100%;
  }
  .weibo_banner {
    background-position: 0;
  }
  .weibo_banner p {
    width: 80%;
    margin: 20px auto auto;
    display: block;
  }
  /*
  .result_items .result_item_body {
  	display:flex;
  	flex-direction: column-reverse;

  }*/
  .yg_ln_slider_image {
    /*height: auto !important;*/
    width: 100% !important;
  }
  .yg_ln_slider_image .dark {
    height: 95%;
  }
  .canvas, .video {
    height: 100% !important;
    width: auto !important;
  }
  #over_video {
    left: 5%;
  }
  #over_video h2 {
    font-size: 23px;
  }
  #over_video p {
    font-size: 26px;
    max-width: 80%;
    line-height: 28px;
  }
  .yc_header_wrapper .yc_header_mobile .primaryNav {
    box-shadow: none !important;
  }
  .yc_header_mobile .primaryNav_content .branding {
    max-width: 200px !important;
  }
  .yc_header_wrapper .yc_header_mobile .primaryNav_content .branding img {
    display: block;
    max-width: 150% !important;
    width: auto !important;
    max-height: 100px !important;
  }
  /*.yg_ln_slider_text p {
  	font-size: 20px;
  	line-height: 24px;
  display: block;
  }*/
  .ar .yc_header_wrapper .yc_header_mobile .primaryNav_content {
    position: relative;
    padding: 0;
  }
  .ar .yc_footer_wrapper .yc_footer_content .primaryFooter {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .ar .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .ar .yc_footer_wrapper .yc_footer_content .primaryFooter_left .footer_links .footer_contacts,
  .ar .yc_footer_wrapper .yc_footer_content .primaryFooter {
    display: block !important;
  }
  .ar .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption, .ar .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption {
    left: auto;
    right: 0;
  }
  .yg_ab_slider {
    background-size: cover;
    background-position: 50% center, 50% center;
  }
  /*
  .result_items .result_item_body .result_item_image {
  	float: none;
  	width: 100%;
  	max-height: none;
  	display: block;
  }*/
  .mobile_languages .language-switcher-language-url {
    display: flex;
    flex-wrap: wrap;
  }
  .mobile_languages .language-switcher-language-url li {
    width: 33%;
  }
  .mobile_languages .language-switcher-language-url li a {
    border: 0 !important;
    font-size: 16px;
    padding: 10px !important;
    text-align: center;
  }
  .yc_news_items {
    max-width: none;
    width: 100% !important;
  }
  .yc_news .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption {
    width: 100%;
  }
  .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.date br,
  .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.type br,
  .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.date p,
  .yc_news_featured_content_body .yc_news_featured_items ul li .yc_news_featured_item_caption_meta span.type p {
    display: none;
  }
  .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item_caption, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item_caption {
    left: 20px;
  }
  /* .yc_news_items_content .yc_news_list ul li:nth-child(1) .yc_news_item, .yc_news_items_content .yc_news_list ul li:nth-child(2) .yc_news_item {
  	padding: 20px;
  }*/
  .yc_news_items_content .yc_news_list ul li:nth-child(n+3) {
    margin: 0 auto 50px auto;
  }
  .yc_header_wrapper .yc_header_mobile .mobile_menu {
    z-index: 100;
  }
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------*/
.main_champions {
  display: block;
}
.main_champions .main_unep_logo {
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 40px;
  display: none;
}
.main_champions .main_unep_logo img {
  max-height: 140px;
}
.main_champions .news img {
  padding-left: 0px !important;
}
.main_champions .yg_ln_news_resource_image {
  max-height: 270px !important;
  min-height: 270px !important;
}
.main_champions .main_champions_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.main_champions .main_champions_wrap .mc, .main_champions .main_champions_wrap .yc {
  display: flex;
  flex-direction: column;
  width: 46%;
}
.main_champions .main_champions_wrap .mc .logo, .main_champions .main_champions_wrap .yc .logo {
  min-height: 200px;
  max-height: 200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.main_champions .main_champions_wrap .mc .logo a, .main_champions .main_champions_wrap .yc .logo a {
  position: absolute;
  z-index: 2;
  bottom: -5px;
  left: 0;
  background: #00abf1;
  color: #fff;
  padding: 10px;
  font-size: 17px;
}
.main_champions .main_champions_wrap .mc .logo a:hover, .main_champions .main_champions_wrap .yc .logo a:hover {
  background: #fff;
  color: #00abf1;
}
.main_champions .main_champions_wrap .mc .logo .image, .main_champions .main_champions_wrap .yc .logo .image {
  width: 100%;
  height: 100%;
  display: block;
}
.main_champions .main_champions_wrap .mc .logo .image img, .main_champions .main_champions_wrap .yc .logo .image img {
  height: 150px;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -30px;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
}
.main_champions .main_champions_wrap .mc .logo .top_content, .main_champions .main_champions_wrap .yc .logo .top_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  display: none;
  font-weight: 300;
}
.main_champions .main_champions_wrap .mc .logo .top_content h1, .main_champions .main_champions_wrap .yc .logo .top_content h1 {
  display: block;
  text-align: center;
  color: #00abf1;
  display: none;
}
.main_champions .main_champions_wrap .mc .logo .top_content span, .main_champions .main_champions_wrap .yc .logo .top_content span {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: left;
  color: #333;
}
.main_champions .main_champions_wrap .mc .logo {
  /*background:url('https://www.unep.org/themes/custom/coe/img/banner_video_1.jpg');
  background-size:cover;*/
  background: #fff;
}
.main_champions .main_champions_wrap .yc .logo {
  /*background:url('http://staging-yc.unenvironment.org/sites/default/files/2019-07/final_banner_yc.jpeg');
  background-size:cover;
  background-position: 43% 0;
  background-repeat: no-repeat;*/
  background: #fff;
}
.main_champions .main_champions_wrap .mc .logo:hover {
  background: #fff !important;
}
.main_champions .main_champions_wrap .mc .logo:hover .image img {
  display: none;
}
.main_champions .main_champions_wrap .mc .logo:hover .top_content {
  display: block;
}
.main_champions .main_champions_wrap .yc .logo:hover {
  background: #fff !important;
}
.main_champions .main_champions_wrap .yc .logo:hover .image img {
  display: none;
}
.main_champions .main_champions_wrap .yc .logo:hover .top_content {
  display: block;
}

.mainchampions_header .navGlobal {
  width: 25%;
}

.yg_ab_content figure {
  padding: 0;
  margin: 25px 0;
}
.yg_ab_content figure img {
  max-width: 100%;
  margin: 0;
  padding: 0 0 7px 0;
}
.yg_ab_content figure figcaption {
  font-size: 0.8em;
  color: rgba(51, 51, 51, 0.7);
}

figure.align-right, img.align-right {
  max-width: 50%;
  margin: 0em 0 1em 1.5em !important;
}
@media screen and (max-width: 767px) {
  figure.align-right, img.align-right {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

figure.align-left {
  max-width: 50%;
  margin: 0em 1.5em 1em 60px !important;
}
@media screen and (max-width: 767px) {
  figure.align-left {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

img.align-left {
  max-width: 50%;
  margin: 0em 1.5em 1em 0px !important;
}
@media screen and (max-width: 767px) {
  img.align-left {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

@media screen and (max-width: 767px) {
  figure.align-center, img.align-center {
    max-width: none;
    margin: 0 0 1.5em 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .paragraph img {
    width: 100% !important;
  }
}
.mainchamps_footer_wrap .primaryFooter_right, .mainchamps_footer_wrap .primaryFooter_left {
  width: 50% !important;
  max-width: 50% !important;
}
.mainchamps_footer_wrap .footer_links {
  /* height: auto !important; */
  justify-content: flex-start !important;
  padding-right: 30px !important;
}
.mainchamps_footer_wrap .primaryFooter_right img {
  height: 40px !important;
  width: auto !important;
}
.mainchamps_footer_wrap .footer_social {
  width: 100% !important;
}
.mainchamps_footer_wrap .yc_sponsor_logo_item {
  width: 33% !important;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .main_champions .main_champions_wrap {
    display: block !important;
  }
  .mc, .yc {
    width: 96% !important;
    margin: 0 auto;
  }
  .mainchamps_footer_wrap .primaryFooter_right, .mainchamps_footer_wrap .primaryFooter_left {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 501px) {
  .clp-wrap {
    display: block;
    margin-bottom: 30px;
  }
  .clp-wrap .clp_item {
    width: 98%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .clp-wrap .clp_item .clp_item_img {
    width: 100%;
    min-height: 200px;
  }
  .clp-wrap .clp_item .clp_item_img img {
    width: 100%;
    height: 100%;
    float: none;
  }
  .clp-wrap .clp_item .title a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    display: block;
    margin: 10px 0;
  }
  .subscribe_form {
    min-height: 100px;
    max-height: none;
  }
  .subscribe_form .mc-field-group {
    width: 90%;
    display: block;
  }
  .subscribe_form #mce-EMAIL {
    width: 100% !important;
  }
  .subscribe_form #mc-embedded-subscribe {
    border: none;
    width: 100%;
    margin-top: 10px;
  }
  .clp-wrap .clp_item .title a {
    min-height: 10px;
  }
}
