body {
    font-family: 'Mukta', sans-serif;
    font-weight: 300;
    /* letter-spacing: -0.5px; */
    word-spacing: 2px;
    font-size: 22px;
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.75em;
}

h2 {
    font-size: 1.5em;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

q,
blockquote {
    font-family: 'Cormorant Garamond', serif;
}

a {
    color: #2469b2;
    text-decoration-line: underline;
    text-decoration-color: #94b5e4FF;
}

a:hover {
    text-decoration: none;
}

.header {
    max-width: 764px;
    margin: 0 auto;
    padding: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
}

.header__logo {
    min-width: 180px;
}

.header__nav {
    display: flex;
    gap: 12px 36px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header__link {
    font-family: 'Cormorant Garamond', serif;
    color: #2978ca;
    font-size: 1.15em;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 8px 4px;
    text-decoration: none;
}

.header__linkIcon {
    width: 42px;
    height: 42px;
    opacity: 0.8;
}

.header__link:hover {
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .header__logoSvg {
        width: 200px;
    }

    .header__logo {
        width: 80px;
        overflow: hidden;
        min-width: auto;
    }

    .header__link {
        flex-direction: row-reverse;
    }

    .header__linkIcon {
        width: 28px;
        height: 28px;
        margin-left: 6px;
    }
}

.content {
    max-width: 764px;
    margin: 0 auto;
    padding: 0 12px;
}

.content--full {
    padding: 32px;
    max-width: 1280px;
}

.site {
    position: relative;
    z-index: 1;
}

.site__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40vmax;
    height: 40vmax;
    z-index: -1;
    opacity: 0.1;
}




.banner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 24px;
    padding: 42px 0;
    align-items: center;
    grid-template-areas:
        "logo title"
        "logo description"
}


.banner__nav {
    font-size: 1.25em;
    display: flex;
    gap: 8px 12px;
    flex-wrap: wrap;
    justify-content: space-between;

}

.banner__title {
    grid-area: title;
    align-self: self-end;
}

.banner__logo {
    grid-area: logo;
}

.banner__description {
    padding-right: 56px;
    grid-area: description;
    align-self: self-start;
}

@media screen and (max-width: 768px) {
    .banner {
        grid-template-columns: 128px 1fr;
        grid-template-areas:
            "logo title"
            "description description"
    }

    .banner__title {
        align-self: center;
    }

    .banner__description {
        padding-right: 0;
    }
}


.footer {
    /* background: #f1f3f4; */
    /* background: #dfe4eb; */
    background: rgb(0 0 0 / 10%);
}

.content--footer {}


.footer__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0;
    gap: 0 24px;
}



.contentItem {
    padding: 64px 0;
}

.contentItem--background {
    background: rgb(178 178 178 / 21%);
}


.contentItem__img {
    width: 100%;
}

.contentItem__title {
    margin-top: 0;
}

button,
.button {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: center;
    background: #0077C8;
    color: #FFF;
    font-size: 22px;
    border: 0;
    padding: 6px 25px;
    border-radius: 24px;
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    text-decoration: none !important;
}

button:hover,
.button:hover {
    background: #005fa3;
}

.contentItem__button--small {
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 auto;
    display: inline-block;
    padding: 12px 25px;
}
