@font-face {
    font-family: "Lato";
    src: url("assets/fonts/Lato/Lato-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Lato";
    src: url("assets/fonts/Lato/Lato-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "EB Garamond";
    src: url("assets/fonts/EB_Garamond/EBGaramond-Regular.woff2")
        format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "EB Garamond";
    src: url("assets/fonts/EB_Garamond/EBGaramond-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

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

:root {
    --white: #fff;
    --blue: #084077;
    --blue-90: #215385;
    --grey: #4c5866;
    --grey-50: #ebeef2;
    --grey-100: #dadfe5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background: var(--blue);
    padding-bottom: 80px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

.content {
    max-width: 1160px;
    margin: 0 auto;
}

header {
    background: var(--blue);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
}

header .logo {
    display: block;
    width: 177px;
    height: auto;
}

header .lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}

header .lang-link svg {
    width: 14px;
    height: 14px;
}

header .lang-link:hover {
    text-decoration: underline;
}

.band {
    width: 100%;
    padding: 64px;
}

.band--grey {
    background: var(--grey-50);
}

.band--white {
    background: var(--white);
    padding-top: 72px;
}

.band__layout {
    display: grid;
    grid-template-columns: 1fr 419px;
    grid-template-areas:
        "intro card"
        "section card";
    column-gap: 36px;
    align-items: start;
}

.band__layout > .intro {
    grid-area: intro;
}

.band__layout > .section {
    grid-area: section;
}

.band__right {
    grid-area: card;
}

.intro__label {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-feature-settings:
        "liga" off,
        "clig" off;
    color: var(--blue);
    margin-bottom: 16px;
}

.intro__title {
    font-family: "EB Garamond", serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1.5px;
    font-feature-settings:
        "liga" off,
        "clig" off;
    color: var(--blue);
    margin-bottom: 32px;
}

.intro__text {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.3px;
    color: var(--blue);
    margin-bottom: 64px;
    max-width: 662px;
}

#english .intro__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 1px;
}

#english .intro__text {
    font-size: 19px;
    line-height: 24px;
}

.main-card {
    background: var(--blue);
    padding: 48px 24px;
}

.main-card__title {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 24px;
}

.main-card__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-card__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-card__field--socials {
    padding-top: 8px;
}

.main-card__label {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: var(--white);
}

.main-card__value {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: var(--white);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
}

p.main-card__value {
    text-decoration: none;
}

.main-card__field--separator {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    margin-top: 8px;
}

.main-card .section__item__social__list {
    padding-top: 8px;
}

.main-card .section__item__social__link,
#english .main-card .section__item__social__link {
    background: var(--blue-90);
}

.main-card .section__item__social__link img {
    filter: brightness(0) invert(1);
}

.section__title {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: var(--grey);
    padding-bottom: 24px;
}

.section__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.section__item {
    border-left: 10px solid var(--grey-50);
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#english .section__item {
    border-left-color: var(--grey-100);
}

.section__item__body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.section__item__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section__item__field {
    min-width: 290px;
}

.section__item__social {
    display: flex;
    flex-direction: column;
}

.section__item__title {
    color: var(--grey);
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.5px;
    font-feature-settings:
        "liga" off,
        "clig" off;
}

.section__item__field__label {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: var(--blue);
}

.section__item__field__value {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: var(--blue);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
}

.section__item__social__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding-top: 16px;
}

.section__item__social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grey-50);
}

#english .section__item__social__link {
    background: var(--grey-100);
}

.section__item__social__link img {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .band__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "card"
            "section";
        gap: 32px;
    }

    header .logo {
        width: 155px;
    }

    .container {
        padding: 0 16px;
    }

    .content {
        padding: 0 16px;
    }

    .band {
        padding: 40px 0;
    }

    .intro__label {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 2px;
    }

    .intro__title {
        font-size: 44px;
        line-height: 56px;
        letter-spacing: 1px;
    }

    .intro__text {
        font-size: 19px;
        line-height: 24px;
        letter-spacing: 0.3px;
        margin-bottom: 0;
    }

    .section__title {
        font-size: 16px;
        line-height: 22px;
    }

    .section__item {
        border-left-width: 4px;
        padding: 8px 16px;
    }

    .section__item__title {
        font-size: 19px;
        line-height: 24px;
        letter-spacing: 0.2px;
    }

    .main-card {
        padding: 24px;
    }

    .main-card__title {
        font-size: 19px;
        line-height: 24px;
    }
}
