@font-face {
  font-family: "Acto";
  src: url("/fonts/Acto-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acto";
  src: url("/fonts/Acto-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --myGreen: #2a7d2e;
  --textColor: #585858;
  --menuTextColor: #d9d9d9;
  --menuTextColorHover: yellow;
  --bgGrayColor: #d9d9d9;
  --subMenuTextColor: #585858;
}
/* SECTION 1 ********************************************************************************************* SECTION 1 */

.section_1 {
  /* background-color: blueviolet; */
  display: flex;
  flex-direction: row;
}

@media (max-width: 960px) {
  .section_1 {
    flex-direction: column;
  }
}

.section_1_left {
  /* background-color: yellow; */
  flex: 1;
  font-size: 30px;
  color: var(--textColor);
  font-size: clamp(10px, 8vw, 25px);
  padding: clamp(15px, 4vw, 30px);
  line-height: 1.5;
  text-align: justify;
}

.section_1_left ol {
  padding-left: 50px;
}

.section_1_right {
  /* background-color: yellowgreen; */
  flex: 1;
  padding: clamp(15px, 4vw, 30px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  align-content: start;
  align-items: start;
}

.section_1_right_img_1 {
  /* background-color: blanchedalmond; */
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: left;
}

.section_1_right_img_1 img {
  width: 100%;
  height: auto;
  max-width: 362px;
  border-radius: 10px;
}

.section_1_right_img_2 {
  /* background-color: beige; */
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: left;
}
.section_1_right_img_2 img {
  width: 100%;
  height: auto;
  max-width: 362px;
  border-radius: 10px;
}

.section_1 h1 {
  background-color: var(--subMenuTextColor);
  color: var(--bgGrayColor);
  width: fit-content;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: clamp(20px, 5vw, 35px);
}

.section_1 h1:first-of-type {
  margin-top: 0;
}

.section_1 ol {
  padding-left: 50px;
}

.section_1 ol li {
  padding-bottom: 20px;
}

.section_1_warning {
  color: red;
}
