body {
    background: red
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

body {
    background: none;
    background: #fdfaff;
    color: #392754;
    font-size: 0;
    min-height: 100vh
}

* {
    box-sizing: border-box
}

h1 {
    font-size: 52px
}

h1,
h2 {
    font-family: Nunito, sans-serif;
    font-weight: 900;
    line-height: 115%
}

h2 {
    font-size: 46px
}

h3 {
    font-size: 36px
}

h3,
h4 {
    font-family: Nunito, sans-serif;
    font-weight: 900;
    line-height: 120%
}

h4 {
    font-size: 28px
}

p {
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%
}

p strong {
    font-weight: 700
}

p.tiny-text {
    font-size: 14px
}

span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: inherit
}

.link,
.link.link--red {
    border-bottom: 1px dashed;
    color: #8561d6;
    cursor: pointer
}

.link.link--red:hover,
.link:hover {
    border-bottom: 1px solid
}

.link.link--white {
    color: #fff
}

.button {
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 6px 10px 1px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-family: Nunito, sans-serif;
    font-size: 22px;
    font-weight: 800;
    height: auto;
    line-height: inherit;
    outline: none;
    padding: 16px 36px;
    position: relative;
    text-align: center;
    transition: box-shadow .2s linear;
    width: auto
}

.button:hover {
    box-shadow: 0 8px 14px 2px rgba(0, 0, 0, .2)
}

.button.small {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .1);
    font-size: 16px;
    padding: 12px 20px
}

.button.small:hover {
    box-shadow: 0 3px 10px 1px rgba(0, 0, 0, .2)
}

.button.button--main {
    background: #392754;
    box-shadow: 0 6px 10px 1px rgba(0, 0, 0, .1);
    color: #fff
}

.button.button--main:hover {
    box-shadow: 0 8px 14px 2px rgba(0, 0, 0, .2)
}

.button.button--highlight {
    background: #8561d6;
    box-shadow: 0 6px 10px 1px rgba(0, 0, 0, .1);
    color: #fff
}

.button.button--highlight:hover {
    box-shadow: 0 8px 14px 2px rgba(0, 0, 0, .2)
}

.button.button--no-shadow {
    box-shadow: none
}

@keyframes anim__rotate-360-clockwise {
    to {
        transform: rotate(1turn)
    }
}

.loadable-image {
    position: relative;
}

.loadable-image .loadable-image__loader {
    display: none;
    height: 100px;
    left: calc(50% - 50px);
    position: absolute;
    top: calc(50% - 50px);
    width: 100px
}

.loadable-image.loadable-image--loading .loadable-image__loader {
    animation: anim__rotate-360-clockwise 2s infinite;
    display: block
}



.blog {
    padding-top: 50px
}

.blog .blog__inner {
    display: block;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 4% 50px;
    width: 100%
}

.blog .blog__title {
    color: #aaa;
    font-size: 42px;
    text-transform: uppercase
}

.blog .blog__list {
    align-items: flex-start;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px
}

.blog .blog__list .preview {
    width: calc(50% - 25px)
}

.blog .blog__list .preview:first-child,
.blog .blog__list .preview:nth-child(2) {
    border-top: none
}

.preview {
    border-top: 1px solid #f2f2f2;
    padding: 50px 0;
    position: relative
}

.preview .preview__thumbnail {
    background-color: #f0f0f0;
    display: block;
    /* padding-bottom: 56%; */
    width: 100%
}

.preview .preview__details {
    margin: 30px 0 0
}

.preview .preview__details h2,
.preview .preview__details h3 {
    cursor: pointer;
    margin-bottom: 10px;
    transition: color .2s linear;
    width: 100%
}

.preview .preview__details h2:hover,
.preview .preview__details h3:hover {
    color: #8561d6;
    text-decoration: underline
}

.preview .preview__details p {
    font-size: 20px;
    margin-bottom: 30px
}

.preview .preview__published {
    margin-bottom: 15px;
    opacity: .4
}

.preview .preview__published p {
    font-weight: 700;
    margin-bottom: 0 !important;
    text-transform: uppercase
}

