@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.logo {
	width: 70px;
	height: 70px;
	margin-right: 10px;
}

.logo_container {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 7vh;
  }

.logo_container p {
  padding-top: 10px;
  align-self: auto;
	align-items: flex-start;
  vertical-align: middle;
  align-content: center;
	font-family: 'Exo 2', sans-serif;
  color: white;
  font-size: 18px;
}


.main_header header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: #0c121f;
  /* Remove box-shadow for seamless look */
  box-shadow: none;
}

main {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

body, .main_page, main, h1, h2, h3, h4, h5, h6, p, ul, li, a, button, input, textarea {
  font-family: 'Exo 2', sans-serif !important;
}

.navigation {
	display: flex;   /* Enable flex for these elements */
	position:absolute;
	right: 3%;
  font-family: 'Exo 2', sans-serif;
}

.main_header {
	align-items: center;
/* Or any other preferred width */
	margin: 0 auto;   /* Center the container horizontally */
	padding: 20px;   /* Add some padding for spacing */
}

/* You might want to add some space between the logo and the navigation links */
.navigation nav a {
	margin: 0 3px;  /* Add some margin for spacing between links */
}

.desktop-nav {
	display: flex;
  }
  
  .mobile-burger {
	display: none;
  }
  
  /* Fullscreen overlay menu */
  .overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background-color: rgba(12, 23, 46, 0.90);
	overflow-x: hidden;
	transition: 0.5s;
  }
  
  .overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
  }
  
  .overlay a {
	display: block;
	font-size: 36px;
	padding: 8px;
	color: #818181;
	text-decoration: none;
	transition: 0.3s;
  }
  
  .overlay a:hover {
	color: #f1f1f1;
  }
  
  .overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 35px;
	font-size: 50px;
  }
  
  /* Responsive rules */
  @media (max-width: 768px) {
	.desktop-nav {
	  display: none;
	}
  
	.mobile-burger {
	  display: block;
	  position: absolute;
	  top: 20px;
	  right: 20px;
	  z-index: 1;
	  color: #14a7cc;
	  padding: 20px;
	}
  
	.overlay a {
	  font-size: 28px;
	}
  
	.overlay .closebtn {
	  font-size: 40px;
	}
  }


