.background_cover {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.customer__banner {
  padding-bottom: 0;
}

.title_custumer {
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 48px;
}

.customer__banner {
  width: 100%;
  min-height: 720px;
  position: relative;
  top: 0px;
  overflow: hidden;
  background-image: url(/images/page/customer/image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: inherit;
}

.customer__banner--title {
  padding: 40px;
  position: absolute;
  top: 90px;
  left: 70px;
  z-index: 5;
  text-align: left;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  background: rgba(40, 40, 40, 0.5);
  backdrop-filter: blur(20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.customer__banner--title h2 {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}

.customer__banner--title p {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

/* SECTION LIST CUSTOMER */

.customer__branch {
  padding: 70px 0px;
}

.customer__branch .container__layout {
  padding: 0 70px;
  margin-bottom: 120px;

}

.customer__list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* .customer__list .customer__item {
  width: calc(25% - 18px);
  min-height: 400px;
  max-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-width: 267px;
}

.customer__list .customer__item img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.customer__item .customer__item--content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 24px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.customer__item .customer__item--content__background {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  inset: 0;
  transition: opacity ease-in-out var(--item-animate-time);
  opacity: 1;
}

.customer__item--content .customer__item--content-title {
  position: relative;
  z-index: 2;
  background-color: var(--main-white-color);
  border-radius: 10px;
  padding: 5px 8px;
  min-height: 24px;
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  height: min-content;
  max-width: 100%;
}

.customer__item--content .customer__item--content-title span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--light-black-color);
}

.customer__item--content .customer__item--content-text {
  height: 100%;
}

.customer__item--content .customer__item--content-text p {
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  color: var(--main-white-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
}

.customer__item--content .customer__item--content-img {
  min-height: 42px;
}

.customer__item--content .customer__item--content-img img {
  width: auto;
  height: 30px;
  object-fit: contain;
  max-width: 100%;
}

.customer__item--content
  .customer__item--content-img
  .customer__subcontent--mainlogo {
  display: block;
  width: max-content;
  height: 100%;
  padding: 6px;
  background: var(--main-white-color);
  border-radius: 8px;
  max-width: fit-content;
}

.customer__item--content
  .customer__item--content-img
  .customer__subcontent--sublogo {
  display: none;
  width: max-content;
  height: 100%;
  padding: 6px;
  background: var(--main-white-color);
  border-radius: 8px;
}

.customer__item--subcontent {
  width: 100%;
  height: 400px;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 24px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(calc(72% - 3px));
  transition: all linear 0.3s;
}


.customer__subcontent--text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--dark-black-color);
  height: 100%;
} */

/* Hover in each item */
.customer__item:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

.customer__item:hover .customer__item--content__background {
  opacity: 0;
}

.customer__item:hover .customer__item--content {
  background: none;
}

.customer__item:hover .customer__item--subcontent {
  transform: translateY(0);
  transition: all ease-in-out 0.3s;
  background: var(--main-white-color);
}

.customer__item:hover .customer__item--content-title {
  background-color: #e4eafa;
}

.customer__item:hover .customer__item--content-title span {
  color: var(--primary-color);
}

.customer__item:hover .customer__subcontent--title {
  display: block;
  height: 20px;
}

.customer__item:hover .customer__item--content .customer__item--content-img .customer__subcontent--mainlogo {
  display: none;
}

.customer__item:hover .customer__item--content .customer__item--content-img .customer__subcontent--sublogo {
  display: block;
  width: 100%;
}

@media screen and (max-width: 990px) {
  .customer__banner--title {
    left: 20px;
    width: calc(100% - 40px);
  }

  .customer__banner--title h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .customer__banner--title p {
    font-size: 16px;
    line-height: 22px;
  }

  .customer__branch .container__layout {
    padding: 0 20px;
  }

  .customer__list {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .customer__list .customer__item {
    width: calc(100% - 20px);
  }
}

.customer__branch--title {
  font-size: 45px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--dark-black-color);
}

/* OLD VERSION CUSTOMER */

.card {
  width: 363px;
  height: 400px;
  background-color: var(--white-color);
  text-align: left;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}

.card:hover .info2 {
  border: 1px solid #006ABA;
}


.thumbNail {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.thumbNail>img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.info {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 10px;
}

.cardTitle {
  width: fit-content;
  height: 50px;
  position: relative;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 10px;
  display: none;
}

.cardSubTitle {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.cardTitle>img {
  height: 100%;
}

.info .text {
  width: 283px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  display: none;
  opacity: 0;
}

.info2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      #0000004D 0%,
      #00000066 66.67%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  gap: 24px;
  border: 1px solid #d1d1d1;
  border-radius: 24px;
}

.cardSubTitle2 {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  transform: translateY(10px);
  opacity: 0;
  text-align: center;
  transition: all 0.1s ease;
}

.info2 .text2 {
  width: 283px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.1s ease;
}

.cardTitle2 {
  width: fit-content;
  height: 40px;
  position: relative;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 4px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.1s ease;
  background-color: var(--white-color);
}

.cardTitle2>img {
  height: 100%;
}

/*END OLD VERSION CUSTOMER */