/* @import url(fontawesome-all.min.css); */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300");

*,
*:before,
*:after {
  box-sizing: inherit;
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  user-select: none;
}
body {
  margin: 0;
}
/* Menu */
#header {
  width: 100%;
  z-index: 10001;
  padding: 0 1rem;
  background-color: var(--tertiary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
a {
  text-decoration: none;
}
aside {
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: baseline;
}
h1 {
  width: 100%;
  font-size: 3rem;
  margin: 0;
  text-align: center;
}
.header-p {
  font-size: 1.5rem;
  padding: 0;
}

nav {
  width: 100%;
  text-transform: uppercase;
}
nav ul {
  display: flex;
  font-size: 1.5rem;
  justify-content: space-evenly;
}
nav a {
  padding: 0.5rem;
  border-radius: 5px;
}
nav a:hover {
  background-color: var(--primary);
  color: var(--secondaryDark);
}
a.active-page,
a.active-page:hover {
  background-color: var(--primaryDark);
  color: var(--secondary);
}
#burger-check {
  display: none;
}
.burger {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
.burger label {
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 50px;
  padding: 13px;
  position: relative;
}
.burger label:hover span,
#burger-check:checked ~ .burger label span {
  border-top: 2px solid var(--secondary);
}
.burger:hover .menu {
  color: var(--secondary);
}
#burger-check:checked ~ .burger label span:nth-child(2),
#burger-check:checked ~ .burger .menu {
  display: none;
}
#burger-check:checked ~ .burger label span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  position: absolute;
  bottom: 45%;
  left: 30%;
}
#burger-check:checked ~ .burger label span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  position: absolute;
  top: 40%;
  left: 40%;
}

.burger span {
  width: 25px;
  height: 10px;
  border-top: 2px solid var(--primary);
}
nav {
  flex-direction: column;
  position: absolute;
  width: 270px;
  background-color: var(--secondary);
  height: 0px;
  transition: all 0.3s ease-in;
  top: 0px;
  left: 0px;
  position: fixed;
}
nav ul {
  padding-top: 5dvh;
  padding-left: 2dvh;
  flex-direction: column;
  gap: 5dvh;
  list-style: none;
}

#burger-check:not(:checked) ~ nav {
  height: 0px;
}
#burger-check:not(:checked) ~ nav ul {
  display: none;
}
#burger-check:checked ~ nav {
  height: 100%;
  min-height: 100dvh;
  width: 270px;
  overflow-y: auto;
}
/* MAIN */
body {
  background-color: var(--tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inner {
  max-width: 1000px;
  background-color: white;
  padding: 1rem;
  margin: auto;
}
#main {
  width: 100%;
  display: flex;
  justify-content: center;
}
.carbon {
  color: var(--tertiaryDark);
}

.table2 {
  display: none;
}
.video {
  width: 100%;
  max-width: 400px;
  padding: 0 2rem;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.table1,
.table2 {
  margin: auto;
  margin-top: 1rem;
  border-collapse: collapse;
  border: 2px solid rgb(200, 200, 200);
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 0.8rem;
  max-width: 900px;
}
thead,
tfoot {
  background-color: #333;
  color: var(--primary);
}
td,
th {
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
}

td {
  text-align: center;
}

tr:nth-child(even) {
  background-color: #eee;
}

th[scope="col"] {
  background-color: #696969;
  color: #fff;
}

th[scope="row"] {
  background-color: #141414;
  color: red;
}

caption {
  padding: 10px;
  caption-side: bottom;
}

/* table */
.other h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
}
.other h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 2rem;
}
.other h4 {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 2rem;
}
.other div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.index {
  width: 1rem;
  height: 1rem;
  background-color: wheat;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.index a {
  color: var(--primary);
}
.col-abso {
  position: relative;
}
.index1 {
  position: absolute;
  right: 5%;
  top: 5%;
}
.other {
  display: flex;
  flex-direction: column;
}
.other-li {
  display: flex;
  width: 100%;
  justify-content: start;
  margin-bottom: 0.5rem;
  padding-left: 1px;
  align-items: center;
}
.other-li::before {
  content: "*";
}
.other-li p {
  padding-left: 5px;
}
.other .price {
  color: var(--primaryDark);
  width: 20%;
  text-align: right;
  padding-right: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}
.notes {
  display: flex;
  gap: 5px;
  font-size: 0.8rem;
}
#anchor-bottom {
  position: absolute;
  top: -5rem;
}
.row div,
.row-div {
  margin-top: 1rem;
}

.star {
  color: var(--primary);
  margin-left: 2px;
}
/* table */

@media screen and (max-width: 480px) {
  .table2 {
    max-width: 92vh;
    margin: auto;
  }
  .video {
    max-width: 100vw;
    padding: 0;
    margin: 0;
  }
  video {
    max-width: 300px;
  }
}

/* Footer */

#contact {
  padding: 4rem 0 1.6rem 0;
  text-align: center;
  width: 100dvw;
}
#contact a {
  color: var(--secondary);
}
#menu-legals {
  list-style: none;
  width: 100dvw;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--tertiaryDark);
  padding: 2rem 0;
  position: absolute;
  left: 0;
  justify-content: space-around;
}
#menu-legals a:hover {
  color: var(--primary);
}
#contact .alt-icons {
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: center;
}
#contact .alt-icons li {
  padding: 0;
  border: solid 1px var(--bgtxtLight);
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .alt-icons li:nth-child(5) {
  border-radius: 0 3px 3px 0;
}
#contact .alt-icons li:nth-child(1) {
  border-radius: 3px 0 0 3px;
}
#contact .alt-icons li:hover {
  border: solid 1px var(--bgtxt);
}
#contact .icon a {
  padding: 0.5rem;
}

#contact .alt-icons img {
  width: 30px;
}
.icon-footer {
  padding: 0.5rem;
}
@media screen and (max-width: 736px) {
  h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .header-p {
    font-size: 1rem;
    text-align: center;
  }
  #menu .close {
    height: 4em;
    line-height: 4em;
  }
  #menu {
    padding: 2.5em 1.75em;
  }
  .table1 {
    display: none;
  }
  .table2 {
    display: inherit;
    width: 100%;
  }
  .index1 {
    position: absolute;
    right: 1%;
    top: 1%;
  }
  th[scope="row"] {
    background-color: #696969;
    color: #fff;
  }

  th[scope="col"] {
    background-color: #141414;
    color: red;
  }
}
