/*
* {
  box-sizing: border-box;
}
*/

html { scroll-behavior: smooth; }

a:not(:has(.button))
{
    color: #ccd524;
    text-decoration: none;
}

a:has(.button)
{
    color: #FFF;
    text-decoration: none;
}

body {
  margin: 0px;
  font-family: 'segoe ui';

    background-color: #292929;
    color: #FFF;
}

header
{
    position: sticky;
    top: 0;
    z-index: 30;
}

.nav {
  height: 50px;
  width: 100%;
  background-color: rgba(0,0,0,0.75);
  position: relative;
  display: flex;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
  padding-right: 30px;
  white-space: nowrap;
  margin-left: auto;
}

.nav > .nav-links > a:not(:has(.button)) {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #efefef;
  font-family: "MuseoSans-300";
}

.nav > .nav-links > a:has(.button) {
    display: inline-block;
    /* padding: 2px 10px 2px 10px; */
}

.nav > .nav-links > a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.nav > #nav-check {
  display: none;
}

.nav-logo
{
    margin-top: 10px;
    margin-left: 30px;
}

@media (max-width:600px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    /* width: 50px; */
    /* height: 50px; */
    padding: 13px 13px 0px 0px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: rgba(0,0,0,0.75);
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: 300px;
    overflow-y: auto;
  }
}

.header-logo
{
    width: 800px;
    height: auto;
    max-width: 90vw;
}

.header-image
{
    width: 800px;
    height: auto;
    max-width: 90vw;
}

.mar-t
{
    margin-top: 20px !important;
}

.mar-b
{
    margin-bottom: 20px !important;
}

section
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-row
{
    display: grid;
    gap: 20px;

    max-width: 1000px;
    margin: 0px 10px;
}

.box-single-row
{
    display: grid;
    gap: 10px;

    max-width: 1000px;
    margin: 0px 10px;

    background-color: #383838;
    padding: 10px;
    border-radius: 5px;
}

.box-single-row.full-width
{
    width: 100%;
}

.box.full-width
{
    width: 1000px; 
    margin-left: 10px;
    margin-right: 10px;
    max-width: 90vw;
}

@media (min-width: 35em) {
    .box-row
    {
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }

    .box-single-row
    {
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
}

.box
{
    background-color: #383838;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    max-width: 1000px;
    align-items: center;
}

.box-v
{
    flex-direction: column;
    align-items: center;
}

.box-v > img
{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #888;
    margin-bottom: 10px;
}

.box-heading
{
    font-size: 20px;
    align-self: flex-start;
    margin-bottom: 15px;
    font-family: "MuseoSans-500";
}

.box-text
{
    font-size: 18px;
    align-self: flex-start;
    margin-bottom: 10px;
    font-family: "MuseoSans-300";
}


.box-single-row > img
{
    width: 100%;
    height: auto;
}

.pricing-header
{
    font-size: 18px;
    margin-bottom: 20px;
    font-family: "Museo-500";
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #888;
    text-align: center;
}

.pricing-img
{
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: none !important;
    max-width: 200px;
}

.button
{
    display: flex;
    flex-direction: row;
    align-items: center;

    background-color: #222;
    border-radius: 4px;
    padding: 0px 10px 0px 10px;
    width: fit-content;
    height: 40px;

    box-shadow: none;
    transition: color 0.4s, background-color 0.4s, box-shadow 0.4s;

    line-height: 36px;

    cursor: pointer;
    margin: 2px;

    position: relative;
}

.button.round {
  border-radius: 999px;
}

.button:hover
{
    background-color: #555;
}

.button.small
{
    height: 28px;
    line-height: 24px;
    padding: 0px 5px 0px 5px;
}

.button img
{
    width: 20px;
    height: 20px;
}

.button .button-label
{
    margin-left: 5px;
    user-select: none;
    min-width: 80px;
    margin-right: 5px;

    text-wrap: nowrap;

    transition: color 0.4s;
    font-family: "MuseoSans-300";
}

.button-icon {
  width: 20px;
  height: 20px;
  color: #ccd524;
  transition: color 0.4s, background-color 0.4s;
  padding-left: 8px;
  vertical-align: middle;
}

.button-icon > svg
{
    width: 20px;
    height: 20px;
}

.button.small img
{
    width: 18px;
    height: 18px;
}

.button.small .button-icon > svg
{
    width: 18px;
    height: 18px;
}

.button.lined:has(.button-label):not(:has(.button-label.hidden)) .button-icon
{
    border-right: 2px solid #fff;
    padding-right: 8px;
    margin-right: 3px;
}

.pricing-features
{
    width: 100%;
    padding: 10px;
}

.pricing-features > table
{
    width: 100%;
}

.pricing-price
{
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: "Museo-500";
}

.h-centred
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row-title
{
    width: 80px;
    font-family: "MuseoSans-300";
}

.row-value
{
    text-align: center;
}

.row-value-font
{
    font-family: "MuseoSans-300";
}

.pricing-table-note
{
    font-size: 12px;
    align-self: flex-start;
    font-family: "MuseoSans-300";
    color: #AAA;
}

.button-side-space
{
    margin-left: 20px;
    margin-right: 20px;
}

.call-out-image
{
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: none !important;
    max-width: 100px;
}

.footer
{
    background: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.footer-logo
{
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-text
{
    color: #AAA;
    font-family: "MuseoSans-300";
    font-size: 12px;
    margin-bottom: 10px;
}

.nav-button
{
    position: relative;
    top: 2px;
    background-color: #333;
}

.legal-row
{
    max-width: 1000px;
    margin: 0px 10px;
}

.contact-intro
{
    font-size: 20px !important;
    font-family: "MuseoSans-500" !important;
    color: #FFF !important;
    text-align: justify;
    margin: 20px 0px;
}

.legal-table td
{
    padding-bottom:10px !important;
    padding-left:0px;
    font-family: "MuseoSans-300";
    font-size: 18px;
    vertical-align: top;
}

.legal-heading td
{
    font-size: 20px !important;
    font-family: "Museo-500" !important;
}

.legal-doc-numbering
{
    color: #AAA !important;
}

.legal-doc-content
{
    color: #FFF !important;
    text-align: justify;
}
