section .inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

@media print, screen and (min-width: 1024px) {
  section .inner {
    padding: 0 20px;
  }
}
@-webkit-keyframes opening {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes opening {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  display: block;
  z-index: 10000;
  -webkit-animation: opening 1s ease forwards;
          animation: opening 1s ease forwards;
}
body::after {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  background-color: rgb(30, 60, 130);
  z-index: 9999;
}

.catch {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.catch .catch-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 20px 30px;
  z-index: 100;
}
.catch .catch-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: linear-gradient(120deg, rgba(9, 167, 235, 0.3921568627), rgba(0, 51, 255, 0.4705882353));
  z-index: -1;
  border-radius: 40px;
}
.catch .catch-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  border-radius: 30px;
}
.catch .catch-inner .list-category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.catch .catch-inner .list-category li {
  position: relative;
  padding-left: 20px;
  text-decoration: none;
  color: #286dbb;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
.catch .catch-inner .list-category li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background-image: linear-gradient(120deg, #8ACCE9, #2363A6);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.catch .catch-inner .head-wrap {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.catch .catch-inner .head-wrap .mini img {
  width: 55px;
  height: auto;
}
.catch .catch-inner .head-wrap .catch-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catch .catch-inner .head-wrap .catch-head .sub {
  font-size: 12px;
  color: var(--main-color);
  white-space: nowrap;
}
.catch .catch-inner .head-wrap .catch-head .main {
  font-size: 24px;
  font-weight: bold;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(120deg, #0D88C1, #0F246B);
}

@media print, screen and (min-width: 1024px) {
  .catch {
    height: calc(100vh - 110px);
  }
  .catch .catch-inner {
    padding: 50px 80px;
  }
  .catch .catch-inner .list-category {
    gap: 20px;
  }
  .catch .catch-inner .list-category li {
    font-size: 17px;
  }
  .catch .catch-inner .head-wrap .mini img {
    width: 75px;
    height: auto;
  }
  .catch .catch-inner .head-wrap .catch-head .sub {
    font-size: 14px;
  }
  .catch .catch-inner .head-wrap .catch-head .main {
    font-size: 38px;
  }
}
.images {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.images .item {
  position: absolute;
  width: 100%;
  height: 100%;
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 1;
}
.images .item.active {
  -webkit-animation: fadeIn 6s linear forwards;
          animation: fadeIn 6s linear forwards;
  z-index: 2;
}
.images .item.hide {
  -webkit-animation: scaleUp 6s linear forwards, fadeOut 2s linear forwards;
          animation: scaleUp 6s linear forwards, fadeOut 2s linear forwards;
  z-index: 3;
}
.images .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes fadeIn {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.05;
  }
}

@keyframes fadeIn {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.05;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes scaleUp {
  0% {
    scale: 1.05;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes scaleUp {
  0% {
    scale: 1.05;
  }
  100% {
    scale: 1.1;
  }
}
@-webkit-keyframes fadeInOver {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInOver {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.over {
  position: absolute;
  bottom: 10px;
  left: -20px;
  z-index: 200;
  -webkit-animation: fadeInOver 2s ease forwards 0.5s;
          animation: fadeInOver 2s ease forwards 0.5s;
  opacity: 0;
}
.over .shade {
  display: flex;
  flex-direction: column;
  background-color: rgb(30, 60, 130);
  padding: 10px 20px 10px 40px;
}
.over .shade .text {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.over .shade .logo img {
  width: 130px;
  height: auto;
}

@media print, screen and (min-width: 1024px) {
  .over {
    bottom: 40px;
    left: -20px;
  }
  .over .shade {
    padding: 50px 100px;
  }
  .over .shade .text {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .over .shade .logo img {
    width: 400px;
    height: auto;
  }
}
.flex {
  display: grid;
  grid-template-columns: 1fr;
  padding: 40px 0;
}

@media print, screen and (min-width: 1024px) {
  .flex {
    grid-template-columns: 400px 1fr;
  }
}
.section-head {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--font-color);
  margin-bottom: 20px;
  gap: 10px;
}
.section-head .sub {
  font-size: 14px;
  color: var(--main-color);
}
.section-head .more {
  font-size: 16px;
  color: var(--main-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media print, screen and (min-width: 1024px) {
  .section-head {
    font-size: 40px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-bottom: 0;
    gap: 0;
  }
  .section-head .sub {
    font-size: 20px;
  }
  .section-head .more {
    font-size: 18px;
  }
}
.sdgs {
  background-color: #fff;
}

.list-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.list-works .item .link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  gap: 10px;
  color: var(--font-color);
  border: solid 1px #fff;
}
.list-works .item .link .img img {
  width: 70px;
  height: auto;
}
.list-works .item .link .title {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
}
.list-works .item .link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border: solid 1px var(--main-color);
}

@media print, screen and (min-width: 1024px) {
  .list-works {
    gap: 40px;
  }
  .list-works .item .link {
    padding: 25px;
    border-radius: 30px;
    gap: 20px;
  }
  .list-works .item .link .img img {
    width: auto;
    height: auto;
  }
  .list-works .item .link .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.sdgs .inner {
  display: flex;
}
.sdgs .inner .content {
  display: flex;
  gap: 20px;
}
.sdgs .inner .content .text {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  place-items: center start;
}
.sdgs .inner .content .text .img {
  order: 1;
}
.sdgs .inner .content .text .img img {
  width: 80px;
  height: auto;
}
.sdgs .inner .content .text .desc {
  order: 2;
}
.sdgs .inner .content .link {
  text-align: center;
  display: inline-flex;
  align-items: center;
}

@media print, screen and (min-width: 1024px) {
  .sdgs .inner .content .text {
    gap: 20px;
    grid-template-columns: 100px 1fr;
  }
  .sdgs .inner .content .text .img {
    order: 1;
  }
  .sdgs .inner .content .text .img img {
    width: 100px;
    height: auto;
  }
  .sdgs .inner .content .text .desc {
    order: 2;
  }
}