.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.about-hero-section .hero-bg .img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
  mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
}
.about-hero-section .hero-bg .hero-content {
  width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10;
}
.about-hero-section .hero-bg .hero-content img {
  margin-bottom: 43px;
}
.about-hero-section .hero-bg .hero-content span {
  font-size: 96px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.about-hero-section .hero-bg .hero-content span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: #365AB9;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: -39px;
}
.about-hero-section .hero-bg .hero-content .title-butn {
  padding-top: 35px;
  display: flex;
  align-items: center;
}
.about-hero-section .hero-bg .hero-content .title-butn .title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
}
@keyframes mouse-bob {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.corporate-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 119px;
  padding-bottom: 108px;
}
.corporate-section .row-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 137px;
}
.corporate-section .row-block .text-content {
  width: 660px;
}
.corporate-section .row-block .text-content .title {
  color: #002EA6;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 35px;
}
.corporate-section .row-block .text-content .desc {
  color: #050505;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 70px;
  text-align: justify;
}
.corporate-section .row-block .text-content .desc strong {
  color: #002EA6;
  font-weight: 700;
}
.corporate-section .row-block .image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.corporate-section .row-block .image-content .circle-mask {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}
.corporate-section .row-block .image-content .circle-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.corporate-section .row-block .image-content .circle-mask.large {
  width: 450px;
  height: 450px;
}
.corporate-section .top-block .icon-list {
  display: flex;
  gap: 100px;
}
.corporate-section .top-block .icon-list .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}
.corporate-section .top-block .icon-list .icon-item:nth-child(1) .icon-box img {
  width: 68px;
  height: 68px;
}
.corporate-section .top-block .icon-list .icon-item:nth-child(2) .icon-box img {
  width: 54px;
  height: 68px;
}
.corporate-section .top-block .icon-list .icon-item:nth-child(3) .icon-box img {
  width: 52px;
  height: 68px;
}
.corporate-section .top-block .icon-list .icon-item:hover {
  transform: translateY(-5px);
}
.corporate-section .top-block .icon-list .icon-item .icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.corporate-section .top-block .icon-list .icon-item span {
  color: #002EA6;
  font-size: 16px;
  font-weight: bold;
}
.corporate-section .bottom-block .gallery-list {
  display: flex;
  gap: 100px;
}
.corporate-section .bottom-block .gallery-list .circle-mask.small {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s;
}
.corporate-section .bottom-block .gallery-list .circle-mask.small:hover {
  transform: scale(1.05);
}
.corporate-section .bottom-block .gallery-list .circle-mask.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.responsibility-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 120px;
}
.responsibility-container .main-title {
  text-align: center;
  color: #002EA6;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 90px;
  letter-spacing: 1px;
}
.responsibility-container .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.responsibility-container .card-grid .card {
  width: 630px;
  position: relative;
  height: 310px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.responsibility-container .card-grid .card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.responsibility-container .card-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: background-color 0.4s ease;
}
.responsibility-container .card-grid .card .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.responsibility-container .card-grid .card .card-content .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.responsibility-container .card-grid .card .card-content .card-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0;
  transition: transform 0.4s ease;
}
.responsibility-container .card-grid .card .card-content .card-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
  transition: all 0.5s ease;
}
.responsibility-container .card-grid .card .card-content .card-desc p {
  margin-top: 8px;
}
.responsibility-container .card-grid .card:hover .card-bg {
  transform: scale(1.1);
}
.responsibility-container .card-grid .card:hover::before {
  background-color: rgba(0, 46, 166, 0.7);
}
.responsibility-container .card-grid .card:hover .card-content .card-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 15px;
}
.mouse-scroll-icon {
  position: absolute;
  width: 25px;
  height: 35px;
  bottom: 89px;
  right: 133px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.mouse-scroll-icon .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 10px;
  background-color: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-bob 1.9s infinite ease-in-out;
}
