body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

.header h1 {
    text-align: center;
    font-size: 400%;
    margin-bottom: 0;
}

.header {
    /* height: 100vh; */
    padding: 0;
    margin: 0;
    /* margin-top: 10vh; */
    display: grid;
    height: 120vh;
    width: 100%;
    grid-template-areas:
        'header header header'
        'left main right';
    color: white;

    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 1000;
    font-style: normal;

    grid-template-rows: 25%;

    /* grid-template-columns: 33%; */
}


.header .name {
    grid-area: header;
}

.name h2 {
    text-align: center;
    font-size: 100%;
    translate: 0 -20px;
    font-weight: 300;
    letter-spacing: 10px;
}

.header h2 {
    /* text-align: center; */
    font-size: 180%;
    color: #d6f0fa;
}

.header .image {
    background-image: url("images/HemeaseCropped.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    height: 32vw;
    width: 35vw;
    /* width: 75vh; */
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    /* box-shadow: 0px 0px 10000px 100px rgba(44, 178, 231, 0.425); */
    box-shadow: 0px -50px 1000px 100px rgba(44, 178, 231, 0.388),
        0px 50px 1000px 100px rgba(247, 0, 255, 0.158);
    /* 0px 0px 10000px 100px rgba(44, 178, 231, 0.425); */
    grid-area: main;
}

.header .leftBox {
    padding: 30px;
    grid-area: left;
    text-align: left;
}

.boxBackground {
    background-color: rgba(240, 248, 255, 0.091);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 5%;
}

.leftBox .boxBackground {
    margin-right: 20%;
}

.rightBox .boxBackground {
    margin-left: 20%;
}

.header .rightBox {
    padding: 30px;
    grid-area: right;
    text-align: right;
}

.section {
    padding: 5%;
}

.section h1 {
    /* text-align: center; */
    font-size: 180%;
    color: #d6f0fa;
}

.section h2 {
    font-size: 100%;
    font-weight: 400;
    color: #d6f0fa;
}

.gray {
    background-color: #161617;
    /* height: 100vh; */
}

.black p {
    color: white;
    font-size: 75%;
}

.black {
    background-color: black;
}

.cardContainer {
    display: flex;
    width: 100%;
    margin: auto;
    margin-top: 7%;
    overflow: visible;
}

.card {
    background-color: black;
    flex-shrink: 0;
    flex-grow: 0;
    height: 70vh;
    width: 25vw;
    margin: 0% 2%;
    border-radius: 50px;
    padding: 1%;
    box-shadow: 10px 10px 20px 2px rgb(0, 0, 0);
}

.card h1 {
    margin-top: 10%;
    margin-left: 3%;
    text-align: left;
}

.card p {
    border-left: solid 5px rgba(194, 208, 241, 0.509);
    ;
    padding: 5%;
    color: rgba(255, 255, 255, 0.509);
    font-size: 120%;
}

#card1 {
    background-image: url("images/productphoto.jpg");
    filter: blur(0px);
    translate: 40% 2%;
    rotate: -5deg;
    z-index: 3;
    transition: .3s;
}

#card1:hover {
    rotate: 0deg;
    translate: 40% 0%;
    transition: .3s;
}

body:has(#card1:hover) #card2 {
    translate: 30% 0%;
    transition: .3s;
    /* rotate: 5deg; */
}

body:has(#card1:hover) #card3 {
    translate: -10% 2%;
    transition: .3s;
    /* rotate: 10deg; */
}

#card1>* {
    position: relative;
    z-index: 3;
}

#card1::before {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    border-radius: 50px;
    backdrop-filter: brightness(.5) blur(3px);
}

#card2 {
    background-image: url("images/time.jpg");
    filter: blur(0px);
    z-index: 2;
    transition: .3s;
}

body:has(#card2:hover) #card1 {
    /* margin: 0px 20%; */
    translate: 10% 2%;
    transition: .3s;
}

body:has(#card2:hover) #card3 {
    /* margin: 0px 20%; */
    translate: -10% 2%;
    transition: .3s;
}

#card2>* {
    position: relative;
    z-index: 2;
}

#card2::before {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    border-radius: 50px;
    backdrop-filter: brightness(.4) blur(3px);
}

#card3 {
    background-image: url("images/bottom.jpeg");
    filter: blur(0px);
    translate: -40% 2%;
    rotate: 5deg;
    z-index: 1;
    transition: .3s;
}

#card3::before {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    border-radius: 50px;
    backdrop-filter: brightness(.5) blur(3px);
}

#card3>* {
    position: relative;
    z-index: 1;
}

#card3:hover {
    rotate: 0deg;
    translate: -40% 0%;
    transition: .3s;
}

body:has(#card3:hover) #card1 {
    translate: 10% 2%;
    transition: .3s;
    /* rotate: 5deg; */
}

