html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: #EEEBEF;
    font-family: 'lato light';
    display: flex;
    flex-direction: column;
}

.contact-box-wrapper {
    margin: auto;
    width: 90%;
    display: flex;
    flex-direction: column;
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    max-width: 1130px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    padding-right: 50px;
    padding-left: 50px;
}

.contact-box h3 {
    text-transform: uppercase;
    font-weight: 200;
}

.item {
    display: flex;
    align-items: center;
    margin: 8px 0px;
}

.item .avatar {
    margin-right: 15px;
}

.item .avatar .icon {
    height: 32px;
    width: 32px;
}

.item .name {
    font-size: 16px;
    color: black;
    padding-bottom: 1px;
    color: #1EAEDB;
    text-decoration: underline;
    cursor: pointer;
}

.item .name-US {
    font-size: 16px;
    color: black;
    padding-bottom: 1px;
    color: #1EAEDB;
    text-decoration: underline;
    cursor: pointer;
}

.item .link {
    font-size: 12px;
}

.item a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.item a:hover {
    color: #2E72B6;
}

.item a:active {
    color: #0501fa;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0px;
    color: #2E72B6;
}

.header h1 {
    text-align: center;
}