.our-mission {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;

  .official-order {
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #d63832;
    backdrop-filter: blur(4px);
    padding: 28px;
    background-color: #d63832;

    h2,
    p {
      color: #ffffff;
    }

    h2 {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    p {
      font-weight: 400;
      font-size: 28px;
      line-height: 45px;
      letter-spacing: 0%;
    }
  }

  .our-mission-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;

    .our-missions {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 23px;
      width: 100%;
      margin: 0 auto;

      .our-mission-element {
        width: 588px;
        height: 192px;
        max-width: 588px;
        max-height: 192px;
        border-top-left-radius: 50px;
        border-bottom-right-radius: 50px;
        background: #fbfbfb;

        &:nth-of-type(1) .left {
          background: #deeafd;
        }
        &:nth-of-type(2) .left {
          background: #8a36f133;
        }
        &:nth-of-type(3) .left {
          background: #c7890b33;
        }
        &:nth-of-type(4) .left {
          background: #3ea24b33;
        }

        display: flex;
        align-items: center;
        justify-content: center;

        .our-mission-element-contents {
          display: flex;
          align-items: flex-start;
          gap: 20px;

          .left {
            min-width: 60px;
            height: 60px;
            border-radius: 6px;

            display: flex;
            align-items: center;
            justify-content: center;

            img {
              width: 24px;
              height: 24px;
            }
          }

          .right {
            width: 426px;
            min-width: 426px;
            height: 112px;

            display: flex;
            flex-direction: column;
            justify-content: space-between;

            h3 {
              font-weight: 500;
              font-size: 32px;
              line-height: 48px;
              letter-spacing: 0.28%;
              color: #212121;
            }

            p {
              font-weight: 400;
              font-size: 20px;
              line-height: 24px;
              letter-spacing: 0.15%;
              color: #616161;
            }
          }
        }
      }
    }
  }

  .our-vision,
  .prespectives {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .our-mission {
    margin-top: 20px;
    gap: 32px;

    .official-order {
      margin-top: 20px;
      padding: 24px;

      p {
        font-size: 22px;
        line-height: 36px;
      }
    }

    .our-mission-container {
      margin-top: 96px;
      gap: 48px;

      .our-mission-container-header {
        h2 {
          font-size: 44px;
          line-height: 64px;
        }

        p {
          font-size: 16px;
          line-height: 26px;
        }
      }

      .our-missions {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 20px;

        .our-mission-element {
          width: 100%;
          max-width: none;
          height: auto;
          max-height: none;
          padding: 20px;

          .our-mission-element-contents {
            align-items: flex-start;
            gap: 16px;

            .left {
              min-width: 56px;
              height: 56px;
            }

            .right {
              width: 100%;
              min-width: 0;
              height: auto;
              gap: 8px;

              h3 {
                font-size: 26px;
                line-height: 36px;
              }

              p {
                font-size: 16px;
                line-height: 24px;
              }
            }
          }
        }
      }
    }

    .our-vision,
    .prespectives {
      margin-top: 96px;

      h2 {
        font-size: 44px;
        line-height: 64px;
      }

      p {
        font-size: 16px;
        line-height: 26px;
      }
    }
  }
}

@media screen and (max-width: 450px) {
  .our-mission {
    gap: 40px !important;

    .official-order {
      margin-top: 40px !important;

      h2 {
        img {
          width: 40px !important;
          height: 40px !important;
        }

        font-size: 28px !important;
        line-height: 56px !important;
      }

      p {
        font-size: 16px !important;
        line-height: 36px !important;
      }
    }

    .our-mission-container {
      margin-top: 40px !important;

      .our-missions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;

        .our-mission-element {
          width: 100% !important;
          width: 100% !important;
          min-width: 343px !important;
          height: auto !important;
          max-height: none !important;
          padding: 20px !important;

          border-top-left-radius: 30px !important;
          border-bottom-right-radius: 30px !important;

          .our-mission-element-contents {
            gap: 15px !important;

            .left {
              min-width: 50px !important;
              height: 50px !important;

              img {
                width: 20px !important;
                height: 20px !important;
              }
            }

            .right {
              width: 100% !important;
              min-width: 0 !important;
              height: auto !important;
              gap: 8px !important;

              h3 {
                font-size: 20px !important;
                line-height: 28px !important;
              }

              p {
                font-size: 14px !important;
                line-height: 20px !important;
              }
            }
          }
        }
      }
    }

    .our-vision,
    .prespectives {
      margin-top: 40px !important;
    }
  }
}
