@charset "UTF-8";
/*

BachMannKern

Author: nexd — new experience design
URL:    http://nexd.de

*/


@font-face {
  font-family: 'Brown';
  src: url('../fonts/Brown-Bold.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/Brown-Bold.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/Brown-Bold.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/Brown-Bold.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/Brown-Bold.svg#bc16b9b0db9ef0f1430dd17d45a4b42f') format('svg');
  /* Legacy iOS */

  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Brown';
  src: url('../fonts/Brown-Light.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/Brown-Light.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/Brown-Light.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/Brown-Light.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/Brown-Light.svg#8609e2542bae7de88e6a601a6343ee60') format('svg');
  /* Legacy iOS */

  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Brown';
  src: url('../fonts/Brown-Regular.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/Brown-Regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/Brown-Regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/Brown-Regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/Brown-Regular.svg#e8bb100efb3d47ffea678fdff45642f8') format('svg');
  /* Legacy iOS */

  font-style: normal;
  font-weight: 400;
}


:root {
  --content-width: 120rem;
  --padding: 0 4vw 0;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  --plyr-color-main: #F7D645;
  --plyr-color-main: #000;
}

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

html {
  font-family: 'Brown', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-variant-ligatures: common-ligatures;
  -moz-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  transition: background-color 1s ease-in-out;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

html.sr .load-hidden {
  visibility: hidden;
}

li {
  list-style: none;
}

.turbolinks-progress-bar {
  height: 5px;
  background-color: var(--orange);
}

#firstview {
  position: fixed;
  height: 100%;
  width: 100%;
  color: #fff;
  z-index: 10000;
  background: #000;
  cursor: pointer;
}

.playvideo {
  font-size: clamp(1.5rem, 17vw, 15rem);
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(0%, -50%);
  font-weight: 700;
}

#startvideo {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  max-width: 7rem;
  cursor: pointer;
  transition: opacity .2s ease-in-out;
}

#startvideo:hover {
  opacity: 0.6;
}

.videoplayer {
  position: relative;
}

.videoplayer #play_button {
  position: absolute;
  z-index: 100;
  transform: scale(1);
  animation: pulse 1s infinite;
  top: 5.5rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url('../images/sound_on.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.videoplayer #play_button.active {
  background-image: url('../images/sound_off.svg');
}

@keyframes pulse {
  0% {
    transform: scale(0.95);

  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);

  }
}

/* -----  1.3 General Typography  ------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
pre {
  /* Reset font-sizes and normalize margins */
  font-size: inherit;
  line-height: inherit;
  /* Reset font-sizes and normalize margins */
  margin: 0 0 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
pre {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.5rem;
}

h1 {
  font-weight: 700;
  font-size: 4.73rem;
  line-height: 1.07;
}

h2 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0;
}

h2 p {
  line-height: 1.25em;
}

h3 {
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.15;
}

h4 {
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1.25;
}

p {
  line-height: 1.45rem;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease-in-out;
  font-weight: 700;
  /* cursor: url(../images/pointer.svg), pointer; */

}

strong,
em {
  font-weight: 700;
}

img {
  width: 100%;
  height: auto;
}

img.loading {
  width: 100%;
  height: auto;
  overflow: hidden;
}


hr {
  border: none;
  border-top: 1px solid;
}

.imp hr {
  margin-bottom: 1rem;
}

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--padding);
}

/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}


.plus {
  font-size: 2.5rem;
  height: 2.5rem;
  width: 2.5rem;
  display: inline-block;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /* line-height: 0.97; */
  line-height: .8;
  border-radius: 200px;
  font-weight: 300;
  color: #fff;
  background: #000;
  cursor: pointer;
  transition: transform .2s ease-in-out;
}


.plus:hover {
  transform: scale3d(1.15, 1.15, 1.15);
}

.center {
  text-align: center;
  display: block;
  padding: 2.5rem 0;
}

.wht {
  color: #000;
  background: #fff;
}

.item {
  transition: all .3s;
  height: auto;
  width: auto;
  opacity: 1;
}

.hiddenStyle,
.hiddenStyle2 {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
}

