* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: normal;
    font-family: sans-serif;
    font-weight: 400;
}
body {
    margin: 0;                                    
    padding: 0;
}

/* Header (m)-------------------------------------------*/
.header1 {
    grid-area: header1;
}

/* Main Service Page ------------------------------------------------------------------- */
#services {
    height: 100vh;                                                                                  
    background-color: white;
    display: grid;                                                                                  
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;                                         
    grid-template-rows: 1fr 840px 1fr 1fr;                 
    grid-template-areas: 
        "header1 header1 header1 header1 header1 header1"
        "mainarea-sv mainarea-sv mainarea-sv mainarea-sv mainarea-sv mainarea-sv"
        "serv1 serv1 serv1 serv1 serv1 serv1"
        "footer footer footer footer footer footer";
}
#mainarea-sv {
    grid-area: mainarea-sv;
    background-image: url('../images/mainarea-sv.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#mainarea-sv h2 {
    color: #d3d1d1;
    margin: 1em 2em 0em 2em;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 60px;
}
#mainarea-sv p {
    color: #999a9b;
    margin: 0em 3.5em;
    font-size: 1rem;
    font-weight: 500;
    width: 30em;
    text-align: justify;
    text-justify: inter-word;
}
.scheduleacall {
    display: flex;
    text-decoration: none;
    background-color: #546e7a;
    border: 1px solid #fafafa;
    border-radius: 0.7em;
    color: #fafafa;
    padding: 10px 30px;
    margin: 0 8px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    margin-right: 2em;
}
.scheduleacall:hover {
    background-color: #607d8b;
    color: #bdbdbd;
}
#mainarea-sv .scheduleacall {
    margin-right: 70px;
}
#serv1 {
    background: #ffff;
    grid-area: serv1;
    margin: 0;
    padding: 0;
}
.titulo-area {
    display: flex;
    margin-top: 4em;
    flex-direction: column;
    align-items: center;
}
.titulo-area h1 {
    padding-bottom: 0.5em;
    font-size: 2rem;
    font-weight: 600;
}
.titulo-area p {
    font-size: 1rem;
    width: 60%;
    text-align: justify;
    text-justify: inter-word;
}
.blocksofcards1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: top;
    justify-content: start;
    list-style-type: none;
}
.blocksofcards2  {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: top;
    justify-content: start;
    list-style-type: none;
}
#twolineswhite {
    margin-bottom: 100px;
}

/* Footer (m) -------------------------------------------*/
.footer {
    grid-area: footer;
}

/* ------------------------  RESPONSIVE DESIGN ------------------------------------------------------------------------ */

/* Large devices (desktops, less than 1200px) ----------------------- */
@media (max-width: 1199.98px) {
    /*main */
    #mainarea-sv h2 {
        font-size: 26px;
        font-weight: 700;
    }
}

/* Medium devices (tablets, less than 992px) ------------------------ */
@media (max-width: 991.98px) {
    
    #mainarea-sv h2 {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 1.25px;
        line-height: 50px;
    }
}

/* Small devices (landscape phones, less than 768px)  */
@media (max-width: 767.98px) {
    #mainarea-sv h2 {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 40px;
    }
    #mainarea-sv p {
        font-size: 1rem;
        font-weight: 400;
    }
}
