﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 14px;
    font-size: 11px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-weight: 400;
    hyphens: auto;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #6BC8BE;
    overflow: hidden;
    background: #fff;
}

header {
    margin: 0;
}

article {
    padding: 0 24px 0 52px;
}

footer {
    margin: 0;
    border-top: 1px solid #6AC8BE;
    padding: 0 0 0 52px;
    display: flex;
    justify-content: space-between;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 1rem;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: #6AC8BE;
}

h2 {
    font-size: 18px;
    margin: 1rem 0;
    line-height: 22px;
    color: #6AC8BE;
}

h3 {
    font-size: 11px;
    margin: 1rem 0 0;
    line-height: 1.125rem;
    color: #6AC8BE;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 10px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 15px;
    text-indent: -10px;
}

.logo {
    display: flex;
    justify-content: flex-end;
    margin: 1rem;
}

.images {
    position: absolute;
    top: 0;
    left: 0;
}

.flexbox {
    display: flex;
    justify-content: space-between;
}

.box {
    width: 35%;
}

.text {
    width: 51%;
}

.background {
    width: 47%;
    background: #6BC8BE;
    padding: 7px;
    color: #FFF;
    display: flex;
    gap: 12px;
    font-size: 10px;
}

:is(.link, .link a) {
    color: #F28232 !important;
}
.width{width: 27.5%;}
@media all and (max-width:749px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;
    }



    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}

@media all and (max-width:700px) {
    .flexbox {
        display: block;
    }

    :is(.box, .text, .background) {
        width: 100%;
    }

    .images {
        display: none;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        flex-direction: column;
        padding: 0 1rem;
    }
}

@media all and (max-width:480px) {
    .background {
        display: block;
    }
}