* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Oswald {
    font-family: 'Oswald', sans-serif;
}

.Open-Sans {
    font-family: 'Open Sans', sans-serif
}

.project-hero-image {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../storage/banners/1673081016-product-banner.jpg"); */
    /* height: 500px; */
    padding-top: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.project-hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* client-card */
.client-card-img {
    height: 250px;
    object-fit: fill;
}


/* our-porject */
.project-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.project-image {
    opacity: 1;
    display: block;
    width: 100%;
    height: 280px;
    transition: .5s ease-in-out;
    backface-visibility: hidden;
    object-fit: fill;
}

.project-container .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.project-container:hover .project-image {
    opacity: 1;
}

.project-container:hover .middle {
    opacity: 1;
}

.project-container .text {
    background-color: #E57129;
    color: white;
    font-size: 22px;
    font-weight: 600;
    padding: 13px 0;
}



/* parallex-section */
.parallex-section {
    /* background-image: linear-gradient(rgb(61, 114, 33, 0.5), rgba(61, 114, 33, 0.7)), url("./images/website_image.jpg"); */
    background-image: linear-gradient(rgba(93, 43, 33, 0.5), rgba(84, 36, 33, 0.7)), url("./images/parallax-img-2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    transition: all 0.7s linear;
    /* filter: drop-shadow(2px 4px 4px #585858); */
    position: relative;
    text-align: center;
}

.parallex-text-container {
    padding: 150px 0;
}

.parallax-btn {
    border: 1.5px solid white;
    background-color: transparent;
    color: white;
    /* padding: 14px 28px; */
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}

.parallax-btn {
    border-color: white;
    color: white;
}

.parallax-btn:hover {
    background-color: #E57129;
    color: white;
}