

body{
    background-color: #eeeeee;
}

.section--construction .inner{
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 50px 0 0 0;
    padding: 50px 0;
    background-color: rgba(53, 99, 214, 0.22);
    border-radius: 30px 0 30px 0;
    transition: 0.3s ease;

}

.section--construction .inner:hover{
    border-radius: 0 30px 0 30px;
    transition: 0.3s ease;
}

.section--construction .inner:hover span{
   visibility: visible;
}

.section--construction h1{
    text-align: center;
    margin: 100px 0 0 0;
}

.section--construction h1, h2{
    font-weight: bold;
    color: #615a5a;
    text-transform: uppercase;
    padding: 0 0 50px 0;
    font-size: 50px;
}

.section--construction h2{
    font-size: 40px;
    text-align: center;

}

.section--construction h2 span{
    visibility: hidden;
}


.inner__images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.inner__images img{
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    padding: 10px 30px;
    position: relative;
    bottom:0;
    height: 100%;
    transition: 0.3s ease;
}

.inner__images img:hover{
    bottom: 5px;
    transition: 0.3s ease;
}

@media only screen and (max-width: 992px) {
    .section--construction .inner{
        margin: 30px 0;
    }
    .section--construction h1{
        font-size: 35px;
    }
}

@media only screen and (max-width: 600px) {
    .section--construction .inner{
        margin: 30px 0;
    }
    .section--construction h1{
        font-size: 20px;
        margin: 50px 0 0 0;
        padding: 0 0 20px 0;
    }
    .section--construction h2{
        font-size: 25px;
        padding: 0 0 20px 0;
    }
}

