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

body {
  margin: 0;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Start Grid System */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (min-width: 576px) {

  /* Small Devices => Landscape Phones */
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  /* Medium Devices => Tablets */
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  /* Desktops */
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  /* Large Screens */
  .container {
    max-width: 1140px;
  }
}

/* End Grid System */
header {
  height: 50px;
  position: relative;
}


.dig_house {
  position: relative;
}
.dig_house video {
  width: 100%;
  height: 100vh;
  object-fit: fill;
}
.d-video_lg {
  display: none;
}
.dig_house .text-section {
  display: none;
  position: fixed;
  z-index: 0;
  color: #fff;
  animation: mymove 3s;
  animation-fill-mode: forwards;
}
.dig_house .text-section.active {
  display: block !important;
  animation: mymove 1s;
  animation-fill-mode: forwards;
}
@keyframes mymove {
  from {bottom: 50%;}
  to {bottom: 70%;}
}
.dig_house .text-section h1 {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 4px 4px 10px #403b45;
  margin: 15px 0;
}
.dig_house .text-section p {
  font-size: 16px;
  color: #ffffff;
  line-height: 29px;
  margin-top: 16px;
  width: 95%;
  text-shadow: 2px 2px 4px #000;
}
@media screen and (min-width: 992px) {
  header {
    height: 126px;
  }
}
@media (min-width: 768px) {
  .d-video_lg {
    display: block;
  }

  .d-video_sm {
    display: none;
  }
  .dig_house .text-section {
    display: none;
    position: fixed;
    z-index: 0;
    color: #fff;
    animation: mymove 3s;
    animation-fill-mode: forwards;
  }

  .dig_house .text-section.active {
    display: block !important;
    animation: mymove 3s;
    animation-fill-mode: forwards;
  }

  @keyframes mymove {
    from {bottom: 20%;}
    to {bottom: 40%;}
  }
  .dig_house .text-section h1 {
    font-size: 40px;
  }
  .dig_house .text-section p {
    font-size: 18px;
    width: 70%;
  }
}

.other-sections {
  height: 100vh;
  width: 100%;
  background: grey;
}

