* {
	box-sizing: border-box;
}
zhtml{
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}


body {
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	
	overflow-x: hidden;
	margin: 0;
	
	background: linear-gradient( to right, #2f3475, #0f1128);
}

section {
    scroll-behavior: smooth;
    scroll-snap-align: start;
	overflow-x: clip;
}

/*animation*/
.autoShow {
    animation:autoShowAnimation both;
    animation-timeline: view(50% 5%);
}

@keyframes autoShowAnimation {
    from{
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.autoShowL {
    animation:autoShowAnimationLeft both;
    animation-timeline: view(70% 5%);
}

@keyframes autoShowAnimationLeft {
    from{
        opacity: 0;
        transform: translateX(-1000px) scale(0.3);
    }to{
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.autoShowR {
    animation:autoShowAnimationRight both;
    animation-timeline: view(70% 5%);
}

@keyframes autoShowAnimationRight {
    from{
        opacity: 0;
        transform: translateX(1000px) scale(0.3);
    }to{
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.autoShowB {
    animation:autoShowAnimationB both;
    animation-timeline: view(100% 5%);
}

@keyframes autoShowAnimationB {
    from{
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotation  /*rotation animation*/
{

  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

.autoBLur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}


@keyframes autoBlurAnimation {
    0%{filter: blur(40px);}
    45%, 55%{filter: blur(0px);}
    100%{filter: blur(40px);}
}


@keyframes bgTextAnimation {
  from {
    filter: blur(40px);
    opacity: 0.3;
  }
  to {
    filter: blur(0px);
    opacity: 1;
  }
}
/*start of navigationMain*/

nav
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom right, #275DB3, #2F3475, #2F3475);
    position: relative;

    height: 121px;
    top: 0 !important;
}

.logo1 {
	height: 120px;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu a{
    margin: 25px 10px;
    font-size: 30px;
    padding: 3px 20px;
    border-radius: 100px;
    font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
    text-decoration: none;
    color: white;
}

.search{
    display: flex;
  justify-content: center;
  flex: 1;
}

.searchBar{
    padding: 6px;
	border: 1px solid #000000;
	margin-top: 8px;
	margin-right: 16px;
	font-size: 17px;
	height: 60px;
	width: 20vw;
	border-radius: 50px;
}

.searchButton{
    color: #000000;
	border-radius: 50px;
	border: 0px solid #1D1616;
	margin: 10px 1px;
	padding: 20px 20px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}

  
.patty {
    display: block;
    width: 63px;
    height: 14px;
    background-color: #FF6700;
    border-radius: 10px;
    margin-bottom: 2.5px;
    margin-top: 2.5px;
    z-index: 2;
  }

  .mobile-only
{
    display: none;
}

#burger{
	display: none;
}

#nav-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 100%;
	max-width: 300px;
	background: #04076A;
	transform: translateX(100%); /* hides it */
	transition: transform 0.3s ease;
	overflow-y: auto;
	z-index: 9999;
}


#nav-menu.activeMenu {
  transform: translateX(0%);
}
#nav-menu a
{
	width:80%;
	margin: 5px 5px;
	padding: 6px 30px;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 40px;
	font-weight: 1000;
	border-radius: 25px;
	text-align:center;
	text-decoration: none;
}

#nav-menu a.active {
	
	color: #000000;
	background-color: #FF6501;
	
}

#nav-menu a.inactive {
	color: #FFFFFF;
	background-color: #000000;
	
}

/*end of navigationMain*/

/*start of carousel*/

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('sample001.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Content in the middle */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: white;
    padding: 20px;
}
.hero-content h1 {
    font-size: 70px;
    font-family: "Oswald", sans-serif;
    margin-bottom: 10px;
	word-wrap: break-word;
}

.hero-content p {
    font-size: 24px;
    font-family: "Atkinson Hyperlegible Next", sans-serif;
	word-wrap: break-word;
}

/* Make sure nav sits on top of bg */
.hero-section nav {
    position: relative;
    z-index: 10;
}

/*end of carousel*/


/*start of Category*/

.header {
	display:flex;
	align-items:center;
    align-self: center;
    width: 90vw;
	overflow-x: clip;
}

.header h1{
    align-self: center;
    width: auto;
	color: white;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 1000;
	font-size: 40px;
	text-align: center;
}

.line
{
    content: " ";
	display: block;
	height: 5px;
	flex-grow: 1;
	background: #FF6700;
}

#Category{
    width: 90vw;
    align-self: center;
    display: flex;
    align-items: center;
    overflow-y: visible;
    overflow-x: scroll;
    white-space: nowrap;

    gap: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10vh;
}

.nav {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  background: none;
  cursor: pointer;
}

.nav.left {
  border-right: 20px solid white; /* Color of the triangle */
  margin-right: 10px;
}

.nav.right {
  border-left: 20px solid white;
  margin-left: 10px;
}

.nav.left:hover {
  border-right: 20px solid #92d4fb; /* Color of the triangle on hover */
}

.nav.right:hover {
  border-left: 20px solid #92d4fb;
}


.Cslider {
    height: 60vh;
    width: 40%;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    align-items: center;
    gap: 10px;
    color: white;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.Cslider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.Cslide {
    position: relative;
    width: 80%;
    height: 90.91%;
    background: linear-gradient(to bottom right, #275DB3, #2F3475, #2F3475);
    flex-shrink: 0;
    text-align: center;
    border-radius: 5px;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(0.95);
    opacity: 0.6;
}

.Cslide img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.Cslider-hover{
    position: absolute;
    top: 40%;
    left: 50%;
    padding: 0 10px;
    transform: translate(-50%, -50%);
    background: #FF6700;
    color: white;
    font-size: 3vw;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    text-decoration: none;
    z-index: 4;
    font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}
.Cslide.active {
    justify-self: center;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 1;
    z-index: 2;
}

.Cslide:hover .Cslider-hover{
    opacity: 1;
} 

.Cslide:hover img{
    filter: blur(4px);
}

.category-info{
    display: flex !important; 
    align-items: center;
    justify-content: space-between;
    width: 50vw;
    height: 60vh;
    background: linear-gradient(to bottom right, #275DB3, #2F3475, #2F3475);

    /* Layout containment */
    overflow: auto;                
    word-wrap: break-word;         
    overflow-wrap: break-word;     
    white-space: normal;           
    display: block;                
    box-sizing: border-box;      
    text-align: justify;  
    color: white;

    padding: 20px;                 
    border-radius: 10px;  
}

.category-info img{
    margin: 0 10px;
    width: auto;
    height: 300px;
    filter: invert(1) brightness(1000%);
}


.info-wrapper{
    display: flex;
    align-self: center;
    align-items: center;
}

.info-wrapper-text{
    display: flex;
    flex-direction: column;
}

/*end of Category*/

/* Filler*/
#filler-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 110%;
}
#circuit{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/img/background-circuit.png');
    height: 45vw;
    width: 90vw;
    z-index: -2;

	background-position:center;
	background-repeat: no-repeat;
}
#portal{
	z-index: -1;/*layer*/
    content: " ";
	transform-origin: center;
    width: 60vw;
    height: 60vw;
    background: url('/img/portal1.png') no-repeat center;
	background-size:contain;
	background-position:center;
	background-repeat: no-repeat;
	
	animation: rotation;	
    animation-timeline: view() ;
}



.grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(var(--row), 100px);
    margin-top: 50px;
    gap: 50px;
    color: white;
    font-family:  "Atkinson Hyperlegible Next", "Roboto";
}
.grid-3{
    --row: 6;
    font-size: 10em;
}
.grid-3 div{
    grid-column: 2/ 6;
    text-wrap: nowrap;
}
.grid-3 div:nth-child(even){
    text-align: right;
}
.grid-3 div:nth-child(5){
    grid-column: 1/ 6;
}
.grid-3 div:nth-child(4){
    grid-column: 1/ 7;
}



/*end of filler*/

/*start of Build showcase*/

#buildShowcase {
    align-self: center;
    justify-self: center;
    width: 90vw;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow-x: hidden;
}

.buildButt {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    cursor: pointer;
}

.buildButt.left {
    border-right: 20px solid white; /* Triangle Navigation */
}

.buildButt.right {
    border-left: 20px solid white;
}


.buildButt.left:hover {
    border-right: 20px solid #92D4FB; /* Triangle Navigation color on hover*/
}

.buildButt.right:hover {
    border-left: 20px solid #92D4FB;
}


.Bslider {
    align-items: center;
    display: flex;
    max-width: 100vw;
    width: 50%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    
}

.Bslider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.Bslide {
    position: relative;
    width: 80%;
    height: 90.91%;
    background: #0262c1;
    flex-shrink: 0;
    text-align: center;
    border-radius: 5px;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.6;
}

.Bslide img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.Bslide.focused {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 1;
    z-index: 2;
}

.build-info {
    width: 50vw;
    height: 100%;
    background: linear-gradient(to bottom right, #275DB3, #2F3475);
    
    display: flex;
    
    align-items: center;
    padding: 5%;
    color: white;
    text-align: justify;
    font-size: 2.5vh;
    line-height: 1.5;
    font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

/*end of build showcase*/

/* start of brand partner*/

#brands{
    display: flex;
    justify-content: center;
    justify-self: center;
    align-self: center;
    flex-wrap: wrap;
    width: 90vw;
}

.brand{
	display: flex;
	justify-self: center;
	align-items: center;
	overflow: hidden;
    width: 180px;
    height: 120px;
    background-color: white;
    border-radius: 10px;
    margin: 20px;
    animation:autoShowAnimation both;
    animation-timeline: view(50% 5%);
}

.brand img{
	align-self: center;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.brand img:hover{
    transform: scale(1.05);
    transition-timing-function:linear;
    transition-duration: 0.4s;
}
/* end of brand parter*/


/*Start of reviews section*/

.customer-review {
	align-self: center;
    max-width: 80vw;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow-y: hidden; /*no vertical scroll*/
	overflow-x:auto;    /*yes horizontal scroll*/
	white-space: nowrap;
}

.customer-review-container {
    flex-shrink: 0;
	background-color: #3D3E42;
	border: 5px solid #FF6501;
	border-radius: 8px;
	width: 300px;
	height: 300px;
	padding: 20px;
	word-wrap: break-word;
}

.customer-name, .customer-message, .customer-rating {
	color: #EEEEEE;
	text-align: center;
}

.customer-message {
    overflow-wrap: break-word;
    word-break: break-word; 
    white-space: normal;   
    color: #EEEEEE;
    text-align: justify;
}

.star {
    font-size: 1.5em;
    color: #ccc;
    margin-right: 2px;
}

.star.filled {
    color: gold;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input[type="radio"]:checked ~ .star,
.star-rating .star:hover,
.star-rating .star:hover ~ .star {
    color: #FF6501;
}

.triangle-toggle-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.triangle-toggle-btn:hover {
    background-color: #0056b3;
}

.triangle-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
    transition: transform 0.3s ease;
}

.triangle-arrow.open {
    transform: rotate(180deg);
}

.review-form-container {
    overflow: hidden;
    margin-top: 50px;
    height: 0;
    transition: height 0.4s ease;
}

.review-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-form-container.open .review-form {
    opacity: 1;
    transform: translateY(0);
}

.review-form input,
.review-form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 300px;
}

#review-message{
    height: 200px;
}

.submit-review-btn {
    background-color: #28a745;
    color: white;
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-review-btn:hover {
    background-color: #218838;
}


/*End of reviews section*/

/*  start of pcPIC*/

#pcPIC{
    position: relative;
    width: auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#pcPIC::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('Gaming.jpg') center/cover no-repeat;
    filter: blur(8px);
    z-index: -1;
}

#pcPIC a{
    width: 220px;
    height: 70px;
    background-color: #FF6700;

    margin: 25px 10px;
    font-size: 30px;
    padding: 3px 20px;
    border-radius: 10px;
    font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
    text-decoration: none;
    color: white;
}

