@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 0.938em/1.5em "Nunito", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0 1.5rem 1rem;
    box-shadow: 0 0 5px #999;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.25em;
    line-height: 1.1;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.6em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.25rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #000;
    height: 1px;
    margin: 0.5rem -1.5rem;
}
header figure {
    margin: 1.5rem 0;
}
article {
    padding-top: 0.75rem;
}
.top {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: -0.5rem;
    position: relative;
}
.top:before {
    content: '';
    position: absolute;
    top: 0;
    right: 310px;
    width: 1px;
    height: 100%;
    background: #000;
}
.top p {
    padding: 0;
    font-size: 1.313em;
    line-height: 1.2;
    text-align: right;
}
.marb {
    margin-bottom: 1.5rem
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left, .right {
    width: 48%;
}
.offer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
}
.offer .box {
    width: 125px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.offer .box p {
    text-align: center;
}
.offer .box figure img {
    width: 60px;
}
.contact {
    display: flex;
    justify-content: flex-start;
    gap: 0 8rem;
    flex-wrap: wrap;
    padding: 1rem 1rem 0;
}
.ct-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.logos {
    position: absolute;
    right: 1.5rem;
    bottom: 7rem;
}
.button {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}
.button a {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 0.35rem 1.5rem;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .contact {
        gap: 0 2rem;
    }
}
@media only screen and (max-width:768px) {
    .top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .top p {
        text-align: center;
    }
    .top:before {
        display: none;
    }
    .top br {
        display: none;
    }
    .flex, .contact {
        flex-direction: column;
        padding-inline: 0;
    }
    .left, .right {
        width: 100%;
    }
    .ct-box img {
        width: 100px;
    }
    .logos {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    h1 {
        font-size: 1.7em;
    }
    h3 {
        font-size: 1.313em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul {
        padding-left: 0;
    }
}