body .hero {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden; }
  @media all and (max-width: 991px) {
    body .hero {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  body .hero .hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
    body .hero .hero-image img {
      width: 100%;
      height: 620px;
      -o-object-fit: cover;
         object-fit: cover; }
    body .hero .hero-image .hero-image-overlay {
      background: -webkit-gradient(linear, left top, right top, from(#000000), to(#000000));
      background: linear-gradient(to right, #000000 0%, #000000 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9;
      opacity: .3; }
    body .hero .hero-image .thumbnail-caption-container {
      position: absolute;
      bottom: 10px;
      left: 10px;
      top: unset;
      right: 20px;
      z-index: 999; }
      @media all and (min-width: 600px) {
        body .hero .hero-image .thumbnail-caption-container {
          width: 50%; } }
      body .hero .hero-image .thumbnail-caption-container p {
        font-size: 12px;
        font-family: Acumin,sans-serif;
        font-style: italic;
        line-height: 10px;
        color: #f2f4ef; }
  body .hero .hero-text {
    position: absolute;
    left: 25%;
    top: 135px;
    width: 50%;
    color: #fff;
    text-align: center;
    z-index: 10; }
    @media all and (max-width: 991px) {
      body .hero .hero-text {
        position: relative;
        left: 0;
        top: 135px;
        width: 90%;
        margin: 0 auto; } }
    @media all and (max-width: 480px) {
      body .hero .hero-text {
        top: 80px; } }
    @media all and (max-width: 400px) {
      body .hero .hero-text {
        position: relative;
        left: 0;
        width: 95%;
        margin: 0 auto; } }
    body .hero .hero-text h1 {
      font-size: 60px;
      font-family: Acumin;
      font-stretch: condensed;
      line-height: 1;
      font-weight: 700;
      position: relative;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      padding-bottom: 35px;
      margin-bottom: 35px;
      text-transform: uppercase; }
      @media all and (max-width: 1280px) {
        body .hero .hero-text h1 {
          font-size: 44px;
          padding-top: 25px; } }
    body .hero .hero-text h1::before {
      content: ' ';
      position: absolute;
      width: 70px;
      background-color: #fff;
      height: 5px;
      bottom: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
              transform: translate(-50%, 0%); }
    body .hero .hero-text p {
      text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.8);
      color: #fff;
      line-height: 1.3em;
      font-family: Begum;
      font-size: 21px; }

body .tabs-section ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1250px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px; }
  @media all and (max-width: 1350px) {
    body .tabs-section ul {
      width: 95%; } }
  @media all and (max-width: 700px) {
    body .tabs-section ul {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-top: 40px; } }
  body .tabs-section ul li {
    background-color: #F2F4EF;
    color: #666;
    height: 80px;
    width: 230px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    -webkit-box-shadow: 0px 30px 32px -20px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 30px 32px -20px rgba(0, 0, 0, 0.15);
    z-index: 1000; }
    @media all and (max-width: 1350px) {
      body .tabs-section ul li {
        width: 18%;
        height: unset;
        padding: 2%; } }
    @media all and (max-width: 700px) {
      body .tabs-section ul li {
        width: 90%;
        margin: 0 auto 10px auto; } }
  body .tabs-section ul .selected {
    background-color: #147c3f;
    color: #fff;
    position: relative; }
  @media all and (min-width: 700px) {
    body .tabs-section ul .selected:after {
      content: '';
      width: 100%;
      height: 50px;
      position: absolute;
      background-color: #147c3f;
      border-bottom-left-radius: 100%;
      border-bottom-right-radius: 100%;
      left: 0;
      bottom: -25px;
      z-index: -1; } }

@media all and (min-width: 1200px) {
  body .tabs-section.fixed-tabs {
    position: relative; }
    body .tabs-section.fixed-tabs ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      position: fixed;
      top: 30%;
      right: 0;
      z-index: 100;
      width: 14vw; }
      body .tabs-section.fixed-tabs ul li {
        width: 100%; } }
      @media all and (min-width: 1200px) and (max-width: 1350px) {
        body .tabs-section.fixed-tabs ul li {
          width: 100%;
          height: 80px; } }

body .main-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  body .main-content h2 {
    color: #666666;
    font-family: Acumin;
    font-stretch: condensed;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    text-align: left;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
    text-transform: none;
    text-align: center; }
  body .main-content p {
    color: #666666;
    font-family: Begum;
    font-size: 16px;
    line-height: 28px; }
  body .main-content .apply {
    margin: 40px auto;
    text-align: center; }
    body .main-content .apply button {
      position: relative;
      white-space: nowrap;
      border-radius: .4em;
      padding: 0.8em 1.6em;
      font-family: Acumin;
      font-stretch: condensed;
      font-weight: 700;
      text-transform: uppercase;
      color: white;
      background-color: transparent;
      border: 0 none;
      cursor: pointer;
      min-width: 200px;
      text-align: center;
      background-color: #147c3f;
      color: white;
      margin-top: 10px; }
    body .main-content .apply p {
      width: 60%;
      margin: 0 auto; }
  body .main-content .section {
    width: 70%;
    margin: 100px auto 0 auto; }
  body .main-content .green-section {
    padding: 80px 15%;
    margin-top: 80px;
    background-color: #147c3f;
    text-align: center;
    color: #fff; }
  body .main-content .intro-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px; }
    @media all and (max-width: 1050px) {
      body .main-content .intro-text {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; } }
    @media all and (max-width: 767px) {
      body .main-content .intro-text {
        width: 90%; } }
    body .main-content .intro-text .left-column, body .main-content .intro-text .right-column {
      width: 50%;
      padding: 2% 5%; }
      @media all and (max-width: 1050px) {
        body .main-content .intro-text .left-column, body .main-content .intro-text .right-column {
          width: 100%; } }
      body .main-content .intro-text .left-column .intro-header, body .main-content .intro-text .right-column .intro-header {
        padding-bottom: 0; }
    body .main-content .intro-text .left-column .fb-group p {
      width: 100%; }
    body .main-content .intro-text .left-column .fb-group a {
      z-index: 1001;
      font-size: 22px;
      border: 1px solid transparent;
      text-decoration: none;
      font-family: Acumin;
      font-weight: 700;
      font-stretch: condensed;
      padding: 12px 24px 11px;
      margin: 0 auto 20px;
      text-transform: uppercase;
      color: #fff;
      border-radius: 5px;
      line-height: 28px;
      background-color: #2cc84d;
      display: inline-block; }
  body .main-content .right-column {
    text-align: center; }
    @media all and (max-width: 750px) {
      body .main-content .right-column {
        margin-top: 40px; } }
    body .main-content .right-column .map img {
      width: 130%;
      height: auto;
      margin: -12% -15% -5%; }
    body .main-content .right-column .apply p {
      font-size: 14px;
      width: 100%; }
    body .main-content .right-column .report-download-button {
      z-index: 1001; }
    body .main-content .right-column a {
      z-index: 1001;
      font-size: 22px;
      border: 1px solid transparent;
      text-decoration: none;
      font-family: Acumin;
      font-weight: 700;
      font-stretch: condensed;
      padding: 12px 24px 11px;
      margin-top: 10px;
      text-transform: uppercase;
      color: #fff;
      border-radius: 5px;
      line-height: 50px; }
  body .main-content .five-pros h2 {
    text-align: center; }
  body .main-content .five-pros .pros-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1000px;
    margin: 0 auto 60px; }
    @media all and (max-width: 1480px) {
      body .main-content .five-pros .pros-flex {
        width: 90%; } }
    @media all and (max-width: 767px) {
      body .main-content .five-pros .pros-flex {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    body .main-content .five-pros .pros-flex .pro-flex {
      width: 110px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 170px; }
      @media all and (max-width: 767px) {
        body .main-content .five-pros .pros-flex .pro-flex {
          width: 33%;
          margin-bottom: 20px; } }
      @media all and (max-width: 550px) {
        body .main-content .five-pros .pros-flex .pro-flex {
          width: 50%; } }
      body .main-content .five-pros .pros-flex .pro-flex a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
      body .main-content .five-pros .pros-flex .pro-flex h3 {
        color: #666666;
        font-family: Acumin;
        font-weight: 700;
        font-stretch: condensed;
        font-size: 20px;
        font-weight: bold;
        line-height: 24px;
        text-align: center; }
  body .main-content .asean h2 {
    text-align: center; }
  body .main-content .participating-companies {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media all and (max-width: 1050px) {
      body .main-content .participating-companies {
        width: 95%;
        margin: 80px auto; } }
    body .main-content .participating-companies h2 {
      text-align: center;
      margin-bottom: 0;
      width: 100%; }
    body .main-content .participating-companies .company {
      width: 50%;
      margin-bottom: 40px; }
      @media all and (max-width: 1050px) {
        body .main-content .participating-companies .company {
          width: 100%; } }
      body .main-content .participating-companies .company .company-inner {
        display: block;
        text-align: center; }
        @media all and (max-width: 1050px) {
          body .main-content .participating-companies .company .company-inner {
            -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                    flex-wrap: wrap; } }
        body .main-content .participating-companies .company .company-inner .logo {
          width: 75%;
          text-align: center;
          margin: 0 auto 10px; }
          @media all and (max-width: 1050px) {
            body .main-content .participating-companies .company .company-inner .logo {
              width: 50%;
              margin: 0 auto; } }
          @media all and (max-width: 500px) {
            body .main-content .participating-companies .company .company-inner .logo {
              width: 80%; } }
          body .main-content .participating-companies .company .company-inner .logo img {
            height: 150px;
            width: auto; }
        body .main-content .participating-companies .company .company-inner .text {
          width: 80%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          margin: 0 auto;
          text-align: left; }
          @media all and (max-width: 1050px) {
            body .main-content .participating-companies .company .company-inner .text {
              width: 75%;
              margin: 20px auto; } }
  body .main-content .why {
    text-align: center; }
    body .main-content .why h2 {
      text-align: center; }
    body .main-content .why .text {
      text-align: center; }
      body .main-content .why .text p:nth-of-type(1) {
        margin: 0 auto; }
        @media all and (min-width: 800px) {
          body .main-content .why .text p:nth-of-type(1) {
            width: 60%; } }
      body .main-content .why .text ul {
        margin: 0 auto; }
        body .main-content .why .text ul li {
          color: #666;
          font-family: Begum;
          font-size: 16px;
          line-height: 28px; }
        body .main-content .why .text ul ul.leaf-bullets li {
          position: relative;
          width: -webkit-max-content;
          width: -moz-max-content;
          width: max-content;
          margin: 0 auto;
          padding: 5px 20px; }
        body .main-content .why .text ul ul.leaf-bullets li:before {
          left: -5px;
          top: 7px; }
  body .main-content .who {
    text-align: center; }
    body .main-content .who h2 {
      text-align: center;
      color: #fff; }
    body .main-content .who p {
      color: #fff; }
    body .main-content .who ol li {
      color: #fff;
      font-family: Begum;
      font-size: 16px;
      line-height: 28px;
      padding: 5px 20px; }
  body .main-content .selection {
    text-align: center; }
    body .main-content .selection h2 {
      text-align: center; }
  body .main-content .dates h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 0; }
  body .main-content .dates h2:nth-of-type(2) {
    margin-top: 40px; }
  body .main-content .dates p {
    color: #fff; }
  body .main-content .events {
    text-align: center; }
    body .main-content .events h2 {
      text-align: center; }
  body .main-content .final-details {
    background-color: #ebebeb;
    padding: 80px 25%;
    width: 120%;
    /* padding-left: 15%; */
    margin-left: -10%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    body .main-content .final-details .left, body .main-content .final-details .right {
      width: 45%; }
      @media all and (max-width: 650px) {
        body .main-content .final-details .left, body .main-content .final-details .right {
          width: 100%;
          margin-bottom: 20px; } }
      body .main-content .final-details .left img, body .main-content .final-details .right img {
        width: auto;
        margin: 20px 0; }
    body .main-content .final-details .left {
      margin-top: -69px; }
      body .main-content .final-details .left img {
        height: 120px; }
    body .main-content .final-details .right img {
      height: 51px;
      position: relative;
      bottom: 34px; }
  body .main-content .share {
    width: 120%;
    margin-left: -10%;
    margin-top: 0; }
    body .main-content .share .share-inner {
      background-color: #fff;
      padding: 80px 0;
      margin: 0 auto; }
      body .main-content .share .share-inner .share-text-veggiechallenge {
        width: 90%;
        margin: 0 auto;
        text-align: center; }
        body .main-content .share .share-inner .share-text-veggiechallenge h2 {
          text-align: center;
          margin-bottom: 0; }
        body .main-content .share .share-inner .share-text-veggiechallenge p {
          margin-bottom: 20px; }
      body .main-content .share .share-inner .share-buttons .share-buttons-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 500px;
        margin: 0 auto;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        position: relative;
        left: -50px; }
        @media all and (max-width: 767px) {
          body .main-content .share .share-inner .share-buttons .share-buttons-list {
            width: 65%; } }
        @media all and (max-width: 480px) {
          body .main-content .share .share-inner .share-buttons .share-buttons-list {
            display: grid;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        body .main-content .share .share-inner .share-buttons .share-buttons-list a {
          position: relative; }
          @media all and (max-width: 480px) {
            body .main-content .share .share-inner .share-buttons .share-buttons-list a {
              margin-bottom: 20px; } }
          body .main-content .share .share-inner .share-buttons .share-buttons-list a .share-button {
            border-radius: 100%;
            width: 35px;
            height: 35px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            position: relative;
            width: 100%;
            z-index: 1; }
            body .main-content .share .share-inner .share-buttons .share-buttons-list a .share-button span {
              position: relative; }
              body .main-content .share .share-inner .share-buttons .share-buttons-list a .share-button span svg path {
                fill: #fff; }
          body .main-content .share .share-inner .share-buttons .share-buttons-list a .name {
            padding-left: 15px;
            font-size: 18px;
            text-transform: uppercase;
            height: 100%;
            background-color: #fff;
            border-bottom-right-radius: 20px;
            border-top-right-radius: 20px;
            left: 23px;
            top: 0;
            position: absolute;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            color: #666;
            z-index: 0;
            width: 103px; }
            body .main-content .share .share-inner .share-buttons .share-buttons-list a .name p {
              font-family: Acumin;
              font-stretch: condensed;
              font-weight: 400;
              line-height: 16px;
              font-size: 16px;
              color: #4273c8; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .facebook .share-button {
          background-color: #4273c8; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .facebook .name p {
          color: #4273c8; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .twitter .share-button {
          background-color: #55acee; }
          body .main-content .share .share-inner .share-buttons .share-buttons-list .twitter .share-button span svg {
            position: relative;
            right: 3px; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .twitter .name p {
          color: #55acee; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .email .share-button {
          background-color: #147c3f; }
        body .main-content .share .share-inner .share-buttons .share-buttons-list .email .name p {
          color: #147c3f; }

body .navbar-buttons .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

body .socials li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

body .webinar-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 5% 10%;
  margin: 40px auto;
  background-color: #f2f4ef; }
  @media all and (max-width: 1000px) {
    body .webinar-row {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; } }
  body .webinar-row .mission-top-container p.date, body .webinar-row .mission-top-container p.time {
    padding: 0;
    margin-bottom: 0;
    text-align: center !important; }
  body .webinar-row .mission-top-container p:nth-of-type(3) {
    margin: 20px 0 0; }
  body .webinar-row .img-container {
    width: 45%;
    margin: 0 auto; }
    @media all and (max-width: 1000px) {
      body .webinar-row .img-container {
        width: 100%; } }
    body .webinar-row .img-container img {
      width: 90%;
      margin: 0 auto; }
      @media all and (max-width: 1000px) {
        body .webinar-row .img-container img {
          width: 100%; } }
    @media all and (min-width: 1001px) {
      body .webinar-row .img-container h2 {
        display: none; } }
    body .webinar-row .img-container p {
      margin: 0;
      padding: 0; }
  body .webinar-row .text-container {
    width: 45%;
    margin: 40px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media all and (max-width: 1000px) {
      body .webinar-row .text-container {
        width: 100%; } }
    @media all and (max-width: 1600px) {
      body .webinar-row .text-container {
        margin: 0 auto; } }
    @media all and (max-width: 1000px) {
      body .webinar-row .text-container h2 {
        display: none; } }
    body .webinar-row .text-container .button-container {
      margin: 20px auto; }
      body .webinar-row .text-container .button-container a {
        display: inline-block;
        background-color: #147c3f;
        -webkit-box-shadow: none;
                box-shadow: none;
        z-index: 1001;
        font-size: 22px;
        border: 1px solid transparent;
        text-decoration: none;
        font-family: Acumin;
        font-weight: 700;
        font-stretch: condensed;
        padding: 12px 24px 11px;
        margin-top: 10px;
        text-transform: uppercase;
        color: #fff;
        border-radius: 5px;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.01)));
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
        background-repeat: repeat-x;
        background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%); }
  body .webinar-row .mission-top-container h2 {
    line-height: 1.083;
    position: relative;
    font-size: 48px;
    font-weight: bold;
    color: #666666;
    padding-bottom: 25px;
    margin-bottom: 30px;
    text-align: center; }

body.page-template-page-flexible-landing .vc_btn3-color-proveg-corporate-button {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.01)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
  background-repeat: repeat-x;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%); }

body.page-template-page-flexible-landing #main .main-content .blog-main-lid h3 {
  position: relative;
  color: #666666;
  font-family: Begum;
  font-size: 28px;
  font-style: italic;
  line-height: 36px;
  text-align: center;
  text-transform: none;
  font-weight: 500;
  padding: 0 0 20px;
  margin: 60px 0 40px; }
  @media all and (max-width: 767px) {
    body.page-template-page-flexible-landing #main .main-content .blog-main-lid h3 {
      font-size: 20px; } }

body.page-template-page-flexible-landing body .mission-top-container p {
  text-align: left;
  font-family: Acumin;
  font-size: 18px;
  line-height: 1.6; }

body.page-template-page-flexible-landing p.quotee {
  margin-bottom: 80px;
  font-family: 'Acumin';
  font-size: 20px; }

body.page-template-page-flexible-landing .main-content {
  position: relative; }

body.page-template-page-flexible-landing .main-content .intro-text .right-column {
  top: -210px;
  z-index: 1001; }

body.page-template-page-flexible-landing .main-content .intro-text .right-column a {
  background-color: #147c3f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.01)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
  background-repeat: repeat-x;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%); }

@media all and (max-width: 1050px) {
  body.page-template-page-flexible-landing .main-content .intro-text .right-column {
    top: -210px;
    z-index: 1001; } }

body.page-template-page-flexible-landing .report {
  z-index: 1000;
  width: 80%;
  margin: 0 auto; }

body.page-template-page-flexible-landing .report img {
  width: 100%;
  height: auto;
  margin: 0 auto; }

body.page-template-page-flexible-landing .intro-text .intro-text {
  display: none; }

body.page-template-page-flexible-landing .report-download-button a {
  display: inline-block;
  line-height: 28px;
  width: 80%;
  margin: 10px auto; }

body.page-template-page-flexible-landing body.page-template-page-flexible-landing .intro-header {
  display: none; }

body.page-template-page-flexible-landing .mission-top-container.hidden-form-container {
  margin: 0 auto;
  /* width: 60%; */
  width: 90%;
  max-width: 950px; }

@media all and (min-width: 1050px) {
  body.page-template-page-flexible-landing body .main-content .intro-text .right-column {
    text-align: center;
    position: relative;
    left: 100px; }
  body.page-template-page-flexible-landing .main-content .map {
    position: relative;
    z-index: 1000;
    width: 80%; } }

@media all and (max-width: 1049px) {
  body.page-template-page-flexible-landing .main-content .map {
    width: 50%;
    margin: 0 auto; }
  body.page-template-page-flexible-landing body.page-template-page-flexible-landing .main-content .map {
    width: 80%; }
  body.page-template-page-flexible-landing body .main-content .intro-text .right-column .map img {
    width: 100%;
    height: auto;
    margin: -70px auto; } }

body.page-template-page-flexible-landing body .mission-top-container.hidden-form-container h2 {
  text-transform: uppercase;
  line-height: 1.083;
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: #666666;
  padding-bottom: 25px;
  margin-bottom: 30px;
  text-align: center; }

body.page-template-page-flexible-landing #main .gform_wrapper .gform_body input {
  border: 1px solid #d7d8d6; }

body.page-template-page-flexible-landing .hidden-form-container {
  display: none; }

body.page-template-page-flexible-landing #report-form-header,
body.page-template-page-flexible-landing #consumer-report-form {
  padding-top: 100px;
  margin-top: -100px;
  display: block; }

body.page-template-page-flexible-landing body #main .mission-top-container p {
  text-align: left;
  font-family: Acumin;
  font-size: 18px;
  line-height: 1.6; }

.submissions-by-project {
  margin: 0 0 80px 0; }
  .submissions-by-project .submissions-table {
    width: 60%;
    margin: 40px auto; }
    .submissions-by-project .submissions-table tr:nth-of-type(1) {
      font-weight: 700; }
    .submissions-by-project .submissions-table tr {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
      -webkit-justify-content: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly; }
      .submissions-by-project .submissions-table tr td, .submissions-by-project .submissions-table tr th {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
      .submissions-by-project .submissions-table tr td img {
        max-width: 60%;
        width: auto;
        height: auto;
        margin: 0 auto; }

@media all and (max-width: 650px) {
  #qcld_regions_div_132512 {
    position: relative;
    left: -15%; } }

.map {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content; }

@media all and (max-width: 450px) {
  #qcld_regions_div_132512 {
    left: -25%; } }

@media all and (max-width: 400px) {
  #qcld_regions_div_132512 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

.map {
  position: relative; }
  .map .second-map {
    position: absolute;
    top: 0;
    right: 0;
    width: 135px;
    height: 100px;
    overflow: hidden;
    border: solid 1px green; }
    .map .second-map .map-container {
      position: relative;
      right: 270px;
      bottom: 650px; }

@media all and (max-width: 1650px) {
  .map .second-map {
    right: 15%; } }

@media all and (max-width: 1400px) and (min-width: 1050px) {
  .map .second-map {
    right: 25%; } }

@media all and (max-width: 1250px) and (min-width: 1200px) {
  .map .second-map {
    right: 35%; } }

@media all and (max-width: 680px) {
  .map .second-map {
    right: 30%; } }

@media all and (max-width: 550px) {
  .map .second-map {
    right: 40%; } }

@media all and (max-width: 480px) {
  .map .second-map {
    right: 55%; } }

@media all and (max-width: 360px) {
  .map .second-map {
    right: 60%; } }

@media all and (min-width: 1051px) {
  body .main-content.food-services .section {
    width: 80%; }
  body .main-content.food-services .intro-text .left-column {
    width: 65%; } }

.main-content.food-services ul.food-service-segment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.food-services .mission-top-container p {
  text-align: left; }

body.page-template-page-flexible-landing #main .main-content.food-services .blog-main-lid h3 {
  text-align: left; }

div#gform_confirmation_message_65 br {
  display: none; }

div#gform_confirmation_message_65 p {
  margin-bottom: 10px;
  margin-top: 25px;
  line-height: 1.2em;
  font-size: 1em;
  font-family: 'Acumin'; }

.gform_heading.change-font {
  display: block; }

.gform_heading.change-font a {
  width: 100%; }

/* #gform_confirmation_message_65 h3.gform_title {
    margin-right: 100px;
} */
.food-services div#gform_confirmation_message_65 br {
  display: none; }

