* {
-webkit-appearance: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	color:#003366;
	background-color: #F9F9F9;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin:0px;
	padding:0px;
	overflow-x: hidden;
}
.iClass i {
	display:flex;
	justify-content: end;
	align-items:center;
	margin-right:7px;
}
.section {
	width:100%;
	margin:0px;
	margin-left:auto;
	margin-right:auto;
}
.sectionBreak {
	margin-top:30px;
}
.header {
	padding:15px 0px;
	background-color:#1e3e62;
}
.row {
	width:100%;
	display:flex;
	width:1300px;
	margin:0px auto;
	padding:15px 0px;
	justify-content: space-between;
}
.header .row{
	padding:0;
}
a.link {
	color:#033;
	text-decoration:none;
}
a.link:hover {
	color:#F60;
	text-decoration:underline;
}
.navigation, .navItemList {
	display:flex;
	justify-content: space-between;
	align-items:center;
}

.navigation .menu {
	display:flex;
	align-items:center;
}
.navigation a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	margin-left:20px;
	display:flex;
	align-items:center;
}
.navigation a span {
	margin-left:7px;
}
.navigation a:hover i, .navigation a:hover span {
	transition:all 300ms linear;
}
.navigation ul, .navigation li {
	list-style-type:none;
	margin:0;
	padding:0;
}
.navigation .menu > ul {
	display:flex;
	align-items:center;
}
.navigation .menu ul ul {
	position:absolute;
	background-color:#f9f9f9;
	padding:15px 15px;
	z-index:1;
	border:1px solid #F15B2A;
	border-top:none;
	border-radius:0px 0px 30px 40px;
	display:none;
	top:70px;
}
.navigation ul:hover ul {
	display:block;
}
.navigation .menu .userMenu a {
	padding:10px 15px;
	margin:0;
	color:#F15B2A;
}
h2{
	padding:0px;
	margin:0px;
	font-size:19px;
	color:#036;
	margin-bottom:15px;
}
.page .formPage {
	justify-content:center;
}

.loginForm {
	background-color:#ffffff;
	border-radius:8px;
	border:1px solid #e0e0e0;
	-webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	transition:all 300ms ease-out;
	padding:30px;
	max-width:420px;
	width:420px;
}
.formTitle {
	padding-bottom:10px;
	margin-bottom:10px;
}
.formGroup {
	display:flex;
	flex-direction:column;
	margin-top:20px;
}
.controlLabel {
	width:100%;
	font-weight:bold;
	color:#036;
}
.formControl:focus {
	border:1px solid #F15B2A;	
}
.btn {
	padding:10px;
	border:none;
	background-color:#F15B2A;
	color:#ffffff;
	border-radius:5px;
	cursor:pointer;
	font-size:16px;
	text-decoration:none;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
}
.btnBasic {
	padding:7px 15px;
	border:none;
	border-radius:5px;
	cursor:pointer;
	text-decoration:none;
	text-align:center;
	color:#036;
	background-color:#f4f4f4;
	display:flex;
	align-items:center;
	-webkit-box-shadow: 0px 3px 3px 1px #d9d9d9; 
	box-shadow: 0px 3px 3px 1px #d9d9d9;
}
.btnBasic:hover {
	-webkit-box-shadow: 0px 2px 5px 1px #d9d9d9; 
	box-shadow: 0px 2px 5px 1px #d9d9d9;
	color:#fff;
	background-color:#1e3e62;
	transition:all 100ms ease-out;
}
.btnSm {
	font-size:13px;
	padding:5px;
}
.btnDark {
	background-color:#033;
}

.btnDanger {
	background-color:#f44336;
	color:#fff;
}
.btnSuccess {
	color:#fff;
	background-color:#8bc34a;
}
.btnLight {
	background-color:#f0f0f0;
	color:#033;
}
.btnShadow {
	-webkit-box-shadow: 0px 3px 3px 1px #d9d9d9; 
	box-shadow: 0px 3px 3px 1px #d9d9d9;	
}

