:root {
  --menu-bg-color: rgba(0, 0, 0, 1);
  --menu-color: #888;
  --primary-color: #444;
  --text-color: #555;
  --blue-color: rgba(71, 141, 177, 1);
  --blue-color2: rgba(71, 141, 177, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.4px;
}

a, a:visited {
  color: var(--blue-color);
}

/* Navigation Menu */
.menu-wrap {
  position: sticky;
  background-color: var(--menu-bg-color);
  text-transform: uppercase;
  height: 60px;
  z-index: 3;
  font-size: 1.2rem;
}
.logo-navi {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.logo img {
  padding: 8px 10px 0px 10px;
  height: 50px;
  opacity: 0.9;
}
.logo img:hover {
  opacity: 1;
  transition: all 0.4s ease;
}
.navi ul {
  display: none;
  list-style: none;
  flex-flow: column nowrap;
}
.navi ul li a {
  color: #AAA;
  padding: 11px 16px;
  transition: all 0.4s ease;
}
.navi ul li a:hover {
  color: #fff;
  transition: all 0.4s ease;
}
.toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--menu-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hamburger Lines */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: var(--menu-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}
.menu-wrap .hamburger > div::after {
  top: 10px;
}
/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}
/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Breadcrums */
.breadcrumb-container {
  font-size: 1.0rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background-color: #EEE;
  text-transform: uppercase;
  padding: 15px 0;
}
.breadcrumb-item,
.breadcrumb-item-final {
  color: var(--primary-color);
  display: inline-block;
  padding: 0 15px;
}
.breadcrumb-item {
  border-style: solid;
  border-color: var(--primary-color);
  border-width: 0 2px 0 0;
}
.breadcrumb-item a,
.breadcrumb-item-final a {
  color: var(--primary-color);
}
.breadcrumb-item a:hover,
.breadcrumb-item-final a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  display: flex;
  flex-flow: column nowrap;
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 10px 20px;
}
.container > h1,
.container > h2 {
  color: var(--text-color);
  padding: 20px 20px 30px;
  font-size: large;
  text-align: center;
  font-weight: 480;
  text-transform: uppercase;
  /* letter-spacing: 1.5px; */
}
.container h2 {
  padding: 10px;
  font-size: large;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}


.contact-wrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
}
.contact-group {
  /* box-shadow: 4px 4px 24px var(--blue-color2); */
  box-shadow: 0px 2px 4px var(--primary-color);
  /* border: 1.5px solid var(--blue-color2); */
  border: 1.5px solid var(--primary-color);
  border-radius: 8px;
  align-self: center;
  padding: 30px;
  margin-bottom: 20px;
  min-width: 300px;
  font-weight: lighter;
}
.contact-group > h2 {
  color: var(--text-color);
  font-size: larger;
  font-weight: normal;
  padding: 0 0 20px 0;
  line-height: 15px;
  text-align: left;
}
.contact-group > p {
  color: var(--text-color);
  padding-bottom: 10px;
  font-weight: normal;
}




.pro-head {
  display: flex;
  flex-flow: column;
}
.pro-slide-wrap {
  align-self: center;
  min-width: 320px;
  height: 260px;
  display: flex;
  flex-flow: row;
}
.pro-info {
  align-self: center;
  max-width: 500px;
  padding-left: 10px;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  min-height: 220px;
}
.pro-info .name {
  font-size: x-large;
  font-weight: normal;
  color: var(--text-color);
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  padding: 0;
}
.pro-info .desc {
  font-size: medium;
  font-weight: normal;
  color: var(--text-color);
}
.pro-info .price {
  font-size: xx-large;
  color: var(--blue-color);
  line-height: 64px;
}
.pro-info .dollar {
  font-size: large;
  color: var(--blue-color);
  vertical-align: top;
  line-height: 60px;
}
.pro-info .options {
  display: flex;
  flex-flow: row wrap;
}
.pro-info .opt-item {
  text-align: center;
  font-size: medium;
  color: var(--blue-color);
  margin: 3px;
  padding: 8px;
  border: 1.5px solid var(--blue-color);
  cursor: pointer;
}
.pro-info .opt-item:hover,
.pro-info .active {
  background-color: var(--blue-color);
  color: white;
}
.pro-info .fine-print {
  font-size: small;
  color: var(--text-color);
  letter-spacing: 0;
  margin-top: 12px;
}
.pro-slides {
  display: none;
  justify-content: center;
  margin: auto;
}
.pro-slides img {
  max-height: 260px;
  max-width: 260px;
}
.pro-slide-wrap > .prev,
.pro-slide-wrap > .next {
  align-self: center;
  padding: 10px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}
