html {
  font-size: 62.5%;
  font-family: "Ubuntu";
}

body {
  background-color: #ffffff;
}

body,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container1H {
  width: 100vw;
  height: 100vh;
}

.centered {
  display: grid;
  place-content: center;
}

#introduction {
  background-color: #d9eaf4;
  width: 100vw;
  height: 120px;
  display: block;
  position: relative;
  padding-top: 65px;
}
#introduction #intro_background {
  position: absolute;
  z-index: -1;
  top: 100%;
}
#introduction #title {
  font-size: 3.3rem;
}
#introduction #subtitle {
  font-size: 2.3rem;
  font-style: italic;
}
#introduction .highlight {
  color: #7b4397;
}
#introduction .introContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 2rem;
  align-items: flex-start;
}
#introduction .mask {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
#introduction .screensContainer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  height: 100vh;
  overflow: hidden;
}
#introduction .screensContainerMaxed {
  position: relative;
  width: 100vw;
  top: 0;
  height: 100vh;
}
#introduction #interactiveVideo1,
#introduction #interactiveVideo2,
#introduction #interactiveVideo3,
#introduction #interactiveVideo4 {
  width: 50rem;
  height: 25rem;
  background-color: antiquewhite;
  border: 0.6rem solid white;
  position: absolute;
}
#introduction .interactiveItem {
  position: absolute;
}
#introduction #interactiveVideo1 {
  left: 75%;
  top: 10%;
}
#introduction #interactiveVideo2 {
  left: -25%;
  top: 33%;
}
#introduction #interactiveVideo3 {
  left: -15%;
  top: 60%;
}
#introduction #interactiveVideo4 {
  left: 55%;
  bottom: -10%;
}
@media only screen and (max-width: 330px) {
  #introduction #introduction {
    height: 100%;
    position: relative;
  }
  #introduction #intro_background {
    display: none;
  }
}
@media only screen and (min-width: 500px) {
  #introduction #introduction {
    height: 100px;
  }
}
@media only screen and (min-width: 700px) {
  #introduction #introduction {
    height: 50px;
  }
}
@media only screen and (min-width: 980px) {
  #introduction .introContainer {
    padding: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  #introduction .introContainer {
    padding: 5rem;
  }
}
@media only screen and (min-width: 1500px) {
  #introduction .introContainer {
    padding: 10rem;
  }
}

.cta {
  font-size: 2.3rem;
  padding: 2rem 3.5rem;
  color: white;
  background-color: #7b4397;
  display: inline-flex;
  font-weight: 400;
  border: 0.6rem solid white;
}
.cta:hover {
  background-color: #0077be;
}
.cta:active {
  background-color: #7b4397;
  color: yellow;
}

@media only screen and (min-width: 500px) {
  .cta {
    padding: 2.2rem 5.5rem;
  }
}/*# sourceMappingURL=intro.css.map */