.horizontalForm {
	flex-direction:row;
}
.horizontalForm .formControl {
	width:100%;
}
textarea.formControl {
	height:200px;
}
.btnEyeCrossed:before {
	font-family: "flaticon_mycollection";
	content: "\f11e";
}
.btnEyeActive:before {
	font-family: "flaticon_mycollection";
	content: "\f11f";
}
.horizontalForm .btnEye {
	background-color:#f0f0f0;
	color:#036;
	border-radius:none;
	margin-left:2px;
	display:flex;
	align-items:center;
}
.btn:hover, .btnActive {
	background-color:#0C3;
	transition:all 200ms ease-out;
	color:#fff;
}
.formGroup a {
	color:#036;
	text-decoration:none;
	font-size:17px;
}
.formGroup a.btn {
	color:#fff;
}
.formGroup a.btn:hover {
	color:#fff;
}
.formGroup a:hover{
	color:#F15B2A;
} 
.linkGroup {
	justify-content: space-between;
	flex-direction:row;
}
.alertDanger {
	color:#F30;
}
.alertSuccess {
	color: #0C3;
}
input[disabled], textarea[disabled], select[disabled], button[disabled] {
	opacity:0.6;
}
.sidebar {
	width:280px;
	padding:20px;
	border-radius:5px;
	background-color:#ffffff;
}
.pageIn {
	width:100%;
	border-radius:5px;
}
.pageIn .formPage {
	background-color:#ffffff;
	border-radius:8px;
	border:1px solid #e0e0e0;
	-webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	transition:all 300ms ease-out;
	padding:30px;
}
.widget {
	margin:15px 0px;
}
.widgetTitle {
	margin-top:5px;
	font-weight:bold;
	color:#033;
	font-size:17px;
}
.widgetContent {
	padding:10px 0px;
}

.userMenu .widgetContent a {
	display:block;
	padding:15px 0px;
	color:#033;
	text-decoration:none;
}
.userMenu .widgetContent a:hover {
	color:#F60;
	text-decoration:underline;
}
.userPage {
	display:flex;
	justify-content:center;
}
.userPage .formPage{
	width:400px;
}

.formControl {
	border:1px solid #ddd;
	color:#555;
	padding:15px 20px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	outline:0;
	transition:all 300ms ease-in-out;
	background-color:#FFF;
	border-radius:5px;
	font-family: 'Roboto', Arial, Helvetica ,sans-serif;
	display:table-cell;
}
.header .logo {
	display:flex;
	align-items:center;
}
.modal {
	position:fixed;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:10000;
	background-color:rgba(0,0,0,0.4);
	opacity:0;
	transition:all 300ms ease-in;
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:100%;
}
.modalActive {
	visibility:visible;
	opacity:1;
}
.modal-box {
	background-color:#fff;
	border:1px solid #ddd;
	border-radius:5px;
	-webkit-box-shadow: 7px 0px 5px 0px rgba(176,176,176,0.4);
	-moz-box-shadow: 7px 0px 5px 0px rgba(176,176,176,0.4);
	box-shadow: 7px 0px 5px 0px rgba(176,176,176,0.4);
}
.modal-title {
	color:#000;
	padding:20px;
	padding-bottom:15px;
	border-bottom:1px solid #ddd;
	background-color:#f6f6f6;
}
.modal-footer {
	color:#000;
	padding:20px;
	border-bottom:1px solid #ddd;
	background-color:#f6f6f6;
	text-align:center;
	display:flex;
	justify-content:space-evenly;
}
.modal-body {
	color:#000;
	padding:20px;
	background-color:#fff;
}
.badge {
	padding:5px 16px;
	font-size:14px;
	background-color:#F6F6F6;
	border-radius:5px;
	color:#888;
	display:flex;
	align-items:center;
}
.badgeSm {
	padding:3px 6px;
	font-size:12px;
}
.badgeLg {
	font-size:15px;
}
.badgeDanger {
	background-color:#f44336;
	color:#fff;
}
.badgeSuccess {
	color:#fff;
	background-color:#8bc34a;	
}
.badgeWarning {
	color:#fff;
	background-color:#ffb80f;	
}
.badgeDark {
	color: #fff;
	background-color: #999999;
}
.badgeInfo {
	color:#fff;
	background-color:#03a9f4;	
}
.badgeOrange {
	color:#fff;
	background-color:#F15B2A;	
}
input.listCheckbox {
	width:26px;
	height:24px;
	border:3px solid #033;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display:flex;
	justify-content:start;
	align-items:center;
	font-size:17px;
	border-radius:3px;
	transition:all 300ms ease;
	padding:0px;
	margin:0px;
}
.listCheckbox:checked {
	background-color:#033;
}
.listCheckbox:checked:before{
	font-family: "flaticon_mycollection";
    content: "\f11b";
	color:#0C3;
	transition:all 300ms ease;
	width:0px;
}

input.listRadio {
	width:21px;
	height:21px;
	border:3px solid #033;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:17px;
	border-radius:30px;
	transition:all 300ms ease;
	padding:0px;
	margin:0px;
	margin-left:10px;
}
.listRadio:checked {
	background-color:#033;
}
.listRadio:checked:before{
	font-family: "flaticon_mycollection";
    content: "\f11d";
	color:#fff;
	transition:all 300ms ease;
	display:flex;
	align-items:center;
}


