/*==========================
    Sidebar
==========================*/

.ih-project-sidebar{

    max-width:400px;
    width:100%;
    margin-inline:auto;
	margin-top:40px;
	clear:both;

}


/*==========================
    Outer Card
==========================*/

.ih-project-card{

    background:#F8F2DF;

    padding:18px;

    border-radius:16px;

}


/*==========================
    Inner Card
==========================*/

.ih-project-card>*{

    background:#fff;

}

.ih-project-image{

    border-radius:10px;

    overflow:hidden;

}

.ih-project-image img{

    width:100%;

    display:block;

    aspect-ratio:16/10;

    object-fit:cover;

}


/*==========================
    Title
==========================*/

.ih-project-title{

    margin:18px 0 10px;

    background:#fff;

    padding:0 10px;

    font-size:1.25rem;

    font-weight:700;

    text-align:center;

}


/*==========================
    Text
==========================*/

.ih-project-text{

    margin:0;

    padding:0 10px 20px;

    line-height:2;

    text-align:center;

    color:#666;
	font-size:16px;

}


/*==========================
    Contact
==========================*/

.ih-project-contact{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

    background:#fff;

    padding:16px;

    border-top:1px solid #eee;

}

.ih-project-contact i{

    color:#1F4E3D;

}

.ih-project-contact span{

    font-weight:600;

}

.ih-project-contact a{

    color:#1F4E3D;

    text-decoration:none;

    font-weight:700;

}

.ih-project-contact a:hover{

    text-decoration:underline;

}


/*==========================
    Share
==========================*/

.ih-project-share{

    margin-top:20px;

    background:#1F4E3D;

    color:#fff;

    border-radius:14px   0;

    padding:18px;
	display:flex;
	gap:15px;
	justify-content:center;
	align-items:center;

}


.ih-project-share a{ transition:.3s;}

.ih-project-share a:hover{ transform:translateY(-6px);}

.ih-project-share img{

    width:32px;

    display:block;

}


/*==========================
    Widgets
==========================*/

.ih-project-card .widget{

    margin-top:20px;

    background:#fff;

    padding:18px;

    border-radius:10px;

}


/*==========================
    Responsive
==========================*/

@media(max-width:992px){

    .ih-project-sidebar{

        max-width:100%;

    }

}