.c-container {
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c-container .carousel {
  width: 100%;
  height: 100%;
  display: flex;
  max-width: 1400px;
  max-height: 550px;
  overflow: hidden;
  position: relative;
}
.c-container .carousel-item {
  visibility: visible;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  background-color: #fff;
  flex-shrink: 0;
  position: absolute;
  z-index: 0;
  transition: 0.6s all linear;
}
.c-container .carousel-item__info {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  order: 1;
  left: 0;
  margin: auto;
  padding: 0 40px;
  width: 40%;
}
.c-container .carousel-item__image {
  width: 60%;
  height: 100%;
  order: 2;
  align-self: flex-end;
  flex-basis: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}
.c-container .carousel-item__subtitle {
  font-family: "Inter", sans-serif;
  letter-spacing: 3px;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  color: #7E7E7E;
  font-weight: 700;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-in-out;
}
.c-container .carousel-item__title {
  margin: 15px 0 0 0;
  font-family: "Raleway";
  font-size: 44px;
  line-height: 45px;
  letter-spacing: 3px;
  font-weight: 700;
  color: hsl(38.2deg, 78.5%, 31%);
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}
@media (max-width: 39.9375em) {
  .c-container .carousel-item__title {
    font-size: 16px;
    line-height: 1;
  }
}
.c-container .carousel-item__description {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  margin-top: 35px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #7e7e7e;
  line-height: 22px;
  margin-bottom: 35px;
}
@media (min-width: 64em) {
  .c-container .carousel-item__description {
    font-size: 16px;
    line-height: 1.7;
  }
}
.c-container .carousel-item--1 .carousel-item__image {
  background-image: url("../images/d-receiving.jpg");
}
.c-container .carousel-item--2 .carousel-item__image {
  background-image: url("../images/d-sorting.jpg");
}
.c-container .carousel-item--3 .carousel-item__image {
  background-image: url("../images/d-spraying.jpg");
}
.c-container .carousel-item--4 .carousel-item__image {
  background-image: url("../images/d-soaking.jpg");
}
.c-container .carousel-item--5 .carousel-item__image {
  background-image: url("../images/d-breaking.jpg");
}
.c-container .carousel-item--6 .carousel-item__image {
  background-image: url("../images/d-process.jpg");
}
.c-container .carousel-item--7 .carousel-item__image {
  background-image: url("../images/d-filing.jpg");
}
.c-container .carousel-item--8 .carousel-item__image {
  background-image: url("../images/d-weighing.jpg");
}
.c-container .carousel-item--9 .carousel-item__image {
  background-image: url("../images/d-traying.jpg");
}
.c-container .carousel-item--10 .carousel-item__image {
  background-image: url("../images/d-precool.jpg");
}
.c-container .carousel-item--11 .carousel-item__image {
  background-image: url("../images/d-blast.jpg");
}
.c-container .carousel-item--12 .carousel-item__image {
  background-image: url("../images/d-vacuum.jpg");
}
.c-container .carousel-item--13 .carousel-item__image {
  background-image: url("../images/d-crates.jpg");
}
.c-container .carousel-item--14 .carousel-item__image {
  background-image: url("../images/d-cold.jpg");
}
.c-container .carousel-item__container {
  height: 100%;
  width: 100%;
}
.c-container .carousel-item__btn {
  width: 35%;
  color: #2C2C2C;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0;
  width: 35%;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}
.c-container .carousel__nav {
  position: absolute;
  right: 0;
  z-index: 2;
  background-color: #fff;
  bottom: 0;
}
.c-container .carousel__icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  fill: #5d5d5d;
}
.c-container .carousel__arrow {
  cursor: pointer;
  display: inline-block;
  padding: 11px 15px;
  position: relative;
}
.c-container .carousel__arrow:nth-child(1):after {
  content: "";
  right: -3px;
  position: absolute;
  width: 1px;
  background-color: #b0b0b0;
  height: 14px;
  top: 50%;
  margin-top: -7px;
}
.c-container .active {
  z-index: 1;
  display: flex;
  visibility: visible;
}
.c-container .active .carousel-item__subtitle,
.c-container .active .carousel-item__title,
.c-container .active .carousel-item__description,
.c-container .active .carousel-item__btn {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s all ease-in-out;
  visibility: visible;
}
.c-container .active .carousel-item__image {
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}

