/* center images in the modal */
.center_image {
    display: block;
    margin-left: auto;
    max-height: 80vh;
    margin-right: auto;
    object-fit: contain;
}

.header {
    margin-top: 200px;
}

.header p {
    text-align: center;
    font-size: 35px;
}

.header h1 {
    font-size: 40px;
}

.hvrbox,
.hvrbox * {
    box-sizing: border-box;
}

.hvrbox {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.hvrbox img {
    max-width: 100%;
}


@media (max-width: 1200px) {
    .hvrbox img,.slide {
        pointer-events: none;
    }
}


.hvrbox .hvrbox-layer_bottom {
    display: block;
}

.hvrbox .hvrbox-layer_top {
    opacity: 0;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 23, 0.4);
    backdrop-filter: blur(1px);
    color: #fff;
    padding: 15px;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
    opacity: 1;
}

.hvrbox .hvrbox-text {
    margin: 0;
    padding: 10px;
    color: #ffffff;
    font-family: "Roboto Light", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.hvrbox .hvrbox-text a:hover {
    text-decoration: none;
    pointer-events: stroke;
}


.hvrbox .hvrbox-text_mobile {
    font-size: 15px;
    border-top: 1px solid rgb(179, 179, 179); /* for old browsers */
    border-top: 1px solid rgba(179, 179, 179, 0.7);
    margin-top: 5px;
    padding-top: 2px;
    display: none;
}

.hvrbox.active .hvrbox-text_mobile {
    display: block;
}


.row:before {
    display: inline-block !important;
}

.row:after {
    display: inline-block !important;
}

@media (max-width: 1200px) {
    .header h1 {
        font-size: 30px;
    }

    .header p {
        font-size: 25px;
    }

    .row:before {
        display: inline-block !important;
    }

    .row:after {
        display: inline-block !important;
    }

    .modal-content {
        width: 100%;
    }

}