 .montana{
        display:flex;
        width:100%;
        height:576px;
        /*background-color:blue;*/
        position:relative;
      }
      
      .montanaFondo{
        display:flex;
        position:absolute;
        width:100%;
        bottom:0px;
        height:969px;
        /*border:1px solid yellow;*/
      }

      .montanaParaFondo{
        display:flex;
        width:100%;
        height:100%;
        position:absolute;
        bottom:0;
        background-image:url("./imgs/montana/montana.png");
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .montanaPleca{
        display:flex;
        width:100%;
        height:452px;
        /*background-color:brown;*/
        position:relative;
        background-image:url("./imgs/montana/montanaPleca.svg");
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .montanaCircle{
        display:flex;
        position:absolute;
        width:290px;
        height:290px;
        /*background-color:purple;*/
        right:121px;
        background-image:url("./imgs/montana/montanaCircle.png");
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;

      }

      @media(max-width:600px){

        .montana{
            /*border: 4px solid orange;*/
        }

        .montanaFondo{
          height: 700px;
                  overflow: hidden;
        }

        .montanaPleca{
          /*border: 4px solid white;*/
        }

        .montanaCircle{
          /*background-color: aqua;*/
           right: 50%;
           transform: translateX(50%);
           top:90px;
        }

        .montanaParaFondo{
           height: auto;
           width: 100%;
           aspect-ratio: 290/500;
           /*border: 6px solid pink;*/
        }

      }