/* STYLE 9 SPA */
.style9 .title-header h4{
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 700;
}

.style9 .title-header h4 span{
    line-height: 42px;
    font-size: 90px;
    font-weight: normal;
}

.style9 .nav.nav1 li,.style9 .nav.nav2 li,.style9 .nav.nav3 li{
    font-size: 18px;
    font-weight: bold;
}

.style9 .items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}

.style9 .part {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    height: auto;
    width: 100%;
}

.style9 .content-overlay9 {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.style9 .content-details9 {
    color: #FFF;
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.style9 .part:hover .content-overlay9 {
    opacity: 1;
}

.style9 .part img {
    height: 100%;
    width: inherit;
    object-fit: cover;
    transition: transform 1s ease;
}

.style9 .part:hover img {
    transform: scale(1.5);
}

.style9 .part:hover .content-details9 {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.style9 .content-details9 a {
    text-decoration: none;
    color: unset;
}