@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-slab-v34-latin-500.eot');
    src: url('../fonts/roboto-slab-v34-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-500.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-500.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-500.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-500.svg#RobotoSlab') format('svg');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: #555;
    background: #eee;
    font: 400 1rem/1.5em 'Roboto', Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}
header {
    box-shadow: 0 0 .5rem #bbb;
    padding: 2rem 4rem;
}
article {
    padding: 0 4rem;
}
article .flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}
article .flex section {
    width: 52%;
}
article .flex section p {
    margin: 0;
}
article .flex section :is(.fa-solid, .fa-regular) {
    color: #7f7f7f;
}
article .flex section div {
    margin-bottom: 1.7rem;
}
article .flex picture img {
    border-radius: 0 25%;
    box-shadow: 0 .187rem .937rem rgb(0 0 0 / 40%);
}
article .flex section div p span:first-of-type {
    width: 5%;
    display: inline-block;
    margin: 0 .7rem 0 0;
    text-align: center
}
article .bottom {
    display: flex;
    align-items: flex-end;
}
article :is(h1, h2, h3, h4, a.btn) {
    font-family: 'Roboto Slab', Arial, sans-serif;
}
article :is(h1, h2) {
    font-weight: 500;
    background-color: #ee7f00;
    color: #fff;
    padding: .5rem 1rem .5rem 4rem;
    width: fit-content;
}
article h1 {
    font-size: 1.75rem;
    line-height: 1.1;
    margin: 0 1rem 1.25rem -4rem;
}
article h2 {
    font-size: 1.75rem;
    margin: 0 1.875rem 1.25rem -4rem;
}
article p {
    margin: .625rem 0;
}
article h3 {
    font-size: 1.062rem;
    margin-top: 1.6rem;
}
article ul {
    margin: .5rem 0 1.5rem 1.4rem;
    list-style: none;
}
article ul li:before {
    content: ''url('../images/check.jpg');
    float: left;
    margin: 0 0 0 -20px;
}
article figure h4 {
    background-color: rgba(238, 127, 0, 0.7);
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1.3rem;
    text-align: center;
    bottom: 1.1rem;
    left: 0;
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
article a.btn {
    color: #fff;
    background: #ee7f00;
    border: .062rem solid #ee7f00;
    border-radius: 1.25rem;
    padding: .5rem 1.625rem;
    text-align: center;
    transition: all 0.5s;
    font-size: 1.062rem;
    margin-bottom: 1rem;
}
article a.btn:hover {
    color: #ee7f00;
    background: #fff;
}
article aside {
    padding: 1.5rem 4rem 1rem;
    background-color: #ddd;
    margin: 1rem -4rem 0;
}
footer {
    background: #333;
    padding: 1.5rem 4rem;
}
footer p {
    color: #fff;
}
footer span {
    white-space: nowrap;
}
.avt{
    margin: 0.5rem 0;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    span {
        white-space: nowrap;
    }
    article :is(p, ul) {
        hyphens: auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}
@media only screen and (max-width: 48rem) {
    header {
        padding: 2rem;
    }
    article {
        padding: 0 2rem;
    }
    footer {
        padding: 1.5rem 2rem;
    }
}
@media only screen and (max-width: 730px) {
    article .flex {
        flex-direction: column;
    }
    article .flex section {
        width: 100%;
    }
    article .bottom {
        align-items: flex-start;
    }
    article .bottom p {
        text-align: center;
    }
    article a.btn {
        margin: 0 auto .625rem;
    }
    article .bottom div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    article .bottom h4 {
        width: fit-content;
    }
}
@media only screen and (max-width: 30rem) {
    header {
        padding: 2rem;
        display: flex;
        justify-content: center;
    }
    article {
        padding: 0 1rem;
    }
    article .flex picture {
        display: flex;
        justify-content: center;
    }
    footer {
        padding: 1.5rem 1rem;
    }
    footer p {
        text-align: center;
        margin: 0;
    }
}
@media only screen and (max-width: 23.437rem) {
    article :is(h1, h2) {
        text-align: center;
        margin: 0 auto 1.25rem;
        display: block;
        width: auto;
        padding: .625rem;
    }
}