button {
	width: fit-content;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 15px 15px;
    border-radius: 15px;
    border: none;
    font-size: 1rem;
    color: #e0ffff;
    font-weight: 500;
    cursor: pointer;
    z-index: 1;
  }
  button:active{
    transform: scale(0.95);
  }
  button::before{
    content: '';
    position: absolute;
    inset: -3px 50px;
    background: #42455a;
    transition: inset 350ms ease;
    z-index: -2;
  }
  button:hover::before{
    inset: -20px 0px;
    background: #00c2cb;
  }
  button::after{
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 10px;
    background: #22232e;
    z-index: -1;
  }


  @import url('https://unpkg.com/normalize.css') layer(normalize);

  @layer normalize, base, demo;
  
  @layer demo {
    body {
      background: light-dark(#fff, #000f30);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      padding-block: 2rem;
    }
  
    h1,
    p {
      margin: 0;
    }
  
    h1.fluid {
      --font-size-min: 22;
      --font-level: 4.25;
    }
  
    h3 {
      white-space: nowrap;
      margin: 0;
    }
  
    body > p {
      width: 74ch;
      max-width: calc(100% - 4rem);
      text-wrap: balance;
      font-family: monospace;
      margin-bottom: 4rem;
      line-height: 1.5;
      opacity: 0.8;
      font-weight: 400;
  
      @media (max-width: 768px) {
        text-align: center;
      }
    }
  
    li :is(svg, h3) {
      opacity: 0.6;
      transition: opacity calc(var(--speed) * 1.2) var(--easing);
    }
  
    li :is(a, p) {
      opacity: 0;
      transition: opacity calc(var(--speed) * 1.2) var(--easing);
      width: fit-content;
    }
  
    li img {
      filter: grayscale(1) brightness(1.5);
      scale: 1.1;
      transition-property: filter, scale;
      transition-duration: calc(var(--speed) * 1.2);
      transition-timing-function: var(--easing);
    }
  
    [data-active='true'] :is(a, p, h3, svg) {
      opacity: var(--opacity, 1);
    }
    [data-active='true'] :is(a, p) {
      transition-delay: calc(var(--speed) * 0.25);
    }
  
    [data-active='true'] img {
      filter: grayscale(0) brightness(1);
      scale: 1;
      transition-delay: calc(var(--speed) * 0.25);
    }
    
  
    article {
  /*     outline: 2px dashed canvasText; */
      width: calc(var(--article-width) * 1px);
      height: 100%;
      position: absolute;
      font-family: monospace;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 1rem;
      padding-inline: calc(var(--base) * 0.5 - 9px);
      padding-bottom: 1rem;
      overflow: hidden;
  
      h3 {
        position: absolute;
        top: 1rem;
        left: calc(var(--base) * 0.5);
        transform-origin: 0 50%;
        rotate: 90deg;
        font-size: 1rem;
        font-weight: 300;
        text-transform: uppercase;
        font-family: monospace;
      }
      svg {
        width: 18px;
        fill: none;
      }
  
      p {
        font-size: 13px;
        text-wrap: balance;
        line-height: 1.25;
        --opacity: 0.8;
      }
  
      a {
        position: absolute;
        bottom: 1rem;
        height: 18px;
        line-height: 1;
        color: inherit;
        
  
        &:is(:focus-visible, :hover) {
          outline: none;
          span {
            text-decoration: underline;
            text-underline-offset: 4px;
          }
        }
  
        span {
          display: inline-block;
          line-height: 18px;
          translate: calc(var(--base) * 0.5);
          font-weight: 500;
        }
      }
  
      img {
        position: absolute;
        pointer-events: none;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        mask: radial-gradient(100% 100% at 100% 0, #fff, #002c6600);
      }
    }
    /* gotta use some Math on the container really */
    /* width is "ideal" 7 * 80px + 6 * gap + say 300px or whatever the ideal width is */
    :root {
      --gap: 8px;
      --base: clamp(2rem, 8cqi, 80px);
      --easing: linear(
        0 0%,
        0.1538 4.09%,
        0.2926 8.29%,
        0.4173 12.63%,
        0.5282 17.12%,
        0.6255 21.77%,
        0.7099 26.61%,
        0.782 31.67%,
        0.8425 37%,
        0.8887 42.23%,
        0.9257 47.79%,
        0.9543 53.78%,
        0.9752 60.32%,
        0.9883 67.11%,
        0.9961 75%,
        1 100%
      );
      --speed: 0.6s;
    }
    ul.product-list {
      display: grid;
      container-type: inline-size;
      grid-template-columns: 10fr 1fr 1fr 1fr 1fr 1fr 1fr;
      gap: var(--gap);
      list-style-type: none;
      justify-content: center;
      padding: 0;
      height: clamp(300px, 40dvh, 474px);
      margin: 0;
      width: calc(
        ((var(--items) - 1) * var(--base)) + ((var(--items) - 1) * var(--gap)) +
          var(--ideal)
      );
      width: 820px;
      max-width: calc(100% - 4rem);
      transition: grid-template-columns var(--speed) var(--easing);
    }
  
    li {
      /* outline: 4px dashed canvasText; */
      background: light-dark(#fff, #01081a);
      position: relative;
      overflow: hidden;
      min-width: var(--base);
      border-radius: 8px;
      border: 1px solid color-mix(in hsl, canvas, canvasText 50%);
    }
  }
  
  @layer base {
    :root {
      --font-size-min: 16;
      --font-size-max: 20;
      --font-ratio-min: 1.2;
      --font-ratio-max: 1.33;
      --font-width-min: 375;
      --font-width-max: 1500;
    }
  
    html {
      color-scheme: light dark;
    }
  
    [data-theme='light'] {
      color-scheme: light only;
    }
  
    [data-theme='dark'] {
      color-scheme: dark only;
    }
  
    :where(.fluid) {
      --fluid-min: calc(
        var(--font-size-min) * pow(var(--font-ratio-min), var(--font-level, 0))
      );
      --fluid-max: calc(
        var(--font-size-max) * pow(var(--font-ratio-max), var(--font-level, 0))
      );
      --fluid-preferred: calc(
        (var(--fluid-max) - var(--fluid-min)) /
          (var(--font-width-max) - var(--font-width-min))
      );
      --fluid-type: clamp(
        (var(--fluid-min) / 16) * 1rem,
        ((var(--fluid-min) / 16) * 1rem) -
          (((var(--fluid-preferred) * var(--font-width-min)) / 16) * 1rem) +
          (var(--fluid-preferred) * var(--variable-unit, 100vi)),
        (var(--fluid-max) / 16) * 1rem
      );
      font-size: var(--fluid-type);
    }
  
    *,
    *:after,
    *:before {
      box-sizing: border-box;
    }
  
    body {
      display: grid;
      place-items: center;
      min-height: 100vh;
      font-family: 'SF Pro Text', 'SF Pro Icons', 'AOS Icons', 'Helvetica Neue',
        Helvetica, Arial, sans-serif, system-ui;
    }
  
    body::before {
      --size: 45px;
      --line: color-mix(in hsl, canvasText, transparent 70%);
      content: '';
      height: 100vh;
      width: 100vw;
      position: fixed;
      background: linear-gradient(
            90deg,
            var(--line) 1px,
            transparent 1px var(--size)
          )
          50% 50% / var(--size) var(--size),
        linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% /
          var(--size) var(--size);
      mask: linear-gradient(-20deg, transparent 50%, white);
      top: 0;
      transform-style: flat;
      pointer-events: none;
      z-index: -1;
    }
  
    .bear-link {
      color: canvasText;
      position: fixed;
      top: 1rem;
      left: 1rem;
      width: 48px;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      opacity: 0.8;
    }
  
    :where(.x-link, .bear-link):is(:hover, :focus-visible) {
      opacity: 1;
    }
  
    .bear-link svg {
      width: 75%;
    }
  
    /* Utilities */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }
  }

body, .main_page {
  background-color: #0c121f;
}

.header-row { display: initial; align-items: initial; justify-content: initial; width: initial; }

.fluid + p {
  width: 75vw !important;
  max-width: 75vw !important;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 50px auto;
    size: 90%;
	margin-top: 40vh;
}

.get-in-touch, .contact-details {
	text-overflow: clip;
    width: 45%;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-family: 'Exo 2', sans-serif;
}

.get-in-touch {
    background-color: #f5f5f500;
}

.input-field {
    width: 100%;
    padding: 10px;
	background-color: #ffffff2c;
    margin-bottom: 10px;
    border: 1px solid #cccccc98;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
	color: #eeeeee;
	font-family: 'Exo 2', sans-serif;
}

.textarea {
    height: 100px;
    resize: none;
}

.get-in-touch button {
    background-color: #0099ff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-details {
    background-color:#212534;
    color: white;
	padding: auto;
	word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.icon {
    margin-right: 10px;
}

.contact-details p {
	padding: 16px;
}

.links_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    background: transparent;
    height: auto;
}

.links_container ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    position: static;
    transform: none;
}

.links_container ul li {
    list-style: none;
}

.links_container ul li a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 63px;
    background: #0c121f;
    border-radius: 50%;
    font-size: 30px;
    color: #666;
    transition: .5s;
}

