* {
  box-sizing: border-box;
    font-family: "Roboto Flex", sans-serif;
}

body {
    background-color: #fff;
    color: #174c38;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    margin-top: 40px;
}

h2 {
    font-size: 35px;
}

/***MAIN***/
/*#region*/

    section {
        width: 100%;
    }

    main {
        
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0px 75px;
        row-gap: 50px;
    }

     .mobile_title_container{
          align-items: center;
          background-color: #f8f1dd;
          border-radius: 50px;
          border: 2px solid #174c38;
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          overflow: hidden;
          display: flex;
          flex-direction: column;
          justify-content: center;
          padding: 25px 50px;
    }

   .main_container {
        align-items: center;
        background-color: #f8f1dd;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

   .main_mobile_title {
        display: none;
        margin-top: 0;
   }

   .main_pair_container{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
   }

    .main_text_container {
        color: #174c38;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        height: 100%;
        padding-left: 60px;
        font-size: 20px;
    }

    .section2 .main_text_container {
          padding-left: 0px;
          padding-right:60px;
    }
     

   .main_text_container ul {
        list-style: none;
        align-self: baseline;
        margin: 0;
        padding-left: 12px;
     }

   .main_text_listitem_container{
        display: flex;
        flex-direction: row;
        column-gap: 10px;
        align-items: center;
        margin-bottom: 20px;
     }

    .main_text_container img {
        height: 20px;
    }

     .section2 .main_container, .section4 .main_container {
          flex-direction: row-reverse;
     }

     .section1 .img_container {
          height: 400px;
          min-width: 300px;
     }

     .section2 .img_container {
          height: 300px;
          min-width: 491px;
   }

    section p {
          width: 100%;
          text-wrap: wrap;
     }


    .img_container img {
          height: 100%;
          width: 100%;
          object-fit: fill;
          border-radius: 5px;
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     }

     section:last-child {
          margin-bottom: 50px;
     }

/*#endregion*/


.voor_na_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px 75px;
    row-gap: 25px;
    margin-bottom: 50px;
}

.comparison_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.pair_container {
    Display: flex;
    flex-direction: row;
    column-gap: 3px;
}

.voor_container , .na_container  {
    position: relative;
    height: 400px;
}

.voor_container img, .na_container img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.voor_container p, .na_container p {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 5;
    background-color: #f8f1dd;
    padding: 10px;
    border: 2px solid #174c38;
    border-radius: 5px;
    font-weight: bold;
    width: 100px;
}

