@font-face {
    font-family: "WeserSans-Regular";
    src: url("WeserSans-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "wk-iconfont";
    src: url("wk-iconfont.woff") format("woff");
    font-display: block;
}

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

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "WeserSans-Regular", sans-serif;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

.bg-black { background-color: #222; }
.text-black { color: #222; }
.text-white { color: #fff; }
.font-sans-bold { font-weight: 800; }
.font-sans-regular { font-weight: 400; }
.font-size-14_1 { font-size: 14px; line-height: 1em; }
.font-size-10_1 { font-size: 10px; line-height: 1em; }

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px rgba(0,39,49,.3)
}

.header .logo {
    display: block;
}

.header .logo img {
    max-width: 60vw;
}

.footer {
    padding: 40px 20px;
    text-align: center;
}

.footer__icons {
    margin-bottom: 20px;
}

.footer__icons__list, .footer__links__list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__links__list {
    font-size: 12px;
}

.footer__links__list li a:hover {
    text-decoration: underline;
}

.icon-social-whatsapp, .icon-social-facebook, .icon-social-instagram, .icon-social-youtube {
    display: inline-block;
    color: #fff;
}

[class^=icon-]::before {
    font-family: "wk-iconfont" !important;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-social-facebook::before { content: "\e921"; }
.icon-social-instagram::before { content: "\e922"; }
.icon-social-whatsapp::before { content: "\e923"; }
.icon-social-youtube::before { content: "\e924"; }

.scr {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
