@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #262626;
  font-family: 'Carlito', Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 880px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 4rem 2rem 1rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.692em;
  line-height: 1.1em;
  color: #DAD4A3;
  font-family: Arial, sans-serif;
}
h1 span {
  font-weight: normal;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 1rem;
  text-decoration: underline;
}
h3 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.25rem;
}
a {
  color: #000;
  text-decoration: none;
}
a ins {
  color: #0563C1;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.black {
  color: #000;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.5rem;
}
li:before {
  content: "\1424";
  float: left;
  margin: 1px 0 0 -1.3rem;
}
header {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
header, .left {
  width: 57%;
}
.center, h1, .big {
  text-align: center;
}
.big {
  font-size: 1.25em;
  line-height: 1.3;
}
.flex {
  display: flex;
  justify-content: space-between;
  color: #C55A11;
  font-style: italic;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.flex img {
  display: block;
  margin: 0 auto 1rem;
}
.box {
  padding: 4rem 1.5rem;
  background: #D9D3A3;
  width: 37%;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.4;
}
.box img {
  display: block;
  margin-bottom: 2rem;
}
footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
footer p {
  font-size: 0.725rem;
  line-height: 1.3;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
  header, .left, .box {
    width: auto;
  }
  .box {
    padding: 1rem;
    margin-bottom: 1rem;
    position: static;
  }
  footer {
    flex-direction: column;
  }
}