html {
  /* scrollbar-width: none; */
  /* Firefox */
}

/*background-color*/
body {
  /* overflow-x: hidden; */
  /* width: 100vw !important; */
  /* -ms-overflow-style: none; */
  /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
/*
body::-webkit-scrollbar {
    display: none;
}
*/

* {
  -ms-overflow-style: none !important;
}

:root {
  --tm-primary: #f37022;
}

/* COLOR */

.tm-primary {
  color: var(--tm-primary);
}

/* BACKGROUND COLOR */

.bg-tm-primary {
  background-color: var(--tm-primary);
}

/* FONT WEIGHT */

.font-weight-100 {
  font-weight: 100;
}
.font-weight-200 {
  font-weight: 200;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}

/* FONT SIZE */

.text-xs {
  font-size: 0.75rem; /* 12px */
  line-height: 1rem; /* 16px */
}
.text-sm {
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
}
.text-base {
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
}
.text-lg {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}
.text-xl {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
}
.text-xl {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
}
.text-2xl {
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
}
.text-3xl {
  font-size: 1.875rem; /* 30px */
  line-height: 2.25rem; /* 36px */
}
.text-4xl {
  font-size: 2.25rem; /* 36px */
  line-height: 2.5rem; /* 40px */
}
.text-5xl {
  font-size: 3rem; /* 48px */
  line-height: 1;
}

iframe {
  max-width: 100% !important;
}

.bg-primary {
  background-color: #f37022 !important;
}

.bg-primary .text-muted {
  color: #fdbc9c !important;
}

.btn-outline-primary {
  background-color: transparent !important;
  border-color: black !important;
  color: black;
  border-radius: 0 !important;
}

.btn-outline-primary:hover {
  background-color: #eb6724 !important;
  color: white !important;
  border-color: #eb6724 !important;
}

/*end of bg*/
.btn {
  border-radius: 8px;
}

.quote {
  position: absolute;
  display: block;
  height: 101px;
  font-size: 124pt;
  margin-top: -105px;
  margin-left: -50px;
  font-family: Raleway;
}

/*menu*/
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 30px;
  position: relative;
  width: 30px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .hamburger {
    transform: rotate(180deg);
    display: inline-block;
  }
}

.hamburger-line {
  background: #272727;
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
}

.hamburger:hover .hamburger-line {
  background: #777;
}

.hamburger-line-top {
  top: 3px;
}

.menu-active .hamburger-line-top {
  top: 48%;
  transform: rotate(45deg) translatey(-50%);
}

.hamburger-line-middle {
  top: 50%;
  transform: translatey(-50%);
}

.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}

.hamburger-line-bottom {
  bottom: 3px;
}

.menu-active .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translatey(50%);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    z-index: 100;
    background: #fff;
    flex-direction: column;
    padding-top: 1rem;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translatey(-100%);
    text-align: center;
  }

  .menu-active .nav-menu {
    transform: translatey(0%);
    opacity: 1;
    height: 100vh;
  }
}