.preview .preview__badge {
    align-items: center;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, .3);
    display: inline-flex;
    justify-content: center;
    left: 25px;
    padding: 10px 12px;
    position: absolute;
    top: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: auto
}

.preview .preview__badge span {
    color: #392754;
    display: inline-block;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    margin: 0 8px;
    vertical-align: middle
}

.preview.preview--hero {
    border-bottom: 1px solid #eee;
    border-top: none;
    margin-bottom: 50px;
    padding: 0 0 50px;
    padding-top: 0 !important
}

.preview.preview--hero .preview__details h2,
.preview.preview--hero .preview__details h3,
.preview.preview--hero .preview__details p {
    max-width: 720px
}

.blog-pagination {
    text-align: center
}

.blog-pagination .blog-pagination__button {
    border-radius: 300px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .12);
    color: #392754;
    cursor: pointer;
    display: inline-block;
    font-family: Nunito, sans-serif;
    font-size: 22px;
    font-weight: 900;
    height: 42px;
    line-height: 30px;
    line-height: 1;
    margin: 0 7px;
    padding: 10px;
    text-align: center;
    transition: box-shadow .2s ease-out, color .2s linear;
    vertical-align: middle;
    width: 42px
}

.blog-pagination .blog-pagination__button.blog-pagination__button--current {
    background: #fdfaff;
    color: silver
}

.blog-pagination .blog-pagination__button.blog-pagination__button--current:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .12);
    color: silver
}

.blog-pagination .blog-pagination__button:hover {
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, .3);
    color: #8561d6
}

.blog-pagination .blog-pagination__fold {
    color: #392754;
    display: inline-block;
    font-family: Nunito, sans-serif;
    font-size: 24px;
    font-weight: 900;
    height: 30px;
    line-height: 20px;
    vertical-align: middle;
    width: 30px
}

.article .article__hero {
    margin: 0 auto;
    max-width: 980px;
    padding: 50px 0 30px
}

.article .article__hero,
.article .article__hero img {
    display: block;
    width: 100%
}

.article .article__content {
    display: block;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 4% 50px;
    width: 92%
}

.article .article__header {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 30px;
    padding-bottom: 30px
}

.article .article__header span {
    display: block;
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    opacity: .4;
    padding-top: 20px;
    text-transform: uppercase
}

.article .article__body h2 {
    font-size: 42px;
    margin-bottom: 25px;
    padding-top: 15px
}

.article .article__body h3 {
    font-size: 32px;
    margin-bottom: 20px
}

.article .article__body p {
    margin-bottom: 30px
}

.article .article__body i {
    font-style: italic;
    height: auto;
    width: 100%
}

.article .article__body b,
.article .article__body strong {
    font-weight: 900
}

.article .article__body a {
    border-bottom: 1px dashed;
    color: #8561d6;
    cursor: pointer
}

.article .article__body a:hover {
    border-bottom: 1px solid
}

.article .article__body img {
    display: block;
    height: auto;
    margin: 30px 0;
    max-height: 552px;
    max-width: 100%;
    width: auto
}

.article .article__body ul {
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 40px;
    display: block;
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    list-style-type: disc;
    margin-block-end: 1em;
    margin-block-start: 1em;
    margin-inline-end: 0;
    margin-inline-start: 0;
    margin: 30px 0;
    padding-inline-start: 40px
}

.article .article__body ul>li {
    display: list-item;
    text-align: -webkit-match-parent
}

@media (max-width:720px) {
    .blog .blog__title {
        font-size: 36px
    }

    .blog .blog__list .preview {
        width: calc(50% - 10px)
    }

    .preview .preview__details {
        margin: 20px 0 0
    }

    .preview .preview__details h2,
    .preview .preview__details h3 {
        font-size: 28px;
        margin-bottom: 10px
    }

    .preview .preview__details p {
        font-size: 16px;
        margin-bottom: 20px
    }

    .preview .preview__published {
        margin-bottom: 13px
    }

    .preview.preview--hero {
        width: 100%
    }

    .preview.preview--hero .preview__details h2,
    .preview.preview--hero .preview__details h3 {
        font-size: 36px
    }

    .button,
    .preview.preview--hero .preview__details p {
        font-size: 20px
    }
}

