@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #123250;
    font-family: 'Arial', sans-serif;
    font-size: .875rem;
    line-height: 1.5;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    padding: 1rem;
}

h1 {
    font-size: 2em;
    line-height: 1.1;
    margin: 1.875rem 0 1.25rem;
    font-weight: normal;
}

h2 {
    font-size: 1rem;
    margin: 0 0 1.875rem;
    position: relative;
    left: -.375rem;
}

h3 {
    font-size: 0.875rem;
    margin: 3.125rem 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 1.5rem 2rem; 
}

p {
    margin: 0 0 1rem;
}
span{
    white-space: nowrap
}
header {
    padding: 1.25rem 0;
    display: flex;
}

.margin {
    margin: 3.125rem 0
}

.center {
    text-align: center;
}

.iframe-wrapper {
    width: 55%;
    position: relative;
    padding-bottom: 26.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    margin: .625rem 0;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    display: flex;
    justify-content: end;
}

a.button {
    padding: 0.625rem 1rem;
    width: fit-content;
    border-radius: 0.3125rem;
    background: #37C391;
    color: #fff;
}

.button:hover {
    text-decoration: underline;
}
.flex{
    display: flex;
    justify-content: space-between;
    margin: 0  0 25px
    
}
.flex p{
    text-align: center;
    margin: 0;
    font-size: .937rem
}
.icon{
    width: 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between
}
@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
   
}

@media only screen and (max-width: 54rem) {
    h2 {
        position: static;
    }

    h3 {
        margin-top: 1.875rem
    }
    .margin{
        margin: 1.875rem 0
    }

    .iframe-wrapper {
        width: auto;
        padding-bottom: 56.25%;
    }
    .icon{
        width: 30%
    }
    .flex{
        flex-wrap: wrap
    }

}

@media only screen and (max-width: 30rem) {

    header,
    footer {
        justify-content: center;
    }

    ul {
        margin: 0 0 1rem 1rem;
    }
    .icon{
        width: 48%
    }
}