* {
  box-sizing: border-box;
  overflow-x: hidden;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
    background-image: url("images/GRID_BOTTOM_NO_MOVE_01.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }

  .container1 {
    width: 100%;
    height: 100%;
    padding: 50px;
  }

  .over {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 25%;
    position: relative;
    z-index: 10;
  }
  .over > img {
    width: 100%;
  }

  .under {
    position: absolute;
    top: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .under > img {
    max-width: 100%;
  }

  .buttonRow {
    display: flex;
    justify-content: space-between;
  }
  .buttonCol {
    overflow: hidden;
  }
  .button {
    width: 100%;
  }


  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .container {
    position: fixed;
    bottom: 0;
  }

  .text {
    overflow: hidden;
    padding: 5px 0;
    background: blue;
    white-space: nowrap;
    z-index: 2;
    font-weight: lighter;
  }
  
  .text-slide {
    display: inline-block;
    font-family: 'Lucida Handwriting Std';
    font-size: 3rem;
    color: white;
    animation: 15s slide infinite linear;
    overflow: hidden;
  }

  @media (max-width: 500px) {
    .over {
      margin-top: -20px;
    }
    .under {
      width: 75%;
    }
    .buttonRow {
      flex-direction: column;
    }
    iframe {
      width: 100%;
      height: 200px;
    }
    .verticalVideoRow {
      display: flex;
    }
  }

  @media (min-width: 1441px) {
    .under {
      height: 70%;
    }
    .over {
      margin-top: 25px;
     <!--  height: 600px; -->
     height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15%;
      padding-bottom: 0;
    }
    .over > img {
      height: 85%;
      width: 75%;
      margin: 0 auto;
    }

    .buttonRow {
      margin: 0 auto;
      width: 90%;
    }
    .buttonRow > img {
      width: 100%;
    }
    .button {
      height: 100%;
    }

    .verticalVideoRow > iframe {
      height: 1300px;
    }
  }