﻿.project-item .project-content-second {
    background-color: #eceeff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top-right-radius: 2px;
    padding: 20px 30px;
    width: 90%;
    left: -1px;
    bottom: -1px;
    padding-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-content-second {
    padding-bottom: 75px;
}

.project-item .project-content-second h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    padding-left: 20px;
}

    .project-item .project-content-second h4:before {
        background-color: var(--grey-color);
        content: "";
        width: 15px;
        height: 1.5px;
        border-radius: 2px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.project-item .project-content-second h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
}

.project-item .project-content-second .read-more {
    font-size: 20px;
    border: 1px solid var(--grey-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 250px;
    bottom: -20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .project-item .project-content-second .read-more:hover {
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: var(--white-color);
    }

.project-item:hover .project-content-second .read-more {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
}
.project-item .project-content-second .tarif {
    font-size: 20px;
    border: 1px solid var(--grey-color);
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 30px;
    bottom: -20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-gradient);
    font-family: var(--primary-font);
    font-size: 14px;
    color: #fff;
}

    .project-item .project-content-second .tarif:hover {
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: var(--white-color);
    }

.project-item:hover .project-content-second .tarif {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
}
.hero-padding {
    padding-top: 95px;
}
