/* Base Setup and Defaults */
/* Colors */
/* Responsive */
:root {
  --shadow-s: inset 0 1px 2px #ffffff30,
        0 1px 2px #00000030,
        0 2px 4px #00000015;
  --shadow-m: inset 0 1px 2px #ffffff50,
    0 2px 4px #00000030,
    0 4px 8px #00000015;
  --bg-light: oklch(0.3 0 264);
  --max-page-width: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 300px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 250px;
  }
}
body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1;
  padding: 0 2rem !important;
  background-image: url(./assets/img/bg_test.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-attachment: fixed;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  body {
    padding: 0 !important;
  }
}
h1 {
  font-size: 2em;
}
h2,
.wp-block-heading {
  font-size: 1.5em;
  font-size: x-large;
  margin-bottom: 1.2rem;
}
h3 {
  font-size: 1.2em;
  font-weight: 600;
}
h4 {
  font-size: 1em;
  font-weight: 600;
}
h5 {
  font-size: 0.8em;
  font-weight: 600;
}
p {
  padding: 1.5rem 0 !important;
  font-size: 1rem;
  font-weight: 300;
  line-height: 20px;
}
img {
  width: 100%;
  height: auto;
}
ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}
ul li {
  display: list-item;
  line-height: 22px;
  text-align: -webkit-match-parent;
}
input,
select {
  background: transparent;
  border: 1px solid #6666;
  padding: 0.5em;
  color: #ccc;
}
#main #content {
  /*  padding: 1rem; */
}
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,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
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;
}
/* UTILS */
.center {
  text-align: center;
}
.flex {
  display: flex;
  align-content: center;
  align-items: center;
}
.flex.just-center {
  justify-content: center;
}
.flex.gap1 {
  gap: 1rem;
}
.flex.gap2 {
  gap: 2rem;
}
.flex.gap3 {
  gap: 3rem;
}
.flex.gap4 {
  gap: 4rem;
}
.flex.gap5 {
  gap: 2rem;
}
.flex.gap5 {
  gap: 2rem;
}
.container-center {
  margin: 0 auto;
}
.uppercase {
  text-transform: uppercase;
}
video {
  display: block;
}
.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .hide-for-mobile {
    display: none !important;
  }
}
.show-for-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .show-for-mobile {
    display: block;
  }
}
.show-for-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .show-for-desktop {
    display: none;
  }
}
.spacer.r1 {
  padding-bottom: 1rem;
}
.spacer.r2 {
  padding-bottom: 2rem;
}
.spacer.r3 {
  padding-bottom: 3rem;
}
.spacer.r4 {
  padding-bottom: 4rem;
}
.spacer.r5 {
  padding-bottom: 5rem;
}
.spacer.r6 {
  padding-bottom: 6rem;
}
.divider {
  height: 5px;
  width: 55%;
  margin: 2rem auto 0 auto;
}
.divider.small {
  height: 2px;
  width: 45%;
}
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  padding: 1px;
  border: 1px solid #888;
  width: fit-content;
  /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/* Parts */
.site-header {
  position: relative;
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .site-header {
    padding: 0;
  }
}
.site-header .logo {
  max-width: 200px;
}
.site-header .logo img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .site-header .logo {
    margin: 1.5rem 1rem;
    width: 180px;
  }
}
.header-menu {
  background-color: #000000;
  position: sticky;
  top: 0px;
  max-width: var(--max-page-width);
  border-radius: 50px;
  margin: 0 auto;
  z-index: 9999;
  box-shadow: 1px 10px 18px 1px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 1px 10px 18px 1px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 1px 10px 18px 1px rgba(0, 0, 0, 0.6);
}
.header-menu .nav {
  margin: 2rem auto;
  padding: 1em;
  border-radius: 50px;
  background: linear-gradient(339deg, #3745a4, #4f70df, #091671);
  box-shadow: var(--shadow-m);
}
@media screen and (max-width: 768px) {
  .header-menu .nav {
    margin: 0.3rem auto;
    border-radius: 0px;
    box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0.75);
  }
}
.header-menu .nav ul {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header-menu .nav ul {
    gap: 1rem;
  }
}
.header-menu .nav ul li .nav-item {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: #33398c;
  transition: all 0.5s;
  box-shadow: var(--shadow-s);
}
.header-menu .nav ul li .nav-item:hover {
  color: #000000;
  background-color: #999999;
}
.header-menu .nav ul li a {
  font-size: 0.9rem;
  color: #dadada;
  text-decoration: none;
  transition: all 0.5s;
}
footer {
  font-size: 0.8rem;
  padding: 2rem 0 3rem 0;
  color: #999999;
  max-width: var(--max-page-width);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 2rem;
  }
}
footer .footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-links li {
  list-style: none;
}
footer .footer-links li a {
  color: #999999;
}
footer .footer-links li a:visited {
  color: #999999;
}
.modal {
  display: none;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  z-index: 99999;
}
.modal__panel {
  position: absolute;
  max-width: 70vw;
  margin-top: 10vh;
  /* (100 - 60) / 2 = 20 */
  margin-bottom: 20vh;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-m);
}
@media screen and (max-width: 768px) {
  .modal__panel {
    max-width: 100vw;
  }
}
.modal__header {
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  background-color: #333333;
  border-bottom: 1px solid #565656;
  box-shadow: var(--shadow-s);
}
.modal__header button {
  color: #999999;
}
.modal__body {
  padding: 0.3rem;
  background-color: #333333;
  aspect-ratio: 1.77777778;
}
.modal__body #modalVideo {
  border-radius: 12px;
}
.modal__body video {
  width: 100%;
  height: 100%;
  display: block;
}
/* Pages */
@media screen and (max-width: 768px) {
  #main {
    padding: 0 2rem;
  }
}
#main #content .page {
  max-width: 1100px;
  margin: 1rem auto;
  color: #b1b1b1;
}
#main #content .page.homepage section {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
}
#main #content .page.homepage section .line {
  height: 1px;
  flex: 1;
  background-color: #999999;
}
#main #content .page.homepage p a {
  color: cornflowerblue;
  text-decoration: none;
}
#main #content .page.homepage p a:visited {
  color: cornflowerblue;
}
#main #content .page.homepage p a:hover {
  color: white;
  text-decoration: underline;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