@media (max-width:600px) {
    .blog .blog__list .preview {
        width: 100%
    }

    .blog .blog__list .preview:nth-child(2) {
        border-top: 1px solid #eee
    }

    .preview {
        margin-bottom: 30px;
        padding: 30px 0 0
    }

    .preview .preview__details h2,
    .preview .preview__details h3,
    .preview.preview--hero .preview__details h2,
    .preview.preview--hero .preview__details h3 {
        font-size: 28px
    }

    .preview .preview__details p,
    .preview.preview--hero .preview__details p {
        font-size: 16px;
        margin-bottom: 20px
    }

    .preview .preview__published,
    .preview.preview--hero .preview__published {
        margin-bottom: 10px
    }

    .preview .preview__badge,
    .preview.preview--hero .preview__badge {
        left: 15px;
        top: 15px
    }

    .article .article__header h1 {
        font-size: 40px
    }

    .article .article__header span {
        font-size: 20px
    }

    .article .article__body h2 {
        font-size: 32px
    }

    .article .article__body h3 {
        font-size: 24px
    }

    .article .article__body p,
    .article .article__body ul {
        font-size: 20px
    }
}

@media (max-width:460px) {

    h1,
    h2 {
        font-size: 40px
    }

    h3 {
        font-size: 30px
    }

    p {
        font-size: 20px
    }

    .button {
        font-size: 18px
    }
}

@media (max-width:420px) {
    .blog-pagination .blog-pagination__button {
        font-size: 16px;
        height: 23px;
        line-height: 23px;
        margin: 0 5px;
        padding: 6px;
        width: 23px
    }
}

@media (max-width:374px) {
    .preview .preview__badge {
        left: 10px;
        padding: 8px 10px;
        top: 10px
    }

    .preview .preview__badge span {
        font-size: 12px;
        margin: 1px 6px 0
    }

    .blog-pagination {
        border-top: 1px solid #f2f2f2;
        margin-top: 30px;
        padding-top: 30px
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.signoff {
    background: #fff;
    border: 1px solid #d4ced9;
    border-radius: 8px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .12);
    margin: 0 auto 50px;
    max-width: 980px;
    padding: 35px 30px
}

.menu {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.menu p {
    color: #392754;
    font-family: Lato, Helvetica, Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
    padding: 0
}

.menu * {
    box-sizing: border-box
}

.menu .menu__desktop {
    align-items: flex-end;
    display: flex;
    justify-content: center
}

.menu .menu__fullscreen {
    display: none
}

.menu .menu__logo {
    color: #fff;
    display: inline-block;
    padding-bottom: 10px;
    vertical-align: middle
}

.menu .menu__logo img {
    width: 100%
}

.menu .menu__logo h3 {
    color: #fff;
    font-family: Raleway, Helvetica, Sans-serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 900
}

.menu .menu__logo.menu__logo--purple h3 {
    color: #8560d6
}

.menu .menu__item {
    align-items: center;
    background: hsla(0, 0%, 100%, 0);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 4px;
    padding: 6px 10px;
    transition: background .2s ease-out;
    width: auto
}

.menu .menu__item p {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color .2s ease-out
}

.menu .menu__item img {
    filter: grayscale(1) brightness(3);
    height: 15px;
    margin-left: 5px;
    transition: filter .2s ease-out;
    width: 15px
}

.menu .menu__item:hover {
    background: #fff
}

.menu .menu__item:hover p {
    color: #8561d6
}

.menu .menu__item:hover img {
    filter: grayscale(0) brightness(1)
}

.menu .menu__button {
    align-self: flex-end;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px 1px rgba(0, 0, 0, .1);
    cursor: pointer;
    display: none;
    height: 44px;
    position: relative;
    width: 44px
}

.menu .menu__button div {
    background: #8560d6;
    border-radius: 4px;
    height: 4px;
    margin: 0 8px;
    position: absolute;
    transition: all .2s linear;
    width: 28px
}

.menu .menu__button div:first-child {
    top: 12px
}

.menu .menu__button div:nth-child(2) {
    top: 20px
}

.menu .menu__button div:nth-child(3) {
    top: 28px
}

.menu.menu--visible .menu__button {
    background: #f4eeff;
    box-shadow: none
}

.menu.menu--visible .menu__button div {
    background: #392754
}

.menu.menu--visible .menu__button div:first-child {
    top: 20px;
    transform: rotate(45deg)
}

.menu.menu--visible .menu__button div:nth-child(2) {
    float: right;
    margin-left: 22px;
    margin-right: 22px;
    top: 20px;
    width: 0
}

.menu.menu--visible .menu__button div:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg)
}

