html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption,
header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
header, hgroup, menu,
section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: f1;
  src: url("../fonts/HPSIMPLIFIED-REGULAR.TTF");
}

@font-face {
  font-family: f2;
  src: url("../fonts/HPSIMPLIFIED-LIGHT.TTF");
}

@font-face {
  font-family: f3;
  src: url("../fonts/HPSIMPLIFIED.TTF");
}

body {
  font-family: f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
  font-family: f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
}

h2 {
  font-family: f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
}

h3 {
  font-family: f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.1rem;
}

strong {
  font-family: f3, f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

em {
  font-weight: bold;
}

sup {
  vertical-align: super;
  font-size: 0.6rem;
}

input,
label,
select,
textarea {
  font-family: f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hp {
  color: #00a1dd;
}

.desktop {
  display: none;
}

.mobile {
  display: block;
}

@media screen and (min-width: 80rem) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
}

.btn {
  width: 8em;
  border-radius: 0.3rem;
  border-style: solid;
  border-color: #00a1dd;
  border-width: 1px;
  text-decoration: none;
  color: #00a1dd;
  text-align: center;
  padding: 1rem;
  -webkit-transition: color, background-color 0.3s;
  transition: color, background-color 0.3s;
}

.btn:hover {
  color: white;
  background-color: #00a1dd;
}

.titleBar {
  max-width: 80rem;
  margin: auto;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.titleBar__logo {
  height: 4rem;
  margin: 0 1rem;
}

.titleBar__logo--small {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 2rem;
}

.titleBar__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: auto;
}

.titleImage__img {
  width: 100%;
}

.titleText {
  font-family: f2, f1, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.titleText__text {
  max-width: 40rem;
  padding: 0 2rem;
  margin: 2rem auto;
  text-align: center;
  line-height: 2em;
}

.titleText__text--big {
  font-size: 2.5rem;
  line-height: 3rem;
}

.titleText__text--bold {
  font-family: f1, f2, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}

.product {
  display: -ms-grid;
  display: grid;
      grid-template-areas: ". image" "name image" "title image" "note image" "btn image" ". image";
  max-width: 80rem;
  margin: auto;
  background-color: #f1f1f1;
  padding: 2rem;
  gap: 2rem;
}

.product--noname {
      grid-template-areas: ". image" "title image" "note image" "btn image" ". image";
}

.product--noname .product__title,
.product--swap--noname .product__title {
  font-size: 1.5rem;
}

.product--swap {
      grid-template-areas: "image ." "image name" "image title" "image note" "image btn" "image .";
  background-color: white;
}

.product--swap--noname {
      grid-template-areas: "image ." "image title" "image note" "image btn" "image .";
  background-color: white;
}

.product__img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: image;
  margin: auto;
  height: 360px;
}

.product__name {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: name;
  font-weight: bold;
  max-width: 30rem;
  font-size: 1.5rem;
}

.product--noname .product__name,
.product--swap--noname .product__name {
  display: none;
}

.product__title {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: title;
  line-height: 2rem;
  max-width: 30rem;
  font-weight: bold;
}

.product__note {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: note;
  line-height: 2rem;
  max-width: 30rem;
}

.product__btn {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
  grid-area: btn;
}

@media screen and (max-width: 50rem) {
  .product {
        grid-template-areas: "name" "image" "title" "note" "btn";
    text-align: center;
  }
  .product__name {
    margin: auto;
  }
  .product__title {
    margin: auto;
  }
  .product__note {
    margin: auto;
  }
  .product__btn {
    margin: auto;
  }
}

.contact {
  background-color: #0049DE;
  color: white;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  max-width: 80rem;
  margin: auto;
}

.contact__block__form {
  padding: 2rem 0;
}

.contact__block__info {
  padding: 2rem;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 40rem;
  margin: auto;
}

.contact__block__info__logo {
  height: 5rem;
}

.contact__block__info__logo--small {
  height: 3rem;
}

@media screen and (max-width: 80rem) {
  .contact__block {
    -ms-grid-columns: none;
        grid-template-columns: none;
  }
}

.footer {
  color: white;
  background-color: black;
}

.footer__note {
  font-family: f2, f1, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.75rem;
  padding: 2rem;
  line-height: 1.5rem;
  max-width: 80rem;
  margin: auto;
}
/*# sourceMappingURL=index.css.map */