/* sec 01 */

section.sec01 {
  aspect-ratio: 1920/1239;
  background-image: url(/public/images/companyIntroduce-sec-01-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
section.sec01 .wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
section.sec01 .wrapper > div {
  width: 50%;
}

section.sec01 .headlineCtn {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
section.sec01 .titleCtn {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
section.sec01 .infoWrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.sec01 .infoWrapper .infoCtn {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
section.sec01 .infoWrapper .infoCtn .infoItem {
  display: flex;
  padding: 24px 34px;
  align-items: center;
  gap: 12px;
  align-self: stretch;

  border-radius: var(--br-20);
  border: 1px solid var(--c-white);
  box-shadow: 0 4px 30px 0 rgba(96, 145, 255, 0.15);
  transition: all 0.3s ease-in-out;
}
section.sec01 .infoWrapper .infoCtn .infoItem p {
  font-size: var(--fs-30);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

section.sec01 .infoWrapper .infoCtn .infoItem.active {
  background-color: var(--c-white);
}
section.sec01 .infoWrapper .infoCtn .infoItem.active p {
  color: var(--c-black-1) !important;
}

section.sec01 .infoWrapper .infoCtn .infoItem img.unActive {
  display: block;
}
section.sec01 .infoWrapper .infoCtn .infoItem img.active {
  display: none;
}
section.sec01 .infoWrapper .infoCtn .infoItem.active img.unActive {
  display: none;
}
section.sec01 .infoWrapper .infoCtn .infoItem.active img.active {
  display: block;
}

/* sec 02 */

section.sec02 {
  background-image: url(/public/images/companyIntroduce-sec-02-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.sec02 > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

/* sec 03 */

section.sec03 {
  background: var(--l-1);
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  align-items: center;
}
section.sec03 .titleCtn {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

section.sec03 .cardCtn {
  position: relative;
  width: 100%;
  padding: 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}
section.sec03 .cardCtn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  width: 100vw;
  height: 2px;
  background-image: url(/public/icons/dashed.svg);
  background-repeat: repeat-x;
  background-size: 16px 2px;
  background-position: center;
}

section.sec03 .cardCtn .cardItem {
  width: 100%;
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  border-radius: var(--br-20);
  background: var(--c-white);
  position: relative;
  overflow: visible;
}
section.sec03 .cardCtn .cardItem::before {
  display: none;
}
section.sec03 .cardCtn .cardItem::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  top: -31px;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: var(--c-blue-1);
  border-radius: 50%;
}
section.sec03 .cardCtn .cardItem .cardTitle {
  text-align: center;
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 130%;
}
section.sec03 .cardCtn .cardItem .cardDesc {
  color: #787878;
  text-align: center;
  font-size: var(--fs-20-3);
  font-weight: 500;
  line-height: 150%;
}
section.sec03 .cardCtn .cardItem .cardDesc .skyblue {
  color: #4da6ff;
  text-align: center;
  font-size: var(--fs-20-3);
  font-weight: 700;
  line-height: 150%;
}

/* sec 04 */

section.sec04 {
  background-image: url(/public/images/companyIntroduce-sec-04-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
section.sec04 .cardCtn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.sec04 .cardCtn .cardItem {
  padding: 0 180px 0 120px;
  aspect-ratio: 1220/450;
  display: flex;
  flex-direction: column;
  gap: 40px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--br-30);

  justify-content: center;
}
section.sec04 .cardCtn .cardItem:first-child {
  background-image: url(/public/images/companyIntroduce-sec-04-card-01.png);
}
section.sec04 .cardCtn .cardItem:nth-child(2) {
  align-items: end;
  background-image: url(/public/images/companyIntroduce-sec-04-card-02.png);
}
section.sec04 .cardCtn .cardItem:nth-child(2) .contentCtn {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.sec04 .cardCtn .cardItem:last-child {
  background-image: url(/public/images/companyIntroduce-sec-04-card-03.png);
}
section.sec04 .cardCtn .cardItem .textCtn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.sec04 .cardCtn .cardItem .textCtn .cardTitle {
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 140%;
}
section.sec04 .cardCtn .cardItem .textCtn .checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.sec04 .cardCtn .cardItem .textCtn .checklist .checkItem {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.sec04 .cardCtn .cardItem .textCtn .checklist .checkItem p {
  color: #f3f3f3;
  font-size: var(--fs-20-3);
  font-weight: 400;
  line-height: 160%;
}

/* sec 05 */

section.sec05 {
  background-color: var(--c-bg-2);
}
section.sec05 > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
}
section.sec05 .hoverCardCtn {
  width: 100%;
  display: flex;
}
section.sec05 .hoverCardCtn .hoverCardItem {
  width: 100%;
  height: 500px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--br-30);
  overflow: hidden;

  transition: all 0.3s ease-in-out;
}

section.sec05 .hoverCardCtn .hoverCardItem:nth-child(1) {
  background-image: url(/public/images/companyIntroduce-sec-05-card-01.png);
}
section.sec05 .hoverCardCtn .hoverCardItem:nth-child(2) {
  background-image: url(/public/images/companyIntroduce-sec-05-card-02.png);
}
section.sec05 .hoverCardCtn .hoverCardItem:nth-child(3) {
  background-image: url(/public/images/companyIntroduce-sec-05-card-03.png);
}
section.sec05 .hoverCardCtn .hoverCardItem .contentCtn {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 50px 60px;

  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );

  transition: all 0.3s ease-in-out;

  opacity: 0;
}
section.sec05 .hoverCardCtn .hoverCardItem:hover {
  width: 180%;
}
section.sec05 .hoverCardCtn .hoverCardItem:hover .contentCtn {
  opacity: 1;
}
section.sec05 .hoverCardCtn .hoverCardItem .cardTitle {
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 100%;
}

@media all and (max-width: 1641px) {
  section.sec01 {
    background-position: center bottom;
  }
  section.sec01 .wrapper {
    flex-direction: column;
    gap: 60px;
  }
  section.sec01 .wrapper > div {
    width: 100%;
  }

  section.sec01 .infoWrapper .infoCtn .infoItem {
    padding: 20px 30px;
    gap: 10px;
  }

  section.sec04 .cardCtn .cardItem {
    gap: 30px;
  }
  section.sec04 .cardCtn .cardItem {
    aspect-ratio: auto;
    padding: 120px;
  }
}
@media all and (max-width: 1481px) {
  section.sec05 .hoverCardCtn {
    flex-direction: column;
  }
  section.sec05 .hoverCardCtn .hoverCardItem {
    height: 380px;
  }
  section.sec05 .hoverCardCtn .hoverCardItem:hover {
    width: 100%;
  }
  section.sec05 .hoverCardCtn .hoverCardItem img {
    width: 60px;
    aspect-ratio: 1/1;
  }
}
@media all and (max-width: 1199px) {
  section.sec01 .infoWrapper .infoCtn .infoItem {
    padding: 16px 24px;
  }
  section.sec03 .cardCtn::before {
    display: none;
  }
  section.sec03 .cardCtn .cardItem::after {
    display: none;
  }
  section.sec03 {
    gap: 60px;
  }
  section.sec03 .cardCtn {
    gap: 20px;
  }
  section.sec04 .cardCtn .cardItem {
    padding: 80px;
  }
  section.sec05 .hoverCardCtn {
    flex-direction: row;
  }
  section.sec05 .hoverCardCtn .hoverCardItem {
    aspect-ratio: 330/380;
    height: auto;
  }
  section.sec05 .hoverCardCtn .hoverCardItem img {
    width: 40px;
  }
  section.sec05 > div {
    gap: 40px;
  }
}
@media all and (max-width: 1023px) {
  section.sec01 .wrapper {
    gap: 87px;
  }
  section.sec01 .headlineCtn {
    order: 2;
    gap: 40px;
  }
  section.sec01 .headlineCtn img {
    aspect-ratio: 148/54.9;
    max-height: 80px;
  }
  section.sec01 .infoWrapper {
    order: 1;
  }
  section.sec01 .infoWrapper .titleCtn {
    align-items: start;
  }
  section.sec01 .infoWrapper {
    gap: 24px;
  }
  section.sec01 .titleCtn {
    gap: 12px;
  }
  section.sec01 .infoWrapper .infoCtn {
    gap: 12px;
  }
  section.sec03 .cardCtn {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  section.sec03 .cardCtn .cardItem {
    padding: 30px;
    gap: 10px;
  }
  section.sec04 .cardCtn .cardItem {
    padding: 60px;
  }
  section.sec04 .cardCtn .cardItem .textCtn {
    gap: 16px;
  }
  section.sec04 .cardCtn .cardItem .textCtn .checklist {
    gap: 12px;
  }
  section.sec04 .cardCtn .cardItem .textCtn .checklist .checkItem img {
    width: 20px;
    aspect-ratio: 1/1;
  }
}
@media all and (max-width: 767px) {
  section.sec01 {
    aspect-ratio: 375 / 840;
  }
  section.sec01 .infoWrapper .infoCtn .infoItem {
    gap: 10px;
  }
  section.sec01 .infoWrapper .infoCtn .infoItem img {
    width: 30px;
    aspect-ratio: 1/1;
  }
  section.sec01 .infoWrapper .infoCtn .infoItem p {
    font-size: 16px;
  }

  section.sec03 .titleCtn {
    gap: 12px;
  }
  section.sec04 .cardCtn .cardItem .textCtn .cardTitle {
    font-size: 20px;
    white-space: nowrap;
  }
  section.sec05 .hoverCardCtn .hoverCardItem .contentCtn {
    opacity: 1;
  }
}
@media all and (max-width: 641px) {
  section.sec02 {
    background-image: url(/public/images/companyIntroduce-sec-02-bg-mo.png);
    background-position: center;
    aspect-ratio: 375/583;
  }
  section.sec02 > div {
    justify-content: start;
  }
  section.sec04 .cardCtn .cardItem {
    padding: 40px;
  }
  section.sec04 .cardCtn .cardItem {
    aspect-ratio: 335/429;
    justify-content: start;
  }
  section.sec04 .cardCtn .cardItem:first-child {
    background-image: url(/public/images/companyIntroduce-sec-04-card-01-mo.png);
  }
  section.sec04 .cardCtn .cardItem:nth-child(2) {
    align-items: start;
    background-image: url(/public/images/companyIntroduce-sec-04-card-02-mo.png);
  }
  section.sec04 .cardCtn .cardItem:last-child {
    background-image: url(/public/images/companyIntroduce-sec-04-card-03-mo.png);
  }
  section.sec03 {
    gap: 40px;
  }
}
@media all and (max-width: 481px) {
  section.sec01 .infoWrapper .infoCtn .infoItem {
    padding: 12px 16px;
    gap: 10px;
  }
  section.sec01 .infoWrapper .infoCtn .infoItem p {
    font-size: 14px;
  }

  section.sec01 .headlineCtn img {
    max-height: 54px;
  }
  section.sec03 {
    gap: 30px;
  }
  section.sec04 .cardCtn .cardItem {
    padding: 40px 45px 40px 24px;
  }
  section.sec04 .cardCtn .cardItem .textCtn .checklist {
    gap: 7px;
  }
  section.sec05 > div {
    gap: 30px;
  }
}
