html {
  scroll-behavior: smooth;
  scroll-padding-top:100px;
}
*{
  box-sizing: border-box;
  padding:0;
  margin:0;
  border:0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .web{
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .mobile{
    display: block;
    opacity: 1;
    visibility: visible;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {
  .web{
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .mobile{
    display: block;
    opacity: 1;
    visibility: visible;
  }




  /* CSS rules here */
  .flex_space_between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .navItems a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin-right: 20px;
  }
  .flex{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  /* CSS rules here */




  .flex_space_between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
  }
  .navItems a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin-right: 20px;
  }
  .flex{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /* CSS rules here */
  .web{
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .mobile{
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .flex_space_between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
  }
  .flex{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navItems a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin-right: 20px;
  }

  .responsive_font_size{
    font-size: calc(5.114vw + 23.63636px);
    /*font-size: calc(2.114vw + 23.63636px);*/
  }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  /* CSS rules here */
  .web{
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .mobile{
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}