.links_container ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0c121f;
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
}

.links_container ul li a:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px #0096fa;
}

.links_container ul li a:hover {
    color: #0096fa;
    box-shadow: 0 0 5px #0096fa;
    text-shadow: 0 0 5px #0096fa;
}

@media (max-width: 768px) {
  main {
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    overflow-x: hidden;
    display: flex;
  }
  ul.product-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    width: 70vw !important;
    max-width: 70vw !important;
    height: auto;
    margin: 0 auto;
    padding: 0 8px;
    overflow-x: hidden;
    grid-template-columns: none !important;
    transition: none !important;
  }
  li {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 70vw !important;
    border-radius: 8px;
    margin: 0 auto;
    transition: none !important;
  }
  article {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    padding-inline: 0 !important;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
  article h3 {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    rotate: none !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    font-family: inherit !important;
    margin-bottom: 0.5rem;
    white-space: normal !important;
    text-align: left !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
  ul.product-list li {
    transition: none !important;
  }
  ul.product-list li[data-active="true"] {
    /* Remove expand effect on mobile */
    grid-column: auto !important;
  }
  ul.product-list li {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    box-shadow: none;
    cursor: pointer;
    padding-top: 18px;
    padding-bottom: 12px;
  }
  ul.product-list li.active-vertical {
    max-height: none !important;
    min-height: 50vh !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: #212534 !important;
    z-index: 2;
    filter: none !important;
    /* Remove any inherited background-image or gradient */
    background-image: none !important;
  }
  ul.product-list li article p {
    position: absolute;
    bottom: 38px;
    left: 13px;
    right: 13px;
    margin: 0;
    width: 75vw !important;
    max-width: 75vw !important;
    padding-bottom: 10px;
    background: transparent !important;
  }
  ul.product-list li article > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  ul.product-list li article > h3 {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
  ul.product-list li article i,
  ul.product-list li article .fa,
  ul.product-list li article .fas,
  ul.product-list li article .fab,
  ul.product-list li article svg {
    font-size: 2.1rem !important;
    width: 2.1rem !important;
    height: 2.1rem !important;
    padding-left: 13px !important;
    margin-left: 0 !important;
    display: inline-block !important;
  }
  .contact-details {
    padding-right: 8vw !important;
    padding-left: 4vw !important;
    box-sizing: border-box;
  }
  .contact-form-container {
    width: 90vw !important;
    max-width: none !important;
    flex-direction: column !important;
    gap: 6vw !important;
    margin: 40px auto 0 auto !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  .get-in-touch, .contact-details {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
}