:root {
  --phone: 480px;
  --tablet: 768px;
  --desktop: 980px;
  --widescreen: 1200px;
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #999;
  --color-blue: #39f;
  --font-sans-serif: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Times New Roman", Times, Baskerville, Georgia, serif;
  --base-background-color: var(--color-white);
  --base-font-family: var(--font-sans-serif);
  --base-font-size: 1.6rem;
  --base-line-height: 1.2;
  --base-text-color: var(--color-black);
  --base-min-width: 320px;
  --base-link-color: var(--color-blue);
  --btn-color: var(--color-white);
  --btn-background: var(--color-blue);
  --btn-padding: 0.4em 0.7em;
  --btn-font-size: 1.6rem;
  --btn-font-family: var(--font-sans-serif);
  --form-font-family: var(--font-sans-serif);
  --form-element-padding: var(--btn-padding);
  --form-element-border-color: var(--color-grey);
  --form-element-focus-border-color: var(--color-black);
  --placeholder-color: var(--color-grey);
  --headings-font-family: var(--font-sans-serif);
  --headings-color: var(--base-text-color);
  --headings-sizes-h1: 3rem;
  --headings-sizes-h2: 2.7rem;
  --headings-sizes-h3: 2.4rem;
  --headings-sizes-h4: 2.1rem;
  --headings-sizes-h5: 1.7rem;
  --headings-sizes-h6: 1.5rem;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-text-color);
  background: var(--base-background-color);
  font: var(--base-font-size)/var(--base-line-height) var(--base-font-family);
  min-width: var(--base-min-width);
}

img {
  max-width: 100%;
  min-height: 1px;
  height: auto;
}

.gm-style img {
  max-width: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: var(--headings-font-family);
  font-weight: bold;
  margin: 0 0 0.5em;
  color: var(--headings-color);
}

h1, .h1 {
  font-size: var(--headings-sizes-h1);
}

h2, .h2 {
  font-size: var(--headings-sizes-h2);
}

h3, .h3 {
  font-size: var(--headings-sizes-h3);
}

h4, .h4 {
  font-size: var(--headings-sizes-h4);
}

h5, .h5 {
  font-size: var(--headings-sizes-h5);
}

h6, .h6 {
  font-size: var(--headings-sizes-h6);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--base-link-color);
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine), (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a:hover {
    text-decoration: none;
  }
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  font-family: var(--form-font-family);
  border-radius: 0;
  border: 0.1rem solid var(--form-element-border-color);
  padding: var(--form-element-padding);
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: var(--form-element-focus-border-color);
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--placeholder-color);
}
input[type=text]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--placeholder-color);
}
input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--placeholder-color);
}
input[type=text].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=search].placeholder,
input[type=password].placeholder,
textarea.placeholder {
  color: var(--placeholder-color);
}

select {
  border-radius: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--form-font-family);
}

body {
  font-family: "Dongle", sans-serif;
  font-size: 18px;
  background-color: #fff;
}
@media screen and (min-width: 747px) {
  body {
    font-size: 24px;
  }
}

a {
  text-decoration: none;
  color: #000;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.borders {
  width: 90%;
  margin: 0 auto;
}

.button {
  padding: 5px 10px;
  background-color: #24deea;
  border: 2px solid #24deea;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s;
}
.button:hover {
  background-color: #ee1800;
  border-color: #ee1800;
}

.back {
  display: block;
  margin: 4vw 0 4vw 5vw;
}
@media screen and (min-width: 747px) {
  .back {
    margin-top: 1vw;
  }
}
.back:hover {
  color: #24deea;
}

.bottomLink {
  display: block;
  margin: 10vw 0;
  text-align: center;
  text-decoration: underline;
}
@media screen and (min-width: 747px) {
  .bottomLink {
    margin-top: 3vw;
  }
}
.bottomLink:hover {
  color: #24deea;
  text-decoration: underline;
}

.main {
  margin: 0 auto;
}
@media screen and (min-width: 747px) {
  .main {
    max-width: 1200px;
  }
}

.header {
  background-color: #fff;
}
.header__title {
  width: 60vw;
  margin: 0 auto;
  padding-top: 2vw;
}
@media screen and (min-width: 747px) {
  .header__title {
    width: 30vw;
  }
}
.header__nav--list {
  display: flex;
  justify-content: center;
  margin-bottom: 10vw;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 747px) {
  .header__nav--list {
    margin-bottom: 3vw;
  }
}
.header__nav--item {
  position: relative;
  flex-grow: 1;
  text-align: center;
}
.header__nav--item:last-child {
  border-width: 0;
}
.header__nav--link {
  display: block;
  padding: 1vw 0;
  background-color: inherit;
  text-transform: uppercase;
}
.header__nav--link:hover {
  font-weight: bold;
  transition: all 0.5s;
}
.on .header__nav--link {
  color: #ee1800;
  font-weight: bold;
}

