@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/noto-sans-v42-latin-600.eot');
    src: url('../fonts/noto-sans-v42-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-600.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-600.woff') format('woff'), url('../fonts/noto-sans-v42-latin-600.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-600.svg#NotoSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #141617;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    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;
}


p {
    padding-bottom: .75rem;
}

.justify {
    text-align: justify;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #9c242d;
    font-weight: 600;
    padding: 1.5rem 0 .5rem;
}

h2 {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: normal;
    padding-bottom: .625rem;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.25rem;
    color: #16470f;
    line-height: 1.3;
}

.title {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 1.5rem 0;
}

.info {
    display: flex;
    gap: 0 1rem;
    padding-bottom: .75rem;
}

.info i {
    color: #16470f;
}

.button a {
    min-width: 200px;
    padding: 10px 25px;
    background-color: #9c242d;
    border: 1px solid #871f27;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    transition: .2s;
    margin-bottom: 2rem;
}

.button a:hover {
    background-color: #731a21;
    border-color: #561419;
}

.section {
    background-color: #16470f;
    color: #fff;
    padding: 1.5rem 4rem;
    margin: 0 -4rem 2.5rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.benefits div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .938rem;
}

.benefits div p {
    padding: 0;
    text-align: center;
}

.benefits div i {
    font-size: 1.5rem;
}

.button2 a {
    background: linear-gradient(rgb(156, 36, 45) 5%, rgb(198, 45, 31) 100%) rgb(156, 36, 45);
    border-radius: 5px;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-family: Arial;
    padding: 12px 32px;
    font-size: 15px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    padding: 1.5rem 0;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

header {
    display: flex;
    padding: 1rem 4rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

article {
    padding: 3rem 4rem 0;
}

footer {
    padding: 1rem 4rem;
}

@media only screen and (max-width: 59.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

}

@media only screen and (max-width: 50rem) {
    header {
        padding: 1rem 2rem;
    }

    article {
        padding: 2rem 2rem 0;
    }

    footer {
        padding: 1rem 2rem;
    }

    .justify {
        text-align: left;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        justify-content: center;
        padding: 1rem;
    }

    article {
        padding: 1.25rem 1rem 0;
    }

    footer {
        padding: 1.25rem 1rem 0;
    }

    .section {
        margin-bottom: 1.25rem;
    }

    .title {
        text-align: center;
    }

    .info {
        flex-direction: column;
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .button,
    .button2 {
        display: flex;
        justify-content: center;
    }

    .right {
        align-items: center;
        text-align: center;
    }

}

@media only screen and (max-width: 32rem) {
    .benefits {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}