@import url('https://fonts.googleapis.com/css?family=Kotta One|Open Sans');
*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
}
.landing-page{
  width: 100%;
  height: 100vh;
  background: #f2f2f2; /* #fff;*/
  position: relative;
  overflow: hidden;
}
.landing-page::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /*width: 100%;*/
  /*height: 100%;*/
  background: url(bg3.jpg) no-repeat;
  background-size: cover;
  opacity: .5;
  /*animation: anim 25s linear infinite;*/
}
@keyframes anim {
  50%{
    transform: scale(2);
  }
  100%{
    transform: scale(1);
  }
}
.second-title{
  margin-bottom: 60px;
}
.page-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 0 40px;
  box-sizing: border-box;
}
.page-content p{
  margin: 0 0 10px;
}
.box-text {
  max-width: 100%;
  text-align: justify;
  font-family: "Open Sans";
  font-size: 16px; 
  line-height: 1.42857143;
  color: #666666;
  /*color: #777;*/ 
  letter-spacing: 2px; 
}
.page-content h1{
  color: orange;
  margin-bottom: 20px;
  font-family: "Kotta One";
  font-weight: 500;
  line-height: 1.1;
}
.page-content h2{
  font-size: 16px; 
  color: #777; 
  letter-spacing: 2px; 
  line-height: 25px;
}
.page-content a{
  width: 250px;
  display: inline-block;
  text-decoration: none;
  color: #666666; /*orange #ff7979;*/
  border: 2px solid #eb5500; /*#ff7979;*/
  /*text-transform: uppercase;*/
  padding: 10px 20px;
  transition: 0.4s linear;
}
.page-content a:hover{
  color: #ffffff;
  background: #d14c00; /*#ff7979;*/
}
.text{
  padding: 10px;
  text-align: justify;
}
.text div{
  margin-bottom: 6px;
}
