@charset "utf-8";
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #575756;
  font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
}
p a.ins{
  text-decoration: underline;
}
article p {
  padding-bottom: 1.25rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.1em;
}
h1 span{
  font-size: 0.7em;
}
h2 {
  font-size: 1.6em;
  line-height: 1.3em;
  padding: 1.5rem 0 0.5rem;
}
h3 {
  padding: 1.5rem 0;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.1em;
  text-align: center;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul {
  padding: 0 0 0.75rem;
  list-style: none;
}
li {
  padding: 0 0 0.5rem 1rem;
}
ul li:before {
  content: "•";
  font-size: 1.8em;
  float: left;
  margin: 1px 0 0 -1rem;
  color: #28b8ce;
}
.logo {
  padding: 1rem 2rem 2rem;
  background: #28B8CE;
  display: flex;
  justify-content: center;
}
article {
  padding: 2rem;
}
.benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
}
.benefits p {
  width: 200px;
  height: 200px;
  border: 2px solid #28B8CE;
  font-size: 1.15em;
  line-height: 1.5em;
  position: relative;
  text-align: center;
}
.data {
  width: 200px;
  height: 200px;
  background: #28B8CE;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 1rem;
}
.title {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #28B8CE;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
}
.benefits p:hover .data {
  opacity: 1;
}
.benefits p:hover .title {
  opacity: 0;
}
footer {
  padding: 2rem;
  background: #28B8CE;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
span {
  display: inline-block;
}
footer p {
  color: #fff;
}
footer p img {
  vertical-align: -2px;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  .benefits {
    justify-content: space-around;
  }
  h3 br {
    display: none;
  }
}
@media only screen and (max-width:600px) {
  footer {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  footer p {
    text-align: center;
  }
}
@media only screen and (max-width:480px) {
  article, footer {
    padding: 1rem;
  }
  h1 {
    font-size: 1.8em;
  }
}