video {
  display: block;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: revert;
  text-decoration: none;
}

/* For images to not be able to exceed their container */
img {
  display: block;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior: none;
  touch-action: none;
  background-color: #000;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.container_fluid {
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1175px;
  margin: 0 auto;
}

.container-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.bg-black {
  background: #000000;
}

.bg-yellow {
  background: #EEDB2E;
}

.bg-white {
  background: #fff;
}

.bg-pink {
  background: #D54075;
}

.color-black {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-pink {
  color: #D54075;
}

.color-yellow {
  color: #EEDB2E;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.mx-auto {
  margin: 0 auto;
}

.fadeUpLines {
  perspective: 500px;
}