button {
  -webkit-appearance: button;
  box-shadow: none;
  border: none;
  font-family: 'Brown', sans-serif;
}


.btn {
  padding: .8rem 1.1rem;
  border-radius: 100px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.btn:hover {
  background: #000;
  color: #fff;
  transition: all .3s ease-in-out;
  border-color: #fff;
}

/* Navigation
-------------------------------------------------- */

.header {
  background: none;
  position: fixed;
  z-index: 200;
}

#logo {
  top: 2rem;
  left: 4vw;
  position: absolute;
  z-index: 1;
}

#logo.hidden {
  z-index: 0;
}


.container a:after {
  content: '';
  position: absolute;
  background: #fff;
  height: 2px;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  -webkit-transition: .35s ease;
  transition: .35s ease;
}

.container a:hover:after,
.container a:focus:after,
.container a:active:after {
  width: 100%;

}

.button_container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  z-index: 1001;
  transition: rotate .3s ease;
}

.button_container.active {
  transform: rotate(45deg);
}


.overlay {
  position: fixed;
  background: #F00014;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 1000;
}

.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}

.overlay.open .menu_contact {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}

.overlay nav {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-top: 20vh;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  line-height: 1.4;
}

.overlay ul li a {
  display: block;
  position: relative;
  opacity: 1;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover {
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.menu_contact {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 10vh;
}

.menu_contact img {
  text-align: center;
  display: inline-block;
}

.menu_links {
  font-size: 1rem;
  width: 100%;
  position: absolute;
  bottom: 10vh;
}

.menu_links ul {
  width: 100%;
}

.menu_links ul li {
  float: left;
  width: 25%;
}

.socialmenu {
  font-size: 1.5rem;
  width: 100%;
  position: absolute;
  bottom: 15vh;
}

.languages {
  font-size: 1rem;
  width: 100%;
  position: absolute;
  top: 10vh;
}

.languages a {
  display: block;
  text-transform: uppercase;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}


.active {
  text-decoration: underline;
}


.text {
  line-height: 1.5em;
}

.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 1em;
}


.text>*:first-child {
  margin-top: 0;
}

.text a {
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  z-index: 1;
  display: inline-block;
  border-bottom: 2px solid #000;
}

.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text img {
  width: 100%;
}


.half {
  width: 49%;
  float: left;
  margin-right: 2%;
}

.half:nth-child(even) {
  margin-right: 0%;
}

#colorbg {
  transition: 0.25s background-color ease-out;
}

video {
  width: 100%;
  height: auto;
}

video {
  border-radius: 1px;
  vertical-align: bottom;
  overflow: hidden;
  width: 100%;
  height: auto !important;
}

.headerimage video {
  overflow: hidden;
}

/* kontakt  */

#mapid {
  height: 580px;
  z-index: 1;
}

/* projects  */

.projects {
  padding-top: 11rem;
  padding-bottom: 5rem;
}

.tag ul {
  margin: 0;
}

.tag li a[aria-current] {
  border-bottom: 1px solid;
}

.tag li {
  display: inline-block;
  float: left;
  margin-right: 1rem;
  padding: .6rem 0;
}

.grid {
  list-style: none;
}

.grid li {
  width: 49%;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
}

.grid li:nth-child(even) {
  margin-right: 0%;
}


.grid li a figure {
  overflow: hidden;

}

.grid li a img {
  transition: transform .3s ease-in-out;
}

.grid li a:hover img {
  background: none;
  transform: scale3d(1.02, 1.02, 1.02);
}


.grid video {

  width: 100%;
  height: 100%;
  /* object-fit: cover;
  min-height: 20rem; */
}

.grid h4 {
  padding-top: .75rem;
  /* margin-bottom: -2%; */
}

/* home */

.home .wrap {
  padding-top: 5rem;
}

/* news */

.news {
  padding-top: 12rem;
}

/* animations */

