@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    color: rgb(0, 84, 154);
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 1.7rem;
    color: #fff;
}
h1 span{
    white-space: nowrap;
}
h2 {
    font-size: 1rem;
}

ul {
    margin: 0 0 1rem 1.3rem;
}

p {
    margin-bottom: 1rem;
}

.title {
    background-color: #2C77BB;
    padding: 1.5rem 3rem;
    margin: 0px 0 0;
}

.title p {
    color: #fff;
}

article {
    padding: 2rem 3rem 0;
}

footer {
    padding: 0 2rem;
}

.images {
    display: flex;
    justify-content: right;
    align-items: end;
    gap: 1rem;
}

.orange {
    background-color: #F58C1E;
    height: 1.5rem;
    margin: 0 -3rem;
}

.iframe-wrapper {    
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 1rem 0;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 48rem) {
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .title {
        padding: 25px 16px 1rem;
    }
    
    article {
        padding: 1rem 1rem 0;
    }

    ul {
        margin: 0 0 1rem 1rem;
    }
    .title br{
        display: none
    }

    footer {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 48rem) {

    .images {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
