@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: .625rem;
}

hr {
    border-style: none;
    border-bottom: 1px solid #2c6132;
    margin-bottom: .625rem;
}

h1 {
    font-size: 2.9rem;
    line-height: 1.1;
    color: #2c6132;
    font-weight: normal;
    padding-bottom: .625rem;
}

h1 span {
    font-size: 1.2rem;
}

h2 {
    font-size: 1.2rem;
    color: #2c6132;
    padding-bottom: .25rem;
}

ul {
    list-style: none;
    font-size: .875rem;
}

ul li {
    padding: 0 0 6px 2rem;
}

ul li:before {
    content: url("../images/check.jpg");
    float: left;
    margin-left: -2rem;
}

.section {
    display: flex;
    padding: 1.5rem 0 .625rem;
    position: relative;
}

.section::after {
    content: url("../images/mann.jpg");
    position: absolute;
    bottom: -.35rem;
    left: 41%;
}

.section>div:first-of-type {
    flex: 60%;
    padding: 0 2rem;
    border-right: 1px solid #2c6132;
}

.section>div:last-of-type {
    flex: 40%;
    padding: 0 2rem;
}

.benefits div {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem 0;
}

.benefits div p {
    padding: 0;
}

.section2 {
    display: flex;
    background-color: #f2f2e9;
    padding: .625rem 0;
    border-top: 1px solid #2c6132;
}

.section2>div:first-of-type {
    flex: 55%;
    padding: 0 2rem;
    border-right: 1px solid #2c6132;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.section2>div:first-of-type p {
    font-size: .875rem;
    padding-bottom: 0;
}

.section2>div:last-of-type {
    flex: 45%;
    padding: 0 2rem;
}

.section2>div:last-of-type p {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0.4rem 0;
}

.location {
    display: flex;

}

.line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.5rem;
    border-right: 1px solid #fff;
    margin-right: 1.5rem;
}

.brands {
    display: flex;
    align-items: center;

    gap: 1rem;
}

footer {
    padding: .5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    background-color: #2c6132;
    font-size: .938rem;
}

footer i {
    font-size: 2rem;
}

i.fa-instagram,
i.fa-linkedin-in {
    background-color: #fff;
    color: #2c6132;
    border-radius: 50%;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul br,
    .section::after {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 44rem) {

    .section,
    .section2 {
        display: block;
    }

    .section>div:first-of-type,
    .section2>div:first-of-type {
        border-right: none;
    }

    .section2>div:first-of-type {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
    }
}

@media only screen and (max-width: 33rem) {
    h1 {
        font-size: 2rem;
    }

    .section>div:first-of-type,
    .section>div:last-of-type,
    .section2>div:first-of-type,
    .section2>div:last-of-type {
        padding: 0 1rem;
    }

    .location,
    .line {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        margin: 0;
        border: none;
    }
}