.project-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.project-item {
border: 1px solid #ddd;
padding: 20px;
}
.project-image img {
width: 100%;
height: auto;
display: block;
} .footer_logo_wrap {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 9999;
} .footer_logo_wrap.is-in-footer {
position: static;
} @media (max-width: 767px) {
.footer_logo_wrap {
left: 0;
right: 0;
bottom: 0;
width: 100%;
z-index: 9999;
}
.footer_logo_wrap .footer_logo {
display: block;
width: 100%;
}
.footer_logo_wrap img {
display: block;
width: 100%;
height: auto;
}
.footer_logo_wrap.is-in-footer {
position: static;
width: auto;
}
}