/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2025 | 17:55:30 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #08184B;
  --secondary-color: #109661;
  --secondary-light-color: #ebf7f7;
  --text-dark-color: #08184B;
  --text-dark-hover-color: #388CC8;

  --green-btn-bg-color: #109661;

}
*{
	padding:0;
	margin:0;
	box-sizing:border-box;
}
body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark-color);
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: rgb(255, 255, 255);
}
body::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--primary-color);
}

a{
	text-decoration:none;
}