.menu-dropdown {
    position: relative
}

.menu-dropdown .menu-dropdown__content {
    height: auto;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 15px);
    transition: opacity .2s ease-out, left .2s ease-out;
    width: 460px;
    z-index: 10
}

.menu-dropdown .menu-dropdown__content:before {
    background: url(/img/icons/notch__up--white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: calc(100% - 1px);
    content: "";
    height: 20px;
    left: calc(50% - 10px);
    position: absolute;
    width: 20px
}

.menu-dropdown.menu-dropdown--visible .menu-dropdown__content {
    left: calc(50% - 230px);
    opacity: 1;
    pointer-events: all
}

.menu-fullscreen {
    background: #fff;
    border: 1px solid #d4ced9;
    border-radius: 8px;
    bottom: 0;
    box-shadow: 0 8px 14px 2px rgba(0, 0, 0, .1);
    height: 100vh;
    height: 100dvh;
    left: 0;
    overflow: scroll;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 11
}

.menu-fullscreen .menu-fullscreen__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%
}

.menu-fullscreen .menu-fullscreen__header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 30px 0
}

.menu-fullscreen .menu-fullscreen__header h3 {
    color: #392754;
    font-family: Lato, Helvetica, Sans-serif;
    font-size: 40px;
    font-weight: 900
}

.menu-fullscreen .menu-fullscreen__links {
    background: #f8f6ff;
    border-top: 1px solid #ccabff;
    flex-grow: 1;
    padding: 10px 10px calc(40px + env(safe-area-inset-bottom))
}

.menu-fullscreen .menu-fullscreen__item {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px;
    transition: background .2s ease-out;
    width: 100%
}

.menu-fullscreen .menu-fullscreen__item img {
    height: 22px;
    width: 22px
}

.menu-fullscreen .menu-fullscreen__item p {
    font-size: 22px;
    font-weight: 600;
    margin-left: 14px
}

.menu-fullscreen .menu-fullscreen__item:hover {
    background: #f4eaff
}

.menu-services {
    background: #fff;
    border: 1px solid #d4ced9;
    border-radius: 8px;
    box-shadow: 0 8px 14px 2px rgba(0, 0, 0, .1);
    padding: 15px
}

.menu-services.menu-services--inset {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none
}

.menu-services .menu-services__item {
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px;
    transition: all .2s linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.menu-services .menu-services__item:first-child {
    border-radius: 6px 6px 0 0
}

.menu-services .menu-services__item:last-child {
    border-bottom: 0;
    border-radius: 0 0 6px 6px
}

.menu-services .menu-services__item:hover {
    background: #f8f6ff
}

.menu-services .menu-services__icon {
    background: #f4eeff;
    border-radius: 200px;
    padding: 10px
}

.menu-services .menu-services__icon img {
    height: 22px;
    width: 22px
}

.menu-services .menu-services__description {
    margin-left: 14px
}

.menu-services .menu-services__description div {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start
}

.menu-services .menu-services__description div>p {
    font-size: 22px;
    font-weight: 600
}

.menu-services .menu-services__description>p {
    font-size: 16px;
    padding-top: 2px
}

.menu-services .menu-services__badge {
    background: #ffe68a;
    border-radius: 4px;
    color: #392754;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    margin-left: 8px;
    padding: 3px 5px
}

#menu-wrapper {
    background-color: #6c32d4;
    background: linear-gradient(120deg, #6c32d4, #813dbb);
    display: block;
    width: 100%
}

#menu-wrapper #menu-content {
    margin: 0 auto;
    max-width: 1000px;
    padding: 50px 0 35px;
    width: 92%
}