.food-services div#gform_confirmation_message_65 p {
  margin-bottom: 10px;
  margin-top: 25px;
  line-height: 1.2em;
  font-size: 1em;
  font-family: 'Acumin'; }

.food-services .gform_heading.change-font {
  display: block; }

.food-services .gform_heading.change-font a {
  width: 100%; }

.food-services .socials a {
  margin-right: 20px; }

body #main .tabs-section.asean-voting .tabs .tab {
  font-size: 24px;
  background-color: #147c3f;
  color: #fff; }

body #main .tabs-section.asean-voting .tabs .tab-2 {
  background-color: #2cc84d;
  color: #fff;
  border-radius: 5px; }
  @media all and (min-width: 700px) {
    body #main .tabs-section.asean-voting .tabs .tab-2 {
      width: 60%; } }

body #main .tabs-section.asean-voting .tabs .tab.selected::after {
  display: none; }

body #main .fixed-tabs .tabs .tab-2 {
  width: 100%;
  border-radius: 0; }

@media all and (min-width: 1000px) {
  body .main-content.asean-voting .section {
    width: 80%; } }

body .main-content.asean-voting .section h2 {
  padding-bottom: 5px;
  text-transform: uppercase; }

body .main-content.asean-voting .section h2:before {
  content: ' ';
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #666;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%); }

body .main-content.asean-voting .section p {
  width: 60%;
  text-align: center;
  margin: 0 auto;
  font-family: Acumin; }
  @media all and (max-width: 1400px) {
    body .main-content.asean-voting .section p {
      width: 100%; } }

body .main-content.asean-voting .section .fb-group p {
  width: 100%; }

body .main-content.asean-voting .section .fb-group a {
  z-index: 1001;
  font-size: 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: Acumin;
  font-weight: 700;
  font-stretch: condensed;
  padding: 12px 24px 11px;
  margin: 0 auto 20px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  line-height: 28px;
  background-color: #2cc84d;
  display: inline-block; }

body .main-content.asean-voting .five-pros {
  margin: 100px auto 0 auto; }
  body .main-content.asean-voting .five-pros h2 {
    padding-bottom: 10px; }
  body .main-content.asean-voting .five-pros h2:before {
    content: ' ';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: #666;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%); }

body .main-content.asean-voting .section.voting {
  background-color: #F2F4EF;
  width: 100%;
  padding: 100px 15%; }
  body .main-content.asean-voting .section.voting h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 32px;
    margin: 0 auto;
    color: #2cc84d; }
    @media all and (max-width: 1050px) {
      body .main-content.asean-voting .section.voting h2 {
        position: relative;
        left: 20%;
        width: 75%; } }
    @media all and (max-width: 480px) {
      body .main-content.asean-voting .section.voting h2 {
        width: 80%; } }
    body .main-content.asean-voting .section.voting h2 span {
      font-size: 80px;
      justify-self: flex-start;
      margin-right: 50%;
      line-height: 55px; }
  body .main-content.asean-voting .section.voting h2::before {
    display: block;
    content: '\e902';
    font-family: proveg-icons !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1.05;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    bottom: 25px;
    left: -80px;
    color: #2cc84d;
    font-size: 56px;
    -webkit-transform: translate(-20%, 9%);
            transform: translate(-20%, 9%);
    margin: 0;
    z-index: 2;
    border-radius: 100%;
    background-color: transparent;
    padding: 10px;
    width: 80px;
    height: 80px;
    border: 1px solid #2cc84d; }
  body .main-content.asean-voting .section.voting .candidates {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    body .main-content.asean-voting .section.voting .candidates h3 {
      text-transform: none;
      width: 55%;
      margin: 10px auto;
      line-height: 1.4em;
      text-align: center; }
      @media all and (max-width: 1200px) {
        body .main-content.asean-voting .section.voting .candidates h3 {
          width: 80%; } }
    body .main-content.asean-voting .section.voting .candidates p.description {
      margin-bottom: 10px; }
      @media all and (max-width: 1200px) {
        body .main-content.asean-voting .section.voting .candidates p.description {
          width: 80%; } }
    body .main-content.asean-voting .section.voting .candidates .button-row {
      margin-top: 10px;
      width: 100%;
      margin-bottom: 40px; }
      body .main-content.asean-voting .section.voting .candidates .button-row .vote-count {
        display: none; }
      body .main-content.asean-voting .section.voting .candidates .button-row button, body .main-content.asean-voting .section.voting .candidates .button-row a {
        background: none;
        color: inherit;
        border: none;
        padding: 0;
        font: inherit;
        cursor: pointer;
        outline: inherit;
        border-radius: 8px;
        width: 150px;
        padding: 5px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 auto;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: #147c3f; }
        body .main-content.asean-voting .section.voting .candidates .button-row button p, body .main-content.asean-voting .section.voting .candidates .button-row a p {
          text-transform: uppercase;
          font-family: Acumin;
          font-stretch: condensed;
          font-weight: 700;
          font-size: 30px;
          padding-top: 5px;
          color: #fff; }
      body .main-content.asean-voting .section.voting .candidates .button-row a.share-button {
        background-color: #FEA20F;
        margin-top: 10px;
        color: #fff;
        text-transform: uppercase; }
    body .main-content.asean-voting .section.voting .candidates .candidate {
      width: 50%;
      margin-bottom: 40px; }
      @media all and (max-width: 1200px) {
        body .main-content.asean-voting .section.voting .candidates .candidate {
          width: 100%; } }
      body .main-content.asean-voting .section.voting .candidates .candidate .header-bg {
        color: #fff;
        text-align: center;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        padding: 2%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 80px;
        margin-bottom: 15px; }
        @media all and (max-width: 600px) {
          body .main-content.asean-voting .section.voting .candidates .candidate .header-bg {
            width: 140%;
            margin-left: -20%; } }
      body .main-content.asean-voting .section.voting .candidates .candidate h4 {
        font-weight: 700;
        font-size: 40px;
        line-height: 40px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2% 10%;
        width: 400px;
        margin: 0 auto;
        text-transform: none; }
        body .main-content.asean-voting .section.voting .candidates .candidate h4 span {
          width: 100%; }
          @media all and (max-width: 600px) {
            body .main-content.asean-voting .section.voting .candidates .candidate h4 span {
              display: none; } }
        @media all and (max-width: 750px) {
          body .main-content.asean-voting .section.voting .candidates .candidate h4 {
            width: 60%;
            font-size: 30px; } }
        @media all and (max-width: 750px) {
          body .main-content.asean-voting .section.voting .candidates .candidate h4 {
            font-size: 25px;
            line-height: 24px; } }

body .main-content.asean-voting .section.participating-companies h2 {
  margin-bottom: 40px; }

@media all and (min-width: 1000px) {
  body .main-content.asean-voting .section.participating-companies .company {
    width: 100%; }
    body .main-content.asean-voting .section.participating-companies .company .company-inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      body .main-content.asean-voting .section.participating-companies .company .company-inner .logo {
        width: 30%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
                justify-content: flex-end; }
      body .main-content.asean-voting .section.participating-companies .company .company-inner .text {
        width: 70%;
        text-align: left; }
        body .main-content.asean-voting .section.participating-companies .company .company-inner .text p {
          text-align: left; }
  body .main-content.asean-voting .section.participating-companies div:nth-of-type(even) .company-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
    body .main-content.asean-voting .section.participating-companies div:nth-of-type(even) .company-inner .logo {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    body .main-content.asean-voting .section.participating-companies div:nth-of-type(even) .company-inner .text p {
      margin-left: auto;
      margin-right: 5%; } }

@media all and (max-width: 800px) {
  body .main-content.asean-voting .section.participating-companies .company .company-inner .logo img {
    height: auto;
    width: auto;
    max-width: 260px;
    max-height: 150px; } }

@media all and (max-width: 1050px) {
  body .main-content.asean-voting .section.participating-companies .company .company-inner .text p {
    margin-left: 5%; } }

body .main-content.asean-voting .why.section .text ul.leaf-bullets {
  width: 480px;
  text-align: left; }
  @media all and (max-width: 600px) {
    body .main-content.asean-voting .why.section .text ul.leaf-bullets {
      width: 100%; } }

body .main-content.asean-voting .why.section .text .placings {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  body .main-content.asean-voting .why.section .text .placings .placing {
    width: 33%;
    margin: 40px auto; }
    @media all and (max-width: 450px) {
      body .main-content.asean-voting .why.section .text .placings .placing {
        width: 100%; } }
    body .main-content.asean-voting .why.section .text .placings .placing h4 {
      font-family: 'Acumin';
      font-stretch: condensed;
      font-weight: 400;
      text-transform: none; }
      body .main-content.asean-voting .why.section .text .placings .placing h4 span {
        font-size: 40px;
        font-family: 'Acumin';
        color: #147c3f;
        text-transform: none; }
    body .main-content.asean-voting .why.section .text .placings .placing p {
      font-family: 'Acumin';
      font-stretch: condensed;
      font-size: 20px; }
      @media all and (max-width: 600px) {
        body .main-content.asean-voting .why.section .text .placings .placing p {
          width: 100%; } }

body .main-content.asean-voting .selection.section .criteria {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media all and (min-width: 1050px) {
    body .main-content.asean-voting .selection.section .criteria {
      padding: 0 10%; } }
  body .main-content.asean-voting .selection.section .criteria .criterion {
    width: 50%;
    margin-bottom: 40px; }
    @media all and (max-width: 750px) {
      body .main-content.asean-voting .selection.section .criteria .criterion {
        width: 100%; } }
    body .main-content.asean-voting .selection.section .criteria .criterion img {
      height: 80px;
      width: auto; }
    @media all and (max-width: 1400px) {
      body .main-content.asean-voting .selection.section .criteria .criterion p {
        width: 80%; } }

body .main-content.asean-voting .dates.green-section div .vote-period {
  font-family: 'Acumin';
  font-stretch: condensed;
  font-size: 24px;
  margin-bottom: 15px; }

body .main-content.asean-voting .dates.green-section div ul.deadlines li {
  font-size: 20px;
  line-height: 26px; }

body .main-content.asean-voting .flexslider-founders {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  padding: 50px 0; }
  body .main-content.asean-voting .flexslider-founders h4 {
    font-size: 30px; }
  body .main-content.asean-voting .flexslider-founders p {
    font-size: 22px; }
  body .main-content.asean-voting .flexslider-founders .founders-img img {
    border-radius: 0; }
  body .main-content.asean-voting .flexslider-founders .flex-direction-nav {
    display: block !important; }

body .main-content.asean-voting .final-details.section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 15%; }
  body .main-content.asean-voting .final-details.section .left p, body .main-content.asean-voting .final-details.section .right p {
    width: 75%;
    text-align: left; }

body .main-content.asean-voting .share.section {
  width: 100%;
  margin: 0 auto; }
  body .main-content.asean-voting .share.section .share-inner {
    background-color: #ebebeb; }
    body .main-content.asean-voting .share.section .share-inner h2 {
      margin-bottom: 20px; }
    body .main-content.asean-voting .share.section .share-inner .share-buttons .name {
      left: 10px;
      width: 115px; }

.flex-direction-nav .flex-prev:before, .flex-direction-nav .flex-next:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "proveg-icons";
  font-size: 30px; }

.flex-direction-nav .flex-prev:before {
  content: "\e922"; }

.flex-direction-nav .flex-next:before {
  content: "\e923"; }

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  color: grey;
  border: 0 none;
  background-color: transparent;
  padding: 10px !important;
  margin: 10px;
  border-radius: 80px; }

.flex-direction-nav a:hover,
.flex-direction-nav a:hover {
  background-color: grey;
  color: white; }

.flex-direction-nav .flex-prev {
  left: 0;
  font-size: 0; }

.flex-direction-nav .flex-next {
  right: 0;
  font-size: 0; }

@media (max-width: 767px) {
  body .founders-img img {
    width: 80%; }
  body .founders-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  body .flex-control-nav {
    position: unset; } }

body .main-content.asean-voting .section.voting .candidates .candidate.oatly-coffee-kombucha-latte-and-oatly-coffee-bar h4,
body .main-content.asean-voting .section.voting .candidates .candidate.edible-flower-plant-based-ice-cream h4 {
  font-size: 26px;
  line-height: 28px; }
  @media all and (min-width: 850px) {
    body .main-content.asean-voting .section.voting .candidates .candidate.oatly-coffee-kombucha-latte-and-oatly-coffee-bar h4,
    body .main-content.asean-voting .section.voting .candidates .candidate.edible-flower-plant-based-ice-cream h4 {
      width: 380px; } }
  @media all and (max-width: 849px) {
    body .main-content.asean-voting .section.voting .candidates .candidate.oatly-coffee-kombucha-latte-and-oatly-coffee-bar h4,
    body .main-content.asean-voting .section.voting .candidates .candidate.edible-flower-plant-based-ice-cream h4 {
      font-size: 20px;
      line-height: 22px;
      width: 350px; } }
  @media all and (max-width: 610px) {
    body .main-content.asean-voting .section.voting .candidates .candidate.oatly-coffee-kombucha-latte-and-oatly-coffee-bar h4,
    body .main-content.asean-voting .section.voting .candidates .candidate.edible-flower-plant-based-ice-cream h4 {
      width: 60%; } }
  @media all and (max-width: 400px) {
    body .main-content.asean-voting .section.voting .candidates .candidate.oatly-coffee-kombucha-latte-and-oatly-coffee-bar h4,
    body .main-content.asean-voting .section.voting .candidates .candidate.edible-flower-plant-based-ice-cream h4 {
      font-size: 16px;
      line-height: 18px; } }

@media all and (max-width: 600px) {
  .main-content #agenda-table {
    width: 90%; } }

.main-content #agenda-table .table-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .main-content #agenda-table .table-container table {
    width: 100%; }
    .main-content #agenda-table .table-container table th, .main-content #agenda-table .table-container table td {
      padding: 10px 20px;
      border: none; }
    .main-content #agenda-table .table-container table td {
      text-align: left !important; }
    .main-content #agenda-table .table-container table th {
      font-size: 28px;
      font-family: Acumin;
      font-weight: bold; }
    .main-content #agenda-table .table-container table tr td:nth-of-type(1) {
      width: 33%; }
    .main-content #agenda-table .table-container table tr:nth-child(2n) td {
      background: #fafafa; }
    .main-content #agenda-table .table-container table .speakers {
      font-size: .9em;
      font-style: italic; }

