/* * {
  border: red 1px solid;
} */

html,
body,
.container-fluid {
  min-height: 100vh;
}

h2 {
  color: #ffffff;
  font-size: 3vh;
}

label {
  font-size: 2vh;
  font-weight: bold;
}

.container {
  background-color: rgb(238, 238, 238);
  padding: 3%;
  padding-top: 2%;
  border-radius: 20px;
}

.text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2vh;
  color: white;
  padding-top: 1vh;
  text-align: center;
}

.header {
  text-align: center;
  color: rgb(230, 230, 230);
  font-size: 3vh;
  font-weight: 600;
}

.container-fluid {
  /* background-color: #282936; */
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  background-position: 50%;
  position: relative;
}

.logoImg {
  width: 18rem;
  padding-top: 8px;
  padding-bottom: 2vh;
}

.primary-button {
  border: 0;
  background-color: #fcb417;
  color: #1a1a1a;
  min-width: 12rem;
  /* width: 12rem; */
  min-height: 4rem;
  border-radius: 0;
  box-shadow: 5px 5px #ffffff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: larger;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  padding: 2%;
}

.primary-button.back {
  color: white;
  min-width: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
  box-shadow: none;
  background-color: rgb(100, 100, 100);
  margin: 0;
  /* border: 2px solid #fbc600; */
  border-radius: 4px;
}

.flags {
  border: 0;
  background-color: #ffffff;
  color: #1a1a1a;
  min-width: 4rem;
  /* width: 12rem; */
  /* min-height: 4rem; */
  border-radius: 0;
  box-shadow: 5px 5px #1a1a1a;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: larger;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  padding: 2%;
}

.fixed {
  position: fixed;
  bottom: 1vh;
  left: 1vh;
  width: 8vh;
  height: 8vh;
}

/* .col{
  border: 1px solid black;
} */

video.playing {
  opacity: 1;
  transition: opacity 1s ease;
}

.hidden {
  opacity: 0;
  transition: opacity 1s ease;
}

#playButton {
  background: none;
  border: none;
}

#welcomeLink {
  color: #00b2e3;
  font-size: 2.4vh;
  text-decoration: none;
}

a[href^="tel"] {
  color: lightblue;
  text-decoration: none;
}

.flags {
  width: 3rem;
  aspect-ratio: 1.5;
  margin: 10px;
  image-rendering: -webkit-optimize-contrast;
  cursor: default;
}

/* mobile only */

@media (max-width: 576px) {

  html,
  body,
  .container-fluid {
    min-height: 0;
    height: var(--height);
  }

  #transparent::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
    background-repeat: no-repeat;
    background-size: cover;
    align-self: stretch;
    background-position: 60%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  h2 {
    font-size: 4vh;
  }

  .primary-button.grid {
    min-width: 0;
    font-size: 2.2vh;
    padding: 5%;
  }
}

/* desktop only */

@media (min-width: 576px) {
  .primary-button:hover {
    transform: scale(1.05);
    transition: 0.1s linear;
  }

  .primary-button.back {
    display: none;
  }
}