


/* για να γινουν ολα strong */
h1,h2,h3,h4,h5,h6,p,pre{
    margin-left: 15px;
    text-align: center;
}

/* index contract button */
#indexButtonContract{
    background-color: #f0f0f02f;
    padding: 15px 50px;
    font-size: 23px;
    border-radius: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* services container */

.services-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 9%;
}

.ServicesDiv {
    border-radius: 5px;
    height: 200px;
    width: 200px;
    max-width: 100%;
    box-shadow: 2px 2px 5px;
    margin-bottom: 35px;
    flex-shrink: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ServicesDiv:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 2px 16px 30px rgba(0,0,0,0.25);
}

#HServiceDiv1{
text-align: center;
}

/* Our Projects */

.OurProjectsContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 9%;
}

.OurProjects{
   border-radius: 5px;
    height: 200px;
    width: 200px;
    max-width: 100%;
    box-shadow: 2px 2px 5px;
    margin-bottom: 35px;
    flex-shrink: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;  
}

.OurProjects:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 2px 16px 30px rgba(0,0,0,0.25);
}
