.right-images-section-outer {
  width: 100%;
  height: auto;
  background-color: #EDF3F5;
  display: flex;
  align-items: flex-end;
}

.right-images-section-outer-blue {
  background-color: #EDF3F5;
}

.right-images-section-outer-white {
  background-color: white;
}

.right-images-section-container {
  width: 1000px;
  margin: auto;
  padding: 60px 0px;
  display: grid;
  grid-template-areas:
    "title title"
    "text imgbox";
  gap: 40px;
}

.right-images-section-title {
  grid-area: title;
  height: 50px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 50.4px;
  color: #333333;
}

.right-images-section-imgbox {
  grid-area: imgbox;
  width: 580px;
  height: 400px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  float: left;
}

.right-images-section-img {
  width: 500px;
  height: 360px;
  margin-left: 40px;
  border-radius: 10px 100px 10px 10px;
}

.right-images-section-box {
  width: 300px;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 40px;
  margin-top: -165px;
}

.right-images-section-text {
  grid-area: text;
  width: 380px;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #333333;
  float: left;
}

@media screen and (max-width: 768px) {
  .right-images-section-container {
    width: auto;
    height: auto;
    grid-template-areas:
      "title"
      "text"
      "imgbox";
    gap: 30px;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .right-images-section-title {
    height: auto;
    box-sizing: border-box;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
  }

  .right-images-section-imgbox {
    width: auto;
    height: auto;
  }

  .right-images-section-img {
    width: auto;
    height: auto;
    margin-left: 20px;
    border-radius: 10px 100px 10px 10px;
  }

  .right-images-section-box {
    width: 120px;
    height: 80px;
    border-radius: 10px 20px 10px 10px;
    margin-top: -70px;
  }

  .right-images-section-text {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.6px;
    color: #333333;
    float: left;
  }
}