body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #777777;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Work Sans";
}

.flex-row-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-row-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

header > .nav {
    background-color: #F10025;
    color: white;
    gap: 27px;
    font-weight: 700;
    line-height: 40px;
}

@media (max-width: 500px) {
    header > .nav {
        display: none;
    }
}

img:not(.logo), figure {
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

img.logo {
    height: 45px;
    padding: 30px 0;
    margin: 0 auto;
    object-fit: contain;
    display: block;
}

main {
    margin: 60px 0;
}

a {
    color: rgb(164, 0, 79);
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    opacity: 0.9;
}

div.breadcrumbs {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    color: #25272F;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-family: "Heebo";
    line-height: 30px;

    span {
        display: inline-block;
    }

    span.separator {
        margin: 0 13px;
    }

    a {
        background-image: linear-gradient(currentColor, currentColor);
        background-position: 0 100%;
        background-repeat: no-repeat;
        background-size: 0 1px;
        transition: background-size .5s;
    }

    a:hover {
        background-size: 100% 1px;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #0E164E;
    font-family: "Heebo";
}

p {
    margin: 0;
}

h1 {
    font-weight: 600;
    line-height: 1.16;
    font-size: 48px;
    margin: 1em 0;
}

main > .content {
    color: #25272F;
    margin: 70px auto;

    > * {
        margin-top: 0;
        margin-bottom: 30px;
    }

    h2 {
        font-weight: 700;
        font-size: 30px;
    }

    a {
        border-bottom: 1px solid;
    }

    a:hover {
        border-bottom-color: transparent;
    }

    blockquote {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        background-color: #1D1D1D;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
        font-size: 24px;
        line-height: 1.5;
        padding: 41px 50px;
        border-radius: 5px;
        font-family: "Lora";
        gap: 20px;

        img {
            width: 38px;
            height: 38px;
        }
    }

    figure > figcaption {
        margin-bottom: 1rem;
        font-size: smaller;
    }
}

main > img {
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

footer {
    background-color: #0F173E;
    padding: 40px 0;

    img.logo {
        padding-top: 0;
        margin: 0;
    }

    .flex-row-between {
        gap: 60px;
        margin-bottom: 45px;

        .column {
            flex: 1;

            p {
                font-size: 16px;
                line-height: 19px;
            }

            ul {
                padding: 0;
                margin: 0;
                list-style-type: none;
            }

            li {
                margin-bottom: 8px;
                color: #999;
                font-size: 18px;
                font-family: "Heebo";
                font-weight: 500;

                .pseudo-link {
                    color: inherit;
                    text-transform: none;
                }
            }

            h4 {
                color: white;
                font-size: 14px;
                font-weight: 600;
                font-family: "Heebo";
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 16px;
                display: block;
                position: relative;
                padding-right: 60px;
                width: fit-content;
            }

            h4::before {
                background-color: #333;
                content: '';
                position: absolute;
                width: 50px;
                height: 1px;
                right: 0;
                top: 50%;
                margin: 2px 0 0 0;
                padding: 0;
            }

            h4::after {
                background-color: #333;
                content: '';
                position: absolute;
                width: 30px;
                height: 1px;
                right: 20px;
                bottom: 50%;
                margin-bottom: 2px;
            }
        }
    }

    .terms {
        gap: 28px;
        margin-bottom: 10px;

        .pseudo-link {
            color: white;
            text-transform: uppercase;
            font-size: 14px;
            font-family: "Heebo";
            font-weight: 600;
        }

        .pseudo-link:hover {
            color: #00B8A9;
            text-decoration: none
        }
    }

    .copyright {
        font-size: 16px;
        line-height: 1.5;
        color: #999;
    }
}


@media (min-width: 1025px) {
    .strap {
        padding-left: 120px;
        padding-right: 120px;
    }

    .sub-strap {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .strap {
        padding-left: 20px;
        padding-right: 20px;
    }

    header {
        background-color: black;

        img.logo {
            margin-left: 0;
            padding: 20px;
        }
    }

    h1 {
        font-size: 36px;
    }

    main > .content blockquote {
        padding: 25px 30px;
        font-size: 20px;
    }

    footer .flex-row-between {
        flex-direction: column;
        gap: 40px;
    }

    footer .flex-row-start {
        flex-direction: column;
        gap: 8px;
    }
}