/*Home page*/

.HomePage_Page_Container{
  display: flex;
  flex-direction: column;
  flex-flow: column;

  justify-content: center;
  align-items: flex-start;

  flex-wrap: nowrap;

  width: 100%;
  min-width: 99vw;
  height: 100%;
}

.carousel {
  min-width: 100vw;
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.mobile_carousel {
  min-width: 100vw;
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.mobile_carousel img {
  width: 100%;
  min-width: 100vw;
  height: auto;
}

.carousel img {
  width: 100%;
  min-width: 100vw;
  height: auto;
}

@media screen and (min-width: 500px) {
  .Slide_Images_Container{
    display: flex;
    flex-direction: row;
    flex-flow: row;
  
    justify-content: center;
    align-items: flex-start;
  
    width: 100%;
    height: auto;
  
    overflow: hidden;
  
  }

  .Responsive_Slide_Images_Container {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .Slide_Images_Container{
    display: none;
  }

  .Responsive_Slide_Images_Container {
    display: flex;
    flex-direction: row;
    flex-flow: row;

    justify-content: center;
    align-items: flex-start;

    width: 100%;
    height: auto;

    overflow: hidden;
  }
}

@media screen and (min-width: 1080px) {
  
  .home_page_midle_info_container_section_beige {
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 30vh;

    min-height: 250px;

    flex-wrap: nowrap;

    background-image: url('/static/images/fundo_verde.jpg');
    background-color: #1c9401;
  }

  .home_page_midle_info_container_section_beige_sub_container{
    display: flex;
    flex-direction: row;
    flex-flow: row;

    justify-content: center;
    align-items: center;

    width: 80%;
    height: 30vh;
  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container{
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: flex-start;
    align-items: center;

    width: 250px;
    height: 200px;
    margin-left: 15px;
    margin-right: 15px;

  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container p {
    margin-top: 21px;

    color: #FCFFF0;
    font-family: 'Roboto';
    font-style: 17;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container h5 {
    font-family: 'Roboto';
  }

  .process-titles{


    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 30px;

    margin-bottom: 20px;
  }

  .process_titles_labels {
    color: #FCFFF0;
    text-decoration: none;
    font-family: 'Roboto Condensed Sans-serif';
    font-size: 21px;
    
  }

}

@media screen and (max-width: 1080px) {

  .home_page_midle_info_container_section_beige {
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;
    align-self: center;

    width: 100%;
    height: 950px;

    min-height: 250px;

    flex-wrap: nowrap;

    background-color: #136601;

  }

  .home_page_midle_info_container_section_beige_sub_container{
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    background-image: url('../images/fundo_verde.jpg');
  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container{
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    width: 220px;
    height: 33.3%;
    /* margin-left: 15px;
    margin-right: 15px;
    margin-top: 90px; */

  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container p { 
    margin-top: 22px;

    color: #FCFFF0;
    font-family: 'Roboto';
    font-style: 17;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;

  }

  .home_page_midle_info_container_section_beige_sub_container_Sub_Item_Container h5 {
    margin: 22px;
    font-family: 'Roboto';
  }

  .process-titles{
    display: flex;
    flex-direction: column;
    flex-flow: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 30px;

    margin-bottom: 20px;
  }

  .process_titles_labels {
    color: #FCFFF0;
    text-decoration: none;
    font-family: 'Roboto Condensed Sans-serif';
    font-size: 16px;
    
  }


 
}