.menu-container {
    margin: 0 auto;
    max-width: 1000px;
    padding: 65px 0 0;
    width: 92%
}

footer {
    background: #fafafa;
    color: #a7a7a7;
    font-size: 0;
    padding: 100px 0 50px;
    width: 100%
}

footer .footer__content {
    align-content: flex-start;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 2%;
    width: 100%
}

footer .footer__content .footer__logo {
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    height: auto;
    padding-bottom: 25px;
    width: auto
}

footer .footer__content .footer__logo img {
    flex-shrink: 0;
    height: 45px
}

footer .footer__content .footer__logo-divider {
    border-bottom: 1px solid #e0e0e0;
    flex-grow: 1;
    width: 100%
}

footer .footer__content .footer__logo-divider.footer__logo-divider--left {
    margin: 0;
    width: 0
}

footer .footer__content .footer__logo-divider.footer__logo-divider--right {
    margin-left: 50px;
    width: 100%
}

footer .footer__content .footer__sitemap {
    color: inherit;
    flex-shrink: 1;
    text-align: left;
    width: 100%
}

footer .footer__content .footer__copyright {
    color: inherit;
    font-family: Lato, Helvetica, Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    width: 100%
}

footer .footer__content .footer__copyright a {
    color: #8560d6;
    transition: color .2s linear
}

footer .footer__content .footer__copyright a:hover {
    border-bottom: 1px solid
}

footer .footer__content .footer__address {
    border-top: 1px solid #e0e0e0;
    color: inherit;
    font-family: Lato, Helvetica, Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    padding-bottom: 5px;
    padding-top: 25px;
    text-align: center
}

.sitemap {
    color: inherit
}

.sitemap .sitemap__row {
    color: inherit;
    display: flex;
    flex-direction: row
}

.sitemap .sitemap__row .sitemap__category:nth-child(3) {
    padding-right: 0
}

.sitemap .sitemap__category {
    color: inherit;
    display: inline-block;
    padding: 0 10px 25px 0;
    vertical-align: top;
    width: 33%
}

.sitemap .sitemap__category li {
    color: #8560d6;
    font-family: Nunito, Helvetica, Sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 11px
}

.sitemap .sitemap__category li a {
    transition: color .2s linear
}

.sitemap .sitemap__category li a:hover {
    border-bottom: 1px solid
}

@media (max-width:860px) {
    #menu-wrapper #menu-inner .menu-item.merge-in {
        display: none
    }

    #menu-wrapper #menu-inner .menu-item .merge-out {
        border-top: 1px solid #f2f2f2;
        display: block;
        margin-top: 5px;
        padding-top: 5px
    }
}

@media (max-width:750px) {
    .menu .menu__logo {
        padding-bottom: 5px
    }

    .menu .menu__button {
        display: block
    }

    .menu .menu__desktop {
        display: none
    }

    .menu.menu--visible .menu__fullscreen {
        display: block
    }

    .menu-container {
        max-width: 600px;
        padding: 50px 0 0;
        position: relative
    }

    .menu-container .logo {
        padding-bottom: 0;
        padding-top: 0
    }

    #menu-wrapper #menu-content {
        max-width: 600px;
        position: relative
    }
}

@media (max-width:600px) {
    .signoff {
        padding: 30px
    }

    .signoff h3 {
        font-size: 24px
    }

    .signoff p {
        font-size: 20px
    }
}

@media (max-width:500px) {
    footer .footer__content .footer__logo-divider.footer__logo-divider--left {
        margin-right: 25px;
        width: 100%
    }

    footer .footer__content .footer__logo-divider.footer__logo-divider--right {
        margin-left: 25px;
        width: 100%
    }

    .sitemap .sitemap__row {
        flex-wrap: wrap
    }

    .sitemap .sitemap__category {
        padding-right: 0;
        text-align: center;
        width: 100%
    }
}

@media screen and (max-width:440px) {
    .menu-container {
        padding-top: 30px
    }

    .menu-fullscreen .menu-fullscreen__header {
        padding: 20px 20px 0
    }

    .menu-services {
        padding: 10px 0
    }
}