.dropdown-menu {
  margin-top: -10px;
  margin-left: -90px;
  border: none !important;
  border-radius: 0 !important;
  animation: animate 0.2s ease-in-out;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

li.current_page_ancestor > a,
li.current-menu-ancestor > a {
  color: #f17123 !important;
}

li.current_page_item > a {
  color: #f17123 !important;
}

.dropdown-item:hover,
.dropdown-item a:hover {
  color: #f17123 !important;
  background-color: transparent !important;
}

.dropdown-menu a:focus {
  background-color: transparent !important;
}

.dropdown-item a {
  padding-bottom: 1rem;
}

.dropdown-item {
  text-align: center;
  padding-bottom: 0.75rem;
}

.dropdown-item:nth-child(1) {
  padding-top: 0.25rem;
}

.dropdown-item:last-child {
  padding-bottom: 0 !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.nav {
  width: fit-content !important;
  width: -moz-fit-content !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.nav-link {
  color: black !important;
  font-size: 12pt;
  padding: 0.5rem 2rem !important;
}

.text-primary {
  color: #f17123 !important;
}

.button-shop {
  z-index: 20;
  padding: 5px 7px;
  border: transparent;
  background-color: transparent;
}

.button-shop a {
  text-decoration: none;
  color: #f17123 !important;
  font-weight: 500;
}

.button-shop:hover {
  background-color: white;
}

.nav-link:hover {
  color: #f17123 !important;
}

/*end of menu*/
/*buttons*/
.alm-btn-wrap {
  text-align: center;
}

.alm-btn-wrap button {
  padding: 7px 25px !important;
}

/* .alm-load-more-btn {
  background-image: linear-gradient(to right top,
      #f26d1e,
      #e66328,
      #d95a2f,
      #cb5134,
      #bd4a38) !important;
  background-color: #f26d1e !important;
  border: none !important;
  color: white !important;
  padding: 7px 25px !important;
  opacity: 1;
  padding-top: 1px !important;
  margin-bottom: 0px !important;
  cursor: pointer;
} */

.alm-load-more-btn {
  border: transparent !important;
  background-color: #f17123 !important;
  border: 1px solid #f17123 !important;
  color: white !important;
  padding: 7px 25px !important;
  opacity: 1;
  padding-top: 1px !important;
  margin-bottom: 0px !important;
  cursor: pointer;
}

.alm-load-more-btn.done {
  opacity: 0.2;
}

/* main .btn-primary {
  background-image: linear-gradient(to right top,
      #f26d1e,
      #e66328,
      #d95a2f,
      #cb5134,
      #bd4a38) !important;
  background-color: #f26d1e !important;
  border: none !important;
  color: white !important;
  padding: 7px 25px;
} */

main .btn-primary {
  border: transparent;
  background-color: #f17123;
  border: 1px solid #f17123;
  border: none !important;
  color: white !important;
  padding: 7px 25px;
}

main .btn-primary:hover,
main .btn-primary:not(:disabled):not(.disabled).active,
main .btn-primary:not(:disabled):not(.disabled):active,
main .show > .btn-primary.dropdown-toggle {
  color: #f76515 !important;
  background: transparent !important;
  border: 1px solid #f76515 !important;
  padding: 6px 24px !important;
}

/*end of buttons*/
main .container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.bg-gray {
  background-color: #f0f0f0 !important;
}

/*photos*/
.cover-photo {
  position: relative;
  color: black;
  width: 100%;
  height: 180px;
  background-image: linear-gradient(
    to right top,
    #f26d1e,
    #e66328,
    #d95a2f,
    #cb5134,
    #bd4a38
  );
  opacity: 0.5;
  border-radius: 10px;
}

.photo {
  width: fit-content;
  height: fit-content;
  width: -moz-fit-content;
  /*height:  -moz-fit-content;*/
  display: inline-block;
  margin-right: 20px;
}

.photo:last-child {
  margin-right: 0 !important;
}

.photo img {
  width: 180px;
  height: 180px;
  margin-top: -208px;
}

.icons img {
  width: 50px;
  border-radius: 80px;
  margin-right: 10px;
}

.icons img:last-child {
  margin-right: 0 !important;
}

/*footer*/
footer {
  padding-left: 18vw !important;
  padding-right: 18vw !important;
  padding-top: 10vh;
  background: #fff;
}
@media (max-width: 575.98px) {
  footer {
    padding-left: 10vw !important;
    padding-right: 10vw !important;
  }
}

footer p {
  color: #848688 !important;
}

footer .text-xs {
  font-size: 0.7rem;
}

footer .dark-img {
  filter: grayscale(100%);
}

footer .dark-img a {
  text-decoration: none;
}

footer .curson-pointer:hover {
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  footer .col-first {
    height: 340px;
  }
}

@media screen and (max-width: 528px) {
}

@media screen and (min-width: 993px) {
  footer .cipri_deskripsi {
    font-size: 12px;
    color: black !important;
  }
}

/*Caraousel*/
.carousel-indicators li {
  width: 10px !important;
  height: 10px !important;
  border-radius: 20px !important;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-caption {
  z-index: 2;
}

.carousel-item .title-head {
  width: fit-content;
  width: -moz-fit-content;
  border: 2px solid white;
  padding-top: 10px;
  padding-bottom: 0px;
}

.carousel-item .title-head .subtitle {
  width: fit-content;
  width: -moz-fit-content;
  border: 3px solid white;
  padding: 5px;
  background: white;
  color: #ea7f32;
  font-size: 12pt;
  display: inherit;
}

.carousel-indicators {
  bottom: -35px;
}

.carousel-indicators .active {
  background-color: #f76515 !important;
}

.carousel-indicators li {
  background-color: #f0f0f0;
}

.product-nav {
  width: 5%;
}

.product-nav .nav-button {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 4px;
  background-color: #ff9139ba;
}

.layers {
  background-color: #f3702275;
  width: 100%;
  height: 100%;
  position: absolute;
  max-height: 500px;
  overflow: hidden;
  z-index: 1;
}

/*end caraousel*/
.drop-shadow {
  -webkit-box-shadow: -2px 3px 12px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: -2px 3px 12px 0px rgba(0, 0, 0, 0.21);
  box-shadow: -2px 3px 12px 0px rgba(0, 0, 0, 0.21);
}

/*margin*/
.mt-6 {
  margin-top: 4rem !important;
}

.parallax {
  /* Set a specific height */
  height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*images*/
img {
  object-fit: cover !important;
}

.cover-image {
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*style*/
.centered-self {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*border*/
.border-top,
.border-bottom,
.border-left,
.border-right,
.border-x,
.border-y,
.border {
  border-color: #e8e9eb;
}

.border {
  border: 1px solid white !important;
}

.border-top,
.border-y {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-bottom,
.border-y {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-left,
.border-x {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-right,
.border-x {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-none {
  border: 0;
}

.outline-none {
  outline: none;
}

.border-color-primary {
  border-color: #f26d1e !important;
}

/*end border*/
/*card*/
.card-product:hover,
.thumbnail:hover {
  cursor: pointer;
  opacity: 0.5;
}

.card-product a:hover,
.no-decor {
  text-decoration: none !important;
}

.icon-categories {
  background-color: #f0f0f0 !important;
  height: 185px;
}

.mashsb-count {
  display: none !important;
}

/**/
#bwg_container1_0 #bwg_container2_0 .bwg-container-0 {
  justify-content: normal !important;
}

.__youtube_prefs__ {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.card-product .full-size {
  height: auto !important;
}

.card-product .book-thumbnail img {
  width: 100% !important;
  max-width: 255px !important;
}

/*Loading*/
.lds-ripple {
  display: inline-block;
  width: 100vw;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background: white;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #f26d1e;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  margin-left: 48vw;
  margin-top: 50vh;
}

@media only screen and (max-width: 430px) {
  .lds-ripple div {
    margin-left: 42vw;
  }
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

/*end loading*/
.bwg-thumbnails {
  justify-content: normal !important;
}

.slide-landing .carousel-item img {
  max-height: 543px !important;
}

.slide-product .carousel-item img {
  max-height: 500px !important;
}

@media only screen and (max-width: 768px) {
  main {
    margin-top: 97px;
  }

  .carousel-item img.sliderProduct {
    height: 500px !important;
  }

  .carousel-item .title-head {
    margin-top: 50px;
  }

  .carousel-caption {
    padding: 0px 10px;
  }

  .quote {
    position: initial;
    margin-top: -95px;
    text-align: center;
  }

  .ytFrame {
    max-width: 100% !important;
    height: 165px !important;
  }

  .icon-categories {
    height: 185px !important;
  }

  .icon-categories img {
    width: 90px !important;
    height: auto !important;
  }

  .icon-categories span {
    font-size: 14pt;
  }

  .card-product .image img {
    width: 100% !important;
    height: 165px !important;
  }

  .btn-subscribe {
    padding: 9px 10px !important;
    font-size: 10pt;
  }
}

.cc-revoke {
  display: none !important;
}

.menuMain {
  margin-left: 0px !important;
}

.dmopMx {
  display: none;
}

/* hero */
.wrapperHero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
}

.wrapperHero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.6;
  z-index: 1;
}

.wrapperHero::before {
  content: "";
  position: absolute;
  width: 3px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  bottom: 0;
  height: 13%;
  z-index: 2;
  background-color: white;
}

.wrapperHero .circle-logo-hero {
  top: 13%;
  z-index: 20;
}

.title-hero {
  width: 66%;
  z-index: 20;
  font-size: 45px;
  color: white !important;
}

.title-hero span,
.title-hero span span {
  font-weight: 600;
}

.hero-button-shop {
  z-index: 20;
  cursor: pointer;
  padding: 7px 14px;
  border: transparent;
  background-color: #f17123;
  border: 1px solid #f17123;
}

.hero-button-shop p {
  color: #fff;
  font-size: 14px;
  margin: 0 !important;
  font-weight: 500;
}

.hero-button-shop:hover {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .wrapperHero {
    height: 75vh;
  }

  .wrapperHero::after {
    opacity: 0.5;
  }

  .title-hero {
    width: 100%;
    z-index: 20;
    font-weight: 500;
    font-size: 26px;
    color: white !important;
  }

  .title-hero span,
  .title-hero span span {
    font-weight: 500;
  }

  .wrapperHero .circle-logo-hero {
    left: 45px;
    top: 19%;
  }

  .hero-button-shop {
    padding: 7px 25px;
  }

  .hero-button-shop p {
    font-size: 15px;
  }
}

.hero-button-shop:hover p {
  color: #f17123;
}

/* feature product */
.featured-wrapper {
  background-color: transparent !important;
  padding: 0;
  margin: 0;
  position: relative;
}

.featured-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
}

.featured-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
}

.section-header-featured {
  font-size: 30px;
  padding: 3rem 0 2rem 0;
  color: #000000;
  font-weight: 300;
}

.section-header-featured span {
  font-weight: 600;
}

#background-video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.wrapperFeatureText {
  width: 33%;
  display: flex;
  flex-direction: column;
}

.featured-button-shop {
  z-index: 20;
  cursor: pointer;
  padding: 7px 14px;
  border: 1px solid gray;
  background-color: transparent;
}

.featured-button-shop p {
  color: gray;
  font-size: 14px;
  margin: 0 !important;
  font-weight: 500;
}

.featured-button-shop:hover {
  border: 1px solid #f17123;
}

.featured-button-shop:hover p {
  color: #f17123 !important;
}

.wrapperCardFeaturedProduct {
  padding-left: 3rem;
  padding-right: 3rem;
}

.card-product-first {
  padding-left: 0;
}

.card-product-second {
  padding: 0;
}

.card-product-third {
  padding-right: 0;
}

.text-detail-featured-product {
  margin-top: 1rem;
}

.piecesImgWrapper img {
  width: 100%;
  height: 500px;
}

.wrapperCarouselProduct {
  padding: 0 3rem;
}

/* Section featured pieces */
.piecesImgWrapper {
  overflow: hidden;
  transition: all 4s ease-in;
}

.piecesImgWrapper .topImage {
  display: block;
}

.piecesImgWrapper .bottomImage {
  display: none;
}

.piecesImgWrapper:hover .topImage {
  display: none;
}

.piecesImgWrapper:hover .bottomImage {
  display: block;
}

@media screen and (max-width: 768px) {
  .wrapperFeatureText {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .wrapperCardFeaturedProduct {
    padding-left: 0;
    padding-right: 0;
  }

  .card-product-first,
  .card-product-second,
  .card-product-third {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  .piecesImgWrapper img {
    width: 100%;
    height: 100%;
  }

  .text-detail-featured-product {
    margin-top: 0.5rem;
    font-size: 20px;
    font-weight: bold;
  }

  .text-detail-featured-product small {
    color: gray;
    font-weight: normal;
    font-size: 20px;
  }

  .wrapperCarouselProduct {
    padding: 0;
  }
}

/* our-impact */
.our-impact-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: url("../images/5J6A6578_edited.jpg");
}

.our-impact-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.6;
  z-index: 0;
}

.our-impact-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
  z-index: 3;
}

.title-header-our-impact,
h2 .title-header-our-impact {
  font-size: 45px;
  color: #ffffff;
  font-weight: 300;
}

.title-header-our-impact span {
  font-weight: 600;
}

.our-impact-button-shop {
  z-index: 20;
  cursor: pointer;
  padding: 7px 14px;
  border: 1px solid white;
  background-color: transparent;
}

.our-impact-button-shop p {
  color: white;
  font-size: 14px;
  margin: 0 !important;
  font-weight: 500;
}

.our-impact-button-shop:hover {
  border: 1px solid #f17123;
}

.our-impact-button-shop:hover p {
  color: #f17123;
}

.text-detail-our-impact {
  font-size: 15px;
}

.text-header-our-impact {
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .text-detail-our-impact {
    font-size: 19px;
  }

  .wrapperCardOurImpact {
    margin-bottom: 2rem !important;
  }
}

/* floating whastapp */
.float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  box-shadow: rgba(255, 255, 255, 0.5);
}

.float img {
  width: 55px;
  height: 55px;
}

#buttonBackTop {
  display: none;
}

.slider-wr {
  width: 100%;
  height: auto;
  margin: 30px auto 0px;
}

.slider-wr .slick-prev {
  left: 15px;
  margin-top: -10px;
  z-index: 2;
}

.slider-wr .slick-next {
  right: 20px;
  margin-top: -10px;
  z-index: 2;
}

.slider-wr .slick-track {
  float: left;
}

.slider-wr .slick-prev:before {
  content: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/icons/svg/leftArrow.svg");
  filter: brightness(0) invert(1);
}

.slider-wr .slick-next:before {
  content: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/icons/svg/rightArrow.svg");
  filter: brightness(0) invert(1);
}

.wrapper-carousel {
  cursor: pointer;
  align-content: center;
  text-align: center;
  display: flex;
  margin: 0 5px;
}

.image {
  width: 100%;
  height: 200px;
  transition: transform 1s ease-in;
}

.item .overlay-slider {
  position: absolute;
  opacity: 1;
  bottom: 0;
  color: #f2f2f2;
  transition: 0.5s ease;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.overlay-slider span {
  color: white;
  font-size: 20px;
  font-weight: bolder;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.item:hover .image {
  transform: scale(1.1);
}

.item {
  position: relative;
  overflow: hidden;
}

/* about */
.about-top-image {
  position: relative;
  width: 100%;
  height: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/P4143269_edited.jpg");
}

.about-top-image span {
  z-index: 20;
}

.about-top-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.6;
  z-index: 1;
}

.bg-top-after {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-top-after::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
}

.bg-our-reason {
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/background-aset.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.bg-our-reason .img-reason {
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_5d4ac7f18fa34036bf2c012a42010de3_mv2.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.container-our-reason {
  padding: 3rem 7rem;
}

.bg-about-meaning {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-about-meaning::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
}

.bg-about-meaning::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv2.webp");
}

.font-12px {
  font-size: 12px;
}

.bg-about-partners {
  display: flex;
  margin: 0 auto;
  position: relative;
}

.bg-about-partners::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp");
}

.bg-about-partners::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp");
}

.section-about-header {
  text-transform: uppercase;
  font-size: 45px;
  color: black;
  font-weight: lighter;
}

.section-about-header span {
  color: #f17123;
  font-weight: bold;
}

/* ABOUT - custom style for award section */
.award-title {
  font-size: 20px;
  color: black;
  font-weight: normal;
  text-align: center;
}

.card-award {
  padding: 1.2rem 0.8rem;
  margin-bottom: 0.5rem;
  border: 1px solid #f17123;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex: 0 1 45%;
}

.card-award:nth-child(even) {
  margin-left: 0.5rem;
}

.card-award p {
  font-size: 16px;
  font-weight: lighter;
}

.flex-card {
  flex: 0 1 30%;
  margin: 0 1rem;
}

@media screen and (max-width: 768px) {
  .cover-image {
    margin-top: 3rem !important;
    height: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .bg-top-after::after {
    display: none;
  }

  .container-our-reason {
    padding: 2rem;
  }

  .container-our-reason h1 {
    font-size: 35px;
  }

  .bg-our-reason img {
    height: 240px !important;
  }

  .flex-card {
    flex: 0 1 100%;
    margin: 0 1rem 1rem 1rem;
  }

  .bg-about-meaning h1 {
    padding: 0px !important;
  }

  .card-award {
    flex: 0 1 100%;
  }

  .card-award:nth-child(even) {
    margin-left: 0;
  }
}

/* ABOUT - End Cutom */

/* IMPACT - custom style for define section */
.impact-define-title {
  font-size: 25px;
  color: black;
  font-weight: 400;
}

.impact-define-title span {
  color: #f17123;
  font-weight: bold;
}

.sub-impact-detail {
  font-size: 15px;
  color: black;
  font-weight: lighter;
}

.bg-our-weaping {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/5J6A6578_edited.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-our-weaping::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 26px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp");
}

.bg-our-weaping::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp");
}

.hover-white:hover {
  color: white;
  text-decoration: none;
}

.bg-impact-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_af84aba370bc477d9e82c8cba0f6e037_mv2.webp");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* impact page */

.impactPage {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_af84aba370bc477d9e82c8cba0f6e037_mv2.webp");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* impact page  */

/* IMPACT - End Cutom */

/* CAREER - custom style for define section */

.opportunity-container {
  background-color: #eeeee1;
}

.bg-together {
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/background-aset-SMALLER.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

.bg-takeit-img {
  background-image: url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/background-aset-SMALLER.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-together p {
  font-size: 15px;
  color: white;
  text-align: justify;
}

.bg-we-continue {
  background: linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.6)),
    url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_72eac89993f84b97a6bfcbad2125d3fc_mv2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .wrapper-text-together {
  padding: 2rem 4rem;
} */

.bg-we-continue h3 {
  font-weight: bold;
  color: white;
  font-size: 45px;
}

.bg-we-continue p {
  font-size: 15px;
  color: white;
  text-align: justify;
}

@media (min-width: 640px) {
  .bg-we-continue,
  .bg-together {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .bg-we-continue,
  .bg-together {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .bg-we-continue,
  .bg-together {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1280px) {
  .bg-we-continue,
  .bg-together {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
    padding-bottom: 6rem !important;
  }
}
@media (min-width: 1536px) {
  .bg-we-continue,
  .bg-together {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
    padding-bottom: 8.5rem !important;
  }
}

.open-opportunities {
  font-size: 35px;
  font-weight: 400;
}

.open-opportunities span {
  color: #f37022;
  font-weight: bold;
}

.bg-take-it {
  position: relative;
}

/* .bg-take-it::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp');
}

.bg-take-it::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_6116f64b82404cacb0a2537ce404a803_mv4.webp');
} */

.title-take-it {
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 100;
}

.title-take-it span {
  color: #f17123;
  font-weight: 500;
}

.first-wrapper-accordion {
  max-height: 187px;
  direction: rtl;
  overflow: auto;
}

.seccond-wrapper-accordion {
  direction: ltr;
}

.first-wrapper-accordion::-webkit-scrollbar {
  width: 5px;
}

.first-wrapper-accordion::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 15px;
}

.first-wrapper-accordion::-webkit-scrollbar-thumb {
  background-color: #f17123;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .bg-together {
    padding: 3rem;
  }

  .bg-together h3 {
    font-size: 23px;
  }

  .bg-together p {
    margin-bottom: 0;
    text-align: justify;
  }

  .open-opportunities {
    padding-top: 1rem;
  }

  .first-wrapper-accordion {
    max-height: none;
  }

  .wrapper-text-together {
    padding: 2rem;
  }

  .wrapper-text-together h3 {
    font-size: 23px;
  }

  .bg-we-continue {
    background: linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.7)),
      url("https://torajamelo.s3.ap-southeast-3.amazonaws.com/assets/images/others/3f7b01_72eac89993f84b97a6bfcbad2125d3fc_mv2.webp");
  }

  .title-take-it {
    font-size: 35px;
  }

  .bg-take-it::after {
    display: none;
  }

  .bg-take-it::before {
    display: none;
  }
}

/* CAREER - End Cutom */

.alm-listing div.alm-reveal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
  justify-content: center;
}

.alm-load-more-btn {
  /* background-color: #024177 !important; */
  border-radius: unset !important;
}

.card-columns {
  -webkit-column-count: unset !important;
  -moz-column-count: unset !important;
  column-count: unset !important;
}

.jumbotron-text {
  width: fit-content;
  height: fit-content;
  font-size: 45px;
  font-weight: 500 !important;
}

@media screen and (max-width: 768px) {
  .jumbotron-text {
    font-size: 35px !important;
  }
}

/* Custom cookie */

.cc-window.cc-floating {
  padding: 1em !important;
  max-width: 15em !important;
}

.rc-anchor-error-message {
  color: #f17123 !important;
}

.color-dark {
  color: #4c5359;
}

@media (min-width: 768.98px) {
  .what-we-do-card {
    margin: 0.2rem -1.1rem;
  }
}

.card-team p {
  text-align: center;
}

.card-advisors p {
  text-align: center;
}

.btn {
  border-radius: 0 !important;
}

.tm-text-primary {
  color: #f87424;
  font-weight: 700;
}
.tm-text-secondary {
  color: #446c66;
  font-weight: 700;
}

.gap-description-high {
  height: 7.5rem;
}
.gap-description-low {
  height: 5.5rem;
}
.gap-description-advisors {
  height: 6.5rem;
}

/* Detail Story */

@media only screen and (max-width: 768px) {
  .wp-image-578 {
    max-width: 100% !important;
    max-height: 400px !important;
  }
}

/* Publications */

.publication-btn {
  cursor: pointer;
  padding: 7px 14px;
  border: 1px solid #f37022;
  background: transparent;
}

.publication-btn:hover {
  border: 1px solid #f37022;
  background: #f37022;
  color: white;
}

.footer-logo-certified {
  height: 80px;
}

/* @media (min-width: 700px) {
  .footer-logo-certified {
    height: 106px;
  }
} */