@media all and (max-width: 1399px) {
  .main-content #speakers-section {
    width: 90%; } }

.main-content #speakers-section .speakers {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .main-content #speakers-section .speakers .speaker-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    padding: 2%;
    background-color: #f2f4ef;
    color: #666;
    border-radius: 15px;
    padding: 40px 0px;
    margin-bottom: 40px;
    min-height: 310px; }
    @media all and (min-width: 1200px) {
      .main-content #speakers-section .speakers .speaker-card {
        width: 30%;
        margin: 0 1% 40px 1%; } }
    @media all and (max-width: 1199px) {
      .main-content #speakers-section .speakers .speaker-card {
        width: 45%;
        margin: 0 1% 40px 1%; } }
    @media all and (max-width: 800px) {
      .main-content #speakers-section .speakers .speaker-card {
        width: 100%; } }
    .main-content #speakers-section .speakers .speaker-card img {
      width: 90%;
      height: 340px;
      margin: 0;
      -o-object-fit: cover;
         object-fit: cover; }
    .main-content #speakers-section .speakers .speaker-card .text-content {
      width: 90%;
      margin: 10px auto 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .main-content #speakers-section .speakers .speaker-card .text-content h4 {
        margin-top: 10px;
        font-size: 26px;
        margin: 10px auto; }
      .main-content #speakers-section .speakers .speaker-card .text-content h5, .main-content #speakers-section .speakers .speaker-card .text-content h4 {
        text-align: left;
        margin: 0 auto; }
      .main-content #speakers-section .speakers .speaker-card .text-content p {
        margin: 20px auto 0 auto; }
      .main-content #speakers-section .speakers .speaker-card .text-content button {
        position: relative;
        white-space: nowrap;
        border-radius: .4em;
        padding: 0.8em 1.6em;
        font-family: Acumin;
        font-stretch: condensed;
        font-weight: 700;
        text-transform: uppercase;
        color: white;
        background-color: transparent;
        border: 0 none;
        cursor: pointer;
        min-width: 200px;
        text-align: center;
        background-color: #147c3f;
        color: white;
        margin-top: 10px; }

@media all and (min-width: 750px) {
  .main-content.culinary-conference .section p {
    width: 80%;
    margin: 0 auto; } }

.section .purchase button {
  position: relative;
  white-space: nowrap;
  border-radius: .4em;
  padding: 0.8em 1.6em;
  font-family: Acumin;
  font-stretch: condensed;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: 0 none;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  background-color: #2cc84d;
  color: white;
  margin-top: 10px; }

body .main-content.culinary-conference .participating-companies .company .company-inner .text {
  display: none; }

body .main-content.culinary-conference .participating-companies .company .company-inner .logo img {
  height: 200px;
  width: auto;
  max-width: 90%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain; }

body .main-content.culinary-conference .participating-companies .company .company-inner .logo {
  width: 100%; }

