/* blocks/image-text-block/image-text-block.scss */
:root {
  --font-primary:
    "Montserrat",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    sans-serif;
  --font-secondary:
    "Montserrat",
    -apple-system,
    blinkmacsystemfont,
    "Segoe UI",
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    "Source Code Pro",
    monaco,
    consolas,
    "Courier New",
    monospace;
}
.image-text-block {
  width: 100%;
  margin: 2rem 0;
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  .image-text-block {
    margin: 60px 0;
  }
}
.image-text-block__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.image-text-block__top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .image-text-block__top-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
}
.image-text-block__top-left {
  background: -webkit-gradient(linear, right top, left top, from(#008E21), to(#00420F));
  background:
    linear-gradient(
      -90deg,
      #008E21 0%,
      #00420F 100%);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  aspect-ratio: 1/1;
}
@media screen and (min-width: 992px) {
  .image-text-block__top-left {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.image-text-block__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 1rem;
}
.image-text-block__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .image-text-block__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    margin-top: 2rem;
  }
}
.image-text-block__top-left-heading {
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .image-text-block__top-left-heading {
    margin-bottom: 2rem;
  }
}
.image-text-block__top-left-heading--notice {
  font-weight: 800;
  line-height: 1.28;
}
.image-text-block__top-left-heading--notice {
  font-size: 28px;
}
@media screen and (min-width: 450px) {
  .image-text-block__top-left-heading--notice {
    font-size: calc(28px + 12 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .image-text-block__top-left-heading--notice {
    font-size: 40px;
  }
}
.image-text-block__top-left-heading--main {
  font-weight: 500;
  line-height: 1.25;
}
.image-text-block__top-left-heading--main {
  font-size: 24px;
}
@media screen and (min-width: 450px) {
  .image-text-block__top-left-heading--main {
    font-size: calc(24px + 8 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .image-text-block__top-left-heading--main {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) {
  .image-text-block__top-left-heading--notice {
    line-height: 1.25;
  }
  .image-text-block__top-left-heading--main {
    line-height: 1;
  }
}
.image-text-block__top-left-image-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}
.image-text-block__top-left-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.image-text-block__top-right {
  background-color: #ffffff;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .image-text-block__top-right {
    width: 50%;
  }
}
.image-text-block__banner {
  background-color: #E8FFED;
  border: 1px solid #008E21;
  border-radius: 10px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 991.5px) {
  .image-text-block__banner {
    margin-top: 1rem;
  }
}
.image-text-block__banner-icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
}
.image-text-block__banner-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.image-text-block__banner-text {
  color: #008E21;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
}
.image-text-block__top-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
.image-text-block__paragraph {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.image-text-block__paragraph {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .image-text-block__paragraph {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .image-text-block__paragraph {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .image-text-block__paragraph {
    line-height: 1.4;
  }
}
.image-text-block__bottom-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .image-text-block__bottom-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
  }
}
.image-text-block__bottom-left {
  background-color: #ffffff;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .image-text-block__bottom-left {
    width: 50%;
  }
}
.image-text-block__bottom-left-heading {
  color: #00205B;
  margin: 1rem 0 1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .image-text-block__bottom-left-heading {
    margin-top: 0;
  }
}
.image-text-block__bottom-left-paragraph {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1rem;
  text-align: left;
}
.image-text-block__bottom-left-paragraph {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .image-text-block__bottom-left-paragraph {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .image-text-block__bottom-left-paragraph {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .image-text-block__bottom-left-paragraph {
    line-height: 1.4;
    text-align: center;
  }
}
.image-text-block__warning-box {
  background-color: #FFE1E1;
  border: 1px solid #D70000;
  border-radius: 10px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.image-text-block__warning-icon {
  width: 24px;
  height: 72px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
}
.image-text-block__warning-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.image-text-block__warning-text {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}
.image-text-block__warning-text {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  .image-text-block__warning-text {
    font-size: calc(16px + 4 * (100vw - 450px) / 1130);
  }
}
@media screen and (min-width: 1580px) {
  .image-text-block__warning-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .image-text-block__warning-text {
    line-height: 1.4;
  }
}
.image-text-block__bottom-right {
  background-color: #F3F3F3;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .image-text-block__bottom-right {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.image-text-block__bottom-right-image-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.image-text-block__bottom-right-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