.footer {
	margin-top: 50px;
	background-color: #1e3e62;
	margin-bottom: 0;
	border-top: 5px solid #F15B2A;
	color: #4FB9FF;
}
.footer ul, .footer li {
	list-style-type:none;
	margin:0;
	padding:0;
}
.footer ul li a  {
	text-decoration:none;
	color:#95D5FF;
	padding:10px 0px;
	margin-bottom:10px; 
}
.postDetail {
	padding:15px 20px;
	background-color:#fff;
	border-radius:10px;
	width:100%;
}
.footer ul li a:hover {
	color:#F60;
	text-decoration:underline;
}
.fInfo, .fPages {
	display:flex;
	line-height:30px;
	flex-direction:column;
}
.tab {
	display:flex;
	align-items:center;
	justify-content:space-evenly;
}
.tab .active {
	color:#fff;
	background-color:#0C3;	
}
.tabContent {
	display:none;
}
.tabList .active {
	display:block;
}
.jobList {
	padding-left:20px;
}
.jobList .jobCard {
	display:flex;
	flex-direction:column;
	background-color:#ffffff;
	border-radius:8px;
	border:1px solid #e0e0e0;
	-webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
	transition:all 300ms ease-out;
}
.jobList .jobCard:hover {
	-webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
	transform:translateY(-4px);
}
.cardHeader {
	padding:20px 20px 0px 20px;
	border-bottom:1px solid #f0f0f0;
}
.cardTitle {
	margin:0;
	padding-bottom:15px;
	font-size:17px;
	font-weight:bold;
	color:#003366;
}
.cardBody {
	padding:15px 20px;
	flex-grow:1;
}
.infoBadgesRow {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:10px;
	margin-bottom:10px;
}
.infoBadgesRow:last-child {
	margin-bottom:0;
}
.cardBody .badge {
	margin-right:0;
}
.cardFooter {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	padding:15px 20px;
	border-top:1px solid #f0f0f0;
	justify-content:flex-start;
	align-items:center;
}
.cardFooter .btnBasic {
	margin-right:0;
	flex:0 0 auto;
}

.footerAction {
	position:fixed;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:10000;
	background-color:rgba(0,0,0,0.4);
	transition:all 500ms ease-in;
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:100%;
}

.resultBox {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-color:#f9f9f9;
	padding:20px;	
	-webkit-box-shadow: 0px 7px 7px 1px #444; 
	box-shadow: 0px 7px 7px 1px #444;
	border-radius:5px;
	border:1px solid #ddd;
	min-width:320px;
}
.resultBox .title {
	border-bottom:1px solid #eee;
	width:100%;
	padding:15px 0px;
	padding-top:0px;
	font-weight:bold;
	font-size:17px;
}

.resultBox .result {
	width:100%;
	padding:15px 0px;
}
.resultBox .handle {
	padding:15px 0px;
	padding-bottom:0px;
}

/* Job Details Container */
.jobDetailsContainer {
	max-width:1300px;
	margin:0 auto;
	padding:40px 20px;
	width:100%;
}
.jobNotifications {
	display: flex;
	padding: 15px 20px;
	background-color: #FFE0C1;
	border: 1px solid #FC3;
	color: #B34700;
	margin: 15px 0px;
	border-radius: 7px;
}

.jobDetailTopHeader {
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:30px;
	margin-bottom:50px;
	padding-bottom:40px;
	border-bottom:2px solid #f0f0f0;
	width:100%;
}

.jobDetailTopLeft {
	flex:1;
}

.jobDetailTopLeft h1 {
	margin:0px 0px 18px 0px;
	font-size:32px;
	color:#036;
	font-weight:bold;
	word-wrap:break-word;
	line-height:1.4;
}

.jobDetailTopMeta {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	align-items:center;
	margin-bottom:15px;
}

.jobDetailTopDates {
	display:flex;
	gap:20px;
	font-size:13px;
	color:#888;
}

.jobDetailTopDates span {
	display:flex;
	align-items:center;
	gap:5px;
}

.jobDetailTopRight {
	flex-shrink:0;
	display:flex;
	align-items:flex-start;
}

.jobDetailContent {
	display:grid;
	grid-template-columns:1fr 350px;
	gap:30px;
	width:100%;
}

.jobDetailMain {
	flex:1;
}

.jobDetailSidebar {
	width:100%;
}

