/* Style 1 CSS Start */
.project-style-style_1 .project-card .project-image img{
    width: 100%;
    aspect-ratio: 10 / 13;
    max-height: 650px;
    object-fit: cover;
}

.project-style-style_1 .project-card .project-link{
    text-decoration: none;
    transition: 0.3s ease all;
}

.project-style-style_1 .project-card .project-title{
    font-size: var(--font-20);
    color: var(--black-color);
    margin-top: 32px;
    font-family: var(--primary-family);
    margin-bottom: 0;
    font-weight: 700;


    background-color: transparent;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1em;
    padding: 0;
    padding-bottom: 0px;
    font-size: var(--font-20);
    border: none;
    box-shadow: none;
    outline: none;
    transition: 0.3s ease all;

    background-image: linear-gradient(var(--black-color), var(--black-color));
    background-repeat: no-repeat;
    background-size: calc(100% - 26px) 1px;
    background-position: left bottom;

    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
}

.project-style-style_1 .project-title img {
    filter: brightness(0) invert(0);
    transition: 0.3s ease all;
    border-radius: 0;
}

.project-style-style_1 .project-link:hover img {
    filter: brightness(1);
    transition: 0.3s ease all;
}


.project-style-style_1 .project-link:hover .project-title{
    background-color: transparent;
    transition: 0.3s ease all;
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    color: var(--primary-color);
}


/* Style 1 CSS End */



/* Style 2 CSS Start */
.project-style-style_2{
    background-color: var(--black-color);
}

.project-style-style_2 .main-title{
    color: var(--white-color);
}

.project-style-style_2 .project-card .project-title{
    color: var(--white-color);
}

.project-style-style_2 .project-title img{
    filter: brightness(0) invert(1);
}

.project-style-style_2 .project-link .project-title{
    background-image: linear-gradient(var(--white-color), var(--white-color));
    transition: 0.3s ease all;
}

.project-style-style_2 .project-title{
    background-color: transparent;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1em;
    padding: 0;
    padding-bottom: 2px;
    font-size: var(--font-20);
    border: none;
    box-shadow: none;
    outline: none;
    transition: 0.3s ease all;

    background-image: linear-gradient(var(--black-color), var(--black-color));
    background-repeat: no-repeat;
    background-size: calc(100% - 26px) 2px;
    background-position: left bottom;

    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
}

.project-style-style_2 .project-card .project-title{
    font-size: var(--font-20);
    color: var(--white-color);
    margin-top: 32px;
    font-family: var(--primary-family);
    margin-bottom: 0;
    font-weight: 700;
}

.project-style-style_2 .project-link:hover .project-title{
    color: var(--primary-color);
}

.project-style-style_2 .project-link:hover .project-title img{
    filter: brightness(1) invert(0);
}

.project-style-style_2 .project-link:hover .project-title{
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    transition: 0.3s ease all;
}

.project-style-style_2.project-section{
    padding-top: 110px;
    padding-bottom: 160px;
}












.project-card {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-link {
    display: block;
    height: 100%;
}

.project-inner {
    position: relative;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-hover-content {
    position: absolute;
    inset: 0;
    background: #000000B2;
    color: #fff;
    padding: 48px;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-hover-content {
    opacity: 1;
    visibility: visible;
}

.default-content {
    transition: opacity 0.3s ease;
}

/* .project-card:hover .default-content {
    opacity: 0;
} */

.hover-title {
    font-size: var(--font-24);
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hover-description {
    font-size: var(--font-20);
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 23px;
}

.hover-purchase {
    font-size: var(--font-20);
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 0px;
    text-transform: uppercase;
}







 

@media screen and (max-width: 1024px){
    .project-style-style_2.project-section{
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .project-hover-content{
        padding: 30px;
    }
}

@media screen and (max-width: 768px){
    .project-title img{
        height: 14px;
        width: 14px;
    }
    .project-style-style_2.project-section{
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 768px){
    .project-style-style_2.project-section{
        padding-top: 60px;
        padding-bottom: 60px;
    }
}