@import url("https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*{
  margin: 0;
  padding: 0;
  font-size: 100%;
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}

h1 {
  font-family: "Philosopher";
  font-size: 45px;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}
.popin {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.container-fluid {
  width: 100%;
  margin: 0;
  padding: 0%;
}
.container {
  max-width: 992px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 10px rgb(26, 25, 25, 0.2);
  padding: 0 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.show {
  display: block;
}
header .logo {
  max-width: 100%;
}
header .logo img {
  max-width: 100%;
  height: auto;
}

header .navbar ul {
  list-style-type: none;
}
header .navbar ul li {
  position: relative;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  float: left;
}
header .navbar ul li a {
  font: bold 12px/80px Verdana, Geneva, Tahoma, sans-serif;
  padding: 0 12px;
  color: #333;
  display: block;
  text-decoration: none;
}
header .navbar ul li a:hover{
  background: #11267c;
  color: #fff;
  display: block;
}
header.navbar ul li a.active {
  background: #11267c;
  color: #fff;
  display: block;
}
header .navbar ul li ul {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  list-style-type: none;
  width: 230px;
  background: #fff;
  display: none;
}
header .navbar ul li ul li {
  width: 100%;
  height: 56px;
  font: bold 12px/56px Verdana, Geneva, Tahoma, sans-serif;
  border-top: 1px solid #ddd;
  line-height: 56px;
}
header .navbar ul li ul li a {
  width: 100%;
  font: bold 12px/56px Verdana, Geneva, Tahoma, sans-serif;
  height: 56px;
}
header .navbar ul li:hover ul {
  display: block;
}
#menu-bar {
  display: none;
}
header label {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: none;
}

.c-mrgn {
  margin: 15px auto;
}
.row {
  width: 100%;
  position: relative;
}
.hdr-row {
  width: 100%;
  position: fixed;
}
.logo {
  margin: 10px 0 0 0;
  display: inline-block;
  border: 0;
  text-decoration: none;
}
.logo img {
  max-width: 100%;
  height: auto;
}
.header-ad {
  width: 728px;
  float: right;
}
.r-bg-clr {
  background: #eee;
  height: 320px;
}

.search-box {
  width: 45px;
  height: 45px;
  float: right;
  background: #ff9d02;
  border-radius: 10px;
  display: block;
  margin-top: 15px;
  cursor: pointer;
}
.search-field {
  height: 50px;
  position: absolute;
  top: 100%;
  right: 200px;
  padding: 10px;
  background: #ff9d02;
  border: none;
  z-index: 999999;
  transition: 0.5s;
  display: none;
}
.search-container {
  position: absolute;
  padding: 12px;
  top: 60px;
  right: 92px;
  width: auto;
  height: 60px;
  background: #ff9d02;
  border-radius: 10px;
  display: none;
  animation: animatebottom 0.5s;
  z-index: 999999999;
}
@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.search-container input {
  margin-top: 7px;
  border: 0;
  height: 25px;
  outline: none;
  border-radius: 5px;
  padding: 2px;
}
.search-container button {
  background: #11267c;
  color: #fff;
  border: 0;
  height: 25px;
  padding: 3px;
  margin-left: 3px;
  border-radius: 5px;
}

.dspl {
  display: none;
}

.b-container {
  width: 75%;
  background: #fff;
  position: absolute;
  left: 12.5%;
  top: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  z-index: 999;
  border-radius: 15px;
}
.pbox {
  width: 33.2%;
  margin: 0px;
  border-right: 1px solid #eee;
  float: left;
}
.pbox:last-child {
  border-right: 0px;
  width: 30%;
  margin-top: 20px;
}
.ad-box {
  width: 100%;
  margin: 0 0 20px 15px;
}
.t-box {
  width: 100%;
  display: flex;
  padding: 15px 0 10px 20px;
}
.latest {
  width: 100%;
  padding: 5% 2% 0 5%;
  margin-bottom: 20px;
}
.latest ul {
  list-style-type: none;
  margin: 0 10px 0 0;
}
.latest ul li {
  width: 100%;
  font: normal 12px/1.5 "verdana";
  font-weight: bold;
  color: #23378e;
  border-bottom: 1px dotted #eee;
  padding: 10px 10px 10px 0;
  text-align: left;
  float: left;
  background: #fff;
  border-radius: 7px;
}
.latest ul li:nth-child(odd) {
  background-color: #eee;
}
.latest ul li a {
  text-decoration: none;
  float: left;
  padding-left: 10px;
}
.latest ul li a:hover {
  color: #ff9d02;
}
.more {
  width: 100%;
  padding: 15px 0;
  float: right;
  text-align: right;
}
.more a {
  text-decoration: none;
  color: #ff9d02;
  font-weight: bold;
}
.hero-bg {
  background-image: linear-gradient(
      rgba(35, 55, 142, 0.9),
      rgba(35, 55, 142, 0.9)
    ),
    url("images/hero-bg-1.png");
  margin-top: 75px;
}
.hero-txt {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.hero-txt p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
}
.hero-txt .hero-btn-box {
  height: 50px;
  margin: 10px 0;
}
.hero-btn-box .hero-btn {
  width: 160px;
  height: 50px;
  border: 0;
  border-radius: 7px;
  background: #ff9d02;
  cursor: pointer;
  color: #fff;
}
/*.grn-clr {*/
/*  background-color: #06bd51 !important;*/
/*  margin: 0 0 0 10px !important;*/
/*}*/
.mrgn {
  margin-top: 19%;
}

.cat-list-box {
    width: 47%;
  border: 3px solid #11267c;
  margin-right: 10px;
}
.cat-list-box:last-child {
  margin-right: 0px;
}
.cat-list-box .clb-title {
  width: 100%;
  height: 50px;
  background: #11267c;
  color: #fff;
  line-height: 50px;
  padding-left: 10px;
}
.cat-list-box ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cat-list-box ul li {
    width: 100%;
  padding: 10px;
  float: left;
  font: bold 12px/22px "verdana";
  border-bottom: 1px dotted #333;
}
.cat-list-box ul li a {
  text-decoration: none;
  color: #11267c;
}
.cat-list-box ul li a:hover {
  text-decoration: underline;
  color: #23378e;
}
.footer {
  background: #333;
  margin-top: 20px;
}
.foot-container {
  max-width: 992px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  width: 100%;
  padding-top: 10px;
}
.footer-nav ul {
  list-style-type: none;
}
.footer-nav ul li {
  display: inline-block;
  padding: 0 15px;
}
.footer-nav ul li a {
  text-decoration: none;
  font: normal 12px/40px "verdana";
  color: #fff;
}

.footer .txt {
  font: normal 12px/30px "verdana";
  color: #ddd;
  padding-bottom: 15px;
  text-align: center;
  margin: 0;
}
.footer .txt a {
  text-decoration: none;
  color: #ddd;
}
.ad-blk {
  display: block;
}
.ad-dspl {
  display: none;
}
.dspl {
  display: none;
}

/*** inr-pages ***/

.mrgn-top {
  margin-top: 70px;
}
.inr-ad {
  border: 1px solid #dadbda;
  border-radius: 12px;
  width: 100%;
  height: 250px;
  float: left;
  margin-bottom: 20px;
}
.left-panel {
  width: 70%;
  padding: 0 12px 0 0;
  float: left;
}
.right-panel {
  width: 30%;
  padding: 0;
  float: left;
}

.lft-pan-list {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.lft-pan-list ul {
  list-style-type: none;
}
.lft-pan-list ul li {
  padding: 12px;
  float: left;
  background: #eee;
  border: 1px solid #dadbda;
  border-radius: 10px;
  margin-bottom: 12px;
}
.lft-pan-list ul li:nth-child(odd) {
  background: none;
}
.lft-pan-list ul li a {
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 35px;
  font-weight: 700;
  text-decoration: none;
  color: #23378e;
  float: left;
}
.lft-pan-list ul li:hover,
.lft-pan-list ul li a:hover {
  text-decoration: underline;
  background: #fec976;
  color: #11267c;
}
.inr-title {
  width: 100%;
  float: left;
  height: 45px;
  background: #11267c;
  color: #fff;
  padding: 5px;
}
p {
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 22px;
  padding: 12px 20px 12px 0;
  margin-top: 15px;
  text-align: justify;
}
.rt-pan-list {
  width: 100%;
  float: left;
  border: 2px solid #11267c;
  margin-bottom: 12px;
}
.inr-h1 {
  font-size: 24px;
  line-height: 45px;
  color: #11267c;
}
.rt-pan-list ul {
  list-style-type: none;
  float: left;
}
.rt-pan-list ul li {
  background: #fff;
  float: left;
  margin-bottom: 10px;
  border-bottom: 1px solid #dadbda;
}
.rt-pan-list ul li a {
  text-decoration: none;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: #11267c;
  padding: 5px;
  float: left;
}
.rt-pan-list ul li a:hover {
  text-decoration: underline;
}

.bread-crums {
  width: 100%;
  height: 40px;
  float: left;
}
.bread-crums ul {
  list-style-type: none;
  float: left;
}
.bread-crums ul li {
  float: left;
  padding: 0 10px 0 0;
  font: normal 12px/40px "verdana";
  color: #333;
}
.bread-crums ul li a {
  text-decoration: none;
  font: normal 12px/40px "verdana";
  color: #333;
  padding: 0 12px 0 0;
}
.bread-crums ul li a:hover {
  text-decoration: underline;
  color: red;
}

@media (max-width: 868px) {
  header {
    margin: 0;
    padding: 1% 2%;
  }
}
@media (max-width: 768px) {
  header {
    padding: 1% 2%;
  }
  header label {
    display: initial;
    height: 35px;
    background: #ff9d02;
    line-height: 35px;
    color: #fff;
    padding: 0 7px;
    border-radius: 10px;
    margin-top: 25px;
  }
  header label:hover {
    color: #23378e;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
  }
  header .navbar ul {
    width: 100%;
    float: left;
  }
  header .navbar ul li {
    position: relative;
    width: 100%;
    height: auto;
    line-height: 30px;
    padding: 0;
    border-bottom: 1px solid #eee;
    float: left;
  }

  header .navbar ul li ul {
    position: relative !important;
    top: 0;
    width: 100%;
  }
  header .navbar ul li ul li {
    background: #eee;
    height: auto;
  }
  .container {
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 2%;
  }
  #menu-bar:checked ~ .navbar {
    display: initial;
  }

  .b-container {
    width: 96%;
    background: #fff;
    position: relative;
    left: 2%;
    top: 85%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    z-index: 999;
  }
  .row-top-mrgn{
      margin-top: 450px;
  }
  .pbox {
    width: 50%;
    margin: 0px;
    border-right: 1px solid #eee;
    float: left;
  }
  .pbox:last-child {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 0;
    margin: 0;
  }
  .ad-box {
    width: 100%;
    margin: 10px;
  }
  .ad-blk {
    display: none;
  }
  .ad-dspl {
    display: block;
    margin-top: 3px;
  }
  .ads-dspl img {
    max-width: 100%;
    height: auto;
  }
  .hero-txt {
    width: 95%;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
  .mrgn {
    margin-top:75%;
  }
  .cat-list-box {
    width: 45%;
    margin: 0 1% 1% 0;
  }
  .cat-list-box:nth-child(2) {
    margin: 0 0 1% 0;
  }
  .cat-list-box:last-child {
    width: 100%;
  }
  .hero-img{
      display: none;
  }
}
@media (max-width: 650px) {
  .container {
    width: 96%;
    flex-flow: wrap;
    margin: 0 2%;
  }

  .c-mrgn {
    margin: 0 auto;
  }
  .logo {
    display: block;
    height: auto;
    text-decoration: none;
    margin-bottom: 5px;
  }
  .logo > img {
    max-width: 100%;
    height: auto;
  }
  .header-ad {
    width: 100%;
    float: left !important;
    display: none;
  }
  .search-box {
    display: none;
  }
  .nav ul {
    display: none;
  }
  .toggle-menu {
    width: 50px;
    height: 50px;
    float: right;
    display: block;
  }

  .b-container {
    width: 96%;
    background: #fff;
    position: absolute;
    left: 2%;
    top: 85%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    z-index: 999;
  }
  .pbox {
    width: 50%;
    margin: 0px;
    border-right: 1px solid #eee;
    float: left;
  }
  .pbox:last-child {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 0;
    margin: 0;
  }
  .ad-box {
    width: 100%;
    margin: 0;
  }
  .ad-blk {
    display: none;
  }
  .ad-dspl {
    display: block;
    margin-top: 3px;
  }
  .ads-dspl img {
    max-width: 100%;
    height: auto;
  }
  .hero-txt {
    width: 95%;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-txt h1 {
    font-size: 2.5rem;
  }
  .mrgn {
    margin-top: 55%;
  }
  .cat-list-box {
    width: 100%;
    margin: 0 0 15px 0;
  }
}

@media (max-width: 480px) {
  .pbox {
    width: 100%;
    margin: 0px;
    border-right: 0;
    float: left;
  }
  .pbox:nth-child(2),
  .pbox:nth-child(3) {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 0;
    margin: 0;
  }
  .ad-box {
    width: 100%;
    margin: 0;
  }
  .ad-blk {
    display: none;
  }
  .ad-dspl {
    display: block;
    margin-top: 3px;
  }
  .ads-dspl img {
    max-width: 100%;
    height: auto;
  }
  .hero-txt {
    width: 95%;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
  .hero-txt h1 {
    font-size: 2rem;
  }
  .hero-txt p {
    display: none;
  }
  .hero-txt .hero-btn-box {
    height: auto;
    margin: 20px 0 0 0;
  }
  .hero-btn {
    margin-bottom: 10px;
  }
  .grn-clr {
    margin: 0 0 0 0 !important;
  }
  .mrgn {
    margin-top: 105%;
  }
}