.jobDetailDescription {
	background-color:#ffffff;
	padding:30px;
	border-radius:8px;
	box-shadow:0px 2px 8px rgba(0,0,0,0.1);
}

.jobDetailDescription h3 {
	margin:0px 0px 20px 0px;
	font-size:20px;
	color:#036;
	font-weight:bold;
}

.description-content {
	color:#555;
	line-height:1.8;
	font-size:15px;
	word-wrap:break-word;
}

.sidebarCard {
	background-color:#ffffff;
	padding:25px;
	border-radius:8px;
	box-shadow:0px 2px 8px rgba(0,0,0,0.1);
	margin-bottom:20px;
}

.sidebarCardButton {
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px 25px;
}

.sidebarSection {
	margin-bottom:18px;
	padding-bottom:18px;
	border-bottom:1px solid #f0f0f0;
}

.sidebarSection:last-child {
	margin-bottom:0px;
	padding-bottom:0px;
	border-bottom:none;
}

.sidebarLabel {
	display:block;
	font-size:11px;
	color:#888;
	font-weight:bold;
	text-transform:uppercase;
	margin-bottom:8px;
}

.sidebarValue {
	font-size:15px;
	color:#036;
	font-weight:bold;
	word-break:break-word;
}

.contactLink {
	color:#F15B2A !important;
	text-decoration:none;
	transition:all 200ms ease;
}

.contactLink:hover {
	text-decoration:underline;
	color:#0C3 !important;
}

.contactReveal {
	cursor:pointer;
}

.contactRevealed {
	cursor:default;
}

.btnApplyMain,
.btnApplySidebar {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
}

.btnApplyMain {
	width:auto;
	white-space:nowrap;
}

.btnApplySidebar {
	width:100%;
}

.sidebarShare {
	text-align:center;
	font-size:13px;
	color:#888;
}

.shareTitle {
	display:block;
	margin-bottom:15px;
	font-size:13px;
	color:#888;
	font-weight:bold;
}

.shareButtons {
	display:flex;
	justify-content:center;
	gap:12px;
	flex-wrap:wrap;
}

.shareBtn {
	display:flex;
	align-items:center;
	justify-content:center;
	width:40px;
	height:40px;
	border-radius:7px;
	color:#fff;
	text-decoration:none;
	transition:all 200ms ease;
	font-size:28px;
}
.shareBtn i {
	margin:0px;
}

.shareFacebook {
	background-color:#1877F2;
}

.shareFacebook:hover {
	background-color:#165FD9;
	transform:scale(1.1);
}

.shareTwitter {
	background-color:#000;
}

.shareTwitter:hover {
	background-color:#333;
	transform:scale(1.1);
}

.shareLinkedin {
	background-color:#0A66C2;
}

.shareLinkedin:hover {
	background-color:#084A95;
	transform:scale(1.1);
}

.shareWhatsapp {
	background-color:#25D366;
}

.shareWhatsapp:hover {
	background-color:#20BA58;
	transform:scale(1.1);
}

/* Job Listing Section */
.jobListingContainer {
	max-width:1300px;
	margin:0 auto;
	padding:40px 20px;
	width:100%;
}

.jobListingHeader {
	margin-bottom:30px;
	padding-bottom:20px;
	border-bottom:2px solid #f0f0f0;
}

.jobListingHeader h3 {
	margin:0px;
	font-size:24px;
	color:#036;
	font-weight:bold;
}

.jobListingGrid {
	display:grid;
	grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
	gap:20px;
}

.jobCard {
	background-color:#ffffff;
	border:1px solid #e0e0e0;
	border-radius:8px;
	padding:20px;
	transition:all 200ms ease;
	text-decoration:none;
	color:inherit;
	display:flex;
	flex-direction:column;
}

.jobCard:hover {
	box-shadow:0px 4px 12px rgba(0,0,0,0.15);
	transform:translateY(-2px);
	border-color:#F15B2A;
}

.jobCardTitle {
	font-size:18px;
	color:#036;
	font-weight:bold;
	margin:0px 0px 10px 0px;
	line-height:1.4;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	display:flex;
	align-items:start;
	justify-content:space-between;
}

.jobCardTitle a {
	color:#036;
	text-decoration:none;
	width:100%;
}
.jobCardTitle span {
	margin-left:10px;
}
.jobCardMeta {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin-bottom:12px;
	font-size:12px;
	align-items:center;
}

.jobCardBadge {
	display:inline-flex;
	align-items:center;
	gap:4px;
	padding:5px 10px;
	background-color:#e3f2fd;
	border-radius:4px;
	color:#0056a3;
	font-size:12px;
	white-space:nowrap;
}

