body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
  }

  html{
    scroll-behavior:smooth;
    background-color: #fff;
    height: 100%;
  }

  
  .side-side{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .side-side > ul{
    text-align: start;
    text-decoration: none;
    padding: 16px 20px;
  }

  /* Navigation bar */
  header {
    /* background-color: #5b6c8b; */
    background-color: #232222;
    color: #fff;
    padding: 0;
  }

  nav ul li img{
    height: 16px;
    align-items: center;
    text-align: center;
  }
 
  nav{
    position: relative;
    margin: 0 20px;
  }
 .logo img{
    padding: 5px;
    margin: 5px;
    position: absolute;
    width: 160px;
  }
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 10px;
    text-align: end;
    padding: 20px 0;
    margin-right: 30px;
  }
  
  nav ul li {
    display: inline-block; /*It's very important to add ut as inline-block. or else, it will not be below where it should be*/
    position: relative;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
  }

  nav ul li ul.dropdown li{
    display: block;
    text-align: start;
    padding: 10px;
    font-size: 14px;
  }

  nav ul li ul.dropdown{
    width: 100%;
    background-color: #323232; /*Color for dropdown: lighter*/
    position: absolute;
    z-index: 999;
    display: none;
  }
  
  nav ul li ul.dropdown li:hover{
    font-size: 18px;
    font-weight: 600;
  }
  
  nav ul li:hover ul.dropdown{
    display: block;
  }
  nav ul li a:hover {
    background-color: #555;
  }
  
  nav ul li.with-dropdown{
    padding: 0 10px;
  }


  /* Section:main header */
  .main-wrapper{
    padding-top: 24px;
    padding-left: 72px;
    padding-right: 72px;
    /* height: 100vh; */
    position: relative;
  }
  
  /* .header-container{
    background: url(https://s12.gifyu.com/images/SZnh8.gif)no-repeat;
    background-size: cover;
  } */

  .header-container{
    padding-bottom: 40px;
  }

  .header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 70vh;
    margin-bottom: 60px;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 60px;
  }


  /* .category-title{
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 20px;
    width: 100%;
    color: #fff;
    background-color: #232222;
    padding: 40px;
  } */

  .header img{
    width: 80%;
    display: block;
    margin: 0 auto;
  }

  .title-header h3{
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
  }

  .category-title{
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 46px;
  
  }

  .category-title a button.words-button, button.ev3-parts-button{
    padding: 12px 32px;
    border: none;
    background-color: #232222;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
  }

  .category-title a button.words-button:hover, button.ev3-parts-button:hover, .home-icon:hover{
    background-color: #fba68c;
    color: #000000;
  }

  .home-icon{
    background-color:#232222;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
  }

  .home-icon img{
    height: 35px;
  }
  
  .header .image-title{
    width: 100%;
  }

  .category-title h3{
    letter-spacing: 1px;
    text-align: center;
    margin: 20px 0;
    font-weight:300;
  }

  .header .title h1{
    padding: 24px;
    line-height: 48px;
    font-size: 40px;
    color: #ffffff;
  }
  

  /* The blur div */
  /* .header .title {
    background: rgba(0, 0, 0, 0.280);
    backdrop-filter: blur(10px);
  } */

  .header .title h3{
    line-height: 24px;
    padding-left: 24px;
    color: #000000;
  }

  hr.guidance-line{
    width: 60%;
    margin-bottom: 12px;
  }