body:has(#card3:hover) #card2 {
    translate: -30% 0%;
    transition: .3s;
    /* rotate: 10deg; */
}


.navbar {
    margin-top: 0px;
    height: 40px;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.473);
    backdrop-filter: blur(10px);
    z-index: 10;
}

a h1 {
    color: white;
    text-decoration: none;
}

.navbar h1 {
    margin: 0;
    margin-left: 10px;
    transform: translate(0%, 50%);
    font-size: 100%;
}

.navbar .button {
    float: right;
    transform: translate(0%, -50%);
    margin-right: 10px;
    background-color: #00000000;
    transition: .1s
}

.navbar .button:hover {
    background-color: rgb(0, 76, 255);
    transition: .1s
}

.logoText {
    text-decoration: none;
}

.button {
    padding: 3px 15px;
    background-color: rgb(0, 76, 255);
    border-radius: 25px;
    transition: .1s;
    color: white;
    text-decoration: none;
    border: none;
}

.button:hover {
    cursor: pointer;
    background-color: rgb(34, 81, 191);
    transition: .1s
}

footer {
    /* position: fixed; */
    text-align: center;
    border-top: solid #536370;
    background-color: #161617;
    padding: 10px 0px;
}

footer a {
    color: rgb(167, 199, 230);
}

.feature-container {
    display: table;
    overflow: hidden;
    border-spacing: 30px;
}

.feature-card {
    /* display: inline-block; */
    display: table-cell;
    margin: 2%;
    height: 100%;
    border-radius: 50px;
    padding: 20px 40px;
    vertical-align: top;
    /* padding-bottom: 1000%;
    margin-bottom: -1000%; */
    height: auto;
}

.feature-card p {
    font-size: 150%;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

spline-viewer {
    position: absolute;
    width: 90%;
    height: 85%;
}

.spline-shadow {
    width: 200px;
    height: 100px;
    /* background-color: white; */
    margin-left: calc(48vw - 150px);
    margin-top: calc(45vh - 100px);
    box-shadow: 0px -50px 1000px 150px rgba(44, 178, 231, 0.388),
        0px 50px 1000px 150px rgba(247, 0, 255, 0.158);
    border-radius: 50px;
}

.spacer {
    height: 100px;
}

.about-container {
    display: block;
}

.about-card {
    vertical-align: top;
    width: 14.28%;
    margin: 0% 1%;
    display: inline-block;
    border-radius: 15px;
    background-color: #28282a;
    transition: .3s;
}

.about-card:hover {
    scale: 1.2;
    transition: .3s;
    box-shadow: rgb(104, 104, 104) 0px 0px 0px 5px;
}

.about-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: topob;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.about-card h1 {
    padding: 10px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-card h2 {
    padding: 0px 10px;
    margin-top: 0;
    /* color: white; */
    font-style: italic;
}

.about-card p {
    padding: 10px;
    padding-top: 0;
}

.testimonial-card {
    vertical-align: top;
    width: 20%;
    margin: 0% 2.3%;
    display: inline-block;
    border-radius: 15px;
    background-color: #28282a;
    transition: .3s;
}

.testimonial-card:hover {
    scale: 1.2;
    transition: .3s;
    box-shadow: rgb(104, 104, 104) 0px 0px 0px 5px;
}

.testimonial-card img {
    margin: 0 2%;
    width: 40%;
}
.testimonial-card h1 {
    padding: 10px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.testimonial-card h2 {
    padding: 0px 10px;
    margin-top: 0;
    margin-bottom: 0;
    /* color: white; */
    font-style: italic;
}

.testimonial-card p {
    padding: 10px;
    padding-top: 0;
}

.testimonial-card p b{
    color: #d6f0fa;
    font-size: 1.2em;
}

.awardimg
{
    width: 25%;
    margin-left: calc(50% - 200px)
}

.blog-post
{
    background-color: rgba(240, 248, 255, 0.091);
    padding: 2%;
    border-radius: 50px;
    width: 40%;
    margin: 0 2.5%;
    margin-top: 2.3%;
    display: inline-block;
    vertical-align: top;
}

.blog-post p
{
    font-size: 1em;
}

/* .blog-post img
{
    height: 50%;
} */

/* Animations */
@keyframes wipe-enter {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(.5, .5);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .anim-side {
        animation-name: wipe-enter;
        animation-duration: 1s;
        animation-iteration-count: 1;
    }
}

@media screen and (max-width: 950px)
{
    .about-card{
        width: 25%;
        margin: 0% 3.9%;
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 600px)
{
    .about-card{
        width: 33%;
        margin: 0% 8%;
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 400px)
{
    .about-card{
        width: 90%;
        margin: 0% 5%;
        margin-bottom: 4%;
    }

    .about-card:hover {
        scale: 1;
        transition: .3s;
        box-shadow: rgb(104, 104, 104) 0px 0px 0px 5px;
    }
}