body {
    margin: 0px;
    font-family: Georgia;

    background-color: rgb(0, 0, 0);;
}
img {
    user-select: none;
}
a {
    cursor: pointer;

    text-decoration: none;
    color: inherit;
}
h1 {
    position: relative;
    font-weight: normal;
    font-size: 20px;

    left: 5%;
}

#navigationBar {
    position: absolute;
    
    box-sizing: border-box;
    width: calc(100% - 10px);
    padding: 20px 5%;
    margin: 5px;
    
    color: rgb(40, 40, 40);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    z-index: 1;

    transition: all 0.3s ease-out
}
#navigationBar:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgb(0, 0, 0);
}
#navigationBar.solid {
    background-color: rgba(255, 255, 255, 1);
}
#navigationBar span a {
    margin: 0px 20px;
}
#aboutSection {
    position: relative;
    display: flex;
    gap: 40px;
    margin: 0px 10%;
}
#aboutSection div {
    text-align: center;
    font-size: 20px;
    color: rgb(100, 100, 100);
    flex: 1;
}
#aboutSection h1 {
    color: snow;
}
#aboutSection hr {
    border: none;
    border-right: 1px solid rgb(40, 40, 40);
}
.barContents {
    display: flex;
    justify-content: space-between;
}
.splitLine {
    display: flex;
    justify-content: space-between;

    margin-bottom: -8px;
}
.navigationDropdown .splitLine {
    margin-bottom: -20px;
}
.navigationDropdown {
    position: absolute;
    display: none;
    box-sizing: border-box;

    width: 100%;
    left: 0%;
    top: calc(100% - 10px);
    padding: 15px 7% 5px 7%;

    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 0px 0px 10px 10px;
}
.navigationDropdown p {
    transition: all 0.1s ease-out;
}
.navigationDropdown p:hover {
    text-indent: 5px;
}
.headerBackground {
    position: relative;
    width: 100%;
    height: 100%;

    z-index: 0;

    overflow: hidden;
}
.headerBackground img {
    width: 100%;
    height: auto;
    min-height: 30vh;

    object-fit: cover;
    object-position: center;
}
.headerContents {
    position: absolute;
    display: block;

    top: max(70px, 15%);

    text-align: center;
}
.headerContents img {
    position: relative;
    display: block;
    
    max-width: 40%;

    margin: auto;
}
.title {
    margin: 0px;
    margin-top: 10px;

    text-align: center;
    font-size: max(2vw, 90%);
    font-weight: bold;
}
.body {
    position: relative;
    width: 100%;
    top: -5px;

    padding: 20px 0px;

    color: snow;
}
.body .header {
    margin: 0px;
    margin-top: 10px;

    text-align: center;
    font-size: max(1.5vw, 90%);
}
.body .altColor {
    background-color: rgb(5, 5, 5);
}
.fullBreak {
    width: 100%;
    margin: 40px 0px;

    border: none;
    border-bottom: 1px solid rgb(40, 40, 40);
}
.break {
    width: 50%;
    margin: 40px auto;

    border: none;
    border-bottom: 1px solid rgb(40, 40, 40);
}
.smallBreak {
    width: 5%;
    margin: 10px auto;

    border: none;
    border-bottom: 1px solid rgb(40, 40, 40);
}
.largeBlank {
    height: 100px;
}
.productCarousel {
    width: 90%;
    height: 10%;
    margin: 20px auto;
    background-color: rgb(5, 5, 5);

    position: relative;
    
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    scroll-behavior: smooth;
}
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
#marqueeTrack {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 60s linear infinite;
}
#marqueeTrack:hover {
    animation-play-state: paused;
}
.marqueeContent {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.productList {
    background-color: rgb(5, 5, 5);

    position: relative;
    display: flex;
    gap: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;

    flex-wrap: wrap;
}
.productThumbnail {
    position: relative;
    display: flex;
    font-size: clamp(0rem, 12px, 100rem);
    flex-direction: column;
    flex-shrink: 0;
    padding: 5px;
    cursor: pointer;

    width: 12.5%;
    max-width: 12.5vw;
    border: 1px solid rgb(40, 40, 40);
    border-radius: 10px;

    background-color: rgb(20, 20, 20);
    transition: all 0.1s ease-out;
    transition: opacity 0s;

    scroll-snap-align: center;
}
.productThumbnail:hover {
    transform: scale(1.05);
    background-color: rgb(30, 30, 30);
}
.productThumbnail img {
    border: none;
    
    max-height: calc(100% - 30px);
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0px auto;
}
.productThumbnail hr {
    width: 50%;
    border: none;
    border-bottom: 1px solid rgb(40, 40, 40);
}
.productThumbnail p {
    margin: 0px;
    font-size: 14px;
}
.productThumbnail .subtitle{
    margin: 0px;
    color: rgb(120, 120, 120);
    font-size: 10px;
}
.button {
    position: relative;
    display: block;
    background-color: snow;
    color: black;
    font: inherit;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid snow;
    
    margin: 0px auto;
    padding: 15px 30px;

    transition: all 0.1s ease-out;
    cursor:pointer;
}
.button:hover {
    background-color: transparent;
    color: snow;
}
#contactForm {
    position: relative;
    display: block;
    width: 50%;
    margin: 0px auto;
    align-content: center;
}
#contactForm input:not(.button),textarea {
    position: relative;
    display: block;
    margin: 0px auto;
    width: 100%;

    background-color: transparent;
    color: snow;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid snow;
}
#contactForm #message {
    height: 200px;
}
#contactForm .field {
    position: relative;
}
#contactForm .field textarea {
    resize: none;
}
#contactForm .field label {
    position: absolute;
    color: rgb(100, 100, 100);
    transform: translate(20px, 100%);
    transition: font-size 0.1s ease-out;
}
#contactForm .field:focus-within label,
#contactForm .field:not(:has(input:placeholder-shown)).field:not(:has(textarea:placeholder-shown)) label {
    font-size: xx-small;
}
.button.altColor {
    background-color: transparent;
    color: rgb(100, 100, 100);
    border-color: rgb(100, 100, 100);
}
.button.altColor:hover {
    background-color: rgb(100, 100, 100);
    color: black;
}
.searchBar {
    position: relative;
    display: block;
    
    transform: translateY(-100%);
    float: right;
}
.searchBar input {
    background-color: transparent;
    color: snow;
    padding: 5px;
    border: 1px solid snow;
    border-radius: 5px;
}
#noResults {
    color: rgb(100, 100, 100);
    font-size: 20px;
    text-align: center;
}
.body:has(.column) {
    display: flex;
    width: 100%;
    height: 100%;
}
.column.left {
    flex: 1 1 0;
}
.column.right {
    flex: 2 1 0;
}
.slideshow {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    
    margin: 20px;
}
.slideshow img {
    display: none;
    max-width: 100%;
}
.dotContainer {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.arrow {
    border: 10px solid transparent;
    cursor: pointer;
    transition: border 0.1s ease-out;
}
.arrow.left {
    position: absolute;
    display: block;
    border-right-color: rgb(160,160,160);
    left: calc(0% + 20px);
    top: calc(50% - 5px);

    z-index: 1;
}
.arrow.left:hover {
    border-right-color: rgb(5, 5, 5);
}
.arrow.right {
    position: absolute;
    display: block;
    border-left-color: rgb(160,160,160);
    right: calc(0% + 20px);
    top: calc(50% - 5px);

    z-index: 1;
}
.arrow.right:hover {
    border-left-color: rgb(5, 5, 5);
}
.dot {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: rgb(100,100,100);
    cursor: pointer;
    transition: background-color 0.1s ease-out;
}
.dot:hover {
    background-color: snow;
}
.dot.active {
    background-color: rgb(180,180,180);
}
.dot.active:hover {
    background-color: snow;
}
.textBody {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    color: snow;
    padding: 20px;
    width: 100%;
}
.textBody p {
    text-align: left;
}
.textBody .subtitle {
    color: rgb(100, 100, 100);
    font-size: 20px;
    margin: 0px;
}
.textBody .header {
    font-size: 20px;
    text-align: left;
    margin: 10px;
}
#specifications {
    position: relative;
    display: block;
    border: none;
    border-radius: 10px;

    width: 100%;
    height: 70vh;
}
.subsection {
    background-color: rgb(5, 5, 5);

    border-radius: 10px;
    padding: 20px;
}
.logoContainer {
    position: relative;
    display: flex;
    width: 80%;

    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5vh;
}
.logoContainer img {
    height: 7.5vh;
}
#footer {
    position: relative;
    display: block;
    width: 90%;
    
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}
#footer p {
    font-size: 18px;
    margin: 10px;

    color: rgb(120, 120, 120);
}
#footer a:hover {
    color: rgb(200, 200, 200);
}