section.solucion-info{
  margin-top: 66px;
  .container-solucion-info{
    width: 70%;
    margin: 0 auto;
    p{
      color: var(--bg-color-grey-2);
      text-align: center;
      font-family: "DIN-Regular",sans-serif;
      font-size: 30px;
      line-height: 35px; /* 116.667% */
      strong{
        color: var(--bg-color-grey-2);
        font-family: "DIN-Medium",sans-serif;
        font-size: 30px;
        line-height: 35px;
      }
      span{
        color: var(--bg-color-orange-2);
        font-family: "DIN-Bold",sans-serif;
        font-size: 30px;
        line-height: 35px;
      }
    }
  }
}

section.soluciones{
  background: #fff;
  border-radius: 0 0 30px 30px;
  margin-top: 58px;
  padding-bottom: 95px;
  position: relative;
  &::before{
    content: '';
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }
  .container{
    display: flex;
    flex-direction: column;
    .solucion{
      display: flex;
      flex-direction: row;
      gap: 56px;
      margin-top: 50px;
      .container-img{
        width: 50%;
        filter: url(#svg-rounded);
        min-height: 385px;
        height: 450px;
        max-width: 479px;
        img,svg{
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
      .propuesta{
        display: flex;
        flex-direction: column;
        width: 50%;
        h2{
          color: var(--bg-color-orange-2);
          font-family: "DIN-Bold",sans-serif;
          font-size: 30px;
          line-height: 35px; /* 116.667% */
        }
        .solucion-aplicacion{
          margin-top: 26px;
          cursor: pointer;
          padding: 1rem;
          transition: all ease 0.5s;
          h3{
            position: relative;
            display: flex;
            justify-content: space-between;

            color: var(--bg-color-grey-2);
            font-family: "DIN-Regular",sans-serif;
            font-size: 18px;
            line-height: 23px; /* 127.778% */

            padding: 12px 0px;
            &::after{
              content: '';
              background: url("../../images/arrow-drop-triangle.svg");
              background-repeat: no-repeat;
              background-size: contain;
              background-position: center;
              display: inline-block;
              width: 28px;
              height:28px;
              /*transform: translateX(-150%);*/
              transition: all  ease .5s;
              cursor: pointer;
              flex-shrink: 0;
            }
          }
          hr{
            display: none;
            height: 1px;
            background: #4C4C4E;
            width: 0;
          }
          .solucion-aplicacion-adm{
            color: var(--bg-color-grey-2);
            font-family: "DIN-Regular",sans-serif;
            font-size: 15px;
            line-height: 20px; /* 133.333% */

            max-height: 0;
            visibility: hidden;
            transition: all ease 0.5s;
            ul{
              display: flex;
              flex-direction: column;

              padding-left: 1.1rem;
              li{
              font-size: 15px;
              line-height: 20px; /* 133.333% */
              list-style: unset;
              /*
                &::before{
                  content: "\2022";
                  display: inline-block;
                  width: 15px;
                  height: 15px;
                  background-image: url('../assets/images/img.webp');
                  background-size: cover;
                }
              */
              }
            }


          }
        }
        .solucion-aplicacion.active{
          border-radius: 15.552px;
          background: rgba(255, 116, 9, 0.10);
          box-sizing: border-box;
          h3{
            color: var(--bg-color-orange);
            font-family: "DIN-Medium",sans-serif;
            font-size: 18px;
            line-height: 23px; /* 127.778% */
            &::after{
              transform: rotate(180deg);
            }
          }
          hr{
            width: 100%;
          }
          .solucion-aplicacion-adm{
            max-height: 1000rem;
            visibility: visible;
            ul{
              display: flex;
              flex-direction: column;

              padding-left: 1.1rem;
              li{
              font-size: 15px;
              line-height: 20px; /* 133.333% */
              list-style: unset;
              /*
                &::before{
                  content: "\2022";
                  display: inline-block;
                  width: 15px;
                  height: 15px;
                  background-image: url('../assets/images/img.webp');
                  background-size: cover;
                }
              */
              }
            }


          }
        }
      }
    }
    .solucion.par{
      .container-img{
        order:2
      }
      .solucion{
        order:1
      }
    }
  }
}

section.trabajemos-juntos{
  /* background: #000; */
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 31px;
  padding-bottom: 1rem;
  position: relative;
  &::before{
    content: '';
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }
}

footer{
  background: #000;
}

@media (max-width: 700px) {
  section.solucion-info{
    .container-solucion-info{
      width: 80%;
      margin: 0 auto;
      p{
        font-size: 20px;
        line-height: 25px;
        strong{
          font-size: 20px;
          line-height:25px;
        }
        span{
          font-size: 20px;
          line-height: 25px;
        }
      }
    }
  }

  section.soluciones{
    .container{
      .solucion{
        flex-direction: column;
        gap: 1rem;
        margin-top: 60px;
        .container-img{
          width: 100%;
          height: 271px;
          order: 2;
          img{
          }
        }
        .propuesta{
          width: 100%;
          order: 1;
          h2{
            color: var(--bg-color-orange-2);
            font-family: "DIN-Bold",sans-serif;
            font-size: 30px;
            line-height: 35px; /* 116.667% */
          }
          .solucion-aplicacion{
            margin-top: 26px;
            cursor: pointer;
            padding: 1rem;
            transition: all ease 0.5s;
            h3{
              font-family: "DIN-Light",sans-serif;
              font-size: 18px;
              line-height: 23px;
              &::after{
              }
            }
            hr{
            }
            .solucion-aplicacion-adm{
              color: var(--bg-color-grey-2);
              font-family: "DIN-Regular",sans-serif;
              font-size: 15px;
              line-height: 20px; /* 133.333% */
  
              max-height: 0;
              visibility: hidden;
              transition: all ease 0.5s;
              ul{
                display: flex;
                flex-direction: column;
  
                padding-left: 1.1rem;
                li{
                font-size: 15px;
                line-height: 20px; /* 133.333% */
                list-style: unset;
                }
              }
            }
          }
          .solucion-aplicacion.active{
            h3{
              &::after{
              }
            }
            hr{

            }
            .solucion-aplicacion-adm{
              ul{
                li{
               
                }
              }
  
  
            }
          }
        }
      }
      .solucion.par{
        .container-img{
          order:2
        }
        .propuesta{
          order:1
        }
      }
    }
  }
}