@charset "UTF-8";
/* CSS Document */

h1{
	font-family: 'Helvetica Bold';
font-size: 110px;
letter-spacing: -0.025em;
	color: rgba(0,0,0,1.00);
	padding: 0 12px;
	    line-height: 85%;
}

.content{
	padding: 0 150px 50px 150px;

}



@media screen and (max-width: 992px) {
  .content {
  padding: 0 20px 80px 20px;
  }
}



@media screen and (max-width: 600px) {
  h1 {
 font-size: 70px;
  }
}


p{
	color: rgba(0,0,0,1.00);
	
}



/*Back to top button Start */

.totop{
	background-color: transparent;
	animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
	border: none;
	color: transparent;
}
  

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


@-webkit-keyframes fadeInAnimation{
	    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
	
}


@media screen and (max-width: 992px) {
  .backicon {
  width: 30px;
	  height: 30px;
  }
}
 

@media screen and (min-width: 992px) {
  .backicon {
  width: 80px;
	  height: 80px;
  }
}

/*Back to top button End */