@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 540px;
    padding: 1em 20px;
  }
}

.intro_arrow p {
  max-width: 800px;
}

.art_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px 24px;
  article {
    width: calc(50% - 12px);
    border-radius: 3px;
    background: rgba(185, 241, 255, 0.5);
    padding: 20px 28px;
  }
  article:nth-child(1) h3,
  article:nth-child(2) h3 {
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  h3 {
    color: #fff;
    background: var(--main-color);
    border-radius: 3px;
    margin-bottom: 24px;
    padding: 16px;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  figure {
    margin-top: 16px;
    width: 100%;
    height: 173px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;

    gap: 10px;
    article {
      width: 100%;
      /* width: calc(50% - 5px); */
      padding: 20px 5%;
    }
    article:nth-child(1) h3,
    article:nth-child(2) h3 {
      min-height: initial;
      display: block;
    }
    h3 {
      margin-bottom: 20px;
      font-size: 2rem;
      letter-spacing: 1px;
      padding: 16px 2.5%;
    }
    figure {
      height: auto;
      padding: 16px 5%;
    }
  }
}





.white_block {
  position: relative;
  padding: 88px 0 0;
  background: #fff;
  &::before {
    content: '';
    position: absolute;
    background: url(../img/arrow.svg)no-repeat center;
    background-size: contain;
    width: 149px;
    height: 98px;
    top: -2em;
    right: 0;
    left: 0;
    margin: auto;
  }
  h2 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 40px;
    span {
      font-size: 6.4rem;
      letter-spacing: 3.2px;
    }
  }
  @media screen and (max-width: 767px) {
    padding: 64px 0 0;
    &::before {top: -3em;}
    h2 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
      margin-bottom: 32px;
      span {
        font-size: 4.8rem;
        letter-spacing: 2.4px;
      }
    }
  }
}
.world_figure {
  position: relative;
  padding: 64px 0 645px;
  h3 {
    width: 90%;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--main-color);
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    text-align: center;
  }
  figure {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 635px;
  }
  figure img {
    height: 100%;
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 205px;
    h3 {
      font-size: 2rem;
      letter-spacing: 1px;
    }
    figure {
      height: 200px;
    }
    figure img {
      object-position: top;
      object-fit: cover;
    }
  }
}

.lightblue_block {
  padding: 80px 0;
  background: linear-gradient(133deg, #DCF8FF 7.5%, #D5FFFA 51.68%, #84C3FF 95.87%);
  h2 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    text-align: center;
    margin-bottom: 40px;
  }
  @media screen and (max-width: 767px) {
    padding: 64px 0;
    h2 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
      margin-bottom: 32px;
    }
  }
}
.lightblue_des {
  width: 100%;
  background: #fff;
  padding: 56px 64px;
  @media screen and (max-width: 767px) {
    padding: 48px 5%;
  }
}
.lightblue_des .bold_txt {
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  color: var(--main-color);
  @media screen and (max-width: 767px) {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}