html, body {
    height: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

#ver-main {
    height: -moz-calc(100% - 232px + 70px);
    height: -webkit-calc(100% - 232px + 70px);
    height: calc(100% - 232px + 70px);
}

/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}

/*==========  Non-Mobile First Method  ==========*/

/* Large devices */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {

    #ver-main {
        height: -moz-calc(100% - 100px);
        height: -webkit-calc(100% - 100px);
        height: calc(100% - 100px);
    }

    .slick-arrow {
        display: none !important;
    }

    .slick-list {
        height: 84%;
    }

    .slick-dots {
        height: 14%;
        margin: 2% 0 0 0;
        text-align: center;
        width: 100%;
    }

    .slick-dots li {
        display: inline-block;
        height: 100%;
        margin: 0 5px 0 0;
    }

    .slick-dots li button {
        background: #e7e8ea;
        border: 0;
        border-radius: 100%;
        color: transparent;
        cursor: pointer;
        font-size: 0;
        height: 8px;
        outline: none;
        padding: 5px;
        width: 8px;
    }

    .slick-dots li.slick-active button {
        background: #cccccc;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 319px) {

}