html {
	height: 100%;
	box-sizing: border-box;
}
  
*,
*:before,
*:after {
	box-sizing: inherit;
}


body {
	position: relative;
	min-height: 100%;
	background-color: #ffffff;
	margin: 0px;
	font-family: "Work Sans", Halvett, Helvetica, Arial, sans-serif;
	font-weight: 400;
}


img { border: 0; border: none; }

a { transition: .5s ease; }


/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
	display: block;
	background-color: #ffffff;
	height: 2px;
	width: 22px;
	margin-top: 5px;
	margin-bottom: 5px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}


/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}

/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg) ;
}


/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg) ;
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg) ;
}


.bg-light { background-color: #ffffff !important; }
.bg-dark { background-color: #353535 !important; }

.navbar-nav { padding: 0px 0px; }

.navbar-nav > li {
	padding: 0px 0px;
	z-index: 1000;
	line-height: 45px;
}


.navbar-nav > li a {
	color: #656565;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.25px;
}

.navbar-nav > li a:hover {
	color: #f5f5f5 !important;
}

.navbar-nav .active {
	color:#353535;
	background-color: #454545;
	font-weight: 400 !important;
}	

.navbar-nav .nav-item .nav-link {
    border-radius: 4px;
	padding: 1px 20px 1px 20px;
    color: #959595;
}

.navbar-nav .nav-item .nav-link i { 
	padding-right: 3px;
	font-size: 13px;
	font-weight: 300;
}


.navbar-brand  { 
	height: 75px;
}

.navbar-brand a { 
	font-size: 32px;
	font-weight: 600;
	color: #ffffff;
	border-bottom: 1px solid #353535;
	transition: .5s ease;
	line-height: 100%;
}

.navbar-brand a:hover { 
	color: #f2f2f2; 
	text-decoration: none; 
}

.navbar-brand a:after {
	display:block;
	content: '';
	border-bottom: 1px solid #656565;
	transform: scaleX(0);  
	transition: transform 450ms ease-in-out;
}

.navbar-brand a:hover:after { transform: scaleX(1); }
  
.tooglerbottomspace {
	padding: 15px 0px 0px 0px;
}





/* main section */
.main {
	margin: 0 auto;
	text-align: center;
	width: 100%;
	line-height: 45px;
	background: #e6e6e6;
	text-align: center;
	padding: 55px 0px 35px 0px;
}

.main h1 {
	font-size: 50pt;
	font-weight: 600;
	color: #454545;
	line-height: 1;
}

.main p {
	font-size: 16px;
	font-weight: 400;
	color: #a5a5a5;
	letter-spacing: 0.5px;
}





/* JDU Tools */

.jdutools {
	margin:0 auto;
	padding: 50px 20px 350px 20px;
	font-weight: 400;
	text-align: justify !important;
}
	

	
.jdutools h1 {
	font-size: 34pt;
	font-weight: 500;
	color: #444444;
	padding-bottom: 15px;
	line-height: 100%;
	text-align: center;
}


	
.jdutools h2 {
	font-size: 25pt;
	font-weight: 500;
	color: #555555;
	padding-bottom: 10px;
	text-align: center;
}

	
	
.jdutools p {
	font-size: 16px;
	font-weight: 400;
	color: #a5a5a5;
	padding: 0px;
	text-align: center;
}
	

	
.jdutools span {
	font-size: 16px;
	font-weight: 400;
	color: #a5a5a5;
	padding: 0px;
	line-height: 32px;
	text-align: justify !important;
	padding-top: 40px;
	padding-bottom: 20px;
	display: block;
}



.jdutools span b {
	font-size: 26px;
	font-weight: 500;
	color: #454545;
	display: block;
	padding-bottom: 8px;
}
	
	
	
.jdutools a {
	font-size: 18px;
	font-weight: 400;
	color: #a5a5a5;
	background-color: #f2f2f2;
	display: block;
	padding: 12px;
	margin-bottom: 20px;
	text-decoration: none;
	border-radius: 4px;
	transition: .5s ease;
	text-align: center;
}
	
	
.jdutools a:hover {
	color: #777777;
	background-color: #e5e5e5;
	border-radius: 4px;
}
	
.jdutools i {
	padding: 5px;
}








/* About us section */
.aboutus {
	margin: 0 auto;
	padding: 30px 0px 250px 0px;
}

.aboutus h1 {
	font-size: 25pt;
	font-weight: 600;
	color: #454545;
	padding: 0px 0px 10px 0px;
	border-bottom: 1px solid #e5e5e5;
	margin: 20px 0px 20px 0px;
	line-height: 50px;
}

.aboutus h1 span {
	font-size: 30pt;
	font-weight: 600;
	color: #353535;
	-ms-word-break: break-all;
	word-break: break-all;
}

.aboutus h4 {
	font-size: 24px;
	font-weight: 500;
	color: #454545;
	padding: 30px 10px 0px 10px;
	line-height: 35px;
}

.aboutus p {
	font-size: 15px;
	font-weight: 400;
	color: #959595;
	padding: 0px 12px 10px 12px;
	text-align: justify;
	line-height: 30px;
	letter-spacing: 0.5px;
}


.aboutus ul {
	list-style: square;
	margin: -15px 15px 15px 15px;
	padding: 0px 15px;
	letter-spacing: 0.5px;
}

.aboutus ul li {
	font-size: 15px;
	font-weight: 400;
	color: #959595;
	padding: 0px 10px;
	text-align: justify;
	line-height: 30px;
	letter-spacing: 0.5px;
}


.aboutus .error {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 4px;
    background: #F9D5D0;
    color: #e94b35 !important;
    border: 1px solid #e94b35;
    font-weight: 500;
    font-size: 15px;
    display: block;
}






/* Search form section */
.searchform {
	margin: 0 auto;
	padding: 50px 10px 250px 10px;
	text-align: center;
	font-weight: 400;
}



.searchform input {
	font-size: 16px;
	color: #454545;
	font-weight: 500;
	
	padding: 5px 25px;

	height: 65px;
	width: 75%;
	
	background-color: #ffffff;
	border: 1px solid #cccccc;
	
	box-shadow: inset 0 2px 4px rgba(0,0,0,.075);
	
	-webkit-transition: border linear .2s,box-shadow linear .2s;
	-moz-transition: border linear .2s,box-shadow linear .2s;
	-o-transition: border linear .2s,box-shadow linear .2s;
	transition: border linear .2s,box-shadow linear .2s;
	
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}



.searchform input:focus {
	outline: none !important;
	box-shadow: 0 0 6px #74B9EF;
	border: 1px solid #74B9EF;
}


	
.searchform ::-webkit-input-placeholder { font-size: 15px; font-weight: 400; color: #b5b5b5; }
.searchform ::-moz-placeholder { font-size: 15px; font-weight: 400; color: #b5b5b5; }
.searchform ::-ms-placeholder { font-size: 15px; font-weight: 400; color: #b5b5b5; }
.searchform ::placeholder { font-size: 15px; font-weight: 400; color: #b5b5b5; }



.searchform .whoisbtn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;

	background: #525252;
	margin: 0 0 0 12px;
	width: 23%;
	height: 65px;
	
	border-radius: 4px;
	border: 0px solid #656565;
	outline: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.25);
	box-shadow: inset 0px 5px 0 0 #656565;
}
	
	
.searchform .whoisbtn:hover {
	background: #454545;
	outline: none !important;
	box-shadow: inset 0 2px 0px 0 #555555;
}



.searchform .whoisbtn:active {
	background: #383838 !important;
	border: 0px solid #656565 !important;
	outline: none !important;
	box-shadow: inset 0px 5px 0 0 #454545;
	position:relative;
	top:1px;
}



.searchform span {
	padding: 0px 0px 20px 0px;
	display:block;
}



.searchform .alexa {
	margin:0 auto;
	padding: 50px 0px 0px 0px;
	font-weight: 400;
	text-align: left;
}
	

.searchform #result {
	margin-bottom: 20px;
	padding: 10px 0;
	border-radius: 4px;
	background: rgba(34, 162, 39,0.17);
	color: #14a91a;
	border: 1px solid #14a91a;
	font-weight: 500;
	font-size: 16px;
}

	
	
	
.searchform .alexa table {
	border: none;
}
	
	
	
.searchform .alexa .header1 {
	border-radius: 5px 0px 0px 0px;
	border:none;
}
	
.searchform .alexa .header2 {
	border-radius: 0px 5px 0px 0px;
	border:none;
}
	
	
.searchform .alexa th {
	font-size: 14px;
	font-weight: 500;
	color: #151515;
	background-color: #e5e5e5;
	padding: 20px;
}
	
	
.searchform .alexa td {
	font-size: 26px;
	font-weight: 400;
	color: #454545;
	background-color: #ffffff;
	border-radius: 15px !important;
	border: 1px solid #e5e5e5 !important;
	padding: 20px;
}
	
	
.searchform pre {
	display: block;
	padding: 25px 20px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #444444;
	white-space: pre;
	white-space: pre-wrap;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: left !important;
}
	
	




/* Search form section */
#contactform {
	font-size: 16px;
	font-weight: 400;
}
	

	
#contactform label {
	line-height: 100%;
	padding-top: 20px;
	color: #a5a5a5;
	cursor: pointer;
}
	
	
	
#contactform input { height: 60px; padding: 5px 20px; }
#contactform textarea { height: 190px; padding: 16px 20px; }
	
	
	
#contactform input, #contactform textarea {
	font-size: 16px;
	color: #454545;
	font-weight: 500;
	line-height: 25px;
	margin: 0px;
	width: 100%;
	
	background-color: #fff;
	border: 1px solid #ccc;
	
	box-shadow: inset 0 2px 4px rgba(0,0,0,.075);
	
	-webkit-transition: border linear .2s,box-shadow linear .2s;
	-moz-transition: border linear .2s,box-shadow linear .2s;
	-o-transition: border linear .2s,box-shadow linear .2s;
	transition: border linear .2s,box-shadow linear .2s;
	
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	
	vertical-align: middle;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
	




#contactform input:focus {
	outline: none !important;
	box-shadow: 0 0 6px #74B9EF;
	border: 1px solid #74B9EF;
}
	
	


	
#contactform ::-webkit-input-placeholder{color: #a5a5a5; font-size: 15px; font-weight:400;}
#contactform ::-moz-placeholder{color: #a5a5a5; font-size: 15px; font-weight:400;}
#contactform ::-ms-placeholder{color: #a5a5a5; font-size: 15px; font-weight:400;}
#contactform ::placeholder{color: #a5a5a5; font-size: 15px; font-weight:400;}





