.h1resp {
    color: #fff;
    margin-top: 60px;
    text-shadow: 2px 2px 8px rgb(143, 143, 143);
}

.presp {
    color: #fff;
    margin-top: 10px;
    text-shadow: 2px 2px 8px rgb(143, 143, 143);
}

@media screen and (max-width: 2000px) {
    .h1resp {
        font-size: 48px;
    }
    .presp {
        font-size: 24px;
    }
}


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
    .h1resp {
        font-size: 36px;
    }
    .presp {
        font-size: 24px;
    }
    #demo-video {
        display: none;
    }
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    .h1resp {
        font-size: 36px;
    }
    .presp {
        font-size: 24px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    .h1resp {
        font-size: 36px;
    }
    .presp {
        font-size: 24px;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 576px) {
    .h1resp {
        font-size: 24px;
    }
    .presp {
        font-size: 18px;
    }
}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
    .h1resp {
        font-size: 24px;
    }
    .presp {
        font-size: 18px;
    }
}

.img-to-show {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.img-to-show:hover {
    opacity: 0.7;
}


/* The Modal (background) */

.img-pop-up {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 50px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(248, 248, 248);
    /* Fallback color */
    background-color: rgba(248, 248, 248, 0.9);
    /* Black w/ opacity */
}


/* Modal Content (image)  1000px */

.pop-up-content {
    margin: auto;
    display: block;
    width: 75%;
    /*max-width: 700px;*/
}


/* Caption of Modal Image */

#caption {
    margin: auto;
    display: block;
    width: 80%;
    /*max-width: 700px;*/
    text-align: center;
    color: #333;
    padding: 10px 0;
    /*height: 150px;*/
}


/* Add Animation */

.pop-up-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .pop-up-content {
        width: 100%;
    }
}