* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-size: 1.6rem;
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
}


.page-container {
    width: 100%;
}


.header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #fff;
    min-height: 70px;
}

.header .img {
    width: 100px;
    display: flex;
}

.header img {
    width: 100%;
}

.header-title {
    color: rgba(40, 40, 48, 1);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 20px;
}


.content-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 20px;

}


.content-link-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-link-item a {
    width: 100%;
    height: 100%;

    padding: 0 10px;
}



.content-link-item .img {
    width: 64px;
    height: 64px;

}

.content-link-item .img svg {
    width: 100%;
    height: 100%;
}

.content-link-item a {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
    text-decoration: none;
    color: rgba(40, 40, 48, 1);
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 120px;
    background-color: #fff;
    transition: .45s all;
    border: 1px solid rgba(0, 0, 0, 1);
}



.content-link-item a:hover {
    background-color: #111214;
    color: #fff;
    border: 1px solid #111214;
}

.content-link-item a .img svg path {
    transition: .3s all;
}

.content-link-item a:hover .img svg path {
    fill: #fff;
}