#main #content .page.homepage .video-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
#main #content .page.homepage .video-list a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #main #content .page.homepage .video-list {
    justify-content: center;
  }
}
#main #content .page.homepage .video-list .video-wrap {
  display: flex;
}
#main #content .page.homepage .video-list .video {
  max-width: 180px;
  padding: 1em;
  border-radius: 10px;
  background-color: #3b3b3b;
  box-shadow: var(--shadow-m);
  /*  cursor: pointer; */
  position: relative;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #main #content .page.homepage .video-list .video {
    max-width: 250px;
  }
}
#main #content .page.homepage .video-list .video::after,
#main #content .page.homepage .video-list .video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  background-image: conic-gradient(from var(--angle), red, blue, red);
  animation: 3s spin linear infinite;
  animation-play-state: paused;
  transition: opacity 0.5s;
}
#main #content .page.homepage .video-list .video::before {
  filter: blur(1.5rem);
  opacity: 0;
  animation: 3s spin linear infinite;
  animation-play-state: paused;
}
#main #content .page.homepage .video-list .video:hover::after {
  opacity: 1;
  animation-play-state: running;
}
#main #content .page.homepage .video-list .video:hover::before {
  opacity: 1;
  animation-play-state: running;
}
#main #content .page.homepage .video-list .video:hover .video-thumbnail {
  box-shadow: 3px 3px 14px 0px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 3px 3px 14px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 3px 3px 14px 0px rgba(0, 0, 0, 0.8);
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}
#main #content .page.homepage .video-list .video-thumbnail {
  --border-radius: 20px;
  position: relative;
  max-width: 200px;
  height: auto;
  overflow: hidden;
  border-radius: var(--border-radius);
}
#main #content .page.homepage .video-list .video-thumbnail img {
  margin-top: 2px;
  border-radius: var(--border-radius);
}
#main #content .page.homepage .video-list .content-divider {
  width: 95%;
  height: 1px;
  margin: 1.5em auto;
  background-color: #5d5d5d;
}
#main #content .page.homepage .video-list .video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 0.8em;
  text-align: center;
  margin: 1rem auto;
  line-height: 17px;
  min-height: 60px;
  padding: 0.8rem;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: black;
  box-shadow: 1px 1px 0px rgba(108, 108, 108, 0.4);
}
#main #content .page.homepage .video-list .link-group {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding: 1rem 0;
}
#main #content .page.homepage .video-list .link-group .link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#main #content .page.homepage .video-list .link-group .link .icon img {
  height: 20px;
  max-height: 20px;
  width: auto;
  max-width: auto;
}
#main #content .page.homepage .video-list .link-group .link .link-text {
  font-size: smaller;
  cursor: pointer;
}
#main #content .page.homepage .video-list .link-group .link .link-text a {
  color: #9b9b9b;
}
#main #content .page.homepage .video-list .link-group .link .link-text.no-avail {
  color: #515050;
}
#main #content .page.homepage .video-list .link-group .link .link-text.message {
  color: aquamarine;
}
#main #content .page #privacy p {
  padding: 0 !important;
}
#main #content .page #privacy h2 {
  margin: 1.2rem 0;
}
.col-wrapper {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 850px) {
  .col-wrapper {
    grid-template-columns: 1fr;
  }
}
.col-wrapper .col-2 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 500px) {
  .col-wrapper .col-2 {
    display: block;
    margin: 1rem 0;
  }
}
.col-wrapper .col-2 .col-img {
  max-width: 150px;
}
.col-wrapper .col-2 .col-img img {
  border-radius: 10px;
}
.col-wrapper .col-2 .col-text {
  margin: 1rem 0;
}
.col-wrapper .col-2 .col-text .desc {
  padding-bottom: 0.5rem;
  color: cornflowerblue;
}
.col-wrapper .col-2 .col-text .col-link a {
  color: #7f7f7f;
  font-size: 0.9rem;
}
.page.how-to .articles-wrapper {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .page.how-to .articles-wrapper {
    display: block;
  }
}
.page.how-to .articles-wrapper .article {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page.how-to .articles-wrapper .article {
    margin: 1.2rem 0;
  }
}
.page.how-to .articles-wrapper .article .image img {
  max-width: 200px;
  border-radius: 10px;
  border: solid 1px #5b5b5b;
}
.blog-single .content {
  max-width: 1100px;
  margin: 1rem auto;
  color: #b1b1b1;
}