#contactform .whoisbtn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;

	background: #525252;
	margin: 5px 0px 0px 0px;
	width: 23%;
	height: 60px;
	
	border-radius: 4px;
	border: 0px solid #656565;
	outline: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.25);
	box-shadow: inset 0px 5px 0 0 #656565;
}
	
	
#contactform .whoisbtn:hover {
	background: #454545;
	outline: none !important;
	box-shadow: inset 0 2px 0px 0 #555555;
}



#contactform .whoisbtn:active {
	background: #383838 !important;
	border: 0px solid #656565 !important;
	outline: none !important;
	box-shadow: inset 0px 5px 0 0 #454545;
	position:relative;
	top:1px;
}
	

	
	






/* footer section */
.footer {
	padding: 40px 0px 80px 0px;
	border-top: 1px solid #e5e5e5;
	background: #ffffff;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
}



.footer .logotext {
	color: #888888;
	text-align: left;
}
.footer .logotext a {
	color: #888888;
}
.footer .logotext a:hover{
	color: #000000;
	text-decoration: none;
}


.footer .footerlink {
	color: #888888;
	text-align: right;
	float: right;
}


.footer .list-group {
	text-align: right;
}

.footer .list-group-item {
	text-align: right;
	padding: 0px 0px 0px 35px;
	border: none;
}

