@media screen {
  .example-photo {
    --width: 30vw;
  }
  #main #landing {
    position: relative;
    width: 100%;
    background-color: var(--bg-header);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #main #landing div {
    z-index: 1;
  }
  #main #landing #startplay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    color: white;
    opacity: 80%;
    display: flex;
    background-image: url("/media/main/svg/playbutton.svg");
    background-repeat: no-repeat;
  }
  #main #landing .bg-video {
    overflow: hidden;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main #landing .bg-video video {
    background-color: var(--bg-header);
    z-index: -1;
    opacity: 70%;
    position: relative;
    height: 100%;
  }
  #main #landing .content {
    align-items: center;
  }
  #main #landing .content .landing-logo {
    background-image: url("/media/main/svg/logo-white-title.svg");
    margin: auto 0;
    flex-grow: 1;
    opacity: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }
  #main #landing .content .separator {
    background-color: white;
    height: 1px;
    width: 120%;
  }
  #main #landing .content .menu {
    padding: 30px 0;
    width: 100%;
    justify-content: space-between;
  }
  #main #landing .content .menu .menu-column div {
    padding: 0 0 30px 0;
  }
  #main #landing .content .menu .menu-column div a {
    font-size: var(--font-big);
    color: var(--font-inverse);
  }
  #main #advantages {
    padding-top: 50px;
    background-color: var(--bg-light);
  }
  #main #advantages .adv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #main #advantages .advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #main #advantages .advantage img {
    max-height: 128px;
    max-width: 128px;
  }
  #main #aboutUs {
    background-color: var(--bg-dark);
  }
  #main #aboutUs .content .aboutUs-container {
    max-width: 100%;
    display: flex;
  }
  #main #aboutUs .content .aboutUs-container .ceo-name {
    text-align: center;
    hyphens: none;
  }
  #main #aboutUs .content .aboutUs-container .ceo-img {
    background-color: gainsboro;
  }
  #main #aboutUs .content .aboutUs-container .company-desc {
    flex-shrink: 1;
  }
  #main #aboutUs .content .aboutUs-container .company-desc p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 980px) and (orientation: landscape) {
  #landing {
    height: calc(100vh - var(--header-height));
  }
  #landing .bg-video {
    position: absolute;
    width: 100vw;
    height: calc(100vh - var(--header-height));
  }
  #landing .landing-logo {
    width: 15%;
  }
  #landing #startplay {
    background-size: calc((100vh - var(--header-height)) * 0.15);
    background-position: left 20px bottom 20px;
  }
  #landing .separator {
    display: none;
  }
  #landing .menu {
    display: none;
  }
  #examples {
    margin-top: 10vh;
  }
  #advantages .advantage {
    width: 33.3333333333%;
  }
  #aboutUs {
    padding-bottom: 10vh;
  }
  #aboutUs .aboutUs-container {
    flex-direction: column;
    gap: 5vh;
  }
  #aboutUs .aboutUs-container :first-child {
    gap: 3vh;
  }
}
@media screen and (max-width: 980px) and (orientation: portrait) {
  #landing {
    height: 56.25vw;
  }
  #landing .content .menu {
    display: none;
  }
  #landing .content .separator {
    display: none;
  }
  #landing #startplay {
    background-size: calc((100vw - var(--header-height)) * 0.15);
    background-position: left 20px bottom 20px;
  }
  #landing .bg-video {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    width: 100vw;
    height: 56.25vw;
  }
  #landing .bg-video :first-child {
    opacity: 30%;
    position: relative;
  }
  #landing .landing-logo {
    width: 20%;
  }
  #examples {
    margin-top: 10vw;
  }
  #advantages .advantage {
    width: 30vw;
  }
  #advantages .advantage .adv-desc {
    word-break: keep-all;
    text-align: center;
  }
  #aboutUs .content {
    padding: 0;
  }
  #aboutUs .aboutUs-container {
    margin: 4vh 0;
    flex-direction: column;
    gap: 2vh;
  }
  #aboutUs .aboutUs-container .ceo-img {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 980px) {
  #landing {
    height: calc(100vh - var(--header-height));
  }
  #landing .content .menu {
    display: flex;
  }
  #landing #startplay {
    background-size: calc((100vh - var(--header-height)) * 0.2);
    background-position: left 50px bottom 50px;
  }
  #landing .bg-video {
    position: absolute;
    width: 100%;
    height: calc(100vh - var(--header-height));
  }
  #landing .landing-logo {
    width: 20%;
    background-size: 20%;
  }
  #advantages .advantage {
    width: 33.3333333333%;
  }
  #advantages .advantage .adv-desc {
    word-break: keep-all;
    text-align: center;
  }
  #aboutUs .content {
    padding-bottom: 100px;
  }
  #aboutUs .aboutUs-container {
    gap: 100px;
  }
}
@media screen and (max-width: 1600px) {
  #advantages {
    padding-bottom: 100px;
  }
  #aboutUs .ceo-img {
    width: 300px;
    height: 350px;
  }
}
@media screen and (min-width: 1600px) {
  #advantages {
    padding-bottom: 200px;
  }
  .example-photo {
    --width: 500px;
  }
  #aboutUs .content {
    padding-bottom: 200px;
  }
  #aboutUs .ceo-img {
    width: 400px;
    height: 470px;
  }
}

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