.pro-slide-wrap > .prev:hover,
.pro-slide-wrap > .next:hover {
  background-color: #DDD;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@media screen and (min-width: 500px) {
  .pro-slide-wrap {
    height: 320px;
    min-width: 360px;
  }
  .pro-slides img {
    max-height: 300px;
    max-width: 300px;
  }
}
@media screen and (min-width: 720px) {
  .pro-head {
    flex-flow: row;
    justify-content: space-around;
  }
  .pro-info {
    width: 50%;
  }
}




.link-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: auto;
  max-width: 960px;
  border-top: 1px solid var(--text-color);
  margin-top: 30px;
  padding-top: 10px;
  /* background-color: #eee; */
}
.link-small {
  align-self: center;
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 20px;
  cursor: pointer;
}
.link-small img {
  width: 48px;
  align-self: center;
}
.link-small span {
  padding: 10px;
  font-size: medium;
  /* text-transform: uppercase; */
}




.explain-section {
  display: flex;
  margin: auto;
  /* justify-content: center; */
  flex-flow: column;
  padding: 0 10px;
  max-width: 960px;
}
.explain-section > h2 {
  color: var(--text-color);
  padding: 20px 10px 10px 6px;
  font-size: large;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.explain-section p {
  color: var(--text-color);
  padding: 3px 0 10px 6px;
  font-size: small;
  font-weight: normal;
  letter-spacing: 0.4px;
  line-height: 26px;
}
.explain-section ul {
  color: var(--text-color);
  margin-left: 10px;
  font-size: small;
  font-weight: normal;
  letter-spacing: 0.4px;
  line-height: 30px;
  list-style-type: disc;
}
.explain-section .row-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.explain-section img {
  align-self: center;
  max-width: 912px;
  margin: 10px 5px;
}
.explain-section .row-box img {
  max-width: 98%;
}
.explain-section .row-box iframe {
  margin: 8px 0;
}
.explain-section img.full-width {
  width: 100%;
}
.explain-section .accordion {
  background-color: #fff;
  box-shadow: 1px 1px 10px #ddd;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 3px;
  padding: 14px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  font-weight: normal;
  transition: 0.3s;
  margin-bottom: 3px;
}
.explain-section .active,
.explain-section .accordion:hover {
  background-color: var(--blue-color2);
}
.explain-section .accordion:after {
  content: '\002B';
  color: var(--text-color);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.explain-section .active:after {
  content: "\2212";
}
.explain-section .panel {
  color: var(--text-color);
  padding: 6px 0px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.explain-section table {
  margin-bottom: 20px;
}
.explain-section table,
.explain-section th,
.explain-section td {
  color: var(--text-color);
  border: 1px solid #ddd;
  border-collapse: collapse;
  font-size: small;
}
.explain-section th,
.explain-section td {
  padding: 10px;
}
.explain-section th,
.explain-section td {
  text-align: center;
}
.explain-section th:first-child,
.explain-section td:first-child {
  text-align: left;
}
.explain-section tr:nth-child(even) {
  background-color: #eee;
}
.explain-section tr:nth-child(odd) {
  background-color: #fff;
}
.explain-section th {
  color: white;
  background-color: var(--blue-color);
}

.support-dropdown {
  align-self: center;
  position: relative;
  display: inline-block;
}
.support-select {
  width: 280px;
  height: 45px;
  font-size: larger;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  background-color: white;
  border-width: 2px;
  margin-bottom: 5px;
}
.support-select:hover {
  box-shadow: 2px 2px 12px var(--text-color);
}
.support-list {
  display: none;
  flex-flow: column wrap;
  position: absolute;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}
.support-product {
  font-size: large;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  display: block;
  cursor: pointer;
  border: 1px solid #eee;
}
.support-product:hover {
  background-color: #ccc
}
.support-dropdown .show {
  display:flex;
}
.support-group > h2 {
  margin-top: 25px;
  border-bottom: 1px solid #000;
  margin-bottom: 8px;
  text-align: left;
}
.support-item {
  display: block;
  padding: 14px;
  border-bottom: 1px solid #ccc;
}
.hide {
  display: none;
}
.support-item a {
  letter-spacing: 0px;
}
.support-info,
.support-info-last {
  display: inline-block;
  margin-top: 6px;
  letter-spacing: 0px;
}
.support-info {
  margin-right: 35px;
}







.hero {
  position: relative;
}
.hero img {
  position: relative;
  top: -20px;
  width: 100%;
}
.slide-hero {
  position: absolute;
  right: 0;
  top: 0;
  width: 42.3%;
  display: none;
}
.slide-hero img {
  top: 0;
  opacity: 0.5;
}
.slide-text {
  position: relative;
  color: #EEE;
  bottom: 40px;
  padding: 5px;
  margin-top: -10px;
  cursor: pointer;
  transition: background-color 0.4s ease;
  font-size: 13px;
  font-weight: 450;
  text-align: center;
  background-color: #33333399;
  /* text-shadow: 2px 2px 10px #000; */
  text-transform: uppercase;
}
.slide-text:hover {
  background-color: #333333EE;
}
@media screen and (min-width: 650px) {
  .slide-text {
    bottom: 32px;
    padding: 8px;
    font-size: 17px;
  }
}
@media screen and (min-width: 750px) {
  .slide-text {
    bottom: 36px;
    font-size: 20px;
  }
}


/* .spreuk {
  position: absolute;
  max-width: 44%;
  left: 55%;
  top: 122px;
  font-size: medium;
  overflow: hidden;
  font-family: serif;
  color: #fff;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, .2);
  z-index: 1;
}
@media screen and (min-width: 500px) {
  .spreuk {
    font-size: larger;
    top: 170px;
  }
}
@media screen and (min-width: 760px) {
  .spreuk {
    font-size: x-large;
    top: 220px;
  }
} */


.featured-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}
.featured-1line {
  position: relative;
  border-bottom: 4px solid #000;
  visibility: hidden;
  display: flex;
  flex-flow: row nowrap;
  overflow: hidden;
  justify-content: center;
  height: 370px;
  align-content: center;
  align-items: flex-start;
  justify-items: center;
}
.featured-1line > .prev,
.featured-1line > .next {
  position: absolute;
  top: 64px;
  padding: 18px 10px;
  color: var(--primary-color);
  font-size: 26px;
  transition: 0.6s ease;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  z-index: 1;
}
.featured-1line > .prev {
  left: 0;
}
.featured-1line > .next {
  right: 0;
}
.featured-1line .prev:hover,
.featured-1line .next:hover {
  background-color: #DDD;
}
.featured-1line > .intro {
  background-color: #DDD;
  opacity: 0.8;
}
.featured-item {
  display: flex;
  border-radius: 12px;
  flex-flow: column nowrap;
  background-color: #FFF;
  width: 305px;
  padding: 16px;
  margin: 2px;
  align-items: center;
  justify-items: center;
  color: var(--primary-color);
  opacity: 0.95;
  transition: 0.4s ease;
}
.featured-item:hover {
  padding-top: 14px;
  padding-bottom: 18px;
  transition: 0.4s ease;
  box-shadow: 3px 3px 20px #DDD;
}
.featured-item > img {
  display: block;
  padding-bottom: 12px;
  max-width: 250px;
}
.featured-item > h2 {
  color: var(--primary-color);
  padding-bottom: 10px;
  font-size: 1.3em;
  font-weight: 500;
}
.featured-item > p {
  color: var(--primary-color);
  font-size: large;
  font-weight: 360;
  letter-spacing: 0px;
  word-spacing: 0.2px;
}
.featured-item > li {
  color: var(--primary-color);
  font-size: medium;
  font-weight: 360;
  letter-spacing: 0px;
  word-spacing: 0.2px;
}


.option-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}
.option-item {
  display: flex;
  border-radius: 12px;
  border-width: 2px;
  border-style: solid;
  border-color: #EEE;
  flex-flow: column nowrap;
  max-width: 350px;
  padding: 16px;
  margin: 2px;
  align-items: center;
  justify-items: center;
  color: var(--primary-color);
  opacity: 0.95;
  transition: 0.4s ease;
  min-height: 360px;
}
.option-item > img {
  display: block;
  padding-bottom: 12px;
  max-width: 460px;
}
.option-item > h2 {
  color: var(--primary-color);
  padding-top: 0px;
  padding-bottom: 16px;
  font-size: 1.3em;
  font-weight: 600;
}
.option-item > p {
  color: var(--primary-color);
  font-size: large;
  font-weight: 360;
  letter-spacing: 0px;
  word-spacing: 0.2px;
}
.option-item > li {
  color: var(--primary-color);
  font-size: medium;
  font-weight: 360;
  letter-spacing: 0px;
  word-spacing: 0.2px;
  list-style-type: none;
}






.app-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.app-over {
  position: relative;
  background-color: #000;
  max-width: 100%;
  min-width: 270px;
  z-index: 2;
}
.app-over img {
  width: 100%;
  opacity: 0.5;
  z-index: 0;
}
.app-over h3 {
  position: absolute;
  text-transform: uppercase;
  top: 45%;
  padding: 4px 8px;
  margin-top: -10px;
  font-size: 16px;
  font-weight: 450;
  text-align: center;
  width: 100%;
  color: #FFF;
  z-index: 1;
}
.app-over:hover img {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.4s ease;
}
.app-over:hover p,
.app-over:hover h3 {
  cursor: pointer;
}
.app-over p {
  display: none;
  position: absolute;
  font-weight: 300;
  top: 12%;
  left: 0;
  padding: 10px;
  color: #FFF;
  z-index: 3;
  /* text-align: center; */
}
@media screen and (min-width: 400px) {
  .app-over h3 {
    margin-top: -13px;
    font-size: 20px;
  }
}
.desc-show p {
  display: block;
  z-index: 3;
}
.desc-show img {
  opacity: 0.1;
}
.desc-show h3 {
  top: -2px;
  margin-top: 0;
}
.desc-show:hover img {
  opacity: 0.2;
}
@media screen and (min-width: 720px) {
  .app-over {
    max-width: 50%;
  }
  .app-over p {
    padding: 16px;
  }
  .desc-show h3 {
    top: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .app-over p {
    padding: 16px 30px;
  }
}


/* show menu */
.menu-wrap .toggler:checked ~ .logo-navi {
  flex-direction: column;
  align-items: center;
  background-color: var(--menu-bg-color);
  opacity: 0.95;
}
.menu-wrap .toggler:checked ~ .logo-navi > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-wrap .toggler:checked ~ .logo-navi > nav > ul li a {
  line-height: 50px;
}

footer {
  color: var(--primary-color);
  text-align: center;
  padding: 25px;
}


@media screen and (min-width: 500px) {
  .explain-section .accordion {
    font-size: large;
  }
  .container > h1,
  .container > h2,
  .explain-section > h2 {
    font-size: 1.5rem;
  }
  .explain-section p {
    font-size: medium;
    line-height: 30px;
  }
  .explain-section table,
  .explain-section th,
  .explain-section td {
    font-size: medium;
  }
}

/* as skerm groot is.. */
@media screen and (min-width: 720px) {
  .navi ul li a {
    line-height: 60px;
  }
  .explain-section p,
  .explain-section ul {
    font-size: medium;
    padding: 0px 10px 16px 16px;
  }
  .menu-wrap {
    font-size: 0.95rem;
  }
  .menu-wrap .hamburger {
    display: none;
  }
  .navi ul {
    display: flex;
    flex-flow: row nowrap;
  }
  .contact-wrap {
    flex-flow: row;
  }
}

/* as skerm groot is.. */
@media screen and (min-width: 960px) {
  .navi ul li a {
    line-height: 80px;
  }
  .menu-wrap {
    font-size: 1.1rem;
    height: 80px;
  }
  .logo img {
    padding-top: 9px;
    height: 70px;
  }
}