* {
  box-sizing: border-box;
}

body,
html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  opacity: 0.7;
}

a,
a::after,
a::before,
a:hover,
a:active,
ul,
ul::before,
ul::after,
ul:hover,
li {
  text-decoration: none;
  color: hsl(38.2deg, 78.5%, 31%);
  padding: 0;
  list-style: none;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.container {
  margin: auto;
}
@media (max-width: 39.9375em) {
  .container {
    padding: 25px 29px;
  }
}
@media (min-width: 64em) {
  .container {
    padding: 35px 60px;
  }
}

section {
  margin: auto;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 1;
  transition: 0.5s all ease;
}

.reveal .r-active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 39.9375em) {
  .hide-for-mobile {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none !important;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-tablet {
    display: none;
  }
}

@media (min-width: 40em) {
  .hide-for-tablet-andup {
    display: none !important;
  }
}

.d-none {
  display: none !important;
}

.d-unset {
  display: unset;
}

.d-flex {
  display: flex;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.justify-c-center {
  justify-content: center;
}

.align-t-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-raleway {
  font-family: "Raleway", sans-serif;
}

.opacity {
  opacity: 0.6;
}

.ps-absolute {
  position: absolute;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@-webkit-keyframes side-fade-in {
  from {
    width: 0%;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    width: 0%;
    visibility: visible;
    opacity: 0;
  }
  50% {
    width: calc(50% - 9rem);
    visibility: visible;
    opacity: 0;
  }
  to {
    width: calc(100% - 9rem);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes side-fade-in {
  from {
    width: 0%;
    visibility: hidden;
    opacity: 0;
  }
  1% {
    width: 0%;
    visibility: visible;
    opacity: 0;
  }
  50% {
    width: calc(50% - 9rem);
    visibility: visible;
    opacity: 0;
  }
  to {
    width: calc(100% - 9rem);
    visibility: visible;
    opacity: 1;
  }
}
.side-fade-in {
  -webkit-animation: side-fade-in 250ms ease-in-out forwards;
          animation: side-fade-in 250ms ease-in-out forwards;
}

.side-fade-out {
  -webkit-animation: side-fade-out 250ms ease-in-out forwards;
          animation: side-fade-out 250ms ease-in-out forwards;
}

@-webkit-keyframes side-fade-out {
  from {
    width: calc(100% - 9rem);
    visibility: visible;
    @media (min-width: 40em) {
      width: calc(100% - 12rem);
    }
  }
  99% {
    width: calc(99% - 8.9375rem);
    visibility: visible;
    opacity: 0;
    @media (min-width: 40em) {
      width: calc(99% - 11.9375rem);
    }
  }
  50% {
    width: calc(50% - 5rem);
    visibility: visible;
    opacity: 0;
    @media (min-width: 40em) {
      width: calc(50% - 8rem);
    }
  }
  to {
    width: 0;
    visibility: hidden;
  }
}

@keyframes side-fade-out {
  from {
    width: calc(100% - 9rem);
    visibility: visible;
    @media (min-width: 40em) {
      width: calc(100% - 12rem);
    }
  }
  99% {
    width: calc(99% - 8.9375rem);
    visibility: visible;
    opacity: 0;
    @media (min-width: 40em) {
      width: calc(99% - 11.9375rem);
    }
  }
  50% {
    width: calc(50% - 5rem);
    visibility: visible;
    opacity: 0;
    @media (min-width: 40em) {
      width: calc(50% - 8rem);
    }
  }
  to {
    width: 0;
    visibility: hidden;
  }
}
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  height: 50px;
  left: 0;
  right: 0;
}
@media (min-width: 64em) {
  .header {
    justify-content: center;
    height: 90px;
  }
}
.header .container {
  display: flex;
  align-items: center;
  margin: auto;
  padding: 0;
}
.header.open-menu .overlay {
  display: block;
  opacity: 0.6;
}
.header.open-menu .header__toggle > span:first-child {
  background-color: hsl(38.2deg, 78.5%, 31%);
  transform: rotate(45deg);
}
.header.open-menu .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open-menu .header__toggle > span:last-child {
  background-color: hsl(38.2deg, 78.5%, 31%);
  transform: rotate(-45deg);
}
.header__nav {
  flex: 2;
  position: relative;
  text-align: center;
}
.header__nav_menu {
  margin: 0.9375rem 0;
}
.header__nav_menu li {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  display: inline-block;
}
@media (min-width: 64em) {
  .header__nav_menu li {
    font-size: 1rem;
  }
}
.header__nav_menu li:not(:last-child) {
  margin-right: 6.25rem;
}
.header__nav_menu li a,
.header__nav_menu li a:after,
.header__nav_menu li a:before {
  display: block;
  transition: all 0.3s;
}
.header__nav_menu li a:hover {
  opacity: 0.6;
}
.header__nav_menu li a {
  position: relative;
  padding: 0 0.3125rem 0.3125rem 0.3125rem;
}
.header__nav_menu li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: hsl(49.9deg, 100%, 61.6%);
  height: 0.125rem;
}
.header__nav_menu li a:hover:after {
  width: 100%;
}
.header .logo {
  flex: 1;
}
@media (min-width: 40em) {
  .header .logo {
    padding: 5px 0 0 30px;
  }
}
.header .logo img {
  background-repeat: no-repeat;
  background-size: contain;
  width: 76px;
  height: 82px;
}
@media (min-width: 40em) {
  .header .logo img {
    width: 62px;
    height: 72px;
  }
}
.header__toggle {
  z-index: 2;
  align-items: flex-end;
  position: fixed;
  right: 1.8125rem;
  top: 1.5625rem;
}
.header__toggle > span {
  display: block;
  width: 1.625rem;
  height: 0.125rem;
  background-color: hsl(49.9deg, 100%, 61.6%);
  transition: all 300ms ease-in-out;
  transform-origin: 0.2188rem 0.0625rem;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.header__side_nav {
  z-index: 1;
  display: flex;
  flex-direction: column;
  position: fixed;
  align-items: flex-start;
  right: 0;
  margin: 0;
  top: 0;
  background-color: hsl(49.9deg, 100%, 61.6%);
  width: calc(100% - 9rem);
  bottom: 0;
  max-height: 100%;
  font-family: "Inter", sans-serif;
  padding: 6.25rem 1.875rem 0rem 1.875rem;
}
@media (min-width: 40em) {
  .header__side_nav {
    width: calc(100% - 12rem);
  }
}
.header__side_nav a {
  color: hsl(38.2deg, 78.5%, 31%);
  font-size: 1.125rem;
}
.header__side_nav a:not(:last-child) {
  padding-bottom: 0.75rem;
}
.header .bottom_logo {
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 25%;
}
.header .bottom_logo img {
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 72px;
}
.header .bottom_logo p {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(38.2deg, 78.5%, 31%);
  margin: 0.3125rem 0 0 0;
}
.header .side_logo img {
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.75rem;
  height: 5.125rem;
}

.home_space {
  height: 150px;
  content: "";
  background-color: #fff;
}
@media (max-width: 63.9375em) {
  .home_space {
    height: 60px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 39.9375em) {
  .hero {
    overflow: hidden;
  }
}
@media (max-width: 63.9375em) {
  .hero__line_bg {
    position: absolute;
    right: 0;
    bottom: 5.25rem;
    left: 0.625rem;
  }
}
@media (min-width: 64em) {
  .hero__line_bg {
    position: absolute;
    right: 1.875rem;
    top: -3.125rem;
  }
}
.hero__line_bg img {
  background-repeat: no-repeat;
  width: 35.625rem;
  height: 44.0625rem;
}
@media (min-width: 40em) {
  .hero__line_bg img {
    width: 48.5625rem;
  }
}
@media (min-width: 64em) {
  .hero__line_bg img {
    width: 62.1875rem;
    height: 40rem;
  }
}
.hero__content {
  margin: 0 auto;
  max-width: 1440px;
}
.hero__title {
  position: absolute;
  top: 1.875rem;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  left: 31%;
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (min-width: 40em) {
  .hero__title {
    top: 2.5rem;
    left: 40%;
  }
}
@media (min-width: ) {
  .hero__title h1 {
    font-size: 2.0625rem;
  }
}
@media (min-width: 64em) {
  .hero__title h1 {
    font-size: 60px;
  }
}
@media (min-width: 64em) {
  .hero__title {
    top: 5rem;
    left: 7.0625rem;
    z-index: 1;
    line-height: 1.3;
  }
}
.hero__title span {
  display: block;
  font-size: 1.25rem;
}
@media (min-width: 64em) {
  .hero__title span {
    font-size: 2.125rem;
  }
}
.hero__front_cont {
  position: absolute;
  top: 25%;
}
@media (max-width: 39.9375em) {
  .hero__front_cont {
    left: -1.8125rem;
  }
}
@media (min-width: 40em) {
  .hero__front_cont {
    right: 10.375rem;
  }
}
@media (min-width: 64em) {
  .hero__front_cont {
    right: 10.9375rem;
    top: 0.25rem;
  }
}
.hero__front_cont .yellow-shape {
  width: 28.125rem;
  height: 27.5rem;
  border-radius: 50%;
  background-color: #FFDE3B;
}
@media (min-width: 40em) {
  .hero__front_cont .yellow-shape {
    width: 30.625rem;
    height: 30rem;
  }
}
@media (min-width: 64em) {
  .hero__front_cont .yellow-shape {
    width: 28.875rem;
    height: 28.25rem;
  }
}
.hero__front_cont .durian-img {
  position: absolute;
  top: 3.0625rem;
  right: 3.0625rem;
  background-repeat: no-repeat;
  background-size: contain;
  width: 23.05rem;
  height: 23.05rem;
}
@media (min-width: 40em) {
  .hero__front_cont .durian-img {
    width: 25.55rem;
    height: 25.55rem;
  }
}
@media (min-width: 64em) {
  .hero__front_cont .durian-img {
    width: auto;
    height: 32.5rem;
    top: -0.1875rem;
    right: 0rem;
    left: 4.0625rem;
  }
}
.hero .mini_durian1 {
  background-repeat: no-repeat;
  background-size: contain;
  left: 11.5625rem;
  top: -5rem;
}
.hero .mini_durian2 {
  background-repeat: no-repeat;
  background-size: contain;
  right: 4.375rem;
  top: -5.3125rem;
}
.hero .mini_durian3 {
  background-repeat: no-repeat;
  background-size: contain;
  top: 26.875rem;
  left: 10.5625rem;
}
.hero .mini_durian4 {
  background-repeat: no-repeat;
  background-size: contain;
  top: 26.875rem;
  right: 4.625rem;
  transform: scaleX(-1);
}
.hero .mini_durian-size {
  width: 7.5rem;
  height: 7.5rem;
}

.profile {
  min-height: 100vh;
}
.profile .company_text {
  color: hsl(38.2deg, 78.5%, 31%);
}
.profile .company_desc {
  opacity: 1;
}

.timeline {
  min-height: 100vh;
  position: relative;
  background-color: #fff;
}
.timeline__content {
  width: 100%;
  height: 100%;
  display: flex;
  max-width: 1440px;
  max-height: 900px;
  overflow: hidden;
  position: relative;
}
.timeline__title {
  text-align: center;
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (min-width: 40em) {
  .timeline__title {
    font-size: 60px;
    padding: 60px 0 20px 0;
  }
}
@media (max-width: 39.9375em) {
  .timeline__title {
    font-size: 30px;
    padding: 20px 0;
  }
}
@media (min-width: 40em) {
  .timeline__years {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 39.9375em) {
  .timeline__years {
    padding-top: 50px;
  }
}
@media (min-width: 40em) {
  .timeline__item {
    padding: 0 20px;
  }
}
@media (max-width: 39.9375em) {
  .timeline__item {
    display: flex;
    flex-direction: column-reverse;
  }
}
.timeline__item .p-bot {
  margin-bottom: 30px;
}
.timeline__item .text_content {
  text-align: center;
}
@media (min-width: 40em) {
  .timeline__item .text_content {
    padding: 80px 0;
  }
}
@media (max-width: 39.9375em) {
  .timeline__item .text_content {
    padding: 20px 0;
  }
}
.timeline__item .text_content h3 {
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (min-width: 40em) {
  .timeline__item .text_content h3 {
    font-size: 35px;
  }
}
@media (min-width: 40em) {
  .timeline__item .text_content p {
    font-size: 18px;
  }
}
@media (max-width: 39.9375em) {
  .timeline__item .text_content p {
    padding: 5px 30px;
    line-height: 1.4;
  }
}
.timeline__item .circle_year {
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 63.9375em) {
  .timeline__item .circle_year {
    width: 100px;
    height: 100px;
    padding-top: 40px;
    padding-left: 30px;
  }
}
@media (min-width: 64em) {
  .timeline__item .circle_year {
    width: 155px;
    height: 155px;
    padding-top: 59px;
    padding-left: 41px;
  }
}
@media (max-width: 39.9375em) {
  .timeline__item .circle_year {
    width: 90px;
    height: 90px;
    padding-top: 34px;
    padding-left: 25px;
  }
}
@media (max-width: 63.9375em) {
  .timeline__item .circle_year p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
}
@media (min-width: 64em) {
  .timeline__item .circle_year p {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
  }
}
@media (max-width: 39.9375em) {
  .timeline__item .circle_year p {
    font-size: 16px;
    color: white;
    font-weight: 600;
  }
}
.timeline .timeline_green {
  background-color: hsl(111.5deg, 40.4%, 48%);
}
.timeline .timeline_yellow {
  background-color: hsl(49.9deg, 100%, 61.6%);
}
.timeline_point {
  bottom: 10px;
}
.timeline .dot_size {
  content: "";
}
@media (max-width: 63.9375em) {
  .timeline .dot_size {
    width: 30px;
    height: 30px;
    background-color: hsl(111.5deg, 40.4%, 48%);
    border-radius: 50%;
  }
}
@media (min-width: 64em) {
  .timeline .dot_size {
    width: 40px;
    height: 40px;
    background-color: hsl(111.5deg, 40.4%, 48%);
    border-radius: 50%;
  }
}
.timeline .time_line_cont {
  padding: 50px 0 20px 0;
  width: 100%;
}
.timeline .time_line {
  height: 18px;
}
@media (max-width: 63.9375em) {
  .timeline .time_line {
    height: 14px;
    background-color: hsl(111.5deg, 40.4%, 48%);
    margin: auto;
    max-width: 600px;
  }
}
@media (min-width: 64em) {
  .timeline .time_line {
    max-width: 1000px;
    background-color: hsl(111.5deg, 40.4%, 48%);
    margin: auto;
  }
}
.timeline .dot_color {
  background-color: hsl(38.2deg, 78.5%, 31%);
  height: 20px;
  width: 20px;
  margin-top: -15px;
  margin-left: -1px;
}
.timeline .border-line {
  border-top-width: 10px;
  border-color: hsl(38.2deg, 78.5%, 31%);
}
.timeline .t-font-color p {
  color: #000;
}
.timeline .t-year {
  font-size: 18px;
  padding: 10px 0;
}
.timeline .t-title {
  font-size: 30px;
  padding: 10px 0;
  color: hsl(38.2deg, 78.5%, 31%);
}
.timeline .t-desc {
  font-size: 20px;
  padding: 10px 0;
}

.second_timeline {
  min-height: 100vh;
  position: relative;
}
.second_timeline .years_contents {
  padding: 3.9375rem 0 0 5.5rem;
}
@media (min-width: 40em) {
  .second_timeline .years_contents {
    padding: 7.1875rem 0 0 14.6875rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .years_contents {
    padding: 13.5625rem 0 0 27.5625rem;
  }
}
.second_timeline .year_number {
  left: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(38.2deg, 78.5%, 31%);
  padding: 0.625rem 0 0 0.5625rem;
}
@media (min-width: 40em) {
  .second_timeline .year_number {
    padding-left: 5.625rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .year_number {
    font-size: 2.5rem;
    padding-left: 10.625rem;
  }
}
.second_timeline .year_2015 {
  padding-top: 15rem;
}
@media (min-width: 64em) {
  .second_timeline .year_2015 {
    padding-top: 16.25rem;
  }
}
.second_timeline .year_2016 {
  padding-top: 30.4375rem;
}
@media (min-width: 40em) {
  .second_timeline .year_2016 {
    padding-top: 31.125rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .year_2016 {
    padding-top: 33.375rem;
  }
}
.second_timeline .year_2018 {
  padding-top: 53.375rem;
}
@media (min-width: 64em) {
  .second_timeline .year_2018 {
    padding-top: 55.1875rem;
  }
}
.second_timeline .year_2019 {
  padding-top: 69.3125rem;
}
@media (min-width: 64em) {
  .second_timeline .year_2019 {
    padding-top: 81.375rem;
  }
}
.second_timeline .line_width {
  width: 1.5625rem;
}
@media (min-width: 40em) {
  .second_timeline .line_width {
    width: 2.5rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .line_width {
    width: 4.375rem;
  }
}
.second_timeline .line_bar_cont {
  background-color: #e5e5e5;
  top: 4rem;
  left: 4rem;
}
@media (min-width: 40em) {
  .second_timeline .line_bar_cont {
    left: 10.25rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .line_bar_cont {
    top: 11.5rem;
    left: 24.25rem;
  }
}
.second_timeline .line_2015 {
  background-color: #FFF4C0;
  height: 12.8125rem;
}
@media (min-width: 64em) {
  .second_timeline .line_2015 {
    height: 16.5rem;
  }
}
.second_timeline .line_bar_venturing {
  height: 14.625rem;
  background-color: #FFEE9B;
}
.second_timeline .line_bar_2016 {
  background-color: #F4DE6E;
  height: 21.5625rem;
}
@media (min-width: 64em) {
  .second_timeline .line_bar_2016 {
    height: 21.3125rem;
  }
}
.second_timeline .line_bar_2018 {
  background-color: #FFF4C0;
  height: 18.5rem;
}
@media (min-width: 64em) {
  .second_timeline .line_bar_2018 {
    height: 24.875rem;
  }
}
.second_timeline .line_bar_2019 {
  background-color: #F3CA00;
  height: 13.9375rem;
}
@media (min-width: 64em) {
  .second_timeline .line_bar_2019 {
    height: 24.375rem;
  }
}
.second_timeline .years_item_venturing {
  padding-top: 7rem;
}
@media (min-width: 40em) {
  .second_timeline .years_item_venturing {
    padding-top: 11.875rem;
  }
}
.second_timeline .years_vh {
  min-height: 100vh;
}
.second_timeline .years_item_2016 {
  padding-top: 8.5625rem;
}
@media (min-width: 40em) {
  .second_timeline .years_item_2016 {
    padding-top: 11.875rem;
  }
}
.second_timeline .years_item_2018 {
  padding-top: 9rem;
}
@media (min-width: 40em) {
  .second_timeline .years_item_2018 {
    padding-top: 18.125rem;
  }
}
@media (min-width: 64em) {
  .second_timeline .years_item_2018 {
    padding-top: 15.875rem;
  }
}
.second_timeline .years_item_2019 {
  padding-top: 9.1875rem;
}
@media (min-width: 40em) {
  .second_timeline .years_item_2019 {
    padding-top: 11.5625rem;
    min-height: 100vh;
  }
}
@media (min-width: 64em) {
  .second_timeline .years_item_2019 {
    padding-top: 21.25rem;
  }
}
.second_timeline .years_title .years_sub {
  color: hsl(38.2deg, 78.5%, 31%);
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.4375rem;
}
@media (min-width: 64em) {
  .second_timeline .years_title .years_sub {
    font-size: 1.875rem;
  }
}
.second_timeline .years_title .years_desc {
  font-size: 1rem;
}
@media (min-width: 64em) {
  .second_timeline .years_title .years_desc {
    font-size: 1.25rem;
  }
}

.mission {
  position: relative;
  min-height: 100vh;
  background-color: #fff;
}
.mission__content {
  padding-top: 5.625rem;
  background-color: #fff;
}
@media (min-width: 64em) {
  .mission__content {
    display: flex;
    flex-direction: row-reverse;
  }
}
.mission__hero_image {
  display: flex;
  justify-content: center;
}
@media (min-width: 64em) {
  .mission__hero_image {
    flex: 1;
    justify-content: flex-end;
    padding-right: 1.875rem;
  }
}
.mission__hero_image img {
  height: 18.125rem;
  width: 17.5625rem;
  border-radius: 50%;
  border: 0.3125rem dashed hsl(49.9deg, 100%, 61.6%);
  padding: 1rem;
}
@media (min-width: 64em) {
  .mission__hero_image img {
    height: 27.375rem;
    width: 26.6875rem;
  }
}
.mission__title {
  text-align: center;
}
@media (max-width: 63.9375em) {
  .mission__title {
    padding-top: 3.75rem;
  }
}
@media (min-width: 64em) {
  .mission__title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.mission__title h2 {
  font-size: 1.875rem;
  padding-bottom: 1rem;
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (min-width: 64em) {
  .mission__title h2 {
    font-size: 3.75rem;
    text-align: left;
  }
}
.mission__title p {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 64em) {
  .mission__title p {
    text-align: left;
    font-size: 1.3125rem;
    padding-right: 2.5rem;
  }
}
.mission__sub {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 63.9375em) {
  .mission__sub {
    display: none;
  }
}
.mission .mini_durian {
  padding: 0.625rem;
  transform: scaleX(-1);
}
@media (max-width: 63.9375em) {
  .mission .mini_durian {
    padding-top: 3.125rem;
  }
}
.mission .mini_durian img {
  height: 5rem;
  width: 5rem;
}
@media (min-width: 64em) {
  .mission .mini_durian img {
    height: 4.375rem;
    width: 4.375rem;
  }
}

.vision {
  position: relative;
  min-height: 100vh;
}
.vision__content {
  padding-top: 5.625rem;
}
@media (min-width: 64em) {
  .vision__content {
    display: flex;
    flex-direction: row;
  }
}
.vision__hero_image {
  display: flex;
  justify-content: center;
}
@media (min-width: 64em) {
  .vision__hero_image {
    flex: 1;
    justify-content: flex-start;
    padding-right: 1.875rem;
  }
}
.vision__hero_image img {
  height: 14.75rem;
  width: 18.125rem;
  border-radius: 3.125rem;
  border: 0.3125rem dashed #ffde3b;
  padding: 1rem;
}
@media (min-width: 64em) {
  .vision__hero_image img {
    height: 24.0625rem;
    width: 33.75rem;
  }
}
.vision__title {
  text-align: center;
}
@media (max-width: 63.9375em) {
  .vision__title {
    padding-top: 3.75rem;
  }
}
@media (min-width: 64em) {
  .vision__title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.vision__title h2 {
  font-size: 1.875rem;
  padding-bottom: 1rem;
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (min-width: 64em) {
  .vision__title h2 {
    font-size: 3.75rem;
    text-align: left;
  }
}
.vision__title p {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 64em) {
  .vision__title p {
    text-align: left;
    font-size: 1.3125rem;
    padding-right: 2.5rem;
  }
}
.vision__sub {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 63.9375em) {
  .vision__sub {
    display: none;
  }
}
.vision .mini_durian {
  padding: 0.625rem;
  transform: scaleX(-1);
}
@media (max-width: 63.9375em) {
  .vision .mini_durian {
    padding-top: 3.125rem;
  }
}
.vision .mini_durian img {
  height: 5rem;
  width: 5rem;
}
@media (min-width: 64em) {
  .vision .mini_durian img {
    height: 4.375rem;
    width: 4.375rem;
  }
}

.wwedo {
  position: relative;
  min-height: 100vh;
  padding: 100px 0;
}
@media (max-width: 39.9375em) {
  .wwedo__title {
    padding: 1.25rem 0.3125rem;
  }
}
@media (max-width: 63.9375em) {
  .wwedo__title {
    padding-bottom: 0.9375rem;
  }
}
.wwedo__title h1 {
  color: hsl(38.2deg, 78.5%, 31%);
  padding-top: 3.375rem;
  text-align: center;
  font-size: 1.875rem;
}
@media (min-width: 64em) {
  .wwedo__title h1 {
    font-size: 3.75rem;
  }
}
.wwedo__title p {
  padding: 0.625rem 0;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 40em) {
  .wwedo__title p {
    padding: 0.625rem 6.25rem;
  }
}
@media (min-width: 64em) {
  .wwedo__title p {
    padding: 0.625rem 13.75rem;
    font-size: 1.3125rem;
    line-height: 1.5;
  }
}
.wwedo__images {
  display: flex;
  justify-content: space-evenly;
  padding-top: 3.125rem;
  flex-direction: column;
}
@media (min-width: 40em) {
  .wwedo__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1875rem;
    padding: 0 1.875rem;
  }
}
@media (min-width: 64em) {
  .wwedo__images {
    display: flex;
    justify-content: space-evenly;
    padding-top: 3.125rem;
    flex-direction: row;
  }
}
.wwedo__images h5 {
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 39.9375em) {
  .wwedo__img_size:not(:last-child) {
    padding-bottom: 1.875rem;
  }
}
.wwedo__img_size img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 64em) {
  .wwedo__img_size img {
    height: 16.25rem;
  }
}

.processing {
  min-height: 100vh;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 39.9375em) {
  .processing__title {
    padding: 1.25rem 0.3125rem;
  }
}
@media (max-width: 63.9375em) {
  .processing__title {
    padding-bottom: 0.9375rem;
  }
}
.processing__title h1 {
  color: hsl(38.2deg, 78.5%, 31%);
  padding: 40px 0;
  text-align: center;
  font-size: 1.875rem;
}
@media (min-width: 64em) {
  .processing__title h1 {
    font-size: 3.75rem;
  }
}

.why_us {
  position: relative;
  min-height: 100vh;
  margin: 200px 0;
}
@media (max-width: 39.9375em) {
  .why_us {
    margin: 200px auto;
  }
}
.why_us__content {
  width: 27%;
}
.why_us__content img {
  border-radius: 0px;
}
.why_us__title h2 {
  font-size: 45px;
  color: hsl(38.2deg, 78.5%, 31%);
}
@media (max-width: 39.9375em) {
  .why_us__title h2 {
    font-size: 30px;
  }
}
.why_us__title p {
  font-size: 16px;
  color: #000;
}
@media (min-width: 64em) {
  .why_us__title p {
    font-size: 18px;
  }
}
.why_us .because {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 39.9375em) {
  .why_us .because {
    font-size: 18px;
  }
}
.why_us__text {
  text-align: center;
}

.video {
  position: relative;
  margin-bottom: 200px;
}

.footer {
  background-color: rgb(244, 219, 173);
}
.footer__plant p {
  color: #000;
}
.footer__links p {
  color: #000;
}
.footer__contact .font-rxs {
  font-size: 12px;
}
.footer__contact p {
  color: #000;
}
.footer__logo {
  width: 100px;
  height: 110px;
  margin: 35px auto;
}
.footer .logo_cont {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
}
@media (max-width: 39.9375em) {
  .footer .logo_cont {
    margin-left: 0;
  }
}
.footer p {
  color: #000;
}
.footer__b {
  border-bottom: 1px solid #000;
}
.footer__copyright {
  background-color: hsl(38.2deg, 78.5%, 31%);
}
.footer__copyright a,
.footer__copyright span {
  color: #fff;
}/*# sourceMappingURL=style.css.map */