@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3E3A3A;
    font: 1em/1.5em  "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
:is(h2, h3, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.button {
    text-align: center;
}
.button a {
  display: inline-block;
  background: #EE0000;
  padding: 0.6rem 1.5rem;
  margin: 1rem auto;
  cursor: pointer;
  border: 0.1rem solid #EE0000;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  border-radius: 5px;
  color: #fff;
}
.button a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #EE0000;
}
p {
    padding-bottom: 1rem;
}
h1, h2, h3, a.color, .color {
    color: #EE0000;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3;
    margin: 1rem 0 0.5rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 1rem 1rem;
    position: relative;
}
li:before {
    content: url('../images/icon-li.jpg');
    font-size: 1.3rem;
    position: absolute;
    left: -2px;
    top: -2px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
main {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.banner {
    margin: 0 0 1rem;
}
.banner img {
    border-radius: 10px;
}
.info {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    color: #8D8D94;
    font-weight: 600;
}
header {
    padding: 0 0 1rem;
}
article {
    padding: 0;
    flex: 1;
}
.contact {
    border: 1px solid #EDEDED;
    padding: 1rem;
    border-radius: 6px;
    width: fit-content;
}
.contact p {
    padding-bottom: 0.5rem;
}
.flexct {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}
@media only screen and (max-width:1023px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:930px) {
    main {
        flex-direction: column;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul {
        padding-left: 0;
    }
}