.jobCardBadge i {
	font-size:12px;
}

.jobCardMeta .badge {
	font-size:12px;
	padding:5px 10px;
	white-space:nowrap;
}

.jobCardMeta .badgeSm {
	font-size:11px;
	padding:4px 8px;
	background-color:#f8d7da;
	color:#721c24;
}

.jobCardDescription {
	color:#666;
	line-height:1.5;
	margin-bottom:12px;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}

.jobCardFooter {
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-top:auto;
	padding-top:12px;
	border-top:1px solid #f0f0f0;
}

.jobCardDate {
	font-size:12px;
	color:#888;
}

.jobCardLink {
	color:#F15B2A;
	text-decoration:none;
	font-weight:bold;
	font-size:12px;
	transition:all 200ms ease;
	display:flex;
	align-items:center;
	gap:4px;
}

.jobCardLink:hover {
	color:#036;
	text-decoration:underline;
}

.jobResultsSection {
	max-width:1300px;
	margin:0 auto;
	padding:40px 20px;
}

.jobResultsCount {
	margin-bottom:30px;
	padding:15px 20px;
	background-color:#f0f8ff;
	border-left:4px solid #F15B2A;
	border-radius:4px;
}

.jobResultsCount p {
	margin:0;
	color:#036;
	font-weight:bold;
	font-size:15px;
}

.noResultsMessage {
	text-align:center;
	padding:60px 20px;
	background-color:#ffffff;
	border-radius:8px;
	border:1px solid #e0e0e0;
}

.noResultsMessage p {
	margin:0;
	color:#888;
	font-size:16px;
}

/* Job Search Form */
.jobSearchContainer {
	max-width:1300px;
	margin:0 auto;
	padding:40px 20px;
	width:100%;
}

.jobSearchHeader {
	text-align:center;
	margin-bottom:50px;
	padding:40px 0;
	background:linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
	border-radius:8px;
}

.jobSearchTitle {
	margin:0 0 15px 0;
	font-size:42px;
	color:#1e3e62;
	font-weight:700;
	letter-spacing:-0.5px;
	line-height:1.2;
}

.jobSearchSubtitle {
	margin:0 0 25px 0;
	font-size:18px;
	color:#555;
	line-height:1.6;
	font-weight:400;
}

.jobSearchHeader h2 {
	margin:0px 0px 10px 0px;
	font-size:32px;
	color:#036;
	font-weight:bold;
}

.jobSearchForm {
	background-color:#ffffff;
	padding:30px;
	border-radius:8px;
	box-shadow:0px 2px 8px rgba(0,0,0,0.1);
}

.jobSearchGrid {
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
	gap:20px;
	align-items:flex-end;
}

.jobSearchField {
	display:flex;
	flex-direction:column;
}

.jobSearchField .jobSearchButton {
	justify-content:flex-end;
	display:flex;
	align-items:start;
	padding:15px 20px;
}
.action {
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}

.jobSearchField.jobSearchButton .btn {
	
}

.formLabel {
	display:block;
	margin-bottom:8px;
	font-size:14px;
	color:#036;
	font-weight:bold;
}

.checkbox {
	display:flex;
	align-items:center;
}
.checkbox input {
	margin-right:10px;
}


/* Breadcrumb Navigation */
.breadcrumb {
	max-width:1300px;
	margin:0 auto;
	padding:15px 20px;
	font-size:14px;
	color:#666;
	background-color:#f5f5f5;
	border-radius:4px;
	margin-bottom:20px;
}

.breadcrumb a {
	color:#03a9f4;
	text-decoration:none;
	font-weight:500;
}

.breadcrumb a:hover {
	color:#0288d1;
	text-decoration:underline;
}

.breadcrumb span {
	color:#999;
	margin:0 5px;
}

.breadcrumbSeparator {
	color:#ccc;
	margin:0 8px;
}

/* Pagination Section */
.jobPaginationSection {
	max-width:1300px;
	margin:40px auto 0;
	padding:30px 20px;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:8px;
	flex-wrap:wrap;
}

.page-item {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:40px;
	height:40px;
	padding:0 10px;
	background-color:#ffffff;
	color:#036;
	border:1px solid #ddd;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	font-weight:500;
	transition:all 0.3s ease;
	cursor:pointer;
}

.page-item:hover {
	background-color:#F15B2A;
	border-color:#ffffff;
	color:#ffffff;
}

.page-item.active {
	background-color:#1e3e62;
	color:#ffffff;
	border-color:#03a9f4;
	font-weight:bold;
}

.page-item.active:hover {
	background-color:#0288d1;
	border-color:#0288d1;
}

