/* fonts */
@font-face{
	font-family: NSSC-Thin;
	src: url(fonts/NotoSansSC-Thin.otf);
}

@font-face{
	font-family: NSSC-Light;
	src: url(fonts/NotoSansSC-Light.otf);
}

@font-face{
	font-family: NSSC-Normal;
	src: url(fonts/NotoSansSC-Regular.otf);
}

@font-face{
	font-family: NSSC-Medium;
	src: url(fonts/NotoSansSC-Medium.otf);
}

@font-face{
	font-family: NSSC-Bold;
	src: url(fonts/NotoSansSC-Bold.otf);
	font-weight: Bold;
}

@font-face{
	font-family: NSSC-Black;
	src: url(fonts/NotoSansSC-Black.otf);
	font-weight: Bolder;
}


/* font styles */

ul, a, button {
  color: lightgray;
  font-family: NSSC-Normal;
  font-size: 14px;
  font-weight: Thin;
  text-decoration: none;
}

/* content styles */
html {
  width: 100%;
  height: 100%;
}

body{
  width: 100%;
  height: 100%;
  background-color: darkgray;
  color: lightgray;
  margin: 0;
  padding: 0;
}

/* header section */
header {
  width: 100%;
  height: 100px;
  background-color: #24252A;
  padding: 0;
  margin: 0;
  display:grid;
  grid-template-columns: 20% 60% 20px;
  grid-gap: 0;
  align-items: center;
}

#logo {
  height: 100%;
  grid-column-start: 1;
  grid-column-end: 1;
}

header nav {
  grid-column-start: 2;
  grid-column-end: 2;
}

#menu li {
  display: inline;
}

#menu li a {
  display: inline-block;
  width: 100px;
  height: 20px;
  margin: 5px;
  padding: 5px 5px;
  border-style: solid;
  border-width: 0.5px;
  border-radius: 50px;
  border-color: #24252A;
  text-align: center;
  text-decoration: none;
}

#menu li a:hover {
  background-color: SlateBlue;
  transition: 0.5s;
}

/* link transition */
#link-home{

}

#link-products {}

#link-news {}

#link-support {}

#link-company {}

#link-contact {}

/* search box */
#search-box {
  width: 250px;
  height: 40px;
  display: grid;
  grid-template-columns: 15px 180px 15px 30px;
  border-style: solid;
  border-width: 5px;
  border-radius: 40px;
  border-color: dimgray;
  background-color: lightgray;
  align-items: center;
  grid-column-start: 3;
  grid-column-end: 3;
}

#search-text {
  height: 38px;
  border-style: none;
  background-color: transparent;
  font-size: 16px;
  grid-column-start: 2;
  grid-column-end: 2;
}

#search-icon {
  width: 40px;
  border-style: none;
  border-width: 1px;
  border-radius: 30px;
  border-color: orange;
  background-color: orange;
  color: white;
  grid-column-start: 4;
  grid-column-end: 4;
}

#search-icon:hover {
  cursor: pointer;
}

/* video */
#video-panel{
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 7;
  padding: 5% 10%;
  align-self: center;
  margin: auto;
}

#adv-video{
    width: 50%;

    display: block;
    border:solid 2px orange;
}

#adv-video:hover{
    cursor: pointer;
}

/* main content */
#content {
  width: 100%;
  height: 80%;
  border-style: solid;
  border-width: 0px;
  border-color: white;
  background-color: dimgray;
  /*padding: 20px 50px;*/
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  grid-template-rows: 50% 50%;
  grid-gap: 5;
}

.content-item {
  background-color: dimgray;
  outline-style: none;
  padding: 20px;
}

main {
  width: auto;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}

main p{
    width: 100%;
    font-size: 20px;
    font-family: NSSC-Normal;
    text-align: justify;
    text-justify: inter-word;
}

main h2{
    font-family: NSSC-Bold;padding-top: 10px;margin: 0;color:orange;
}

aside{
    padding: 0;
    margin: 0;
}

aside img{
    margin: auto;
    display:block;
    max-width: 400px;
}

aside[id="top"] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 5;
  grid-column-end: 7;
}

aside[id="bottom"] {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 7;
}

aside[id="middle"] {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 5;
  border-left: solid 2px orange;
  border-right: solid 2px orange;
}


/* Support */
#support{
    width: 500px;
    padding: 0px;
    margin-top: 20px;
    margin-left: 50px;
    line-height: 1.5;
}

#support h2, h4{font-family: NSSC-Bold;padding-top: 10px;margin: 0;color:orange;}

#support p{font-family: NSSC-Light; font-size: 20px;padding: 0; margin: 0;color: white;text-align: justify;text-justify: inter-word;}

#support a{
    color: aqua;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
}

#contactform{
    width: 600px;
    height: 520px;
    border: solid 2px orange;
    padding: 20px;
    font-family: NSSC-Light;
    font-size: 20px;
    margin-top: 50px;
}



#contactform textarea{height: 150px;resize: none;
    font-family: NSSC-Light;
    font-size: 14px;}

#contactform h2{
    color: orange;
    font-size: 20px;
    font-family: NSSC-Bold;
    margin: 0;
    padding: 0;
}

#contactform label,input[type=text],textarea{
    width: 100%;
    height: 25px;
    font-size: 16px;
}

#contactform label{color: orange;font-weight: bold;}


#contactform input[type=submit]{
    width: 200px;
    height: 40px;
    background-color: orange;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 20px auto;
    display: block;
    
    
    
}

#contactform input[type=submit]:hover{
    cursor: pointer;
}


/* company */
#company{
    width: 900px;
    padding-top: 20px;
    padding-left: 50px;
    font-family: NSSC-Light; 
    line-height: 1.5;
    color: white;
    text-align: justify;
    text-justify: inter-word;
    align-content: center;

}

#company h2, h4{font-family: NSSC-Bold;padding-top: 10px;margin: 0;color: orange;}

#company p{font-family: NSSC-Light;font-size: 20px; padding: 0; margin: 0;color: white;}

#company i{
    font-family: NSSC-Normal;
    color: aqua;
}

#companyimage{
    width: 100%;
    padding: 0;
    margin-top: 10px;
    border: solid 2px orange;

}

#company div{
    position: relative;
}

#company section{
}

#imagelink{
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 8px;
    margin: 0;
    padding: 0;
    text-align: right;
    color: black;
}




/* contact */
#contact{
    width: 100%;
    padding: 20px 0px 50px 50px;
    line-height: 1.5;
}

#contact h2, h4{font-family: NSSC-Bold;padding-top: 10px;margin: 0;color:orange;}

#contact p{font-family: NSSC-Light;font-size: 20px; padding: 0; margin: 0;color: white;}

#map{
    width: auto;
    max-width: 700px;
    border: solid 2px orange;
    margin-top: 50px;
    font-size: 20px;
}



footer {
  height: 20px;
  padding: 10px;
  background-color: dimgray;
  text-align: center;
  border-top:solid 2px orange;
}
