*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 .main{
  padding: 15px 10%;
  display: flex;
  flex-direction: column;
} 
.header{
  width: 100%;
  align-items: center;
 justify-content: space-between;
  display: flex;
}
img {justify-content: space-evenly;
  width: 100%;
}
.logo img {
  width: 115px;
  padding-right: 20px;
}

nav a {
  text-decoration: none;
  color: black;
  padding-right: 10px;
}

nav a:hover {
  text-decoration: underline solid black;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
}
.other-nav i {
  padding-left: 11px;
}
.other-nav .menu{
  display: none;
}
.dis-section {
  height: 425px;
  width: 100%;
  background-image: url(/assets/img/showcase.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: end; 
  padding-bottom: 45px;
}
.dis-info {
  line-height: 2.5rem;
  text-align: center;
}
.dis-info h2{
  height: 34px;
  font-size: 23px;
  font-weight: 700;
  margin: 5px;
}

.btn {
  height: 40px;
  width: 125px;
  border: none;
  background-color: black;
  color: white;
  padding: 10px 15px;
  font-weight: 700;
  margin-top: 15px;
}

.dis-info button:hover {
  background-color: #393939;
}

.latest-prods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.prod h2{
  font-size: 20px;
}
.prod img {
  margin-bottom: 10px;
}

.prod p {
  margin: 15px 0;
  font-size: 15px;
}

.prod button {
  border: none;
  background-color: transparent;
  text-transform: uppercase;
  color: #0067B8;
  font-weight: 700;
}
.xbox {
  height: 350px;
  width: 100%;
  background-image: url('/assets/img/xbox.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 40px 0 17px 0;
}

.xbox-info {
  padding: 79px 0 0 30px;
  width: 45%;
}

.xbox h2 {
  margin-bottom: 10px;
}
.xbox-info button:hover {
  background-color: #393939;
}

.section {
  height: 350px;
  width: 100%;
  background-image: url('/assets/img/carbon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 17px 0;
  color: #FFFFFF;
}
.xbox-info p{
  margin: 10px 0 20px;
} 
.sec-button {
  background-color: white;
  color: black;
}
.section button:hover{
  background-color: #DDDDDC;
  color: #30302F;
}

.social-links{
  height: 40px;
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.social-links img{
  height: 25px;
  width: 25px;
  margin-left: 10px;
}

.footer{
  height: 330px;
  width: 100%;
  padding: 35px 10% 0 10%;
  background-color: #F2F2F2;
}
.innerfoot{
  height: 180px;
  display: flex;
  justify-content: space-between;
  column-gap: 8px;
  margin-bottom: 15px; 
}
 
ul p{
  font-size: 13px;
  font-weight: 700;
  color: #616161;
  margin-bottom: 20px;
}
ul a{
  width: ;
  display: block;
  font-size: 10px;
  color: #616161;
  margin-bottom: 15px;
  text-decoration: none;
}

.outerfoot{
  height: 80px;
  padding: 0 20px 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  color: #616161;
  font-size: 10px;
}
.left{
  height: 25px;
  width: 25%;
  }
  .left i{
    font-size: 20px;
    margin-right: 8px;
  }
  .right{
    width: 75%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 5px; 
    column-gap: 5px;
  }
  .part a{
    text-decoration: none;
    color: #616161;
  }
  /* Media_query */
   @media (max-width: 700px) {
    .footer{
      padding: 20px 4% 5px 4%;
      background-color: #F2F2F2;
    }
  }



  @media (max-width: 620px){
    .xbox-info {
      padding: 25px 0 0 30px;
    }  
.footer{
  height: 680px;
  width: 100%;
}
.innerfoot{
  height: 550px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.outerfoot{
  height: 100px;
  padding: 20px 0;
}
  }

  .ham-menu.show a{
    width: 100%;
    color: black;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    display: block;
  }

  .ham-menu.hide{
    display: none;
  }

@media (max-width: 595px) {
  nav{
    display: none;
  }
 .other-nav .menu{
  display: inline;
 }
  .footer{
    height: 1230px;
    width: 100%;
  }
  .innerfoot{
    height: 1100px;
  }
  .outerfoot{
    height: 100px;
    padding: 20px 0;
  }
}

@media (max-width: 480px){
  .xbox-info {
    padding: 50px 0 0 30px;
    width: 100%;
  }
  .xbox-info p {
    display: none;
  }
}



