*{
  box-sizing: border-box
}
body{
  background: #000;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  overflow: hidden;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.wrapper{
  background: url('img/WellGrow_Wellpot_BG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 2s linear;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 0;
  background-position: top center;
}
.bold{font-weight: 600}
h1{
  margin: 0;
  padding: 0;
  font-weight: 600;
  line-height: 55px;
  font-size: 45px;
}
p{
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 45px;
  font-size: 35px;
}
.tel{
  margin-bottom: 100px;
}
.title{
  margin-bottom: 40px;
}
.container{
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  position: relative;
  padding: 0 20px 20px;
  z-index: 2;
}
.buttons{
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px 150px;
}
.buttons a, .legal{
  opacity: 0;
  transform: translateY(100px);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 15px 20px;
  text-align: center;
  min-height: 64px;
  color: #fff;
  width: 40%;
  max-width: 300px;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
}
.buttons a:first-child{
  background: #3e7400;
  transition: box-shadow .3s linear, transform 0.5s cubic-bezier(.19,1,.22,1) 3.5s, opacity 0.5s cubic-bezier(.19,1,.22,1) 3.5s;
}
.buttons a:last-child{
  background: #3e7400;
  transition: box-shadow .3s linear, transform 0.5s cubic-bezier(.19,1,.22,1) 4s, opacity 0.5s cubic-bezier(.19,1,.22,1) 4s;
}
.legal{
  margin: 20px auto 0;
  min-width: 300px;
  background: #212529;
  transition: box-shadow .3s linear, transform 0.5s cubic-bezier(.19,1,.22,1) 4.5s, opacity 0.5s cubic-bezier(.19,1,.22,1) 4.5s;
}
.buttons a:hover,.legal:hover{
  box-shadow: 0 0 10px 0 #fff;
}
.animation1, .animation2, .animation3{
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.5s cubic-bezier(.19,1,.22,1), opacity 1.5s cubic-bezier(.19,1,.22,1);
}
.animation1{transition-delay: .5s;}
.animation2{transition-delay: 1.5s;}
.animation3{transition-delay: 2.5s;}

body.loaded .wrapper{
  opacity: 1
}
body.loaded .buttons a,body.loaded .legal, body.loaded .animation1,
body.loaded .animation2, body.loaded .animation3{
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 895px) {
  .wrapper{
    background: url('img/WellGrow_Wellpot_BG_768x1024.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: top center;
  }
}
@media screen and (max-width: 530px) {
  h1{
    font-size: 30px;
    line-height: 40px;
  }
  .title{
    margin-bottom: 15px;
  }
  p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .tel{
    margin-bottom: 40px;
  }
  .buttons a{
    width: 100%;
  }
  .container{
    height: 80vh
  }
}
