/* declaration */
:root {
  --primary-color: #19507b;
  --secondary-color: #f99500;
  --light-color: #f3f3f3;
  --dark-color: #333;
  --max-width: 1100px;
}

.category {
  --sports-color: #f99500;
  --ent-color: #a66bbe;
  --tech-color: #009cff;
}
/* core styling */
* {
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  background-color: var(--light-color);
}
a {
  color: var(--dark-color);
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
/* utility  */
.color {
  color: #fafafa;
}
.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 2rem;
  overflow: hidden;
}
.btn {
  padding: 0.5rem 1rem;
}
.btn:hover {
  opacity: 0.9;
}
.btnPrimary {
  background-color: var(--primary-color);
  color: #f3f3f3;
}
.btnSecondary {
  background-color: var(--secondary-color);
  color: #f3f3f3;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.category {
  display: inline-block;
  padding: 0.3rem;
  font-size: 10px;
  font-weight: bold;
  border-radius: 10px;
}
.category-sports {
  background-color: var(--sports-color);
}
.category-ent {
  background-color: var(--ent-color);
}
.category-tech {
  background-color: var(--tech-color);
}
.bgLight {
  background-color: white;
  color: #333;
}
.bgDark {
  background-color: #333;
  color: #fafafa;
}
.bgPrimary {
  background-color: var(--primary-color);
  color: #fafafa;
}
.card {
  padding: 1rem;
}
/* nav Bar */
.navBar {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 2;
}
.navContainer {
  /* background-color: #009cff; */
  display: grid;
  grid-template-columns: 6fr 3fr 2fr;
  padding: 1rem;
  align-items: center;
}
.navBar .logo {
  width: 250px;
}
.navBar ul {
  justify-self: end;
  display: flex;
}
.navBar ul li a {
  font-size: 1.2rem;
  padding: 0.55rem;
  font-weight: bold;
}
.navBar ul li a.current {
  background-color: var(--primary-color);
  color: #f3f3f3;
}
.navBar ul li a:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.navBar .socialMedia i {
  color: #777;
  margin-right: 0.5rem;
}
.navBar .socialMedia {
  justify-self: center;
}

/* showCase */
.showCase {
  background-color: #333;
  padding: 2rem;
  color: var(--light-color);
  position: relative;
}
.showCase::before {
  content: "";
  background: url(featured.5ab9d220.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.showCaseContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 50vh;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.showCase .showCaseContent {
  z-index: 1;
}

.showCaseContent h1 {
  margin-top: 10px;
  font-weight: bold;
  width: 500px;
  /* letter-spacing: -1px; */
}
.showCaseContent p {
  margin-top: 10px;
  margin-bottom: 20px;
  /* width: 400px; */
}
/* homeArticle */
.homeArticle {
  padding: 2rem 0;
}
.articleContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  grid-gap: 1rem;
}
.articleContainer > *:first-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  grid-column: 1 / span 2;
}
.articleContainer > *:first-child img {
  align-self: center;
}
.articleContainer > *:last-child {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 2 / span 2;
}
.card-hindu {
  display: grid;
  padding: 7px;
}

.card-hindu .hinduLogo {
  align-self: center;
  justify-self: center;
  width: 350px;
}

.card-hindu p {
  align-self: center;
  justify-self: center;
}
.card-hindu .paper {
  height: 250px;
  object-fit: cover;

  width: 300px;
  align-self: center;
  justify-self: center;
}
.card-hindu a {
  align-self: center;
  justify-self: center;
  margin-top: 5px;
}
.card-theHindu {
  display: grid;
  grid-template-columns: 1fr;
  grid-column: 1 / span 3;
}

/* footer */
.footer {
  padding: 1.5rem 0.5rem;
  background-color: white;
  color: #333;
}
.footerContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  align-items: start;
}
.footerContainer .newsGrid img {
  width: 190px;
  margin-top: 5px;
  margin-bottom: 10px;
  height: 50%;
}
.footerContainer .newsGrid {
  padding-bottom: 16px;
}
.footerContainer h2 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}
.footerContainer .subscribe {
  padding-bottom: 16px;
}
.footerContainer .subscribe input {
  padding: 6.5px 0;
  margin-top: 10px;
  margin-bottom: 10px;
  /* width: 90%; */
}
.footerContainer .subscribe .sub {
  padding: 1.5px 51.5px;
  width: 90%;
}
.sub:hover {
  opacity: 0.9;
}
.footerContainer .copyRight {
  grid-column: 1 / span 4;
  background-color: #fafafa;
  text-align: center;
  margin-top: 10px;
  padding-bottom: 10px;
}
.footerContainer .help ul {
  text-decoration: none;
}
.footerContainer .help ul li a {
  color: #333;
}
.footerContainer .help ul li a:hover {
  color: var(--primary-color);
}
.footerContainer .help ul li {
  padding: 0.23rem 0;
  border-bottom: #555 dotted 1px;
}
.footerContainer .join p {
  margin-bottom: 20px;
}
/* about */
.about {
  padding: 2rem 0;
}
.aboutContainer {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-gap: 1.4rem;
  align-items: center;
  justify-content: center;
}
.aboutContainer > *:first-child {
  padding: 2rem;
  grid-row: 1 / span 3;
}
.aboutContainer .join {
  padding: 2rem;
}
.aboutContainer .join p {
  margin-bottom: 20px;
}
.bheading {
  font-size: 40px;
  margin-bottom: 10px;
}
/* articles */
.articles {
  padding: 2rem;
}
.articlePageContainer {
  display: grid;
  grid-template-columns: 5fr 2fr;
  grid-gap: 1.5rem;
}
.articlePageContainer > *:first-child {
  padding: 1rem;
  grid-row: 1 / span 3;
}
.bigheading {
  margin: 10px 0;
  font-weight: bold;
  font-size: 50px;
}
.meta {
  display: flex;
  justify-content: space-between;
  background: #eee;
  padding: 0.5rem;
  align-items: center;
}
.categories ul li {
  border-bottom: 1px dotted #555;
  padding: 10px 0px;
}
.categories ul {
  margin-top: 10px;
}
.categories ul li a:hover {
  color: var(--primary-color);
}
.articlePageContainer .join {
  padding: 2rem;
}
.articlePageContainer .join p {
  margin-bottom: 20px;
}
.articlePageContainer .join h2 {
  font-size: 20px;
}
.categories {
  padding: 1rem;
}
/* hidden and revel section */
.section {
  transition: all 1s;
}
.hidden {
  transform: translateY(8rem);
  opacity: 0;
}

/*# sourceMappingURL=style.79905d41.css.map */