.footer .list-group-item a {
	color: #888888;
	text-align: right;
}
.footer .list-group-item a:hover {
	color: #000000;
	text-align: right;
	text-decoration: none;
	text-shadow: 1px 0px 1px rgba(0,0,0,.25);
}











@media (max-width: 767px) {

	body { position: relative; min-height: 100%; padding-bottom:200px; }

	.navbar-brand a { font-size: 22px; }

	.main h1 { font-size: 35pt; }
	.main p { font-size: 16px; line-height: 25px; }

	.aboutus { padding: 30px 0px 450px 0px; }
	.aboutus h1 span { display: block; }

	.searchform input { width:100%; height:65px; }
	.searchform input { font-size: 17px; }
	.searchform span { padding: 0px 0px 20px 0px; }
	.searchform .whoisbtn { width: 100%; height: 54px; margin: 15px 0px 0px 0px; }

	#contactform .whoisbtn { width: 100%; height: 54px; margin: 15px 0px 0px 0px; }

	.footer .logotext { width:100%; text-align:center; padding-bottom:30px; }
	.footer .footerlink { width:100%; text-align:center; padding-bottom:30px; }
	
	.footer .list-group { margin:0 auto; 1text-align:center; }
	.footer .list-group-item { text-align:center; padding:10px 10px; }
	.footer .list-group-item a { text-align:center; }
	.footer .list-group-item a:hover { text-align:center; text-decoration:none; }

}