.color-navy-blue {
  color: #03001C;
}

.color-white-salt {
  color: #FFFFFF;
}

.bg-navy-blue {
  background-color: #03001C;
}

.bg-white-salt {
  background-color: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  padding: 0;
  margin: 0;
  max-width: 100vw;
  max-width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  box-sizing: border-box;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

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

.uppercase {
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

.videohome {
  position: relative;
  background: black;
  /*.sound-container {
      position: absolute;
      bottom: 5px;
      left: 10px;
      z-index: 10;

      .audio-button {
          position: absolute;
          width: 60px;
          height: 50px;
          border: none;
          background-color: transparent;
          position: relative;
          cursor: pointer;
          margin-left: 10px;

          &:first-child {
              margin-left: 0;
          }

          img {
              width: 100%;
              height: 100%;
          }
      }
  }*/
}
.videohome .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.videohome .video-container iframe {
  position: absolute;
  aspect-ratio: 16/9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.videohome .sound-container {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
.videohome .sound-container .audio-button {
  width: 60px;
  height: 50px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin-left: 10px;
}
.videohome .sound-container .audio-button:first-child {
  margin-left: 0;
}
.videohome .sound-container .audio-button img {
  width: 100%;
  height: 100%;
}

@media (max-aspect-ratio: 19/6) {
  .video-container {
    position: relative;
  }
  .video-container .sound-container {
    position: absolute;
    bottom: 5px;
    left: 10px;
    z-index: 10;
  }
  .video-container .audio-button {
    position: absolute;
  }
}
.modal {
  z-index: 1;
  border: 3px solid black;
}
.modal dialog {
  background-color: black;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal dialog .phone {
  height: 50px;
  width: 100px;
  border: 3.5px solid white;
  border-radius: 10px;
  animation: rotate 1.6s ease-in-out infinite alternate;
}
.modal dialog .message {
  color: white;
  font-size: 1em;
  margin-top: 40px;
  font-family: sans-serif, Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}

/*# sourceMappingURL=styles.css.map */
