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

@import url( "fonts.css");
	
	
	
	
	
	

html{
	font-family: "Helvetica Bold", "Helvetica Light"
}
	
	
	@font-face {
  font-family: 'Helvetica Bold';
  src: url("../fonts/Helvetica-Bold.woff2");
}
	
@font-face{
	font-family: "Helvetica Light";
	src: url("../fonts/Helvetica-Light.woff2");
}



@media screen and (min-width: 600px) {
  .content {
  padding: 0 100px 100px 100px;
  }
}


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


a:link {
  text-decoration: none;
}

p{
	letter-spacing: 0.075em;
	font-family: "Helvetica Light";
	color: rgba(0,0,0,1.00);
}


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


h2{
	font-family: 'Helvetica Bold';
font-size: 30px;
letter-spacing: 0.030em;
	color: rgba(0,0,0,1.00);
	padding-top: 20px;

}



/*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 */