﻿.services h2 {
    line-height: 1.3em;
}

.services p {
    line-height: 2em;
}

.services a.btn {
    letter-spacing: 3px;
}

.services .box-inner {
    padding: var(--padding-box);
    cursor: pointer;
}
.services .box-inner .box-image {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    cursor: pointer;
    overflow: hidden;
}
.services .box-inner .box-image img.img-fluid {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
.services .box-inner .img-hover-zoom img {
    transition: transform .5s ease;
}
.services .box-inner .box-text {
    position: relative;
    padding: 5px 10px;
    background: rgba(var(--rgb-white), 0.75);
    margin-top: -50px;
    height: 50px;
    overflow-y: hidden;
    line-height: 30px;
    z-index: 2;
    border-radius: 1px;
    width: calc(100% - 0px);
}
.services .box-inner .box-text-hover {
    position: absolute;
    bottom: 0;
    transition-duration: 1.5s;
    width: calc(100% - 2px);
}
.services .box-inner h2 {
    position: relative;
    padding: 5px 0px;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 1.5em;
    line-height: 1.25;
    text-shadow: -1px 0 var(--color-text-shadow), 0 1px var(--color-text-shadow), 1px 0 var(--color-text-shadow), 0 -1px var(--color-text-shadow);
    text-transform: unset;
    font-family: 'Playfair Display', sans-serif;
}
.services .box-inner p {
    font-family: 'Playfair Display', sans-serif;
    font-size: 10.25pt;
    color: var(--color-black);
}

@media (max-width: 767px) {
    .services .box-inner p {
        font-size: 9.75pt;
    }
}