* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 95px;
    z-index: 0;
}

h1,
p {
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

.nav-link:hover{
    color: #000 !important;
}

.portfolio-section {
    padding: 50px 0;
    background-color: #fff;
}

.container-fluid{
    width: 97% !important;
}

.pd{
    padding-right: calc(var(--bs-gutter-x) * .35) !important;
    padding-left: calc(var(--bs-gutter-x) * .35)  !important;
}

.portfolio-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.portfolio-menu {
    text-align: center;
}

.text-center{
    margin-bottom: 5vh;
}

.control {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    background: transparent;
    color: #000;
    padding: 5px 10px;
    border: 2px solid #000000;
    margin: 5px;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.control:hover {
    color: #000;
    background: #f8c42c;
}

.mixitup-control-active {
    color: #000;
    background: #f8c42c;
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
}

ul,
ol {
    padding-left: 0 !important;
}

.pd img {
    object-fit: cover;
    transition: all 0.5s;
}

.image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 4 / 3;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .overlay {
    opacity: 1;
}

.project-title {
    padding-top: 18px;
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .project-title {
        font-size: 1.2rem;
    }
}