@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');

.home-main-container {
    background-image: url('../../img/showroom/image80.jpeg');
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: center;
    display: flex;
    background-size: 95%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 150px;
}

.home-main-container h1 {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'League Gothic', sans-serif;
    margin: 0;
    user-select: none;
}

.home-main-container p {
    text-transform: uppercase;
    margin: 0;
    user-select: none;
}

.home-main-container button {
    background-color: #843443;
    cursor: pointer;
    width: 250px;
    border-radius: 15px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 0;
    color: white;
    margin-top: 20px;
    transition: 0.3s ease-in-out;
}

.home-main-container button:hover {
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
}



.home-services-container {
    margin: 100px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.home-services-section {
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-services-container h1 {
    color: #843443;
    font-size: 20px;
}

.home-services-container p {
    font-size: 17.5px;
}









.home-project-highlights {
    width: 100%;
    height: 600px;
    background-color: white;
    margin: 100px 0;
}

.home-project-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
}

.home-project-container div {
    background-color: whitesmoke;
    width: 350px;
    height: 350px;
}

.home-project-container img {
    transition: 0.3s ease;
    width: 350px;
    height: 350px;
}

.home-project-container img:hover {
    opacity: 0.5;
    cursor: pointer;
}

.home-project-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.home-project-container-2 div {
    border-radius: 20px;
    cursor: pointer;
    background-color: lightgrey;
    width: 25px;
    height: 25px;
    margin: 0 10px;
    transition: 0.3s ease;
}

.home-project-container-2 div:hover {
    background-color: #843443;
}

.home-project-container-2 .active {
    border-radius: 20px;
    cursor: pointer;
    background-color: #843443;
    width: 25px;
    height: 25px;
    margin: 0 10px;
}





.home-product-highlights {
    text-align: center;
}

.home-product-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.home-product-card {
    border: 1px solid lightgrey;
    width: 275px;
    height: 275px;
    margin: 30px;
}

.home-product-card img {
    width: 275px;
    height: 275px;
    float: left;
    transition: 0.3s ease;
}

.home-product-card img:hover {
    opacity: 0.5;
    cursor: pointer;
}

.home-product-card h1 {
    font-size: 15px;
    float: left;
}

.home-product-card p {
    font-size: 15px;
    float: right;
    color: #843443;
}