
/* Defyning the global CSS values to use over the website */

:root {

    /* FONT SIZES */
      
    --anchor-text-color: #9b9b9b;
    --gray-background-color: rgb(241, 241, 241);
  
  
    --header-text-color: aliceblue;
  
  
    --button-color: #e00f0f;
    --button-text-color: #ffffff;
    --button-border-radius: 1.75em;
    --button-padding: 0.7rem 2.5rem;
    --button-font-weight: 500;
    --letter-spacing: 2px;
  
  }
  
  
  /* !!!!!           GENERAL ELEMENTS              !!!!!! */
  
  *, html {
    margin: 0;
    left: 0;
    top: 0;
    /* font-size: 18px; */
  }
  
  body {
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
    font-family: 'Fjalla One', sans-serif;
  }
  
  h1 {
    font-size: 2.5em;
    letter-spacing: -1px;
    font-weight: 800;
    text-transform: uppercase;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  
  p {
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
  }
  
  a {
    text-decoration: none !important;
    color: var(--anchor-text-color);
    font-size: 0.8rem;
  }
  
  ul {
    list-style-type: circle;
  }
  
  li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  
  
  
  /* !!!!!!       HEADER ELEMENTS       !!!!!!!!!!!!! */
  
  .header {
    background-color: black;
    color: aliceblue;
    text-decoration-color: white;
    display: flex;
  }

  .header > a {
    margin: auto;
    padding: 1em;
  }
  
  .header-navbar {
    color: aliceblue;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 5em;
  }
  
  .header-navbar-item {
    padding: 0.75em 1.5em;
    font-weight: 300;
    /* border-radius: var(--button-border-radius); */
    transition: all 0.3s ease-in;
    text-align: center;
    margin-top: 1.2em;
  }
  
  /* .header-navbar-item:hover {
    background-color: #bbbbbb;
    color: black;
  } */
  
  .nav-item:hover {
    background-color: #bbbbbb;
    color: black;
  }
    
  .header-logo-container {
    margin: 1em auto;
  }
  
  #header-monster-logo,
  #footer-monster-logo {
    max-width: 250px;
  }
  
  .nav-item {
    font-size: 0.9rem;
  }
  
  .monster-zone-asterisc {
    max-width: 800px;
    margin: 5em auto;
    text-align: center;
  }
  
  
  
  
            /* HOME VIDEO CONTAINER */
  .home-video-container {
    width: 100%;
    position: relative;
  }
  
  #home-video {
    width: 100%;
  }
  
  .video-info-container {
    position: absolute;
    top: 55%;
    left: 50%;
    margin-left: -250px;
    margin-top: -100px;
    color: white;
    text-align: center;
    width: 500px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  
  .video-paragraf-container {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  
  #scroll-down-icon {
    width: 150px;
  }
  
  .main-drivers-section {
      background-color: rgb(243, 243, 243);
      text-align: center;
      min-height: 80vh;
  }

  .home-featured-products-header-container {
      padding-top: 5em;
      text-align: center;
  }

  .main-drivers-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 80%;
      margin: auto;
      margin-top: 10vh;
  }

  .M141-RG-container,
  .M142-RG-container {
      display: flex;
      margin: auto;
      flex-direction: column-reverse;
  }
  .main-drivers-image:hover,
  .main-drivers-image:hover {
      transform: scale(1.03);
      transition: 0.3s ease-in;
  }

  .product-image-container {
      display: flex;
      justify-content: center;
  }

  .main-drivers-image {
      max-width: 444px;
  }

  .laptop-drivers-section {
      min-height: 90vh;
      margin-bottom: 7vh;
  }
  
  .drivers-container {
    max-width: 80%;
    margin: auto;
  }

  .driver-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      text-align: center;
      padding: 1.5em;
      border-bottom: 1px solid gray;
  }

  .download-driver-button {
    background-color: var(--button-color);
    border-color: #f81c1c;
    color: var(--button-text-color);
    border-radius: var(--button-border-radius);
    padding: var(--button-padding);
    font-weight: 500;
    letter-spacing: 2px;
    font-family: inherit;
    font-size: .8rem;
  }

  .download-driver-button:hover {
    background-color: rgb(236, 121, 75);
    transition: 0.2s ease-in;
    transform: scale(1.01);
    cursor: pointer;
  }
  
  
                  /* PRODUCTS ANIMATION ON LOADING */

  
  @media only screen and (max-width: 1050px){
  
    .main-drivers-container {
        grid-template-columns: 1fr;
    }
  
  }
  
  
  

                    
                    
                    
                  
  
  
  
  
  
  
  
  