.bg-text {
    position: relative;
    color: white;
    font-size: 24px;
    font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
    font-weight: bold;
    text-align: center;
}



/* end of pcPIC*/

/*start of aboutUS*/
#aboutH1{
    justify-self: center;
    align-self: center;
}

.about-us1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
    color: #ffffff;
}

.about-us2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	margin-bottom: 30px;
    color: #ffffff;
}

.about-us3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.first-paragraph iframe {
	height: 250px;
	width: 500px;
	border: 3px solid #3A6EA5;
	border-radius: 15px;
}

.first-paragraph-text {
	background-color: #3A6EA5;
	height: 250px;
	width: 500px;
	text-align: left;
	padding-left: 5px;
	
}

.first-paragraph-text h2 {
	font-size: 36px;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.first-paragraph-text p {
	width:80%;
	word-wrap: break-word;
	font-size: 24px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
}

.second-paragraph-img img {
	height: 300px;
	width: 350px;
	border-radius:  0px  0px  15px  0px;
	align-items: center;
}

.second-paragraph-img {
	background-color: #3A6EA5;
	border-radius: 0px 15px 15px 0px;
}

.second-paragraph {
	background-color: #3A6EA5;
	height: 300px;
	width: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.second-paragraph p {
	width:80%;
	word-wrap: break-word;
	text-align: right;
	font-size: 24px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
}

.third-paragraph iframe {
	height: 300px;
	width: 500px;
	border: 3px solid #3A6EA5;
	border-radius: 15px;
}

.third-paragraph-text {
	height: 300px;
	width: 500px;
	text-align: left;
	padding: 5px 15px;
	border-right: 5px solid #3A6EA5;
}

.third-paragraph-text p {
    color: white;
	width:80%;
	word-wrap: break-word;
	font-size: 24px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
}

.fourth-paragraph-text
{
    color:white;
    justify-self: center;
	align-self:center;
	text-align: center;
	width:40%;
	word-wrap: break-word;
	font-size: 24px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
}

/*end of aboutUS*/

/*start of footerMain*/
footer
{
	display:flex;
	align-items: center;
	justify-content:space-evenly;
	color:#FFFFFF;
	bottom:0;
	width:100%;
    height: 100%;
	background-color:  none;
	margin-right: 5px;
	margin-top: 200px;
    border-top: #FF6501;
    border-top-width:5px;
    border-top-style: solid;
}

.vertical-line {
    content: " ";
    border-left-color: #FF6700;
    border-left-style: solid ;
    border-left-width: 5px;
    height: 300px;
}

#copyright
{
    display:flex;
	align-items: center;
	justify-content:center;
	color:#FFFFFF;
	bottom:0;
	width:100%;
	background-color: none;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

#copyright a
{
    text-decoration: none;
    color:#FFFFFF;
}

.boxHeh {
	background-color: none;
}

.boxHeh img
{
	height:250px;
}
.middle-footer
{
	width:30%;
}

.middle-footer h2 {
	color: #EEEEEE;
	text-align: left;
	font-size: 36px;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.middle-footer p {
	word-wrap: break-word;
	color: #EEEEEE;
	text-align: left;
	font-size: 20px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
}

.right-footer
{
	list-style: none;  /* removes bullets */
	padding: 0;   
	text-align:left;
	font-size: 20px;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
	color: #EEEEEE;
}

.right-footer h2 {
	color: #EEEEEE;
	text-align: left;
	font-size: 36px;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.right-footer li, a{
    text-decoration: none;
    color: white;
}

.follow-us {
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 5px;
	margin-bottom: 30px;
}

.follow-us img{
	height: 80px;
	width: 80px;
}

.socicon {
	font-size: 50px;
	color: #FFFFFF;
	padding: 5px;
}

.header1 {
	font-size: 70px;
	font-family: "Oswald";
	font-weight: 800;
}

.header2 {
	font-size: 48px;
	font-family: "Atkinson Hyperlegible Next";
	font-weight: 700;
}

.header3 {
	font-size: 36px;
	font-family: "Roboto";
	font-weight: 600;
}

.paragraph {
	font-size: 24px;
	font-family: "Roboto";
	font-weight: 500;
}
/*end of footerMain*/

/*DASHBOARD PAGE*/
.dashboard-sidenav {
	width: 100px;
	position: fixed;
	z-index: 1;
	top: 18px;
	left: 8px;
	background: #04076A;
	overflow-x: hidden;
	padding: 8px 0;
	margin-top: 150px;
}

.dashboard-sidenav a{
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 18px;
	color: #EEEEEE;
	display: block;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.customer-reviews-container {
	width: 80%;
    margin: 50px auto;
    background: #EEEEEE;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.review-table {
	display: table;
    width: 100%;
	margin: 0 auto;
}

.row {
    display: table-row;
}
.col {
    display: table-cell;
    padding: 15px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.review-approval-btn {
    background-color: #000000;
    color: white;
    border: none;
	font-size: 18px;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 5px;
}

.review-approval-btn:hover {
    background-color: #D7BC72;
}

/* PRODUCT PAGE */
.product-container {
	width: 82%;
    margin: 0 auto;
    background: #EEEEEE;
    padding: 0px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-title-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-features-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-title1 {
	color: #000000;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 800;
	font-size: 24px;
	text-align: left;
	position: relative;
}

.product-title2 {
	color: #EEEEEE;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 400;
	font-size: 12px;
	text-align: left;
	position: relative;
	margin-top: 100px;
	margin-bottom: 15px;
}

.product-title1:after {
	content: " ";
	display: block;
	height: 2px;
	width: 1080px;
	position: absolute;
	top: 50%;
	left: 110%;
	background: #D7BC72;
}

.add-product-container {
	background-color: #000000;
	color: #EEEEEE;
	padding: 0 10px 0 10px;
	border-radius: 50px;
	cursor: pointer;
}

.add-product-container:hover {
	background-color: #D7BC72;
	color: #000000;
}

.inventory-holder {
	overflow-y: scroll;
	height: 500px;
}

.inventory-container {
	display: flex;
	flex-direction: column;
	background-color: #D9D9D9;
	margin: 10px;
}


.inventory-item {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.inventory-item img {
	width: 100px;
	height: 100px;
	padding: 10px;
}

.inventory-item h3 {
	border-left: 3px solid #D7BC72;
	padding: 10px 10px 10px 30px;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.inventory-edit-btn {
	padding: 10px 35px;
	border-radius: 25px;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 20px;
	cursor: pointer;
	font-weight: 900;
	background-color: #AFAFAF;
	border: none;
}

.inventory-edit-btn:hover {
	background-color: #D7BC72;
}

.csv-btn-container button{
	background-color: #000000;
	color: #EEEEEE;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 400;
	font-size: 12px;
	text-align: left;
	position: static;
	margin-bottom: 15px;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	border: none;
}

.csv-btn-container button:hover {
	background-color: #D7BC72;
	color: #000000;
}

.csv-btn {
	top: 10px;
	left: 280px;
}


.import-csv-popup {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.import-csv-form {
	background-color: #AFAFAF;
	border-radius: 25px;
	padding: 25px;
}

.import-csv-form button {
	background-color: #000000;
	color: #EEEEEE;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 12px;
	font-weight: 400;
	border: none;
	border-radius: 50px;
	padding: 5px 15px;
	cursor: pointer;
	width: 40%;
	margin: 15px auto;
}

.import-csv-form button:hover {
	background-color: #D7BC72;
	color: #000000;
}

.import-csv-container {
	display: flex;
	flex-direction: column;
	padding: 5px;
}

.close-import-button {
	cursor: pointer;
}

.close-import-button:hover {
	background-color: #EEEEEE;
	border-radius: 100px;
	padding: 1px;
}

.export-csv-popup {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.export-csv-form {
	background-color: #AFAFAF;
	border-radius: 25px;
	padding: 25px;
}

.export-csv-form button {
	background-color: #000000;
	color: #EEEEEE;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 12px;
	font-weight: 400;
	border: none;
	border-radius: 50px;
	padding: 5px 15px;
	cursor: pointer;
	width: 40%;
	margin: 15px auto;
}

.export-csv-form button:hover {
	background-color: #D7BC72;
	color: #000000;
}

.export-csv-container {
	display: flex;
	flex-direction: column;
	padding: 5px;
}

.close-export-button {
	cursor: pointer;
}

.close-export-button:hover {
	background-color: #EEEEEE;
	border-radius: 100px;
	padding: 1px;
}

.inv-filter-container {
	display: flex;
}


/* ADD PRODUCT POPUP */
.product-popup {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.add-product-selection {
	display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	margin: 0 auto;
}

.add-product-selection-form-container {
	background-color: #D9D9D9;
    padding: 10px;
    border-radius: 5px;
    width: 320px;
	height: 100px;
    position: relative;
	border: 2px solid #FF6501;
	margin: 250px auto;
}

.add-product-selection-popup-container {
	display: flex;
	justify-content: space-evenly;
	flex-direction: column;
}

.product-selection-button-container button{
	padding: 0px 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 800;
	font-size: 16px;
}

.closeProductAddPopupBtn {
	cursor: pointer;
}

.product-select-btn {
	background-color: #D7BC72;
	color: #000000;
}

.product-form-container {
	background-color: #D9D9D9;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
	height: 500px;
    position: relative;
	border: 2px solid #FF6501;
	overflow-y: auto;
	margin: 50px auto;
}

.product-popup-container {
	display: flex;
	justify-content: space-evenly;
}

.product-image-placeholder {
    width: 200px;
    height: 200px;
    border: 2px dashed #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.closeProductPopupBtn {
	position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

label {
    display: block;
    margin: 10px 0 5px;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

input[type="text"], select, textarea {
    width: 300px;
    padding: 5px;
    margin-bottom: 15px;
}

textarea {
    height: 80px;
}

.product-button-container button {
    padding: 20px 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 800;
	font-size: 16px;
}

.product-cancel-btn {
	background-color: #AFAFAF;
	color: #000000;
}

.product-submit-btn {
	background-color: #D7BC72;
	color: #000000;
}

/* EDIT PRODUCT POPUP */
.edit-product-popup {
	display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	margin: 0 auto;
}

.edit-product-form-container {
	background-color: #D9D9D9;
    padding: 20px;
    border-radius: 5px;
    width: 600px;
	height: 500px;
    position: relative;
	border: 2px solid #FF6501;
	overflow-y: auto;
	margin: 50px auto;
}

.edit-product-popup-container {
	display: flex;
	justify-content: space-evenly;
}

.edit-product-image-placeholder {
    width: 200px;
    height: 200px;
    border: 2px dashed #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.closeProductEditPopupBtn {
	position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

label {
    display: block;
    margin: 10px 0 5px;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

input[type="text"], select, textarea {
    width: 300px;
    padding: 5px;
    margin-bottom: 15px;
}

textarea {
    height: 80px;
}

.edit-product-button-container button {
    padding: 20px 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 800;
	font-size: 16px;
}

.edit-product-delete-btn {
	background-color: #FF6501;
	color: #000000;
}

.edit-product-cancel-btn {
	background-color: #AFAFAF;
	color: #000000;
}

.edit-product-submit-btn {
	background-color: #D7BC72;
	color: #000000;
}



/* ORDER DASHBOARD */
.order-container {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.order-grid {
	background-color: #EEEEEE;
	overflow-y: auto;
	width: 83%;
	height: 800px;
	margin-top: 550px;
	border-radius: 10px;
	padding: 10px;
}

.order-title-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.order-title1 {
	color: #000000;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-weight: 800;
	font-size: 24px;
	text-align: left;
	position: relative;
	padding-left: 15px;
}

.order-title1:after {
	content: " ";
	display: block;
	height: 2px;
	width: 820px;
	position: absolute;
	top: 50%;
	left: 110%;
	background: #D7BC72;
}


.order-slip-container {
	display: flex;
	align-items: center;
	gap: 20px;
}

.order-slip {
	background-color: #D9D9D9;
	padding: 15px 20px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
	
}

.order-slip:hover {
	transform: scale(1.03);
}


.order-slip h3 {
    margin: 5px 0;
}

.order-item {
    height: 40px;
    width: 360px;
    margin-left: 15px;
}


/* LOGIN PAGE */
#loginBody 
{
	display: flex;
	flex-direction:column;
	justify-content : center;
	align-items: center;
	
}

#loginLogo
{
	position: absolute;
	top: 90px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	height: 179px;
}

#loginBox
{
	display: flex;
	justify-content: center;
	align-items: center;
	
	font-family: "Atkinson Hyperlegible Next";
	text-align:center;
	color: #FFFFFF;
	
	background: url(login-bg.png) no-repeat center;
	
	height: 420px;
	width: 550px;
	border-style: solid;
	border-radius: 20px;
	border-color: #FF6501;
}
#enterButton
{
	height: 43.2px;
	width: 295.79px;
	font-weight: bold;
	color: #FFFFFF;
	background-color:#000000;
	
	border-style: solid;
	border-radius: 2px;
	border-color: #D7BC72;
}

#registerLink
{
    color:#FFFFFF;
}

.userInput
{
	height:43.2px;
	width:412px;
	border-style: solid;
	border-radius: 2px;
	border-color:#D7BC72;
}


/* STORE PAGE */
.toggle-filter {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px; /* Adjusted to align with arrow-button */
    left: 10px;
    z-index: 1001;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%; /* from arrow-button */
    padding: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-filter.active{
    display: none;
}



/* Arrow shape */
.arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-left: 2px;
}


.store-container {
	display: flex;
}

.store_filter {
	width: 180px;
	height: 100%;
	z-index: 1;
	top: 15px;
	background: linear-gradient(to top left, #275DB3, #2F3475, #2F3475);
	overflow-y: auto;
	overflow-x: hidden;
	padding: 8px;
	border-radius: 0px 0px 15px 0px;
	flex-shrink: 0;
	transition: left 0.4s ease;
}

.filter_title{
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 24px;
	font-weight: 500;
	color: #EEEEEE;
	text-decoration: none;
}

.filter_title:active {
	color: #D7BC72;
}

input[type="radio"] {
	margin-right: 6px;
	width: 16px;
	height: 16px;
}

.filterLabel {
	font-size: 18px;
	color: #EEEEEE;
	display: flex;
	align-items: center;
	margin: 4px 0;
	font-family: "Atkinson Hyperlegible Next", "Roboto", "Oswald";
	cursor: pointer;
	text-decoration: none;
	margin: 10px 0px;
}

.filterLabel:active {
	color: #D7BC72;
}



.product-grid {
	margin: 0px 0px 0px 95px;
	padding: 2rem;
}

.no_comp_title{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 24px;
	font-weight: 800;
}

.store {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.store-container {
	display: flex;
}

.product {
    transition: transform 0.3s ease;
    width: 240px;
	margin: 10px;
	padding: 20px 20px 0px 20px;
	text-align: center;
	
	word-wrap: break-word;
}


.product:hover
{
    transform: scale(1.1);
}


.product img {
	width: 200px;
	height: 200px;
}

.product a{
	background-color: #FF6501;
	color: #000000;
	border: none;
	border-radius: 25px;
	padding: 10px 15px 10px 15px;
	cursor: pointer;
	margin-top: 10px;
}

.product a:hover {
	background-color: #D7BC72;
}

.product h3{
    width: 200px;
    word-wrap: break-word;
}

.product-content {
    background-color: #AFAFAF;
    border-radius: 0px 0px 25px 25px;
    border-color: #FF6501;
    border-width: 5px;
    border-style: solid;
}


/* PRODUCT POPUP */
.store-product-popup {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.store-product-popup-content {
    background-color: #D9D9D9;
    padding: 20px;
    border-radius: 25px;
	min-width: 10vw;
	max-width: 30vw;
	min-height: 300px;
	max-height: 500px;
	align-items: center;
	overflow-y: scroll;
}

.store-product-popup-content img {
    height: 350px;
    width: 350px;
}

#store-popup-product-description p{
	word-wrap: normal;
}






/* BUILD A PC PAGE */

#buildContent
{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
	margin-top:100px;
	gap:10px
}

#pcHUD
{
	position:relative;
	height:375px;
	width:375px;
	background-color:#3D3E42;
	
	display:flex;
	justify-content:center;
	align-items: center;
}

#case
{
	position:relative;
	height:175px;
	width:175px;
	background-color:#FFFFFF;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:8px;
}

#mobo
{
	position:relative;
	
	height:110px;
	width:110px;
	background-color:#172854;
	
	top:10.62px;
	left:7.5px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#cpu
{
	position:absolute;
	
	height:30px;
	width:30px;
	background-color:#3D3E42;
	
	top:17.5px;
	left:18px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#ssd
{
	position:absolute;
	
	height:8px;
	width:36px;
	background-color:#3D3E42;
	
	top:55px;
	left:13.75px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#ram
{
	position:absolute;
	
	height:43px;
	width:22px;
	background-color:#3D3E42;
	
	top:13.78px;
	right:7.5px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#gpu
{
	position:absolute;
	
	height:23px;
	width:114px;
	background-color:#3D3E42;
	
	bottom:3.75px;
	left:0.7px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#psu
{
	position:absolute;
	
	height:23px;
	width:63px;
	background-color:#3D3E42;
	
	bottom:7.5px;
	left:10px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#hdd
{
	position:absolute;
	
	height:23px;
	width:63px;
	background-color:#3D3E42;
	
	bottom:7.5px;
	left:80px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#fan
{
	position:absolute;
	
	height:125px;
	width:11px;
	background-color:#3D3E42;
	
	bottom:31.25px;
	right:6.8px;
	
	border-style:solid;
	border-color:#D7BC72;
	border-width:2px;
}

#cpuCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	left:5px;
	top:21px;
}

#ssdCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	left:5px;
	top:94.19px;
}

#gpuCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	left:5px;
	top:170px;
}



#psuCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	left:5px;
	top:260px;
}

#ramCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	left:158px;
	top:21px;
}
#fansCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	right:11.25px;
	top:21px;
}
#hddCircle img
{
	position:absolute;
	
	height:50px;
	width:50px;
	background-color:#D7BC72;
	
	border-width:2px;
	border-radius:50px;
	
	right:11.25px;
	top:260px;
}

#component-selection
{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 375px;
    height:375px;
    background-color: #3D3E42;
    overflow-y: auto; /*vertical scroll if overflow hieght*/
    overflow-x: hidden;
    white-space: nowrap;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}
.component
{
    margin-top: 5px;
    width: 350px;
    height:70px;
    background-color: #D9D9D9;
    flex-shrink: 0;
	cursor: pointer;
}

#motherboard
{
	display: none;
    
    margin-left: 20px;
    width: 375px;
    height:375px;
    background-color: #3D3E42;
    overflow-y: auto; /*vertical scroll if overflow hieght*/
    overflow-x: hidden;
    white-space: nowrap;
}

#motherboard:target
{
	display: flex;
    flex-direction: column;
    align-items: center;
}



.component-menu {
	display:none;
	
	width: 375px;
	height:375px;
	background-color: #3D3E42;
    overflow-y: auto; /*vertical scroll if overflow hieght*/
    overflow-x: hidden;
    white-space: nowrap;
	font-family:  "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.component-menu a {
	display: block;
	padding: 10px;
	color: #EEEEEE;
	text-decoration: none;
}

.component-menu a:hover {
	background-color: #D9D9D9;
	cursor: pointer;
}

.component-menu.show {
	display: block;
}

.summary-container {
	background-color: #3D3E42;
	padding: 5px 20px;
	width: 1105px;
	height: 250px;
	border-top: 2px solid #D7BC72;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.summary-desc {
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
    font-size: 16px;
    font-weight: 600;
    color: #EEEEEE;
}

.item-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.summary-price h3{
    color: #EEEEEE;
    font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.summary-price button{
	padding: 10px;
	background-color: #D7BC72;
	color: #000000;
	border: none;
	cursor: pointer;
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
	font-size: 18px;
}


/* ITEM LIST POPUP */
.item-list-popup {
	display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.item-list-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		"div1 div1"
		"div2 div3"
		"div4 div4";
	background-color: #AFAFAF;
	padding: 20px;
	gap: 20px;
	width: 600px;
	max-width: 90vw;
	height: 300px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	overflow-y: scroll;
}

.item-row p, h3{
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.div1 {
	grid-area: div1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.div1 p {
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.div2 {
	grid-area: div2;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.div2 .item-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.div3 {
	grid-area: div3;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.div3 .item-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.div4 {
	grid-area: div4;
	display: flex;
	justify-content: space-evenly;
}

.div4 button {
	font-family: "Oswald", "Atkinson Hyperlegible Next", "Roboto";
}

.item-list-form button {
	border: none;
	padding: 10px 20px;
	background-color: #000000;
	color: #EEEEEE;
	border-radius: 50px;
	cursor: pointer;
	align-self: center;
	margin-top: 10px;
	width: 150px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.item-list-form button:hover {
	background-color: #D7BC72;
	color: #000000;
}

.close-item-list {
	cursor: pointer;
	font-size: 24px;
	position: absolute;
	top: 10px;
	right: 15px;
	color: #000000;
}

.form-container {
	display: flex;
}

/*otherCredits*/

#otherCredits {
    display: flex;
    gap: 10px;
}

#otherCredits a{
    background-color: white;
    border-radius: 2px;
    color: black;
}

/*MEDIA QUERY*/

@media (max-width: 1080px)  {
	/*Navigation*/
	.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 40px;
	color: white;
	cursor: pointer;
	z-index: 10000;
	font-size: 60px;       
	font-weight: 900; 
	}

	.mobile-only{
		display: block;
	}
	#burger {
		display: flex;
		flex-direction: column;
		margin-right: 30px;
  	}

	#nav-menu{
		gap:20px;
	}

	.menu{
		display: none;
	}

	#nav-menu form{
		width: 90%;
		margin: 5px 5px;
		
	}

	#nav-menu input[type="text"], select, textarea{
		width: 100%;
	}


	.autoShowL {
    animation:autoShowAnimationLeft both;
    animation-timeline: view(100% 0);
	}
	
	.build-info{
	    font-size: 2.5vw;
	}
	
	/*Store */
	
	.toggle-filter{
	    display: flex;
	    top:50%;
	}
	
	.store_filter{
	    height: 90vh;
	    transform: translateX(-100%);
        transition: transform 0.4s ease;
        position: absolute;
	}
	
	.store_filter.active {
	    transform: translateX(0);
	    position: static;
    }
    
    .product-grid{
        margin-left: auto;
        margin-right: auto;
    }
    
	/* Category*/
	#Category{
		position: relative;
		flex-direction: column;
	}

	.Cslider{
		height: 30vh;
		width: 50vw;
	}
	.nav{
		z-index: 999;
	}

	.nav.left{
		position: absolute;
		top: 15%;
		left: 0%;
	}

	.nav.right{
		position: absolute;
		top: 15%;
		right: 0%;
	}

	.category-info{
		width: 90%;
		height: 55vh;
		overflow: hidden;
	}


	.info-wrapper{
		flex-direction: column;
	}

	.info-wrapper img{
		height: 20vh;
	}

	.info-wrapper-text{
		font-size: 2.3vh;
	}

	.info-wrapper-text h1{
		text-align: center;
		margin-top: 0;
	}
	/*Filler content*/
	.grid-3{
		font-size: 9em;
	}

	.grid{
		    grid-template-rows: repeat(var(--row), 70px);
			margin-top: 100px;
	}

	#portal{
		width: 100%;
		height: 500%;
		background-size: auto;
	}

	/*Build*/

	#buildShowcase{
		position: relative;
		flex-direction: column-reverse;
	}

	.Bslider{
		height: 100vh;
		width: 60vw;
	}

	.buildButt{
		z-index: 100;
	}

	.buildButt.left{
		position: absolute;
		top: 30%;
		left: 0%;
	}

	.buildButt.right{
		position: absolute;
		top: 30%;
		right: 0%;
	}

	.build-info{
		width: 90%;
		height: 55vh;
		overflow: hidden;
	}

}

@media  (max-width:880px) {
	.grid {
		grid-template-rows: repeat(var(--row), 40px);
	}

	.grid-3{
		font-size: 7em;
	}
	
	.build-info{
	    font-size: 2.3vw;
	}
	.store-product-popup-content {
    max-width: 50vw;
  }


}

@media (max-width:600px) {
	html{
		overflow-x: hidden;
	}

	.autoShow{
		animation: none;
	}

	.autoShowB{
		animation: none;
	}

	.autoShowL{
		animation: none;
	}

	.autoShowR{
		animation: none;
	}


	#filler-content{
		display: none;
	}

	.about-us1{
		flex-direction: column;
	}

	.about-us2{
		flex-direction: column;
	}

	.second-paragraph{
		width: 500px;
	}
	.second-paragraph-img img{
		width: 500px;
		height: auto;
	}

	.about-us3{
		flex-direction:column ;
	}

	.third-paragraph-text{
		border-right: none;
		border-bottom: 5px solid #3A6EA5;
	}

	footer{
		flex-direction: column;
	}

	.vertical-line{
		border-left-width:0px ;
		border-bottom-width: 5px;
		border-bottom-style:solid ;
		border-bottom-color: #FF6700;
		height: 5px;
		width: 80vw;
	}
}

@media (max-width:450px) {
    .logo1{
        height: 80px;
    }
    .hero-content{
        width: 100%;
    }
    .hero-content h1{
        font-size: 50px;
    }
	.Cslider{
		width: 90vw;
	}
	
	.info-wrapper img{
	    height: 10vh;
	}

	.Bslider{
		width: 90vw;
	}

	.brand{
		width: 140px;
	}

	.about-us1 div,.about-us1 iframe,.about-us2 div,.about-us2 img,.about-us3 div, .about-us3 iframe{
		width: 97vw;
	}
	
	.build-info{
	    font-size: 3.2vw;
	}
	.store-product-popup-content {
    max-width: 80vw;
  }
}