html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --text-color: #ffffff;
    --desktop-design-width: 2000px;
    --mobile-design-width: 828px;
}

body {
    margin: 0;
    color: var(--text-color);
    font-family: "EB Garamond", serif;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 32pt;
    line-height: 42pt;
    font-weight: 400;
}

.important-text {
    /* font-size: 35pt;
    line-height: 45pt; */
    font-size: 26pt;
    line-height: 32pt;
}

.team-name {
    font-size: 25pt;
    line-height: 30pt;
}

.team-text,
body,
p,
li {
    font-size: 21pt;
    line-height: 27pt;
    padding-bottom: 10px;
}

.page-fit {
    width: 2000px;
    margin: 0 auto;
    overflow: visible;
}

.page-stage {
    position: relative;
    width: 2000px;
    transform: scale(1);
    transform-origin: top left;
}

.page-shell {
    width: 2000px;
}

.header-inner,
.container,
.news-details {
    position: relative;
}

header {
    position: relative;
    min-height: 221px;
    padding-bottom: 100px;
}

.header-inner {
    min-height: 221px;
}

.header-logo {
    position: absolute;
    top: 45px;
    left: 45px;
    z-index: 3;
}

.header-logo img {
    width: 605px;
    height: 176px;
}

.footer__logo img {
    width: 372px;
    height: 108px;
}

.navbar,
.footer__nav {
    font-size: 22pt;
    line-height: 1.25;
}

.navbar {
    position: absolute;
    top: 100px;
    left: 860px;
    right: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    white-space: nowrap;
    z-index: 2;
}

.footer__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-langs,
.footer-langs {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-left: 10px;
}

.header-langs img,
.footer-langs img {
    width: 40px;
    height: auto;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 45px;
    right: 45px;
    z-index: 5;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle img {
    width: 101px;
    height: 68px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    display: none;
    padding: 45px;
    background: rgba(23, 28, 46, 0.98);
    z-index: 10;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.mobile-menu__top img {
    width: 220px;
    height: auto;
}

.mobile-menu__close {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu__close img {
    width: 94px;
    height: 64px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding-top: 90px;
    text-align: center;
}

.mobile-menu nav a {
    font-size: 42pt;
    line-height: 70pt;
}

.mobile-menu__langs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 42px;
}

.mobile-menu__langs a {
    line-height: 0;
}

.mobile-menu__langs img {
    width: 78px;
    height: auto;
}

/* .news-details {
    min-height: 800px;
    padding: 100px 200px;
} */

footer {
    padding: 96px 45px 70px;
}

.footer-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
    /* gap: 45px; */
    text-align: center;
}

.footer__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 45px;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.copyright {
    font-size: 22pt;
    line-height: 22pt;
}

body.menu-open {
    overflow: hidden;
}

body.is-mobile .page-fit,
body.is-mobile .page-stage,
body.is-mobile .page-shell {
    width: 828px;
}

body.is-mobile header {
    min-height: 180px;
}

body.is-mobile .header-inner {
    min-height: 180px;
}

body.is-mobile .header-logo img,
body.is-mobile .footer__logo img {
    height: auto;
}

body.is-mobile .header-logo img {
    width: 420px;
    height: auto;
}

body.is-mobile .footer__logo img {
    width: 372px;
    height: 108px;
}

body.is-mobile .mobile-menu__top>a img {
    width: 420px;
    height: auto;
}

body.is-mobile .navbar {
    display: none;
}

body.is-mobile .menu-toggle {
    display: block;
}

body.is-mobile footer {
    padding: 50px 45px 60px;
}

.home-body body.is-mobile footer {
    padding: 180px 45px 60px;
}

body.is-mobile .container {
    margin-top: 45px;
    /* gap: 24px; */
}

body.is-mobile .footer__logo,
body.is-mobile .footer__nav {
    position: static;
}

body.is-mobile .footer__nav {
    justify-content: center;
    white-space: normal;
    flex-wrap: wrap;
}