@media screen and (min-width: 747px) {
  .products {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.products__item {
  position: relative;
  overflow: hidden;
  margin: 3vw 3vw 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.products__link {
  display: block;
}
.products__pic {
  display: block;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.products__brand {
  display: block;
}
.products__icons {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  display: flex;
}
.products__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 20vw;
  height: 20vw;
  margin: 0 4vw;
  border-radius: 50%;
  border: 1px solid #24deea;
  background-color: #fff;
  cursor: pointer;
  transform: translate3d(0, 0, 0) scale(1.1) translateY(-300%);
  opacity: 0;
  transition: color 0.2s, transform 0.5s, opacity 0.9s;
}
@media screen and (min-width: 747px) {
  .products__icon {
    width: 8vw;
    height: 8vw;
    margin: 0 1vw;
  }
}
.products__icon--1 {
  transition-delay: 0.4s;
}
.products__icon--2 {
  transition-delay: 0.6s;
}
.products__item:hover .products__icon {
  opacity: 0.8;
  transition-delay: 0s;
  transform: translate3d(0, 0, 0) scale(1.1) translateY(0%);
}
.products__icon:hover {
  color: #24deea;
  font-weight: bold;
}
.products__icon--legend {
  display: block;
  flex-wrap: wrap;
  font-size: 0.8em;
}
.products__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
}
@media screen and (min-width: 747px) {
  .products__title {
    font-size: 16px;
  }
}
.products__logo {
  width: 6vw;
  margin-right: 2vw;
}
@media screen and (min-width: 747px) {
  .products__logo {
    width: 3vw;
    margin-right: 1vw;
  }
}

.product__title {
  margin: 2vw 0 6vw;
  text-align: center;
  font-size: 25px;
}
@media screen and (min-width: 747px) {
  .product__title {
    margin-bottom: 2vw;
    font-size: 30px;
  }
}
.product__intro {
  margin-bottom: 8vw;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  line-height: 1;
  font-style: italic;
  border: 1px solid #24deea;
}
@media screen and (min-width: 747px) {
  .product__intro {
    margin-bottom: 2vw;
  }
}
.product__slider--pic {
  width: 100vw;
}
.product__slider .slick-dots {
  bottom: auto;
  top: -25px;
}
@media screen and (min-width: 747px) {
  .product__slider .slick-dots {
    top: auto;
    bottom: 25px;
  }
}
.product__slider .slick-dots li button::before {
  opacity: 1;
  border-radius: 50%;
}
@media screen and (min-width: 747px) {
  .product__slider .slick-dots li button::before {
    font-size: 10px;
    border: 1px solid #24deea;
  }
}
.product__slider .slick-dots li.slick-active button:before {
  color: #24deea;
}
.product__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__button {
  display: flex;
  align-items: center;
  line-height: 0.6;
  padding-right: 20px;
  margin: 0 10px;
}
.product__button-logo {
  height: 50px;
}
.product__button-site {
  display: block;
}
.product__table {
  width: 90vw;
  margin-top: 6vw;
  margin-bottom: 6vw;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-collapse: collapse;
}
@media screen and (min-width: 747px) {
  .product__table {
    width: 70vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
}
.product__table th,
.product__table td {
  width: 50%;
  padding: 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 747px) {
  .product__table th {
    width: 30%;
  }
}
@media screen and (min-width: 747px) {
  .product__table td {
    width: 70%;
  }
}

.contact__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2vw;
  text-align: center;
  font-style: italic;
}
.contact__intro-pic {
  width: 30vw;
}
@media screen and (min-width: 747px) {
  .contact__intro-pic {
    width: 150px;
  }
}
.contact__intro-quotes {
  font-size: 2em;
  line-height: 0.4;
}
.contact .mapouter {
  position: relative;
  text-align: right;
  width: 100%;
}
.contact .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 200px;
}
@media screen and (min-width: 747px) {
  .contact .gmap_canvas {
    height: 500px;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding-top: 30px;
  background-color: #24deea;
  text-align: center;
}
/*# sourceMappingURL=styles.css.map */