/*
* AWP Academy Mainstyle
* by Amri Hidayatulloh
*/

:root {
  --red: #145731;
  --darker-red: #124a29;
  --maroon-red: #285c3b; 
  --light-red: #5fba7d;
  --transparent-red: rgba(0,255,0,0.5);
  --text-color-grey: #474747;
  --text-color-grey-light: #676767;
  --text-color-grey-bright: #878787;
  --green-color : #5fba7d;

  --bg-app: url(../images/frontend/bgapp.png);
  --bg-app-mobile: url(../images/frontend/bgapp-mobile.png);
}

@font-face {
  font-family: Gotham-Book;
  src: url(../fonts/gotham-book.ttf),
  	   url(../fonts/gotham-book.otf),
  	   url(../fonts/gotham-book.woff),
  	   url(../fonts/gotham-book.eot);
}

@font-face {
  font-family: Gotham-Medium;
  src: url(../fonts/gotham-medium.ttf),
  	   url(../fonts/gotham-medium.otf),
  	   url(../fonts/gotham-medium.woff),
  	   url(../fonts/gotham-medium.eot);
}

button {
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	cursor: pointer;
}