body {
  font-family: "Sen", sans-serif;
  padding: 0;
  margin: 0;
}

.header {
  background-color: #0e0e0e;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-text {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 150px;
  text-align: center;
  line-height: 1;
  z-index: 1;
  color: #222222;
}

.header-text .title-one {
  color: #121212;
}

.header-text .title-two {
  color: #151515;
}



.header-image {
  position: relative;
  z-index: 2;
}

.animate-color {
  fill: #fff;
  -webkit-animation: colorchange 7s infinite backwards;

}

@-webkit-keyframes colorchange {
  0% {
    fill: #4e7847;
  }

  17% {
    fill: #0e4e3f;
  }

  33% {
    fill: #787a34;
  }

  50% {
    fill: #c67618;
  }

  67% {
    fill: #975b3c;
  }

  83% {
    fill: #5e352e;
  }

  100% {
    fill: #79ad3d;
  }
}

.contact {
  text-align: center;
  padding: 50px 0 0 0;
}

.contact-title {
  color: #787a40;
  font-size: 45px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.email a {
  color: #606231;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 3px;
}

.hide {
  display: none;
}

@media only screen and (max-width: 1400px) {
  .header-text {
    bottom: -2%;
    width: 100%;
    font-size: 135px;
  }
}

@media only screen and (max-width: 991px) {
  .header-text {
    bottom: -2%;
    width: 100%;
    font-size: 70px;
    line-height: 1;
  }

  .contact {
    padding: 50px 0 50px 0;
  }

  .contact-title {
    font-size: 35px;
  }

  .email a {
    font-size: 14px;
  }

  .hide {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .header-text {
    font-size: 50px;
  }


}
