.container {
  padding: 20px 0;
}

.container h3 {
  overflow: visible;
}

.container ul {
  overflow-x: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 30vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.jumbotron::after {
  content: "";
  background-color: rgba(0, 51, 21, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 30vw;
}

.jumbotron .title-font-size {
  position: relative;
  color: white;
  font-size: 3rem;
  z-index: 50;
  font-weight: 600;
  padding: 5px;
  text-shadow: 0 0 6px black;
}

.custom-tab-title {
  color: #018a3a;
  font-size: 18px;
  font-weight: 500;
}

.custom-tab-title:hover {
  color: #014d20;
  text-shadow: 0 0 1px green;
}

.max-w-1200 {
  width: 100vw;
  max-width: 1200px;
}

.global-news-header-image {
  width: 100%;
}

.global-news-tab {
  margin-top: 1rem;
  min-height: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0rem 1rem;
  padding-top: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.global-news-tab-head {
  width: 6.5rem;
  position: relative;
  min-height: 12rem;
}

.global-news-tab-head-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
}

.global-news-tab-head-year {
  color: grey;
}

.global-news-tab-head-image {
  width: 25px;
}

.global-news-tab-head-overlay {
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  display: none;
}

.global-news-tab-head-overlay-year {
  background-image: url("../assets/year-icon-transparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  color: white;
  width: 100%;
}

.global-news-tab-head-overlay-description {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 12px;
  color: grey;
  line-height: 150%;
}

.global-news-tab-head-overlay:hover {
  text-decoration: none;
  cursor: pointer;
}

.line {
  width: 100%;
  border-bottom: 0.5px dashed black;
  position: absolute;
  top: 4.5rem;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-our-product {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-our-product .card {
  margin: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
          box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40%;
  position: relative;
}

.container-our-product .card img {
  width: 100%;
}

.container-our-product .card-after {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
}

.container-our-product .card::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.container-our-product .card:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.22) 0px 19px 43px;
          box-shadow: rgba(0, 0, 0, 0.22) 0px 19px 43px;
  -webkit-transform: translate3d(0px, -1px, 0px);
          transform: translate3d(0px, -1px, 0px);
}

.container-our-product .card:hover::after {
  content: "";
  background-color: rgba(66, 195, 150, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-our-product .card:hover .card-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab-container {
  width: 100%;
  min-height: 25rem;
}

.pdf-viewer {
  width: 100%;
  height: 100rem;
  margin-top: 1.5rem;
}

.container-company-branch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.container-company-branch .left-category {
  width: 25%;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-company-branch .left-category .header {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.5);
}

.container-company-branch .left-category hr {
  width: 50%;
}

.container-company-branch .left-category .detail {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.container-company-branch .left-category .detail:hover > div {
  color: green;
}

.container-company-branch .left-category .active-a > div {
  color: green;
  font-weight: bold;
}

.container-company-branch .main-content {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-company-branch .main-content .branches {
  display: none;
  width: 100%;
  position: relative;
}

.container-company-branch .main-content .branches .branch-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  padding: 10px 10px;
  border-bottom: 2px solid #72e6bd;
  margin-top: 10px;
  cursor: pointer;
}

.container-company-branch .main-content .branches .branch-head::after {
  content: "\25BC";
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  color: #018a3a;
  position: absolute;
  right: 10px;
  border: none;
}

.container-company-branch .main-content .branches .active-c::after {
  content: "\25B2";
}

.container-company-branch .main-content .branches .branch-info {
  display: none;
  margin: 5px 10px;
  font-size: 16px;
}

.container-company-branch .main-content .active-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 20px;
}
/*# sourceMappingURL=greenworldglobal.css.map */