@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");
}

a:link {
  text-decoration: none;
}

p{
	letter-spacing: 0.075em;
	font-family: "Helvetica Light";
}

h2{
	letter-spacing: 0.030em
}


a {
  color: black;
  text-decoration: none; 
}





.container-fluid{
	padding: 0px;
}


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



