/**
 * Theme Name: Blocksy Child theme
 * Description: Blocksy Child theme
 * Author: Sebastian Rodriguez
 * Template: blocksy
 * Text Domain: blocksy
 */

.logo{
	border-bottom: 3px solid var(--theme-palette-color-1);
}

a, a:hover{
	text-decoration: none !important;
}

main p a,
main li a{
    border-bottom: 1px solid transparent;
}

main p a:hover,
main li a:hover{
    border-bottom: 1px solid;
}

.h-full .stk-block-content{
    height: 100%;
}

details{
    user-select: unset !important;
}

a.ct-menu-link:hover{
    text-decoration: none !important;
}

.about-menu-item{
    color: var(--theme-text-color);
}

.about-menu-item:hover{
    color: var(--theme-palette-color-2);
}

.home-hero{
    min-height: calc(100vh - 251.4px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icons a:hover{
    color: var(--theme-palette-color-2);
}

.social-icons a:hover .stk--svg-wrapper .stk--inner-svg svg,
.social-icons a:hover .stk--svg-wrapper .stk--inner-svg svg path{
    fill: var(--theme-palette-color-2) !important;
}

#menu-item-340{
    color: var(--theme-text-color);
}

#header [data-row],
#header [data-row*=middle]{
    z-index: 100;
    background: rgb(255 255 255 / 75%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
}

.post-type-archive-project #header [data-row],
.post-type-archive-project #header [data-row*=middle]{
    /* background: rgb(242 245 247 / 75%); */
}

.post-type-archive-project .ct-footer [data-row*="bottom"]{
    /* background: var(--theme-palette-color-6); */
    /* background-color: var(--theme-palette-color-6) !important; */
}

.projects-wrapper{
    display: grid;
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    gap: 30px;
}

.project-card{
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid #dddddd;
}

a.project-card:hover{
    text-decoration: none !important;
}

.project-card h2{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/*.project-card:hover h2{*/
/*    color: var(--theme-palette-color-2);*/
/*}*/

.project-card .project-content{
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: auto;
    flex-shrink: 0;
    flex-grow: 1;
    width: 50%;
}

.project-card p{
    margin-bottom: 0px;
    color: var(--theme-palette-color-3);
    font-size: 16px;
    font-weight: 400;
}

.project-card a.btn{
    margin-top:25px;
    padding: 8px 16px;
    background: var(--theme-palette-color-3);
    display: inline-block;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
}

.project-image{
    position: relative;
    overflow: hidden;
}

.project-card .project-image .hover-background{
    opacity: 0;
    transition-duration: .3s;
    background: var(--theme-palette-color-3);
    z-index: 2;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
}

/*.project-card:hover .project-image .hover-background{*/
/*    opacity: .075;*/
/*    transition-duration: .3s;*/
/*}*/

.project-card .project-image img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*.project-card:hover .project-image img{*/
/*    transform: scale(1.05);*/
/*    transition-duration: .3s;*/
/*    z-index: 1;*/
/*    position: relative;*/
/*}*/

.project-container{
    max-width: 850px;
    padding: 50px 0;
}

.project-container-lg{
    max-width: 1100px;
}

.project-subhead{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--theme-palette-color-4);
    margin-bottom: 0px;
}

.status{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    background: var(--theme-palette-color-5);
    color: var(--theme-palette-color-3);
    padding: 3px 15px;
    border-radius: 1rem;
    margin-bottom: 20px;
}