:root {
    --breadcrumb-background: rgb(251, 185, 0);
    --color: rgb(0, 58, 121);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box;
    position: relative;
}

body {
    line-height: 1.5;
    font-family: "inter", sans-serif;
    font-size: 0.888889rem;
    font-weight: 400;
    color: rgb(0, 58, 121);
    margin: 0;
}

.header {
    width: 100%;
    height: 100%;
    max-width: 1470px;
    margin: 0 auto;
    position: relative;
}

.background {
    height: 300px;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    font-size: 18px;
}

.breadcrumb nav {
    width: 100%;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    background: var(--breadcrumb-background);
    padding: 0.444444rem 0.888889rem 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    font-weight: 400;
}

.breadcrumb nav ol {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.666667rem 0.888889rem;
    width: auto;
    max-width: 100%;
    padding: 0.333333rem 0.777778rem 0.777778rem;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

a.intern,
a.extern {
    padding-left: 1.77778rem;
}

p a.intern,
p a.extern {
    padding-left: 1.25rem;
}

a.intern::before,
a.extern::before {
    content: "";
    position: absolute;
    top: 0.166667rem;
    left: 0;
    width: 1.11111rem;
    height: 1.11111rem;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 32 32'%3E%3Cpath fill='%23003a79' stroke='%23003a79' stroke-width='1.2308' stroke-miterlimit='4' stroke-linecap='butt' stroke-linejoin='miter' d='M26.356 15.078l-25.359-0.173-0.055 2.594h24.867l-8.638 9.108 1.914 2.017 11.973-12.566-1.913-2.018-10.060-10.664-1.914 2.017 9.185 9.684z'/%3E%3C/svg%3E") 50% 50% / 100% no-repeat;
}

p a.intern::before,
p a.extern::before {
    content: "";
    position: absolute;
    top: -0.05rem;
    width: 1rem;
    height: 1rem;
}

a.extern::before {
    transform: rotate(-45deg);
}

a:hover {
    text-decoration: underline;
}

.breadcrumb svg {
    padding-top: 4px;
    padding-right: 14px;
    width: 32px;
    height: 22px;
}

.logo {
    padding: 20px 30px;
}

.logo-wrapper {
    position: absolute;
    left: 18px;
    top: 18px;
    background-color: white;
    border-radius: 20px 20px 20px 0;
}

main {
    max-width: 1470px;
    margin: 78px auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

h1 {
    line-height: 1.22222;
    font-size: 2rem;
    margin: 0 0 1.11111rem;
    font-weight: 300;
}

p {
    line-height: 1.44444;
    font-size: 1rem;
}

footer {
    width: 100%;
    max-width: 1470px;
    margin: 18px auto 0;
    position: relative;
    padding: 0 18px;
}

footer .footer-content {
    justify-content: start;
    padding: 40px 8px 0;
    border-top: 0.0555556rem solid rgb(0, 85, 177);
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

footer .address {
    margin: 0;
    width: 450px;
}

footer nav {
    width: 100%;
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

footer nav ul {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.666667rem 0.888889rem;
    padding: 0.333333rem 0.777778rem 0.777778rem;
    margin: 0;
    font-size: 18px;
}

.link {
    display: block;
    width: calc(100% + 34px);
    padding: 36px 45px;
    margin: 18px -18px;
    border-radius: 30px 30px 30px 0;
    background: rgb(210, 237, 252);
    text-decoration: none;
    font-size: 22px;
}

.link p {
    margin-top: 16px;
    margin-bottom: 0;
}

.link p:not(:last-child) {
    margin-bottom: 16px;
}

.link h2 {
    color: inherit;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.link ul {
    font-size: 16px;
    padding-left: 0;
    list-style-position: inside;
}

iframe {
    height: 800px;
    border: none;
    background: white;
    border-radius: 4px;
    width: calc(100% + 90px);
    margin-left: -45px;
}

@media only screen and (min-width: 56.25em) {
    .breadcrumb {
        left: 18px;
        width: calc(100% - 18px);
    }

    .breadcrumb nav {
        border-radius: 15px 15px 15px 0;
        width: auto !important;
    }

    iframe {
        width: 100%;
        margin-left: 0;
    }

    .link {
        width: 100%;
        margin: 18px 0;
    }
}