.animated {
  animation-duration: .2s;
  animation-fill-mode: both;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@media (print),
(prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;

  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


.post h2 {
  font-size: 1.35rem;
  font-weight: 700;
  width: 68%;
  float: left;
  margin-bottom: 2rem;
}

.post article {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.post aside {
  font-weight: 700;
  width: 30%;
  float: right;
}

/* project */

.project header {
  padding-top: 4rem;
}

.projecttitle {
  width: 49%;
  float: left;
  font-variant-ligatures: common-ligatures;
}

.projectintro {
  width: 49%;
  float: right;
  max-width: 47rem;
  font-variant-ligatures: common-ligatures;
  line-height: 1.45rem;
  margin-bottom: 4rem;
}

.projectintro .read-more {
  max-width: 90%;
}



.read-more.is-inline,
.read-more.is-inline p,
.read-more.is-inline+span {
  display: inline;
}

.read-more.is-inline+span {
  margin-left: 0.25em;
}

.projecttitle h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}


.tags li {
  line-height: 1.3;
  display: inline-block;
  margin-right: .5rem;
}

.tags {
  font-size: 0.89rem;
  letter-spacing: .1px;
  display: block;
  font-weight: 300;
}


figure {
  margin: 0;
  line-height: 0;
}

figure.center {
  display: block;
  margin: 0 auto;
}

.zwei img {
  width: calc(50% - 9px);
  float: left;
}

.zwei img:nth-child(2) {
  float: right;
}

.drei {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
}

.drei img:nth-child(1) {
  grid-row: 1 / span 2;
}

.drei.push img:nth-child(1) {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.project .full,
.project video,
.project .zwei {
  margin-bottom: 1rem;
}

.project img {
  vertical-align: bottom;
}


/* jobs karriere */

.jobs .job {
  width: 32%;
  float: left;
  margin-right: 2%;
  border-left: 2px solid;
  padding: 0 1rem;
  margin-bottom: 2rem;
  min-height: 10rem;
}

.jobs .job:nth-child(3n+1) {
  margin-right: 0;
}

.job h2 {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  width: 100%;
  min-height: 3rem;
  margin-bottom: 1rem;
}

.job .plus {
  margin-top: 2rem;
}

.jobs {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.jobdetail {
  padding-top: 16rem;
  padding-bottom: 4rem;
}

.jobdetail h1 {
  font-size: 1.95rem;
}


.jobdetail .left,
.jobdetail .right {
  float: left;
  width: 48%;
}

.jobdetail .left {
  margin-right: 4%;
}

.jobdetail h2 {
  margin-bottom: 1.5rem;
}

.jobdetail ul li p:before {
 content: '–';
 margin-left: -1rem;
 margin-right: .5rem;
}

.jobdetail ul li p {
  margin-left: 1rem;
 }


/* studio */


#moreinfo {
  display: none;
}

main.studio {
  padding-top: 11rem;
}

.studio .text {
  padding-top: 2rem;
  columns: 2;
  column-gap: 4rem;
}

.studio h2 {
  font-size: 4.73rem;
  letter-spacing: -1px;
  padding: 4rem 0;
  font-weight: 700;
}

.dis ul {
  display: grid;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  column-gap: 4rem;
  row-gap: 6rem;
}

.dis ul li a {
  border-bottom: 1px solid;
}

.dis h4 {
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.facts {
  display: grid;
  list-style: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 2rem 4rem;
  padding-top: 7rem;
}


.fact {
  position: relative;
  border-left: 1px solid;
  padding: 0 1.5rem 3rem 1.5rem;

  min-height: 17rem;
  display: inline-block;
}

.fact .number {
  font-size: 8rem;
}

.fact .icons {
  padding-top: 3rem;
}

.fact .icons img {
  max-width: 2.4rem;
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: .4rem;
}

.fact .icons .alone {
  max-width: 4.7rem;
  display: inline-block;
  margin-right: 0;
}

.fact h4 {
  position: absolute;
  bottom: 0;
  margin: 0;
}

.clients {
  display: grid;
  list-style: none;
  line-height: 0;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 2rem 4rem;
  margin: 0 auto;
  padding-bottom: 7rem;

}

.clients img {
  position: relative;
  height: auto;
  width: 100%;
  height: 7rem;
  text-align: center;
  margin: 0 auto;

}

/* contact */

.contact article {
  font-size: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact h2 {
  font-size: 1.5rem;
}

/* footer */


.footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
  margin: 0 auto;
}

.footerdetails {
  width: 80%;
  float: left;
  font-size: 1.19rem;
  font-weight: 700;
}

.footerdetails em,
.footercopy {
  font-size: .85rem;
  font-style: normal;
  font-weight: 300;
  margin-bottom: .4rem;
  display: inline-block;

}

.footerdetails li {
  width: 46%;
  float: left;
  margin-bottom: 1rem;
  margin-right: 3%;
}

/* .footerdetails li:nth-child(even) {
  margin-right: 0;
} */

.social a {
  margin-top: .2rem;
}

.footercopy {
  width: 20%;
  float: left;
}

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?6mjl52');
  src: url('../fonts/icomoon.eot?6mjl52#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?6mjl52') format('truetype'),
    url('../fonts/icomoon.woff?6mjl52') format('woff'),
    url('../fonts/icomoon.svg?6mjl52#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-youtube:before {
  content: "\ea9d";
}

.icon-vimeo:before {
  content: "\eaa0";
}

.icon-pinterest:before {
  content: "\ead1";
}

.icon-xing:before {
  content: "\ead3";
}

.icon-linkedin:before {
  content: "\eaca";
}


.imp {
  padding-top: 18rem;
  padding-bottom: 4rem;
}

.imp h2 {
  margin-bottom: 2rem;
}

.imp .text {
  column-count: 2;
  column-gap: 2rem;
}

@media screen and (max-width: 50em) {
  :root {
    --padding: 0 3vw 0;
  }

  html {
    -webkit-overflow-scrolling: touch
  }

  #logo {
    top: 1rem;
    left: 1rem;
  }

  #logo svg {
    width: 4.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .grid li,
  .jobs .job,
  .post h2,
  .post aside,
  .footerdetails,
  .projecttitle,
  .projectintro,
  .zwei img {
    width: 100%;
    float: none;
  }

  .grid li.hiddenStyle,
  .hiddenStyle2 {

    width: 1px;
  }

  .jobdetail .left,
  .jobdetail .right {
    width: 100%;
  }

  .imp .text {
    column-count: 1;
  }

  .jobdetail {
    padding-top: 10rem;
  }

  .zwei img {
    margin-bottom: 0.5rem;
  }

  .studio h2 {
    font-size: 2rem;
  }

  .fact .number {
    font-size: 5rem;
  }

  .footerdetails {
    font-size: 1rem;
  }

  .articles {
    display: block;
    padding-bottom: 1rem;
  }

  .project figure {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .grid {
    /* grid-gap: 2vh; */
    display: block;
  }

  .footerdetails li {
    width: 100%;
    margin-bottom: 0;
  }

  .footer {
    padding-top: 0.1rem;
  }

  .home .wrap {
    padding-top: 2rem;
  }

  .socialmenu {
    margin-bottom: 2rem;
  }

  .footercopy {
    width: 100%;
    margin-top: 2rem;
  }

  .tag ul {
    margin-bottom: 1rem;
  }

  .project header {
    padding-top: 2rem;
  }


  .tag li {
    padding: 0.2rem 0;

  }

  .clients {
    grid-gap: 0rem 4rem;
  }

  .dis ul {
    grid-template-columns: 1fr;
  }

  .studio .text {
    padding-top: 2rem;
    columns: 1;
  }

  .studio .facts {
    display: block;
    padding-top: 0rem;
  }

  .studio .fact {
    display: block;
    margin-top: 3rem;
  }

  .studio .dis ul {
    display: block;
  }

  .studio .dis ul li {
    margin-bottom: 5.5rem;
  }

  .overlay nav {
    font-size: 3.5rem;
  }

  .projectintro .read-more {
    max-width: none;
  }

  .project .full,
  .project video,
  .project .zwei {
    margin-bottom: 0.5rem;
  }

  .drei {
    grid-template-columns: 1fr;
    grid-gap: 0.5rem;
  }

  #startvideo {
    max-width: 5rem;

  }
}
