.common-banner .cover {
  background-image: url("../images/banner/about.jpg");
  background-position: right 60%;
  background-size: 100%;
}

.about-wrapper {
  width: 83%;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  padding: 30px 32% 63px 30px;
  position: relative;
  margin-bottom: 160px;
}
.about-wrapper h3 {
  color: var(--blue-500);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 990px) {
  .about-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .about-wrapper h3 {
    font-size: 20px;
  }
}
.about-wrapper P {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 36px;
}
@media (max-width: 990px) {
  .about-wrapper P {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about-wrapper P {
    font-size: 16px;
  }
}
.about-wrapper P span.mobile {
  display: none;
}
@media (max-width: 990px) {
  .about-wrapper P span.pc {
    display: none;
  }
  .about-wrapper P span.mobile {
    display: block;
  }
}
@media (max-width: 990px) {
  .about-wrapper {
    width: 100%;
    padding: 24px;
    margin-bottom: 79px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
}
.about-wrapper .fixed-pic {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  position: absolute;
  width: 56%;
  height: auto;
  bottom: 0;
  right: 0;
  transform: translate(42%, 10%);
  background-image: url("../images/about/main.jpg");
  background-size: cover;
  background-position: center;
  aspect-ratio: 0.64/1;
}
@media (max-width: 990px) {
  .about-wrapper .fixed-pic {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.58;
    transform: none;
    bottom: auto;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
}

h2.about-h2 {
  margin: 0 auto 60px;
  font-size: 48px;
  font-weight: 600;
  color: #005BAC;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
h2.about-h2::after {
  position: absolute;
  content: "";
  height: 50%;
  width: 110%;
  left: 50%;
  bottom: 0;
  background-color: #E5EFFF;
  transform: translate(-50%, 40%);
  z-index: -1;
}
@media (max-width: 1200px) {
  h2.about-h2 {
    font-size: 36px;
  }
}
@media (max-width: 990px) {
  h2.about-h2 {
    font-size: 32px;
    margin: 0 auto 36px;
  }
}
@media (max-width: 768px) {
  h2.about-h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }
  h2.about-h2 span:nth-child(2) {
    margin-top: -4px;
  }
  h2.about-h2::after {
    height: 20px;
    transform: translate(-50%, 80%);
  }
}

.vision-card {
  width: 100%;
  height: 100%;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 40px 30px 46px;
  cursor: default;
}
.vision-card .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .vision-card .top {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.vision-card .img-box {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.vision-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .vision-card .img-box {
    margin-bottom: 0px;
  }
}
.vision-card h3 {
  color: var(--blue-500);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .vision-card h3 {
    font-size: 28px;
  }
}
.vision-card p {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  text-align: justify;
}
.vision-card p.blue {
  color: #005BAC;
  justify-self: flex-end;
}
.vision-card p.mt-4 {
  margin-top: 36px;
}
@media (max-width: 990px) {
  .vision-card p.mt-4 {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .vision-card p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 1536px) {
  .vision-card {
    padding: 36px 30px;
  }
}
@media (max-width: 990px) {
  .vision-card {
    padding: 30px 25px;
  }
}

.certify-card {
  width: 100%;
  height: 100%;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px 32px 10px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 28px;
  padding: 34px 30px 30px;
  margin-bottom: 20px;
}
@media (max-width: 1536px) {
  .certify-card {
    margin-bottom: 12px;
    gap: 20px;
    padding: 32px 28px 28px;
  }
}
@media (max-width: 768px) {
  .certify-card {
    margin-bottom: 0px;
    padding: 30px 25px 30px;
  }
}
.certify-card a {
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1.41;
  border: 2px solid #d8d8d8;
}
.certify-card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.certify-card p {
  font-size: 40px;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .certify-card p {
    font-size: 20px;
  }
}

.team-wrapper {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 78px;
}
@media (max-width: 990px) {
  .team-wrapper {
    padding-top: 0px;
  }
}
.team-wrapper .team-item {
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-bottom: 68px;
}
.team-wrapper .team-item .desc {
  width: 50%;
}
.team-wrapper .team-item .img-box {
  width: 50%;
  aspect-ratio: 1.63/1;
  margin-bottom: 40px;
}
.team-wrapper .team-item .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
  padding: 0 80px;
}
.team-wrapper .team-item .desc p.number {
  color: #E5EFFF;
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 36px;
}
@media (max-width: 990px) {
  .team-wrapper .team-item .desc p.number {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .team-wrapper .team-item .desc p.number {
    font-size: 56px;
    margin-bottom: 0px;
  }
}
.team-wrapper .team-item .desc h3 {
  color: var(--blue-500);
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .team-wrapper .team-item .desc h3 {
    font-size: 22px;
  }
}
.team-wrapper .team-item .desc p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}
@media (max-width: 768px) {
  .team-wrapper .team-item .desc p {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  .team-wrapper .team-item .desc {
    padding: 0;
    gap: 16px;
  }
}
.team-wrapper .team-item .img-box {
  border-radius: 13.5px;
  position: relative;
}
.team-wrapper .team-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  position: relative;
  border-radius: 13.5px;
}
.team-wrapper .team-item .img-box .blue-squire {
  position: absolute;
  max-width: 260px;
  width: 20vw;
  aspect-ratio: 1/1;
  border-radius: 13.5px;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  background-color: #E5EFFF;
  opacity: 0.9;
}
.team-wrapper .team-item:nth-child(odd) {
  padding-right: 40px;
}
.team-wrapper .team-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 40px;
}
.team-wrapper .team-item:nth-child(even) .img-box .blue-squire {
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}
.team-wrapper .team-item:nth-child(3) {
  margin-bottom: 140px;
}
.team-wrapper .team-item:nth-child(3) .img-box .blue-squire {
  bottom: 0;
  left: 0;
  top: auto;
  transform: translate(-40%, 30%);
}
@media (max-width: 990px) {
  .team-wrapper .team-item:nth-child(3) {
    margin-bottom: 68px;
  }
}
.team-wrapper .team-item:nth-child(6) .img-box .blue-squire {
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  transform: translate(20%, 30%);
}
@media (max-width: 990px) {
  .team-wrapper .team-item {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
  }
  .team-wrapper .team-item .desc,
  .team-wrapper .team-item .img-box {
    width: 100%;
    flex: 1;
  }
  .team-wrapper .team-item:nth-child(odd) {
    flex-direction: row-reverse;
    padding: 0;
  }
  .team-wrapper .team-item:nth-child(odd) .img-box .blue-squire {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    transform: translate(30%, -30%);
    max-width: 125px;
    width: 125px;
  }
  .team-wrapper .team-item:nth-child(even) {
    flex-direction: row-reverse;
    padding: 0;
  }
  .team-wrapper .team-item:nth-child(even) .img-box .blue-squire {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    transform: translate(-30%, -30%);
    max-width: 125px;
    width: 125px;
  }
  .team-wrapper .team-item:nth-child(3) {
    margin-bottom: 30px;
  }
  .team-wrapper .team-item:nth-last-child(1) {
    margin-bottom: 0px;
  }
}

.location-wrapper {
  width: 100%;
}
.location-wrapper .location-wrapper-item {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 59px;
}
.location-wrapper .location-wrapper-item div.number {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.location-wrapper .location-wrapper-item div.number p {
  position: relative;
}
.location-wrapper .location-wrapper-item div.number p span.num {
  color: #A7C6E2;
  font-size: 140px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.1);
  font-weight: 900;
  z-index: 2;
  position: relative;
}
.location-wrapper .location-wrapper-item div.number p .blue-squire {
  position: absolute;
  width: 100px;
  aspect-ratio: 1/1;
  left: 0;
  top: 0;
  transform: translate(-50%, 0%);
  background-color: #E5EFFF;
  z-index: 1;
  border-radius: 13.5px;
}
.location-wrapper .location-wrapper-item div.card {
  flex: 1.5;
  padding: 50px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
}
.location-wrapper .location-wrapper-item div.card h3 {
  color: var(--blue-500);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 990px) {
  .location-wrapper .location-wrapper-item div.card h3 {
    font-size: 22px;
  }
}
.location-wrapper .location-wrapper-item div.card .desc {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.location-wrapper .location-wrapper-item div.card .desc .gradient-line {
  width: 6px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.location-wrapper .location-wrapper-item div.card .desc ul {
  flex: 1;
  list-style: none;
}
.location-wrapper .location-wrapper-item div.card .desc ul li {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  word-break: break-all;
  padding: 4px 0;
}
.location-wrapper .location-wrapper-item div.card .desc ul li a {
  color: black;
}
.location-wrapper .location-wrapper-item div.card .desc ul li:nth-child(1) {
  padding-top: 0;
}
.location-wrapper .location-wrapper-item div.card .desc ul li:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 990px) {
  .location-wrapper .location-wrapper-item div.card .desc ul li {
    font-size: 16px;
    padding: 3px 0;
  }
}
@media (max-width: 768px) {
  .location-wrapper .location-wrapper-item div.card .desc ul li {
    flex-direction: column;
  }
}
@media (max-width: 990px) {
  .location-wrapper .location-wrapper-item div.card .desc {
    gap: 16px;
  }
}
@media (max-width: 990px) {
  .location-wrapper .location-wrapper-item div.card {
    padding: 20px 16px 40px;
  }
}
.location-wrapper .location-wrapper-item:nth-child(even) {
  flex-direction: row-reverse;
}
.location-wrapper .location-wrapper-item:nth-child(even) div.number p .blue-squire {
  left: auto;
  right: 0;
  top: 0;
  transform: translate(50%, 0%);
}
@media (max-width: 990px) {
  .location-wrapper .location-wrapper-item {
    flex-direction: column !important;
    margin-bottom: 50px;
    gap: 12px;
  }
  .location-wrapper .location-wrapper-item div.number {
    justify-content: flex-start;
    margin-left: 20px;
  }
  .location-wrapper .location-wrapper-item div.number p span.num {
    font-size: 65px;
  }
  .location-wrapper .location-wrapper-item div.number p .blue-squire {
    width: 43px;
    transform: translate(-50%, -4%);
  }
  .location-wrapper .location-wrapper-item div.card {
    padding: 24px 22px 36px;
  }
  .location-wrapper .location-wrapper-item:nth-child(even) div.number {
    justify-content: flex-end;
  }
  .location-wrapper .location-wrapper-item:nth-child(even) div.number p span.num {
    margin-left: 0;
  }
  .location-wrapper .location-wrapper-item:nth-child(even) div.number p .blue-squire {
    left: 0;
    right: auto;
    transform: translate(-50%, -4%);
  }
}

.partner-wrapper {
  width: 100%;
  position: relative;
}
.partner-wrapper:nth-child(1) {
  margin-top: 36px;
}
.partner-wrapper .blue-squire {
  display: none;
}
.partner-wrapper .partner-wrapper-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0px;
}
.partner-wrapper .partner-wrapper-item div.card {
  width: 66%;
  padding: 46px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item div.card {
    width: 100%;
    padding: 20px 24px 30px 20px;
  }
}
.partner-wrapper .partner-wrapper-item div.card h3 {
  color: var(--blue-500);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item div.card h3 {
    font-size: 22px;
  }
}
.partner-wrapper .partner-wrapper-item div.card .desc {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.partner-wrapper .partner-wrapper-item div.card .desc .gradient-line {
  width: 6px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.partner-wrapper .partner-wrapper-item div.card .desc ul,
.partner-wrapper .partner-wrapper-item div.card .desc p {
  width: 70%;
  list-style: none;
  position: relative;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  word-break: break-all;
  text-align: justify;
}
.partner-wrapper .partner-wrapper-item div.card .desc ul .blue-squire,
.partner-wrapper .partner-wrapper-item div.card .desc p .blue-squire {
  position: absolute;
  width: 145px;
  aspect-ratio: 1/1;
  background-color: #E5EFFF;
  right: 33%;
  top: -10%;
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item div.card .desc ul,
  .partner-wrapper .partner-wrapper-item div.card .desc p {
    font-size: 16px;
    line-height: 30px;
  }
}
.partner-wrapper .partner-wrapper-item div.card .lg-show {
  display: none;
  width: 100%;
  border-radius: 9px 49.5px 9px 49.5px;
  margin-top: 20px;
  aspect-ratio: 1.59/1;
}
.partner-wrapper .partner-wrapper-item div.card .lg-show img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 9px 49.5px 9px 49.5px;
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item div.card .lg-show {
    display: block;
  }
}
.partner-wrapper .partner-wrapper-item .img-box {
  width: 50%;
  align-self: flex-end;
  box-shadow: 0px 0px 6px gray;
  border-radius: 9px 49.5px 9px 49.5px;
  z-index: 2;
  transform: translateY(-50%);
  aspect-ratio: 1.59/1;
  position: relative;
}
.partner-wrapper .partner-wrapper-item .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 9px 49.5px 9px 49.5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  position: relative;
}
.partner-wrapper .partner-wrapper-item .img-box .inner-blue-squire {
  position: absolute;
  width: 145px;
  aspect-ratio: 1/1;
  right: 0;
  top: 0;
  transform: translate(40%, -40%);
  background-color: #E5EFFF;
  border-radius: 16px;
}
.partner-wrapper .partner-wrapper-item .img-box .inner-blue-squire.two {
  width: 60px;
  right: auto;
  top: auto;
  left: 0;
  bottom: 0;
  transform: translate(-600%, -20%);
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item .img-box {
    display: none;
  }
}
@media (max-width: 990px) {
  .partner-wrapper .partner-wrapper-item {
    margin-bottom: 40px;
  }
}
.partner-wrapper:nth-child(2) {
  margin-top: -96px;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item {
  align-items: flex-end;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item div.card {
  padding-right: 36px;
  padding-left: 140px;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item div.card h3 {
  width: 85%;
  margin: 0 0 24px auto;
  text-align: start !important;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item div.card .desc {
  justify-content: flex-end;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item div.card .desc p {
  width: 82%;
}
.partner-wrapper:nth-child(2) .partner-wrapper-item .img-box {
  align-self: flex-start;
  transform: translate(0%, -50%);
}
.partner-wrapper:nth-child(2) .partner-wrapper-item .img-box .inner-blue-squire {
  right: auto;
  left: 0;
  width: 240px;
  transform: translate(-40%, -40%);
}
.partner-wrapper:nth-child(2) .partner-wrapper-item .img-box.two {
  width: 30%;
  align-self: center;
  transform: translate(40%, -145%);
}
@media (max-width: 990px) {
  .partner-wrapper:nth-child(2) {
    margin-top: 0px;
  }
}
.partner-wrapper:nth-child(3) {
  margin-top: -200px;
}
.partner-wrapper:nth-child(3) .partner-wrapper-item .img-box .inner-blue-squire.two {
  left: auto;
  right: 0;
  transform: translate(200%, -20%);
}
@media (max-width: 1200px) {
  .partner-wrapper:nth-child(3) {
    margin-top: -180px;
  }
}
@media (max-width: 990px) {
  .partner-wrapper:nth-child(3) {
    margin-top: 0px;
  }
  .partner-wrapper:nth-child(3) .blue-squire {
    width: 160px;
  }
  .partner-wrapper:nth-child(3) .blue-squire.two {
    width: 60px;
  }
}
.partner-wrapper:nth-child(4) {
  margin-top: -96px;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item {
  align-items: flex-end;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item div.card {
  padding-right: 36px;
  padding-left: 140px;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item div.card h3 {
  width: 85%;
  margin: 0 0 24px auto;
  text-align: start !important;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item div.card .desc {
  justify-content: flex-end;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item div.card .desc p {
  width: 82%;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item .img-box {
  align-self: flex-start;
  transform: translate(0%, -50%);
}
.partner-wrapper:nth-child(4) .partner-wrapper-item .img-box .inner-blue-squire {
  width: 60px;
  transform: translate(-120%, -40%);
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
}
.partner-wrapper:nth-child(4) .partner-wrapper-item .img-box .inner-blue-squire.two {
  width: 100px;
  right: 0;
  left: auto;
  transform: translate(600%, 20%);
}
.partner-wrapper:nth-child(4) .blue-squire {
  position: absolute;
  left: 30%;
  top: 0;
  width: 300px;
  aspect-ratio: 1/1;
  background-color: #E5EFFF;
  border-radius: 16px;
  display: block !important;
  transform: translate(-50%, -30%);
}
@media (max-width: 1200px) {
  .partner-wrapper:nth-child(4) .blue-squire {
    width: 200px;
    transform: translate(-50%, 10%);
  }
}
@media (max-width: 990px) {
  .partner-wrapper:nth-child(4) {
    margin-top: 0px;
  }
  .partner-wrapper:nth-child(4) .blue-squire {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    width: 100px;
    transform: translate(50%, 50%);
  }
}
@media (max-width: 990px) {
  .partner-wrapper {
    margin-bottom: 60px;
    margin-top: 0px;
  }
  .partner-wrapper .partner-wrapper-item .card {
    padding: 24px !important;
  }
  .partner-wrapper .partner-wrapper-item .card h3 {
    width: 100%;
    padding-left: 0 !important;
    text-align: start !important;
    margin: 0 0 24px 0 !important;
  }
  .partner-wrapper .partner-wrapper-item .card .desc {
    justify-content: flex-start !important;
  }
  .partner-wrapper .partner-wrapper-item .card .desc P {
    width: 100% !important;
  }
  .partner-wrapper .blue-squire {
    display: block;
    position: absolute;
    width: 60px;
    aspect-ratio: 1/1;
    right: 0;
    top: 0;
    transform: translate(40%, -40%);
    background-color: #E5EFFF;
    border-radius: 16px;
    opacity: 0.9;
  }
  .partner-wrapper .blue-squire.two {
    width: 160px;
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(-20%, 20%);
  }
}

.news-wrapper {
  margin-bottom: 46px;
}

.news-card {
  width: 100%;
  border-radius: 13.5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.news-card a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: white;
  gap: 16px;
  padding-bottom: 26px;
}
.news-card a .img-box {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
}
.news-card a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-card a p.date {
  padding: 0px 13px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  font-weight: 500;
  font-size: 20px;
}
.news-card a p.date span.gradient-line {
  display: inline-block;
  width: 4px;
  background-image: linear-gradient(180deg, #00D0DD, #005BAC);
}
.news-card a p.date span {
  color: var(--blue-500);
}
@media (max-width: 768px) {
  .news-card a p.date {
    font-size: 16px;
  }
}
.news-card a p.caption {
  padding: 0px 26px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  text-align: start;
  word-break: break-all;
  color: black;
}
@media (max-width: 768px) {
  .news-card a p.caption {
    font-size: 18px;
  }
}
.news-card a:hover .img-box img {
  filter: brightness(0.5);
}
.news-card a:hover p.caption {
  color: var(--blue-500);
}

.card-wrapper {
  margin-bottom: 33px !important;
}
@media (max-width: 768px) {
  .card-wrapper {
    font-size: 24px !important;
  }
}

.news-detail-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 14px;
  padding: 40px 45px;
  background-color: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  border-radius: 9px 49.5px 9px 49.5px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .news-detail-wrapper {
    padding: 20px 20px 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    gap: 0;
  }
}
.news-detail-wrapper h3.news-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-500);
}
@media (max-width: 768px) {
  .news-detail-wrapper h3.news-title {
    font-size: 20px;
    font-weight: 600;
  }
}
.news-detail-wrapper span.date {
  color: #7A7F84;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-detail-wrapper span.date {
    margin-bottom: 30px;
  }
}
.news-detail-wrapper .htmlBox .img-box {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.news-detail-wrapper .htmlBox .img-box .img-item {
  width: 50%;
  max-width: 50%;
  flex: 1;
  aspect-ratio: 1.52/1;
  border-radius: 9px;
  overflow: hidden;
  gap: 36px;
}
.news-detail-wrapper .htmlBox .img-box .img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .news-detail-wrapper .htmlBox .img-box {
    flex-direction: column;
    gap: 20px;
  }
  .news-detail-wrapper .htmlBox .img-box .img-item {
    width: 100%;
    max-width: 100%;
  }
}
.news-detail-wrapper .htmlBox img {
  max-width: 100%;
}
.news-detail-wrapper a.blue {
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
}
.news-detail-wrapper a.blue img {
  width: 12px;
  transform: scale(0.9);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .news-detail-wrapper a.blue img {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .news-detail-wrapper a.blue {
    gap: 3px;
  }
}
.news-detail-wrapper a.blue.sm {
  font-size: 18px;
}
@media (max-width: 768px) {
  .news-detail-wrapper a.blue.sm {
    font-size: 16px;
  }
}
.news-detail-wrapper a.blue.start {
  align-self: flex-start;
}
.news-detail-wrapper a.blue.big {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-detail-wrapper a.blue.big {
    font-size: 16px;
  }
}
.news-detail-wrapper a.blue.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.news-detail-wrapper .btn-box {
  border-top: 1px solid #7A7F84;
  margin-top: 44px;
  padding: 44px 0 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .news-detail-wrapper .btn-box {
    margin-top: 30px;
    padding: 30px 0 0;
  }
}/*# sourceMappingURL=about.css.map */