html {
  scroll-behavior: smooth;
}

body,
* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #32302f;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

li {
  list-style: inside;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0 -5px 15px gray;
          box-shadow: 0 -5px 15px gray;
  padding: 20px 0;
  width: 100vw;
  background-color: #fdec47;
  z-index: 100;
}

@media screen and (max-width: 780px) {
  .header {
    position: relative;
  }
}

.header-container {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 780px) {
  .header-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.header-title {
  text-align: center;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 3px #32302f, -2px 2px 3px #32302f, 2px -2px 3px #32302f, -2px -2px 3px #32302f;
}

@media screen and (max-width: 780px) {
  .header-navigation {
    margin-top: 20px;
  }
}

.header-navigation-link {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  position: relative;
}

.header-navigation-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -5;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.header-navigation-link.active::before, .header-navigation-link:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.card-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: card1;
}

.card-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: card2;
}

.card-3 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: card3;
}

.card-4 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: card4;
}

.card-5 {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: card5;
}

.card-6 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: card6;
}

.cards {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "card2 card1" "card3 card4" "card6 card5";
  margin-top: 74px;
  overflow: hidden;
}

@media screen and (max-width: 780px) {
  .cards {
        grid-template-areas: "card1" "card2" "card3" "card4" "card5" "card6";
  }
}

.cards .card {
  min-height: 50vh;
  max-width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 780px) {
  .cards .card {
    max-width: 100vw;
    min-height: 20vh;
    padding: 5px;
    overflow: hidden;
  }
}

.cards .card .bg-img {
  width: 80%;
}

.logo {
  text-align: center;
}

.logo-title {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 900;
}

@media screen and (max-width: 780px) {
  .logo-title {
    font-size: 2rem;
  }
}

.logo-p {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 900;
}

@media screen and (max-width: 780px) {
  .logo-p {
    font-size: 1rem;
  }
}

.logo-img {
  width: 80%;
  margin-top: 10px;
}

.article {
  width: 90%;
}

.call {
  margin: 45px auto;
}

.call a {
  text-align: center;
  padding: 12px;
  border: 3px solid #32302f;
  border-radius: 15px;
  text-decoration: none;
  background: #fdec47;
  font-weight: bold;
  width: 70%;
}

@media screen and (max-width: 780px) {
  .call a {
    width: 90%;
    padding: 15px;
  }
}

.price li {
  list-style: none;
  font-weight: bold;
  padding: 7px;
}

@media screen and (max-width: 780px) {
  .price li {
    margin-top: 10px;
  }
}

.price li span {
  padding: 6px;
  border-radius: 8px;
  background-color: whitesmoke;
}

.info {
  margin-top: 15px;
}

.instruction {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 10px;
  -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 480px) {
  .instruction {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.video {
  text-align: center;
  padding-bottom: 10px;
}

@media screen and (max-width: 780px) {
  .video iframe {
    width: 90%;
  }
}

.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px;
  position: relative;
  max-width: 200px;
}

@media screen and (max-width: 780px) {
  .download {
    margin: 5px;
  }
}

.download::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: #fdec47;
  border-radius: 20px;
  z-index: -5;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.download:hover::before {
  opacity: 1;
}

.contact {
  background: whitesmoke;
}

.contact div {
  width: 80%;
  margin: 0 auto;
  padding: 40px 10px;
}

@media screen and (max-width: 780px) {
  .contact div {
    width: 100%;
  }
}

.cookies {
  max-width: 1024px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: 3px 3px 5px gray;
          box-shadow: 3px 3px 5px gray;
  text-align: justify;
}

.popInfo {
  position: fixed;
  bottom: 0;
  background-color: white;
  padding: 1rem;
  -webkit-box-shadow: 0 0 25px gray;
          box-shadow: 0 0 25px gray;
}

.popInfo.hide {
  display: none;
}

.popInfo__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}

.popInfo__header button {
  border: 2px solid #32302f;
  border-radius: 5px;
  background-color: #fdec47;
  color: #32302f;
  font-weight: 700;
  padding: 5px 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.popInfo__header button:hover {
  background-color: beige;
}

.popInfo__content {
  text-align: justify;
}

.popInfo a:hover {
  color: blue;
}

footer {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer p {
  text-align: center;
  padding: 10px;
}
/*# sourceMappingURL=style.css.map */