/*************************
            ALL
*************************/

body{
    color: #777;
    font-family: 'Avenir';
    margin: 0px;
    padding: 0px;
}

/*************************
          HEADER
*************************/

.header{
    background-color: #F3F3F4;
    background-image: url('image/logo_sap.png');
    background-position: top left;
    background-repeat: no-repeat;
    border-top: 8px solid #35363A;
    height: 50px;
}

/*************************
           BODY
*************************/
.container{
    /* border: 1px solid #000; */
    margin: 100px auto 0px auto;
    width: 740px;
}

.logo_motiva{
    background-image: url('image/logo_motiva.png');
    background-position: center;
    background-repeat: no-repeat;
    height: 62px;
    margin: 0px auto;
    margin-bottom: 100px;
    width: 248px;
}

.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
}

/*************************
           CARD
*************************/

.card{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: rgba(243, 243, 243, 0.4);
    padding: 35px;
    text-align: center;
    width: 271px;
}

.eu{
    grid-area: 1 / 1 / 2 / 2;
}

#eu{
    background-image: url('image/bg_europe.png');
    height: 177px;
    position: absolute;
    margin-top: -80px;
    margin-left: -100px;
    width: 207px;
    z-index: -1;
}

.americas{
    grid-area: 1 / 2 / 2 / 3;
}

#americas{
    background-image: url('image/bg_americas.png');
    height: 177px;
    position: absolute;
    margin-top: -60px;
    margin-left: 150px;
    width: 207px;
    z-index: -1;
}

h1{
    font-size: 28px;
    font-weight: 600;
    margin: 0px;
}

h2{
    font-size: 12px;
    font-weight: lighter;
    margin: 0px;
}

ul{
    list-style-type: none;
    padding: 0px;
}

li{
    padding: 5px 0px;
}

a:link,
a:active,
a:visited {
    color: #444;
    font-size: 18px;
    font-weight: light;
    text-decoration: none;
}

a:hover{
    color: #6E0072;
}