*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins','cambria','helvetica', sans-serif;
	box-sizing: border-box;
	text-decoration: none;
	user-select: none;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #000;
	font-size: 18px;	
}

.top_bar {
	padding: 10px 50px;
	line-height: 100%;
	color: #fff;	
	justify-content: space-between;
	display: flex; 
	background: #003366;
	font-size: 17px;
}

.top_bar a {
	color: #fff;
	padding-left: 10px;
	padding-right: 10px;
}

.top_bar a:hover {
	color: #f2f4f2;
}

header {
	background: #fff;
	position: fixed;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background: #fff;
	padding: 10px 50px 10px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: #003366 1px solid;
}

.theme {
	color: #003366;
	font-size: 18px;
	text-decoration: none;
}
	
header  .logo{
	display: flex;
	align-items: center;
}

header h1 {
	color: #003366; 
	font-weight: bold; 
	font-size: 28px;
	text-decoration: none;
}

header div {
	margin-left: 12px;
}

header img {
	width: 50px;
	height: 45px;
}

header  nav ul{
	list-style: none;
}

header  nav ul li{
	position: relative;
	float: left;
}

header  nav ul li a{
	font-size: 20px;
	padding: 10px 15px;
	color: #003366;
	display: block;
	font-weight: normal;
	margin: 0 5px;
	align-items: center;
}

header nav ul li a:hover, header nav ul li .active-page {
	background: #333;
	color: #fff; 
}

header nav ul li .active-page {
	background: #ccc;
	color: #003366; 
}

header nav ul li .active-page-sub {
	background: #333;
	color: #fff; 
}

header  nav ul li ul{
	position: absolute;
	left: 0;
	width: 200px;
	background: #fff;
	display: none;
}

header  nav ul li ul li{
	width: 100%;
	border-top: 1px solid rgba(0,0,0,1);
}

header  nav ul li ul li ul{
	left: 200px;
	top: 0;
}

header  nav ul li:focus-within>ul, header  nav ul li:hover>ul{
	display: initial;
}

#menu-bar {
	display: none;
}

header label {
	font-size: 30px;
	color: #003366;
	cursor: pointer;
	display: none;
}

header form {
	display: flex;
}

header form input[type=text], header form input[type=submit], .searchInput, .searchSub, .loginput{
	padding: 8px 10px;
	border-radius: 5px;
	font-size: 15px;
	border: #ccc 1px solid;
}

header form input[type=text], .searchInput{
	width: 95%;
	margin-right: 5px;
}

header form input[type=submit], .searchSub{
	background: #003366;
	color: #fff;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

.main {
	margin-top: 25px;
	background-color: #ffffff;
	padding: 10px; 
}

.main h1{
	font-size: 31px;
}

.main .h2 {
	font-size: 28px;
	border-bottom: 1px #ccc solid;
}

.row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.left-col {
	flex-basis: 76%;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.left-col .gh1{
	color: #003366;
	border-bottom: 1px #003366 solid;
	margin-bottom: 18px;
}

.left-col .h3{
	font-size: 130%;	
}

.left-col .h3, .left-col .h4 {
	font-weight: bold;
}

.left-col img {
	width: 100%; 
	height: 450px; 
	margin-bottom: 40px;
}

.right-col {
	position: -webkit-sticky;
	position: sticky;
	display: block;
	top: -310px;
	flex-basis: 24%;
	padding: 20px;
}

.right-col-blog {
	top: -1190px;
}

.right-col .h2, .comment1{
	font-weight: normal;
	color: #000;
	font-size: 180%;
	border-bottom: 1px solid #333;
}

.content-box {
	border: #dddddd 1px solid;
	margin-bottom: 50px;
	padding: 20px;
}

.box {
	border: #dddddd 1px solid;
	margin-bottom: 50px;
	box-shadow: 2px 2px 5px #333;
}

.contents, .blog-ol li, .contents-center, .left-col .h4{
	color: #000;
	font-size: 120%;
}

.contents, .blog-ol li{
	line-height: 1.8;
	text-align: justify;
}

.c-margin {
	margin-bottom: 30px;
}

.grid-view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-column-gap: 8px;
	grid-row-gap: 30px;
	padding: 6px;
	background-color: #ccffff;
}

.grid-cont {
	text-align: center;
}

.grid-view .grid-cont b {
	color: #336666;
}

.sub-txt1 {
	color: red;
	margin: 20px 0;
	padding-top: 30px;
}

.sub-txt4 {
	margin-bottom: 30px;
}

footer {
	background-color: #003366;
	padding: 10px; 
	margin-top:30px;
}

.foot-col {
	flex-basis: 25%;
	padding: 20px; 
}

.foot-col .endhead {
	color: #00ffff;
	border-bottom: #00ffff 1px solid;
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase; 
	font-size: 130%;
} 

.foot-col .h5 {
	margin-top: 30px;
	border-bottom: none;
} 

.end-col {
	display: block;
}

.end-col a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding-bottom: 20px;
	text-align: left;
}

.end-col a:hover{
	color: #ffcc00;
}

.end-col p{
	display: block;
	text-decoration: none;
	color: #ffffff;
	padding-bottom: 20px;
	text-align: left;
}

.end {
	color: #ffffff;
}

.end a {
	color: #00ffff;
}

.pri-pol{
	display: block;
	color: #ffffff;
	text-align: left;
	margin-bottom: 10px;
}

.pri-pol a{
	color: #ffcc00;
}

.pri-pol a:hover{
	color: #ccc;
}

.pri-pol, .end-col p, .end-col a, .end-note center font{
	font-size: 110%;
}

.bottom-line {
	display: none;
}

.social-media {
	display: flex;	
}

.social-media   a img {
	padding: 10px;
	border-radius: 50%;
	width: 55px;
}

.social-media   a img:hover{
	width: 62px;
}

.input-group {
	width: 100%;
	height: 50px;
	display: flex;
	background-color:  #fff;
	border-radius: 10px 10px 10px 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.input-group  input[type=email], select {
	width: 75%;
	height: 88%;
	padding: 0px 10px;
	border-radius: 8px 0 0 8px;
	font-size: 16px;
	border: none;
	margin: auto auto;
}

.input-group input[type=submit]{
    width: 25%;
	height: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.input-group input[type=submit]:hover {
    background-color: #45a049;
}

#salert{
	display: none;
	z-index: 200;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#salert #smsg{
	width: 100%;
	height: 100%;
	/*background: rgba(0,0,0,0.8);*/
	display: flex;
	align-items: center;
	justify-content: center;
}

#form2 {
	width: 350px;
	background: #ccc;
	padding: 15px;
}

#form2 div{
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: #003366;
	margin-bottom: 8px;
}

#form2 input[type=text]{
	width: 100%;
	padding: 10px;
	font-size: 15px;
}

#form2 input[type=checkbox]{
	width: 20px;
	height: 20px;
	margin-top: 8px;
}

#form2 input[type=submit]{
    width: 50%;
	height: 40px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
	margin-top: 10px;
	font-size: 16px;
}

#form2 input[type=submit]:hover {
    background-color: #45a049;
}

.loginform{
	width: 350px;
	margin-top: 30px;
}

.loginform input[type=text], .loginform input[type=password]{
	width: 90%;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 12px;
}

.loginform input[type=submit]{
	width: 120px;
	padding: 10px 15px;
	font-size: 18px;
	margin-bottom: 12px;
} 

.loginform div{
	width: 90%;
	text-align: left;
	margin-bottom: 12px;
} 

#task {
	position: fixed;
	display: none;
	inset: 0 0 0 0;
	justify-content: center;
	align-items: center;
	z-index: 120;
}