html, body {
            margin: 0;
            padding: 0;
        }

        * {
            box-sizing: border-box;
        }

        .color-fondo {
            background-color: #007a37;
        }

        .slider {
            width: 100%;
            margin: 10px auto;
        }

        .slick-slide {
            margin: 0px 20px;
            border-radius: 5px;
            border-color: black;
        }

        .slick-slide img {
            width: 70%;
        }

        .slick-prev:before,
        .slick-next:before {
            color: black;
        }

        .slick-slide {
            transition: all ease-in-out .2s;
            opacity: .85;
        }
        
        .slick-active {
            opacity: .85;
        }

        .slick-current {
            opacity: 85;
        }

        .image {
            position: relative;
            width: 100%;
            border-color: black;
        }


        .review_box  {
            position: relative;
            display: inline-block;
        }

        .texto_review_box{
            position: absolute;
            top: 40px;
            left: 20%;
            font-family: 'helvetica';
            font-size: calc(1em+1vw);
            color: black; 
            text-size-adjust: inherit;
            
        }

        .letra_opiniones {

            font-family: 'helvetica';
            vertical-align : super;
        }

        @media screen and (max-width: 560px) {
            
            body{
                font-size: 4vw;
            }
        }

        .valoracion {

            position: absolute;
            top: 80px;
            left: 10%;
            right: 5%;
            font-family: 'helvetica';
            font-size: calc(1em+1vw);
            color: black; 
            text-size-adjust: inherit; 
        }

        .mensaje_error {
            font-size:30px;
            color: white;
            font-family: 'helvetica';
        }

        .contenedor-fotos {
            display: flex;
        }
        .contenedor-fotos img:first-child {
            margin-right: 5px;
        }