html {
  scroll-behavior: auto !important;
}
body {
    font-family: "Montserrat", sans-serif;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    width: 100%;
    color: #FFFFFF;
    background-color: #000000;
    line-height: normal;
    overflow-x: hidden !important;
  }
  *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0 0 15px;
  }
  .uppercase{
    text-transform:uppercase ;
  }
  .flex{
    display: flex;
  }
  .align_center{
    align-items: center;
  }
  .justify_between{
    justify-content: space-between;
  }
  .justify_center{
    justify-content:center;
  }
  .wrap{
    flex-wrap: wrap;
  }
  .column{
    flex-direction: column;
  }
  .text_center{
    text-align: center;
  }
  .mb_0{
    margin-bottom: 0;
  }
  .relative{
    position: relative;
  }
  .absolute{
    position: absolute;
  }
  button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: "Aloevera Display", sans-serif;
  }
  .pointer{
    cursor: pointer;
  }
  .landing-section{
    width: 100%;
    height: 100vh;
  }
  .landing-section video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  .landing-section .video-mobile{
    display: none;
  }
  @media (max-width: 992px){
    .landing-section .video-mobile{
      display: block;
    }
    .landing-section .video-desktop{
      display: none;
    }
  }