/* styling of mental_network */
.mental_network_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f1f1f1;
  margin-top: 4rem;
}

/* styling section one */
.mental_network_container_section_one {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95%;
  margin: auto;
  gap: 0.5rem;
}

.mental_network_container_section_one_h2_tag {
  color: #31ac54;
  font-weight: 700;
  font-size: larger;
  line-height: 1.2;
}

.mental_network_container_section_one_p_tag {
  color: #122742;
  font-weight: 400;
  line-height: 1.2;
  font-size: small;
}

.mental_network_container_section_one_button {
  width: 83%;
  background: #31ac54;
  text-align: center;
  margin: auto;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
}

/* end of styling section one */

/* start section two styling */
.mental_network_container_section_two {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mental_network_container_section_two_wrapper_section {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  text-align: center;
}

.mental_network_container_section_two_wrapper_section_figure_wrapper {
  width: 100%;
}

.mental_network_container_section_two_wrapper_section_figure_wrapper_img {
  object-fit: contain;
  width: 100%;
  border-radius: 4px;
}

.mental_network_container_section_two_wrapper_section_h3_tag {
  font-weight: 700;
  font-size: large;
  color: #31ac54;
}

.mental_network_container_section_two_wrapper_section_p_tag {
  font-weight: 400;
  font-size: medium;
  color: #122742;
  line-height: 1.2;
}

/* end section two styling */

/* start of section three */
.mental_network_container_section_three {
  max-width: 2000px;
  position: relative;
  margin: auto;
  background: #dce2de;
  padding: 1rem;
  width: 90%;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.mental_network_container_section_three_sections {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem 0 2rem;
}

.mental_network_container_section_three_sections_figure {
  width: 100%;
  padding: 1rem;
}

.mental_network_container_section_three_sections_figure_img {
  object-fit: contain;
  width: 100%;
}

.mental_network_container_section_three_sections_div_section {
  display: flex;
  flex-direction: column;
}

.mental_network_container_section_three_sections_div_section_h6 {
  flex: 0.2;
  background: #92a497;
  color: #fff;
  padding: 0.5rem;
  font-weight: 400;
  text-align: center;
  font-size: medium;
  border-radius: 4px;
}

.mental_network_container_section_three_sections_div_section_quote {
  flex: 0.6;
  font-style: italic;
  font-size: medium;
  font-weight: 400;
  color: #344338;
}

.mental_network_container_section_three_sections_div_section_p {
  flex: 0.2;
  color: #344338;
  font-weight: 700;
  font-size: x-small;
  padding-top: 1rem;
}

.mental_network_container_section_three_sections_div_section_p_bold {
  font-size: small;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  background: #fff;
  border-radius: 50%;
  padding: 5px 10px;
  color: #597260;
  font-weight: bold;
  font-size: 12px;
  user-select: none;
  display: inline-block;
  transition: all 0.8s ease;
}

.prev {
  margin-left: -0.5rem;
}

.next {
  right: 0;
  margin-right: 0.5rem;
}

.fadeaway {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.dot {
  cursor: pointer;
  height: 5px;
  width: 20%;
  margin: 0 2px;
  background-color: #e3e8e5;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #fff;
}

.dot:focus {
  background: #fff;
}

.prev:hover,
.next:hover {
  background: #31ac54;
  color: #fff;
}

/* end of section three */

/* section four */

.mental_network_container_section_four {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80%;
  margin: auto;
}

.mental_network_container_section_four_h3_tag {
  font-weight: 700;
  color: #fcbc12;
  font-size: large;
}

.mental_network_container_section_four_p_tag {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  padding-bottom: 3rem;
}

.mental_network_container_section_four_divs_images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  align-items: center;
}

.mental_network_container_section_four_divs_images_figures {
  display: flex;
  flex-direction: column;
}

.mental_network_container_section_four_divs_images_figures_img {
  width: 100%;
  object-fit: contain;
  flex: 0.5;
}

.mental_network_container_section_four_divs_images_figures_caption {
  display: flex;
  flex-direction: column;
  flex: 0.5;
}

.mental_network_container_section_four_divs_images_figures_caption_h6 {
  font-weight: 700;
  font-size: small;
  line-height: 1;
}

.mental_network_container_section_four_divs_images_figures_caption_p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}

/* end of section four */

/* responsive 400 */

@media only screen and (min-width: 400px) {
  .mental_network_container_section_three {
    max-width: 500px;
  }

  .mental_network_container_section_three_sections_figure {
    width: 50%;
  }

  .mental_network_container_section_three_sections_div_section {
    align-items: center;
  }
}

/* responsive 600 */
@media only screen and (min-width: 600px) {
  .mental_network_container_section_one_h2_tag {
    font-size: x-large;
  }

  .mental_network_container_section_one_p_tag {
    font-size: medium;
  }

  .mental_network_container_section_one_button {
    width: 40%;
  }

  .mental_network_container_section_four_h3_tag {
    font-size: x-large;
  }

  .mental_network_container_section_four_p_tag,
  .mental_network_container_section_four_divs_images_figures_caption_h6 {
    font-size: medium;
  }

  .mental_network_container_section_four_divs_images_figures_caption_p {
    font-size: small;
  }

  .mental_network_container_section_four_divs_images {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 80%;
    margin: auto;
  }

  .mental_network_container_section_two {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
    width: 95%;
    gap: 0.9rem;
  }

  .mental_network_container_section_two_wrapper_section {
    width: 30%;
    height: 400px;
    margin: 0%;
  }

  .mental_network_container_section_two_wrapper_section_h3_tag {
    flex: 0.1;
    text-align: left;
  }

  .mental_network_container_section_two_wrapper_section_p_tag {
    flex: 0.3;
    text-align: left;
  }

  .mental_network_container_section_two_wrapper_section_p_tag_more_a_tag {
    flex: 0.1;
  }
}

/* responsive 700 */
@media only screen and (min-width: 700px) {
  .mental_network_container_section_three_sections_div_section_h6 {
    text-align: left;
    width: 150px;
    font-size: smaller;
    padding: 0 2px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: x-small;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: x-small;
  }

  /* .mental_network_container_section_three {
        width: 80%;
    } */
}

/* responsive 800 */
@media only screen and (min-width: 800px) {
  .mental_network_container_section_three {
    max-width: 2000px;
  }

  .mental_network_container_section_three_sections_figure {
    width: 100%;
  }

  .mental_network_container_section_three_sections_div_section {
    align-items: first baseline;
  }

  .mental_network_container_section_three_sections {
    text-align: left;
    flex-direction: row;
    gap: 1rem;
    padding: 0 4rem 0 4rem;
  }

  .mental_network_container_section_three_sections_div_section_h6 {
    text-align: left;
    width: 150px;
    font-size: smaller;
    padding: 0 2px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: small;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: smaller;
  }

  .mental_network_container_section_three_sections_figure_img {
    width: initial;
  }

  .mental_network_container_section_four {
    width: 100%;
  }
}

/* responsive 992px */
@media only screen and (min-width: 900px) {
  .mental_network_container_section_one_button {
    width: 30%;
  }

  .mental_network_container_section_three_sections {
    text-align: left;
    flex-direction: row;
    gap: 1rem;
    padding: 0 4rem 0 4rem;
  }

  .mental_network_container_section_three_sections_div_section {
    gap: 1rem;
    line-height: 1.2;
  }

  .mental_network_container_section_three_sections_div_section_h6 {
    font-size: medium;
    padding: 0 4px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: medium;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: small;
  }

  .mental_network_container_section_four_h3_tag {
    font-size: x-large;
  }

  .mental_network_container_section_four_p_tag,
  .mental_network_container_section_four_divs_images_figures_caption_h6 {
    font-size: small;
  }

  .mental_network_container_section_four_divs_images_figures_caption_p {
    font-size: small;
  }

  .mental_network_container_section_four_divs_images {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 80%;
    margin: auto;
  }

  .mental_network_container_section_three_sections_figure_img {
    width: initial;
  }

  .mental_network_container_section_two {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mental_network_container_section_two_wrapper_section {
    width: 30%;
    height: 400px;
  }

  .mental_network_container_section_two_wrapper_section_figure_wrapper {
    flex: 0.5;
  }

  .mental_network_container_section_two_wrapper_section_h3_tag {
    flex: 0.1;
  }

  .mental_network_container_section_two_wrapper_section_p_tag {
    flex: 0.3;
  }

  .mental_network_container_section_two_wrapper_section_p_tag_more_a_tag {
    flex: 0.1;
  }
}

/* responsive 1024px */
@media only screen and (min-width: 1024px) {
  .mental_network_container_section_three_sections {
    text-align: left;
    flex-direction: row;
    gap: 1rem;
    padding: 0 4rem 0 4rem;
  }

  .mental_network_container_section_three_sections_div_section {
    gap: 1rem;
    line-height: 1.8;
  }

  .mental_network_container_section_three_sections_div_section_h6 {
    width: 150px;
    text-align: center;
    font-size: small;
    padding: 0 4px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: medium;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: small;
  }

  .mental_network_container_section_three_sections_figure_img {
    width: initial;
  }
}

/* responsive 1124px */
@media only screen and (min-width: 1124px) {
  .mental_network_container_section_one_button {
    width: 20%;
  }

  .mental_network_container_section_three {
    max-width: 1500px;
  }

  .mental_network_container_section_three_sections {
    text-align: left;
    flex-direction: row;
    gap: 1rem;
    padding: 0 4rem 0 4rem;
  }

  .mental_network_container_section_three_sections_div_section {
    gap: 1rem;
    line-height: 1.8;
  }

  .mental_network_container_section_three_sections_div_section_h6 {
    width: 150px;
    text-align: center;
    font-size: medium;
    padding: 0 4px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: large;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: small;
  }

  .mental_network_container_section_three_sections_figure_img {
    width: initial;
  }
}

/* responsive 1330px */

@media only screen and (min-width: 1330px) {
  .mental_network_container_section_one_h2_tag {
    font-size: x-large;
  }

  .mental_network_container_section_one_p_tag {
    font-size: medium;
    width: 50%;
  }

  .mental_network_container_section_one_button {
    width: 18%;
  }

  .mental_network_container_section_three {
    max-width: 1000px;
  }

  .mental_network_container_section_three_sections {
    text-align: left;
    flex-direction: row;
    padding: 0 4rem 0 4rem;
  }

  .mental_network_container_section_three_sections_div_section {
    gap: 1rem;
    line-height: 1.8;
  }

  .mental_network_container_section_three_sections_div_section_h6 {
    width: 200px;
    text-align: center;
    font-size: medium;
    padding: 0 4px 0 4px;
  }

  .mental_network_container_section_three_sections_div_section_quote {
    font-size: large;
  }

  .mental_network_container_section_three_sections_div_section_p {
    font-size: small;
  }

  .mental_network_container_section_four_h3_tag {
    font-size: xx-large;
  }

  .mental_network_container_section_four_p_tag,
  .mental_network_container_section_four_divs_images_figures_caption_h6 {
    font-size: large;
  }

  .mental_network_container_section_four_divs_images_figures_caption_p {
    font-size: small;
  }

  .mental_network_container_section_four_divs_images {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    width: 80%;
    margin: auto;
  }

  .mental_network_container_section_three_sections_figure_img {
    width: initial;
  }

  .mental_network_container_section_two {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .mental_network_container_section_two_wrapper_section {
    width: 30%;
    height: 400px;
  }

  .mental_network_container_section_two_wrapper_section_figure_wrapper {
    flex: 0.5;
  }

  .mental_network_container_section_two_wrapper_section_h3_tag {
    flex: 0.1;
  }

  .mental_network_container_section_two_wrapper_section_p_tag {
    flex: 0.3;
  }

  .mental_network_container_section_two_wrapper_section_p_tag_more_a_tag {
    flex: 0.1;
  }
}
