


.intro {
    width: 100%;
    height: 45vh;
    /* background-color: aqua; */
    text-align: center;
    text-shadow: 0px 0px 15px black;
    font-size: 50px;
    color: white;
    /* padding: 25vh 0; */
    background-image: url('../img/background-services.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center ;
}

.quote {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(45, 45, 45);
    color: white;
}

.quote div {
    padding: 50px;
}

.quote div p {
    max-width: 800px;
    font-size: 24px;
}

.quote div img{
    width: 250px;
}

.scope {
    text-align: center;
    background-color: white;
    padding: 25px 0px;
    font-size: 20px;
}

.scope .layout .box {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.point-box {
    display: flex;
    justify-content: center;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.point {
    width: 200px;
    margin: 10px;
    padding: 20px 10px;
    box-shadow: 2.5px 2.5px 7.5px black;
    cursor: default;
    transition: all .5s;
}

.point:hover {
    transform: scale(1.1);
    transition: all .5s;
    box-shadow: 5px 5px 15px black;
}

.scope .point {
    background-color: #bebebe80;
}

.scope .point:hover {
    background-color: #bebebe;
}

.extra {
    padding: 0px 50px;
    color: white;
    text-align: center;
    font-size: 20px;
}

.extra .layout .box {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.extra .title {
    margin-bottom: 50px;
    padding-top: 50px;
    text-align: center;
    font-size: 20px;
}

.extra .point {
    background-color: #44444480;
}

.extra .point:hover {
    background-color: #444444;
}


@media (max-width: 768px) {

    .intro {
        font-size: 24px;
    }

    .quote {
        display: block;
    }

    .quote div {
        padding: 10px 50px;
    }

    .quote div p {
        max-width: 100%;
        font-size: 20px;
    }
    
    .quote div img{
        width: 100%;
    }

    .point {
        width: 80%;
    }
}