@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Mulish:wght@300;400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,500;1,600&family=Oswald:wght@200;300;400;500;600;700&display=swap');

/* font-family: 'Inter', sans-serif;
font-family: 'Mulish', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Oswald', sans-serif; */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Oswald {
    font-family: 'Oswald', sans-serif;
}

.Open-Sans {
    font-family: 'Open Sans', sans-serif
}

.orange-color {
    color: #E57129;
}

/* body {
    background-color: #F6F6F6;
} */


/* OUR-SERVICES AND PRODUCT  */
.product-container {
    max-width: 90%;
    margin: auto;
}

.home-product-card {
    background-color: #FFFFFF;
    transition: all 0.4s ease;
    border-right: 1px solid rgb(212, 209, 209);
    border-bottom: 1px solid rgb(212, 209, 209);
    /* border: 0.2px solid rgb(212, 209, 209); */
}

.home-product-card img {
    width: 100%;
    height: 280px !important;
    object-fit: fill !important;
}

.home-product-card p {
    font-size: 17px;
    font-weight: 700;
    color: #E57129;
    font-family: 'Oswald', sans-serif;
}

.home-product-card:hover {
    background-color: #F6F6F6;
}



/* out-client */
.our-client-section {
    background-color: #FFFFFF;
}

.our-client-text-container {
    width: 86% !important;
}
.our-client-text-container p{
    text-align: center !important;
}

.our-client-logo {
    box-shadow: none;
    transition: all 0.1s ease-in-out;
}

.our-client-logo img {
    height: 180px;
    object-fit: fill !important;
}

.our-client-logo :hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* our-porject */
.project-card {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.project-card-img {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease-in-out;
    backface-visibility: hidden;
    height: 280px;
    object-fit: fill;
}

.project-card .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-card:hover .project-card-img {
    opacity: 1;
}

.project-card:hover .middle {
    opacity: 1;
}

.project-card .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.jpg") !important;
    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;
}




@media screen and (max-width: 480px) {

    /* OUR-SERVICES AND PRODUCT  */
    .product-container {
        max-width: 100%;
        margin: auto;
    }

    .home-product-card img {
        width: 100%;
        height: 267px;
        object-fit: fill;
    }

    /* client */
    .our-client-text-container {
        width: 100% !important;
    }
    .our-client-text-container p{
        text-align: justify !important;
    }

    /* project */
    .project-card-img {
        opacity: 1;
        display: block;
        width: 100%;
        height: auto;
        transition: .5s ease-in-out;
        backface-visibility: hidden;
        height: 200px;
        object-fit: fill;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* OUR-SERVICES AND PRODUCT  */
    .product-container {
        max-width: 100%;
        margin: auto;
    }

    .home-product-card img {
        width: 100%;
        height: 257px;
        object-fit: fill;
    }

     /* client */
     .our-client-text-container {
        width: 90% !important;
    }
    .our-client-text-container p{
        text-align: center !important;
    }


    /* project */
    .project-card-img {
        opacity: 1;
        display: block;
        width: 100%;
        height: auto;
        transition: .5s ease-in-out;
        backface-visibility: hidden;
        height: 200px;
        object-fit: fill;
    }
}